@object-ui/plugin-detail 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +18 -0
- package/LICENSE +21 -0
- package/README.md +197 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +53257 -0
- package/dist/index.umd.cjs +95 -0
- package/dist/plugin-detail.css +1 -0
- package/dist/src/DetailSection.d.ts +16 -0
- package/dist/src/DetailSection.d.ts.map +1 -0
- package/dist/src/DetailTabs.d.ts +16 -0
- package/dist/src/DetailTabs.d.ts.map +1 -0
- package/dist/src/DetailView.d.ts +19 -0
- package/dist/src/DetailView.d.ts.map +1 -0
- package/dist/src/RelatedList.d.ts +19 -0
- package/dist/src/RelatedList.d.ts.map +1 -0
- package/dist/src/index.d.ts +10 -0
- package/dist/src/index.d.ts.map +1 -0
- package/package.json +53 -0
- package/src/DetailSection.tsx +121 -0
- package/src/DetailTabs.tsx +73 -0
- package/src/DetailView.tsx +212 -0
- package/src/RelatedList.tsx +93 -0
- package/src/__tests__/DetailView.test.tsx +249 -0
- package/src/index.tsx +86 -0
- package/src/registration.test.tsx +18 -0
- package/tsconfig.json +18 -0
- package/vite.config.ts +56 -0
- package/vitest.config.ts +13 -0
- package/vitest.setup.ts +1 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
(function(qt,d){typeof exports=="object"&&typeof module<"u"?d(exports,require("react/jsx-runtime"),require("react"),require("react-dom")):typeof define=="function"&&define.amd?define(["exports","react/jsx-runtime","react","react-dom"],d):(qt=typeof globalThis<"u"?globalThis:qt||self,d(qt.ObjectUIPluginDetail={},qt.jsxRuntime,qt.React,qt.ReactDOM))})(this,(function(qt,d,w,s1){"use strict";function hT(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const o in e)if(o!=="default"){const n=Object.getOwnPropertyDescriptor(e,o);Object.defineProperty(t,o,n.get?n:{enumerable:!0,get:()=>e[o]})}}return t.default=e,Object.freeze(t)}const p=hT(w),d1=hT(s1);class PG{components=new Map;register(t,o,n){const a=n?.namespace?`${n.namespace}:${t}`:t;n?.namespace||console.warn(`Registering component "${t}" without a namespace is deprecated. Please provide a namespace in the meta parameter.`),this.components.has(a),this.components.set(a,{type:a,component:o,...n}),n?.namespace&&this.components.set(t,{type:a,component:o,...n})}get(t,o){if(o){const n=`${o}:${t}`;return this.components.get(n)?.component}return this.components.get(t)?.component}getConfig(t,o){if(o){const n=`${o}:${t}`;return this.components.get(n)}return this.components.get(t)}has(t,o){if(o){const n=`${o}:${t}`;return this.components.has(n)}return this.components.has(t)}getAllTypes(){return Array.from(this.components.keys())}getAllConfigs(){return Array.from(this.components.values())}getNamespaceComponents(t){return Array.from(this.components.values()).filter(o=>o.namespace===t)}}const ae=new PG;class l1{scopes=[];constructor(t={}){this.scopes.push(new Map(Object.entries(t)))}pushScope(t){this.scopes.push(new Map(Object.entries(t)))}popScope(){this.scopes.length>1&&this.scopes.pop()}get(t){const o=t.split("."),n=o[0];for(let a=this.scopes.length-1;a>=0;a--)if(this.scopes[a].has(n)){let r=this.scopes[a].get(n);for(let i=1;i<o.length;i++)if(r&&typeof r=="object")r=r[o[i]];else return;return r}}set(t,o){this.scopes.length>0&&this.scopes[this.scopes.length-1].set(t,o)}has(t){const o=t.split(".")[0];for(let n=this.scopes.length-1;n>=0;n--)if(this.scopes[n].has(o))return!0;return!1}toObject(){const t={};for(const o of this.scopes)for(const[n,a]of o.entries())t[n]=a;return t}createChild(t={}){const o=new l1;return o.scopes=[...this.scopes,new Map(Object.entries(t))],o}}class TG{cache=new Map;maxSize;constructor(t=1e3){this.maxSize=t}compile(t,o){const n=`${t}::${o.join(",")}`;if(this.cache.has(n)){const i=this.cache.get(n);return i.hitCount++,i}this.cache.size>=this.maxSize&&this.evictLFU();const r={fn:this.compileExpression(t,o),varNames:[...o],expression:t,compiledAt:Date.now(),hitCount:1};return this.cache.set(n,r),r}compileExpression(t,o){return new Function(...o,`"use strict"; return (${t});`)}evictLFU(){let t=null,o=1/0,n=1/0;for(const[a,r]of this.cache.entries())(r.hitCount<n||r.hitCount===n&&r.compiledAt<o)&&(t=a,o=r.compiledAt,n=r.hitCount);t&&this.cache.delete(t)}has(t,o){const n=`${t}::${o.join(",")}`;return this.cache.has(n)}clear(){this.cache.clear()}getStats(){let t=0;const o=[];for(const n of this.cache.values())t+=n.hitCount,o.push({expression:n.expression,hitCount:n.hitCount});return{size:this.cache.size,maxSize:this.maxSize,totalHits:t,entries:o.sort((n,a)=>a.hitCount-n.hitCount)}}}class lS{context;cache;constructor(t,o){t instanceof l1?this.context=t:this.context=new l1(t||{}),this.cache=o||new TG}evaluate(t,o={}){if(typeof t!="string")return t;const{defaultValue:n,throwOnError:a=!1,sanitize:r=!0}=o;try{if(!t.includes("${"))return t;const s=t.match(/^\$\{([^}]+)\}$/);return s?this.evaluateExpression(s[1].trim(),{sanitize:r}):t.replace(/\$\{([^}]+)\}/g,(l,u)=>{try{const y=this.evaluateExpression(u.trim(),{sanitize:r});return String(y??"")}catch(y){if(a)throw y;return console.warn(`Expression evaluation failed for: ${u}`,y),l}})}catch(i){if(a)throw i;return console.warn(`Failed to evaluate expression: ${t}`,i),n??t}}evaluateExpression(t,o={}){const{sanitize:n=!0}=o;if(!(!t||t.trim()==="")){if(n&&this.isDangerous(t))throw new Error(`Potentially dangerous expression detected: ${t}`);try{const a=this.context.toObject(),r=Object.keys(a),i=Object.values(a);return this.cache.compile(t,r).fn(...i)}catch(a){throw new Error(`Failed to evaluate expression "${t}": ${a.message}`)}}}isDangerous(t){return[/eval\s*\(/i,/Function\s*\(/i,/setTimeout\s*\(/i,/setInterval\s*\(/i,/import\s*\(/i,/require\s*\(/i,/process\./i,/global\./i,/window\./i,/document\./i,/__proto__/i,/constructor\s*\(/i,/prototype\./i].some(n=>n.test(t))}evaluateCondition(t,o={}){return typeof t=="boolean"?t:t?!!this.evaluate(t,o):!0}updateContext(t){Object.entries(t).forEach(([o,n])=>{this.context.set(o,n)})}getContext(){return this.context}withContext(t){return new lS(this.context.createChild(t),this.cache)}getCacheStats(){return this.cache.getStats()}clearCache(){this.cache.clear()}}function pT(e){var t,o,n="";if(typeof e=="string"||typeof e=="number")n+=e;else if(typeof e=="object")if(Array.isArray(e)){var a=e.length;for(t=0;t<a;t++)e[t]&&(o=pT(e[t]))&&(n&&(n+=" "),n+=o)}else for(o in e)e[o]&&(n&&(n+=" "),n+=o);return n}function uS(){for(var e,t,o=0,n="",a=arguments.length;o<a;o++)(e=arguments[o])&&(t=pT(e))&&(n&&(n+=" "),n+=t);return n}const DG=(e,t)=>{const o=new Array(e.length+t.length);for(let n=0;n<e.length;n++)o[n]=e[n];for(let n=0;n<t.length;n++)o[e.length+n]=t[n];return o},EG=(e,t)=>({classGroupId:e,validator:t}),yT=(e=new Map,t=null,o)=>({nextPart:e,validators:t,classGroupId:o}),u1="-",fT=[],zG="arbitrary..",OG=e=>{const t=jG(e),{conflictingClassGroups:o,conflictingClassGroupModifiers:n}=e;return{getClassGroupId:i=>{if(i.startsWith("[")&&i.endsWith("]"))return qG(i);const s=i.split(u1),l=s[0]===""&&s.length>1?1:0;return mT(s,l,t)},getConflictingClassGroupIds:(i,s)=>{if(s){const l=n[i],u=o[i];return l?u?DG(u,l):l:u||fT}return o[i]||fT}}},mT=(e,t,o)=>{if(e.length-t===0)return o.classGroupId;const a=e[t],r=o.nextPart.get(a);if(r){const u=mT(e,t+1,r);if(u)return u}const i=o.validators;if(i===null)return;const s=t===0?e.join(u1):e.slice(t).join(u1),l=i.length;for(let u=0;u<l;u++){const y=i[u];if(y.validator(s))return y.classGroupId}},qG=e=>e.slice(1,-1).indexOf(":")===-1?void 0:(()=>{const t=e.slice(1,-1),o=t.indexOf(":"),n=t.slice(0,o);return n?zG+n:void 0})(),jG=e=>{const{theme:t,classGroups:o}=e;return HG(o,t)},HG=(e,t)=>{const o=yT();for(const n in e){const a=e[n];hS(a,o,n,t)}return o},hS=(e,t,o,n)=>{const a=e.length;for(let r=0;r<a;r++){const i=e[r];VG(i,t,o,n)}},VG=(e,t,o,n)=>{if(typeof e=="string"){FG(e,t,o);return}if(typeof e=="function"){BG(e,t,o,n);return}WG(e,t,o,n)},FG=(e,t,o)=>{const n=e===""?t:kT(t,e);n.classGroupId=o},BG=(e,t,o,n)=>{if(UG(e)){hS(e(n),t,o,n);return}t.validators===null&&(t.validators=[]),t.validators.push(EG(o,e))},WG=(e,t,o,n)=>{const a=Object.entries(e),r=a.length;for(let i=0;i<r;i++){const[s,l]=a[i];hS(l,kT(t,s),o,n)}},kT=(e,t)=>{let o=e;const n=t.split(u1),a=n.length;for(let r=0;r<a;r++){const i=n[r];let s=o.nextPart.get(i);s||(s=yT(),o.nextPart.set(i,s)),o=s}return o},UG=e=>"isThemeGetter"in e&&e.isThemeGetter===!0,RG=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,o=Object.create(null),n=Object.create(null);const a=(r,i)=>{o[r]=i,t++,t>e&&(t=0,n=o,o=Object.create(null))};return{get(r){let i=o[r];if(i!==void 0)return i;if((i=n[r])!==void 0)return a(r,i),i},set(r,i){r in o?o[r]=i:a(r,i)}}},pS="!",gT=":",GG=[],vT=(e,t,o,n,a)=>({modifiers:e,hasImportantModifier:t,baseClassName:o,maybePostfixModifierPosition:n,isExternal:a}),KG=e=>{const{prefix:t,experimentalParseClassName:o}=e;let n=a=>{const r=[];let i=0,s=0,l=0,u;const y=a.length;for(let g=0;g<y;g++){const _=a[g];if(i===0&&s===0){if(_===gT){r.push(a.slice(l,g)),l=g+1;continue}if(_==="/"){u=g;continue}}_==="["?i++:_==="]"?i--:_==="("?s++:_===")"&&s--}const h=r.length===0?a:a.slice(l);let f=h,k=!1;h.endsWith(pS)?(f=h.slice(0,-1),k=!0):h.startsWith(pS)&&(f=h.slice(1),k=!0);const m=u&&u>l?u-l:void 0;return vT(r,k,f,m)};if(t){const a=t+gT,r=n;n=i=>i.startsWith(a)?r(i.slice(a.length)):vT(GG,!1,i,void 0,!0)}if(o){const a=n;n=r=>o({className:r,parseClassName:a})}return n},YG=e=>{const t=new Map;return e.orderSensitiveModifiers.forEach((o,n)=>{t.set(o,1e6+n)}),o=>{const n=[];let a=[];for(let r=0;r<o.length;r++){const i=o[r],s=i[0]==="[",l=t.has(i);s||l?(a.length>0&&(a.sort(),n.push(...a),a=[]),n.push(i)):a.push(i)}return a.length>0&&(a.sort(),n.push(...a)),n}},XG=e=>({cache:RG(e.cacheSize),parseClassName:KG(e),sortModifiers:YG(e),...OG(e)}),ZG=/\s+/,QG=(e,t)=>{const{parseClassName:o,getClassGroupId:n,getConflictingClassGroupIds:a,sortModifiers:r}=t,i=[],s=e.trim().split(ZG);let l="";for(let u=s.length-1;u>=0;u-=1){const y=s[u],{isExternal:h,modifiers:f,hasImportantModifier:k,baseClassName:m,maybePostfixModifierPosition:g}=o(y);if(h){l=y+(l.length>0?" "+l:l);continue}let _=!!g,v=n(_?m.substring(0,g):m);if(!v){if(!_){l=y+(l.length>0?" "+l:l);continue}if(v=n(m),!v){l=y+(l.length>0?" "+l:l);continue}_=!1}const b=f.length===0?"":f.length===1?f[0]:r(f).join(":"),M=k?b+pS:b,x=M+v;if(i.indexOf(x)>-1)continue;i.push(x);const N=a(v,_);for(let C=0;C<N.length;++C){const $=N[C];i.push(M+$)}l=y+(l.length>0?" "+l:l)}return l},JG=(...e)=>{let t=0,o,n,a="";for(;t<e.length;)(o=e[t++])&&(n=_T(o))&&(a&&(a+=" "),a+=n);return a},_T=e=>{if(typeof e=="string")return e;let t,o="";for(let n=0;n<e.length;n++)e[n]&&(t=_T(e[n]))&&(o&&(o+=" "),o+=t);return o},eK=(e,...t)=>{let o,n,a,r;const i=l=>{const u=t.reduce((y,h)=>h(y),e());return o=XG(u),n=o.cache.get,a=o.cache.set,r=s,s(l)},s=l=>{const u=n(l);if(u)return u;const y=QG(l,o);return a(l,y),y};return r=i,(...l)=>r(JG(...l))},tK=[],lt=e=>{const t=o=>o[e]||tK;return t.isThemeGetter=!0,t},bT=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,MT=/^\((?:(\w[\w-]*):)?(.+)\)$/i,oK=/^\d+\/\d+$/,nK=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,aK=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,rK=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,iK=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,cK=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,Rc=e=>oK.test(e),Ie=e=>!!e&&!Number.isNaN(Number(e)),Yo=e=>!!e&&Number.isInteger(Number(e)),yS=e=>e.endsWith("%")&&Ie(e.slice(0,-1)),Oo=e=>nK.test(e),sK=()=>!0,dK=e=>aK.test(e)&&!rK.test(e),wT=()=>!1,lK=e=>iK.test(e),uK=e=>cK.test(e),hK=e=>!ke(e)&&!ge(e),pK=e=>Gc(e,ST,wT),ke=e=>bT.test(e),vn=e=>Gc(e,LT,dK),fS=e=>Gc(e,gK,Ie),xT=e=>Gc(e,CT,wT),yK=e=>Gc(e,$T,uK),h1=e=>Gc(e,IT,lK),ge=e=>MT.test(e),zs=e=>Kc(e,LT),fK=e=>Kc(e,vK),NT=e=>Kc(e,CT),mK=e=>Kc(e,ST),kK=e=>Kc(e,$T),p1=e=>Kc(e,IT,!0),Gc=(e,t,o)=>{const n=bT.exec(e);return n?n[1]?t(n[1]):o(n[2]):!1},Kc=(e,t,o=!1)=>{const n=MT.exec(e);return n?n[1]?t(n[1]):o:!1},CT=e=>e==="position"||e==="percentage",$T=e=>e==="image"||e==="url",ST=e=>e==="length"||e==="size"||e==="bg-size",LT=e=>e==="length",gK=e=>e==="number",vK=e=>e==="family-name",IT=e=>e==="shadow",_K=eK(()=>{const e=lt("color"),t=lt("font"),o=lt("text"),n=lt("font-weight"),a=lt("tracking"),r=lt("leading"),i=lt("breakpoint"),s=lt("container"),l=lt("spacing"),u=lt("radius"),y=lt("shadow"),h=lt("inset-shadow"),f=lt("text-shadow"),k=lt("drop-shadow"),m=lt("blur"),g=lt("perspective"),_=lt("aspect"),v=lt("ease"),b=lt("animate"),M=()=>["auto","avoid","all","avoid-page","page","left","right","column"],x=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],N=()=>[...x(),ge,ke],C=()=>["auto","hidden","clip","visible","scroll"],$=()=>["auto","contain","none"],L=()=>[ge,ke,l],A=()=>[Rc,"full","auto",...L()],z=()=>[Yo,"none","subgrid",ge,ke],E=()=>["auto",{span:["full",Yo,ge,ke]},Yo,ge,ke],O=()=>[Yo,"auto",ge,ke],T=()=>["auto","min","max","fr",ge,ke],W=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],R=()=>["start","end","center","stretch","center-safe","end-safe"],H=()=>["auto",...L()],Y=()=>[Rc,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...L()],j=()=>[e,ge,ke],U=()=>[...x(),NT,xT,{position:[ge,ke]}],ce=()=>["no-repeat",{repeat:["","x","y","space","round"]}],le=()=>["auto","cover","contain",mK,pK,{size:[ge,ke]}],B=()=>[yS,zs,vn],F=()=>["","none","full",u,ge,ke],K=()=>["",Ie,zs,vn],G=()=>["solid","dashed","dotted","double"],ie=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],V=()=>[Ie,yS,NT,xT],te=()=>["","none",m,ge,ke],fe=()=>["none",Ie,ge,ke],pe=()=>["none",Ie,ge,ke],de=()=>[Ie,ge,ke],ee=()=>[Rc,"full",...L()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[Oo],breakpoint:[Oo],color:[sK],container:[Oo],"drop-shadow":[Oo],ease:["in","out","in-out"],font:[hK],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[Oo],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[Oo],shadow:[Oo],spacing:["px",Ie],text:[Oo],"text-shadow":[Oo],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",Rc,ke,ge,_]}],container:["container"],columns:[{columns:[Ie,ke,ge,s]}],"break-after":[{"break-after":M()}],"break-before":[{"break-before":M()}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:N()}],overflow:[{overflow:C()}],"overflow-x":[{"overflow-x":C()}],"overflow-y":[{"overflow-y":C()}],overscroll:[{overscroll:$()}],"overscroll-x":[{"overscroll-x":$()}],"overscroll-y":[{"overscroll-y":$()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:A()}],"inset-x":[{"inset-x":A()}],"inset-y":[{"inset-y":A()}],start:[{start:A()}],end:[{end:A()}],top:[{top:A()}],right:[{right:A()}],bottom:[{bottom:A()}],left:[{left:A()}],visibility:["visible","invisible","collapse"],z:[{z:[Yo,"auto",ge,ke]}],basis:[{basis:[Rc,"full","auto",s,...L()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[Ie,Rc,"auto","initial","none",ke]}],grow:[{grow:["",Ie,ge,ke]}],shrink:[{shrink:["",Ie,ge,ke]}],order:[{order:[Yo,"first","last","none",ge,ke]}],"grid-cols":[{"grid-cols":z()}],"col-start-end":[{col:E()}],"col-start":[{"col-start":O()}],"col-end":[{"col-end":O()}],"grid-rows":[{"grid-rows":z()}],"row-start-end":[{row:E()}],"row-start":[{"row-start":O()}],"row-end":[{"row-end":O()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":T()}],"auto-rows":[{"auto-rows":T()}],gap:[{gap:L()}],"gap-x":[{"gap-x":L()}],"gap-y":[{"gap-y":L()}],"justify-content":[{justify:[...W(),"normal"]}],"justify-items":[{"justify-items":[...R(),"normal"]}],"justify-self":[{"justify-self":["auto",...R()]}],"align-content":[{content:["normal",...W()]}],"align-items":[{items:[...R(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...R(),{baseline:["","last"]}]}],"place-content":[{"place-content":W()}],"place-items":[{"place-items":[...R(),"baseline"]}],"place-self":[{"place-self":["auto",...R()]}],p:[{p:L()}],px:[{px:L()}],py:[{py:L()}],ps:[{ps:L()}],pe:[{pe:L()}],pt:[{pt:L()}],pr:[{pr:L()}],pb:[{pb:L()}],pl:[{pl:L()}],m:[{m:H()}],mx:[{mx:H()}],my:[{my:H()}],ms:[{ms:H()}],me:[{me:H()}],mt:[{mt:H()}],mr:[{mr:H()}],mb:[{mb:H()}],ml:[{ml:H()}],"space-x":[{"space-x":L()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":L()}],"space-y-reverse":["space-y-reverse"],size:[{size:Y()}],w:[{w:[s,"screen",...Y()]}],"min-w":[{"min-w":[s,"screen","none",...Y()]}],"max-w":[{"max-w":[s,"screen","none","prose",{screen:[i]},...Y()]}],h:[{h:["screen","lh",...Y()]}],"min-h":[{"min-h":["screen","lh","none",...Y()]}],"max-h":[{"max-h":["screen","lh",...Y()]}],"font-size":[{text:["base",o,zs,vn]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[n,ge,fS]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",yS,ke]}],"font-family":[{font:[fK,ke,t]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[a,ge,ke]}],"line-clamp":[{"line-clamp":[Ie,"none",ge,fS]}],leading:[{leading:[r,...L()]}],"list-image":[{"list-image":["none",ge,ke]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",ge,ke]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:j()}],"text-color":[{text:j()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...G(),"wavy"]}],"text-decoration-thickness":[{decoration:[Ie,"from-font","auto",ge,vn]}],"text-decoration-color":[{decoration:j()}],"underline-offset":[{"underline-offset":[Ie,"auto",ge,ke]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:L()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",ge,ke]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",ge,ke]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:U()}],"bg-repeat":[{bg:ce()}],"bg-size":[{bg:le()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},Yo,ge,ke],radial:["",ge,ke],conic:[Yo,ge,ke]},kK,yK]}],"bg-color":[{bg:j()}],"gradient-from-pos":[{from:B()}],"gradient-via-pos":[{via:B()}],"gradient-to-pos":[{to:B()}],"gradient-from":[{from:j()}],"gradient-via":[{via:j()}],"gradient-to":[{to:j()}],rounded:[{rounded:F()}],"rounded-s":[{"rounded-s":F()}],"rounded-e":[{"rounded-e":F()}],"rounded-t":[{"rounded-t":F()}],"rounded-r":[{"rounded-r":F()}],"rounded-b":[{"rounded-b":F()}],"rounded-l":[{"rounded-l":F()}],"rounded-ss":[{"rounded-ss":F()}],"rounded-se":[{"rounded-se":F()}],"rounded-ee":[{"rounded-ee":F()}],"rounded-es":[{"rounded-es":F()}],"rounded-tl":[{"rounded-tl":F()}],"rounded-tr":[{"rounded-tr":F()}],"rounded-br":[{"rounded-br":F()}],"rounded-bl":[{"rounded-bl":F()}],"border-w":[{border:K()}],"border-w-x":[{"border-x":K()}],"border-w-y":[{"border-y":K()}],"border-w-s":[{"border-s":K()}],"border-w-e":[{"border-e":K()}],"border-w-t":[{"border-t":K()}],"border-w-r":[{"border-r":K()}],"border-w-b":[{"border-b":K()}],"border-w-l":[{"border-l":K()}],"divide-x":[{"divide-x":K()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":K()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...G(),"hidden","none"]}],"divide-style":[{divide:[...G(),"hidden","none"]}],"border-color":[{border:j()}],"border-color-x":[{"border-x":j()}],"border-color-y":[{"border-y":j()}],"border-color-s":[{"border-s":j()}],"border-color-e":[{"border-e":j()}],"border-color-t":[{"border-t":j()}],"border-color-r":[{"border-r":j()}],"border-color-b":[{"border-b":j()}],"border-color-l":[{"border-l":j()}],"divide-color":[{divide:j()}],"outline-style":[{outline:[...G(),"none","hidden"]}],"outline-offset":[{"outline-offset":[Ie,ge,ke]}],"outline-w":[{outline:["",Ie,zs,vn]}],"outline-color":[{outline:j()}],shadow:[{shadow:["","none",y,p1,h1]}],"shadow-color":[{shadow:j()}],"inset-shadow":[{"inset-shadow":["none",h,p1,h1]}],"inset-shadow-color":[{"inset-shadow":j()}],"ring-w":[{ring:K()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:j()}],"ring-offset-w":[{"ring-offset":[Ie,vn]}],"ring-offset-color":[{"ring-offset":j()}],"inset-ring-w":[{"inset-ring":K()}],"inset-ring-color":[{"inset-ring":j()}],"text-shadow":[{"text-shadow":["none",f,p1,h1]}],"text-shadow-color":[{"text-shadow":j()}],opacity:[{opacity:[Ie,ge,ke]}],"mix-blend":[{"mix-blend":[...ie(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":ie()}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[Ie]}],"mask-image-linear-from-pos":[{"mask-linear-from":V()}],"mask-image-linear-to-pos":[{"mask-linear-to":V()}],"mask-image-linear-from-color":[{"mask-linear-from":j()}],"mask-image-linear-to-color":[{"mask-linear-to":j()}],"mask-image-t-from-pos":[{"mask-t-from":V()}],"mask-image-t-to-pos":[{"mask-t-to":V()}],"mask-image-t-from-color":[{"mask-t-from":j()}],"mask-image-t-to-color":[{"mask-t-to":j()}],"mask-image-r-from-pos":[{"mask-r-from":V()}],"mask-image-r-to-pos":[{"mask-r-to":V()}],"mask-image-r-from-color":[{"mask-r-from":j()}],"mask-image-r-to-color":[{"mask-r-to":j()}],"mask-image-b-from-pos":[{"mask-b-from":V()}],"mask-image-b-to-pos":[{"mask-b-to":V()}],"mask-image-b-from-color":[{"mask-b-from":j()}],"mask-image-b-to-color":[{"mask-b-to":j()}],"mask-image-l-from-pos":[{"mask-l-from":V()}],"mask-image-l-to-pos":[{"mask-l-to":V()}],"mask-image-l-from-color":[{"mask-l-from":j()}],"mask-image-l-to-color":[{"mask-l-to":j()}],"mask-image-x-from-pos":[{"mask-x-from":V()}],"mask-image-x-to-pos":[{"mask-x-to":V()}],"mask-image-x-from-color":[{"mask-x-from":j()}],"mask-image-x-to-color":[{"mask-x-to":j()}],"mask-image-y-from-pos":[{"mask-y-from":V()}],"mask-image-y-to-pos":[{"mask-y-to":V()}],"mask-image-y-from-color":[{"mask-y-from":j()}],"mask-image-y-to-color":[{"mask-y-to":j()}],"mask-image-radial":[{"mask-radial":[ge,ke]}],"mask-image-radial-from-pos":[{"mask-radial-from":V()}],"mask-image-radial-to-pos":[{"mask-radial-to":V()}],"mask-image-radial-from-color":[{"mask-radial-from":j()}],"mask-image-radial-to-color":[{"mask-radial-to":j()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":x()}],"mask-image-conic-pos":[{"mask-conic":[Ie]}],"mask-image-conic-from-pos":[{"mask-conic-from":V()}],"mask-image-conic-to-pos":[{"mask-conic-to":V()}],"mask-image-conic-from-color":[{"mask-conic-from":j()}],"mask-image-conic-to-color":[{"mask-conic-to":j()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:U()}],"mask-repeat":[{mask:ce()}],"mask-size":[{mask:le()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",ge,ke]}],filter:[{filter:["","none",ge,ke]}],blur:[{blur:te()}],brightness:[{brightness:[Ie,ge,ke]}],contrast:[{contrast:[Ie,ge,ke]}],"drop-shadow":[{"drop-shadow":["","none",k,p1,h1]}],"drop-shadow-color":[{"drop-shadow":j()}],grayscale:[{grayscale:["",Ie,ge,ke]}],"hue-rotate":[{"hue-rotate":[Ie,ge,ke]}],invert:[{invert:["",Ie,ge,ke]}],saturate:[{saturate:[Ie,ge,ke]}],sepia:[{sepia:["",Ie,ge,ke]}],"backdrop-filter":[{"backdrop-filter":["","none",ge,ke]}],"backdrop-blur":[{"backdrop-blur":te()}],"backdrop-brightness":[{"backdrop-brightness":[Ie,ge,ke]}],"backdrop-contrast":[{"backdrop-contrast":[Ie,ge,ke]}],"backdrop-grayscale":[{"backdrop-grayscale":["",Ie,ge,ke]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[Ie,ge,ke]}],"backdrop-invert":[{"backdrop-invert":["",Ie,ge,ke]}],"backdrop-opacity":[{"backdrop-opacity":[Ie,ge,ke]}],"backdrop-saturate":[{"backdrop-saturate":[Ie,ge,ke]}],"backdrop-sepia":[{"backdrop-sepia":["",Ie,ge,ke]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":L()}],"border-spacing-x":[{"border-spacing-x":L()}],"border-spacing-y":[{"border-spacing-y":L()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",ge,ke]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[Ie,"initial",ge,ke]}],ease:[{ease:["linear","initial",v,ge,ke]}],delay:[{delay:[Ie,ge,ke]}],animate:[{animate:["none",b,ge,ke]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[g,ge,ke]}],"perspective-origin":[{"perspective-origin":N()}],rotate:[{rotate:fe()}],"rotate-x":[{"rotate-x":fe()}],"rotate-y":[{"rotate-y":fe()}],"rotate-z":[{"rotate-z":fe()}],scale:[{scale:pe()}],"scale-x":[{"scale-x":pe()}],"scale-y":[{"scale-y":pe()}],"scale-z":[{"scale-z":pe()}],"scale-3d":["scale-3d"],skew:[{skew:de()}],"skew-x":[{"skew-x":de()}],"skew-y":[{"skew-y":de()}],transform:[{transform:[ge,ke,"","none","gpu","cpu"]}],"transform-origin":[{origin:N()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:ee()}],"translate-x":[{"translate-x":ee()}],"translate-y":[{"translate-y":ee()}],"translate-z":[{"translate-z":ee()}],"translate-none":["translate-none"],accent:[{accent:j()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:j()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",ge,ke]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":L()}],"scroll-mx":[{"scroll-mx":L()}],"scroll-my":[{"scroll-my":L()}],"scroll-ms":[{"scroll-ms":L()}],"scroll-me":[{"scroll-me":L()}],"scroll-mt":[{"scroll-mt":L()}],"scroll-mr":[{"scroll-mr":L()}],"scroll-mb":[{"scroll-mb":L()}],"scroll-ml":[{"scroll-ml":L()}],"scroll-p":[{"scroll-p":L()}],"scroll-px":[{"scroll-px":L()}],"scroll-py":[{"scroll-py":L()}],"scroll-ps":[{"scroll-ps":L()}],"scroll-pe":[{"scroll-pe":L()}],"scroll-pt":[{"scroll-pt":L()}],"scroll-pr":[{"scroll-pr":L()}],"scroll-pb":[{"scroll-pb":L()}],"scroll-pl":[{"scroll-pl":L()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",ge,ke]}],fill:[{fill:["none",...j()]}],"stroke-w":[{stroke:[Ie,zs,vn,fS]}],stroke:[{stroke:["none",...j()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}}),AT=w.createContext(null),mS=e=>{const o=w.useContext(AT)?.dataSource;return!o||!e?o:e.split(".").reduce((n,a)=>n&&n[a],o)},jt=w.forwardRef(({schema:e,...t},o)=>{const a=w.useContext(AT)?.dataSource||{},r=w.useMemo(()=>{if(!e||typeof e=="string")return e;const b=new lS({data:a}),M={...e};if(M.properties&&Object.assign(M,M.properties),typeof M.content=="string"&&(M.content=b.evaluate(M.content)),M.props){const x={...M.props};for(const[N,C]of Object.entries(x))x[N]=b.evaluate(C);M.props=x}return M},[e,a]);if(!r)return null;if(typeof r=="string")return d.jsx(d.Fragment,{children:r});const i=ae.get(r.type);if(!i)return d.jsxs("div",{className:"p-4 border border-red-500 rounded text-red-500 bg-red-50 my-2",children:["Unknown component type: ",d.jsx("strong",{children:r.type}),d.jsx("pre",{className:"text-xs mt-2 overflow-auto",children:JSON.stringify(r,null,2)})]});const{type:s,children:l,body:u,schema:y,visible:h,visibleOn:f,hidden:k,hiddenOn:m,disabled:g,disabledOn:_,...v}=r;return w.createElement(i,{schema:r,...v,...r.props||{},className:r.className,"data-obj-id":r.id,"data-obj-type":r.type,...t})});jt.displayName="SchemaRenderer";var Os=e=>e.type==="checkbox",_n=e=>e instanceof Date,xt=e=>e==null;const PT=e=>typeof e=="object";var at=e=>!xt(e)&&!Array.isArray(e)&&PT(e)&&!_n(e),TT=e=>at(e)&&e.target?Os(e.target)?e.target.checked:e.target.value:e,bK=e=>e.substring(0,e.search(/\.\d+(\.|$)/))||e,DT=(e,t)=>e.has(bK(t)),MK=e=>{const t=e.constructor&&e.constructor.prototype;return at(t)&&t.hasOwnProperty("isPrototypeOf")},kS=typeof window<"u"&&typeof window.HTMLElement<"u"&&typeof document<"u";function rt(e){if(e instanceof Date)return new Date(e);const t=typeof FileList<"u"&&e instanceof FileList;if(kS&&(e instanceof Blob||t))return e;const o=Array.isArray(e);if(!o&&!(at(e)&&MK(e)))return e;const n=o?[]:Object.create(Object.getPrototypeOf(e));for(const a in e)Object.prototype.hasOwnProperty.call(e,a)&&(n[a]=rt(e[a]));return n}var y1=e=>/^\w*$/.test(e),Ye=e=>e===void 0,gS=e=>Array.isArray(e)?e.filter(Boolean):[],vS=e=>gS(e.replace(/["|']|\]/g,"").split(/\.|\[/)),ye=(e,t,o)=>{if(!t||!at(e))return o;const n=(y1(t)?[t]:vS(t)).reduce((a,r)=>xt(a)?a:a[r],e);return Ye(n)||n===e?Ye(e[t])?o:e[t]:n},It=e=>typeof e=="boolean",gt=e=>typeof e=="function",Ge=(e,t,o)=>{let n=-1;const a=y1(t)?[t]:vS(t),r=a.length,i=r-1;for(;++n<r;){const s=a[n];let l=o;if(n!==i){const u=e[s];l=at(u)||Array.isArray(u)?u:isNaN(+a[n+1])?{}:[]}if(s==="__proto__"||s==="constructor"||s==="prototype")return;e[s]=l,e=e[s]}};const f1={BLUR:"blur",FOCUS_OUT:"focusout",CHANGE:"change"},Kt={onBlur:"onBlur",onChange:"onChange",onSubmit:"onSubmit",onTouched:"onTouched",all:"all"},qo={max:"max",min:"min",maxLength:"maxLength",minLength:"minLength",pattern:"pattern",required:"required",validate:"validate"},_S=w.createContext(null);_S.displayName="HookFormControlContext";const bS=()=>w.useContext(_S);var ET=(e,t,o,n=!0)=>{const a={defaultValues:t._defaultValues};for(const r in e)Object.defineProperty(a,r,{get:()=>{const i=r;return t._proxyFormState[i]!==Kt.all&&(t._proxyFormState[i]=!n||Kt.all),o&&(o[i]=!0),e[i]}});return a};const MS=typeof window<"u"?w.useLayoutEffect:w.useEffect;function wK(e){const t=bS(),{control:o=t,disabled:n,name:a,exact:r}=e||{},[i,s]=w.useState(o._formState),l=w.useRef({isDirty:!1,isLoading:!1,dirtyFields:!1,touchedFields:!1,validatingFields:!1,isValidating:!1,isValid:!1,errors:!1});return MS(()=>o._subscribe({name:a,formState:l.current,exact:r,callback:u=>{!n&&s({...o._formState,...u})}}),[a,n,r]),w.useEffect(()=>{l.current.isValid&&o._setValid(!0)},[o]),w.useMemo(()=>ET(i,o,l.current,!1),[i,o])}var At=e=>typeof e=="string",wS=(e,t,o,n,a)=>At(e)?(n&&t.watch.add(e),ye(o,e,a)):Array.isArray(e)?e.map(r=>(n&&t.watch.add(r),ye(o,r))):(n&&(t.watchAll=!0),o),xS=e=>xt(e)||!PT(e);function Yt(e,t,o=new WeakSet){if(xS(e)||xS(t))return Object.is(e,t);if(_n(e)&&_n(t))return Object.is(e.getTime(),t.getTime());const n=Object.keys(e),a=Object.keys(t);if(n.length!==a.length)return!1;if(o.has(e)||o.has(t))return!0;o.add(e),o.add(t);for(const r of n){const i=e[r];if(!a.includes(r))return!1;if(r!=="ref"){const s=t[r];if(_n(i)&&_n(s)||at(i)&&at(s)||Array.isArray(i)&&Array.isArray(s)?!Yt(i,s,o):!Object.is(i,s))return!1}}return!0}function xK(e){const t=bS(),{control:o=t,name:n,defaultValue:a,disabled:r,exact:i,compute:s}=e||{},l=w.useRef(a),u=w.useRef(s),y=w.useRef(void 0),h=w.useRef(o),f=w.useRef(n);u.current=s;const[k,m]=w.useState(()=>{const x=o._getWatch(n,l.current);return u.current?u.current(x):x}),g=w.useCallback(x=>{const N=wS(n,o._names,x||o._formValues,!1,l.current);return u.current?u.current(N):N},[o._formValues,o._names,n]),_=w.useCallback(x=>{if(!r){const N=wS(n,o._names,x||o._formValues,!1,l.current);if(u.current){const C=u.current(N);Yt(C,y.current)||(m(C),y.current=C)}else m(N)}},[o._formValues,o._names,r,n]);MS(()=>((h.current!==o||!Yt(f.current,n))&&(h.current=o,f.current=n,_()),o._subscribe({name:n,formState:{values:!0},exact:i,callback:x=>{_(x.values)}})),[o,i,n,_]),w.useEffect(()=>o._removeUnmounted());const v=h.current!==o,b=f.current,M=w.useMemo(()=>{if(r)return null;const x=!v&&!Yt(b,n);return v||x?g():null},[r,v,n,b,g]);return M!==null?M:k}function NK(e){const t=bS(),{name:o,disabled:n,control:a=t,shouldUnregister:r,defaultValue:i,exact:s=!0}=e,l=DT(a._names.array,o),u=w.useMemo(()=>ye(a._formValues,o,ye(a._defaultValues,o,i)),[a,o,i]),y=xK({control:a,name:o,defaultValue:u,exact:s}),h=wK({control:a,name:o,exact:s}),f=w.useRef(e),k=w.useRef(void 0),m=w.useRef(a.register(o,{...e.rules,value:y,...It(e.disabled)?{disabled:e.disabled}:{}}));f.current=e;const g=w.useMemo(()=>Object.defineProperties({},{invalid:{enumerable:!0,get:()=>!!ye(h.errors,o)},isDirty:{enumerable:!0,get:()=>!!ye(h.dirtyFields,o)},isTouched:{enumerable:!0,get:()=>!!ye(h.touchedFields,o)},isValidating:{enumerable:!0,get:()=>!!ye(h.validatingFields,o)},error:{enumerable:!0,get:()=>ye(h.errors,o)}}),[h,o]),_=w.useCallback(x=>m.current.onChange({target:{value:TT(x),name:o},type:f1.CHANGE}),[o]),v=w.useCallback(()=>m.current.onBlur({target:{value:ye(a._formValues,o),name:o},type:f1.BLUR}),[o,a._formValues]),b=w.useCallback(x=>{const N=ye(a._fields,o);N&&N._f&&x&&(N._f.ref={focus:()=>gt(x.focus)&&x.focus(),select:()=>gt(x.select)&&x.select(),setCustomValidity:C=>gt(x.setCustomValidity)&&x.setCustomValidity(C),reportValidity:()=>gt(x.reportValidity)&&x.reportValidity()})},[a._fields,o]),M=w.useMemo(()=>({name:o,value:y,...It(n)||h.disabled?{disabled:h.disabled||n}:{},onChange:_,onBlur:v,ref:b}),[o,n,h.disabled,_,v,b,y]);return w.useEffect(()=>{const x=a._options.shouldUnregister||r,N=k.current;N&&N!==o&&!l&&a.unregister(N),a.register(o,{...f.current.rules,...It(f.current.disabled)?{disabled:f.current.disabled}:{}});const C=($,L)=>{const A=ye(a._fields,$);A&&A._f&&(A._f.mount=L)};if(C(o,!0),x){const $=rt(ye(a._options.defaultValues,o,f.current.defaultValue));Ge(a._defaultValues,o,$),Ye(ye(a._formValues,o))&&Ge(a._formValues,o,$)}return!l&&a.register(o),k.current=o,()=>{(l?x&&!a._state.action:x)?a.unregister(o):C(o,!1)}},[o,a,l,r]),w.useEffect(()=>{a._setDisabledField({disabled:n,name:o})},[n,o,a]),w.useMemo(()=>({field:M,formState:h,fieldState:g}),[M,h,g])}const CK=e=>e.render(NK(e)),NS=w.createContext(null);NS.displayName="HookFormContext";const $K=()=>w.useContext(NS),SK=e=>{const{children:t,watch:o,getValues:n,getFieldState:a,setError:r,clearErrors:i,setValue:s,trigger:l,formState:u,resetField:y,reset:h,handleSubmit:f,unregister:k,control:m,register:g,setFocus:_,subscribe:v}=e;return w.createElement(NS.Provider,{value:w.useMemo(()=>({watch:o,getValues:n,getFieldState:a,setError:r,clearErrors:i,setValue:s,trigger:l,formState:u,resetField:y,reset:h,handleSubmit:f,unregister:k,control:m,register:g,setFocus:_,subscribe:v}),[i,m,u,a,n,f,g,h,y,r,_,s,v,l,k,o])},w.createElement(_S.Provider,{value:m},t))};var LK=(e,t,o,n,a)=>t?{...o[e],types:{...o[e]&&o[e].types?o[e].types:{},[n]:a||!0}}:{},qs=e=>Array.isArray(e)?e:[e],zT=()=>{let e=[];return{get observers(){return e},next:a=>{for(const r of e)r.next&&r.next(a)},subscribe:a=>(e.push(a),{unsubscribe:()=>{e=e.filter(r=>r!==a)}}),unsubscribe:()=>{e=[]}}};function OT(e,t){const o={};for(const n in e)if(e.hasOwnProperty(n)){const a=e[n],r=t[n];if(a&&at(a)&&r){const i=OT(a,r);at(i)&&(o[n]=i)}else e[n]&&(o[n]=r)}return o}var vt=e=>at(e)&&!Object.keys(e).length,CS=e=>e.type==="file",m1=e=>{if(!kS)return!1;const t=e?e.ownerDocument:0;return e instanceof(t&&t.defaultView?t.defaultView.HTMLElement:HTMLElement)},qT=e=>e.type==="select-multiple",$S=e=>e.type==="radio",IK=e=>$S(e)||Os(e),SS=e=>m1(e)&&e.isConnected;function AK(e,t){const o=t.slice(0,-1).length;let n=0;for(;n<o;)e=Ye(e)?n++:e[t[n++]];return e}function PK(e){for(const t in e)if(e.hasOwnProperty(t)&&!Ye(e[t]))return!1;return!0}function it(e,t){const o=Array.isArray(t)?t:y1(t)?[t]:vS(t),n=o.length===1?e:AK(e,o),a=o.length-1,r=o[a];return n&&delete n[r],a!==0&&(at(n)&&vt(n)||Array.isArray(n)&&PK(n))&&it(e,o.slice(0,-1)),e}var TK=e=>{for(const t in e)if(gt(e[t]))return!0;return!1};function jT(e){return Array.isArray(e)||at(e)&&!TK(e)}function LS(e,t={}){for(const o in e){const n=e[o];jT(n)?(t[o]=Array.isArray(n)?[]:{},LS(n,t[o])):Ye(n)||(t[o]=!0)}return t}function Yc(e,t,o){o||(o=LS(t));for(const n in e){const a=e[n];if(jT(a))Ye(t)||xS(o[n])?o[n]=LS(a,Array.isArray(a)?[]:{}):Yc(a,xt(t)?{}:t[n],o[n]);else{const r=t[n];o[n]=!Yt(a,r)}}return o}const HT={value:!1,isValid:!1},VT={value:!0,isValid:!0};var FT=e=>{if(Array.isArray(e)){if(e.length>1){const t=e.filter(o=>o&&o.checked&&!o.disabled).map(o=>o.value);return{value:t,isValid:!!t.length}}return e[0].checked&&!e[0].disabled?e[0].attributes&&!Ye(e[0].attributes.value)?Ye(e[0].value)||e[0].value===""?VT:{value:e[0].value,isValid:!0}:VT:HT}return HT},BT=(e,{valueAsNumber:t,valueAsDate:o,setValueAs:n})=>Ye(e)?e:t?e===""?NaN:e&&+e:o&&At(e)?new Date(e):n?n(e):e;const WT={isValid:!1,value:null};var UT=e=>Array.isArray(e)?e.reduce((t,o)=>o&&o.checked&&!o.disabled?{isValid:!0,value:o.value}:t,WT):WT;function RT(e){const t=e.ref;return CS(t)?t.files:$S(t)?UT(e.refs).value:qT(t)?[...t.selectedOptions].map(({value:o})=>o):Os(t)?FT(e.refs).value:BT(Ye(t.value)?e.ref.value:t.value,e)}var DK=(e,t,o,n)=>{const a={};for(const r of e){const i=ye(t,r);i&&Ge(a,r,i._f)}return{criteriaMode:o,names:[...e],fields:a,shouldUseNativeValidation:n}},k1=e=>e instanceof RegExp,js=e=>Ye(e)?e:k1(e)?e.source:at(e)?k1(e.value)?e.value.source:e.value:e,GT=e=>({isOnSubmit:!e||e===Kt.onSubmit,isOnBlur:e===Kt.onBlur,isOnChange:e===Kt.onChange,isOnAll:e===Kt.all,isOnTouch:e===Kt.onTouched});const KT="AsyncFunction";var EK=e=>!!e&&!!e.validate&&!!(gt(e.validate)&&e.validate.constructor.name===KT||at(e.validate)&&Object.values(e.validate).find(t=>t.constructor.name===KT)),zK=e=>e.mount&&(e.required||e.min||e.max||e.maxLength||e.minLength||e.pattern||e.validate),YT=(e,t,o)=>!o&&(t.watchAll||t.watch.has(e)||[...t.watch].some(n=>e.startsWith(n)&&/^\.\w+/.test(e.slice(n.length))));const Hs=(e,t,o,n)=>{for(const a of o||Object.keys(e)){const r=ye(e,a);if(r){const{_f:i,...s}=r;if(i){if(i.refs&&i.refs[0]&&t(i.refs[0],a)&&!n)return!0;if(i.ref&&t(i.ref,i.name)&&!n)return!0;if(Hs(s,t))break}else if(at(s)&&Hs(s,t))break}}};function XT(e,t,o){const n=ye(e,o);if(n||y1(o))return{error:n,name:o};const a=o.split(".");for(;a.length;){const r=a.join("."),i=ye(t,r),s=ye(e,r);if(i&&!Array.isArray(i)&&o!==r)return{name:o};if(s&&s.type)return{name:r,error:s};if(s&&s.root&&s.root.type)return{name:`${r}.root`,error:s.root};a.pop()}return{name:o}}var OK=(e,t,o,n)=>{o(e);const{name:a,...r}=e;return vt(r)||Object.keys(r).length>=Object.keys(t).length||Object.keys(r).find(i=>t[i]===(!n||Kt.all))},qK=(e,t,o)=>!e||!t||e===t||qs(e).some(n=>n&&(o?n===t:n.startsWith(t)||t.startsWith(n))),jK=(e,t,o,n,a)=>a.isOnAll?!1:!o&&a.isOnTouch?!(t||e):(o?n.isOnBlur:a.isOnBlur)?!e:(o?n.isOnChange:a.isOnChange)?e:!0,HK=(e,t)=>!gS(ye(e,t)).length&&it(e,t),VK=(e,t,o)=>{const n=qs(ye(e,o));return Ge(n,"root",t[o]),Ge(e,o,n),e};function ZT(e,t,o="validate"){if(At(e)||Array.isArray(e)&&e.every(At)||It(e)&&!e)return{type:o,message:At(e)?e:"",ref:t}}var Xc=e=>at(e)&&!k1(e)?e:{value:e,message:""},QT=async(e,t,o,n,a,r)=>{const{ref:i,refs:s,required:l,maxLength:u,minLength:y,min:h,max:f,pattern:k,validate:m,name:g,valueAsNumber:_,mount:v}=e._f,b=ye(o,g);if(!v||t.has(g))return{};const M=s?s[0]:i,x=O=>{a&&M.reportValidity&&(M.setCustomValidity(It(O)?"":O||""),M.reportValidity())},N={},C=$S(i),$=Os(i),L=C||$,A=(_||CS(i))&&Ye(i.value)&&Ye(b)||m1(i)&&i.value===""||b===""||Array.isArray(b)&&!b.length,z=LK.bind(null,g,n,N),E=(O,T,W,R=qo.maxLength,H=qo.minLength)=>{const Y=O?T:W;N[g]={type:O?R:H,message:Y,ref:i,...z(O?R:H,Y)}};if(r?!Array.isArray(b)||!b.length:l&&(!L&&(A||xt(b))||It(b)&&!b||$&&!FT(s).isValid||C&&!UT(s).isValid)){const{value:O,message:T}=At(l)?{value:!!l,message:l}:Xc(l);if(O&&(N[g]={type:qo.required,message:T,ref:M,...z(qo.required,T)},!n))return x(T),N}if(!A&&(!xt(h)||!xt(f))){let O,T;const W=Xc(f),R=Xc(h);if(!xt(b)&&!isNaN(b)){const H=i.valueAsNumber||b&&+b;xt(W.value)||(O=H>W.value),xt(R.value)||(T=H<R.value)}else{const H=i.valueAsDate||new Date(b),Y=ce=>new Date(new Date().toDateString()+" "+ce),j=i.type=="time",U=i.type=="week";At(W.value)&&b&&(O=j?Y(b)>Y(W.value):U?b>W.value:H>new Date(W.value)),At(R.value)&&b&&(T=j?Y(b)<Y(R.value):U?b<R.value:H<new Date(R.value))}if((O||T)&&(E(!!O,W.message,R.message,qo.max,qo.min),!n))return x(N[g].message),N}if((u||y)&&!A&&(At(b)||r&&Array.isArray(b))){const O=Xc(u),T=Xc(y),W=!xt(O.value)&&b.length>+O.value,R=!xt(T.value)&&b.length<+T.value;if((W||R)&&(E(W,O.message,T.message),!n))return x(N[g].message),N}if(k&&!A&&At(b)){const{value:O,message:T}=Xc(k);if(k1(O)&&!b.match(O)&&(N[g]={type:qo.pattern,message:T,ref:i,...z(qo.pattern,T)},!n))return x(T),N}if(m){if(gt(m)){const O=await m(b,o),T=ZT(O,M);if(T&&(N[g]={...T,...z(qo.validate,T.message)},!n))return x(T.message),N}else if(at(m)){let O={};for(const T in m){if(!vt(O)&&!n)break;const W=ZT(await m[T](b,o),M,T);W&&(O={...W,...z(T,W.message)},x(W.message),n&&(N[g]=O))}if(!vt(O)&&(N[g]={ref:M,...O},!n))return N}}return x(!0),N};const FK={mode:Kt.onSubmit,reValidateMode:Kt.onChange,shouldFocusError:!0};function BK(e={}){let t={...FK,...e},o={submitCount:0,isDirty:!1,isReady:!1,isLoading:gt(t.defaultValues),isValidating:!1,isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,touchedFields:{},dirtyFields:{},validatingFields:{},errors:t.errors||{},disabled:t.disabled||!1},n={},a=at(t.defaultValues)||at(t.values)?rt(t.defaultValues||t.values)||{}:{},r=t.shouldUnregister?{}:rt(a),i={action:!1,mount:!1,watch:!1,keepIsValid:!1},s={mount:new Set,disabled:new Set,unMount:new Set,array:new Set,watch:new Set},l,u=0;const y={isDirty:!1,dirtyFields:!1,validatingFields:!1,touchedFields:!1,isValidating:!1,isValid:!1,errors:!1},h={...y};let f={...h};const k={array:zT(),state:zT()},m=t.criteriaMode===Kt.all,g=P=>I=>{clearTimeout(u),u=setTimeout(P,I)},_=async P=>{if(!i.keepIsValid&&!t.disabled&&(h.isValid||f.isValid||P)){let I;t.resolver?(I=vt((await L()).errors),v()):I=await z(n,!0),I!==o.isValid&&k.state.next({isValid:I})}},v=(P,I)=>{!t.disabled&&(h.isValidating||h.validatingFields||f.isValidating||f.validatingFields)&&((P||Array.from(s.mount)).forEach(D=>{D&&(I?Ge(o.validatingFields,D,I):it(o.validatingFields,D))}),k.state.next({validatingFields:o.validatingFields,isValidating:!vt(o.validatingFields)}))},b=(P,I=[],D,Q,Z=!0,J=!0)=>{if(Q&&D&&!t.disabled){if(i.action=!0,J&&Array.isArray(ye(n,P))){const ne=D(ye(n,P),Q.argA,Q.argB);Z&&Ge(n,P,ne)}if(J&&Array.isArray(ye(o.errors,P))){const ne=D(ye(o.errors,P),Q.argA,Q.argB);Z&&Ge(o.errors,P,ne),HK(o.errors,P)}if((h.touchedFields||f.touchedFields)&&J&&Array.isArray(ye(o.touchedFields,P))){const ne=D(ye(o.touchedFields,P),Q.argA,Q.argB);Z&&Ge(o.touchedFields,P,ne)}(h.dirtyFields||f.dirtyFields)&&(o.dirtyFields=Yc(a,r)),k.state.next({name:P,isDirty:O(P,I),dirtyFields:o.dirtyFields,errors:o.errors,isValid:o.isValid})}else Ge(r,P,I)},M=(P,I)=>{Ge(o.errors,P,I),k.state.next({errors:o.errors})},x=P=>{o.errors=P,k.state.next({errors:o.errors,isValid:!1})},N=(P,I,D,Q)=>{const Z=ye(n,P);if(Z){const J=ye(r,P,Ye(D)?ye(a,P):D);Ye(J)||Q&&Q.defaultChecked||I?Ge(r,P,I?J:RT(Z._f)):R(P,J),i.mount&&!i.action&&_()}},C=(P,I,D,Q,Z)=>{let J=!1,ne=!1;const Ne={name:P};if(!t.disabled){if(!D||Q){(h.isDirty||f.isDirty)&&(ne=o.isDirty,o.isDirty=Ne.isDirty=O(),J=ne!==Ne.isDirty);const Se=Yt(ye(a,P),I);ne=!!ye(o.dirtyFields,P),Se?it(o.dirtyFields,P):Ge(o.dirtyFields,P,!0),Ne.dirtyFields=o.dirtyFields,J=J||(h.dirtyFields||f.dirtyFields)&&ne!==!Se}if(D){const Se=ye(o.touchedFields,P);Se||(Ge(o.touchedFields,P,D),Ne.touchedFields=o.touchedFields,J=J||(h.touchedFields||f.touchedFields)&&Se!==D)}J&&Z&&k.state.next(Ne)}return J?Ne:{}},$=(P,I,D,Q)=>{const Z=ye(o.errors,P),J=(h.isValid||f.isValid)&&It(I)&&o.isValid!==I;if(t.delayError&&D?(l=g(()=>M(P,D)),l(t.delayError)):(clearTimeout(u),l=null,D?Ge(o.errors,P,D):it(o.errors,P)),(D?!Yt(Z,D):Z)||!vt(Q)||J){const ne={...Q,...J&&It(I)?{isValid:I}:{},errors:o.errors,name:P};o={...o,...ne},k.state.next(ne)}},L=async P=>(v(P,!0),await t.resolver(r,t.context,DK(P||s.mount,n,t.criteriaMode,t.shouldUseNativeValidation))),A=async P=>{const{errors:I}=await L(P);if(v(P),P)for(const D of P){const Q=ye(I,D);Q?Ge(o.errors,D,Q):it(o.errors,D)}else o.errors=I;return I},z=async(P,I,D={valid:!0})=>{for(const Q in P){const Z=P[Q];if(Z){const{_f:J,...ne}=Z;if(J){const Ne=s.array.has(J.name),Se=Z._f&&EK(Z._f);Se&&h.validatingFields&&v([J.name],!0);const Te=await QT(Z,s.disabled,r,m,t.shouldUseNativeValidation&&!I,Ne);if(Se&&h.validatingFields&&v([J.name]),Te[J.name]&&(D.valid=!1,I||e.shouldUseNativeValidation))break;!I&&(ye(Te,J.name)?Ne?VK(o.errors,Te,J.name):Ge(o.errors,J.name,Te[J.name]):it(o.errors,J.name))}!vt(ne)&&await z(ne,I,D)}}return D.valid},E=()=>{for(const P of s.unMount){const I=ye(n,P);I&&(I._f.refs?I._f.refs.every(D=>!SS(D)):!SS(I._f.ref))&&te(P)}s.unMount=new Set},O=(P,I)=>!t.disabled&&(P&&I&&Ge(r,P,I),!Yt(le(),a)),T=(P,I,D)=>wS(P,s,{...i.mount?r:Ye(I)?a:At(P)?{[P]:I}:I},D,I),W=P=>gS(ye(i.mount?r:a,P,t.shouldUnregister?ye(a,P,[]):[])),R=(P,I,D={})=>{const Q=ye(n,P);let Z=I;if(Q){const J=Q._f;J&&(!J.disabled&&Ge(r,P,BT(I,J)),Z=m1(J.ref)&&xt(I)?"":I,qT(J.ref)?[...J.ref.options].forEach(ne=>ne.selected=Z.includes(ne.value)):J.refs?Os(J.ref)?J.refs.forEach(ne=>{(!ne.defaultChecked||!ne.disabled)&&(Array.isArray(Z)?ne.checked=!!Z.find(Ne=>Ne===ne.value):ne.checked=Z===ne.value||!!Z)}):J.refs.forEach(ne=>ne.checked=ne.value===Z):CS(J.ref)?J.ref.value="":(J.ref.value=Z,J.ref.type||k.state.next({name:P,values:rt(r)})))}(D.shouldDirty||D.shouldTouch)&&C(P,Z,D.shouldTouch,D.shouldDirty,!0),D.shouldValidate&&ce(P)},H=(P,I,D)=>{for(const Q in I){if(!I.hasOwnProperty(Q))return;const Z=I[Q],J=P+"."+Q,ne=ye(n,J);(s.array.has(P)||at(Z)||ne&&!ne._f)&&!_n(Z)?H(J,Z,D):R(J,Z,D)}},Y=(P,I,D={})=>{const Q=ye(n,P),Z=s.array.has(P),J=rt(I);Ge(r,P,J),Z?(k.array.next({name:P,values:rt(r)}),(h.isDirty||h.dirtyFields||f.isDirty||f.dirtyFields)&&D.shouldDirty&&k.state.next({name:P,dirtyFields:Yc(a,r),isDirty:O(P,J)})):Q&&!Q._f&&!xt(J)?H(P,J,D):R(P,J,D),YT(P,s)?k.state.next({...o,name:P,values:rt(r)}):k.state.next({name:i.mount?P:void 0,values:rt(r)})},j=async P=>{i.mount=!0;const I=P.target;let D=I.name,Q=!0;const Z=ye(n,D),J=Se=>{Q=Number.isNaN(Se)||_n(Se)&&isNaN(Se.getTime())||Yt(Se,ye(r,D,Se))},ne=GT(t.mode),Ne=GT(t.reValidateMode);if(Z){let Se,Te;const dt=I.type?RT(Z._f):TT(P),Ve=P.type===f1.BLUR||P.type===f1.FOCUS_OUT,nt=!zK(Z._f)&&!t.resolver&&!ye(o.errors,D)&&!Z._f.deps||jK(Ve,ye(o.touchedFields,D),o.isSubmitted,Ne,ne),wt=YT(D,s,Ve);Ge(r,D,dt),Ve?(!I||!I.readOnly)&&(Z._f.onBlur&&Z._f.onBlur(P),l&&l(0)):Z._f.onChange&&Z._f.onChange(P);const St=C(D,dt,Ve),zo=!vt(St)||wt;if(!Ve&&k.state.next({name:D,type:P.type,values:rt(r)}),nt)return(h.isValid||f.isValid)&&(t.mode==="onBlur"?Ve&&_():Ve||_()),zo&&k.state.next({name:D,...wt?{}:St});if(!Ve&&wt&&k.state.next({...o}),t.resolver){const{errors:lo}=await L([D]);if(v([D]),J(dt),Q){const uo=XT(o.errors,n,D),oe=XT(lo,n,uo.name||D);Se=oe.error,D=oe.name,Te=vt(lo)}}else v([D],!0),Se=(await QT(Z,s.disabled,r,m,t.shouldUseNativeValidation))[D],v([D]),J(dt),Q&&(Se?Te=!1:(h.isValid||f.isValid)&&(Te=await z(n,!0)));Q&&(Z._f.deps&&(!Array.isArray(Z._f.deps)||Z._f.deps.length>0)&&ce(Z._f.deps),$(D,Te,Se,St))}},U=(P,I)=>{if(ye(o.errors,I)&&P.focus)return P.focus(),1},ce=async(P,I={})=>{let D,Q;const Z=qs(P);if(t.resolver){const J=await A(Ye(P)?P:Z);D=vt(J),Q=P?!Z.some(ne=>ye(J,ne)):D}else P?(Q=(await Promise.all(Z.map(async J=>{const ne=ye(n,J);return await z(ne&&ne._f?{[J]:ne}:ne)}))).every(Boolean),!(!Q&&!o.isValid)&&_()):Q=D=await z(n);return k.state.next({...!At(P)||(h.isValid||f.isValid)&&D!==o.isValid?{}:{name:P},...t.resolver||!P?{isValid:D}:{},errors:o.errors}),I.shouldFocus&&!Q&&Hs(n,U,P?Z:s.mount),Q},le=(P,I)=>{let D={...i.mount?r:a};return I&&(D=OT(I.dirtyFields?o.dirtyFields:o.touchedFields,D)),Ye(P)?D:At(P)?ye(D,P):P.map(Q=>ye(D,Q))},B=(P,I)=>({invalid:!!ye((I||o).errors,P),isDirty:!!ye((I||o).dirtyFields,P),error:ye((I||o).errors,P),isValidating:!!ye(o.validatingFields,P),isTouched:!!ye((I||o).touchedFields,P)}),F=P=>{P&&qs(P).forEach(I=>it(o.errors,I)),k.state.next({errors:P?o.errors:{}})},K=(P,I,D)=>{const Q=(ye(n,P,{_f:{}})._f||{}).ref,Z=ye(o.errors,P)||{},{ref:J,message:ne,type:Ne,...Se}=Z;Ge(o.errors,P,{...Se,...I,ref:Q}),k.state.next({name:P,errors:o.errors,isValid:!1}),D&&D.shouldFocus&&Q&&Q.focus&&Q.focus()},G=(P,I)=>gt(P)?k.state.subscribe({next:D=>"values"in D&&P(T(void 0,I),D)}):T(P,I,!0),ie=P=>k.state.subscribe({next:I=>{qK(P.name,I.name,P.exact)&&OK(I,P.formState||h,De,P.reRenderRoot)&&P.callback({values:{...r},...o,...I,defaultValues:a})}}).unsubscribe,V=P=>(i.mount=!0,f={...f,...P.formState},ie({...P,formState:{...y,...P.formState}})),te=(P,I={})=>{for(const D of P?qs(P):s.mount)s.mount.delete(D),s.array.delete(D),I.keepValue||(it(n,D),it(r,D)),!I.keepError&&it(o.errors,D),!I.keepDirty&&it(o.dirtyFields,D),!I.keepTouched&&it(o.touchedFields,D),!I.keepIsValidating&&it(o.validatingFields,D),!t.shouldUnregister&&!I.keepDefaultValue&&it(a,D);k.state.next({values:rt(r)}),k.state.next({...o,...I.keepDirty?{isDirty:O()}:{}}),!I.keepIsValid&&_()},fe=({disabled:P,name:I})=>{if(It(P)&&i.mount||P||s.disabled.has(I)){const Z=s.disabled.has(I)!==!!P;P?s.disabled.add(I):s.disabled.delete(I),Z&&i.mount&&!i.action&&_()}},pe=(P,I={})=>{let D=ye(n,P);const Q=It(I.disabled)||It(t.disabled);return Ge(n,P,{...D||{},_f:{...D&&D._f?D._f:{ref:{name:P}},name:P,mount:!0,...I}}),s.mount.add(P),D?fe({disabled:It(I.disabled)?I.disabled:t.disabled,name:P}):N(P,!0,I.value),{...Q?{disabled:I.disabled||t.disabled}:{},...t.progressive?{required:!!I.required,min:js(I.min),max:js(I.max),minLength:js(I.minLength),maxLength:js(I.maxLength),pattern:js(I.pattern)}:{},name:P,onChange:j,onBlur:j,ref:Z=>{if(Z){pe(P,I),D=ye(n,P);const J=Ye(Z.value)&&Z.querySelectorAll&&Z.querySelectorAll("input,select,textarea")[0]||Z,ne=IK(J),Ne=D._f.refs||[];if(ne?Ne.find(Se=>Se===J):J===D._f.ref)return;Ge(n,P,{_f:{...D._f,...ne?{refs:[...Ne.filter(SS),J,...Array.isArray(ye(a,P))?[{}]:[]],ref:{type:J.type,name:P}}:{ref:J}}}),N(P,!1,void 0,J)}else D=ye(n,P,{}),D._f&&(D._f.mount=!1),(t.shouldUnregister||I.shouldUnregister)&&!(DT(s.array,P)&&i.action)&&s.unMount.add(P)}}},de=()=>t.shouldFocusError&&Hs(n,U,s.mount),ee=P=>{It(P)&&(k.state.next({disabled:P}),Hs(n,(I,D)=>{const Q=ye(n,D);Q&&(I.disabled=Q._f.disabled||P,Array.isArray(Q._f.refs)&&Q._f.refs.forEach(Z=>{Z.disabled=Q._f.disabled||P}))},0,!1))},_e=(P,I)=>async D=>{let Q;D&&(D.preventDefault&&D.preventDefault(),D.persist&&D.persist());let Z=rt(r);if(k.state.next({isSubmitting:!0}),t.resolver){const{errors:J,values:ne}=await L();v(),o.errors=J,Z=rt(ne)}else await z(n);if(s.disabled.size)for(const J of s.disabled)it(Z,J);if(it(o.errors,"root"),vt(o.errors)){k.state.next({errors:{}});try{await P(Z,D)}catch(J){Q=J}}else I&&await I({...o.errors},D),de(),setTimeout(de);if(k.state.next({isSubmitted:!0,isSubmitting:!1,isSubmitSuccessful:vt(o.errors)&&!Q,submitCount:o.submitCount+1,errors:o.errors}),Q)throw Q},q=(P,I={})=>{ye(n,P)&&(Ye(I.defaultValue)?Y(P,rt(ye(a,P))):(Y(P,I.defaultValue),Ge(a,P,rt(I.defaultValue))),I.keepTouched||it(o.touchedFields,P),I.keepDirty||(it(o.dirtyFields,P),o.isDirty=I.defaultValue?O(P,rt(ye(a,P))):O()),I.keepError||(it(o.errors,P),h.isValid&&_()),k.state.next({...o}))},ue=(P,I={})=>{const D=P?rt(P):a,Q=rt(D),Z=vt(P),J=Z?a:Q;if(I.keepDefaultValues||(a=D),!I.keepValues){if(I.keepDirtyValues){const ne=new Set([...s.mount,...Object.keys(Yc(a,r))]);for(const Ne of Array.from(ne)){const Se=ye(o.dirtyFields,Ne),Te=ye(r,Ne),dt=ye(J,Ne);Se&&!Ye(Te)?Ge(J,Ne,Te):!Se&&!Ye(dt)&&Y(Ne,dt)}}else{if(kS&&Ye(P))for(const ne of s.mount){const Ne=ye(n,ne);if(Ne&&Ne._f){const Se=Array.isArray(Ne._f.refs)?Ne._f.refs[0]:Ne._f.ref;if(m1(Se)){const Te=Se.closest("form");if(Te){Te.reset();break}}}}if(I.keepFieldsRef)for(const ne of s.mount)Y(ne,ye(J,ne));else n={}}r=t.shouldUnregister?I.keepDefaultValues?rt(a):{}:rt(J),k.array.next({values:{...J}}),k.state.next({values:{...J}})}s={mount:I.keepDirtyValues?s.mount:new Set,unMount:new Set,array:new Set,disabled:new Set,watch:new Set,watchAll:!1,focus:""},i.mount=!h.isValid||!!I.keepIsValid||!!I.keepDirtyValues||!t.shouldUnregister&&!vt(J),i.watch=!!t.shouldUnregister,i.keepIsValid=!!I.keepIsValid,i.action=!1,I.keepErrors||(o.errors={}),k.state.next({submitCount:I.keepSubmitCount?o.submitCount:0,isDirty:Z?!1:I.keepDirty?o.isDirty:!!(I.keepDefaultValues&&!Yt(P,a)),isSubmitted:I.keepIsSubmitted?o.isSubmitted:!1,dirtyFields:Z?{}:I.keepDirtyValues?I.keepDefaultValues&&r?Yc(a,r):o.dirtyFields:I.keepDefaultValues&&P?Yc(a,P):I.keepDirty?o.dirtyFields:{},touchedFields:I.keepTouched?o.touchedFields:{},errors:I.keepErrors?o.errors:{},isSubmitSuccessful:I.keepIsSubmitSuccessful?o.isSubmitSuccessful:!1,isSubmitting:!1,defaultValues:a})},xe=(P,I)=>ue(gt(P)?P(r):P,{...t.resetOptions,...I}),Ce=(P,I={})=>{const D=ye(n,P),Q=D&&D._f;if(Q){const Z=Q.refs?Q.refs[0]:Q.ref;Z.focus&&setTimeout(()=>{Z.focus(),I.shouldSelect&>(Z.select)&&Z.select()})}},De=P=>{o={...o,...P}},Pe={control:{register:pe,unregister:te,getFieldState:B,handleSubmit:_e,setError:K,_subscribe:ie,_runSchema:L,_updateIsValidating:v,_focusError:de,_getWatch:T,_getDirty:O,_setValid:_,_setFieldArray:b,_setDisabledField:fe,_setErrors:x,_getFieldArray:W,_reset:ue,_resetDefaultValues:()=>gt(t.defaultValues)&&t.defaultValues().then(P=>{xe(P,t.resetOptions),k.state.next({isLoading:!1})}),_removeUnmounted:E,_disableForm:ee,_subjects:k,_proxyFormState:h,get _fields(){return n},get _formValues(){return r},get _state(){return i},set _state(P){i=P},get _defaultValues(){return a},get _names(){return s},set _names(P){s=P},get _formState(){return o},get _options(){return t},set _options(P){t={...t,...P}}},subscribe:V,trigger:ce,register:pe,handleSubmit:_e,watch:G,setValue:Y,getValues:le,reset:xe,resetField:q,clearErrors:F,unregister:te,setError:K,setFocus:Ce,getFieldState:B};return{...Pe,formControl:Pe}}function WK(e={}){const t=w.useRef(void 0),o=w.useRef(void 0),[n,a]=w.useState({isDirty:!1,isValidating:!1,isLoading:gt(e.defaultValues),isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,submitCount:0,dirtyFields:{},touchedFields:{},validatingFields:{},errors:e.errors||{},disabled:e.disabled||!1,isReady:!1,defaultValues:gt(e.defaultValues)?void 0:e.defaultValues});if(!t.current)if(e.formControl)t.current={...e.formControl,formState:n},e.defaultValues&&!gt(e.defaultValues)&&e.formControl.reset(e.defaultValues,e.resetOptions);else{const{formControl:i,...s}=BK(e);t.current={...s,formState:n}}const r=t.current.control;return r._options=e,MS(()=>{const i=r._subscribe({formState:r._proxyFormState,callback:()=>a({...r._formState}),reRenderRoot:!0});return a(s=>({...s,isReady:!0})),r._formState.isReady=!0,i},[r]),w.useEffect(()=>r._disableForm(e.disabled),[r,e.disabled]),w.useEffect(()=>{e.mode&&(r._options.mode=e.mode),e.reValidateMode&&(r._options.reValidateMode=e.reValidateMode)},[r,e.mode,e.reValidateMode]),w.useEffect(()=>{e.errors&&(r._setErrors(e.errors),r._focusError())},[r,e.errors]),w.useEffect(()=>{e.shouldUnregister&&r._subjects.state.next({values:r._getWatch()})},[r,e.shouldUnregister]),w.useEffect(()=>{if(r._proxyFormState.isDirty){const i=r._getDirty();i!==n.isDirty&&r._subjects.state.next({isDirty:i})}},[r,n.isDirty]),w.useEffect(()=>{var i;e.values&&!Yt(e.values,o.current)?(r._reset(e.values,{keepFieldsRef:!0,...r._options.resetOptions}),!((i=r._options.resetOptions)===null||i===void 0)&&i.keepIsValid||r._setValid(),o.current=e.values,a(s=>({...s}))):r._resetDefaultValues()},[r,e.values]),w.useEffect(()=>{r._state.mount||(r._setValid(),r._state.mount=!0),r._state.watch&&(r._state.watch=!1,r._subjects.state.next({...r._formState})),r._removeUnmounted()}),t.current.formState=w.useMemo(()=>ET(n,r),[r,n]),t.current}function S(...e){return _K(uS(e))}function we(e){return e?typeof e=="string"||typeof e=="number"?e:Array.isArray(e)?e.length===0?null:e.length===1?d.jsx(jt,{schema:e[0]}):e.map((t,o)=>d.jsx(jt,{schema:t},t.id||o)):d.jsx(jt,{schema:e}):null}const UK=w.forwardRef(({schema:e,className:t,...o},n)=>{process.env.NODE_ENV!=="production"&&console.warn(`[ObjectUI] The "div" component is deprecated. Please use Shadcn components instead:
|
|
2
|
+
- For containers: use "card", "flex", or semantic layout components
|
|
3
|
+
- For simple wrappers: use layout components like "container", "stack", or "grid"
|
|
4
|
+
See documentation at https://www.objectui.org/docs/components for alternatives.`);const{"data-obj-id":a,"data-obj-type":r,style:i,...s}=o;return d.jsx("div",{ref:n,className:t,...s,"data-obj-id":a,"data-obj-type":r,style:i,children:we(e.children||e.body)})});ae.register("div",UK,{namespace:"ui",label:"Container (Deprecated)",inputs:[{name:"className",type:"string",label:"CSS Class"}],defaultProps:{className:"p-2 sm:p-4 border border-dashed border-gray-300 rounded min-h-[100px]"}}),ae.register("text",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return o||e.className||r.className?d.jsx("span",{"data-obj-id":o,"data-obj-type":n,style:a,className:e.className||r.className,...r,children:e.content||e.value}):d.jsx(d.Fragment,{children:e.content||e.value})},{namespace:"ui",label:"Text",inputs:[{name:"content",type:"string",label:"Content",required:!0}],defaultProps:{content:"Text content"}});const RK=w.forwardRef(({schema:e,className:t,...o},n)=>{process.env.NODE_ENV!=="production"&&console.warn(`[ObjectUI] The "span" component is deprecated. Please use Shadcn components instead:
|
|
5
|
+
- For badges/labels: use "badge" component
|
|
6
|
+
- For inline text emphasis: use "text" component with appropriate className
|
|
7
|
+
See documentation at https://www.objectui.org/docs/components for alternatives.`);const{"data-obj-id":a,"data-obj-type":r,style:i,...s}=o;return d.jsx("span",{ref:n,className:t,...s,"data-obj-id":a,"data-obj-type":r,style:i,children:we(e.body)})});ae.register("span",RK,{namespace:"ui",label:"Inline Container (Deprecated)",inputs:[{name:"className",type:"string",label:"CSS Class"}],defaultProps:{className:"px-1.5 py-0.5 sm:px-2 sm:py-1"},defaultChildren:[{type:"text",content:"Inline text"}]});function GK(e,t){const o=p.createContext(t),n=r=>{const{children:i,...s}=r,l=p.useMemo(()=>s,Object.values(s));return d.jsx(o.Provider,{value:l,children:i})};n.displayName=e+"Provider";function a(r){const i=p.useContext(o);if(i)return i;if(t!==void 0)return t;throw new Error(`\`${r}\` must be used within \`${e}\``)}return[n,a]}function Xe(e,t=[]){let o=[];function n(r,i){const s=p.createContext(i),l=o.length;o=[...o,i];const u=h=>{const{scope:f,children:k,...m}=h,g=f?.[e]?.[l]||s,_=p.useMemo(()=>m,Object.values(m));return d.jsx(g.Provider,{value:_,children:k})};u.displayName=r+"Provider";function y(h,f){const k=f?.[e]?.[l]||s,m=p.useContext(k);if(m)return m;if(i!==void 0)return i;throw new Error(`\`${h}\` must be used within \`${r}\``)}return[u,y]}const a=()=>{const r=o.map(i=>p.createContext(i));return function(s){const l=s?.[e]||r;return p.useMemo(()=>({[`__scope${e}`]:{...s,[e]:l}}),[s,l])}};return a.scopeName=e,[n,KK(a,...t)]}function KK(...e){const t=e[0];if(e.length===1)return t;const o=()=>{const n=e.map(a=>({useScope:a(),scopeName:a.scopeName}));return function(r){const i=n.reduce((s,{useScope:l,scopeName:u})=>{const h=l(r)[`__scope${u}`];return{...s,...h}},{});return p.useMemo(()=>({[`__scope${t.scopeName}`]:i}),[i])}};return o.scopeName=t.scopeName,o}function JT(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}function Xt(...e){return t=>{let o=!1;const n=e.map(a=>{const r=JT(a,t);return!o&&typeof r=="function"&&(o=!0),r});if(o)return()=>{for(let a=0;a<n.length;a++){const r=n[a];typeof r=="function"?r():JT(e[a],null)}}}}function be(...e){return p.useCallback(Xt(...e),e)}function bn(e){const t=YK(e),o=p.forwardRef((n,a)=>{const{children:r,...i}=n,s=p.Children.toArray(r),l=s.find(XK);if(l){const u=l.props.children,y=s.map(h=>h===l?p.Children.count(u)>1?p.Children.only(null):p.isValidElement(u)?u.props.children:null:h);return d.jsx(t,{...i,ref:a,children:p.isValidElement(u)?p.cloneElement(u,void 0,y):null})}return d.jsx(t,{...i,ref:a,children:r})});return o.displayName=`${e}.Slot`,o}function YK(e){const t=p.forwardRef((o,n)=>{const{children:a,...r}=o;if(p.isValidElement(a)){const i=QK(a),s=ZK(r,a.props);return a.type!==p.Fragment&&(s.ref=n?Xt(n,i):i),p.cloneElement(a,s)}return p.Children.count(a)>1?p.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var eD=Symbol("radix.slottable");function tD(e){const t=({children:o})=>d.jsx(d.Fragment,{children:o});return t.displayName=`${e}.Slottable`,t.__radixId=eD,t}function XK(e){return p.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===eD}function ZK(e,t){const o={...t};for(const n in t){const a=e[n],r=t[n];/^on[A-Z]/.test(n)?a&&r?o[n]=(...s)=>{const l=r(...s);return a(...s),l}:a&&(o[n]=a):n==="style"?o[n]={...a,...r}:n==="className"&&(o[n]=[a,r].filter(Boolean).join(" "))}return{...e,...o}}function QK(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,o=t&&"isReactWarning"in t&&t.isReactWarning;return o?e.ref:(t=Object.getOwnPropertyDescriptor(e,"ref")?.get,o=t&&"isReactWarning"in t&&t.isReactWarning,o?e.props.ref:e.props.ref||e.ref)}function Xo(e){const t=e+"CollectionProvider",[o,n]=Xe(t),[a,r]=o(t,{collectionRef:{current:null},itemMap:new Map}),i=g=>{const{scope:_,children:v}=g,b=w.useRef(null),M=w.useRef(new Map).current;return d.jsx(a,{scope:_,itemMap:M,collectionRef:b,children:v})};i.displayName=t;const s=e+"CollectionSlot",l=bn(s),u=w.forwardRef((g,_)=>{const{scope:v,children:b}=g,M=r(s,v),x=be(_,M.collectionRef);return d.jsx(l,{ref:x,children:b})});u.displayName=s;const y=e+"CollectionItemSlot",h="data-radix-collection-item",f=bn(y),k=w.forwardRef((g,_)=>{const{scope:v,children:b,...M}=g,x=w.useRef(null),N=be(_,x),C=r(y,v);return w.useEffect(()=>(C.itemMap.set(x,{ref:x,...M}),()=>{C.itemMap.delete(x)})),d.jsx(f,{[h]:"",ref:N,children:b})});k.displayName=y;function m(g){const _=r(e+"CollectionConsumer",g);return w.useCallback(()=>{const b=_.collectionRef.current;if(!b)return[];const M=Array.from(b.querySelectorAll(`[${h}]`));return Array.from(_.itemMap.values()).sort((C,$)=>M.indexOf(C.ref.current)-M.indexOf($.ref.current))},[_.collectionRef,_.itemMap])}return[{Provider:i,Slot:u,ItemSlot:k},m,n]}function X(e,t,{checkForDefaultPrevented:o=!0}={}){return function(a){if(e?.(a),o===!1||!a.defaultPrevented)return t?.(a)}}var Ze=globalThis?.document?p.useLayoutEffect:()=>{},JK=p[" useInsertionEffect ".trim().toString()]||Ze;function Ke({prop:e,defaultProp:t,onChange:o=()=>{},caller:n}){const[a,r,i]=eY({defaultProp:t,onChange:o}),s=e!==void 0,l=s?e:a;{const y=p.useRef(e!==void 0);p.useEffect(()=>{const h=y.current;h!==s&&console.warn(`${n} is changing from ${h?"controlled":"uncontrolled"} to ${s?"controlled":"uncontrolled"}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`),y.current=s},[s,n])}const u=p.useCallback(y=>{if(s){const h=tY(y)?y(e):y;h!==e&&i.current?.(h)}else r(y)},[s,e,r,i]);return[l,u]}function eY({defaultProp:e,onChange:t}){const[o,n]=p.useState(e),a=p.useRef(o),r=p.useRef(t);return JK(()=>{r.current=t},[t]),p.useEffect(()=>{a.current!==o&&(r.current?.(o),a.current=o)},[o,a]),[o,n,r]}function tY(e){return typeof e=="function"}var oY=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],se=oY.reduce((e,t)=>{const o=bn(`Primitive.${t}`),n=p.forwardRef((a,r)=>{const{asChild:i,...s}=a,l=i?o:t;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),d.jsx(l,{...s,ref:r})});return n.displayName=`Primitive.${t}`,{...e,[t]:n}},{});function g1(e,t){e&&d1.flushSync(()=>e.dispatchEvent(t))}function nY(e,t){return p.useReducer((o,n)=>t[o][n]??o,e)}var Qe=e=>{const{present:t,children:o}=e,n=aY(t),a=typeof o=="function"?o({present:n.isPresent}):p.Children.only(o),r=be(n.ref,rY(a));return typeof o=="function"||n.isPresent?p.cloneElement(a,{ref:r}):null};Qe.displayName="Presence";function aY(e){const[t,o]=p.useState(),n=p.useRef(null),a=p.useRef(e),r=p.useRef("none"),i=e?"mounted":"unmounted",[s,l]=nY(i,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return p.useEffect(()=>{const u=v1(n.current);r.current=s==="mounted"?u:"none"},[s]),Ze(()=>{const u=n.current,y=a.current;if(y!==e){const f=r.current,k=v1(u);e?l("MOUNT"):k==="none"||u?.display==="none"?l("UNMOUNT"):l(y&&f!==k?"ANIMATION_OUT":"UNMOUNT"),a.current=e}},[e,l]),Ze(()=>{if(t){let u;const y=t.ownerDocument.defaultView??window,h=k=>{const g=v1(n.current).includes(CSS.escape(k.animationName));if(k.target===t&&g&&(l("ANIMATION_END"),!a.current)){const _=t.style.animationFillMode;t.style.animationFillMode="forwards",u=y.setTimeout(()=>{t.style.animationFillMode==="forwards"&&(t.style.animationFillMode=_)})}},f=k=>{k.target===t&&(r.current=v1(n.current))};return t.addEventListener("animationstart",f),t.addEventListener("animationcancel",h),t.addEventListener("animationend",h),()=>{y.clearTimeout(u),t.removeEventListener("animationstart",f),t.removeEventListener("animationcancel",h),t.removeEventListener("animationend",h)}}else l("ANIMATION_END")},[t,l]),{isPresent:["mounted","unmountSuspended"].includes(s),ref:p.useCallback(u=>{n.current=u?getComputedStyle(u):null,o(u)},[])}}function v1(e){return e?.animationName||"none"}function rY(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,o=t&&"isReactWarning"in t&&t.isReactWarning;return o?e.ref:(t=Object.getOwnPropertyDescriptor(e,"ref")?.get,o=t&&"isReactWarning"in t&&t.isReactWarning,o?e.props.ref:e.props.ref||e.ref)}var iY=p[" useId ".trim().toString()]||(()=>{}),cY=0;function We(e){const[t,o]=p.useState(iY());return Ze(()=>{o(n=>n??String(cY++))},[e]),t?`radix-${t}`:""}var _1="Collapsible",[sY,oD]=Xe(_1),[dY,IS]=sY(_1),nD=p.forwardRef((e,t)=>{const{__scopeCollapsible:o,open:n,defaultOpen:a,disabled:r,onOpenChange:i,...s}=e,[l,u]=Ke({prop:n,defaultProp:a??!1,onChange:i,caller:_1});return d.jsx(dY,{scope:o,disabled:r,contentId:We(),open:l,onOpenToggle:p.useCallback(()=>u(y=>!y),[u]),children:d.jsx(se.div,{"data-state":DS(l),"data-disabled":r?"":void 0,...s,ref:t})})});nD.displayName=_1;var aD="CollapsibleTrigger",AS=p.forwardRef((e,t)=>{const{__scopeCollapsible:o,...n}=e,a=IS(aD,o);return d.jsx(se.button,{type:"button","aria-controls":a.contentId,"aria-expanded":a.open||!1,"data-state":DS(a.open),"data-disabled":a.disabled?"":void 0,disabled:a.disabled,...n,ref:t,onClick:X(e.onClick,a.onOpenToggle)})});AS.displayName=aD;var PS="CollapsibleContent",TS=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,a=IS(PS,e.__scopeCollapsible);return d.jsx(Qe,{present:o||a.open,children:({present:r})=>d.jsx(lY,{...n,ref:t,present:r})})});TS.displayName=PS;var lY=p.forwardRef((e,t)=>{const{__scopeCollapsible:o,present:n,children:a,...r}=e,i=IS(PS,o),[s,l]=p.useState(n),u=p.useRef(null),y=be(t,u),h=p.useRef(0),f=h.current,k=p.useRef(0),m=k.current,g=i.open||s,_=p.useRef(g),v=p.useRef(void 0);return p.useEffect(()=>{const b=requestAnimationFrame(()=>_.current=!1);return()=>cancelAnimationFrame(b)},[]),Ze(()=>{const b=u.current;if(b){v.current=v.current||{transitionDuration:b.style.transitionDuration,animationName:b.style.animationName},b.style.transitionDuration="0s",b.style.animationName="none";const M=b.getBoundingClientRect();h.current=M.height,k.current=M.width,_.current||(b.style.transitionDuration=v.current.transitionDuration,b.style.animationName=v.current.animationName),l(n)}},[i.open,n]),d.jsx(se.div,{"data-state":DS(i.open),"data-disabled":i.disabled?"":void 0,id:i.contentId,hidden:!g,...r,ref:y,style:{"--radix-collapsible-content-height":f?`${f}px`:void 0,"--radix-collapsible-content-width":m?`${m}px`:void 0,...e.style},children:g&&a})});function DS(e){return e?"open":"closed"}var rD=nD,uY=AS,hY=TS,pY=p.createContext(void 0);function Zt(e){const t=p.useContext(pY);return e||t||"ltr"}var Qt="Accordion",yY=["Home","End","ArrowDown","ArrowUp","ArrowLeft","ArrowRight"],[ES,fY,mY]=Xo(Qt),[b1]=Xe(Qt,[mY,oD]),zS=oD(),iD=w.forwardRef((e,t)=>{const{type:o,...n}=e,a=n,r=n;return d.jsx(ES.Provider,{scope:e.__scopeAccordion,children:o==="multiple"?d.jsx(_Y,{...r,ref:t}):d.jsx(vY,{...a,ref:t})})});iD.displayName=Qt;var[cD,kY]=b1(Qt),[sD,gY]=b1(Qt,{collapsible:!1}),vY=w.forwardRef((e,t)=>{const{value:o,defaultValue:n,onValueChange:a=()=>{},collapsible:r=!1,...i}=e,[s,l]=Ke({prop:o,defaultProp:n??"",onChange:a,caller:Qt});return d.jsx(cD,{scope:e.__scopeAccordion,value:w.useMemo(()=>s?[s]:[],[s]),onItemOpen:l,onItemClose:w.useCallback(()=>r&&l(""),[r,l]),children:d.jsx(sD,{scope:e.__scopeAccordion,collapsible:r,children:d.jsx(dD,{...i,ref:t})})})}),_Y=w.forwardRef((e,t)=>{const{value:o,defaultValue:n,onValueChange:a=()=>{},...r}=e,[i,s]=Ke({prop:o,defaultProp:n??[],onChange:a,caller:Qt}),l=w.useCallback(y=>s((h=[])=>[...h,y]),[s]),u=w.useCallback(y=>s((h=[])=>h.filter(f=>f!==y)),[s]);return d.jsx(cD,{scope:e.__scopeAccordion,value:i,onItemOpen:l,onItemClose:u,children:d.jsx(sD,{scope:e.__scopeAccordion,collapsible:!0,children:d.jsx(dD,{...r,ref:t})})})}),[bY,M1]=b1(Qt),dD=w.forwardRef((e,t)=>{const{__scopeAccordion:o,disabled:n,dir:a,orientation:r="vertical",...i}=e,s=w.useRef(null),l=be(s,t),u=fY(o),h=Zt(a)==="ltr",f=X(e.onKeyDown,k=>{if(!yY.includes(k.key))return;const m=k.target,g=u().filter(L=>!L.ref.current?.disabled),_=g.findIndex(L=>L.ref.current===m),v=g.length;if(_===-1)return;k.preventDefault();let b=_;const M=0,x=v-1,N=()=>{b=_+1,b>x&&(b=M)},C=()=>{b=_-1,b<M&&(b=x)};switch(k.key){case"Home":b=M;break;case"End":b=x;break;case"ArrowRight":r==="horizontal"&&(h?N():C());break;case"ArrowDown":r==="vertical"&&N();break;case"ArrowLeft":r==="horizontal"&&(h?C():N());break;case"ArrowUp":r==="vertical"&&C();break}const $=b%v;g[$].ref.current?.focus()});return d.jsx(bY,{scope:o,disabled:n,direction:a,orientation:r,children:d.jsx(ES.Slot,{scope:o,children:d.jsx(se.div,{...i,"data-orientation":r,ref:l,onKeyDown:n?void 0:f})})})}),w1="AccordionItem",[MY,OS]=b1(w1),lD=w.forwardRef((e,t)=>{const{__scopeAccordion:o,value:n,...a}=e,r=M1(w1,o),i=kY(w1,o),s=zS(o),l=We(),u=n&&i.value.includes(n)||!1,y=r.disabled||e.disabled;return d.jsx(MY,{scope:o,open:u,disabled:y,triggerId:l,children:d.jsx(rD,{"data-orientation":r.orientation,"data-state":mD(u),...s,...a,ref:t,disabled:y,open:u,onOpenChange:h=>{h?i.onItemOpen(n):i.onItemClose(n)}})})});lD.displayName=w1;var uD="AccordionHeader",hD=w.forwardRef((e,t)=>{const{__scopeAccordion:o,...n}=e,a=M1(Qt,o),r=OS(uD,o);return d.jsx(se.h3,{"data-orientation":a.orientation,"data-state":mD(r.open),"data-disabled":r.disabled?"":void 0,...n,ref:t})});hD.displayName=uD;var qS="AccordionTrigger",pD=w.forwardRef((e,t)=>{const{__scopeAccordion:o,...n}=e,a=M1(Qt,o),r=OS(qS,o),i=gY(qS,o),s=zS(o);return d.jsx(ES.ItemSlot,{scope:o,children:d.jsx(uY,{"aria-disabled":r.open&&!i.collapsible||void 0,"data-orientation":a.orientation,id:r.triggerId,...s,...n,ref:t})})});pD.displayName=qS;var yD="AccordionContent",fD=w.forwardRef((e,t)=>{const{__scopeAccordion:o,...n}=e,a=M1(Qt,o),r=OS(yD,o),i=zS(o);return d.jsx(hY,{role:"region","aria-labelledby":r.triggerId,"data-orientation":a.orientation,...i,...n,ref:t,style:{"--radix-accordion-content-height":"var(--radix-collapsible-content-height)","--radix-accordion-content-width":"var(--radix-collapsible-content-width)",...e.style}})});fD.displayName=yD;function mD(e){return e?"open":"closed"}var wY=iD,xY=lD,NY=hD,kD=pD,gD=fD;const vD=(...e)=>e.filter((t,o,n)=>!!t&&t.trim()!==""&&n.indexOf(t)===o).join(" ").trim();const CY=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase();const $Y=e=>e.replace(/^([A-Z])|[\s-_]+(\w)/g,(t,o,n)=>n?n.toUpperCase():o.toLowerCase());const _D=e=>{const t=$Y(e);return t.charAt(0).toUpperCase()+t.slice(1)};var SY={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const LY=e=>{for(const t in e)if(t.startsWith("aria-")||t==="role"||t==="title")return!0;return!1};const bD=w.forwardRef(({color:e="currentColor",size:t=24,strokeWidth:o=2,absoluteStrokeWidth:n,className:a="",children:r,iconNode:i,...s},l)=>w.createElement("svg",{ref:l,...SY,width:t,height:t,stroke:e,strokeWidth:n?Number(o)*24/Number(t):o,className:vD("lucide",a),...!r&&!LY(s)&&{"aria-hidden":"true"},...s},[...i.map(([u,y])=>w.createElement(u,y)),...Array.isArray(r)?r:[r]]));const c=(e,t)=>{const o=w.forwardRef(({className:n,...a},r)=>w.createElement(bD,{ref:r,iconNode:t,className:vD(`lucide-${CY(_D(e))}`,`lucide-${e}`,n),...a}));return o.displayName=_D(e),o};const x1=c("a-arrow-down",[["path",{d:"m14 12 4 4 4-4",key:"buelq4"}],["path",{d:"M18 16V7",key:"ty0viw"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16",key:"d5nyq2"}],["path",{d:"M3.304 13h6.392",key:"1q3zxz"}]]);const N1=c("a-arrow-up",[["path",{d:"m14 11 4-4 4 4",key:"1pu57t"}],["path",{d:"M18 16V7",key:"ty0viw"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16",key:"d5nyq2"}],["path",{d:"M3.304 13h6.392",key:"1q3zxz"}]]);const C1=c("a-large-small",[["path",{d:"m15 16 2.536-7.328a1.02 1.02 1 0 1 1.928 0L22 16",key:"xik6mr"}],["path",{d:"M15.697 14h5.606",key:"1stdlc"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16",key:"d5nyq2"}],["path",{d:"M3.304 13h6.392",key:"1q3zxz"}]]);const $1=c("accessibility",[["circle",{cx:"16",cy:"4",r:"1",key:"1grugj"}],["path",{d:"m18 19 1-7-6 1",key:"r0i19z"}],["path",{d:"m5 8 3-3 5.5 3-2.36 3.5",key:"9ptxx2"}],["path",{d:"M4.24 14.5a5 5 0 0 0 6.88 6",key:"10kmtu"}],["path",{d:"M13.76 17.5a5 5 0 0 0-6.88-6",key:"2qq6rc"}]]);const S1=c("activity",[["path",{d:"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2",key:"169zse"}]]);const L1=c("air-vent",[["path",{d:"M18 17.5a2.5 2.5 0 1 1-4 2.03V12",key:"yd12zl"}],["path",{d:"M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2",key:"larmp2"}],["path",{d:"M6 8h12",key:"6g4wlu"}],["path",{d:"M6.6 15.572A2 2 0 1 0 10 17v-5",key:"1x1kqn"}]]);const I1=c("airplay",[["path",{d:"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1",key:"ns4c3b"}],["path",{d:"m12 15 5 6H7Z",key:"14qnn2"}]]);const Mn=c("alarm-clock-check",[["circle",{cx:"12",cy:"13",r:"8",key:"3y4lt7"}],["path",{d:"M5 3 2 6",key:"18tl5t"}],["path",{d:"m22 6-3-3",key:"1opdir"}],["path",{d:"M6.38 18.7 4 21",key:"17xu3x"}],["path",{d:"M17.64 18.67 20 21",key:"kv2oe2"}],["path",{d:"m9 13 2 2 4-4",key:"6343dt"}]]);const wn=c("alarm-clock-minus",[["circle",{cx:"12",cy:"13",r:"8",key:"3y4lt7"}],["path",{d:"M5 3 2 6",key:"18tl5t"}],["path",{d:"m22 6-3-3",key:"1opdir"}],["path",{d:"M6.38 18.7 4 21",key:"17xu3x"}],["path",{d:"M17.64 18.67 20 21",key:"kv2oe2"}],["path",{d:"M9 13h6",key:"1uhe8q"}]]);const A1=c("alarm-clock-off",[["path",{d:"M6.87 6.87a8 8 0 1 0 11.26 11.26",key:"3on8tj"}],["path",{d:"M19.9 14.25a8 8 0 0 0-9.15-9.15",key:"15ghsc"}],["path",{d:"m22 6-3-3",key:"1opdir"}],["path",{d:"M6.26 18.67 4 21",key:"yzmioq"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M4 4 2 6",key:"1ycko6"}]]);const xn=c("alarm-clock-plus",[["circle",{cx:"12",cy:"13",r:"8",key:"3y4lt7"}],["path",{d:"M5 3 2 6",key:"18tl5t"}],["path",{d:"m22 6-3-3",key:"1opdir"}],["path",{d:"M6.38 18.7 4 21",key:"17xu3x"}],["path",{d:"M17.64 18.67 20 21",key:"kv2oe2"}],["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"M9 13h6",key:"1uhe8q"}]]);const P1=c("alarm-clock",[["circle",{cx:"12",cy:"13",r:"8",key:"3y4lt7"}],["path",{d:"M12 9v4l2 2",key:"1c63tq"}],["path",{d:"M5 3 2 6",key:"18tl5t"}],["path",{d:"m22 6-3-3",key:"1opdir"}],["path",{d:"M6.38 18.7 4 21",key:"17xu3x"}],["path",{d:"M17.64 18.67 20 21",key:"kv2oe2"}]]);const T1=c("alarm-smoke",[["path",{d:"M11 21c0-2.5 2-2.5 2-5",key:"1sicvv"}],["path",{d:"M16 21c0-2.5 2-2.5 2-5",key:"1o3eny"}],["path",{d:"m19 8-.8 3a1.25 1.25 0 0 1-1.2 1H7a1.25 1.25 0 0 1-1.2-1L5 8",key:"1bvca4"}],["path",{d:"M21 3a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a1 1 0 0 1 1-1z",key:"x3qr1j"}],["path",{d:"M6 21c0-2.5 2-2.5 2-5",key:"i3w1gp"}]]);const D1=c("album",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["polyline",{points:"11 3 11 11 14 8 17 11 17 3",key:"1wcwz3"}]]);const E1=c("align-center-horizontal",[["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4",key:"11f1s0"}],["path",{d:"M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4",key:"t14dx9"}],["path",{d:"M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1",key:"1w07xs"}],["path",{d:"M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1",key:"1apec2"}]]);const z1=c("align-center-vertical",[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4",key:"14d6g8"}],["path",{d:"M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4",key:"1e2lrw"}],["path",{d:"M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1",key:"1fkdwx"}],["path",{d:"M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1",key:"1euafb"}]]);const O1=c("align-end-horizontal",[["rect",{width:"6",height:"16",x:"4",y:"2",rx:"2",key:"z5wdxg"}],["rect",{width:"6",height:"9",x:"14",y:"9",rx:"2",key:"um7a8w"}],["path",{d:"M22 22H2",key:"19qnx5"}]]);const q1=c("align-end-vertical",[["rect",{width:"16",height:"6",x:"2",y:"4",rx:"2",key:"10wcwx"}],["rect",{width:"9",height:"6",x:"9",y:"14",rx:"2",key:"4p5bwg"}],["path",{d:"M22 22V2",key:"12ipfv"}]]);const j1=c("align-horizontal-distribute-center",[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2",key:"1wwnby"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2",key:"1fe6j6"}],["path",{d:"M17 22v-5",key:"4b6g73"}],["path",{d:"M17 7V2",key:"hnrr36"}],["path",{d:"M7 22v-3",key:"1r4jpn"}],["path",{d:"M7 5V2",key:"liy1u9"}]]);const H1=c("align-horizontal-distribute-end",[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2",key:"1wwnby"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2",key:"1fe6j6"}],["path",{d:"M10 2v20",key:"uyc634"}],["path",{d:"M20 2v20",key:"1tx262"}]]);const V1=c("align-horizontal-distribute-start",[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2",key:"1wwnby"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2",key:"1fe6j6"}],["path",{d:"M4 2v20",key:"gtpd5x"}],["path",{d:"M14 2v20",key:"tg6bpw"}]]);const F1=c("align-horizontal-justify-center",[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2",key:"dy24zr"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2",key:"13zkjt"}],["path",{d:"M12 2v20",key:"t6zp3m"}]]);const B1=c("align-horizontal-justify-end",[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2",key:"dy24zr"}],["rect",{width:"6",height:"10",x:"12",y:"7",rx:"2",key:"1ht384"}],["path",{d:"M22 2v20",key:"40qfg1"}]]);const W1=c("align-horizontal-justify-start",[["rect",{width:"6",height:"14",x:"6",y:"5",rx:"2",key:"hsirpf"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2",key:"13zkjt"}],["path",{d:"M2 2v20",key:"1ivd8o"}]]);const U1=c("align-horizontal-space-around",[["rect",{width:"6",height:"10",x:"9",y:"7",rx:"2",key:"yn7j0q"}],["path",{d:"M4 22V2",key:"tsjzd3"}],["path",{d:"M20 22V2",key:"1bnhr8"}]]);const R1=c("align-horizontal-space-between",[["rect",{width:"6",height:"14",x:"3",y:"5",rx:"2",key:"j77dae"}],["rect",{width:"6",height:"10",x:"15",y:"7",rx:"2",key:"bq30hj"}],["path",{d:"M3 2v20",key:"1d2pfg"}],["path",{d:"M21 2v20",key:"p059bm"}]]);const G1=c("align-start-horizontal",[["rect",{width:"6",height:"16",x:"4",y:"6",rx:"2",key:"1n4dg1"}],["rect",{width:"6",height:"9",x:"14",y:"6",rx:"2",key:"17khns"}],["path",{d:"M22 2H2",key:"fhrpnj"}]]);const K1=c("align-start-vertical",[["rect",{width:"9",height:"6",x:"6",y:"14",rx:"2",key:"lpm2y7"}],["rect",{width:"16",height:"6",x:"6",y:"4",rx:"2",key:"rdj6ps"}],["path",{d:"M2 2v20",key:"1ivd8o"}]]);const Y1=c("align-vertical-distribute-center",[["path",{d:"M22 17h-3",key:"1lwga1"}],["path",{d:"M22 7h-5",key:"o2endc"}],["path",{d:"M5 17H2",key:"1gx9xc"}],["path",{d:"M7 7H2",key:"6bq26l"}],["rect",{x:"5",y:"14",width:"14",height:"6",rx:"2",key:"1qrzuf"}],["rect",{x:"7",y:"4",width:"10",height:"6",rx:"2",key:"we8e9z"}]]);const X1=c("align-vertical-distribute-end",[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2",key:"jmoj9s"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2",key:"aza5on"}],["path",{d:"M2 20h20",key:"owomy5"}],["path",{d:"M2 10h20",key:"1ir3d8"}]]);const Z1=c("align-vertical-distribute-start",[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2",key:"jmoj9s"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2",key:"aza5on"}],["path",{d:"M2 14h20",key:"myj16y"}],["path",{d:"M2 4h20",key:"mda7wb"}]]);const Q1=c("align-vertical-justify-end",[["rect",{width:"14",height:"6",x:"5",y:"12",rx:"2",key:"4l4tp2"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2",key:"ypihtt"}],["path",{d:"M2 22h20",key:"272qi7"}]]);const J1=c("align-vertical-justify-center",[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2",key:"1i8z2d"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2",key:"ypihtt"}],["path",{d:"M2 12h20",key:"9i4pu4"}]]);const el=c("align-vertical-justify-start",[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2",key:"1i8z2d"}],["rect",{width:"10",height:"6",x:"7",y:"6",rx:"2",key:"13squh"}],["path",{d:"M2 2h20",key:"1ennik"}]]);const tl=c("align-vertical-space-around",[["rect",{width:"10",height:"6",x:"7",y:"9",rx:"2",key:"b1zbii"}],["path",{d:"M22 20H2",key:"1p1f7z"}],["path",{d:"M22 4H2",key:"1b7qnq"}]]);const ol=c("align-vertical-space-between",[["rect",{width:"14",height:"6",x:"5",y:"15",rx:"2",key:"1w91an"}],["rect",{width:"10",height:"6",x:"7",y:"3",rx:"2",key:"17wqzy"}],["path",{d:"M2 21h20",key:"1nyx9w"}],["path",{d:"M2 3h20",key:"91anmk"}]]);const nl=c("ambulance",[["path",{d:"M10 10H6",key:"1bsnug"}],["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2",key:"wrbu53"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.923-.641a1 1 0 0 1-.578-.502l-1.539-3.076A1 1 0 0 0 16.382 8H14",key:"lrkjwd"}],["path",{d:"M8 8v4",key:"1fwk8c"}],["path",{d:"M9 18h6",key:"x1upvd"}],["circle",{cx:"17",cy:"18",r:"2",key:"332jqn"}],["circle",{cx:"7",cy:"18",r:"2",key:"19iecd"}]]);const al=c("ampersand",[["path",{d:"M16 12h3",key:"4uvgyw"}],["path",{d:"M17.5 12a8 8 0 0 1-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13",key:"nfoe1t"}]]);const rl=c("ampersands",[["path",{d:"M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5",key:"12lh1k"}],["path",{d:"M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5",key:"173c68"}]]);const il=c("amphora",[["path",{d:"M10 2v5.632c0 .424-.272.795-.653.982A6 6 0 0 0 6 14c.006 4 3 7 5 8",key:"1h8rid"}],["path",{d:"M10 5H8a2 2 0 0 0 0 4h.68",key:"3ezsi6"}],["path",{d:"M14 2v5.632c0 .424.272.795.652.982A6 6 0 0 1 18 14c0 4-3 7-5 8",key:"yt6q09"}],["path",{d:"M14 5h2a2 2 0 0 1 0 4h-.68",key:"8f95yk"}],["path",{d:"M18 22H6",key:"mg6kv4"}],["path",{d:"M9 2h6",key:"1jrp98"}]]);const cl=c("angry",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2",key:"epbg0q"}],["path",{d:"M7.5 8 10 9",key:"olxxln"}],["path",{d:"m14 9 2.5-1",key:"1j6cij"}],["path",{d:"M9 10h.01",key:"qbtxuw"}],["path",{d:"M15 10h.01",key:"1qmjsl"}]]);const sl=c("anchor",[["path",{d:"M12 6v16",key:"nqf5sj"}],["path",{d:"m19 13 2-1a9 9 0 0 1-18 0l2 1",key:"y7qv08"}],["path",{d:"M9 11h6",key:"1fldmi"}],["circle",{cx:"12",cy:"4",r:"2",key:"muu5ef"}]]);const dl=c("annoyed",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M8 15h8",key:"45n4r"}],["path",{d:"M8 9h2",key:"1g203m"}],["path",{d:"M14 9h2",key:"116p9w"}]]);const ll=c("antenna",[["path",{d:"M2 12 7 2",key:"117k30"}],["path",{d:"m7 12 5-10",key:"1tvx22"}],["path",{d:"m12 12 5-10",key:"ev1o1a"}],["path",{d:"m17 12 5-10",key:"1e4ti3"}],["path",{d:"M4.5 7h15",key:"vlsxkz"}],["path",{d:"M12 16v6",key:"c8a4gj"}]]);const ul=c("anvil",[["path",{d:"M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4",key:"1hjpb6"}],["path",{d:"M7 5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1 7 7 0 0 1-7 7H8a1 1 0 0 1-1-1z",key:"1qn45f"}],["path",{d:"M9 12v5",key:"3anwtq"}],["path",{d:"M15 12v5",key:"5xh3zn"}],["path",{d:"M5 20a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1",key:"1fi4x8"}]]);const hl=c("aperture",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m14.31 8 5.74 9.94",key:"1y6ab4"}],["path",{d:"M9.69 8h11.48",key:"1wxppr"}],["path",{d:"m7.38 12 5.74-9.94",key:"1grp0k"}],["path",{d:"M9.69 16 3.95 6.06",key:"libnyf"}],["path",{d:"M14.31 16H2.83",key:"x5fava"}],["path",{d:"m16.62 12-5.74 9.94",key:"1vwawt"}]]);const pl=c("app-window-mac",[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M6 8h.01",key:"x9i8wu"}],["path",{d:"M10 8h.01",key:"1r9ogq"}],["path",{d:"M14 8h.01",key:"1primd"}]]);const yl=c("app-window",[["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2",key:"izxlao"}],["path",{d:"M10 4v4",key:"pp8u80"}],["path",{d:"M2 8h20",key:"d11cs7"}],["path",{d:"M6 4v4",key:"1svtjw"}]]);const fl=c("apple",[["path",{d:"M12 6.528V3a1 1 0 0 1 1-1h0",key:"11qiee"}],["path",{d:"M18.237 21A15 15 0 0 0 22 11a6 6 0 0 0-10-4.472A6 6 0 0 0 2 11a15.1 15.1 0 0 0 3.763 10 3 3 0 0 0 3.648.648 5.5 5.5 0 0 1 5.178 0A3 3 0 0 0 18.237 21",key:"110c12"}]]);const ml=c("archive-restore",[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1",key:"1wp1u1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h2",key:"tvwodi"}],["path",{d:"M20 8v11a2 2 0 0 1-2 2h-2",key:"1gkqxj"}],["path",{d:"m9 15 3-3 3 3",key:"1pd0qc"}],["path",{d:"M12 12v9",key:"192myk"}]]);const kl=c("archive-x",[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1",key:"1wp1u1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8",key:"1s80jp"}],["path",{d:"m9.5 17 5-5",key:"nakeu6"}],["path",{d:"m9.5 12 5 5",key:"1hccrj"}]]);const gl=c("archive",[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1",key:"1wp1u1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8",key:"1s80jp"}],["path",{d:"M10 12h4",key:"a56b0p"}]]);const vl=c("armchair",[["path",{d:"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3",key:"irtipd"}],["path",{d:"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z",key:"1qyhux"}],["path",{d:"M5 18v2",key:"ppbyun"}],["path",{d:"M19 18v2",key:"gy7782"}]]);const _l=c("arrow-big-down-dash",[["path",{d:"M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z",key:"1hy3w3"}],["path",{d:"M9 4h6",key:"10am2s"}]]);const bl=c("arrow-big-down",[["path",{d:"M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z",key:"1eaqc3"}]]);const Ml=c("arrow-big-left-dash",[["path",{d:"M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z",key:"p8w4w5"}],["path",{d:"M20 9v6",key:"14roy0"}]]);const wl=c("arrow-big-left",[["path",{d:"M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z",key:"aztept"}]]);const xl=c("arrow-big-right-dash",[["path",{d:"M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H9a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z",key:"67vhrh"}],["path",{d:"M4 9v6",key:"bns7oa"}]]);const Nl=c("arrow-big-right",[["path",{d:"M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z",key:"1232du"}]]);const Cl=c("arrow-big-up-dash",[["path",{d:"M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z",key:"pnzqmc"}],["path",{d:"M9 20h6",key:"s66wpe"}]]);const $l=c("arrow-big-up",[["path",{d:"M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v6a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z",key:"lh0v7k"}]]);const Sl=c("arrow-down-0-1",[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2",key:"1bwicg"}],["path",{d:"M17 20v-6h-2",key:"1qp1so"}],["path",{d:"M15 20h4",key:"1j968p"}]]);const Ll=c("arrow-down-1-0",[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"M17 10V4h-2",key:"zcsr5x"}],["path",{d:"M15 10h4",key:"id2lce"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2",key:"33xykx"}]]);const Nn=c("arrow-down-a-z",[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"M20 8h-5",key:"1vsyxs"}],["path",{d:"M15 10V6.5a2.5 2.5 0 0 1 5 0V10",key:"ag13bf"}],["path",{d:"M15 14h5l-5 6h5",key:"ur5jdg"}]]);const Il=c("arrow-down-from-line",[["path",{d:"M19 3H5",key:"1236rx"}],["path",{d:"M12 21V7",key:"gj6g52"}],["path",{d:"m6 15 6 6 6-6",key:"h15q88"}]]);const Al=c("arrow-down-left",[["path",{d:"M17 7 7 17",key:"15tmo1"}],["path",{d:"M17 17H7V7",key:"1org7z"}]]);const Pl=c("arrow-down-narrow-wide",[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"M11 4h4",key:"6d7r33"}],["path",{d:"M11 8h7",key:"djye34"}],["path",{d:"M11 12h10",key:"1438ji"}]]);const Tl=c("arrow-down-right",[["path",{d:"m7 7 10 10",key:"1fmybs"}],["path",{d:"M17 7v10H7",key:"6fjiku"}]]);const Dl=c("arrow-down-to-dot",[["path",{d:"M12 2v14",key:"jyx4ut"}],["path",{d:"m19 9-7 7-7-7",key:"1oe3oy"}],["circle",{cx:"12",cy:"21",r:"1",key:"o0uj5v"}]]);const El=c("arrow-down-to-line",[["path",{d:"M12 17V3",key:"1cwfxf"}],["path",{d:"m6 11 6 6 6-6",key:"12ii2o"}],["path",{d:"M19 21H5",key:"150jfl"}]]);const zl=c("arrow-down-up",[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"m21 8-4-4-4 4",key:"1c9v7m"}],["path",{d:"M17 4v16",key:"7dpous"}]]);const Cn=c("arrow-down-wide-narrow",[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"M11 4h10",key:"1w87gc"}],["path",{d:"M11 8h7",key:"djye34"}],["path",{d:"M11 12h4",key:"q8tih4"}]]);const $n=c("arrow-down-z-a",[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M15 4h5l-5 6h5",key:"8asdl1"}],["path",{d:"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20",key:"r6l5cz"}],["path",{d:"M20 18h-5",key:"18j1r2"}]]);const Ol=c("arrow-down",[["path",{d:"M12 5v14",key:"s699le"}],["path",{d:"m19 12-7 7-7-7",key:"1idqje"}]]);const ql=c("arrow-left-from-line",[["path",{d:"m9 6-6 6 6 6",key:"7v63n9"}],["path",{d:"M3 12h14",key:"13k4hi"}],["path",{d:"M21 19V5",key:"b4bplr"}]]);const jl=c("arrow-left-right",[["path",{d:"M8 3 4 7l4 4",key:"9rb6wj"}],["path",{d:"M4 7h16",key:"6tx8e3"}],["path",{d:"m16 21 4-4-4-4",key:"siv7j2"}],["path",{d:"M20 17H4",key:"h6l3hr"}]]);const Hl=c("arrow-left-to-line",[["path",{d:"M3 19V5",key:"rwsyhb"}],["path",{d:"m13 6-6 6 6 6",key:"1yhaz7"}],["path",{d:"M7 12h14",key:"uoisry"}]]);const Zc=c("arrow-left",[["path",{d:"m12 19-7-7 7-7",key:"1l729n"}],["path",{d:"M19 12H5",key:"x3x0zl"}]]);const Vl=c("arrow-right-from-line",[["path",{d:"M3 5v14",key:"1nt18q"}],["path",{d:"M21 12H7",key:"13ipq5"}],["path",{d:"m15 18 6-6-6-6",key:"6tx3qv"}]]);const Fl=c("arrow-right-left",[["path",{d:"m16 3 4 4-4 4",key:"1x1c3m"}],["path",{d:"M20 7H4",key:"zbl0bi"}],["path",{d:"m8 21-4-4 4-4",key:"h9nckh"}],["path",{d:"M4 17h16",key:"g4d7ey"}]]);const Vs=c("arrow-right",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"m12 5 7 7-7 7",key:"xquz4c"}]]);const Bl=c("arrow-right-to-line",[["path",{d:"M17 12H3",key:"8awo09"}],["path",{d:"m11 18 6-6-6-6",key:"8c2y43"}],["path",{d:"M21 5v14",key:"nzette"}]]);const Wl=c("arrow-up-0-1",[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2",key:"1bwicg"}],["path",{d:"M17 20v-6h-2",key:"1qp1so"}],["path",{d:"M15 20h4",key:"1j968p"}]]);const Ul=c("arrow-up-1-0",[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M17 10V4h-2",key:"zcsr5x"}],["path",{d:"M15 10h4",key:"id2lce"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2",key:"33xykx"}]]);const Sn=c("arrow-up-a-z",[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M20 8h-5",key:"1vsyxs"}],["path",{d:"M15 10V6.5a2.5 2.5 0 0 1 5 0V10",key:"ag13bf"}],["path",{d:"M15 14h5l-5 6h5",key:"ur5jdg"}]]);const Rl=c("arrow-up-down",[["path",{d:"m21 16-4 4-4-4",key:"f6ql7i"}],["path",{d:"M17 20V4",key:"1ejh1v"}],["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}]]);const Gl=c("arrow-up-from-dot",[["path",{d:"m5 9 7-7 7 7",key:"1hw5ic"}],["path",{d:"M12 16V2",key:"ywoabb"}],["circle",{cx:"12",cy:"21",r:"1",key:"o0uj5v"}]]);const Kl=c("arrow-up-from-line",[["path",{d:"m18 9-6-6-6 6",key:"kcunyi"}],["path",{d:"M12 3v14",key:"7cf3v8"}],["path",{d:"M5 21h14",key:"11awu3"}]]);const Yl=c("arrow-up-left",[["path",{d:"M7 17V7h10",key:"11bw93"}],["path",{d:"M17 17 7 7",key:"2786uv"}]]);const Ln=c("arrow-up-narrow-wide",[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M11 12h4",key:"q8tih4"}],["path",{d:"M11 16h7",key:"uosisv"}],["path",{d:"M11 20h10",key:"jvxblo"}]]);const Xl=c("arrow-up-right",[["path",{d:"M7 7h10v10",key:"1tivn9"}],["path",{d:"M7 17 17 7",key:"1vkiza"}]]);const Zl=c("arrow-up-to-line",[["path",{d:"M5 3h14",key:"7usisc"}],["path",{d:"m18 13-6-6-6 6",key:"1kf1n9"}],["path",{d:"M12 7v14",key:"1akyts"}]]);const Ql=c("arrow-up-wide-narrow",[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M11 12h10",key:"1438ji"}],["path",{d:"M11 16h7",key:"uosisv"}],["path",{d:"M11 20h4",key:"1krc32"}]]);const In=c("arrow-up-z-a",[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M15 4h5l-5 6h5",key:"8asdl1"}],["path",{d:"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20",key:"r6l5cz"}],["path",{d:"M20 18h-5",key:"18j1r2"}]]);const Jl=c("arrow-up",[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]]);const e2=c("arrows-up-from-line",[["path",{d:"m4 6 3-3 3 3",key:"9aidw8"}],["path",{d:"M7 17V3",key:"19qxw1"}],["path",{d:"m14 6 3-3 3 3",key:"6iy689"}],["path",{d:"M17 17V3",key:"o0fmgi"}],["path",{d:"M4 21h16",key:"1h09gz"}]]);const t2=c("asterisk",[["path",{d:"M12 6v12",key:"1vza4d"}],["path",{d:"M17.196 9 6.804 15",key:"1ah31z"}],["path",{d:"m6.804 9 10.392 6",key:"1b6pxd"}]]);const o2=c("at-sign",[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8",key:"7n84p3"}]]);const n2=c("atom",[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["path",{d:"M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z",key:"1l2ple"}],["path",{d:"M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z",key:"1wam0m"}]]);const a2=c("audio-lines",[["path",{d:"M2 10v3",key:"1fnikh"}],["path",{d:"M6 6v11",key:"11sgs0"}],["path",{d:"M10 3v18",key:"yhl04a"}],["path",{d:"M14 8v7",key:"3a1oy3"}],["path",{d:"M18 5v13",key:"123xd1"}],["path",{d:"M22 10v3",key:"154ddg"}]]);const r2=c("audio-waveform",[["path",{d:"M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2",key:"57tc96"}]]);const i2=c("award",[["path",{d:"m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526",key:"1yiouv"}],["circle",{cx:"12",cy:"8",r:"6",key:"1vp47v"}]]);const c2=c("axe",[["path",{d:"m14 12-8.381 8.38a1 1 0 0 1-3.001-3L11 9",key:"5z9253"}],["path",{d:"M15 15.5a.5.5 0 0 0 .5.5A6.5 6.5 0 0 0 22 9.5a.5.5 0 0 0-.5-.5h-1.672a2 2 0 0 1-1.414-.586l-5.062-5.062a1.205 1.205 0 0 0-1.704 0L9.352 5.648a1.205 1.205 0 0 0 0 1.704l5.062 5.062A2 2 0 0 1 15 13.828z",key:"19zklq"}]]);const An=c("axis-3d",[["path",{d:"M13.5 10.5 15 9",key:"1nsxvm"}],["path",{d:"M4 4v15a1 1 0 0 0 1 1h15",key:"1w6lkd"}],["path",{d:"M4.293 19.707 6 18",key:"3g1p8c"}],["path",{d:"m9 15 1.5-1.5",key:"1xfbes"}]]);const s2=c("backpack",[["path",{d:"M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z",key:"1ol0lm"}],["path",{d:"M8 10h8",key:"c7uz4u"}],["path",{d:"M8 18h8",key:"1no2b1"}],["path",{d:"M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6",key:"1fr6do"}],["path",{d:"M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2",key:"donm21"}]]);const d2=c("baby",[["path",{d:"M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5",key:"1u7htd"}],["path",{d:"M15 12h.01",key:"1k8ypt"}],["path",{d:"M19.38 6.813A9 9 0 0 1 20.8 10.2a2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1",key:"11xh7x"}],["path",{d:"M9 12h.01",key:"157uk2"}]]);const l2=c("badge-alert",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);const u2=c("badge-cent",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M12 7v10",key:"jspqdw"}],["path",{d:"M15.4 10a4 4 0 1 0 0 4",key:"2eqtx8"}]]);const Pn=c("badge-check",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);const h2=c("badge-dollar-sign",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8",key:"1h4pet"}],["path",{d:"M12 18V6",key:"zqpxq5"}]]);const p2=c("badge-euro",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M7 12h5",key:"gblrwe"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2",key:"1makmb"}]]);const y2=c("badge-indian-rupee",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M8 8h8",key:"1bis0t"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"m13 17-5-1h1a4 4 0 0 0 0-8",key:"nu2bwa"}]]);const f2=c("badge-info",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"12",x2:"12",y1:"16",y2:"12",key:"1y1yb1"}],["line",{x1:"12",x2:"12.01",y1:"8",y2:"8",key:"110wyk"}]]);const m2=c("badge-japanese-yen",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"m9 8 3 3v7",key:"17yadx"}],["path",{d:"m12 11 3-3",key:"p4cfq1"}],["path",{d:"M9 12h6",key:"1c52cq"}],["path",{d:"M9 16h6",key:"8wimt3"}]]);const k2=c("badge-minus",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]]);const g2=c("badge-percent",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"M15 15h.01",key:"lqbp3k"}]]);const v2=c("badge-plus",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"12",x2:"12",y1:"8",y2:"16",key:"10p56q"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]]);const _2=c("badge-pound-sterling",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M8 12h4",key:"qz6y1c"}],["path",{d:"M10 16V9.5a2.5 2.5 0 0 1 5 0",key:"3mlbjk"}],["path",{d:"M8 16h7",key:"sbedsn"}]]);const Tn=c("badge-question-mark",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["line",{x1:"12",x2:"12.01",y1:"17",y2:"17",key:"io3f8k"}]]);const b2=c("badge-russian-ruble",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M9 16h5",key:"1syiyw"}],["path",{d:"M9 12h5a2 2 0 1 0 0-4h-3v9",key:"1ge9c1"}]]);const M2=c("badge-swiss-franc",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M11 17V8h4",key:"1bfq6y"}],["path",{d:"M11 12h3",key:"2eqnfz"}],["path",{d:"M9 16h4",key:"1skf3a"}]]);const w2=c("badge-turkish-lira",[["path",{d:"M11 7v10a5 5 0 0 0 5-5",key:"1ja3ih"}],["path",{d:"m15 8-6 3",key:"4x0uwz"}],["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76",key:"18242g"}]]);const x2=c("badge-x",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15",key:"f7djnv"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15",key:"1shsy8"}]]);const N2=c("baggage-claim",[["path",{d:"M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2",key:"4irg2o"}],["path",{d:"M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10",key:"14fcyx"}],["rect",{width:"13",height:"8",x:"8",y:"6",rx:"1",key:"o6oiis"}],["circle",{cx:"18",cy:"20",r:"2",key:"t9985n"}],["circle",{cx:"9",cy:"20",r:"2",key:"e5v82j"}]]);const C2=c("badge",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}]]);const $2=c("balloon",[["path",{d:"M12 16v1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1",key:"2nz4b"}],["path",{d:"M12 6a2 2 0 0 1 2 2",key:"7y7d82"}],["path",{d:"M18 8c0 4-3.5 8-6 8s-6-4-6-8a6 6 0 0 1 12 0",key:"vqb5s3"}]]);const S2=c("ban",[["path",{d:"M4.929 4.929 19.07 19.071",key:"196cmz"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const L2=c("banana",[["path",{d:"M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5",key:"1cscit"}],["path",{d:"M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z",key:"1y1nbv"}]]);const I2=c("banknote-arrow-down",[["path",{d:"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5",key:"x6cv4u"}],["path",{d:"m16 19 3 3 3-3",key:"1ibux0"}],["path",{d:"M18 12h.01",key:"yjnet6"}],["path",{d:"M19 16v6",key:"tddt3s"}],["path",{d:"M6 12h.01",key:"c2rlol"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const A2=c("bandage",[["path",{d:"M10 10.01h.01",key:"1e9xi7"}],["path",{d:"M10 14.01h.01",key:"ac23bv"}],["path",{d:"M14 10.01h.01",key:"2wfrvf"}],["path",{d:"M14 14.01h.01",key:"8tw8yn"}],["path",{d:"M18 6v11.5",key:"dkbidh"}],["path",{d:"M6 6v12",key:"vkc79e"}],["rect",{x:"2",y:"6",width:"20",height:"12",rx:"2",key:"1wpnh2"}]]);const P2=c("banknote-arrow-up",[["path",{d:"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5",key:"x6cv4u"}],["path",{d:"M18 12h.01",key:"yjnet6"}],["path",{d:"M19 22v-6",key:"qhmiwi"}],["path",{d:"m22 19-3-3-3 3",key:"rn6bg2"}],["path",{d:"M6 12h.01",key:"c2rlol"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const T2=c("banknote-x",[["path",{d:"M13 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5",key:"16nib6"}],["path",{d:"m17 17 5 5",key:"p7ous7"}],["path",{d:"M18 12h.01",key:"yjnet6"}],["path",{d:"m22 17-5 5",key:"gqnmv0"}],["path",{d:"M6 12h.01",key:"c2rlol"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const D2=c("barcode",[["path",{d:"M3 5v14",key:"1nt18q"}],["path",{d:"M8 5v14",key:"1ybrkv"}],["path",{d:"M12 5v14",key:"s699le"}],["path",{d:"M17 5v14",key:"ycjyhj"}],["path",{d:"M21 5v14",key:"nzette"}]]);const E2=c("banknote",[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"M6 12h.01M18 12h.01",key:"113zkx"}]]);const z2=c("barrel",[["path",{d:"M10 3a41 41 0 0 0 0 18",key:"1qcnzb"}],["path",{d:"M14 3a41 41 0 0 1 0 18",key:"547vd4"}],["path",{d:"M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z",key:"1wepyy"}],["path",{d:"M3.84 17h16.32",key:"1wh981"}],["path",{d:"M3.84 7h16.32",key:"19jf4x"}]]);const O2=c("baseline",[["path",{d:"M4 20h16",key:"14thso"}],["path",{d:"m6 16 6-12 6 12",key:"1b4byz"}],["path",{d:"M8 12h8",key:"1wcyev"}]]);const q2=c("bath",[["path",{d:"M10 4 8 6",key:"1rru8s"}],["path",{d:"M17 19v2",key:"ts1sot"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M7 19v2",key:"12npes"}],["path",{d:"M9 5 7.621 3.621A2.121 2.121 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5",key:"14ym8i"}]]);const j2=c("battery-charging",[["path",{d:"m11 7-3 5h4l-3 5",key:"b4a64w"}],["path",{d:"M14.856 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.935",key:"lre1cr"}],["path",{d:"M22 14v-4",key:"14q9d5"}],["path",{d:"M5.14 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.936",key:"13q5k0"}]]);const H2=c("battery-full",[["path",{d:"M10 10v4",key:"1mb2ec"}],["path",{d:"M14 10v4",key:"1nt88p"}],["path",{d:"M22 14v-4",key:"14q9d5"}],["path",{d:"M6 10v4",key:"1n77qd"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2",key:"13zb55"}]]);const V2=c("battery-low",[["path",{d:"M22 14v-4",key:"14q9d5"}],["path",{d:"M6 14v-4",key:"14a6bd"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2",key:"13zb55"}]]);const F2=c("battery-medium",[["path",{d:"M10 14v-4",key:"suye4c"}],["path",{d:"M22 14v-4",key:"14q9d5"}],["path",{d:"M6 14v-4",key:"14a6bd"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2",key:"13zb55"}]]);const B2=c("battery-plus",[["path",{d:"M10 9v6",key:"17i7lo"}],["path",{d:"M12.543 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.605",key:"o09yah"}],["path",{d:"M22 14v-4",key:"14q9d5"}],["path",{d:"M7 12h6",key:"iekk3h"}],["path",{d:"M7.606 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.606",key:"xyqvf1"}]]);const W2=c("battery-warning",[["path",{d:"M10 17h.01",key:"nbq80n"}],["path",{d:"M10 7v6",key:"nne03l"}],["path",{d:"M14 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2",key:"1m83kb"}],["path",{d:"M22 14v-4",key:"14q9d5"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2",key:"h8lgfh"}]]);const U2=c("beaker",[["path",{d:"M4.5 3h15",key:"c7n0jr"}],["path",{d:"M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3",key:"m1uhx7"}],["path",{d:"M6 14h12",key:"4cwo0f"}]]);const R2=c("battery",[["path",{d:"M 22 14 L 22 10",key:"nqc4tb"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2",key:"13zb55"}]]);const G2=c("bean-off",[["path",{d:"M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1",key:"bq3udt"}],["path",{d:"M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66",key:"17ccse"}],["path",{d:"M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04",key:"18zqgq"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const K2=c("bean",[["path",{d:"M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z",key:"1tvzk7"}],["path",{d:"M5.341 10.62a4 4 0 1 0 5.279-5.28",key:"2cyri2"}]]);const Y2=c("bed-double",[["path",{d:"M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8",key:"1k78r4"}],["path",{d:"M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4",key:"fb3tl2"}],["path",{d:"M12 4v6",key:"1dcgq2"}],["path",{d:"M2 18h20",key:"ajqnye"}]]);const X2=c("bed-single",[["path",{d:"M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8",key:"1wm6mi"}],["path",{d:"M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4",key:"4k93s5"}],["path",{d:"M3 18h18",key:"1h113x"}]]);const Z2=c("bed",[["path",{d:"M2 4v16",key:"vw9hq8"}],["path",{d:"M2 8h18a2 2 0 0 1 2 2v10",key:"1dgv2r"}],["path",{d:"M2 17h20",key:"18nfp3"}],["path",{d:"M6 8v9",key:"1yriud"}]]);const Q2=c("beef",[["path",{d:"M16.4 13.7A6.5 6.5 0 1 0 6.28 6.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3",key:"cisjcv"}],["path",{d:"m18.5 6 2.19 4.5a6.48 6.48 0 0 1-2.29 7.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5",key:"5byaag"}],["circle",{cx:"12.5",cy:"8.5",r:"2.5",key:"9738u8"}]]);const J2=c("beer-off",[["path",{d:"M13 13v5",key:"igwfh0"}],["path",{d:"M17 11.47V8",key:"16yw0g"}],["path",{d:"M17 11h1a3 3 0 0 1 2.745 4.211",key:"1xbt65"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3",key:"c55o3e"}],["path",{d:"M7.536 7.535C6.766 7.649 6.154 8 5.5 8a2.5 2.5 0 0 1-1.768-4.268",key:"1ydug7"}],["path",{d:"M8.727 3.204C9.306 2.767 9.885 2 11 2c1.56 0 2 1.5 3 1.5s1.72-.5 2.5-.5a1 1 0 1 1 0 5c-.78 0-1.5-.5-2.5-.5a3.149 3.149 0 0 0-.842.12",key:"q81o7q"}],["path",{d:"M9 14.6V18",key:"20ek98"}]]);const e0=c("bell-dot",[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M13.916 2.314A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.74 7.327A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673 9 9 0 0 1-.585-.665",key:"1tip0g"}],["circle",{cx:"18",cy:"8",r:"3",key:"1g0gzu"}]]);const t0=c("beer",[["path",{d:"M17 11h1a3 3 0 0 1 0 6h-1",key:"1yp76v"}],["path",{d:"M9 12v6",key:"1u1cab"}],["path",{d:"M13 12v6",key:"1sugkk"}],["path",{d:"M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z",key:"1510fo"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8",key:"19jb7n"}]]);const o0=c("bell-electric",[["path",{d:"M18.518 17.347A7 7 0 0 1 14 19",key:"1emhpo"}],["path",{d:"M18.8 4A11 11 0 0 1 20 9",key:"127b67"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["circle",{cx:"20",cy:"16",r:"2",key:"1v9bxh"}],["circle",{cx:"9",cy:"9",r:"7",key:"p2h5vp"}],["rect",{x:"4",y:"16",width:"10",height:"6",rx:"2",key:"bfnviv"}]]);const n0=c("bell-minus",[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M15 8h6",key:"8ybuxh"}],["path",{d:"M16.243 3.757A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673A9.4 9.4 0 0 1 18.667 12",key:"bdwj86"}]]);const a0=c("bell-off",[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742",key:"178tsu"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05",key:"1hqiys"}]]);const r0=c("bell-plus",[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M15 8h6",key:"8ybuxh"}],["path",{d:"M18 5v6",key:"g5ayrv"}],["path",{d:"M20.002 14.464a9 9 0 0 0 .738.863A1 1 0 0 1 20 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 8.75-5.332",key:"1abcvy"}]]);const i0=c("bell-ring",[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M22 8c0-2.3-.8-4.3-2-6",key:"5bb3ad"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326",key:"11g9vi"}],["path",{d:"M4 2C2.8 3.7 2 5.7 2 8",key:"tap9e0"}]]);const c0=c("bell",[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326",key:"11g9vi"}]]);const Dn=c("between-horizontal-end",[["rect",{width:"13",height:"7",x:"3",y:"3",rx:"1",key:"11xb64"}],["path",{d:"m22 15-3-3 3-3",key:"26chmm"}],["rect",{width:"13",height:"7",x:"3",y:"14",rx:"1",key:"k6ky7n"}]]);const En=c("between-horizontal-start",[["rect",{width:"13",height:"7",x:"8",y:"3",rx:"1",key:"pkso9a"}],["path",{d:"m2 9 3 3-3 3",key:"1agib5"}],["rect",{width:"13",height:"7",x:"8",y:"14",rx:"1",key:"1q5fc1"}]]);const s0=c("between-vertical-end",[["rect",{width:"7",height:"13",x:"3",y:"3",rx:"1",key:"1fdu0f"}],["path",{d:"m9 22 3-3 3 3",key:"17z65a"}],["rect",{width:"7",height:"13",x:"14",y:"3",rx:"1",key:"1squn4"}]]);const d0=c("between-vertical-start",[["rect",{width:"7",height:"13",x:"3",y:"8",rx:"1",key:"1fjrkv"}],["path",{d:"m15 2-3 3-3-3",key:"1uh6eb"}],["rect",{width:"7",height:"13",x:"14",y:"8",rx:"1",key:"w3fjg8"}]]);const l0=c("biceps-flexed",[["path",{d:"M12.409 13.017A5 5 0 0 1 22 15c0 3.866-4 7-9 7-4.077 0-8.153-.82-10.371-2.462-.426-.316-.631-.832-.62-1.362C2.118 12.723 2.627 2 10 2a3 3 0 0 1 3 3 2 2 0 0 1-2 2c-1.105 0-1.64-.444-2-1",key:"1pmlyh"}],["path",{d:"M15 14a5 5 0 0 0-7.584 2",key:"5rb254"}],["path",{d:"M9.964 6.825C8.019 7.977 9.5 13 8 15",key:"kbvsx9"}]]);const u0=c("bike",[["circle",{cx:"18.5",cy:"17.5",r:"3.5",key:"15x4ox"}],["circle",{cx:"5.5",cy:"17.5",r:"3.5",key:"1noe27"}],["circle",{cx:"15",cy:"5",r:"1",key:"19l28e"}],["path",{d:"M12 17.5V14l-3-3 4-3 2 3h2",key:"1npguv"}]]);const h0=c("binary",[["rect",{x:"14",y:"14",width:"4",height:"6",rx:"2",key:"p02svl"}],["rect",{x:"6",y:"4",width:"4",height:"6",rx:"2",key:"xm4xkj"}],["path",{d:"M6 20h4",key:"1i6q5t"}],["path",{d:"M14 10h4",key:"ru81e7"}],["path",{d:"M6 14h2v6",key:"16z9wg"}],["path",{d:"M14 4h2v6",key:"1idq9u"}]]);const p0=c("binoculars",[["path",{d:"M10 10h4",key:"tcdvrf"}],["path",{d:"M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3",key:"3apit1"}],["path",{d:"M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z",key:"rhpgnw"}],["path",{d:"M 22 16 L 2 16",key:"14lkq7"}],["path",{d:"M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z",key:"104b3k"}],["path",{d:"M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3",key:"14fczp"}]]);const y0=c("biohazard",[["circle",{cx:"12",cy:"11.9",r:"2",key:"e8h31w"}],["path",{d:"M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6",key:"17bolr"}],["path",{d:"m8.9 10.1 1.4.8",key:"15ezny"}],["path",{d:"M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5",key:"wtwa5u"}],["path",{d:"m15.1 10.1-1.4.8",key:"1r0b28"}],["path",{d:"M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2",key:"m7qszh"}],["path",{d:"M12 13.9v1.6",key:"zfyyim"}],["path",{d:"M13.5 5.4c-1-.2-2-.2-3 0",key:"1bi9q0"}],["path",{d:"M17 16.4c.7-.7 1.2-1.6 1.5-2.5",key:"1rhjqw"}],["path",{d:"M5.5 13.9c.3.9.8 1.8 1.5 2.5",key:"8gsud3"}]]);const f0=c("bird",[["path",{d:"M16 7h.01",key:"1kdx03"}],["path",{d:"M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20",key:"oj1oa8"}],["path",{d:"m20 7 2 .5-2 .5",key:"12nv4d"}],["path",{d:"M10 18v3",key:"1yea0a"}],["path",{d:"M14 17.75V21",key:"1pymcb"}],["path",{d:"M7 18a6 6 0 0 0 3.84-10.61",key:"1npnn0"}]]);const m0=c("birdhouse",[["path",{d:"M12 18v4",key:"jadmvz"}],["path",{d:"m17 18 1.956-11.468",key:"l5n2ro"}],["path",{d:"m3 8 7.82-5.615a2 2 0 0 1 2.36 0L21 8",key:"1sy6n7"}],["path",{d:"M4 18h16",key:"19g7jn"}],["path",{d:"M7 18 5.044 6.532",key:"1uqdf2"}],["circle",{cx:"12",cy:"10",r:"2",key:"1yojzk"}]]);const k0=c("bitcoin",[["path",{d:"M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727",key:"yr8idg"}]]);const g0=c("blend",[["circle",{cx:"9",cy:"9",r:"7",key:"p2h5vp"}],["circle",{cx:"15",cy:"15",r:"7",key:"19ennj"}]]);const v0=c("blinds",[["path",{d:"M3 3h18",key:"o7r712"}],["path",{d:"M20 7H8",key:"gd2fo2"}],["path",{d:"M20 11H8",key:"1ynp89"}],["path",{d:"M10 19h10",key:"19hjk5"}],["path",{d:"M8 15h12",key:"1yqzne"}],["path",{d:"M4 3v14",key:"fggqzn"}],["circle",{cx:"4",cy:"19",r:"2",key:"p3m9r0"}]]);const _0=c("blocks",[["path",{d:"M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2",key:"1ah6g2"}],["rect",{x:"14",y:"2",width:"8",height:"8",rx:"1",key:"88lufb"}]]);const b0=c("bluetooth-connected",[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17",key:"1q5490"}],["line",{x1:"18",x2:"21",y1:"12",y2:"12",key:"1rsjjs"}],["line",{x1:"3",x2:"6",y1:"12",y2:"12",key:"11yl8c"}]]);const M0=c("bluetooth-off",[["path",{d:"m17 17-5 5V12l-5 5",key:"v5aci6"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M14.5 9.5 17 7l-5-5v4.5",key:"1kddfz"}]]);const w0=c("bluetooth-searching",[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17",key:"1q5490"}],["path",{d:"M20.83 14.83a4 4 0 0 0 0-5.66",key:"k8tn1j"}],["path",{d:"M18 12h.01",key:"yjnet6"}]]);const x0=c("bold",[["path",{d:"M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8",key:"mg9rjx"}]]);const N0=c("bluetooth",[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17",key:"1q5490"}]]);const C0=c("bolt",[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",key:"yt0hxn"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]]);const $0=c("bone",[["path",{d:"M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z",key:"w610uw"}]]);const S0=c("bomb",[["circle",{cx:"11",cy:"13",r:"9",key:"hd149"}],["path",{d:"M14.35 4.65 16.3 2.7a2.41 2.41 0 0 1 3.4 0l1.6 1.6a2.4 2.4 0 0 1 0 3.4l-1.95 1.95",key:"jp4j1b"}],["path",{d:"m22 2-1.5 1.5",key:"ay92ug"}]]);const L0=c("book-a",[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m8 13 4-7 4 7",key:"4rari8"}],["path",{d:"M9.1 11h5.7",key:"1gkovt"}]]);const I0=c("book-alert",[["path",{d:"M12 13h.01",key:"y0uutt"}],["path",{d:"M12 6v3",key:"1m4b9j"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]]);const A0=c("book-audio",[["path",{d:"M12 6v7",key:"1f6ttz"}],["path",{d:"M16 8v3",key:"gejaml"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M8 8v3",key:"1qzp49"}]]);const P0=c("book-check",[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9 9.5 2 2 4-4",key:"1dth82"}]]);const T0=c("book-copy",[["path",{d:"M5 7a2 2 0 0 0-2 2v11",key:"1yhqjt"}],["path",{d:"M5.803 18H5a2 2 0 0 0 0 4h9.5a.5.5 0 0 0 .5-.5V21",key:"edzzo5"}],["path",{d:"M9 15V4a2 2 0 0 1 2-2h9.5a.5.5 0 0 1 .5.5v14a.5.5 0 0 1-.5.5H11a2 2 0 0 1 0-4h10",key:"1nwzrg"}]]);const zn=c("book-dashed",[["path",{d:"M12 17h1.5",key:"1gkc67"}],["path",{d:"M12 22h1.5",key:"1my7sn"}],["path",{d:"M12 2h1.5",key:"19tvb7"}],["path",{d:"M17.5 22H19a1 1 0 0 0 1-1",key:"10akbh"}],["path",{d:"M17.5 2H19a1 1 0 0 1 1 1v1.5",key:"1vrfjs"}],["path",{d:"M20 14v3h-2.5",key:"1naeju"}],["path",{d:"M20 8.5V10",key:"1ctpfu"}],["path",{d:"M4 10V8.5",key:"1o3zg5"}],["path",{d:"M4 19.5V14",key:"ob81pf"}],["path",{d:"M4 4.5A2.5 2.5 0 0 1 6.5 2H8",key:"s8vcyb"}],["path",{d:"M8 22H6.5a1 1 0 0 1 0-5H8",key:"1cu73q"}]]);const D0=c("book-down",[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9 10 3 3 3-3",key:"zt5b4y"}]]);const E0=c("book-headphones",[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M8 12v-2a4 4 0 0 1 8 0v2",key:"1vsqkj"}],["circle",{cx:"15",cy:"12",r:"1",key:"1tmaij"}],["circle",{cx:"9",cy:"12",r:"1",key:"1vctgf"}]]);const z0=c("book-heart",[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M8.62 9.8A2.25 2.25 0 1 1 12 6.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z",key:"9v40y5"}]]);const O0=c("book-image",[["path",{d:"m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17",key:"q6ojf0"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["circle",{cx:"10",cy:"8",r:"2",key:"2qkj4p"}]]);const q0=c("book-key",[["path",{d:"m19 3 1 1",key:"ze14oc"}],["path",{d:"m20 2-4.5 4.5",key:"1sppr8"}],["path",{d:"M20 7.898V21a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"1xzogz"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2h7.844",key:"vtdg6h"}],["circle",{cx:"14",cy:"8",r:"2",key:"u49eql"}]]);const j0=c("book-lock",[["path",{d:"M18 6V4a2 2 0 1 0-4 0v2",key:"1aquzs"}],["path",{d:"M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"1rkj32"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10",key:"18wgow"}],["rect",{x:"12",y:"6",width:"8",height:"5",rx:"1",key:"73l30o"}]]);const H0=c("book-minus",[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M9 10h6",key:"9gxzsh"}]]);const V0=c("book-marked",[["path",{d:"M10 2v8l3-3 3 3V2",key:"sqw3rj"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]]);const F0=c("book-open-check",[["path",{d:"M12 21V7",key:"gj6g52"}],["path",{d:"m16 12 2 2 4-4",key:"mdajum"}],["path",{d:"M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3",key:"8arnkb"}]]);const B0=c("book-open",[["path",{d:"M12 7v14",key:"1akyts"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",key:"ruj8y"}]]);const W0=c("book-open-text",[["path",{d:"M12 7v14",key:"1akyts"}],["path",{d:"M16 12h2",key:"7q9ll5"}],["path",{d:"M16 8h2",key:"msurwy"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",key:"ruj8y"}],["path",{d:"M6 12h2",key:"32wvfc"}],["path",{d:"M6 8h2",key:"30oboj"}]]);const U0=c("book-plus",[["path",{d:"M12 7v6",key:"lw1j43"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M9 10h6",key:"9gxzsh"}]]);const R0=c("book-search",[["path",{d:"M11 22H5.5a1 1 0 0 1 0-5h4.501",key:"mcbepb"}],["path",{d:"m21 22-1.879-1.878",key:"12q7x1"}],["path",{d:"M3 19.5v-15A2.5 2.5 0 0 1 5.5 2H18a1 1 0 0 1 1 1v8",key:"olfd5n"}],["circle",{cx:"17",cy:"18",r:"3",key:"82mm0e"}]]);const G0=c("book-text",[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M8 11h8",key:"vwpz6n"}],["path",{d:"M8 7h6",key:"1f0q6e"}]]);const K0=c("book-type",[["path",{d:"M10 13h4",key:"ytezjc"}],["path",{d:"M12 6v7",key:"1f6ttz"}],["path",{d:"M16 8V6H8v2",key:"x8j6u4"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]]);const Y0=c("book-up-2",[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"161d7n"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2",key:"1lorq7"}],["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}],["path",{d:"m9 5 3-3 3 3",key:"l8vdw6"}]]);const X0=c("book-up",[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}]]);const Z0=c("book-user",[["path",{d:"M15 13a3 3 0 1 0-6 0",key:"10j68g"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["circle",{cx:"12",cy:"8",r:"2",key:"1822b1"}]]);const Q0=c("book-x",[["path",{d:"m14.5 7-5 5",key:"dy991v"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9.5 7 5 5",key:"s45iea"}]]);const J0=c("book",[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]]);const eu=c("bookmark-check",[["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z",key:"oz39mx"}],["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}]]);const tu=c("bookmark-minus",[["path",{d:"M15 10H9",key:"o6yqo3"}],["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z",key:"oz39mx"}]]);const ou=c("bookmark-plus",[["path",{d:"M12 7v6",key:"lw1j43"}],["path",{d:"M15 10H9",key:"o6yqo3"}],["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z",key:"oz39mx"}]]);const nu=c("bookmark-x",[["path",{d:"m14.5 7.5-5 5",key:"3lb6iw"}],["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z",key:"oz39mx"}],["path",{d:"m9.5 7.5 5 5",key:"ko136h"}]]);const au=c("bookmark",[["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z",key:"oz39mx"}]]);const ru=c("boom-box",[["path",{d:"M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4",key:"vvzvr1"}],["path",{d:"M8 8v1",key:"xcqmfk"}],["path",{d:"M12 8v1",key:"1rj8u4"}],["path",{d:"M16 8v1",key:"1q12zr"}],["rect",{width:"20",height:"12",x:"2",y:"9",rx:"2",key:"igpb89"}],["circle",{cx:"8",cy:"15",r:"2",key:"fa4a8s"}],["circle",{cx:"16",cy:"15",r:"2",key:"14c3ya"}]]);const iu=c("bot-message-square",[["path",{d:"M12 6V2H8",key:"1155em"}],["path",{d:"M15 11v2",key:"i11awn"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"M20 16a2 2 0 0 1-2 2H8.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 4 20.286V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z",key:"11gyqh"}],["path",{d:"M9 11v2",key:"1ueba0"}]]);const cu=c("bot-off",[["path",{d:"M13.67 8H18a2 2 0 0 1 2 2v4.33",key:"7az073"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M22 22 2 2",key:"1r8tn9"}],["path",{d:"M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586",key:"s09a7a"}],["path",{d:"M9 13v2",key:"rq6x2g"}],["path",{d:"M9.67 4H12v2.33",key:"110xot"}]]);const su=c("bot",[["path",{d:"M12 8V4H8",key:"hb8ula"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2",key:"enze0r"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M15 13v2",key:"1xurst"}],["path",{d:"M9 13v2",key:"rq6x2g"}]]);const du=c("bow-arrow",[["path",{d:"M17 3h4v4",key:"19p9u1"}],["path",{d:"M18.575 11.082a13 13 0 0 1 1.048 9.027 1.17 1.17 0 0 1-1.914.597L14 17",key:"12t3w9"}],["path",{d:"M7 10 3.29 6.29a1.17 1.17 0 0 1 .6-1.91 13 13 0 0 1 9.03 1.05",key:"ogng5l"}],["path",{d:"M7 14a1.7 1.7 0 0 0-1.207.5l-2.646 2.646A.5.5 0 0 0 3.5 18H5a1 1 0 0 1 1 1v1.5a.5.5 0 0 0 .854.354L9.5 18.207A1.7 1.7 0 0 0 10 17v-2a1 1 0 0 0-1-1z",key:"8v3fy2"}],["path",{d:"M9.707 14.293 21 3",key:"ydm3bn"}]]);const lu=c("bottle-wine",[["path",{d:"M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z",key:"blqgoc"}],["path",{d:"M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4",key:"43jbee"}]]);const uu=c("box",[["path",{d:"M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z",key:"hh9hay"}],["path",{d:"m3.3 7 8.7 5 8.7-5",key:"g66t2b"}],["path",{d:"M12 22V12",key:"d0xqtd"}]]);const hu=c("boxes",[["path",{d:"M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z",key:"lc1i9w"}],["path",{d:"m7 16.5-4.74-2.85",key:"1o9zyk"}],["path",{d:"m7 16.5 5-3",key:"va8pkn"}],["path",{d:"M7 16.5v5.17",key:"jnp8gn"}],["path",{d:"M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z",key:"8zsnat"}],["path",{d:"m17 16.5-5-3",key:"8arw3v"}],["path",{d:"m17 16.5 4.74-2.85",key:"8rfmw"}],["path",{d:"M17 16.5v5.17",key:"k6z78m"}],["path",{d:"M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z",key:"1xygjf"}],["path",{d:"M12 8 7.26 5.15",key:"1vbdud"}],["path",{d:"m12 8 4.74-2.85",key:"3rx089"}],["path",{d:"M12 13.5V8",key:"1io7kd"}]]);const On=c("braces",[["path",{d:"M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1",key:"ezmyqa"}],["path",{d:"M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1",key:"e1hn23"}]]);const pu=c("brackets",[["path",{d:"M16 3h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-3",key:"1kt8lf"}],["path",{d:"M8 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h3",key:"gduv9"}]]);const yu=c("brain-circuit",[["path",{d:"M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z",key:"l5xja"}],["path",{d:"M9 13a4.5 4.5 0 0 0 3-4",key:"10igwf"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5",key:"105sqy"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396",key:"ql3yin"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516",key:"2e4loj"}],["path",{d:"M12 13h4",key:"1ku699"}],["path",{d:"M12 18h6a2 2 0 0 1 2 2v1",key:"105ag5"}],["path",{d:"M12 8h8",key:"1lhi5i"}],["path",{d:"M16 8V5a2 2 0 0 1 2-2",key:"u6izg6"}],["circle",{cx:"16",cy:"13",r:".5",key:"ry7gng"}],["circle",{cx:"18",cy:"3",r:".5",key:"1aiba7"}],["circle",{cx:"20",cy:"21",r:".5",key:"yhc1fs"}],["circle",{cx:"20",cy:"8",r:".5",key:"1e43v0"}]]);const fu=c("brain-cog",[["path",{d:"m10.852 14.772-.383.923",key:"11vil6"}],["path",{d:"m10.852 9.228-.383-.923",key:"1fjppe"}],["path",{d:"m13.148 14.772.382.924",key:"je3va1"}],["path",{d:"m13.531 8.305-.383.923",key:"18epck"}],["path",{d:"m14.772 10.852.923-.383",key:"k9m8cz"}],["path",{d:"m14.772 13.148.923.383",key:"1xvhww"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 0 0-5.63-1.446 3 3 0 0 0-.368 1.571 4 4 0 0 0-2.525 5.771",key:"jcbbz1"}],["path",{d:"M17.998 5.125a4 4 0 0 1 2.525 5.771",key:"1kkn7e"}],["path",{d:"M19.505 10.294a4 4 0 0 1-1.5 7.706",key:"18bmuc"}],["path",{d:"M4.032 17.483A4 4 0 0 0 11.464 20c.18-.311.892-.311 1.072 0a4 4 0 0 0 7.432-2.516",key:"uozx0d"}],["path",{d:"M4.5 10.291A4 4 0 0 0 6 18",key:"whdemb"}],["path",{d:"M6.002 5.125a3 3 0 0 0 .4 1.375",key:"1kqy2g"}],["path",{d:"m9.228 10.852-.923-.383",key:"1wtb30"}],["path",{d:"m9.228 13.148-.923.383",key:"1a830x"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);const mu=c("brain",[["path",{d:"M12 18V5",key:"adv99a"}],["path",{d:"M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4",key:"1e3is1"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5",key:"1gqd8o"}],["path",{d:"M17.997 5.125a4 4 0 0 1 2.526 5.77",key:"iwvgf7"}],["path",{d:"M18 18a4 4 0 0 0 2-7.464",key:"efp6ie"}],["path",{d:"M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517",key:"1gq6am"}],["path",{d:"M6 18a4 4 0 0 1-2-7.464",key:"k1g0md"}],["path",{d:"M6.003 5.125a4 4 0 0 0-2.526 5.77",key:"q97ue3"}]]);const ku=c("brick-wall-fire",[["path",{d:"M16 3v2.107",key:"gq8xun"}],["path",{d:"M17 9c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 22 17a5 5 0 0 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C13 11.5 16 9 17 9",key:"1l2pih"}],["path",{d:"M21 8.274V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.938",key:"jrnqjp"}],["path",{d:"M3 15h5.253",key:"xqg7rb"}],["path",{d:"M3 9h8.228",key:"1ppb70"}],["path",{d:"M8 15v6",key:"1stoo3"}],["path",{d:"M8 3v6",key:"vlvjmk"}]]);const gu=c("brick-wall-shield",[["path",{d:"M12 9v1.258",key:"iwpddn"}],["path",{d:"M16 3v5.46",key:"d7ew98"}],["path",{d:"M21 9.118V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h5.75",key:"137t5x"}],["path",{d:"M22 17.5c0 2.499-1.75 3.749-3.83 4.474a.5.5 0 0 1-.335-.005c-2.085-.72-3.835-1.97-3.835-4.47V14a.5.5 0 0 1 .5-.499c1 0 2.25-.6 3.12-1.36a.6.6 0 0 1 .76-.001c.875.765 2.12 1.36 3.12 1.36a.5.5 0 0 1 .5.5z",key:"16j3tf"}],["path",{d:"M3 15h7",key:"1qldh6"}],["path",{d:"M3 9h12.142",key:"1yjd6m"}],["path",{d:"M8 15v6",key:"1stoo3"}],["path",{d:"M8 3v6",key:"vlvjmk"}]]);const vu=c("brick-wall",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 9v6",key:"199k2o"}],["path",{d:"M16 15v6",key:"8rj2es"}],["path",{d:"M16 3v6",key:"1j6rpj"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M8 15v6",key:"1stoo3"}],["path",{d:"M8 3v6",key:"vlvjmk"}]]);const _u=c("briefcase-business",[["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2",key:"1ksdt3"}],["path",{d:"M22 13a18.15 18.15 0 0 1-20 0",key:"12hx5q"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2",key:"i6l2r4"}]]);const bu=c("briefcase-conveyor-belt",[["path",{d:"M10 20v2",key:"1n8e1g"}],["path",{d:"M14 20v2",key:"1lq872"}],["path",{d:"M18 20v2",key:"10uadw"}],["path",{d:"M21 20H3",key:"kdqkdp"}],["path",{d:"M6 20v2",key:"a9bc87"}],["path",{d:"M8 16V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v12",key:"17n9tx"}],["rect",{x:"4",y:"6",width:"16",height:"10",rx:"2",key:"1097i5"}]]);const Mu=c("briefcase-medical",[["path",{d:"M12 11v4",key:"a6ujw6"}],["path",{d:"M14 13h-4",key:"1pl8zg"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2",key:"1ksdt3"}],["path",{d:"M18 6v14",key:"1mu4gy"}],["path",{d:"M6 6v14",key:"1s15cj"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2",key:"i6l2r4"}]]);const wu=c("briefcase",[["path",{d:"M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16",key:"jecpp"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2",key:"i6l2r4"}]]);const xu=c("bring-to-front",[["rect",{x:"8",y:"8",width:"8",height:"8",rx:"2",key:"yj20xf"}],["path",{d:"M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2",key:"1ltk23"}],["path",{d:"M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2",key:"1q24h9"}]]);const Nu=c("brush",[["path",{d:"m11 10 3 3",key:"fzmg1i"}],["path",{d:"M6.5 21A3.5 3.5 0 1 0 3 17.5a2.62 2.62 0 0 1-.708 1.792A1 1 0 0 0 3 21z",key:"p4q2r7"}],["path",{d:"M9.969 17.031 21.378 5.624a1 1 0 0 0-3.002-3.002L6.967 14.031",key:"wy6l02"}]]);const Cu=c("brush-cleaning",[["path",{d:"m16 22-1-4",key:"1ow2iv"}],["path",{d:"M19 14a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2h-3a1 1 0 0 1-1-1V4a2 2 0 0 0-4 0v5a1 1 0 0 1-1 1H6a2 2 0 0 0-2 2v1a1 1 0 0 0 1 1",key:"11gii7"}],["path",{d:"M19 14H5l-1.973 6.767A1 1 0 0 0 4 22h16a1 1 0 0 0 .973-1.233z",key:"bju7h4"}],["path",{d:"m8 22 1-4",key:"s3unb"}]]);const $u=c("bubbles",[["path",{d:"M7.001 15.085A1.5 1.5 0 0 1 9 16.5",key:"y44lvh"}],["circle",{cx:"18.5",cy:"8.5",r:"3.5",key:"1wadoa"}],["circle",{cx:"7.5",cy:"16.5",r:"5.5",key:"6mdt3g"}],["circle",{cx:"7.5",cy:"4.5",r:"2.5",key:"637s54"}]]);const Su=c("bug-off",[["path",{d:"M12 20v-8",key:"i3yub9"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2",key:"vl8zik"}],["path",{d:"M18 12.34V11a4 4 0 0 0-4-4h-1.3",key:"sz915m"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97",key:"5cxbf6"}],["path",{d:"M22 13h-3.34",key:"1y15gv"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4",key:"1fjd4g"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13",key:"1njkjs"}]]);const Lu=c("bug-play",[["path",{d:"M10 19.655A6 6 0 0 1 6 14v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 3.97",key:"1gnv52"}],["path",{d:"M14 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z",key:"1weqy9"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97",key:"5cxbf6"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4",key:"1fjd4g"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97",key:"1d7oge"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"m8 2 1.88 1.88",key:"fmnt4t"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13",key:"1vgav8"}]]);const Iu=c("bug",[["path",{d:"M12 20v-9",key:"1qisl0"}],["path",{d:"M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z",key:"uouzyp"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M21 21a4 4 0 0 0-3.81-4",key:"1b0z45"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97",key:"5cxbf6"}],["path",{d:"M22 13h-4",key:"1jl80f"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4",key:"1fjd4g"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97",key:"1d7oge"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"m8 2 1.88 1.88",key:"fmnt4t"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13",key:"1vgav8"}]]);const Au=c("building-2",[["path",{d:"M10 12h4",key:"a56b0p"}],["path",{d:"M10 8h4",key:"1sr2af"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3",key:"1rgiei"}],["path",{d:"M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2",key:"secmi2"}],["path",{d:"M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16",key:"16ra0t"}]]);const Pu=c("building",[["path",{d:"M12 10h.01",key:"1nrarc"}],["path",{d:"M12 14h.01",key:"1etili"}],["path",{d:"M12 6h.01",key:"1vi96p"}],["path",{d:"M16 10h.01",key:"1m94wz"}],["path",{d:"M16 14h.01",key:"1gbofw"}],["path",{d:"M16 6h.01",key:"1x0f13"}],["path",{d:"M8 10h.01",key:"19clt8"}],["path",{d:"M8 14h.01",key:"6423bh"}],["path",{d:"M8 6h.01",key:"1dz90k"}],["path",{d:"M9 22v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3",key:"cabbwy"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",key:"1uxh74"}]]);const Tu=c("bus-front",[["path",{d:"M4 6 2 7",key:"1mqr15"}],["path",{d:"M10 6h4",key:"1itunk"}],["path",{d:"m22 7-2-1",key:"1umjhc"}],["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2",key:"1wxw4b"}],["path",{d:"M4 11h16",key:"mpoxn0"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M16 15h.01",key:"rnfrdf"}],["path",{d:"M6 19v2",key:"1loha6"}],["path",{d:"M18 21v-2",key:"sqyl04"}]]);const Du=c("bus",[["path",{d:"M8 6v6",key:"18i7km"}],["path",{d:"M15 6v6",key:"1sg6z9"}],["path",{d:"M2 12h19.6",key:"de5uta"}],["path",{d:"M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3",key:"1wwztk"}],["circle",{cx:"7",cy:"18",r:"2",key:"19iecd"}],["path",{d:"M9 18h5",key:"lrx6i"}],["circle",{cx:"16",cy:"18",r:"2",key:"1v4tcr"}]]);const Eu=c("cable-car",[["path",{d:"M10 3h.01",key:"lbucoy"}],["path",{d:"M14 2h.01",key:"1k8aa1"}],["path",{d:"m2 9 20-5",key:"1kz0j5"}],["path",{d:"M12 12V6.5",key:"1vbrij"}],["rect",{width:"16",height:"10",x:"4",y:"12",rx:"3",key:"if91er"}],["path",{d:"M9 12v5",key:"3anwtq"}],["path",{d:"M15 12v5",key:"5xh3zn"}],["path",{d:"M4 17h16",key:"g4d7ey"}]]);const zu=c("cable",[["path",{d:"M17 19a1 1 0 0 1-1-1v-2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a1 1 0 0 1-1 1z",key:"trhst0"}],["path",{d:"M17 21v-2",key:"ds4u3f"}],["path",{d:"M19 14V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V10",key:"1mo9zo"}],["path",{d:"M21 21v-2",key:"eo0ou"}],["path",{d:"M3 5V3",key:"1k5hjh"}],["path",{d:"M4 10a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2z",key:"1dd30t"}],["path",{d:"M7 5V3",key:"1t1388"}]]);const Ou=c("cake-slice",[["path",{d:"M16 13H3",key:"1wpj08"}],["path",{d:"M16 17H3",key:"3lvfcd"}],["path",{d:"m7.2 7.9-3.388 2.5A2 2 0 0 0 3 12.01V20a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-8.654c0-2-2.44-6.026-6.44-8.026a1 1 0 0 0-1.082.057L10.4 5.6",key:"1gmhf7"}],["circle",{cx:"9",cy:"7",r:"2",key:"1305pl"}]]);const qu=c("cake",[["path",{d:"M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8",key:"1w3rig"}],["path",{d:"M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1",key:"n2jgmb"}],["path",{d:"M2 21h20",key:"1nyx9w"}],["path",{d:"M7 8v3",key:"1qtyvj"}],["path",{d:"M12 8v3",key:"hwp4zt"}],["path",{d:"M17 8v3",key:"1i6e5u"}],["path",{d:"M7 4h.01",key:"1bh4kh"}],["path",{d:"M12 4h.01",key:"1ujb9j"}],["path",{d:"M17 4h.01",key:"1upcoc"}]]);const ju=c("calculator",[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["line",{x1:"8",x2:"16",y1:"6",y2:"6",key:"x4nwl0"}],["line",{x1:"16",x2:"16",y1:"14",y2:"18",key:"wjye3r"}],["path",{d:"M16 10h.01",key:"1m94wz"}],["path",{d:"M12 10h.01",key:"1nrarc"}],["path",{d:"M8 10h.01",key:"19clt8"}],["path",{d:"M12 14h.01",key:"1etili"}],["path",{d:"M8 14h.01",key:"6423bh"}],["path",{d:"M12 18h.01",key:"mhygvu"}],["path",{d:"M8 18h.01",key:"lrp35t"}]]);const Hu=c("calendar-1",[["path",{d:"M11 14h1v4",key:"fy54vd"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",key:"12vinp"}]]);const Vu=c("calendar-arrow-down",[["path",{d:"m14 18 4 4 4-4",key:"1waygx"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M18 14v8",key:"irew45"}],["path",{d:"M21 11.354V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.343",key:"bse4f3"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]]);const Fu=c("calendar-arrow-up",[["path",{d:"m14 18 4-4 4 4",key:"ftkppy"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M18 22v-8",key:"su0gjh"}],["path",{d:"M21 11.343V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9",key:"1exg90"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]]);const Bu=c("calendar-check-2",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8",key:"bce9hv"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"m16 20 2 2 4-4",key:"13tcca"}]]);const Wu=c("calendar-clock",[["path",{d:"M16 14v2.2l1.6 1",key:"fo4ql5"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5",key:"1osxxc"}],["path",{d:"M3 10h5",key:"r794hk"}],["path",{d:"M8 2v4",key:"1cmpym"}],["circle",{cx:"16",cy:"16",r:"6",key:"qoo3c4"}]]);const Uu=c("calendar-check",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"m9 16 2 2 4-4",key:"19s6y9"}]]);const Ru=c("calendar-cog",[["path",{d:"m15.228 16.852-.923-.383",key:"npixar"}],["path",{d:"m15.228 19.148-.923.383",key:"51cr3n"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"m16.47 14.305.382.923",key:"obybxd"}],["path",{d:"m16.852 20.772-.383.924",key:"dpfhf9"}],["path",{d:"m19.148 15.228.383-.923",key:"1reyyz"}],["path",{d:"m19.53 21.696-.382-.924",key:"1goivc"}],["path",{d:"m20.772 16.852.924-.383",key:"htqkph"}],["path",{d:"m20.772 19.148.924.383",key:"9w9pjp"}],["path",{d:"M21 10.592V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6",key:"1pvbig"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]]);const Gu=c("calendar-days",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 14h.01",key:"6423bh"}],["path",{d:"M12 14h.01",key:"1etili"}],["path",{d:"M16 14h.01",key:"1gbofw"}],["path",{d:"M8 18h.01",key:"lrp35t"}],["path",{d:"M12 18h.01",key:"mhygvu"}],["path",{d:"M16 18h.01",key:"kzsmim"}]]);const Ku=c("calendar-fold",[["path",{d:"M3 20a2 2 0 0 0 2 2h10a2.4 2.4 0 0 0 1.706-.706l3.588-3.588A2.4 2.4 0 0 0 21 16V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z",key:"r586nh"}],["path",{d:"M15 22v-5a1 1 0 0 1 1-1h5",key:"xl3app"}],["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h18",key:"8toen8"}]]);const Yu=c("calendar-heart",[["path",{d:"M12.127 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.125",key:"vxdnp4"}],["path",{d:"M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z",key:"15cy7q"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]]);const Xu=c("calendar-minus-2",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M10 16h4",key:"17e571"}]]);const Zu=c("calendar-minus",[["path",{d:"M16 19h6",key:"xwg31i"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 15V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5",key:"1scpom"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]]);const Qu=c("calendar-off",[["path",{d:"M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18",key:"16swn3"}],["path",{d:"M21 15.5V6a2 2 0 0 0-2-2H9.5",key:"yhw86o"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h7",key:"1wap6i"}],["path",{d:"M21 10h-5.5",key:"quycpq"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const Ju=c("calendar-plus-2",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M10 16h4",key:"17e571"}],["path",{d:"M12 14v4",key:"1thi36"}]]);const eh=c("calendar-plus",[["path",{d:"M16 19h6",key:"xwg31i"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M19 16v6",key:"tddt3s"}],["path",{d:"M21 12.598V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5",key:"1glfrc"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]]);const th=c("calendar-range",[["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M17 14h-6",key:"bkmgh3"}],["path",{d:"M13 18H7",key:"bb0bb7"}],["path",{d:"M7 14h.01",key:"1qa3f1"}],["path",{d:"M17 18h.01",key:"1bdyru"}]]);const oh=c("calendar-search",[["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25",key:"1jrsq6"}],["path",{d:"m22 22-1.875-1.875",key:"13zax7"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]]);const nh=c("calendar-x-2",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8",key:"3spt84"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"m17 22 5-5",key:"1k6ppv"}],["path",{d:"m17 17 5 5",key:"p7ous7"}]]);const ah=c("calendar-sync",[["path",{d:"M11 10v4h4",key:"172dkj"}],["path",{d:"m11 14 1.535-1.605a5 5 0 0 1 8 1.5",key:"vu0qm5"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"m21 18-1.535 1.605a5 5 0 0 1-8-1.5",key:"1qgeyt"}],["path",{d:"M21 22v-4h-4",key:"hrummi"}],["path",{d:"M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3",key:"mctw84"}],["path",{d:"M3 10h4",key:"1el30a"}],["path",{d:"M8 2v4",key:"1cmpym"}]]);const rh=c("calendar-x",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"m14 14-4 4",key:"rymu2i"}],["path",{d:"m10 14 4 4",key:"3sz06r"}]]);const Fs=c("calendar",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}]]);const ih=c("calendars",[["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M15.726 21.01A2 2 0 0 1 14 22H4a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2",key:"j6srht"}],["path",{d:"M18 2v2",key:"1kh14s"}],["path",{d:"M2 13h2",key:"13gyu8"}],["path",{d:"M8 8h14",key:"12jxz2"}],["rect",{x:"8",y:"3",width:"14",height:"14",rx:"2",key:"nsru6w"}]]);const ch=c("camera-off",[["path",{d:"M14.564 14.558a3 3 0 1 1-4.122-4.121",key:"1rnrzw"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 .819-.175",key:"1x3arw"}],["path",{d:"M9.695 4.024A2 2 0 0 1 10.004 4h3.993a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v7.344",key:"1i84u0"}]]);const sh=c("camera",[["path",{d:"M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z",key:"18u6gg"}],["circle",{cx:"12",cy:"13",r:"3",key:"1vg3eu"}]]);const dh=c("candy-off",[["path",{d:"M10 10v7.9",key:"m8g9tt"}],["path",{d:"M11.802 6.145a5 5 0 0 1 6.053 6.053",key:"dn87i3"}],["path",{d:"M14 6.1v2.243",key:"1kzysn"}],["path",{d:"m15.5 15.571-.964.964a5 5 0 0 1-7.071 0 5 5 0 0 1 0-7.07l.964-.965",key:"3sxy18"}],["path",{d:"M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4",key:"gpb6xx"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4",key:"qexcha"}]]);const lh=c("candy-cane",[["path",{d:"M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6 2 2 0 1 1-3.464-2 2 2 0 1 0-3.464-2Z",key:"isaq8g"}],["path",{d:"M17.75 7 15 2.1",key:"12x7e8"}],["path",{d:"M10.9 4.8 13 9",key:"100a87"}],["path",{d:"m7.9 9.7 2 4.4",key:"ntfhaj"}],["path",{d:"M4.9 14.7 7 18.9",key:"1x43jy"}]]);const uh=c("candy",[["path",{d:"M10 7v10.9",key:"1gynux"}],["path",{d:"M14 6.1V17",key:"116kdf"}],["path",{d:"M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4",key:"gpb6xx"}],["path",{d:"M16.536 7.465a5 5 0 0 0-7.072 0l-2 2a5 5 0 0 0 0 7.07 5 5 0 0 0 7.072 0l2-2a5 5 0 0 0 0-7.07",key:"1tsln4"}],["path",{d:"M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4",key:"qexcha"}]]);const hh=c("cannabis-off",[["path",{d:"M12 22v-4c1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5",key:"1bqfb7"}],["path",{d:"M13.988 8.327C13.902 6.054 13.365 3.82 12 2a9.3 9.3 0 0 0-1.445 2.9",key:"1p520n"}],["path",{d:"M17.375 11.725C18.882 10.53 21 7.841 21 6c-2.324 0-5.08 1.296-6.662 2.684",key:"q2itvb"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M21.024 15.378A15 15 0 0 0 22 15c-.426-1.279-2.67-2.557-4.25-2.907",key:"j9amvs"}],["path",{d:"M6.995 6.992C5.714 6.4 4.29 6 3 6c0 2 2.5 5 4 6-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3",key:"8gmd5g"}]]);const ph=c("cannabis",[["path",{d:"M12 22v-4",key:"1utk9m"}],["path",{d:"M7 12c-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3 1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5 0 0 2.5.5 6-1-.5-1.5-3.5-3-5-3 1.5-1 4-4 4-6-2.5 0-5.5 1.5-7 3 0-2.5-.5-5-2-7-1.5 2-2 4.5-2 7-1.5-1.5-4.5-3-7-3 0 2 2.5 5 4 6",key:"1mezod"}]]);const yh=c("captions-off",[["path",{d:"M10.5 5H19a2 2 0 0 1 2 2v8.5",key:"jqtk4d"}],["path",{d:"M17 11h-.5",key:"1961ue"}],["path",{d:"M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2",key:"1keqsi"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M7 11h4",key:"1o1z6v"}],["path",{d:"M7 15h2.5",key:"1ina1g"}]]);const qn=c("captions",[["rect",{width:"18",height:"14",x:"3",y:"5",rx:"2",ry:"2",key:"12ruh7"}],["path",{d:"M7 15h4M15 15h2M7 11h2M13 11h4",key:"1ueiar"}]]);const fh=c("car-front",[["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8",key:"1imjwt"}],["path",{d:"M7 14h.01",key:"1qa3f1"}],["path",{d:"M17 14h.01",key:"7oqj8z"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2",key:"a7itu8"}],["path",{d:"M5 18v2",key:"ppbyun"}],["path",{d:"M19 18v2",key:"gy7782"}]]);const mh=c("car",[["path",{d:"M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2",key:"5owen"}],["circle",{cx:"7",cy:"17",r:"2",key:"u2ysq9"}],["path",{d:"M9 17h6",key:"r8uit2"}],["circle",{cx:"17",cy:"17",r:"2",key:"axvx0g"}]]);const kh=c("car-taxi-front",[["path",{d:"M10 2h4",key:"n1abiw"}],["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8",key:"1imjwt"}],["path",{d:"M7 14h.01",key:"1qa3f1"}],["path",{d:"M17 14h.01",key:"7oqj8z"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2",key:"a7itu8"}],["path",{d:"M5 18v2",key:"ppbyun"}],["path",{d:"M19 18v2",key:"gy7782"}]]);const gh=c("card-sim",[["path",{d:"M12 14v4",key:"1thi36"}],["path",{d:"M14.172 2a2 2 0 0 1 1.414.586l3.828 3.828A2 2 0 0 1 20 7.828V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z",key:"1o66bk"}],["path",{d:"M8 14h8",key:"1fgep2"}],["rect",{x:"8",y:"10",width:"8",height:"8",rx:"1",key:"1aonk6"}]]);const vh=c("caravan",[["path",{d:"M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2",key:"19jm3t"}],["path",{d:"M2 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2",key:"13hakp"}],["path",{d:"M22 17v1a1 1 0 0 1-1 1H10v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9",key:"1crci8"}],["circle",{cx:"8",cy:"19",r:"2",key:"t8fc5s"}]]);const _h=c("carrot",[["path",{d:"M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46",key:"rfqxbe"}],["path",{d:"M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z",key:"6b25w4"}],["path",{d:"M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z",key:"fn65lo"}]]);const bh=c("case-lower",[["path",{d:"M10 9v7",key:"ylp826"}],["path",{d:"M14 6v10",key:"1jy4vg"}],["circle",{cx:"17.5",cy:"12.5",r:"3.5",key:"1a9481"}],["circle",{cx:"6.5",cy:"12.5",r:"3.5",key:"2jlv1r"}]]);const Mh=c("case-sensitive",[["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16",key:"d5nyq2"}],["path",{d:"M22 9v7",key:"pvm9v3"}],["path",{d:"M3.304 13h6.392",key:"1q3zxz"}],["circle",{cx:"18.5",cy:"12.5",r:"3.5",key:"z97x68"}]]);const wh=c("case-upper",[["path",{d:"M15 11h4.5a1 1 0 0 1 0 5h-4a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h3a1 1 0 0 1 0 5",key:"nxs35"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16",key:"d5nyq2"}],["path",{d:"M3.304 13h6.392",key:"1q3zxz"}]]);const xh=c("cassette-tape",[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["circle",{cx:"8",cy:"10",r:"2",key:"1xl4ub"}],["path",{d:"M8 12h8",key:"1wcyev"}],["circle",{cx:"16",cy:"10",r:"2",key:"r14t7q"}],["path",{d:"m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3",key:"l01ucn"}]]);const Nh=c("cast",[["path",{d:"M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6",key:"3zrzxg"}],["path",{d:"M2 12a9 9 0 0 1 8 8",key:"g6cvee"}],["path",{d:"M2 16a5 5 0 0 1 4 4",key:"1y1dii"}],["line",{x1:"2",x2:"2.01",y1:"20",y2:"20",key:"xu2jvo"}]]);const Ch=c("castle",[["path",{d:"M10 5V3",key:"1y54qe"}],["path",{d:"M14 5V3",key:"m6isi"}],["path",{d:"M15 21v-3a3 3 0 0 0-6 0v3",key:"lbp5hj"}],["path",{d:"M18 3v8",key:"2ollhf"}],["path",{d:"M18 5H6",key:"98imr9"}],["path",{d:"M22 11H2",key:"1lmjae"}],["path",{d:"M22 9v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9",key:"1rly83"}],["path",{d:"M6 3v8",key:"csox7g"}]]);const $h=c("cat",[["path",{d:"M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z",key:"x6xyqk"}],["path",{d:"M8 14v.5",key:"1nzgdb"}],["path",{d:"M16 14v.5",key:"1lajdz"}],["path",{d:"M11.25 16.25h1.5L12 17l-.75-.75Z",key:"12kq1m"}]]);const Sh=c("cctv",[["path",{d:"M16.75 12h3.632a1 1 0 0 1 .894 1.447l-2.034 4.069a1 1 0 0 1-1.708.134l-2.124-2.97",key:"ir91b5"}],["path",{d:"M17.106 9.053a1 1 0 0 1 .447 1.341l-3.106 6.211a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3z",key:"jlp8i1"}],["path",{d:"M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15",key:"19bib8"}],["path",{d:"M2 21v-4",key:"l40lih"}],["path",{d:"M7 9h.01",key:"19b3jx"}]]);const jn=c("chart-area",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 11.207a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.292 3.292a.5.5 0 0 0 .708 0l4.292-4.292a.5.5 0 0 1 .854.353V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z",key:"q0gr47"}]]);const Hn=c("chart-bar-big",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1",key:"1iip1u"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1",key:"1anskk"}]]);const Lh=c("chart-bar-decreasing",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 11h8",key:"1feolt"}],["path",{d:"M7 16h3",key:"ur6vzw"}],["path",{d:"M7 6h12",key:"sz5b0d"}]]);const Ih=c("chart-bar-increasing",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 11h8",key:"1feolt"}],["path",{d:"M7 16h12",key:"wsnu98"}],["path",{d:"M7 6h3",key:"w9rmul"}]]);const Ah=c("chart-bar-stacked",[["path",{d:"M11 13v4",key:"vyy2rb"}],["path",{d:"M15 5v4",key:"1gx88a"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1",key:"1iip1u"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1",key:"1anskk"}]]);const Vn=c("chart-bar",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 16h8",key:"srdodz"}],["path",{d:"M7 11h12",key:"127s9w"}],["path",{d:"M7 6h3",key:"w9rmul"}]]);const Fn=c("chart-candlestick",[["path",{d:"M9 5v4",key:"14uxtq"}],["rect",{width:"4",height:"6",x:"7",y:"9",rx:"1",key:"f4fvz0"}],["path",{d:"M9 15v2",key:"r5rk32"}],["path",{d:"M17 3v2",key:"1l2re6"}],["rect",{width:"4",height:"8",x:"15",y:"5",rx:"1",key:"z38je5"}],["path",{d:"M17 13v3",key:"5l0wba"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}]]);const Bn=c("chart-column-big",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1",key:"q8uenq"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1",key:"sr5ea"}]]);const Ph=c("chart-column-decreasing",[["path",{d:"M13 17V9",key:"1fwyjl"}],["path",{d:"M18 17v-3",key:"1sqioe"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M8 17V5",key:"1wzmnc"}]]);const Wn=c("chart-column-increasing",[["path",{d:"M13 17V9",key:"1fwyjl"}],["path",{d:"M18 17V5",key:"sfb6ij"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M8 17v-3",key:"17ska0"}]]);const Th=c("chart-column-stacked",[["path",{d:"M11 13H7",key:"t0o9gq"}],["path",{d:"M19 9h-4",key:"rera1j"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1",key:"q8uenq"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1",key:"sr5ea"}]]);const Un=c("chart-column",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M18 17V9",key:"2bz60n"}],["path",{d:"M13 17V5",key:"1frdt8"}],["path",{d:"M8 17v-3",key:"17ska0"}]]);const Dh=c("chart-gantt",[["path",{d:"M10 6h8",key:"zvc2xc"}],["path",{d:"M12 16h6",key:"yi5mkt"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M8 11h7",key:"wz2hg0"}]]);const Rn=c("chart-line",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"m19 9-5 5-4-4-3 3",key:"2osh9i"}]]);const Eh=c("chart-network",[["path",{d:"m13.11 7.664 1.78 2.672",key:"go2gg9"}],["path",{d:"m14.162 12.788-3.324 1.424",key:"11x848"}],["path",{d:"m20 4-6.06 1.515",key:"1wxxh7"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["circle",{cx:"12",cy:"6",r:"2",key:"1jj5th"}],["circle",{cx:"16",cy:"12",r:"2",key:"4ma0v8"}],["circle",{cx:"9",cy:"15",r:"2",key:"lf2ghp"}]]);const zh=c("chart-no-axes-column-decreasing",[["path",{d:"M5 21V3",key:"clc1r8"}],["path",{d:"M12 21V9",key:"uvy0l4"}],["path",{d:"M19 21v-6",key:"tkawy9"}]]);const Gn=c("chart-no-axes-column-increasing",[["path",{d:"M5 21v-6",key:"1hz6c0"}],["path",{d:"M12 21V9",key:"uvy0l4"}],["path",{d:"M19 21V3",key:"11j9sm"}]]);const Kn=c("chart-no-axes-column",[["path",{d:"M5 21v-6",key:"1hz6c0"}],["path",{d:"M12 21V3",key:"1lcnhd"}],["path",{d:"M19 21V9",key:"unv183"}]]);const Oh=c("chart-no-axes-combined",[["path",{d:"M12 16v5",key:"zza2cw"}],["path",{d:"M16 14v7",key:"1g90b9"}],["path",{d:"M20 10v11",key:"1iqoj0"}],["path",{d:"m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15",key:"1fw8x9"}],["path",{d:"M4 18v3",key:"1yp0dc"}],["path",{d:"M8 14v7",key:"n3cwzv"}]]);const Yn=c("chart-no-axes-gantt",[["path",{d:"M6 5h12",key:"fvfigv"}],["path",{d:"M4 12h10",key:"oujl3d"}],["path",{d:"M12 19h8",key:"baeox8"}]]);const Xn=c("chart-pie",[["path",{d:"M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z",key:"pzmjnu"}],["path",{d:"M21.21 15.89A10 10 0 1 1 8 2.83",key:"k2fpak"}]]);const Zn=c("chart-scatter",[["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}],["circle",{cx:"18.5",cy:"5.5",r:".5",fill:"currentColor",key:"lysivs"}],["circle",{cx:"11.5",cy:"11.5",r:".5",fill:"currentColor",key:"byv1b8"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor",key:"nkw3mc"}],["circle",{cx:"17.5",cy:"14.5",r:".5",fill:"currentColor",key:"1gjh6j"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}]]);const qh=c("chart-spline",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7",key:"lw07rv"}]]);const jh=c("check-check",[["path",{d:"M18 6 7 17l-5-5",key:"116fxf"}],["path",{d:"m22 10-7.5 7.5L13 16",key:"ke71qq"}]]);const Hh=c("check-line",[["path",{d:"M20 4L9 15",key:"1qkx8z"}],["path",{d:"M21 19L3 19",key:"100sma"}],["path",{d:"M9 15L4 10",key:"9zxff7"}]]);const po=c("check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]);const Vh=c("chef-hat",[["path",{d:"M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z",key:"1qvrer"}],["path",{d:"M6 17h12",key:"1jwigz"}]]);const Fh=c("cherry",[["path",{d:"M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z",key:"cvxqlc"}],["path",{d:"M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z",key:"1ostrc"}],["path",{d:"M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12",key:"hqx58h"}],["path",{d:"M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z",key:"eykp1o"}]]);const Bh=c("chess-bishop",[["path",{d:"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z",key:"b89hwq"}],["path",{d:"M15 18c1.5-.615 3-2.461 3-4.923C18 8.769 14.5 4.462 12 2 9.5 4.462 6 8.77 6 13.077 6 15.539 7.5 17.385 9 18",key:"8jdkhx"}],["path",{d:"m16 7-2.5 2.5",key:"1jq90w"}],["path",{d:"M9 2h6",key:"1jrp98"}]]);const Wh=c("chess-king",[["path",{d:"M4 20a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1z",key:"mqzwx6"}],["path",{d:"m6.7 18-1-1C4.35 15.682 3 14.09 3 12a5 5 0 0 1 4.95-5c1.584 0 2.7.455 4.05 1.818C13.35 7.455 14.466 7 16.05 7A5 5 0 0 1 21 12c0 2.082-1.359 3.673-2.7 5l-1 1",key:"1gdt1g"}],["path",{d:"M10 4h4",key:"1xpv9s"}],["path",{d:"M12 2v6.818",key:"b17a49"}]]);const Uh=c("chess-knight",[["path",{d:"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z",key:"b89hwq"}],["path",{d:"M16.5 18c1-2 2.5-5 2.5-9a7 7 0 0 0-7-7H6.635a1 1 0 0 0-.768 1.64L7 5l-2.32 5.802a2 2 0 0 0 .95 2.526l2.87 1.456",key:"axbnlq"}],["path",{d:"m15 5 1.425-1.425",key:"15xz8w"}],["path",{d:"m17 8 1.53-1.53",key:"15zhqh"}],["path",{d:"M9.713 12.185 7 18",key:"1ocm0l"}]]);const Rh=c("chess-pawn",[["path",{d:"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z",key:"b89hwq"}],["path",{d:"m14.5 10 1.5 8",key:"cim3qy"}],["path",{d:"M7 10h10",key:"1101jm"}],["path",{d:"m8 18 1.5-8",key:"ja3yjd"}],["circle",{cx:"12",cy:"6",r:"4",key:"1frrej"}]]);const Gh=c("chess-queen",[["path",{d:"M4 20a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1z",key:"mqzwx6"}],["path",{d:"m12.474 5.943 1.567 5.34a1 1 0 0 0 1.75.328l2.616-3.402",key:"1js4gl"}],["path",{d:"m20 9-3 9",key:"r75r3f"}],["path",{d:"m5.594 8.209 2.615 3.403a1 1 0 0 0 1.75-.329l1.567-5.34",key:"1joj19"}],["path",{d:"M7 18 4 9",key:"1mfzj8"}],["circle",{cx:"12",cy:"4",r:"2",key:"muu5ef"}],["circle",{cx:"20",cy:"7",r:"2",key:"9w7p1x"}],["circle",{cx:"4",cy:"7",r:"2",key:"1d9wy8"}]]);const Kh=c("chess-rook",[["path",{d:"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z",key:"b89hwq"}],["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M14 2v2",key:"6buw04"}],["path",{d:"m17 18-1-9",key:"10nd7q"}],["path",{d:"M6 2v5a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2",key:"uxf4yx"}],["path",{d:"M6 4h12",key:"1x2ag7"}],["path",{d:"m7 18 1-9",key:"1si9vq"}]]);const Ht=c("chevron-down",[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]]);const Yh=c("chevron-first",[["path",{d:"m17 18-6-6 6-6",key:"1yerx2"}],["path",{d:"M7 6v12",key:"1p53r6"}]]);const Xh=c("chevron-last",[["path",{d:"m7 18 6-6-6-6",key:"lwmzdw"}],["path",{d:"M17 6v12",key:"1o0aio"}]]);const Qn=c("chevron-left",[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]]);const Pt=c("chevron-right",[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]]);const Qc=c("chevron-up",[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]]);const Zh=c("chevrons-down-up",[["path",{d:"m7 20 5-5 5 5",key:"13a0gw"}],["path",{d:"m7 4 5 5 5-5",key:"1kwcof"}]]);const Qh=c("chevrons-down",[["path",{d:"m7 6 5 5 5-5",key:"1lc07p"}],["path",{d:"m7 13 5 5 5-5",key:"1d48rs"}]]);const Jh=c("chevrons-left-right-ellipsis",[["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 12h.01",key:"1l6xoz"}],["path",{d:"m17 7 5 5-5 5",key:"1xlxn0"}],["path",{d:"m7 7-5 5 5 5",key:"19njba"}],["path",{d:"M8 12h.01",key:"czm47f"}]]);const ep=c("chevrons-left-right",[["path",{d:"m9 7-5 5 5 5",key:"j5w590"}],["path",{d:"m15 7 5 5-5 5",key:"1bl6da"}]]);const Bs=c("chevrons-left",[["path",{d:"m11 17-5-5 5-5",key:"13zhaf"}],["path",{d:"m18 17-5-5 5-5",key:"h8a8et"}]]);const tp=c("chevrons-right-left",[["path",{d:"m20 17-5-5 5-5",key:"30x0n2"}],["path",{d:"m4 17 5-5-5-5",key:"16spf4"}]]);const Ws=c("chevrons-right",[["path",{d:"m6 17 5-5-5-5",key:"xnjwq"}],["path",{d:"m13 17 5-5-5-5",key:"17xmmf"}]]);const Jc=c("chevrons-up-down",[["path",{d:"m7 15 5 5 5-5",key:"1hf1tw"}],["path",{d:"m7 9 5-5 5 5",key:"sgt6xg"}]]);const op=c("chevrons-up",[["path",{d:"m17 11-5-5-5 5",key:"e8nh98"}],["path",{d:"m17 18-5-5-5 5",key:"2avn1x"}]]);const Jn=c("chromium",[["path",{d:"M10.88 21.94 15.46 14",key:"xkve6t"}],["path",{d:"M21.17 8H12",key:"19dcdn"}],["path",{d:"M3.95 6.06 8.54 14",key:"g8jz9m"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]]);const np=c("church",[["path",{d:"M10 9h4",key:"u4k05v"}],["path",{d:"M12 7v5",key:"ma6bk"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3",key:"1rgiei"}],["path",{d:"m18 9 3.52 2.147a1 1 0 0 1 .48.854V19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-6.999a1 1 0 0 1 .48-.854L6 9",key:"flvdwo"}],["path",{d:"M6 21V7a1 1 0 0 1 .376-.782l5-3.999a1 1 0 0 1 1.249.001l5 4A1 1 0 0 1 18 7v14",key:"a5i0n2"}]]);const ap=c("cigarette-off",[["path",{d:"M12 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13",key:"1gdiyg"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5",key:"1il607"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.866",key:"166zjj"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5",key:"1gah44"}],["path",{d:"M7 12v4",key:"jqww69"}]]);const rp=c("cigarette",[["path",{d:"M17 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14",key:"1mb5g1"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5",key:"1il607"}],["path",{d:"M21 16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1",key:"1yl5r7"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5",key:"1gah44"}],["path",{d:"M7 12v4",key:"jqww69"}]]);const Zo=c("circle-alert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);const ea=c("circle-arrow-down",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"m8 12 4 4 4-4",key:"k98ssh"}]]);const ta=c("circle-arrow-left",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m12 8-4 4 4 4",key:"15vm53"}],["path",{d:"M16 12H8",key:"1fr5h0"}]]);const oa=c("circle-arrow-out-down-left",[["path",{d:"M2 12a10 10 0 1 1 10 10",key:"1yn6ov"}],["path",{d:"m2 22 10-10",key:"28ilpk"}],["path",{d:"M8 22H2v-6",key:"sulq54"}]]);const na=c("circle-arrow-out-down-right",[["path",{d:"M12 22a10 10 0 1 1 10-10",key:"130bv5"}],["path",{d:"M22 22 12 12",key:"131aw7"}],["path",{d:"M22 16v6h-6",key:"1gvm70"}]]);const aa=c("circle-arrow-out-up-left",[["path",{d:"M2 8V2h6",key:"hiwtdz"}],["path",{d:"m2 2 10 10",key:"1oh8rs"}],["path",{d:"M12 2A10 10 0 1 1 2 12",key:"rrk4fa"}]]);const ra=c("circle-arrow-out-up-right",[["path",{d:"M22 12A10 10 0 1 1 12 2",key:"1fm58d"}],["path",{d:"M22 2 12 12",key:"yg2myt"}],["path",{d:"M16 2h6v6",key:"zan5cs"}]]);const ia=c("circle-arrow-right",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m12 16 4-4-4-4",key:"1i9zcv"}],["path",{d:"M8 12h8",key:"1wcyev"}]]);const ca=c("circle-arrow-up",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m16 12-4-4-4 4",key:"177agl"}],["path",{d:"M12 16V8",key:"1sbj14"}]]);const sa=c("circle-check-big",[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335",key:"yps3ct"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]]);const jo=c("circle-check",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);const da=c("circle-chevron-down",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m16 10-4 4-4-4",key:"894hmk"}]]);const la=c("circle-chevron-left",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m14 16-4-4 4-4",key:"ojs7w8"}]]);const ua=c("circle-chevron-right",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m10 8 4 4-4 4",key:"1wy4r4"}]]);const ha=c("circle-chevron-up",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m8 14 4-4 4 4",key:"fy2ptz"}]]);const ip=c("circle-dashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]);const cp=c("circle-dollar-sign",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8",key:"1h4pet"}],["path",{d:"M12 18V6",key:"zqpxq5"}]]);const pa=c("circle-divide",[["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16",key:"aqc6ln"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8",key:"1mkcni"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const sp=c("circle-dot-dashed",[["path",{d:"M10.1 2.18a9.93 9.93 0 0 1 3.8 0",key:"1qdqn0"}],["path",{d:"M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7",key:"1bq7p6"}],["path",{d:"M21.82 10.1a9.93 9.93 0 0 1 0 3.8",key:"1rlaqf"}],["path",{d:"M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69",key:"1xk03u"}],["path",{d:"M13.9 21.82a9.94 9.94 0 0 1-3.8 0",key:"l7re25"}],["path",{d:"M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7",key:"1v18p6"}],["path",{d:"M2.18 13.9a9.93 9.93 0 0 1 0-3.8",key:"xdo6bj"}],["path",{d:"M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69",key:"1jjmaz"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]]);const dp=c("circle-dot",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]]);const lp=c("circle-ellipsis",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M17 12h.01",key:"1m0b6t"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M7 12h.01",key:"eqddd0"}]]);const up=c("circle-equal",[["path",{d:"M7 10h10",key:"1101jm"}],["path",{d:"M7 14h10",key:"1mhdw3"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const hp=c("circle-fading-arrow-up",[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75",key:"175t95"}],["path",{d:"m16 12-4-4-4 4",key:"177agl"}],["path",{d:"M12 16V8",key:"1sbj14"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3",key:"1vce0s"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4",key:"o3fkw4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857",key:"1szpfk"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38",key:"9yhvd4"}]]);const pp=c("circle-fading-plus",[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75",key:"175t95"}],["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"M16 12H8",key:"1fr5h0"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3",key:"1vce0s"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4",key:"o3fkw4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857",key:"1szpfk"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38",key:"9yhvd4"}]]);const ya=c("circle-gauge",[["path",{d:"M15.6 2.7a10 10 0 1 0 5.7 5.7",key:"1e0p6d"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"M13.4 10.6 19 5",key:"1kr7tw"}]]);const fa=c("circle-minus",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M8 12h8",key:"1wcyev"}]]);const yp=c("circle-off",[["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65",key:"1pfsoa"}],["path",{d:"M19.08 19.08A10 10 0 1 1 4.92 4.92",key:"1ablyi"}]]);const ma=c("circle-parking-off",[["path",{d:"M12.656 7H13a3 3 0 0 1 2.984 3.307",key:"1sjx87"}],["path",{d:"M13 13H9",key:"e2beee"}],["path",{d:"M19.071 19.071A1 1 0 0 1 4.93 4.93",key:"1kb595"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.357 2.687a10 10 0 0 1 12.956 12.956",key:"5bsfdx"}],["path",{d:"M9 17V9",key:"ojradj"}]]);const ka=c("circle-parking",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9",key:"1dfk2c"}]]);const ga=c("circle-pause",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9",key:"c1nkhi"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9",key:"h65svq"}]]);const va=c("circle-percent",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"M15 15h.01",key:"lqbp3k"}]]);const fp=c("circle-pile",[["circle",{cx:"12",cy:"19",r:"2",key:"13j0tp"}],["circle",{cx:"12",cy:"5",r:"2",key:"f1ur92"}],["circle",{cx:"16",cy:"12",r:"2",key:"4ma0v8"}],["circle",{cx:"20",cy:"19",r:"2",key:"1obnsp"}],["circle",{cx:"4",cy:"19",r:"2",key:"p3m9r0"}],["circle",{cx:"8",cy:"12",r:"2",key:"1nvbw3"}]]);const _a=c("circle-plus",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M12 8v8",key:"napkw2"}]]);const ba=c("circle-play",[["path",{d:"M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z",key:"kmsa83"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const mp=c("circle-pound-sterling",[["path",{d:"M10 16V9.5a1 1 0 0 1 5 0",key:"1i1are"}],["path",{d:"M8 12h4",key:"qz6y1c"}],["path",{d:"M8 16h7",key:"sbedsn"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Ma=c("circle-power",[["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005",key:"1pek45"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const yo=c("circle-question-mark",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);const wa=c("circle-slash-2",[["path",{d:"M22 2 2 22",key:"y4kqgn"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const kp=c("circle-slash",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9",key:"1dfufj"}]]);const gp=c("circle-star",[["path",{d:"M11.051 7.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.867l-1.156-1.152a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z",key:"285bvi"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const vp=c("circle-small",[["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}]]);const xa=c("circle-stop",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1",key:"1ssd4o"}]]);const Na=c("circle-user-round",[["path",{d:"M18 20a6 6 0 0 0-12 0",key:"1qehca"}],["circle",{cx:"12",cy:"10",r:"4",key:"1h16sb"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Ca=c("circle-user",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M7 20.662V19a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v1.662",key:"154egf"}]]);const $a=c("circle-x",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]]);const Qo=c("circle",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const _p=c("circuit-board",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M11 9h4a2 2 0 0 0 2-2V3",key:"1ve2rv"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"M7 21v-4a2 2 0 0 1 2-2h4",key:"1fwkro"}],["circle",{cx:"15",cy:"15",r:"2",key:"3i40o0"}]]);const bp=c("citrus",[["path",{d:"M21.66 17.67a1.08 1.08 0 0 1-.04 1.6A12 12 0 0 1 4.73 2.38a1.1 1.1 0 0 1 1.61-.04z",key:"4ite01"}],["path",{d:"M19.65 15.66A8 8 0 0 1 8.35 4.34",key:"1gxipu"}],["path",{d:"m14 10-5.5 5.5",key:"92pfem"}],["path",{d:"M14 17.85V10H6.15",key:"xqmtsk"}]]);const Mp=c("clapperboard",[["path",{d:"M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Z",key:"1tn4o7"}],["path",{d:"m6.2 5.3 3.1 3.9",key:"iuk76l"}],["path",{d:"m12.4 3.4 3.1 4",key:"6hsd6n"}],["path",{d:"M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z",key:"ltgou9"}]]);const wp=c("clipboard-check",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"m9 14 2 2 4-4",key:"df797q"}]]);const xp=c("clipboard-clock",[["path",{d:"M16 14v2.2l1.6 1",key:"fo4ql5"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v.832",key:"1ujtp2"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2",key:"qvpao1"}],["circle",{cx:"16",cy:"16",r:"6",key:"qoo3c4"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",key:"ublpy"}]]);const Np=c("clipboard-copy",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2",key:"4jdomd"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v4",key:"3hqy98"}],["path",{d:"M21 14H11",key:"1bme5i"}],["path",{d:"m15 10-4 4 4 4",key:"5dvupr"}]]);const Cp=c("clipboard-list",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M12 11h4",key:"1jrz19"}],["path",{d:"M12 16h4",key:"n85exb"}],["path",{d:"M8 11h.01",key:"1dfujw"}],["path",{d:"M8 16h.01",key:"18s6g9"}]]);const $p=c("clipboard-minus",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 14h6",key:"159ibu"}]]);const Sp=c("clipboard-paste",[["path",{d:"M11 14h10",key:"1w8e9d"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v1.344",key:"1e62lh"}],["path",{d:"m17 18 4-4-4-4",key:"z2g111"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 1.793-1.113",key:"bjbb7m"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",key:"ublpy"}]]);const Sa=c("clipboard-pen-line",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",key:"1oijnt"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.5",key:"1but9f"}],["path",{d:"M16 4h2a2 2 0 0 1 1.73 1",key:"1p8n7l"}],["path",{d:"M8 18h1",key:"13wk12"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"2t3380"}]]);const La=c("clipboard-pen",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",key:"1oijnt"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-5.5",key:"cereej"}],["path",{d:"M4 13.5V6a2 2 0 0 1 2-2h2",key:"5ua5vh"}],["path",{d:"M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1y4qbx"}]]);const Lp=c("clipboard-plus",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 14h6",key:"159ibu"}],["path",{d:"M12 17v-6",key:"1y8rbf"}]]);const Ip=c("clipboard-type",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 12v-1h6v1",key:"iehl6m"}],["path",{d:"M11 17h2",key:"12w5me"}],["path",{d:"M12 11v6",key:"1bwqyc"}]]);const Ap=c("clipboard-x",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"m15 11-6 6",key:"1toa9n"}],["path",{d:"m9 11 6 6",key:"wlibny"}]]);const Pp=c("clipboard",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}]]);const Tp=c("clock-1",[["path",{d:"M12 6v6l2-4",key:"miptyd"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Dp=c("clock-10",[["path",{d:"M12 6v6l-4-2",key:"cedpoo"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Ep=c("clock-11",[["path",{d:"M12 6v6l-2-4",key:"ns39ag"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const zp=c("clock-12",[["path",{d:"M12 6v6",key:"1ipuwl"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Op=c("clock-2",[["path",{d:"M12 6v6l4-2",key:"1r2kuh"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const qp=c("clock-3",[["path",{d:"M12 6v6h4",key:"135r8i"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const jp=c("clock-4",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Hp=c("clock-5",[["path",{d:"M12 6v6l2 4",key:"1287s9"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Vp=c("clock-6",[["path",{d:"M12 6v10",key:"wf7rdh"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Fp=c("clock-7",[["path",{d:"M12 6v6l-2 4",key:"1095bu"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Bp=c("clock-8",[["path",{d:"M12 6v6l-4 2",key:"imc3wl"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Wp=c("clock-9",[["path",{d:"M12 6v6H8",key:"u39vzm"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Up=c("clock-alert",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["path",{d:"M20 12v5",key:"12wsvk"}],["path",{d:"M20 21h.01",key:"1p6o6n"}],["path",{d:"M21.25 8.2A10 10 0 1 0 16 21.16",key:"17fp9f"}]]);const Rp=c("clock-arrow-down",[["path",{d:"M12 6v6l2 1",key:"19cm8n"}],["path",{d:"M12.337 21.994a10 10 0 1 1 9.588-8.767",key:"28moa"}],["path",{d:"m14 18 4 4 4-4",key:"1waygx"}],["path",{d:"M18 14v8",key:"irew45"}]]);const Gp=c("clock-arrow-up",[["path",{d:"M12 6v6l1.56.78",key:"14ed3g"}],["path",{d:"M13.227 21.925a10 10 0 1 1 8.767-9.588",key:"jwkls1"}],["path",{d:"m14 18 4-4 4 4",key:"ftkppy"}],["path",{d:"M18 22v-8",key:"su0gjh"}]]);const Kp=c("clock-check",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["path",{d:"M22 12a10 10 0 1 0-11 9.95",key:"17dhok"}],["path",{d:"m22 16-5.5 5.5L14 19",key:"1eibut"}]]);const Yp=c("clock-fading",[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75",key:"175t95"}],["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3",key:"1vce0s"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4",key:"o3fkw4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857",key:"1szpfk"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38",key:"9yhvd4"}]]);const Xp=c("clock-plus",[["path",{d:"M12 6v6l3.644 1.822",key:"1jmett"}],["path",{d:"M16 19h6",key:"xwg31i"}],["path",{d:"M19 16v6",key:"tddt3s"}],["path",{d:"M21.92 13.267a10 10 0 1 0-8.653 8.653",key:"1u0osk"}]]);const Zp=c("clock",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Qp=c("closed-caption",[["path",{d:"M10 9.17a3 3 0 1 0 0 5.66",key:"h9wayk"}],["path",{d:"M17 9.17a3 3 0 1 0 0 5.66",key:"1v6zke"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2",key:"qneu4z"}]]);const Jp=c("cloud-alert",[["path",{d:"M12 12v4",key:"tww15h"}],["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M17 18h.5a1 1 0 0 0 0-9h-1.79A7 7 0 1 0 7 17.708",key:"xsb5ju"}]]);const ey=c("cloud-backup",[["path",{d:"M21 15.251A4.5 4.5 0 0 0 17.5 8h-1.79A7 7 0 1 0 3 13.607",key:"xpoh9y"}],["path",{d:"M7 11v4h4",key:"q9yh32"}],["path",{d:"M8 19a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5 4.82 4.82 0 0 0-3.41 1.41L7 15",key:"1xm8iu"}]]);const ty=c("cloud-check",[["path",{d:"m17 15-5.5 5.5L9 18",key:"15q87x"}],["path",{d:"M5 17.743A7 7 0 1 1 15.71 10h1.79a4.5 4.5 0 0 1 1.5 8.742",key:"9ho6ki"}]]);const oy=c("cloud-cog",[["path",{d:"m10.852 19.772-.383.924",key:"r7sl7d"}],["path",{d:"m13.148 14.228.383-.923",key:"1d5zpm"}],["path",{d:"M13.148 19.772a3 3 0 1 0-2.296-5.544l-.383-.923",key:"1ydik7"}],["path",{d:"m13.53 20.696-.382-.924a3 3 0 1 1-2.296-5.544",key:"1m1vsf"}],["path",{d:"m14.772 15.852.923-.383",key:"660p6e"}],["path",{d:"m14.772 18.148.923.383",key:"hrcpis"}],["path",{d:"M4.2 15.1a7 7 0 1 1 9.93-9.858A7 7 0 0 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.2",key:"j2q98n"}],["path",{d:"m9.228 15.852-.923-.383",key:"1p9ong"}],["path",{d:"m9.228 18.148-.923.383",key:"6558rz"}]]);const ny=c("cloud-drizzle",[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M8 19v1",key:"1dk2by"}],["path",{d:"M8 14v1",key:"84yxot"}],["path",{d:"M16 19v1",key:"v220m7"}],["path",{d:"M16 14v1",key:"g12gj6"}],["path",{d:"M12 21v1",key:"q8vafk"}],["path",{d:"M12 16v1",key:"1mx6rx"}]]);const Ia=c("cloud-download",[["path",{d:"M12 13v8l-4-4",key:"1f5nwf"}],["path",{d:"m12 21 4-4",key:"1lfcce"}],["path",{d:"M4.393 15.269A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.436 8.284",key:"ui1hmy"}]]);const ay=c("cloud-fog",[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M16 17H7",key:"pygtm1"}],["path",{d:"M17 21H9",key:"1u2q02"}]]);const ry=c("cloud-hail",[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M16 14v2",key:"a1is7l"}],["path",{d:"M8 14v2",key:"1e9m6t"}],["path",{d:"M16 20h.01",key:"xwek51"}],["path",{d:"M8 20h.01",key:"1vjney"}],["path",{d:"M12 16v2",key:"z66u1j"}],["path",{d:"M12 22h.01",key:"1urd7a"}]]);const iy=c("cloud-lightning",[["path",{d:"M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973",key:"1cez44"}],["path",{d:"m13 12-3 5h4l-3 5",key:"1t22er"}]]);const cy=c("cloud-moon-rain",[["path",{d:"M11 20v2",key:"174qtz"}],["path",{d:"M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36",key:"zwnc1e"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24",key:"1qmrp3"}],["path",{d:"M7 19v2",key:"12npes"}]]);const sy=c("cloud-moon",[["path",{d:"M13 16a3 3 0 0 1 0 6H7a5 5 0 1 1 4.9-6z",key:"ie2ih4"}],["path",{d:"M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36",key:"zwnc1e"}]]);const dy=c("cloud-off",[["path",{d:"M10.94 5.274A7 7 0 0 1 15.71 10h1.79a4.5 4.5 0 0 1 4.222 6.057",key:"1uxyv8"}],["path",{d:"M18.796 18.81A4.5 4.5 0 0 1 17.5 19H9A7 7 0 0 1 5.79 5.78",key:"99tcn7"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const ly=c("cloud-rain-wind",[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m9.2 22 3-7",key:"sb5f6j"}],["path",{d:"m9 13-3 7",key:"500co5"}],["path",{d:"m17 13-3 7",key:"8t2fiy"}]]);const uy=c("cloud-rain",[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M16 14v6",key:"1j4efv"}],["path",{d:"M8 14v6",key:"17c4r9"}],["path",{d:"M12 16v6",key:"c8a4gj"}]]);const hy=c("cloud-snow",[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M8 19h.01",key:"puxtts"}],["path",{d:"M12 17h.01",key:"p32p05"}],["path",{d:"M12 21h.01",key:"h35vbk"}],["path",{d:"M16 15h.01",key:"rnfrdf"}],["path",{d:"M16 19h.01",key:"1vcnzz"}]]);const py=c("cloud-sun-rain",[["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128",key:"dpwdj0"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24",key:"1qmrp3"}],["path",{d:"M11 20v2",key:"174qtz"}],["path",{d:"M7 19v2",key:"12npes"}]]);const yy=c("cloud-sun",[["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128",key:"dpwdj0"}],["path",{d:"M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z",key:"s09mg5"}]]);const fy=c("cloud-sync",[["path",{d:"m17 18-1.535 1.605a5 5 0 0 1-8-1.5",key:"adpv5j"}],["path",{d:"M17 22v-4h-4",key:"ex1ofj"}],["path",{d:"M20.996 15.251A4.5 4.5 0 0 0 17.495 8h-1.79a7 7 0 1 0-12.709 5.607",key:"ziqt14"}],["path",{d:"M7 10v4h4",key:"1j6gx1"}],["path",{d:"m7 14 1.535-1.605a5 5 0 0 1 8 1.5",key:"19q5h7"}]]);const Aa=c("cloud-upload",[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m8 17 4-4 4 4",key:"1quai1"}]]);const my=c("cloud",[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",key:"p7xjir"}]]);const ky=c("clover",[["path",{d:"M16.17 7.83 2 22",key:"t58vo8"}],["path",{d:"M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12",key:"17k36q"}],["path",{d:"m7.83 7.83 8.34 8.34",key:"1d7sxk"}]]);const gy=c("cloudy",[["path",{d:"M17.5 12a1 1 0 1 1 0 9H9.006a7 7 0 1 1 6.702-9z",key:"44yre2"}],["path",{d:"M21.832 9A3 3 0 0 0 19 7h-2.207a5.5 5.5 0 0 0-10.72.61",key:"leugyv"}]]);const vy=c("club",[["path",{d:"M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z",key:"27yuqz"}],["path",{d:"M12 17.66L12 22",key:"ogfahf"}]]);const Pa=c("code-xml",[["path",{d:"m18 16 4-4-4-4",key:"1inbqp"}],["path",{d:"m6 8-4 4 4 4",key:"15zrgr"}],["path",{d:"m14.5 4-5 16",key:"e7oirm"}]]);const _y=c("code",[["path",{d:"m16 18 6-6-6-6",key:"eg8j8"}],["path",{d:"m8 6-6 6 6 6",key:"ppft3o"}]]);const by=c("codepen",[["polygon",{points:"12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2",key:"srzb37"}],["line",{x1:"12",x2:"12",y1:"22",y2:"15.5",key:"1t73f2"}],["polyline",{points:"22 8.5 12 15.5 2 8.5",key:"ajlxae"}],["polyline",{points:"2 15.5 12 8.5 22 15.5",key:"susrui"}],["line",{x1:"12",x2:"12",y1:"2",y2:"8.5",key:"2cldga"}]]);const My=c("codesandbox",[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",key:"yt0hxn"}],["polyline",{points:"7.5 4.21 12 6.81 16.5 4.21",key:"fabo96"}],["polyline",{points:"7.5 19.79 7.5 14.6 3 12",key:"z377f1"}],["polyline",{points:"21 12 16.5 14.6 16.5 19.79",key:"9nrev1"}],["polyline",{points:"3.27 6.96 12 12.01 20.73 6.96",key:"1180pa"}],["line",{x1:"12",x2:"12",y1:"22.08",y2:"12",key:"3z3uq6"}]]);const wy=c("coffee",[["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M14 2v2",key:"6buw04"}],["path",{d:"M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1",key:"pwadti"}],["path",{d:"M6 2v2",key:"colzsn"}]]);const xy=c("cog",[["path",{d:"M11 10.27 7 3.34",key:"16pf9h"}],["path",{d:"m11 13.73-4 6.93",key:"794ttg"}],["path",{d:"M12 22v-2",key:"1osdcq"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M14 12h8",key:"4f43i9"}],["path",{d:"m17 20.66-1-1.73",key:"eq3orb"}],["path",{d:"m17 3.34-1 1.73",key:"2wel8s"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"m20.66 17-1.73-1",key:"sg0v6f"}],["path",{d:"m20.66 7-1.73 1",key:"1ow05n"}],["path",{d:"m3.34 17 1.73-1",key:"nuk764"}],["path",{d:"m3.34 7 1.73 1",key:"1ulond"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["circle",{cx:"12",cy:"12",r:"8",key:"46899m"}]]);const Ny=c("coins",[["circle",{cx:"8",cy:"8",r:"6",key:"3yglwk"}],["path",{d:"M18.09 10.37A6 6 0 1 1 10.34 18",key:"t5s6rm"}],["path",{d:"M7 6h1v4",key:"1obek4"}],["path",{d:"m16.71 13.88.7.71-2.82 2.82",key:"1rbuyh"}]]);const Ta=c("columns-2",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 3v18",key:"108xh3"}]]);const fo=c("columns-3-cog",[["path",{d:"M10.5 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.5",key:"1g2yzs"}],["path",{d:"m14.3 19.6 1-.4",key:"11sv9r"}],["path",{d:"M15 3v7.5",key:"7lm50a"}],["path",{d:"m15.2 16.9-.9-.3",key:"1t7mvx"}],["path",{d:"m16.6 21.7.3-.9",key:"1j67ps"}],["path",{d:"m16.8 15.3-.4-1",key:"1ei7r6"}],["path",{d:"m19.1 15.2.3-.9",key:"18r7jp"}],["path",{d:"m19.6 21.7-.4-1",key:"z2vh2"}],["path",{d:"m20.7 16.8 1-.4",key:"19m87a"}],["path",{d:"m21.7 19.4-.9-.3",key:"1qgwi9"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]]);const Da=c("columns-3",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"M15 3v18",key:"14nvp0"}]]);const Cy=c("columns-4",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7.5 3v18",key:"w0wo6v"}],["path",{d:"M12 3v18",key:"108xh3"}],["path",{d:"M16.5 3v18",key:"10tjh1"}]]);const $y=c("combine",[["path",{d:"M14 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1",key:"1l7d7l"}],["path",{d:"M19 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1",key:"9955pe"}],["path",{d:"m7 15 3 3",key:"4hkfgk"}],["path",{d:"m7 21 3-3H5a2 2 0 0 1-2-2v-2",key:"1xljwe"}],["rect",{x:"14",y:"14",width:"7",height:"7",rx:"1",key:"1cdgtw"}],["rect",{x:"3",y:"3",width:"7",height:"7",rx:"1",key:"zi3rio"}]]);const Sy=c("command",[["path",{d:"M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3",key:"11bfej"}]]);const Ly=c("compass",[["path",{d:"m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z",key:"9ktpf1"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Iy=c("component",[["path",{d:"M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z",key:"1uwlt4"}],["path",{d:"M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z",key:"10291m"}],["path",{d:"M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z",key:"1tqoq1"}],["path",{d:"M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z",key:"1x6lto"}]]);const Ay=c("computer",[["rect",{width:"14",height:"8",x:"5",y:"2",rx:"2",key:"wc9tft"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6 18h2",key:"rwmk9e"}],["path",{d:"M12 18h6",key:"aqd8w3"}]]);const Py=c("concierge-bell",[["path",{d:"M3 20a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1Z",key:"1pvr1r"}],["path",{d:"M20 16a8 8 0 1 0-16 0",key:"1pa543"}],["path",{d:"M12 4v4",key:"1bq03y"}],["path",{d:"M10 4h4",key:"1xpv9s"}]]);const Ty=c("cone",[["path",{d:"m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98",key:"53pte7"}],["ellipse",{cx:"12",cy:"19",rx:"9",ry:"3",key:"1ji25f"}]]);const Dy=c("construction",[["rect",{x:"2",y:"6",width:"20",height:"8",rx:"1",key:"1estib"}],["path",{d:"M17 14v7",key:"7m2elx"}],["path",{d:"M7 14v7",key:"1cm7wv"}],["path",{d:"M17 3v3",key:"1v4jwn"}],["path",{d:"M7 3v3",key:"7o6guu"}],["path",{d:"M10 14 2.3 6.3",key:"1023jk"}],["path",{d:"m14 6 7.7 7.7",key:"1s8pl2"}],["path",{d:"m8 6 8 8",key:"hl96qh"}]]);const Ea=c("contact-round",[["path",{d:"M16 2v2",key:"scm5qe"}],["path",{d:"M17.915 22a6 6 0 0 0-12 0",key:"suqz9p"}],["path",{d:"M8 2v2",key:"pbkmx"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",key:"12vinp"}]]);const Ey=c("contact",[["path",{d:"M16 2v2",key:"scm5qe"}],["path",{d:"M7 22v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2",key:"1waht3"}],["path",{d:"M8 2v2",key:"pbkmx"}],["circle",{cx:"12",cy:"11",r:"3",key:"itu57m"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",key:"12vinp"}]]);const zy=c("container",[["path",{d:"M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z",key:"1t2lqe"}],["path",{d:"M10 21.9V14L2.1 9.1",key:"o7czzq"}],["path",{d:"m10 14 11.9-6.9",key:"zm5e20"}],["path",{d:"M14 19.8v-8.1",key:"159ecu"}],["path",{d:"M18 17.5V9.4",key:"11uown"}]]);const Oy=c("contrast",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 18a6 6 0 0 0 0-12v12z",key:"j4l70d"}]]);const qy=c("cookie",[["path",{d:"M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5",key:"laymnq"}],["path",{d:"M8.5 8.5v.01",key:"ue8clq"}],["path",{d:"M16 15.5v.01",key:"14dtrp"}],["path",{d:"M12 12v.01",key:"u5ubse"}],["path",{d:"M11 17v.01",key:"1hyl5a"}],["path",{d:"M7 14v.01",key:"uct60s"}]]);const jy=c("cooking-pot",[["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8",key:"u0tga0"}],["path",{d:"m4 8 16-4",key:"16g0ng"}],["path",{d:"m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8",key:"12cejc"}]]);const Hy=c("copy-check",[["path",{d:"m12 15 2 2 4-4",key:"2c609p"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);const Vy=c("copy-minus",[["line",{x1:"12",x2:"18",y1:"15",y2:"15",key:"1nscbv"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);const Fy=c("copy-plus",[["line",{x1:"15",x2:"15",y1:"12",y2:"18",key:"1p7wdc"}],["line",{x1:"12",x2:"18",y1:"15",y2:"15",key:"1nscbv"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);const By=c("copy-slash",[["line",{x1:"12",x2:"18",y1:"18",y2:"12",key:"ebkxgr"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);const Wy=c("copy-x",[["line",{x1:"12",x2:"18",y1:"12",y2:"18",key:"1rg63v"}],["line",{x1:"12",x2:"18",y1:"18",y2:"12",key:"ebkxgr"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);const Uy=c("copyleft",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.17 14.83a4 4 0 1 0 0-5.66",key:"1sveal"}]]);const Ry=c("copy",[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);const Gy=c("copyright",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M14.83 14.83a4 4 0 1 1 0-5.66",key:"1i56pz"}]]);const Ky=c("corner-down-left",[["path",{d:"M20 4v7a4 4 0 0 1-4 4H4",key:"6o5b7l"}],["path",{d:"m9 10-5 5 5 5",key:"1kshq7"}]]);const Yy=c("corner-down-right",[["path",{d:"m15 10 5 5-5 5",key:"qqa56n"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12",key:"z08zvw"}]]);const Xy=c("corner-left-down",[["path",{d:"m14 15-5 5-5-5",key:"1eia93"}],["path",{d:"M20 4h-7a4 4 0 0 0-4 4v12",key:"nbpdq2"}]]);const Zy=c("corner-left-up",[["path",{d:"M14 9 9 4 4 9",key:"1af5af"}],["path",{d:"M20 20h-7a4 4 0 0 1-4-4V4",key:"1blwi3"}]]);const Qy=c("corner-right-down",[["path",{d:"m10 15 5 5 5-5",key:"1hpjnr"}],["path",{d:"M4 4h7a4 4 0 0 1 4 4v12",key:"wcbgct"}]]);const Jy=c("corner-right-up",[["path",{d:"m10 9 5-5 5 5",key:"9ctzwi"}],["path",{d:"M4 20h7a4 4 0 0 0 4-4V4",key:"1plgdj"}]]);const ef=c("corner-up-left",[["path",{d:"M20 20v-7a4 4 0 0 0-4-4H4",key:"1nkjon"}],["path",{d:"M9 14 4 9l5-5",key:"102s5s"}]]);const tf=c("corner-up-right",[["path",{d:"m15 14 5-5-5-5",key:"12vg1m"}],["path",{d:"M4 20v-7a4 4 0 0 1 4-4h12",key:"1lu4f8"}]]);const of=c("cpu",[["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M17 20v2",key:"1rnc9c"}],["path",{d:"M17 2v2",key:"11trls"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M2 17h2",key:"7oei6x"}],["path",{d:"M2 7h2",key:"asdhe0"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"M20 17h2",key:"1fpfkl"}],["path",{d:"M20 7h2",key:"1o8tra"}],["path",{d:"M7 20v2",key:"4gnj0m"}],["path",{d:"M7 2v2",key:"1i4yhu"}],["rect",{x:"4",y:"4",width:"16",height:"16",rx:"2",key:"1vbyd7"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1",key:"z9xiuo"}]]);const nf=c("creative-commons",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M10 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1",key:"1ss3eq"}],["path",{d:"M17 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1",key:"1od56t"}]]);const af=c("credit-card",[["rect",{width:"20",height:"14",x:"2",y:"5",rx:"2",key:"ynyp8z"}],["line",{x1:"2",x2:"22",y1:"10",y2:"10",key:"1b3vmo"}]]);const rf=c("croissant",[["path",{d:"M10.2 18H4.774a1.5 1.5 0 0 1-1.352-.97 11 11 0 0 1 .132-6.487",key:"14kkz9"}],["path",{d:"M18 10.2V4.774a1.5 1.5 0 0 0-.97-1.352 11 11 0 0 0-6.486.132",key:"1g7v07"}],["path",{d:"M18 5a4 3 0 0 1 4 3 2 2 0 0 1-2 2 10 10 0 0 0-5.139 1.42",key:"ratg6b"}],["path",{d:"M5 18a3 4 0 0 0 3 4 2 2 0 0 0 2-2 10 10 0 0 1 1.42-5.14",key:"4454f0"}],["path",{d:"M8.709 2.554a10 10 0 0 0-6.155 6.155 1.5 1.5 0 0 0 .676 1.626l9.807 5.42a2 2 0 0 0 2.718-2.718l-5.42-9.807a1.5 1.5 0 0 0-1.626-.676",key:"qmemie"}]]);const cf=c("crop",[["path",{d:"M6 2v14a2 2 0 0 0 2 2h14",key:"ron5a4"}],["path",{d:"M18 22V8a2 2 0 0 0-2-2H2",key:"7s9ehn"}]]);const sf=c("cross",[["path",{d:"M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z",key:"1xbrqy"}]]);const df=c("crown",[["path",{d:"M11.562 3.266a.5.5 0 0 1 .876 0L15.39 8.87a1 1 0 0 0 1.516.294L21.183 5.5a.5.5 0 0 1 .798.519l-2.834 10.246a1 1 0 0 1-.956.734H5.81a1 1 0 0 1-.957-.734L2.02 6.02a.5.5 0 0 1 .798-.519l4.276 3.664a1 1 0 0 0 1.516-.294z",key:"1vdc57"}],["path",{d:"M5 21h14",key:"11awu3"}]]);const lf=c("crosshair",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"22",x2:"18",y1:"12",y2:"12",key:"l9bcsi"}],["line",{x1:"6",x2:"2",y1:"12",y2:"12",key:"13hhkx"}],["line",{x1:"12",x2:"12",y1:"6",y2:"2",key:"10w3f3"}],["line",{x1:"12",x2:"12",y1:"22",y2:"18",key:"15g9kq"}]]);const uf=c("cuboid",[["path",{d:"m21.12 6.4-6.05-4.06a2 2 0 0 0-2.17-.05L2.95 8.41a2 2 0 0 0-.95 1.7v5.82a2 2 0 0 0 .88 1.66l6.05 4.07a2 2 0 0 0 2.17.05l9.95-6.12a2 2 0 0 0 .95-1.7V8.06a2 2 0 0 0-.88-1.66Z",key:"1u2ovd"}],["path",{d:"M10 22v-8L2.25 9.15",key:"11pn4q"}],["path",{d:"m10 14 11.77-6.87",key:"1kt1wh"}]]);const hf=c("cup-soda",[["path",{d:"m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8",key:"8166m8"}],["path",{d:"M5 8h14",key:"pcz4l3"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0",key:"yjz344"}],["path",{d:"m12 8 1-6h2",key:"3ybfa4"}]]);const pf=c("currency",[["circle",{cx:"12",cy:"12",r:"8",key:"46899m"}],["line",{x1:"3",x2:"6",y1:"3",y2:"6",key:"1jkytn"}],["line",{x1:"21",x2:"18",y1:"3",y2:"6",key:"14zfjt"}],["line",{x1:"3",x2:"6",y1:"21",y2:"18",key:"iusuec"}],["line",{x1:"21",x2:"18",y1:"21",y2:"18",key:"yj2dd7"}]]);const yf=c("cylinder",[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5v14a9 3 0 0 0 18 0V5",key:"aqi0yr"}]]);const ff=c("dam",[["path",{d:"M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"157kva"}],["path",{d:"M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"d7q6m6"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z",key:"pr6s65"}]]);const mf=c("database-backup",[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 12a9 3 0 0 0 5 2.69",key:"1ui2ym"}],["path",{d:"M21 9.3V5",key:"6k6cib"}],["path",{d:"M3 5v14a9 3 0 0 0 6.47 2.88",key:"i62tjy"}],["path",{d:"M12 12v4h4",key:"1bxaet"}],["path",{d:"M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16",key:"1f4ei9"}]]);const kf=c("database-zap",[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 15 21.84",key:"14ibmq"}],["path",{d:"M21 5V8",key:"1marbg"}],["path",{d:"M21 12L18 17H22L19 22",key:"zafso"}],["path",{d:"M3 12A9 3 0 0 0 14.59 14.87",key:"1y4wr8"}]]);const gf=c("database",[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5",key:"1wlel7"}],["path",{d:"M3 12A9 3 0 0 0 21 12",key:"mv7ke4"}]]);const vf=c("decimals-arrow-left",[["path",{d:"m13 21-3-3 3-3",key:"s3o1nf"}],["path",{d:"M20 18H10",key:"14r3mt"}],["path",{d:"M3 11h.01",key:"1eifu7"}],["rect",{x:"6",y:"3",width:"5",height:"8",rx:"2.5",key:"v9paqo"}]]);const _f=c("decimals-arrow-right",[["path",{d:"M10 18h10",key:"1y5s8o"}],["path",{d:"m17 21 3-3-3-3",key:"1ammt0"}],["path",{d:"M3 11h.01",key:"1eifu7"}],["rect",{x:"15",y:"3",width:"5",height:"8",rx:"2.5",key:"76md6a"}],["rect",{x:"6",y:"3",width:"5",height:"8",rx:"2.5",key:"v9paqo"}]]);const bf=c("delete",[["path",{d:"M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z",key:"1yo7s0"}],["path",{d:"m12 9 6 6",key:"anjzzh"}],["path",{d:"m18 9-6 6",key:"1fp51s"}]]);const Mf=c("dessert",[["path",{d:"M10.162 3.167A10 10 0 0 0 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4-.006 10 10 0 0 0-8.161-9.826",key:"xi88qy"}],["path",{d:"M20.804 14.869a9 9 0 0 1-17.608 0",key:"1r28rg"}],["circle",{cx:"12",cy:"4",r:"2",key:"muu5ef"}]]);const wf=c("diameter",[["circle",{cx:"19",cy:"19",r:"2",key:"17f5cg"}],["circle",{cx:"5",cy:"5",r:"2",key:"1gwv83"}],["path",{d:"M6.48 3.66a10 10 0 0 1 13.86 13.86",key:"xr8kdq"}],["path",{d:"m6.41 6.41 11.18 11.18",key:"uhpjw7"}],["path",{d:"M3.66 6.48a10 10 0 0 0 13.86 13.86",key:"cldpwv"}]]);const xf=c("diamond-minus",[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z",key:"1ey20j"}],["path",{d:"M8 12h8",key:"1wcyev"}]]);const za=c("diamond-percent",[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0Z",key:"1tpxz2"}],["path",{d:"M9.2 9.2h.01",key:"1b7bvt"}],["path",{d:"m14.5 9.5-5 5",key:"17q4r4"}],["path",{d:"M14.7 14.8h.01",key:"17nsh4"}]]);const Nf=c("diamond-plus",[["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z",key:"1ey20j"}],["path",{d:"M8 12h8",key:"1wcyev"}]]);const Cf=c("diamond",[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z",key:"1f1r0c"}]]);const $f=c("dice-1",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]]);const Sf=c("dice-2",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M15 9h.01",key:"x1ddxp"}],["path",{d:"M9 15h.01",key:"fzyn71"}]]);const Lf=c("dice-3",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M8 16h.01",key:"18s6g9"}]]);const If=c("dice-4",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M8 8h.01",key:"1e4136"}],["path",{d:"M8 16h.01",key:"18s6g9"}],["path",{d:"M16 16h.01",key:"1f9h7w"}]]);const Af=c("dice-5",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M8 8h.01",key:"1e4136"}],["path",{d:"M8 16h.01",key:"18s6g9"}],["path",{d:"M16 16h.01",key:"1f9h7w"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]]);const Pf=c("dice-6",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M16 12h.01",key:"1l6xoz"}],["path",{d:"M16 16h.01",key:"1f9h7w"}],["path",{d:"M8 8h.01",key:"1e4136"}],["path",{d:"M8 12h.01",key:"czm47f"}],["path",{d:"M8 16h.01",key:"18s6g9"}]]);const Tf=c("dices",[["rect",{width:"12",height:"12",x:"2",y:"10",rx:"2",ry:"2",key:"6agr2n"}],["path",{d:"m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6",key:"1o487t"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M10 14h.01",key:"ssrbsk"}],["path",{d:"M15 6h.01",key:"cblpky"}],["path",{d:"M18 9h.01",key:"2061c0"}]]);const Df=c("diff",[["path",{d:"M12 3v14",key:"7cf3v8"}],["path",{d:"M5 10h14",key:"elsbfy"}],["path",{d:"M5 21h14",key:"11awu3"}]]);const Ef=c("disc-2",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]]);const zf=c("disc-3",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M6 12c0-1.7.7-3.2 1.8-4.2",key:"oqkarx"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"M18 12c0 1.7-.7 3.2-1.8 4.2",key:"1eah9h"}]]);const Of=c("disc-album",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"12",cy:"12",r:"5",key:"nd82uf"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]]);const qf=c("disc",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const jf=c("divide",[["circle",{cx:"12",cy:"6",r:"1",key:"1bh7o1"}],["line",{x1:"5",x2:"19",y1:"12",y2:"12",key:"13b5wn"}],["circle",{cx:"12",cy:"18",r:"1",key:"lqb9t5"}]]);const Hf=c("dna-off",[["path",{d:"M15 2c-1.35 1.5-2.092 3-2.5 4.5L14 8",key:"1bivrr"}],["path",{d:"m17 6-2.891-2.891",key:"xu6p2f"}],["path",{d:"M2 15c3.333-3 6.667-3 10-3",key:"nxix30"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"m20 9 .891.891",key:"3xwk7g"}],["path",{d:"M22 9c-1.5 1.35-3 2.092-4.5 2.5l-1-1",key:"18cutr"}],["path",{d:"M3.109 14.109 4 15",key:"q76aoh"}],["path",{d:"m6.5 12.5 1 1",key:"cs35ky"}],["path",{d:"m7 18 2.891 2.891",key:"1sisit"}],["path",{d:"M9 22c1.35-1.5 2.092-3 2.5-4.5L10 16",key:"rlvei3"}]]);const Vf=c("dna",[["path",{d:"m10 16 1.5 1.5",key:"11lckj"}],["path",{d:"m14 8-1.5-1.5",key:"1ohn8i"}],["path",{d:"M15 2c-1.798 1.998-2.518 3.995-2.807 5.993",key:"80uv8i"}],["path",{d:"m16.5 10.5 1 1",key:"696xn5"}],["path",{d:"m17 6-2.891-2.891",key:"xu6p2f"}],["path",{d:"M2 15c6.667-6 13.333 0 20-6",key:"1pyr53"}],["path",{d:"m20 9 .891.891",key:"3xwk7g"}],["path",{d:"M3.109 14.109 4 15",key:"q76aoh"}],["path",{d:"m6.5 12.5 1 1",key:"cs35ky"}],["path",{d:"m7 18 2.891 2.891",key:"1sisit"}],["path",{d:"M9 22c1.798-1.998 2.518-3.995 2.807-5.993",key:"q3hbxp"}]]);const Ff=c("dock",[["path",{d:"M2 8h20",key:"d11cs7"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M6 16h12",key:"u522kt"}]]);const Bf=c("dog",[["path",{d:"M11.25 16.25h1.5L12 17z",key:"w7jh35"}],["path",{d:"M16 14v.5",key:"1lajdz"}],["path",{d:"M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309",key:"u7s9ue"}],["path",{d:"M8 14v.5",key:"1nzgdb"}],["path",{d:"M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5",key:"v8hric"}]]);const Wf=c("dollar-sign",[["line",{x1:"12",x2:"12",y1:"2",y2:"22",key:"7eqyqh"}],["path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6",key:"1b0p4s"}]]);const Uf=c("donut",[["path",{d:"M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3",key:"19sr3x"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);const Rf=c("door-closed-locked",[["path",{d:"M10 12h.01",key:"1kxr2c"}],["path",{d:"M18 9V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14",key:"1bnhmg"}],["path",{d:"M2 20h8",key:"10ntw1"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2",key:"pwaxnr"}],["rect",{x:"14",y:"17",width:"8",height:"5",rx:"1",key:"15pjcy"}]]);const Gf=c("door-closed",[["path",{d:"M10 12h.01",key:"1kxr2c"}],["path",{d:"M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14",key:"36qu9e"}],["path",{d:"M2 20h20",key:"owomy5"}]]);const Kf=c("door-open",[["path",{d:"M11 20H2",key:"nlcfvz"}],["path",{d:"M11 4.562v16.157a1 1 0 0 0 1.242.97L19 20V5.562a2 2 0 0 0-1.515-1.94l-4-1A2 2 0 0 0 11 4.561z",key:"au4z13"}],["path",{d:"M11 4H8a2 2 0 0 0-2 2v14",key:"74r1mk"}],["path",{d:"M14 12h.01",key:"1jfl7z"}],["path",{d:"M22 20h-3",key:"vhrsz"}]]);const Us=c("dot",[["circle",{cx:"12.1",cy:"12.1",r:"1",key:"18d7e5"}]]);const Rs=c("download",[["path",{d:"M12 15V3",key:"m9g1x1"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["path",{d:"m7 10 5 5 5-5",key:"brsn70"}]]);const Yf=c("drafting-compass",[["path",{d:"m12.99 6.74 1.93 3.44",key:"iwagvd"}],["path",{d:"M19.136 12a10 10 0 0 1-14.271 0",key:"ppmlo4"}],["path",{d:"m21 21-2.16-3.84",key:"vylbct"}],["path",{d:"m3 21 8.02-14.26",key:"1ssaw4"}],["circle",{cx:"12",cy:"5",r:"2",key:"f1ur92"}]]);const Xf=c("drama",[["path",{d:"M10 11h.01",key:"d2at3l"}],["path",{d:"M14 6h.01",key:"k028ub"}],["path",{d:"M18 6h.01",key:"1v4wsw"}],["path",{d:"M6.5 13.1h.01",key:"1748ia"}],["path",{d:"M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3",key:"172yzv"}],["path",{d:"M17.4 9.9c-.8.8-2 .8-2.8 0",key:"1obv0w"}],["path",{d:"M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7",key:"rqjl8i"}],["path",{d:"M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4",key:"1mr6wy"}]]);const Zf=c("drill",[["path",{d:"M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z",key:"ioqxb1"}],["path",{d:"M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8",key:"1rs59n"}],["path",{d:"M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3",key:"105ega"}],["path",{d:"M18 6h4",key:"66u95g"}],["path",{d:"m5 10-2 8",key:"xt2lic"}],["path",{d:"m7 18 2-8",key:"1bzku2"}]]);const Qf=c("dribbble",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94",key:"hpej1"}],["path",{d:"M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32",key:"1tr44o"}],["path",{d:"M8.56 2.75c4.37 6 6 9.42 8 17.72",key:"kbh691"}]]);const Jf=c("drone",[["path",{d:"M10 10 7 7",key:"zp14k7"}],["path",{d:"m10 14-3 3",key:"1jrpxk"}],["path",{d:"m14 10 3-3",key:"7tigam"}],["path",{d:"m14 14 3 3",key:"vm23p3"}],["path",{d:"M14.205 4.139a4 4 0 1 1 5.439 5.863",key:"1tm5p2"}],["path",{d:"M19.637 14a4 4 0 1 1-5.432 5.868",key:"16egi2"}],["path",{d:"M4.367 10a4 4 0 1 1 5.438-5.862",key:"1wta6a"}],["path",{d:"M9.795 19.862a4 4 0 1 1-5.429-5.873",key:"q39hpv"}],["rect",{x:"10",y:"8",width:"4",height:"8",rx:"1",key:"phrjt1"}]]);const em=c("droplet-off",[["path",{d:"M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586",key:"8suz2t"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208",key:"19dw9m"}]]);const tm=c("droplet",[["path",{d:"M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z",key:"c7niix"}]]);const om=c("droplets",[["path",{d:"M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z",key:"1ptgy4"}],["path",{d:"M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97",key:"1sl1rz"}]]);const nm=c("drum",[["path",{d:"m2 2 8 8",key:"1v6059"}],["path",{d:"m22 2-8 8",key:"173r8a"}],["ellipse",{cx:"12",cy:"9",rx:"10",ry:"5",key:"liohsx"}],["path",{d:"M7 13.4v7.9",key:"1yi6u9"}],["path",{d:"M12 14v8",key:"1tn2tj"}],["path",{d:"M17 13.4v7.9",key:"eqz2v3"}],["path",{d:"M2 9v8a10 5 0 0 0 20 0V9",key:"1750ul"}]]);const am=c("drumstick",[["path",{d:"M15.4 15.63a7.875 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23",key:"1dtqwm"}],["path",{d:"m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59",key:"1oq1fw"}]]);const rm=c("dumbbell",[["path",{d:"M17.596 12.768a2 2 0 1 0 2.829-2.829l-1.768-1.767a2 2 0 0 0 2.828-2.829l-2.828-2.828a2 2 0 0 0-2.829 2.828l-1.767-1.768a2 2 0 1 0-2.829 2.829z",key:"9m4mmf"}],["path",{d:"m2.5 21.5 1.4-1.4",key:"17g3f0"}],["path",{d:"m20.1 3.9 1.4-1.4",key:"1qn309"}],["path",{d:"M5.343 21.485a2 2 0 1 0 2.829-2.828l1.767 1.768a2 2 0 1 0 2.829-2.829l-6.364-6.364a2 2 0 1 0-2.829 2.829l1.768 1.767a2 2 0 0 0-2.828 2.829z",key:"1t2c92"}],["path",{d:"m9.6 14.4 4.8-4.8",key:"6umqxw"}]]);const im=c("ear",[["path",{d:"M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0",key:"1dfaln"}],["path",{d:"M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4",key:"1qnva7"}]]);const cm=c("ear-off",[["path",{d:"M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46",key:"1qngmn"}],["path",{d:"M6 8.5c0-.75.13-1.47.36-2.14",key:"b06bma"}],["path",{d:"M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76",key:"g10hsz"}],["path",{d:"M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18",key:"ygzou7"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const sm=c("earth-lock",[["path",{d:"M7 3.34V5a3 3 0 0 0 3 3",key:"w732o8"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2 2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05",key:"f02343"}],["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54",key:"1djwo0"}],["path",{d:"M12 2a10 10 0 1 0 9.54 13",key:"zjsr6q"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2",key:"1of5e8"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1",key:"1fmf51"}]]);const Oa=c("earth",[["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54",key:"1djwo0"}],["path",{d:"M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17",key:"1tzkfa"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05",key:"14pb5j"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const dm=c("eclipse",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a7 7 0 1 0 10 10",key:"1yuj32"}]]);const lm=c("egg-fried",[["circle",{cx:"11.5",cy:"12.5",r:"3.5",key:"1cl1mi"}],["path",{d:"M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z",key:"165ef9"}]]);const um=c("egg-off",[["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20 14.347V14c0-6-4-12-8-12-1.078 0-2.157.436-3.157 1.19",key:"13g2jy"}],["path",{d:"M6.206 6.21C4.871 8.4 4 11.2 4 14a8 8 0 0 0 14.568 4.568",key:"1581id"}]]);const hm=c("egg",[["path",{d:"M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12",key:"1le142"}]]);const qa=c("ellipsis-vertical",[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["circle",{cx:"12",cy:"19",r:"1",key:"lyex9k"}]]);const Ho=c("ellipsis",[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}]]);const pm=c("equal-approximately",[["path",{d:"M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0",key:"yrdkhy"}],["path",{d:"M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0",key:"gzkvyz"}]]);const ym=c("equal-not",[["line",{x1:"5",x2:"19",y1:"9",y2:"9",key:"1nwqeh"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15",key:"g8yjpy"}],["line",{x1:"19",x2:"5",y1:"5",y2:"19",key:"1x9vlm"}]]);const fm=c("equal",[["line",{x1:"5",x2:"19",y1:"9",y2:"9",key:"1nwqeh"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15",key:"g8yjpy"}]]);const mm=c("eraser",[["path",{d:"M21 21H8a2 2 0 0 1-1.42-.587l-3.994-3.999a2 2 0 0 1 0-2.828l10-10a2 2 0 0 1 2.829 0l5.999 6a2 2 0 0 1 0 2.828L12.834 21",key:"g5wo59"}],["path",{d:"m5.082 11.09 8.828 8.828",key:"1wx5vj"}]]);const km=c("ethernet-port",[["path",{d:"m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z",key:"rbahqx"}],["path",{d:"M6 8v1",key:"1636ez"}],["path",{d:"M10 8v1",key:"1talb4"}],["path",{d:"M14 8v1",key:"1rsfgr"}],["path",{d:"M18 8v1",key:"gnkwox"}]]);const gm=c("euro",[["path",{d:"M4 10h12",key:"1y6xl8"}],["path",{d:"M4 14h9",key:"1loblj"}],["path",{d:"M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2",key:"1j6lzo"}]]);const vm=c("ev-charger",[["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5",key:"1wtuz0"}],["path",{d:"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16",key:"e09ifn"}],["path",{d:"M2 21h13",key:"1x0fut"}],["path",{d:"M3 7h11",key:"19efrr"}],["path",{d:"m9 11-2 3h3l-2 3",key:"lmzxi1"}]]);const _m=c("expand",[["path",{d:"m15 15 6 6",key:"1s409w"}],["path",{d:"m15 9 6-6",key:"ko1vev"}],["path",{d:"M21 16v5h-5",key:"1ck2sf"}],["path",{d:"M21 8V3h-5",key:"1qoq8a"}],["path",{d:"M3 16v5h5",key:"1t08am"}],["path",{d:"m3 21 6-6",key:"wwnumi"}],["path",{d:"M3 8V3h5",key:"1ln10m"}],["path",{d:"M9 9 3 3",key:"v551iv"}]]);const bm=c("external-link",[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]]);const Mm=c("eye-closed",[["path",{d:"m15 18-.722-3.25",key:"1j64jw"}],["path",{d:"M2 8a10.645 10.645 0 0 0 20 0",key:"1e7gxb"}],["path",{d:"m20 15-1.726-2.05",key:"1cnuld"}],["path",{d:"m4 15 1.726-2.05",key:"1dsqqd"}],["path",{d:"m9 18 .722-3.25",key:"ypw2yx"}]]);const wm=c("eye-off",[["path",{d:"M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",key:"ct8e1f"}],["path",{d:"M14.084 14.158a3 3 0 0 1-4.242-4.242",key:"151rxh"}],["path",{d:"M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143",key:"13bj9a"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const xm=c("eye",[["path",{d:"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0",key:"1nclc0"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);const Nm=c("facebook",[["path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z",key:"1jg4f8"}]]);const Cm=c("factory",[["path",{d:"M12 16h.01",key:"1drbdi"}],["path",{d:"M16 16h.01",key:"1f9h7w"}],["path",{d:"M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.5a.5.5 0 0 0-.769-.422l-4.462 2.844A.5.5 0 0 1 15 10.5v-2a.5.5 0 0 0-.769-.422L9.77 10.922A.5.5 0 0 1 9 10.5V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z",key:"1iv0i2"}],["path",{d:"M8 16h.01",key:"18s6g9"}]]);const $m=c("fan",[["path",{d:"M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z",key:"484a7f"}],["path",{d:"M12 12v.01",key:"u5ubse"}]]);const Sm=c("fast-forward",[["path",{d:"M12 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 12 18z",key:"b19h5q"}],["path",{d:"M2 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 2 18z",key:"h7h5ge"}]]);const Lm=c("feather",[["path",{d:"M12.67 19a2 2 0 0 0 1.416-.588l6.154-6.172a6 6 0 0 0-8.49-8.49L5.586 9.914A2 2 0 0 0 5 11.328V18a1 1 0 0 0 1 1z",key:"18jl4k"}],["path",{d:"M16 8 2 22",key:"vp34q"}],["path",{d:"M17.5 15H9",key:"1oz8nu"}]]);const Im=c("fence",[["path",{d:"M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z",key:"1n2rgs"}],["path",{d:"M6 8h4",key:"utf9t1"}],["path",{d:"M6 18h4",key:"12yh4b"}],["path",{d:"m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z",key:"3ha7mj"}],["path",{d:"M14 8h4",key:"1r8wg2"}],["path",{d:"M14 18h4",key:"1t3kbu"}],["path",{d:"m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z",key:"dfd4e2"}]]);const Am=c("ferris-wheel",[["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m6.8 15-3.5 2",key:"hjy98k"}],["path",{d:"m20.7 7-3.5 2",key:"f08gto"}],["path",{d:"M6.8 9 3.3 7",key:"1aevh4"}],["path",{d:"m20.7 17-3.5-2",key:"1liqo3"}],["path",{d:"m9 22 3-8 3 8",key:"wees03"}],["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M18 18.7a9 9 0 1 0-12 0",key:"dhzg4g"}]]);const Pm=c("figma",[["path",{d:"M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z",key:"1340ok"}],["path",{d:"M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z",key:"1hz3m3"}],["path",{d:"M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z",key:"1oz8n2"}],["path",{d:"M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z",key:"1ff65i"}],["path",{d:"M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z",key:"pdip6e"}]]);const Tm=c("file-archive",[["path",{d:"M13.659 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v11.5",key:"4pqfef"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 12v-1",key:"1ej8lb"}],["path",{d:"M8 18v-2",key:"qcmpov"}],["path",{d:"M8 7V6",key:"1nbb54"}],["circle",{cx:"8",cy:"20",r:"2",key:"ckkr5m"}]]);const ja=c("file-axis-3d",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m8 18 4-4",key:"12zab0"}],["path",{d:"M8 10v8h8",key:"tlaukw"}]]);const Ha=c("file-badge",[["path",{d:"M13 22h5a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.3",key:"cvl1xm"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m7.69 16.479 1.29 4.88a.5.5 0 0 1-.698.591l-1.843-.849a1 1 0 0 0-.879.001l-1.846.85a.5.5 0 0 1-.692-.593l1.29-4.88",key:"1ff7gj"}],["circle",{cx:"6",cy:"14",r:"3",key:"a1xfv6"}]]);const Dm=c("file-box",[["path",{d:"M14.5 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.8",key:"1kchwa"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M11.7 14.2 7 17l-4.7-2.8",key:"1yk8tc"}],["path",{d:"M3 13.1a2 2 0 0 0-.999 1.76v3.24a2 2 0 0 0 .969 1.78L6 21.7a2 2 0 0 0 2.03.01L11 19.9a2 2 0 0 0 1-1.76V14.9a2 2 0 0 0-.97-1.78L8 11.3a2 2 0 0 0-2.03-.01z",key:"19flxy"}],["path",{d:"M7 17v5",key:"1yj1jh"}]]);const Va=c("file-braces-corner",[["path",{d:"M14 22h4a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v6",key:"14cnrg"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M5 14a1 1 0 0 0-1 1v2a1 1 0 0 1-1 1 1 1 0 0 1 1 1v2a1 1 0 0 0 1 1",key:"sr0ebq"}],["path",{d:"M9 22a1 1 0 0 0 1-1v-2a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-2a1 1 0 0 0-1-1",key:"w793db"}]]);const Fa=c("file-braces",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1",key:"1oajmo"}],["path",{d:"M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1",key:"mpwhp6"}]]);const Ba=c("file-chart-column",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 18v-1",key:"zg0ygc"}],["path",{d:"M12 18v-6",key:"17g6i2"}],["path",{d:"M16 18v-3",key:"j5jt4h"}]]);const Wa=c("file-chart-column-increasing",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 18v-2",key:"qcmpov"}],["path",{d:"M12 18v-4",key:"q1q25u"}],["path",{d:"M16 18v-6",key:"15y0np"}]]);const Ua=c("file-chart-line",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m16 13-3.5 3.5-2-2L8 17",key:"zz7yod"}]]);const Ra=c("file-chart-pie",[["path",{d:"M15.941 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.704l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.512",key:"13hoie"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M4.017 11.512a6 6 0 1 0 8.466 8.475",key:"s6vs5t"}],["path",{d:"M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.008.995-.917a6 6 0 0 1 4.922 4.922c.091.544-.365.995-.917.995z",key:"1dl6s6"}]]);const Ga=c("file-check-corner",[["path",{d:"M10.5 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v6",key:"g5mvt7"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m14 20 2 2 4-4",key:"15kota"}]]);const Em=c("file-check",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m9 15 2 2 4-4",key:"1grp1n"}]]);const zm=c("file-clock",[["path",{d:"M16 22h2a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v2.85",key:"ryk6xj"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 14v2.2l1.6 1",key:"6m4bie"}],["circle",{cx:"8",cy:"16",r:"6",key:"10v15b"}]]);const Ka=c("file-code-corner",[["path",{d:"M4 12.15V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-3.35",key:"1wthlu"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m5 16-3 3 3 3",key:"331omg"}],["path",{d:"m9 22 3-3-3-3",key:"lsp7cz"}]]);const Om=c("file-code",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 12.5 8 15l2 2.5",key:"1tg20x"}],["path",{d:"m14 12.5 2 2.5-2 2.5",key:"yinavb"}]]);const Ya=c("file-cog",[["path",{d:"M13.85 22H18a2 2 0 0 0 2-2V8a2 2 0 0 0-.586-1.414l-4-4A2 2 0 0 0 14 2H6a2 2 0 0 0-2 2v6.6",key:"1l4p50"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m3.305 19.53.923-.382",key:"ao1pio"}],["path",{d:"m4.228 16.852-.924-.383",key:"1fv9zy"}],["path",{d:"m5.852 15.228-.383-.923",key:"1a9hc2"}],["path",{d:"m5.852 20.772-.383.924",key:"1sh9ke"}],["path",{d:"m8.148 15.228.383-.923",key:"4yu6lf"}],["path",{d:"m8.53 21.696-.382-.924",key:"18b0s9"}],["path",{d:"m9.773 16.852.922-.383",key:"ti6xop"}],["path",{d:"m9.773 19.148.922.383",key:"rws47d"}],["circle",{cx:"7",cy:"18",r:"3",key:"lvkj7j"}]]);const qm=c("file-digit",[["path",{d:"M4 12V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2",key:"jrl274"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 16h2v6",key:"1bxocy"}],["path",{d:"M10 22h4",key:"ceow96"}],["rect",{x:"2",y:"16",width:"4",height:"6",rx:"2",key:"r45zd0"}]]);const jm=c("file-down",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M12 18v-6",key:"17g6i2"}],["path",{d:"m9 15 3 3 3-3",key:"1npd3o"}]]);const Hm=c("file-diff",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M9 10h6",key:"9gxzsh"}],["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M9 17h6",key:"r8uit2"}]]);const Xa=c("file-exclamation-point",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);const mo=c("file-headphone",[["path",{d:"M4 6.835V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-.343",key:"1vfytu"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M2 19a2 2 0 0 1 4 0v1a2 2 0 0 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 0 1-4 0v-1a2 2 0 0 1 4 0",key:"1etmh7"}]]);const Vm=c("file-heart",[["path",{d:"M13 22h5a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v7",key:"oagw2b"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M3.62 18.8A2.25 2.25 0 1 1 7 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a1 1 0 0 1-1.507 0z",key:"rg3psg"}]]);const Fm=c("file-image",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["circle",{cx:"10",cy:"12",r:"2",key:"737tya"}],["path",{d:"m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22",key:"wt3hpn"}]]);const Bm=c("file-input",[["path",{d:"M4 11V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-1",key:"1q9hii"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M2 15h10",key:"jfw4w8"}],["path",{d:"m9 18 3-3-3-3",key:"112psh"}]]);const Za=c("file-key",[["path",{d:"M10.65 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v10.1",key:"1a2hbp"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m10 15 1 1",key:"1h4vmv"}],["path",{d:"m11 14-4.586 4.586",key:"maylof"}],["circle",{cx:"5",cy:"20",r:"2",key:"860zyv"}]]);const Qa=c("file-lock",[["path",{d:"M4 9.8V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-3",key:"1432pc"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M9 17v-2a2 2 0 0 0-4 0v2",key:"168m41"}],["rect",{width:"8",height:"5",x:"3",y:"17",rx:"1",key:"o8vfew"}]]);const Ja=c("file-minus-corner",[["path",{d:"M20 14V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12",key:"l9p8hp"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M14 18h6",key:"1m8k6r"}]]);const Wm=c("file-minus",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M9 15h6",key:"cctwl0"}]]);const Um=c("file-music",[["path",{d:"M11.65 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v10.35",key:"5ad7z2"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 20v-7l3 1.474",key:"1ggyb9"}],["circle",{cx:"6",cy:"20",r:"2",key:"j7wjp0"}]]);const Rm=c("file-output",[["path",{d:"M4.226 20.925A2 2 0 0 0 6 22h12a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.127",key:"wfxp4w"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m5 11-3 3",key:"1dgrs4"}],["path",{d:"m5 17-3-3h10",key:"1mvvaf"}]]);const er=c("file-pen-line",[["path",{d:"m18.226 5.226-2.52-2.52A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.351",key:"1k2beg"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"2t3380"}],["path",{d:"M8 18h1",key:"13wk12"}]]);const tr=c("file-pen",[["path",{d:"M12.659 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v9.34",key:"o6klzx"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10.378 12.622a1 1 0 0 1 3 3.003L8.36 20.637a2 2 0 0 1-.854.506l-2.867.837a.5.5 0 0 1-.62-.62l.836-2.869a2 2 0 0 1 .506-.853z",key:"zhnas1"}]]);const or=c("file-play",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M15.033 13.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .967-.56z",key:"1tzo1f"}]]);const nr=c("file-plus-corner",[["path",{d:"M11.35 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5.35",key:"17jvcc"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M14 19h6",key:"bvotb8"}],["path",{d:"M17 16v6",key:"18yu1i"}]]);const Gm=c("file-plus",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M9 15h6",key:"cctwl0"}],["path",{d:"M12 18v-6",key:"17g6i2"}]]);const ar=c("file-question-mark",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M12 17h.01",key:"p32p05"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3",key:"mhlwft"}]]);const Km=c("file-scan",[["path",{d:"M20 10V8a2.4 2.4 0 0 0-.706-1.704l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4.35",key:"1cdjst"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M16 14a2 2 0 0 0-2 2",key:"ceaadl"}],["path",{d:"M16 22a2 2 0 0 1-2-2",key:"1wqh5n"}],["path",{d:"M20 14a2 2 0 0 1 2 2",key:"1ny6zw"}],["path",{d:"M20 22a2 2 0 0 0 2-2",key:"1l9q4k"}]]);const rr=c("file-search-corner",[["path",{d:"M11.1 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.589 3.588A2.4 2.4 0 0 1 20 8v3.25",key:"uh4ikj"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m21 22-2.88-2.88",key:"9dd25w"}],["circle",{cx:"16",cy:"17",r:"3",key:"11br10"}]]);const Ym=c("file-search",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["circle",{cx:"11.5",cy:"14.5",r:"2.5",key:"1bq0ko"}],["path",{d:"M13.3 16.3 15 18",key:"2quom7"}]]);const ir=c("file-signal",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M11.5 13.5a2.5 2.5 0 0 1 0 3",key:"1fccat"}],["path",{d:"M15 12a5 5 0 0 1 0 6",key:"ps46cm"}]]);const Xm=c("file-sliders",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M10 11v2",key:"1s651w"}],["path",{d:"M8 17h8",key:"wh5c61"}],["path",{d:"M14 16v2",key:"12fp5e"}]]);const Zm=c("file-spreadsheet",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 13h2",key:"yr2amv"}],["path",{d:"M14 13h2",key:"un5t4a"}],["path",{d:"M8 17h2",key:"2yhykz"}],["path",{d:"M14 17h2",key:"10kma7"}]]);const Qm=c("file-stack",[["path",{d:"M11 21a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1",key:"likhh7"}],["path",{d:"M16 16a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1",key:"17ky3x"}],["path",{d:"M21 6a2 2 0 0 0-.586-1.414l-2-2A2 2 0 0 0 17 2h-3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1z",key:"1hyeo0"}]]);const Jm=c("file-symlink",[["path",{d:"M4 11V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7",key:"huwfnr"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m10 18 3-3-3-3",key:"18f6ys"}]]);const ek=c("file-terminal",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m8 16 2-2-2-2",key:"10vzyd"}],["path",{d:"M12 18h4",key:"1wd2n7"}]]);const tk=c("file-text",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]]);const cr=c("file-type-corner",[["path",{d:"M12 22h6a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v6",key:"15usau"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M3 16v-1.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5V16",key:"s1gz5"}],["path",{d:"M6 22h2",key:"194x9m"}],["path",{d:"M7 14v8",key:"11ixej"}]]);const ok=c("file-type",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M11 18h2",key:"12mj7e"}],["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5",key:"qbrxap"}]]);const nk=c("file-up",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"m15 15-3-3-3 3",key:"15xj92"}]]);const ak=c("file-user",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M16 22a4 4 0 0 0-8 0",key:"7a83pg"}],["circle",{cx:"12",cy:"15",r:"3",key:"g36mzq"}]]);const rk=c("file-volume",[["path",{d:"M4 11.55V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-1.95",key:"44gpjv"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M12 15a5 5 0 0 1 0 6",key:"oxg87a"}],["path",{d:"M8 14.502a.5.5 0 0 0-.826-.381l-1.893 1.631a1 1 0 0 1-.651.243H3.5a.5.5 0 0 0-.5.501v3.006a.5.5 0 0 0 .5.501h1.129a1 1 0 0 1 .652.243l1.893 1.633a.5.5 0 0 0 .826-.38z",key:"8rtoi1"}]]);const sr=c("file-video-camera",[["path",{d:"M4 12V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2",key:"jrl274"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m10 17.843 3.033-1.755a.64.64 0 0 1 .967.56v4.704a.65.65 0 0 1-.967.56L10 20.157",key:"17aeo9"}],["rect",{width:"7",height:"6",x:"3",y:"16",rx:"1",key:"s27ndx"}]]);const dr=c("file-x-corner",[["path",{d:"M11 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5",key:"1jo35a"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m15 17 5 5",key:"36xl1x"}],["path",{d:"m20 17-5 5",key:"vdz27y"}]]);const ik=c("file-x",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m14.5 12.5-5 5",key:"b62r18"}],["path",{d:"m9.5 12.5 5 5",key:"1rk7el"}]]);const Gs=c("file",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}]]);const ck=c("files",[["path",{d:"M15 2h-4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8",key:"14sh0y"}],["path",{d:"M16.706 2.706A2.4 2.4 0 0 0 15 2v5a1 1 0 0 0 1 1h5a2.4 2.4 0 0 0-.706-1.706z",key:"1970lx"}],["path",{d:"M5 7a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 1.732-1",key:"l4dndm"}]]);const sk=c("film",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 3v18",key:"bbkbws"}],["path",{d:"M3 7.5h4",key:"zfgn84"}],["path",{d:"M3 12h18",key:"1i2n21"}],["path",{d:"M3 16.5h4",key:"1230mu"}],["path",{d:"M17 3v18",key:"in4fa5"}],["path",{d:"M17 7.5h4",key:"myr1c1"}],["path",{d:"M17 16.5h4",key:"go4c1d"}]]);const lr=c("fingerprint-pattern",[["path",{d:"M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4",key:"1nerag"}],["path",{d:"M14 13.12c0 2.38 0 6.38-1 8.88",key:"o46ks0"}],["path",{d:"M17.29 21.02c.12-.6.43-2.3.5-3.02",key:"ptglia"}],["path",{d:"M2 12a10 10 0 0 1 18-6",key:"ydlgp0"}],["path",{d:"M2 16h.01",key:"1gqxmh"}],["path",{d:"M21.8 16c.2-2 .131-5.354 0-6",key:"drycrb"}],["path",{d:"M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2",key:"1tidbn"}],["path",{d:"M8.65 22c.21-.66.45-1.32.57-2",key:"13wd9y"}],["path",{d:"M9 6.8a6 6 0 0 1 9 5.2v2",key:"1fr1j5"}]]);const dk=c("fire-extinguisher",[["path",{d:"M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5",key:"sqyvz"}],["path",{d:"M9 18h8",key:"i7pszb"}],["path",{d:"M18 3h-3",key:"7idoqj"}],["path",{d:"M11 3a6 6 0 0 0-6 6v11",key:"1v5je3"}],["path",{d:"M5 13h4",key:"svpcxo"}],["path",{d:"M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z",key:"vsjego"}]]);const lk=c("fish-off",[["path",{d:"M18 12.47v.03m0-.5v.47m-.475 5.056A6.744 6.744 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.114-2.433 2.121-3.38m3.444-2.088A8.802 8.802 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.177-1.413 3.058",key:"1j1hse"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.372A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.728-3.618",key:"1q46z8"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20",key:"1407gh"}]]);const uk=c("fish-symbol",[["path",{d:"M2 16s9-15 20-4C11 23 2 8 2 8",key:"h4oh4o"}]]);const hk=c("fish",[["path",{d:"M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-.94 3.47-3.44 6-7 6s-7.56-2.53-8.5-6Z",key:"15baut"}],["path",{d:"M18 12v.5",key:"18hhni"}],["path",{d:"M16 17.93a9.77 9.77 0 0 1 0-11.86",key:"16dt7o"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33",key:"l9di03"}],["path",{d:"M10.46 7.26C10.2 5.88 9.17 4.24 8 3h5.8a2 2 0 0 1 1.98 1.67l.23 1.4",key:"1kjonw"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98",key:"1zlm23"}]]);const pk=c("fishing-hook",[["path",{d:"m17.586 11.414-5.93 5.93a1 1 0 0 1-8-8l3.137-3.137a.707.707 0 0 1 1.207.5V10",key:"157y8s"}],["path",{d:"M20.414 8.586 22 7",key:"5g2s34"}],["circle",{cx:"19",cy:"10",r:"2",key:"7363ft"}]]);const yk=c("flag-off",[["path",{d:"M16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528",key:"1q158e"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M4 22V4",key:"1plyxx"}],["path",{d:"M7.656 2H8c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10.347",key:"xj1b71"}]]);const fk=c("flag-triangle-left",[["path",{d:"M18 22V2.8a.8.8 0 0 0-1.17-.71L5.45 7.78a.8.8 0 0 0 0 1.44L18 15.5",key:"rbbtmw"}]]);const mk=c("flag-triangle-right",[["path",{d:"M6 22V2.8a.8.8 0 0 1 1.17-.71l11.38 5.69a.8.8 0 0 1 0 1.44L6 15.5",key:"kfjsu0"}]]);const kk=c("flag",[["path",{d:"M4 22V4a1 1 0 0 1 .4-.8A6 6 0 0 1 8 2c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10a1 1 0 0 1-.4.8A6 6 0 0 1 16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528",key:"1jaruq"}]]);const gk=c("flame-kindling",[["path",{d:"M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z",key:"1ir223"}],["path",{d:"m5 22 14-4",key:"1brv4h"}],["path",{d:"m5 18 14 4",key:"lgyyje"}]]);const vk=c("flame",[["path",{d:"M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4",key:"1slcih"}]]);const _k=c("flashlight-off",[["path",{d:"M11.652 6H18",key:"voqkpr"}],["path",{d:"M12 13v1",key:"176q98"}],["path",{d:"M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-8a4 4 0 0 0-.8-2.4l-.6-.8A3 3 0 0 1 6 7V6",key:"dzyf92"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M7.649 2H17a1 1 0 0 1 1 1v4a3 3 0 0 1-.6 1.8l-.6.8a4 4 0 0 0-.55 1.007",key:"1hvcfn"}]]);const bk=c("flashlight",[["path",{d:"M12 13v1",key:"176q98"}],["path",{d:"M17 2a1 1 0 0 1 1 1v4a3 3 0 0 1-.6 1.8l-.6.8A4 4 0 0 0 16 12v8a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-8a4 4 0 0 0-.8-2.4l-.6-.8A3 3 0 0 1 6 7V3a1 1 0 0 1 1-1z",key:"17vh7j"}],["path",{d:"M6 6h12",key:"n6hhss"}]]);const Mk=c("flask-conical-off",[["path",{d:"M10 2v2.343",key:"15t272"}],["path",{d:"M14 2v6.343",key:"sxr80q"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20 20a2 2 0 0 1-2 2H6a2 2 0 0 1-1.755-2.96l5.227-9.563",key:"k0duyd"}],["path",{d:"M6.453 15H15",key:"1f0z33"}],["path",{d:"M8.5 2h7",key:"csnxdl"}]]);const wk=c("flask-conical",[["path",{d:"M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2",key:"18mbvz"}],["path",{d:"M6.453 15h11.094",key:"3shlmq"}],["path",{d:"M8.5 2h7",key:"csnxdl"}]]);const xk=c("flask-round",[["path",{d:"M10 2v6.292a7 7 0 1 0 4 0V2",key:"1s42pc"}],["path",{d:"M5 15h14",key:"m0yey3"}],["path",{d:"M8.5 2h7",key:"csnxdl"}]]);const Nk=c("flip-horizontal-2",[["path",{d:"m3 7 5 5-5 5V7",key:"couhi7"}],["path",{d:"m21 7-5 5 5 5V7",key:"6ouia7"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 2v2",key:"tus03m"}]]);const Ck=c("flip-horizontal",[["path",{d:"M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3",key:"1i73f7"}],["path",{d:"M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3",key:"saxlbk"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 2v2",key:"tus03m"}]]);const $k=c("flip-vertical-2",[["path",{d:"m17 3-5 5-5-5h10",key:"1ftt6x"}],["path",{d:"m17 21-5-5-5 5h10",key:"1m0wmu"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}]]);const Sk=c("flip-vertical",[["path",{d:"M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3",key:"14bfxa"}],["path",{d:"M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3",key:"14rx03"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}]]);const Lk=c("flower-2",[["path",{d:"M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1",key:"3pnvol"}],["circle",{cx:"12",cy:"8",r:"2",key:"1822b1"}],["path",{d:"M12 10v12",key:"6ubwww"}],["path",{d:"M12 22c4.2 0 7-1.667 7-5-4.2 0-7 1.667-7 5Z",key:"9hd38g"}],["path",{d:"M12 22c-4.2 0-7-1.667-7-5 4.2 0 7 1.667 7 5Z",key:"ufn41s"}]]);const Ik=c("flower",[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5",key:"14wa3c"}],["path",{d:"M12 7.5V9",key:"1oy5b0"}],["path",{d:"M7.5 12H9",key:"eltsq1"}],["path",{d:"M16.5 12H15",key:"vk5kw4"}],["path",{d:"M12 16.5V15",key:"k7eayi"}],["path",{d:"m8 8 1.88 1.88",key:"nxy4qf"}],["path",{d:"M14.12 9.88 16 8",key:"1lst6k"}],["path",{d:"m8 16 1.88-1.88",key:"h2eex1"}],["path",{d:"M14.12 14.12 16 16",key:"uqkrx3"}]]);const Ak=c("focus",[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}]]);const Pk=c("fold-vertical",[["path",{d:"M12 22v-6",key:"6o8u61"}],["path",{d:"M12 8V2",key:"1wkif3"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}],["path",{d:"m15 19-3-3-3 3",key:"e37ymu"}],["path",{d:"m15 5-3 3-3-3",key:"19d6lf"}]]);const Tk=c("fold-horizontal",[["path",{d:"M2 12h6",key:"1wqiqv"}],["path",{d:"M22 12h-6",key:"1eg9hc"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m19 9-3 3 3 3",key:"12ol22"}],["path",{d:"m5 15 3-3-3-3",key:"1kdhjc"}]]);const Dk=c("folder-archive",[["circle",{cx:"15",cy:"19",r:"2",key:"u2pros"}],["path",{d:"M20.9 19.8A2 2 0 0 0 22 18V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h5.1",key:"1jj40k"}],["path",{d:"M15 11v-1",key:"cntcp"}],["path",{d:"M15 17v-2",key:"1279jj"}]]);const Ek=c("folder-check",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"m9 13 2 2 4-4",key:"6343dt"}]]);const zk=c("folder-clock",[["path",{d:"M16 14v2.2l1.6 1",key:"fo4ql5"}],["path",{d:"M7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2",key:"1urifu"}],["circle",{cx:"16",cy:"16",r:"6",key:"qoo3c4"}]]);const Ok=c("folder-closed",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M2 10h20",key:"1ir3d8"}]]);const qk=c("folder-code",[["path",{d:"M10 10.5 8 13l2 2.5",key:"m4t9c1"}],["path",{d:"m14 10.5 2 2.5-2 2.5",key:"14w2eb"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z",key:"1u1bxd"}]]);const jk=c("folder-dot",[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",key:"1fr9dc"}],["circle",{cx:"12",cy:"13",r:"1",key:"49l61u"}]]);const ur=c("folder-cog",[["path",{d:"M10.3 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.98a2 2 0 0 1 1.69.9l.66 1.2A2 2 0 0 0 12 6h8a2 2 0 0 1 2 2v3.3",key:"128dxu"}],["path",{d:"m14.305 19.53.923-.382",key:"3m78fa"}],["path",{d:"m15.228 16.852-.923-.383",key:"npixar"}],["path",{d:"m16.852 15.228-.383-.923",key:"5xggr7"}],["path",{d:"m16.852 20.772-.383.924",key:"dpfhf9"}],["path",{d:"m19.148 15.228.383-.923",key:"1reyyz"}],["path",{d:"m19.53 21.696-.382-.924",key:"1goivc"}],["path",{d:"m20.772 16.852.924-.383",key:"htqkph"}],["path",{d:"m20.772 19.148.924.383",key:"9w9pjp"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]]);const Hk=c("folder-down",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"m15 13-3 3-3-3",key:"6j2sf0"}]]);const Vk=c("folder-git-2",[["path",{d:"M18 19a5 5 0 0 1-5-5v8",key:"sz5oeg"}],["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5",key:"1w6njk"}],["circle",{cx:"13",cy:"12",r:"2",key:"1j92g6"}],["circle",{cx:"20",cy:"19",r:"2",key:"1obnsp"}]]);const Fk=c("folder-git",[["circle",{cx:"12",cy:"13",r:"2",key:"1c1ljs"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M14 13h3",key:"1dgedf"}],["path",{d:"M7 13h3",key:"1pygq7"}]]);const Bk=c("folder-heart",[["path",{d:"M10.638 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v3.417",key:"10r6g4"}],["path",{d:"M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z",key:"15cy7q"}]]);const Wk=c("folder-input",[["path",{d:"M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1",key:"fm4g5t"}],["path",{d:"M2 13h10",key:"pgb2dq"}],["path",{d:"m9 16 3-3-3-3",key:"6m91ic"}]]);const Uk=c("folder-key",[["circle",{cx:"16",cy:"20",r:"2",key:"1vifvg"}],["path",{d:"M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2",key:"3hgo9p"}],["path",{d:"m22 14-4.5 4.5",key:"1ef6z8"}],["path",{d:"m21 15 1 1",key:"1ejcpy"}]]);const Rk=c("folder-kanban",[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",key:"1fr9dc"}],["path",{d:"M8 10v4",key:"tgpxqk"}],["path",{d:"M12 10v2",key:"hh53o1"}],["path",{d:"M16 10v6",key:"1d6xys"}]]);const Gk=c("folder-lock",[["rect",{width:"8",height:"5",x:"14",y:"17",rx:"1",key:"19aais"}],["path",{d:"M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2.5",key:"1w6v7t"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2",key:"pwaxnr"}]]);const Kk=c("folder-minus",[["path",{d:"M9 13h6",key:"1uhe8q"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]]);const Yk=c("folder-open-dot",[["path",{d:"m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2",key:"1nmvlm"}],["circle",{cx:"14",cy:"15",r:"1",key:"1gm4qj"}]]);const Ks=c("folder-open",[["path",{d:"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2",key:"usdka0"}]]);const Xk=c("folder-output",[["path",{d:"M2 7.5V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-1.5",key:"1yk7aj"}],["path",{d:"M2 13h10",key:"pgb2dq"}],["path",{d:"m5 10-3 3 3 3",key:"1r8ie0"}]]);const hr=c("folder-pen",[["path",{d:"M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5",key:"a8xqs0"}],["path",{d:"M11.378 13.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1saktj"}]]);const Zk=c("folder-plus",[["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"M9 13h6",key:"1uhe8q"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]]);const Qk=c("folder-root",[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",key:"1fr9dc"}],["circle",{cx:"12",cy:"13",r:"2",key:"1c1ljs"}],["path",{d:"M12 15v5",key:"11xva1"}]]);const Jk=c("folder-search-2",[["circle",{cx:"11.5",cy:"12.5",r:"2.5",key:"1ea5ju"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M13.3 14.3 15 16",key:"1y4v1n"}]]);const eg=c("folder-search",[["path",{d:"M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1",key:"1bw5m7"}],["path",{d:"m21 21-1.9-1.9",key:"1g2n9r"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}]]);const tg=c("folder-symlink",[["path",{d:"M2 9.35V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7",key:"y8kt7d"}],["path",{d:"m8 16 3-3-3-3",key:"rlqrt1"}]]);const og=c("folder-sync",[["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v.5",key:"1dkoa9"}],["path",{d:"M12 10v4h4",key:"1czhmt"}],["path",{d:"m12 14 1.535-1.605a5 5 0 0 1 8 1.5",key:"lvuxfi"}],["path",{d:"M22 22v-4h-4",key:"1ewp4q"}],["path",{d:"m22 18-1.535 1.605a5 5 0 0 1-8-1.5",key:"14ync0"}]]);const ng=c("folder-tree",[["path",{d:"M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z",key:"hod4my"}],["path",{d:"M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z",key:"w4yl2u"}],["path",{d:"M3 5a2 2 0 0 0 2 2h3",key:"f2jnh7"}],["path",{d:"M3 3v13a2 2 0 0 0 2 2h3",key:"k8epm1"}]]);const ag=c("folder-up",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"m9 13 3-3 3 3",key:"1pxg3c"}]]);const Ys=c("folder",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]]);const rg=c("folders",[["path",{d:"M20 5a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h2.5a1.5 1.5 0 0 1 1.2.6l.6.8a1.5 1.5 0 0 0 1.2.6z",key:"a4852j"}],["path",{d:"M3 8.268a2 2 0 0 0-1 1.738V19a2 2 0 0 0 2 2h11a2 2 0 0 0 1.732-1",key:"yxbcw3"}]]);const ig=c("folder-x",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"m9.5 10.5 5 5",key:"ra9qjz"}],["path",{d:"m14.5 10.5-5 5",key:"l2rkpq"}]]);const cg=c("footprints",[["path",{d:"M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z",key:"1dudjm"}],["path",{d:"M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z",key:"l2t8xc"}],["path",{d:"M16 17h4",key:"1dejxt"}],["path",{d:"M4 13h4",key:"1bwh8b"}]]);const sg=c("forklift",[["path",{d:"M12 12H5a2 2 0 0 0-2 2v5",key:"7zsz91"}],["circle",{cx:"13",cy:"19",r:"2",key:"wjnkru"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}],["path",{d:"M8 19h3m5-17v17h6M6 12V7c0-1.1.9-2 2-2h3l5 5",key:"13bk1p"}]]);const dg=c("form",[["path",{d:"M4 14h6",key:"77gv2w"}],["path",{d:"M4 2h10",key:"a2b314"}],["rect",{x:"4",y:"18",width:"16",height:"4",rx:"1",key:"sybzq6"}],["rect",{x:"4",y:"6",width:"16",height:"4",rx:"1",key:"1osc9e"}]]);const lg=c("forward",[["path",{d:"m15 17 5-5-5-5",key:"nf172w"}],["path",{d:"M4 18v-2a4 4 0 0 1 4-4h12",key:"jmiej9"}]]);const ug=c("frame",[["line",{x1:"22",x2:"2",y1:"6",y2:"6",key:"15w7dq"}],["line",{x1:"22",x2:"2",y1:"18",y2:"18",key:"1ip48p"}],["line",{x1:"6",x2:"6",y1:"2",y2:"22",key:"a2lnyx"}],["line",{x1:"18",x2:"18",y1:"2",y2:"22",key:"8vb6jd"}]]);const hg=c("framer",[["path",{d:"M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7",key:"1a2nng"}]]);const pg=c("frown",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2",key:"epbg0q"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]]);const yg=c("fuel",[["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5",key:"1wtuz0"}],["path",{d:"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16",key:"e09ifn"}],["path",{d:"M2 21h13",key:"1x0fut"}],["path",{d:"M3 9h11",key:"1p7c0w"}]]);const fg=c("fullscreen",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["rect",{width:"10",height:"8",x:"7",y:"8",rx:"1",key:"vys8me"}]]);const mg=c("funnel-plus",[["path",{d:"M13.354 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l1.218-1.348",key:"8mvsmf"}],["path",{d:"M16 6h6",key:"1dogtp"}],["path",{d:"M19 3v6",key:"1ytpjt"}]]);const pr=c("funnel-x",[["path",{d:"M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473",key:"ol2ft2"}],["path",{d:"m16.5 3.5 5 5",key:"15e6fa"}],["path",{d:"m21.5 3.5-5 5",key:"m0lwru"}]]);const kg=c("gallery-horizontal-end",[["path",{d:"M2 7v10",key:"a2pl2d"}],["path",{d:"M6 5v14",key:"1kq3d7"}],["rect",{width:"12",height:"18",x:"10",y:"3",rx:"2",key:"13i7bc"}]]);const yr=c("funnel",[["path",{d:"M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z",key:"sc7q7i"}]]);const gg=c("gallery-horizontal",[["path",{d:"M2 3v18",key:"pzttux"}],["rect",{width:"12",height:"18",x:"6",y:"3",rx:"2",key:"btr8bg"}],["path",{d:"M22 3v18",key:"6jf3v"}]]);const vg=c("gallery-thumbnails",[["rect",{width:"18",height:"14",x:"3",y:"3",rx:"2",key:"74y24f"}],["path",{d:"M4 21h1",key:"16zlid"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M19 21h1",key:"edywat"}]]);const _g=c("gallery-vertical-end",[["path",{d:"M7 2h10",key:"nczekb"}],["path",{d:"M5 6h14",key:"u2x4p"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2",key:"l0tzu3"}]]);const bg=c("gallery-vertical",[["path",{d:"M3 2h18",key:"15qxfx"}],["rect",{width:"18",height:"12",x:"3",y:"6",rx:"2",key:"1439r6"}],["path",{d:"M3 22h18",key:"8prr45"}]]);const Mg=c("gamepad-2",[["line",{x1:"6",x2:"10",y1:"11",y2:"11",key:"1gktln"}],["line",{x1:"8",x2:"8",y1:"9",y2:"13",key:"qnk9ow"}],["line",{x1:"15",x2:"15.01",y1:"12",y2:"12",key:"krot7o"}],["line",{x1:"18",x2:"18.01",y1:"10",y2:"10",key:"1lcuu1"}],["path",{d:"M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z",key:"mfqc10"}]]);const wg=c("gamepad-directional",[["path",{d:"M11.146 15.854a1.207 1.207 0 0 1 1.708 0l1.56 1.56A2 2 0 0 1 15 18.828V21a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2.172a2 2 0 0 1 .586-1.414z",key:"1re2og"}],["path",{d:"M18.828 15a2 2 0 0 1-1.414-.586l-1.56-1.56a1.207 1.207 0 0 1 0-1.708l1.56-1.56A2 2 0 0 1 18.828 9H21a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z",key:"1pchrj"}],["path",{d:"M6.586 14.414A2 2 0 0 1 5.172 15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2.172a2 2 0 0 1 1.414.586l1.56 1.56a1.207 1.207 0 0 1 0 1.708z",key:"16mt4c"}],["path",{d:"M9 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2.172a2 2 0 0 1-.586 1.414l-1.56 1.56a1.207 1.207 0 0 1-1.708 0l-1.56-1.56A2 2 0 0 1 9 5.172z",key:"19ox6c"}]]);const xg=c("gamepad",[["line",{x1:"6",x2:"10",y1:"12",y2:"12",key:"161bw2"}],["line",{x1:"8",x2:"8",y1:"10",y2:"14",key:"1i6ji0"}],["line",{x1:"15",x2:"15.01",y1:"13",y2:"13",key:"dqpgro"}],["line",{x1:"18",x2:"18.01",y1:"11",y2:"11",key:"meh2c"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}]]);const Ng=c("gauge",[["path",{d:"m12 14 4-4",key:"9kzdfg"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0",key:"19p75a"}]]);const Cg=c("gem",[["path",{d:"M10.5 3 8 9l4 13 4-13-2.5-6",key:"b3dvk1"}],["path",{d:"M17 3a2 2 0 0 1 1.6.8l3 4a2 2 0 0 1 .013 2.382l-7.99 10.986a2 2 0 0 1-3.247 0l-7.99-10.986A2 2 0 0 1 2.4 7.8l2.998-3.997A2 2 0 0 1 7 3z",key:"7w4byz"}],["path",{d:"M2 9h20",key:"16fsjt"}]]);const $g=c("gavel",[["path",{d:"m14 13-8.381 8.38a1 1 0 0 1-3.001-3l8.384-8.381",key:"pgg06f"}],["path",{d:"m16 16 6-6",key:"vzrcl6"}],["path",{d:"m21.5 10.5-8-8",key:"a17d9x"}],["path",{d:"m8 8 6-6",key:"18bi4p"}],["path",{d:"m8.5 7.5 8 8",key:"1oyaui"}]]);const Sg=c("ghost",[["path",{d:"M9 10h.01",key:"qbtxuw"}],["path",{d:"M15 10h.01",key:"1qmjsl"}],["path",{d:"M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z",key:"uwwb07"}]]);const Lg=c("georgian-lari",[["path",{d:"M11.5 21a7.5 7.5 0 1 1 7.35-9",key:"1gyj8k"}],["path",{d:"M13 12V3",key:"18om2a"}],["path",{d:"M4 21h16",key:"1h09gz"}],["path",{d:"M9 12V3",key:"geutu0"}]]);const Ig=c("gift",[["rect",{x:"3",y:"8",width:"18",height:"4",rx:"1",key:"bkv52"}],["path",{d:"M12 8v13",key:"1c76mn"}],["path",{d:"M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7",key:"6wjy6b"}],["path",{d:"M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5",key:"1ihvrl"}]]);const Ag=c("git-branch-minus",[["path",{d:"M15 6a9 9 0 0 0-9 9V3",key:"1cii5b"}],["path",{d:"M21 18h-6",key:"139f0c"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}]]);const Pg=c("git-branch-plus",[["path",{d:"M6 3v12",key:"qpgusn"}],["path",{d:"M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z",key:"1d02ji"}],["path",{d:"M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z",key:"chk6ph"}],["path",{d:"M15 6a9 9 0 0 0-9 9",key:"or332x"}],["path",{d:"M18 15v6",key:"9wciyi"}],["path",{d:"M21 18h-6",key:"139f0c"}]]);const Tg=c("git-branch",[["line",{x1:"6",x2:"6",y1:"3",y2:"15",key:"17qcm7"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["path",{d:"M18 9a9 9 0 0 1-9 9",key:"n2h4wq"}]]);const fr=c("git-commit-horizontal",[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["line",{x1:"3",x2:"9",y1:"12",y2:"12",key:"1dyftd"}],["line",{x1:"15",x2:"21",y1:"12",y2:"12",key:"oup4p8"}]]);const Dg=c("git-commit-vertical",[["path",{d:"M12 3v6",key:"1holv5"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"M12 15v6",key:"a9ows0"}]]);const Eg=c("git-compare-arrows",[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7",key:"1yj91y"}],["path",{d:"m15 9-3-3 3-3",key:"1lwv8l"}],["circle",{cx:"19",cy:"18",r:"3",key:"1qljk2"}],["path",{d:"M12 18H7a2 2 0 0 1-2-2V9",key:"16sdep"}],["path",{d:"m9 15 3 3-3 3",key:"1m3kbl"}]]);const zg=c("git-compare",[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7",key:"1yeb86"}],["path",{d:"M11 18H8a2 2 0 0 1-2-2V9",key:"19pyzm"}]]);const Og=c("git-fork",[["circle",{cx:"12",cy:"18",r:"3",key:"1mpf1b"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["path",{d:"M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9",key:"1uq4wg"}],["path",{d:"M12 12v3",key:"158kv8"}]]);const qg=c("git-graph",[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M5 9v6",key:"158jrl"}],["circle",{cx:"5",cy:"18",r:"3",key:"104gr9"}],["path",{d:"M12 3v18",key:"108xh3"}],["circle",{cx:"19",cy:"6",r:"3",key:"108a5v"}],["path",{d:"M16 15.7A9 9 0 0 0 19 9",key:"1e3vqb"}]]);const jg=c("git-merge",[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9",key:"7kw0sc"}]]);const Hg=c("git-pull-request-arrow",[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M5 9v12",key:"ih889a"}],["circle",{cx:"19",cy:"18",r:"3",key:"1qljk2"}],["path",{d:"m15 9-3-3 3-3",key:"1lwv8l"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7",key:"1yj91y"}]]);const Vg=c("git-pull-request-closed",[["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 9v12",key:"1sc30k"}],["path",{d:"m21 3-6 6",key:"16nqsk"}],["path",{d:"m21 9-6-6",key:"9j17rh"}],["path",{d:"M18 11.5V15",key:"65xf6f"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]]);const Fg=c("git-pull-request-create-arrow",[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M5 9v12",key:"ih889a"}],["path",{d:"m15 9-3-3 3-3",key:"1lwv8l"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v3",key:"1rbwk6"}],["path",{d:"M19 15v6",key:"10aioa"}],["path",{d:"M22 18h-6",key:"1d5gi5"}]]);const Bg=c("git-pull-request-create",[["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 9v12",key:"1sc30k"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v3",key:"1jb6z3"}],["path",{d:"M18 15v6",key:"9wciyi"}],["path",{d:"M21 18h-6",key:"139f0c"}]]);const Wg=c("git-pull-request-draft",[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M18 6V5",key:"1oao2s"}],["path",{d:"M18 11v-1",key:"11c8tz"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21",key:"rroup"}]]);const Ug=c("git-pull-request",[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7",key:"1yeb86"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21",key:"rroup"}]]);const Rg=c("github",[["path",{d:"M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4",key:"tonef"}],["path",{d:"M9 18c-4.51 2-5-2-7-2",key:"9comsn"}]]);const Gg=c("gitlab",[["path",{d:"m22 13.29-3.33-10a.42.42 0 0 0-.14-.18.38.38 0 0 0-.22-.11.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18l-2.26 6.67H8.32L6.1 3.26a.42.42 0 0 0-.1-.18.38.38 0 0 0-.26-.08.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18L2 13.29a.74.74 0 0 0 .27.83L12 21l9.69-6.88a.71.71 0 0 0 .31-.83Z",key:"148pdi"}]]);const Kg=c("glass-water",[["path",{d:"M5.116 4.104A1 1 0 0 1 6.11 3h11.78a1 1 0 0 1 .994 1.105L17.19 20.21A2 2 0 0 1 15.2 22H8.8a2 2 0 0 1-2-1.79z",key:"p55z4y"}],["path",{d:"M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0",key:"mjntcy"}]]);const Yg=c("glasses",[["circle",{cx:"6",cy:"15",r:"4",key:"vux9w4"}],["circle",{cx:"18",cy:"15",r:"4",key:"18o8ve"}],["path",{d:"M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2",key:"1ag4bs"}],["path",{d:"M2.5 13 5 7c.7-1.3 1.4-2 3-2",key:"1hm1gs"}],["path",{d:"M21.5 13 19 7c-.7-1.3-1.5-2-3-2",key:"1r31ai"}]]);const Xg=c("globe-lock",[["path",{d:"M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13",key:"qkt0x6"}],["path",{d:"M2 12h8.5",key:"ovaggd"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2",key:"1of5e8"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1",key:"1fmf51"}]]);const Zg=c("globe-x",[["path",{d:"m16 3 5 5",key:"1husv6"}],["path",{d:"M2 12h20A10 10 0 1 1 12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 4-10",key:"46evmv"}],["path",{d:"m21 3-5 5",key:"1g5oa7"}]]);const Qg=c("globe",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20",key:"13o1zl"}],["path",{d:"M2 12h20",key:"9i4pu4"}]]);const Jg=c("gpu",[["path",{d:"M2 21V3",key:"1bzk4w"}],["path",{d:"M2 5h18a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2.26",key:"1d64pi"}],["path",{d:"M7 17v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3",key:"5hbqbf"}],["circle",{cx:"16",cy:"11",r:"2",key:"qt15rb"}],["circle",{cx:"8",cy:"11",r:"2",key:"ssideg"}]]);const e4=c("goal",[["path",{d:"M12 13V2l8 4-8 4",key:"5wlwwj"}],["path",{d:"M20.561 10.222a9 9 0 1 1-12.55-5.29",key:"1c0wjv"}],["path",{d:"M8.002 9.997a5 5 0 1 0 8.9 2.02",key:"gb1g7m"}]]);const t4=c("graduation-cap",[["path",{d:"M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z",key:"j76jl0"}],["path",{d:"M22 10v6",key:"1lu8f3"}],["path",{d:"M6 12.5V16a6 3 0 0 0 12 0v-3.5",key:"1r8lef"}]]);const o4=c("grape",[["path",{d:"M22 5V2l-5.89 5.89",key:"1eenpo"}],["circle",{cx:"16.6",cy:"15.89",r:"3",key:"xjtalx"}],["circle",{cx:"8.11",cy:"7.4",r:"3",key:"u2fv6i"}],["circle",{cx:"12.35",cy:"11.65",r:"3",key:"i6i8g7"}],["circle",{cx:"13.91",cy:"5.85",r:"3",key:"6ye0dv"}],["circle",{cx:"18.15",cy:"10.09",r:"3",key:"snx9no"}],["circle",{cx:"6.56",cy:"13.2",r:"3",key:"17x4xg"}],["circle",{cx:"10.8",cy:"17.44",r:"3",key:"1hogw9"}],["circle",{cx:"5",cy:"19",r:"3",key:"1sn6vo"}]]);const mr=c("grid-2x2-check",[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",key:"11za1p"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}]]);const kr=c("grid-2x2-plus",[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",key:"11za1p"}],["path",{d:"M16 19h6",key:"xwg31i"}],["path",{d:"M19 22v-6",key:"qhmiwi"}]]);const gr=c("grid-2x2-x",[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",key:"11za1p"}],["path",{d:"m16 16 5 5",key:"8tpb07"}],["path",{d:"m16 21 5-5",key:"193jll"}]]);const vr=c("grid-2x2",[["path",{d:"M12 3v18",key:"108xh3"}],["path",{d:"M3 12h18",key:"1i2n21"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const n4=c("grid-3x2",[["path",{d:"M15 3v18",key:"14nvp0"}],["path",{d:"M3 12h18",key:"1i2n21"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const ko=c("grid-3x3",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"M15 3v18",key:"14nvp0"}]]);const a4=c("grip-horizontal",[["circle",{cx:"12",cy:"9",r:"1",key:"124mty"}],["circle",{cx:"19",cy:"9",r:"1",key:"1ruzo2"}],["circle",{cx:"5",cy:"9",r:"1",key:"1a8b28"}],["circle",{cx:"12",cy:"15",r:"1",key:"1e56xg"}],["circle",{cx:"19",cy:"15",r:"1",key:"1a92ep"}],["circle",{cx:"5",cy:"15",r:"1",key:"5r1jwy"}]]);const es=c("grip-vertical",[["circle",{cx:"9",cy:"12",r:"1",key:"1vctgf"}],["circle",{cx:"9",cy:"5",r:"1",key:"hp0tcf"}],["circle",{cx:"9",cy:"19",r:"1",key:"fkjjf6"}],["circle",{cx:"15",cy:"12",r:"1",key:"1tmaij"}],["circle",{cx:"15",cy:"5",r:"1",key:"19l28e"}],["circle",{cx:"15",cy:"19",r:"1",key:"f4zoj3"}]]);const r4=c("grip",[["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["circle",{cx:"19",cy:"5",r:"1",key:"w8mnmm"}],["circle",{cx:"5",cy:"5",r:"1",key:"lttvr7"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}],["circle",{cx:"12",cy:"19",r:"1",key:"lyex9k"}],["circle",{cx:"19",cy:"19",r:"1",key:"shf9b7"}],["circle",{cx:"5",cy:"19",r:"1",key:"bfqh0e"}]]);const i4=c("group",[["path",{d:"M3 7V5c0-1.1.9-2 2-2h2",key:"adw53z"}],["path",{d:"M17 3h2c1.1 0 2 .9 2 2v2",key:"an4l38"}],["path",{d:"M21 17v2c0 1.1-.9 2-2 2h-2",key:"144t0e"}],["path",{d:"M7 21H5c-1.1 0-2-.9-2-2v-2",key:"rtnfgi"}],["rect",{width:"7",height:"5",x:"7",y:"7",rx:"1",key:"1eyiv7"}],["rect",{width:"7",height:"5",x:"10",y:"12",rx:"1",key:"1qlmkx"}]]);const c4=c("guitar",[["path",{d:"m11.9 12.1 4.514-4.514",key:"109xqo"}],["path",{d:"M20.1 2.3a1 1 0 0 0-1.4 0l-1.114 1.114A2 2 0 0 0 17 4.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 17.828 7h1.344a2 2 0 0 0 1.414-.586L21.7 5.3a1 1 0 0 0 0-1.4z",key:"txyc8t"}],["path",{d:"m6 16 2 2",key:"16qmzd"}],["path",{d:"M8.23 9.85A3 3 0 0 1 11 8a5 5 0 0 1 5 5 3 3 0 0 1-1.85 2.77l-.92.38A2 2 0 0 0 12 18a4 4 0 0 1-4 4 6 6 0 0 1-6-6 4 4 0 0 1 4-4 2 2 0 0 0 1.85-1.23z",key:"1de1vg"}]]);const s4=c("ham",[["path",{d:"M13.144 21.144A7.274 10.445 45 1 0 2.856 10.856",key:"1k1t7q"}],["path",{d:"M13.144 21.144A7.274 4.365 45 0 0 2.856 10.856a7.274 4.365 45 0 0 10.288 10.288",key:"153t1g"}],["path",{d:"M16.565 10.435 18.6 8.4a2.501 2.501 0 1 0 1.65-4.65 2.5 2.5 0 1 0-4.66 1.66l-2.024 2.025",key:"gzrt0n"}],["path",{d:"m8.5 16.5-1-1",key:"otr954"}]]);const d4=c("hamburger",[["path",{d:"M12 16H4a2 2 0 1 1 0-4h16a2 2 0 1 1 0 4h-4.25",key:"5dloqd"}],["path",{d:"M5 12a2 2 0 0 1-2-2 9 7 0 0 1 18 0 2 2 0 0 1-2 2",key:"1vl3my"}],["path",{d:"M5 16a2 2 0 0 0-2 2 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 2 2 0 0 0-2-2q0 0 0 0",key:"1us75o"}],["path",{d:"m6.67 12 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2",key:"qqzweh"}]]);const l4=c("hammer",[["path",{d:"m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9",key:"1hayfq"}],["path",{d:"m18 15 4-4",key:"16gjal"}],["path",{d:"m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172v-.344a2 2 0 0 0-.586-1.414l-1.657-1.657A6 6 0 0 0 12.516 3H9l1.243 1.243A6 6 0 0 1 12 8.485V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5",key:"15ts47"}]]);const u4=c("hand-coins",[["path",{d:"M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17",key:"geh8rc"}],["path",{d:"m7 21 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",key:"1fto5m"}],["path",{d:"m2 16 6 6",key:"1pfhp9"}],["circle",{cx:"16",cy:"9",r:"2.9",key:"1n0dlu"}],["circle",{cx:"6",cy:"5",r:"3",key:"151irh"}]]);const h4=c("hand-fist",[["path",{d:"M12.035 17.012a3 3 0 0 0-3-3l-.311-.002a.72.72 0 0 1-.505-1.229l1.195-1.195A2 2 0 0 1 10.828 11H12a2 2 0 0 0 0-4H9.243a3 3 0 0 0-2.122.879l-2.707 2.707A4.83 4.83 0 0 0 3 14a8 8 0 0 0 8 8h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v2a2 2 0 1 0 4 0",key:"1ff7rl"}],["path",{d:"M13.888 9.662A2 2 0 0 0 17 8V5A2 2 0 1 0 13 5",key:"1xmd21"}],["path",{d:"M9 5A2 2 0 1 0 5 5V10",key:"f3wfjw"}],["path",{d:"M9 7V4A2 2 0 1 1 13 4V7.268",key:"eaoucv"}]]);const _r=c("hand-grab",[["path",{d:"M18 11.5V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4",key:"edstyy"}],["path",{d:"M14 10V8a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2",key:"19wdwo"}],["path",{d:"M10 9.9V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5",key:"1lugqo"}],["path",{d:"M6 14a2 2 0 0 0-2-2a2 2 0 0 0-2 2",key:"1hbeus"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0",key:"1etffm"}]]);const p4=c("hand-heart",[["path",{d:"M11 14h2a2 2 0 0 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16",key:"1v1a37"}],["path",{d:"m14.45 13.39 5.05-4.694C20.196 8 21 6.85 21 5.75a2.75 2.75 0 0 0-4.797-1.837.276.276 0 0 1-.406 0A2.75 2.75 0 0 0 11 5.75c0 1.2.802 2.248 1.5 2.946L16 11.95",key:"fhfbnt"}],["path",{d:"m2 15 6 6",key:"10dquu"}],["path",{d:"m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a1 1 0 0 0-2.75-2.91",key:"1x6kdw"}]]);const br=c("hand-helping",[["path",{d:"M11 12h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 14",key:"1j4xps"}],["path",{d:"m7 18 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",key:"uospg8"}],["path",{d:"m2 13 6 6",key:"16e5sb"}]]);const y4=c("hand-metal",[["path",{d:"M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4",key:"wc6myp"}],["path",{d:"M14 11V9a2 2 0 1 0-4 0v2",key:"94qvcw"}],["path",{d:"M10 10.5V5a2 2 0 1 0-4 0v9",key:"m1ah89"}],["path",{d:"m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5",key:"t1skq1"}]]);const f4=c("hand-platter",[["path",{d:"M12 3V2",key:"ar7q03"}],["path",{d:"m15.4 17.4 3.2-2.8a2 2 0 1 1 2.8 2.9l-3.6 3.3c-.7.8-1.7 1.2-2.8 1.2h-4c-1.1 0-2.1-.4-2.8-1.2l-1.302-1.464A1 1 0 0 0 6.151 19H5",key:"n2g93r"}],["path",{d:"M2 14h12a2 2 0 0 1 0 4h-2",key:"1o2jem"}],["path",{d:"M4 10h16",key:"img6z1"}],["path",{d:"M5 10a7 7 0 0 1 14 0",key:"1ega1o"}],["path",{d:"M5 14v6a1 1 0 0 1-1 1H2",key:"1hescx"}]]);const m4=c("hand",[["path",{d:"M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2",key:"1fvzgz"}],["path",{d:"M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2",key:"1kc0my"}],["path",{d:"M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8",key:"10h0bg"}],["path",{d:"M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15",key:"1s1gnw"}]]);const k4=c("handbag",[["path",{d:"M2.048 18.566A2 2 0 0 0 4 21h16a2 2 0 0 0 1.952-2.434l-2-9A2 2 0 0 0 18 8H6a2 2 0 0 0-1.952 1.566z",key:"1qbui5"}],["path",{d:"M8 11V6a4 4 0 0 1 8 0v5",key:"tcht90"}]]);const g4=c("handshake",[["path",{d:"m11 17 2 2a1 1 0 1 0 3-3",key:"efffak"}],["path",{d:"m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4",key:"9pr0kb"}],["path",{d:"m21 3 1 11h-2",key:"1tisrp"}],["path",{d:"M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3",key:"1uvwmv"}],["path",{d:"M3 4h8",key:"1ep09j"}]]);const v4=c("hard-drive-download",[["path",{d:"M12 2v8",key:"1q4o3n"}],["path",{d:"m16 6-4 4-4-4",key:"6wukr"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M10 18h.01",key:"h775k"}]]);const _4=c("hard-drive-upload",[["path",{d:"m16 6-4-4-4 4",key:"13yo43"}],["path",{d:"M12 2v8",key:"1q4o3n"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M10 18h.01",key:"h775k"}]]);const b4=c("hard-hat",[["path",{d:"M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5",key:"1p9q5i"}],["path",{d:"M14 6a6 6 0 0 1 6 6v3",key:"1hnv84"}],["path",{d:"M4 15v-3a6 6 0 0 1 6-6",key:"9ciidu"}],["rect",{x:"2",y:"15",width:"20",height:"4",rx:"1",key:"g3x8cw"}]]);const M4=c("hard-drive",[["line",{x1:"22",x2:"2",y1:"12",y2:"12",key:"1y58io"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",key:"oot6mr"}],["line",{x1:"6",x2:"6.01",y1:"16",y2:"16",key:"sgf278"}],["line",{x1:"10",x2:"10.01",y1:"16",y2:"16",key:"1l4acy"}]]);const w4=c("hash",[["line",{x1:"4",x2:"20",y1:"9",y2:"9",key:"4lhtct"}],["line",{x1:"4",x2:"20",y1:"15",y2:"15",key:"vyu0kd"}],["line",{x1:"10",x2:"8",y1:"3",y2:"21",key:"1ggp8o"}],["line",{x1:"16",x2:"14",y1:"3",y2:"21",key:"weycgp"}]]);const x4=c("hat-glasses",[["path",{d:"M14 18a2 2 0 0 0-4 0",key:"1v8fkw"}],["path",{d:"m19 11-2.11-6.657a2 2 0 0 0-2.752-1.148l-1.276.61A2 2 0 0 1 12 4H8.5a2 2 0 0 0-1.925 1.456L5 11",key:"1fkr7p"}],["path",{d:"M2 11h20",key:"3eubbj"}],["circle",{cx:"17",cy:"18",r:"3",key:"82mm0e"}],["circle",{cx:"7",cy:"18",r:"3",key:"lvkj7j"}]]);const N4=c("haze",[["path",{d:"m5.2 6.2 1.4 1.4",key:"17imol"}],["path",{d:"M2 13h2",key:"13gyu8"}],["path",{d:"M20 13h2",key:"16rner"}],["path",{d:"m17.4 7.6 1.4-1.4",key:"t4xlah"}],["path",{d:"M22 17H2",key:"1gtaj3"}],["path",{d:"M22 21H2",key:"1gy6en"}],["path",{d:"M16 13a4 4 0 0 0-8 0",key:"1dyczq"}],["path",{d:"M12 5V2.5",key:"1vytko"}]]);const C4=c("hd",[["path",{d:"M10 12H6",key:"15f2ro"}],["path",{d:"M10 15V9",key:"1lckn7"}],["path",{d:"M14 14.5a.5.5 0 0 0 .5.5h1a2.5 2.5 0 0 0 2.5-2.5v-1A2.5 2.5 0 0 0 15.5 9h-1a.5.5 0 0 0-.5.5z",key:"b3f847"}],["path",{d:"M6 15V9",key:"12stmj"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2",key:"qneu4z"}]]);const $4=c("hdmi-port",[["path",{d:"M22 9a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1l2 2h12l2-2h1a1 1 0 0 0 1-1Z",key:"2128wb"}],["path",{d:"M7.5 12h9",key:"1t0ckc"}]]);const S4=c("heading-1",[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"m17 12 3-2v8",key:"1hhhft"}]]);const L4=c("heading-2",[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1",key:"9jr5yi"}]]);const I4=c("heading-3",[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2",key:"68ncm8"}],["path",{d:"M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2",key:"1ejuhz"}]]);const A4=c("heading-4",[["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M17 10v3a1 1 0 0 0 1 1h3",key:"tj5zdr"}],["path",{d:"M21 10v8",key:"1kdml4"}],["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}]]);const P4=c("heading-5",[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M17 13v-3h4",key:"1nvgqp"}],["path",{d:"M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17",key:"2nebdn"}]]);const T4=c("heading-6",[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["circle",{cx:"19",cy:"16",r:"2",key:"15mx69"}],["path",{d:"M20 10c-2 2-3 3.5-3 6",key:"f35dl0"}]]);const D4=c("heading",[["path",{d:"M6 12h12",key:"8npq4p"}],["path",{d:"M6 20V4",key:"1w1bmo"}],["path",{d:"M18 20V4",key:"o2hl4u"}]]);const E4=c("headphone-off",[["path",{d:"M21 14h-1.343",key:"1jdnxi"}],["path",{d:"M9.128 3.47A9 9 0 0 1 21 12v3.343",key:"6kipu2"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20.414 20.414A2 2 0 0 1 19 21h-1a2 2 0 0 1-2-2v-3",key:"9x50f4"}],["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 2.636-6.364",key:"1bkxnm"}]]);const z4=c("headphones",[["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3",key:"1xhozi"}]]);const O4=c("headset",[["path",{d:"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z",key:"12oyoe"}],["path",{d:"M21 16v2a4 4 0 0 1-4 4h-5",key:"1x7m43"}]]);const q4=c("heart-crack",[["path",{d:"M12.409 5.824c-.702.792-1.15 1.496-1.415 2.166l2.153 2.156a.5.5 0 0 1 0 .707l-2.293 2.293a.5.5 0 0 0 0 .707L12 15",key:"idzbju"}],["path",{d:"M13.508 20.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.677.6.6 0 0 0 .818.001A5.5 5.5 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5z",key:"1su70f"}]]);const j4=c("heart-handshake",[["path",{d:"M19.414 14.414C21 12.828 22 11.5 22 9.5a5.5 5.5 0 0 0-9.591-3.676.6.6 0 0 1-.818.001A5.5 5.5 0 0 0 2 9.5c0 2.3 1.5 4 3 5.5l5.535 5.362a2 2 0 0 0 2.879.052 2.12 2.12 0 0 0-.004-3 2.124 2.124 0 1 0 3-3 2.124 2.124 0 0 0 3.004 0 2 2 0 0 0 0-2.828l-1.881-1.882a2.41 2.41 0 0 0-3.409 0l-1.71 1.71a2 2 0 0 1-2.828 0 2 2 0 0 1 0-2.828l2.823-2.762",key:"17lmqv"}]]);const H4=c("heart-minus",[["path",{d:"m14.876 18.99-1.368 1.323a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.244 1.572",key:"15yztm"}],["path",{d:"M15 15h6",key:"1u4692"}]]);const V4=c("heart-off",[["path",{d:"M10.5 4.893a5.5 5.5 0 0 1 1.091.931.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 1.872-1.002 3.356-2.187 4.655",key:"1inpfl"}],["path",{d:"m16.967 16.967-3.459 3.346a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 2.747-4.761",key:"vbc6x7"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const F4=c("heart-plus",[["path",{d:"m14.479 19.374-.971.939a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.219 1.49",key:"wg5jx"}],["path",{d:"M15 15h6",key:"1u4692"}],["path",{d:"M18 12v6",key:"1houu1"}]]);const B4=c("heart-pulse",[["path",{d:"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5",key:"mvr1a0"}],["path",{d:"M3.22 13H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27",key:"auskq0"}]]);const W4=c("heart",[["path",{d:"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5",key:"mvr1a0"}]]);const U4=c("heater",[["path",{d:"M11 8c2-3-2-3 0-6",key:"1ldv5m"}],["path",{d:"M15.5 8c2-3-2-3 0-6",key:"1otqoz"}],["path",{d:"M6 10h.01",key:"1lbq93"}],["path",{d:"M6 14h.01",key:"zudwn7"}],["path",{d:"M10 16v-4",key:"1c25yv"}],["path",{d:"M14 16v-4",key:"1dkbt8"}],["path",{d:"M18 16v-4",key:"1yg9me"}],["path",{d:"M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3",key:"1ubg90"}],["path",{d:"M5 20v2",key:"1abpe8"}],["path",{d:"M19 20v2",key:"kqn6ft"}]]);const R4=c("helicopter",[["path",{d:"M11 17v4",key:"14wq8k"}],["path",{d:"M14 3v8a2 2 0 0 0 2 2h5.865",key:"12oo5h"}],["path",{d:"M17 17v4",key:"hdt4hh"}],["path",{d:"M18 17a4 4 0 0 0 4-4 8 6 0 0 0-8-6 6 5 0 0 0-6 5v3a2 2 0 0 0 2 2z",key:"yynif"}],["path",{d:"M2 10v5",key:"sa5akn"}],["path",{d:"M6 3h16",key:"27qw71"}],["path",{d:"M7 21h14",key:"1ugz0u"}],["path",{d:"M8 13H2",key:"1thz1o"}]]);const G4=c("hexagon",[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",key:"yt0hxn"}]]);const K4=c("highlighter",[["path",{d:"m9 11-6 6v3h9l3-3",key:"1a3l36"}],["path",{d:"m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4",key:"14a9rk"}]]);const Y4=c("history",[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M12 7v5l4 2",key:"1fdv2h"}]]);const X4=c("hop-off",[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27",key:"qyzcap"}],["path",{d:"M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28",key:"y078lb"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26",key:"1utre3"}],["path",{d:"M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25",key:"17o9hm"}],["path",{d:"M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75",key:"1d1n4p"}],["path",{d:"M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24",key:"9uv3tt"}],["path",{d:"M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28",key:"1292wz"}],["path",{d:"M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05",key:"7ozu9p"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const Z4=c("hop",[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18",key:"18lxf1"}],["path",{d:"M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88",key:"vtfxrw"}],["path",{d:"M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36",key:"13hl71"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87",key:"1sl8oj"}],["path",{d:"M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08",key:"19c6kt"}],["path",{d:"M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57",key:"85ghs3"}],["path",{d:"M4.93 4.93 3 3a.7.7 0 0 1 0-1",key:"x087yj"}],["path",{d:"M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15",key:"11xdqo"}]]);const Q4=c("hospital",[["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3",key:"1rgiei"}],["path",{d:"M14 9h-4",key:"1w2s2s"}],["path",{d:"M18 11h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h2",key:"1tthqt"}],["path",{d:"M18 21V5a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16",key:"dw4p4i"}]]);const J4=c("hotel",[["path",{d:"M10 22v-6.57",key:"1wmca3"}],["path",{d:"M12 11h.01",key:"z322tv"}],["path",{d:"M12 7h.01",key:"1ivr5q"}],["path",{d:"M14 15.43V22",key:"1q2vjd"}],["path",{d:"M15 16a5 5 0 0 0-6 0",key:"o9wqvi"}],["path",{d:"M16 11h.01",key:"xkw8gn"}],["path",{d:"M16 7h.01",key:"1kdx03"}],["path",{d:"M8 11h.01",key:"1dfujw"}],["path",{d:"M8 7h.01",key:"1vti4s"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",key:"1uxh74"}]]);const e5=c("hourglass",[["path",{d:"M5 22h14",key:"ehvnwv"}],["path",{d:"M5 2h14",key:"pdyrp9"}],["path",{d:"M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22",key:"1d314k"}],["path",{d:"M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2",key:"1vvvr6"}]]);const t5=c("house-heart",[["path",{d:"M8.62 13.8A2.25 2.25 0 1 1 12 10.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z",key:"n9s7kx"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"r6nss1"}]]);const o5=c("house-plug",[["path",{d:"M10 12V8.964",key:"1vll13"}],["path",{d:"M14 12V8.964",key:"1x3qvg"}],["path",{d:"M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z",key:"ppykja"}],["path",{d:"M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2",key:"365xoy"}]]);const n5=c("house-plus",[["path",{d:"M12.35 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .71-1.53l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v2.35",key:"8ek5ge"}],["path",{d:"M14.8 12.4A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8",key:"1rbg29"}],["path",{d:"M15 18h6",key:"3b3c90"}],["path",{d:"M18 15v6",key:"9wciyi"}]]);const a5=c("house-wifi",[["path",{d:"M9.5 13.866a4 4 0 0 1 5 .01",key:"1wy54i"}],["path",{d:"M12 17h.01",key:"p32p05"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"r6nss1"}],["path",{d:"M7 10.754a8 8 0 0 1 10 0",key:"exoy2g"}]]);const Mr=c("house",[["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8",key:"5wwlr5"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"r6nss1"}]]);const wr=c("ice-cream-bowl",[["path",{d:"M12 17c5 0 8-2.69 8-6H4c0 3.31 3 6 8 6m-4 4h8m-4-3v3M5.14 11a3.5 3.5 0 1 1 6.71 0",key:"1uxfcu"}],["path",{d:"M12.14 11a3.5 3.5 0 1 1 6.71 0",key:"4k3m1s"}],["path",{d:"M15.5 6.5a3.5 3.5 0 1 0-7 0",key:"zmuahr"}]]);const xr=c("ice-cream-cone",[["path",{d:"m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11",key:"1v6356"}],["path",{d:"M17 7A5 5 0 0 0 7 7",key:"151p3v"}],["path",{d:"M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4",key:"1sdaij"}]]);const r5=c("id-card-lanyard",[["path",{d:"M13.5 8h-3",key:"xvov4w"}],["path",{d:"m15 2-1 2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3",key:"16uttc"}],["path",{d:"M16.899 22A5 5 0 0 0 7.1 22",key:"1d0ppr"}],["path",{d:"m9 2 3 6",key:"1o7bd9"}],["circle",{cx:"12",cy:"15",r:"3",key:"g36mzq"}]]);const i5=c("id-card",[["path",{d:"M16 10h2",key:"8sgtl7"}],["path",{d:"M16 14h2",key:"epxaof"}],["path",{d:"M6.17 15a3 3 0 0 1 5.66 0",key:"n6f512"}],["circle",{cx:"9",cy:"11",r:"2",key:"yxgjnd"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2",key:"qneu4z"}]]);const c5=c("image-down",[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21",key:"9csbqa"}],["path",{d:"m14 19 3 3v-5.5",key:"9ldu5r"}],["path",{d:"m17 22 3-3",key:"1nkfve"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]]);const s5=c("image-minus",[["path",{d:"M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7",key:"m87ecr"}],["line",{x1:"16",x2:"22",y1:"5",y2:"5",key:"ez7e4s"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}]]);const d5=c("image-off",[["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}],["path",{d:"M10.41 10.41a2 2 0 1 1-2.83-2.83",key:"1bzlo9"}],["line",{x1:"13.5",x2:"6",y1:"13.5",y2:"21",key:"1q0aeu"}],["line",{x1:"18",x2:"21",y1:"12",y2:"15",key:"5mozeu"}],["path",{d:"M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59",key:"mmje98"}],["path",{d:"M21 15V5a2 2 0 0 0-2-2H9",key:"43el77"}]]);const l5=c("image-play",[["path",{d:"M15 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z",key:"nrt1m3"}],["path",{d:"M21 12.17V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6",key:"99hgts"}],["path",{d:"m6 21 5-5",key:"1wyjai"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]]);const u5=c("image-plus",[["path",{d:"M16 5h6",key:"1vod17"}],["path",{d:"M19 2v6",key:"4bpg5p"}],["path",{d:"M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5",key:"1ue2ih"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]]);const h5=c("image-up",[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21",key:"9csbqa"}],["path",{d:"m14 19.5 3-3 3 3",key:"9vmjn0"}],["path",{d:"M17 22v-5.5",key:"1aa6fl"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]]);const p5=c("image-upscale",[["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"M17 21h2a2 2 0 0 0 2-2",key:"130fy9"}],["path",{d:"M21 12v3",key:"1wzk3p"}],["path",{d:"m21 3-5 5",key:"1g5oa7"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2",key:"kk3yz1"}],["path",{d:"m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19",key:"fyekpt"}],["path",{d:"M9 3h3",key:"d52fa"}],["rect",{x:"3",y:"11",width:"10",height:"10",rx:"1",key:"1wpmix"}]]);const y5=c("image",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}]]);const f5=c("images",[["path",{d:"m22 11-1.296-1.296a2.4 2.4 0 0 0-3.408 0L11 16",key:"9kzy35"}],["path",{d:"M4 8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2",key:"1t0f0t"}],["circle",{cx:"13",cy:"7",r:"1",fill:"currentColor",key:"1obus6"}],["rect",{x:"8",y:"2",width:"14",height:"14",rx:"2",key:"1gvhby"}]]);const m5=c("import",[["path",{d:"M12 3v12",key:"1x0j5s"}],["path",{d:"m8 11 4 4 4-4",key:"1dohi6"}],["path",{d:"M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4",key:"1ywtjm"}]]);const Xs=c("inbox",[["polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12",key:"o97t9d"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",key:"oot6mr"}]]);const k5=c("indian-rupee",[["path",{d:"M6 3h12",key:"ggurg9"}],["path",{d:"M6 8h12",key:"6g4wlu"}],["path",{d:"m6 13 8.5 8",key:"u1kupk"}],["path",{d:"M6 13h3",key:"wdp6ag"}],["path",{d:"M9 13c6.667 0 6.667-10 0-10",key:"1nkvk2"}]]);const g5=c("infinity",[["path",{d:"M6 16c5 0 7-8 12-8a4 4 0 0 1 0 8c-5 0-7-8-12-8a4 4 0 1 0 0 8",key:"18ogeb"}]]);const Zs=c("info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]);const v5=c("inspection-panel",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 7h.01",key:"7u93v4"}],["path",{d:"M17 7h.01",key:"14a9sn"}],["path",{d:"M7 17h.01",key:"19xn7k"}],["path",{d:"M17 17h.01",key:"1sd3ek"}]]);const _5=c("instagram",[["rect",{width:"20",height:"20",x:"2",y:"2",rx:"5",ry:"5",key:"2e1cvw"}],["path",{d:"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z",key:"9exkf1"}],["line",{x1:"17.5",x2:"17.51",y1:"6.5",y2:"6.5",key:"r4j83e"}]]);const b5=c("italic",[["line",{x1:"19",x2:"10",y1:"4",y2:"4",key:"15jd3p"}],["line",{x1:"14",x2:"5",y1:"20",y2:"20",key:"bu0au3"}],["line",{x1:"15",x2:"9",y1:"4",y2:"20",key:"uljnxc"}]]);const M5=c("iteration-ccw",[["path",{d:"m16 14 4 4-4 4",key:"hkso8o"}],["path",{d:"M20 10a8 8 0 1 0-8 8h8",key:"1bik7b"}]]);const w5=c("iteration-cw",[["path",{d:"M4 10a8 8 0 1 1 8 8H4",key:"svv66n"}],["path",{d:"m8 22-4-4 4-4",key:"6g7gki"}]]);const x5=c("japanese-yen",[["path",{d:"M12 9.5V21m0-11.5L6 3m6 6.5L18 3",key:"2ej80x"}],["path",{d:"M6 15h12",key:"1hwgt5"}],["path",{d:"M6 11h12",key:"wf4gp6"}]]);const N5=c("joystick",[["path",{d:"M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z",key:"jg2n2t"}],["path",{d:"M6 15v-2",key:"gd6mvg"}],["path",{d:"M12 15V9",key:"8c7uyn"}],["circle",{cx:"12",cy:"6",r:"3",key:"1gm2ql"}]]);const C5=c("kanban",[["path",{d:"M5 3v14",key:"9nsxs2"}],["path",{d:"M12 3v8",key:"1h2ygw"}],["path",{d:"M19 3v18",key:"1sk56x"}]]);const $5=c("kayak",[["path",{d:"M18 17a1 1 0 0 0-1 1v1a2 2 0 1 0 2-2z",key:"skzb1g"}],["path",{d:"M20.97 3.61a.45.45 0 0 0-.58-.58C10.2 6.6 6.6 10.2 3.03 20.39a.45.45 0 0 0 .58.58C13.8 17.4 17.4 13.8 20.97 3.61",key:"cv9jm7"}],["path",{d:"m6.707 6.707 10.586 10.586",key:"d2l993"}],["path",{d:"M7 5a2 2 0 1 0-2 2h1a1 1 0 0 0 1-1z",key:"i0et4n"}]]);const S5=c("key-round",[["path",{d:"M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z",key:"1s6t7t"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor",key:"w0ekpg"}]]);const L5=c("key-square",[["path",{d:"M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z",key:"165ttr"}],["path",{d:"m14 7 3 3",key:"1r5n42"}],["path",{d:"m9.4 10.6-6.814 6.814A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814",key:"1ubxi2"}]]);const I5=c("key",[["path",{d:"m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4",key:"g0fldk"}],["path",{d:"m21 2-9.6 9.6",key:"1j0ho8"}],["circle",{cx:"7.5",cy:"15.5",r:"5.5",key:"yqb3hr"}]]);const A5=c("keyboard-music",[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M6 8h4",key:"utf9t1"}],["path",{d:"M14 8h.01",key:"1primd"}],["path",{d:"M18 8h.01",key:"emo2bl"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M6 12v4",key:"dy92yo"}],["path",{d:"M10 12v4",key:"1fxnav"}],["path",{d:"M14 12v4",key:"1hft58"}],["path",{d:"M18 12v4",key:"tjjnbz"}]]);const P5=c("keyboard-off",[["path",{d:"M 20 4 A2 2 0 0 1 22 6",key:"1g1fkt"}],["path",{d:"M 22 6 L 22 16.41",key:"1qjg3w"}],["path",{d:"M 7 16 L 16 16",key:"n0yqwb"}],["path",{d:"M 9.69 4 L 20 4",key:"kbpcgx"}],["path",{d:"M14 8h.01",key:"1primd"}],["path",{d:"M18 8h.01",key:"emo2bl"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2",key:"s23sx2"}],["path",{d:"M6 8h.01",key:"x9i8wu"}],["path",{d:"M8 12h.01",key:"czm47f"}]]);const T5=c("keyboard",[["path",{d:"M10 8h.01",key:"1r9ogq"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M14 8h.01",key:"1primd"}],["path",{d:"M16 12h.01",key:"1l6xoz"}],["path",{d:"M18 8h.01",key:"emo2bl"}],["path",{d:"M6 8h.01",key:"x9i8wu"}],["path",{d:"M7 16h10",key:"wp8him"}],["path",{d:"M8 12h.01",key:"czm47f"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}]]);const D5=c("lamp-ceiling",[["path",{d:"M12 2v5",key:"nd4vlx"}],["path",{d:"M14.829 15.998a3 3 0 1 1-5.658 0",key:"1pybiy"}],["path",{d:"M20.92 14.606A1 1 0 0 1 20 16H4a1 1 0 0 1-.92-1.394l3-7A1 1 0 0 1 7 7h10a1 1 0 0 1 .92.606z",key:"ma1wor"}]]);const E5=c("lamp-desk",[["path",{d:"M10.293 2.293a1 1 0 0 1 1.414 0l2.5 2.5 5.994 1.227a1 1 0 0 1 .506 1.687l-7 7a1 1 0 0 1-1.687-.506l-1.227-5.994-2.5-2.5a1 1 0 0 1 0-1.414z",key:"sb8slu"}],["path",{d:"m14.207 4.793-3.414 3.414",key:"m2x3oj"}],["path",{d:"M3 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z",key:"8b3myj"}],["path",{d:"m9.086 6.5-4.793 4.793a1 1 0 0 0-.18 1.17L7 18",key:"43s6cu"}]]);const z5=c("lamp-floor",[["path",{d:"M12 10v12",key:"6ubwww"}],["path",{d:"M17.929 7.629A1 1 0 0 1 17 9H7a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 9 2h6a1 1 0 0 1 .928.629z",key:"1o95gh"}],["path",{d:"M9 22h6",key:"1rlq3v"}]]);const O5=c("lamp-wall-down",[["path",{d:"M19.929 18.629A1 1 0 0 1 19 20H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 13h6a1 1 0 0 1 .928.629z",key:"u4w2d7"}],["path",{d:"M6 3a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z",key:"15356w"}],["path",{d:"M8 6h4a2 2 0 0 1 2 2v5",key:"1m6m7x"}]]);const q5=c("lamp-wall-up",[["path",{d:"M19.929 9.629A1 1 0 0 1 19 11H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 4h6a1 1 0 0 1 .928.629z",key:"1uvrbf"}],["path",{d:"M6 15a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z",key:"154r2a"}],["path",{d:"M8 18h4a2 2 0 0 0 2-2v-5",key:"z9mbu0"}]]);const j5=c("lamp",[["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"M4.077 10.615A1 1 0 0 0 5 12h14a1 1 0 0 0 .923-1.385l-3.077-7.384A2 2 0 0 0 15 2H9a2 2 0 0 0-1.846 1.23Z",key:"1l7kg2"}],["path",{d:"M8 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1z",key:"1mmzpi"}]]);const H5=c("land-plot",[["path",{d:"m12 8 6-3-6-3v10",key:"mvpnpy"}],["path",{d:"m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12",key:"ek95tt"}],["path",{d:"m6.49 12.85 11.02 6.3",key:"1kt42w"}],["path",{d:"M17.51 12.85 6.5 19.15",key:"v55bdg"}]]);const V5=c("landmark",[["path",{d:"M10 18v-7",key:"wt116b"}],["path",{d:"M11.12 2.198a2 2 0 0 1 1.76.006l7.866 3.847c.476.233.31.949-.22.949H3.474c-.53 0-.695-.716-.22-.949z",key:"1m329m"}],["path",{d:"M14 18v-7",key:"vav6t3"}],["path",{d:"M18 18v-7",key:"aexdmj"}],["path",{d:"M3 22h18",key:"8prr45"}],["path",{d:"M6 18v-7",key:"1ivflk"}]]);const F5=c("languages",[["path",{d:"m5 8 6 6",key:"1wu5hv"}],["path",{d:"m4 14 6-6 2-3",key:"1k1g8d"}],["path",{d:"M2 5h12",key:"or177f"}],["path",{d:"M7 2h1",key:"1t2jsx"}],["path",{d:"m22 22-5-10-5 10",key:"don7ne"}],["path",{d:"M14 18h6",key:"1m8k6r"}]]);const B5=c("laptop-minimal-check",[["path",{d:"M2 20h20",key:"owomy5"}],["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}],["rect",{x:"3",y:"4",width:"18",height:"12",rx:"2",key:"8ur36m"}]]);const Nr=c("laptop-minimal",[["rect",{width:"18",height:"12",x:"3",y:"4",rx:"2",ry:"2",key:"1qhy41"}],["line",{x1:"2",x2:"22",y1:"20",y2:"20",key:"ni3hll"}]]);const W5=c("laptop",[["path",{d:"M18 5a2 2 0 0 1 2 2v8.526a2 2 0 0 0 .212.897l1.068 2.127a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45l1.068-2.127A2 2 0 0 0 4 15.526V7a2 2 0 0 1 2-2z",key:"1pdavp"}],["path",{d:"M20.054 15.987H3.946",key:"14rxg9"}]]);const U5=c("lasso-select",[["path",{d:"M7 22a5 5 0 0 1-2-4",key:"umushi"}],["path",{d:"M7 16.93c.96.43 1.96.74 2.99.91",key:"ybbtv3"}],["path",{d:"M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2",key:"gt5e1w"}],["path",{d:"M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z",key:"bq3ynw"}],["path",{d:"M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z",key:"72q637"}]]);const R5=c("lasso",[["path",{d:"M3.704 14.467a10 8 0 1 1 3.115 2.375",key:"wxgc5m"}],["path",{d:"M7 22a5 5 0 0 1-2-3.994",key:"1xp6a4"}],["circle",{cx:"5",cy:"16",r:"2",key:"18csp3"}]]);const G5=c("laugh",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z",key:"b2q4dd"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]]);const K5=c("layers-2",[["path",{d:"M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74z",key:"15q6uc"}],["path",{d:"m20 14.285 1.5.845a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74l1.5-.845",key:"byia6g"}]]);const Y5=c("layers-plus",[["path",{d:"M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 .83.18 2 2 0 0 0 .83-.18l8.58-3.9a1 1 0 0 0 0-1.831z",key:"zzgyd3"}],["path",{d:"M16 17h6",key:"1ook5g"}],["path",{d:"M19 14v6",key:"1ckrd5"}],["path",{d:"M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 .825.178",key:"1ia9y3"}],["path",{d:"M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l2.116-.962",key:"jksky3"}]]);const Cr=c("layers",[["path",{d:"M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z",key:"zw3jo"}],["path",{d:"M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12",key:"1wduqc"}],["path",{d:"M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17",key:"kqbvx6"}]]);const X5=c("layout-dashboard",[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1",key:"10lvy0"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1",key:"16une8"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1",key:"1hutg5"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1",key:"ldoo1y"}]]);const Z5=c("layout-grid",[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1",key:"1g98yp"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1",key:"6d4xhi"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}]]);const Q5=c("layout-list",[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1",key:"1g98yp"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}],["path",{d:"M14 4h7",key:"3xa0d5"}],["path",{d:"M14 9h7",key:"1icrd9"}],["path",{d:"M14 15h7",key:"1mj8o2"}],["path",{d:"M14 20h7",key:"11slyb"}]]);const J5=c("layout-panel-left",[["rect",{width:"7",height:"18",x:"3",y:"3",rx:"1",key:"2obqm"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1",key:"6d4xhi"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}]]);const ev=c("layout-panel-top",[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1",key:"f1a2em"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}]]);const tv=c("layout-template",[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1",key:"f1a2em"}],["rect",{width:"9",height:"7",x:"3",y:"14",rx:"1",key:"jqznyg"}],["rect",{width:"5",height:"7",x:"16",y:"14",rx:"1",key:"q5h2i8"}]]);const ov=c("leaf",[["path",{d:"M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z",key:"nnexq3"}],["path",{d:"M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12",key:"mt58a7"}]]);const nv=c("leafy-green",[["path",{d:"M2 22c1.25-.987 2.27-1.975 3.9-2.2a5.56 5.56 0 0 1 3.8 1.5 4 4 0 0 0 6.187-2.353 3.5 3.5 0 0 0 3.69-5.116A3.5 3.5 0 0 0 20.95 8 3.5 3.5 0 1 0 16 3.05a3.5 3.5 0 0 0-5.831 1.373 3.5 3.5 0 0 0-5.116 3.69 4 4 0 0 0-2.348 6.155C3.499 15.42 4.409 16.712 4.2 18.1 3.926 19.743 3.014 20.732 2 22",key:"1134nt"}],["path",{d:"M2 22 17 7",key:"1q7jp2"}]]);const av=c("lectern",[["path",{d:"M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3",key:"13jjxg"}],["path",{d:"M18 6V3a1 1 0 0 0-1-1h-3",key:"1550fe"}],["rect",{width:"8",height:"12",x:"8",y:"10",rx:"1",key:"qmu8b6"}]]);const rv=c("library-big",[["rect",{width:"8",height:"18",x:"3",y:"3",rx:"1",key:"oynpb5"}],["path",{d:"M7 3v18",key:"bbkbws"}],["path",{d:"M20.4 18.9c.2.5-.1 1.1-.6 1.3l-1.9.7c-.5.2-1.1-.1-1.3-.6L11.1 5.1c-.2-.5.1-1.1.6-1.3l1.9-.7c.5-.2 1.1.1 1.3.6Z",key:"1qboyk"}]]);const iv=c("library",[["path",{d:"m16 6 4 14",key:"ji33uf"}],["path",{d:"M12 6v14",key:"1n7gus"}],["path",{d:"M8 8v12",key:"1gg7y9"}],["path",{d:"M4 4v16",key:"6qkkli"}]]);const cv=c("life-buoy",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m4.93 4.93 4.24 4.24",key:"1ymg45"}],["path",{d:"m14.83 9.17 4.24-4.24",key:"1cb5xl"}],["path",{d:"m14.83 14.83 4.24 4.24",key:"q42g0n"}],["path",{d:"m9.17 14.83-4.24 4.24",key:"bqpfvv"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]]);const sv=c("ligature",[["path",{d:"M14 12h2v8",key:"c1fccl"}],["path",{d:"M14 20h4",key:"lzx1xo"}],["path",{d:"M6 12h4",key:"a4o3ry"}],["path",{d:"M6 20h4",key:"1i6q5t"}],["path",{d:"M8 20V8a4 4 0 0 1 7.464-2",key:"wk9t6r"}]]);const dv=c("lightbulb-off",[["path",{d:"M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5",key:"1fkcox"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5",key:"10m8kw"}],["path",{d:"M9 18h6",key:"x1upvd"}],["path",{d:"M10 22h4",key:"ceow96"}]]);const lv=c("lightbulb",[["path",{d:"M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5",key:"1gvzjb"}],["path",{d:"M9 18h6",key:"x1upvd"}],["path",{d:"M10 22h4",key:"ceow96"}]]);const uv=c("line-squiggle",[["path",{d:"M7 3.5c5-2 7 2.5 3 4C1.5 10 2 15 5 16c5 2 9-10 14-7s.5 13.5-4 12c-5-2.5.5-11 6-2",key:"1lrphd"}]]);const hv=c("link-2-off",[["path",{d:"M9 17H7A5 5 0 0 1 7 7",key:"10o201"}],["path",{d:"M15 7h2a5 5 0 0 1 4 8",key:"1d3206"}],["line",{x1:"8",x2:"12",y1:"12",y2:"12",key:"rvw6j4"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const pv=c("link-2",[["path",{d:"M9 17H7A5 5 0 0 1 7 7h2",key:"8i5ue5"}],["path",{d:"M15 7h2a5 5 0 1 1 0 10h-2",key:"1b9ql8"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]]);const yv=c("link",[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",key:"1cjeqo"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",key:"19qd67"}]]);const fv=c("linkedin",[["path",{d:"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z",key:"c2jq9f"}],["rect",{width:"4",height:"12",x:"2",y:"9",key:"mk3on5"}],["circle",{cx:"4",cy:"4",r:"2",key:"bt5ra8"}]]);const mv=c("list-check",[["path",{d:"M16 5H3",key:"m91uny"}],["path",{d:"M16 12H3",key:"1a2rj7"}],["path",{d:"M11 19H3",key:"zflm78"}],["path",{d:"m15 18 2 2 4-4",key:"1szwhi"}]]);const kv=c("list-checks",[["path",{d:"M13 5h8",key:"a7qcls"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 19h8",key:"c3s6r1"}],["path",{d:"m3 17 2 2 4-4",key:"1jhpwq"}],["path",{d:"m3 7 2 2 4-4",key:"1obspn"}]]);const gv=c("list-chevrons-down-up",[["path",{d:"M3 5h8",key:"18g2rq"}],["path",{d:"M3 12h8",key:"1xfjp6"}],["path",{d:"M3 19h8",key:"fpbke4"}],["path",{d:"m15 5 3 3 3-3",key:"1t4thf"}],["path",{d:"m15 19 3-3 3 3",key:"y4ckd2"}]]);const vv=c("list-chevrons-up-down",[["path",{d:"M3 5h8",key:"18g2rq"}],["path",{d:"M3 12h8",key:"1xfjp6"}],["path",{d:"M3 19h8",key:"fpbke4"}],["path",{d:"m15 8 3-3 3 3",key:"bc4io6"}],["path",{d:"m15 16 3 3 3-3",key:"9wmg1l"}]]);const _v=c("list-collapse",[["path",{d:"M10 5h11",key:"1hkqpe"}],["path",{d:"M10 12h11",key:"6m4ad9"}],["path",{d:"M10 19h11",key:"14g2nv"}],["path",{d:"m3 10 3-3-3-3",key:"i7pm08"}],["path",{d:"m3 20 3-3-3-3",key:"20gx1n"}]]);const bv=c("list-end",[["path",{d:"M16 5H3",key:"m91uny"}],["path",{d:"M16 12H3",key:"1a2rj7"}],["path",{d:"M9 19H3",key:"s61nz1"}],["path",{d:"m16 16-3 3 3 3",key:"117b85"}],["path",{d:"M21 5v12a2 2 0 0 1-2 2h-6",key:"hey24a"}]]);const Mv=c("list-filter-plus",[["path",{d:"M12 5H2",key:"1o22fu"}],["path",{d:"M6 12h12",key:"8npq4p"}],["path",{d:"M9 19h6",key:"456am0"}],["path",{d:"M16 5h6",key:"1vod17"}],["path",{d:"M19 8V2",key:"1wcffq"}]]);const wv=c("list-filter",[["path",{d:"M2 5h20",key:"1fs1ex"}],["path",{d:"M6 12h12",key:"8npq4p"}],["path",{d:"M9 19h6",key:"456am0"}]]);const go=c("list-indent-decrease",[["path",{d:"M21 5H11",key:"us1j55"}],["path",{d:"M21 12H11",key:"wd7e0v"}],["path",{d:"M21 19H11",key:"saa85w"}],["path",{d:"m7 8-4 4 4 4",key:"o5hrat"}]]);const vo=c("list-indent-increase",[["path",{d:"M21 5H11",key:"us1j55"}],["path",{d:"M21 12H11",key:"wd7e0v"}],["path",{d:"M21 19H11",key:"saa85w"}],["path",{d:"m3 8 4 4-4 4",key:"1a3j6y"}]]);const xv=c("list-minus",[["path",{d:"M16 5H3",key:"m91uny"}],["path",{d:"M11 12H3",key:"51ecnj"}],["path",{d:"M16 19H3",key:"zzsher"}],["path",{d:"M21 12h-6",key:"bt1uis"}]]);const Nv=c("list-music",[["path",{d:"M16 5H3",key:"m91uny"}],["path",{d:"M11 12H3",key:"51ecnj"}],["path",{d:"M11 19H3",key:"zflm78"}],["path",{d:"M21 16V5",key:"yxg4q8"}],["circle",{cx:"18",cy:"16",r:"3",key:"1hluhg"}]]);const Cv=c("list-ordered",[["path",{d:"M11 5h10",key:"1cz7ny"}],["path",{d:"M11 12h10",key:"1438ji"}],["path",{d:"M11 19h10",key:"11t30w"}],["path",{d:"M4 4h1v5",key:"10yrso"}],["path",{d:"M4 9h2",key:"r1h2o0"}],["path",{d:"M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02",key:"xtkcd5"}]]);const $v=c("list-plus",[["path",{d:"M16 5H3",key:"m91uny"}],["path",{d:"M11 12H3",key:"51ecnj"}],["path",{d:"M16 19H3",key:"zzsher"}],["path",{d:"M18 9v6",key:"1twb98"}],["path",{d:"M21 12h-6",key:"bt1uis"}]]);const Sv=c("list-restart",[["path",{d:"M21 5H3",key:"1fi0y6"}],["path",{d:"M7 12H3",key:"13ou7f"}],["path",{d:"M7 19H3",key:"wbqt3n"}],["path",{d:"M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14",key:"qth677"}],["path",{d:"M11 10v4h4",key:"172dkj"}]]);const Lv=c("list-start",[["path",{d:"M3 5h6",key:"1ltk0q"}],["path",{d:"M3 12h13",key:"ppymz1"}],["path",{d:"M3 19h13",key:"bpdczq"}],["path",{d:"m16 8-3-3 3-3",key:"1pjpp6"}],["path",{d:"M21 19V7a2 2 0 0 0-2-2h-6",key:"4zzq67"}]]);const Iv=c("list-todo",[["path",{d:"M13 5h8",key:"a7qcls"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 19h8",key:"c3s6r1"}],["path",{d:"m3 17 2 2 4-4",key:"1jhpwq"}],["rect",{x:"3",y:"4",width:"6",height:"6",rx:"1",key:"cif1o7"}]]);const Av=c("list-tree",[["path",{d:"M8 5h13",key:"1pao27"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 19h8",key:"c3s6r1"}],["path",{d:"M3 10a2 2 0 0 0 2 2h3",key:"1npucw"}],["path",{d:"M3 5v12a2 2 0 0 0 2 2h3",key:"x1gjn2"}]]);const Pv=c("list-video",[["path",{d:"M21 5H3",key:"1fi0y6"}],["path",{d:"M10 12H3",key:"1ulcyk"}],["path",{d:"M10 19H3",key:"108z41"}],["path",{d:"M15 12.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z",key:"ms4nik"}]]);const Tv=c("list-x",[["path",{d:"M16 5H3",key:"m91uny"}],["path",{d:"M11 12H3",key:"51ecnj"}],["path",{d:"M16 19H3",key:"zzsher"}],["path",{d:"m15.5 9.5 5 5",key:"ytk86i"}],["path",{d:"m20.5 9.5-5 5",key:"17o44f"}]]);const Dv=c("list",[["path",{d:"M3 5h.01",key:"18ugdj"}],["path",{d:"M3 12h.01",key:"nlz23k"}],["path",{d:"M3 19h.01",key:"noohij"}],["path",{d:"M8 5h13",key:"1pao27"}],["path",{d:"M8 12h13",key:"1za7za"}],["path",{d:"M8 19h13",key:"m83p4d"}]]);const Ev=c("loader-pinwheel",[["path",{d:"M22 12a1 1 0 0 1-10 0 1 1 0 0 0-10 0",key:"1lzz15"}],["path",{d:"M7 20.7a1 1 0 1 1 5-8.7 1 1 0 1 0 5-8.6",key:"1gnrpi"}],["path",{d:"M7 3.3a1 1 0 1 1 5 8.6 1 1 0 1 0 5 8.6",key:"u9yy5q"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Vt=c("loader-circle",[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]]);const zv=c("loader",[["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m16.2 7.8 2.9-2.9",key:"r700ao"}],["path",{d:"M18 12h4",key:"wj9ykh"}],["path",{d:"m16.2 16.2 2.9 2.9",key:"1bxg5t"}],["path",{d:"M12 18v4",key:"jadmvz"}],["path",{d:"m4.9 19.1 2.9-2.9",key:"bwix9q"}],["path",{d:"M2 12h4",key:"j09sii"}],["path",{d:"m4.9 4.9 2.9 2.9",key:"giyufr"}]]);const Ov=c("locate-fixed",[["line",{x1:"2",x2:"5",y1:"12",y2:"12",key:"bvdh0s"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12",key:"1tbv5k"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5",key:"11lu5j"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}],["circle",{cx:"12",cy:"12",r:"7",key:"fim9np"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);const qv=c("locate-off",[["path",{d:"M12 19v3",key:"npa21l"}],["path",{d:"M12 2v3",key:"qbqxhf"}],["path",{d:"M18.89 13.24a7 7 0 0 0-8.13-8.13",key:"1v9jrh"}],["path",{d:"M19 12h3",key:"osuazr"}],["path",{d:"M2 12h3",key:"1wrr53"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M7.05 7.05a7 7 0 0 0 9.9 9.9",key:"rc5l2e"}]]);const jv=c("locate",[["line",{x1:"2",x2:"5",y1:"12",y2:"12",key:"bvdh0s"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12",key:"1tbv5k"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5",key:"11lu5j"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}],["circle",{cx:"12",cy:"12",r:"7",key:"fim9np"}]]);const $r=c("lock-keyhole-open",[["circle",{cx:"12",cy:"16",r:"1",key:"1au0dj"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2",key:"l0tzu3"}],["path",{d:"M7 10V7a5 5 0 0 1 9.33-2.5",key:"car5b7"}]]);const Hv=c("lock-keyhole",[["circle",{cx:"12",cy:"16",r:"1",key:"1au0dj"}],["rect",{x:"3",y:"10",width:"18",height:"12",rx:"2",key:"6s8ecr"}],["path",{d:"M7 10V7a5 5 0 0 1 10 0v3",key:"1pqi11"}]]);const Sr=c("lock-open",[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2",key:"1w4ew1"}],["path",{d:"M7 11V7a5 5 0 0 1 9.9-1",key:"1mm8w8"}]]);const Vv=c("lock",[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2",key:"1w4ew1"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4",key:"fwvmzm"}]]);const Fv=c("log-in",[["path",{d:"m10 17 5-5-5-5",key:"1bsop3"}],["path",{d:"M15 12H3",key:"6jk70r"}],["path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4",key:"u53s6r"}]]);const Bv=c("log-out",[["path",{d:"m16 17 5-5-5-5",key:"1bji2h"}],["path",{d:"M21 12H9",key:"dn1m92"}],["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1uf3rs"}]]);const Wv=c("logs",[["path",{d:"M3 5h1",key:"1mv5vm"}],["path",{d:"M3 12h1",key:"lp3yf2"}],["path",{d:"M3 19h1",key:"w6f3n9"}],["path",{d:"M8 5h1",key:"1nxr5w"}],["path",{d:"M8 12h1",key:"1con00"}],["path",{d:"M8 19h1",key:"k7p10e"}],["path",{d:"M13 5h8",key:"a7qcls"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 19h8",key:"c3s6r1"}]]);const Uv=c("lollipop",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}],["path",{d:"M11 11a2 2 0 0 0 4 0 4 4 0 0 0-8 0 6 6 0 0 0 12 0",key:"107gwy"}]]);const Rv=c("luggage",[["path",{d:"M6 20a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2",key:"1m57jg"}],["path",{d:"M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14",key:"1l99gc"}],["path",{d:"M10 20h4",key:"ni2waw"}],["circle",{cx:"16",cy:"20",r:"2",key:"1vifvg"}],["circle",{cx:"8",cy:"20",r:"2",key:"ckkr5m"}]]);const Gv=c("magnet",[["path",{d:"m12 15 4 4",key:"lnac28"}],["path",{d:"M2.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.029-6.029a1 1 0 1 1 3 3l-6.029 6.029a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.365-6.367A1 1 0 0 0 8.716 4.282z",key:"nlhkjb"}],["path",{d:"m5 8 4 4",key:"j6kj7e"}]]);const Kv=c("mail-check",[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8",key:"12jkf8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}]]);const Yv=c("mail-minus",[["path",{d:"M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8",key:"fuxbkv"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M16 19h6",key:"xwg31i"}]]);const Xv=c("mail-open",[["path",{d:"M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z",key:"1jhwl8"}],["path",{d:"m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10",key:"1qfld7"}]]);const Lr=c("mail-question-mark",[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5",key:"e61zoh"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2",key:"7z9rxb"}],["path",{d:"M20 22v.01",key:"12bgn6"}]]);const Zv=c("mail-plus",[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8",key:"12jkf8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M19 16v6",key:"tddt3s"}],["path",{d:"M16 19h6",key:"xwg31i"}]]);const Qv=c("mail-search",[["path",{d:"M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5",key:"w80f2v"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z",key:"8lzu5m"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["path",{d:"m22 22-1.5-1.5",key:"1x83k4"}]]);const Jv=c("mail-warning",[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5",key:"e61zoh"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M20 14v4",key:"1hm744"}],["path",{d:"M20 22v.01",key:"12bgn6"}]]);const e3=c("mail",[["path",{d:"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7",key:"132q7q"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2",key:"izxlao"}]]);const t3=c("mail-x",[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9",key:"1j9vog"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"m17 17 4 4",key:"1b3523"}],["path",{d:"m21 17-4 4",key:"uinynz"}]]);const o3=c("mailbox",[["path",{d:"M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z",key:"1lbycx"}],["polyline",{points:"15,9 18,9 18,11",key:"1pm9c0"}],["path",{d:"M6.5 5C9 5 11 7 11 9.5V17a2 2 0 0 1-2 2",key:"15i455"}],["line",{x1:"6",x2:"7",y1:"10",y2:"10",key:"1e2scm"}]]);const n3=c("mails",[["path",{d:"M17 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 1-1.732",key:"1vyzll"}],["path",{d:"m22 5.5-6.419 4.179a2 2 0 0 1-2.162 0L7 5.5",key:"k7ramc"}],["rect",{x:"7",y:"3",width:"15",height:"12",rx:"2",key:"17196g"}]]);const a3=c("map-minus",[["path",{d:"m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V14",key:"40pylx"}],["path",{d:"M15 5.764V14",key:"1bab71"}],["path",{d:"M21 18h-6",key:"139f0c"}],["path",{d:"M9 3.236v15",key:"1uimfh"}]]);const r3=c("map-pin-check-inside",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}]]);const i3=c("map-pin-check",[["path",{d:"M19.43 12.935c.357-.967.57-1.955.57-2.935a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32.197 32.197 0 0 0 .813-.728",key:"1dq61d"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"m16 18 2 2 4-4",key:"1mkfmb"}]]);const c3=c("map-pin-house",[["path",{d:"M15 22a1 1 0 0 1-1-1v-4a1 1 0 0 1 .445-.832l3-2a1 1 0 0 1 1.11 0l3 2A1 1 0 0 1 22 17v4a1 1 0 0 1-1 1z",key:"1p1rcz"}],["path",{d:"M18 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 .601.2",key:"mcbcs9"}],["path",{d:"M18 22v-3",key:"1t1ugv"}],["circle",{cx:"10",cy:"10",r:"3",key:"1ns7v1"}]]);const s3=c("map-pin-minus-inside",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"M9 10h6",key:"9gxzsh"}]]);const d3=c("map-pin-minus",[["path",{d:"M18.977 14C19.6 12.701 20 11.343 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738",key:"11uxia"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M16 18h6",key:"987eiv"}]]);const l3=c("map-pin-off",[["path",{d:"M12.75 7.09a3 3 0 0 1 2.16 2.16",key:"1d4wjd"}],["path",{d:"M17.072 17.072c-1.634 2.17-3.527 3.912-4.471 4.727a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 1.432-4.568",key:"12yil7"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.475 2.818A8 8 0 0 1 20 10c0 1.183-.31 2.377-.81 3.533",key:"lhrkcz"}],["path",{d:"M9.13 9.13a3 3 0 0 0 3.74 3.74",key:"13wojd"}]]);const u3=c("map-pin-plus-inside",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"M12 7v6",key:"lw1j43"}],["path",{d:"M9 10h6",key:"9gxzsh"}]]);const Ir=c("map-pin-pen",[["path",{d:"M17.97 9.304A8 8 0 0 0 2 10c0 4.69 4.887 9.562 7.022 11.468",key:"1fahp3"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1817ys"}],["circle",{cx:"10",cy:"10",r:"3",key:"1ns7v1"}]]);const h3=c("map-pin-plus",[["path",{d:"M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738",key:"fcdtly"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M16 18h6",key:"987eiv"}],["path",{d:"M19 15v6",key:"10aioa"}]]);const p3=c("map-pin-x-inside",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"m14.5 7.5-5 5",key:"3lb6iw"}],["path",{d:"m9.5 7.5 5 5",key:"ko136h"}]]);const y3=c("map-pin-x",[["path",{d:"M19.752 11.901A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 19 19 0 0 0 .09-.077",key:"y0ewhp"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"m21.5 15.5-5 5",key:"11iqnx"}],["path",{d:"m21.5 20.5-5-5",key:"1bylgx"}]]);const f3=c("map-pin",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}]]);const m3=c("map-pinned",[["path",{d:"M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0",key:"11u0oz"}],["circle",{cx:"12",cy:"8",r:"2",key:"1822b1"}],["path",{d:"M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712",key:"q8zwxj"}]]);const k3=c("map-plus",[["path",{d:"m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12",key:"svfegj"}],["path",{d:"M15 5.764V12",key:"1ocw4k"}],["path",{d:"M18 15v6",key:"9wciyi"}],["path",{d:"M21 18h-6",key:"139f0c"}],["path",{d:"M9 3.236v15",key:"1uimfh"}]]);const g3=c("map",[["path",{d:"M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z",key:"169xi5"}],["path",{d:"M15 5.764v15",key:"1pn4in"}],["path",{d:"M9 3.236v15",key:"1uimfh"}]]);const v3=c("mars-stroke",[["path",{d:"m14 6 4 4",key:"1q72g9"}],["path",{d:"M17 3h4v4",key:"19p9u1"}],["path",{d:"m21 3-7.75 7.75",key:"1cjbfd"}],["circle",{cx:"9",cy:"15",r:"6",key:"bx5svt"}]]);const _3=c("mars",[["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"m21 3-6.75 6.75",key:"pv0uzu"}],["circle",{cx:"10",cy:"14",r:"6",key:"1qwbdc"}]]);const b3=c("martini",[["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M12 11v11",key:"ur9y6a"}],["path",{d:"m19 3-7 8-7-8Z",key:"1sgpiw"}]]);const M3=c("maximize-2",[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"m21 3-7 7",key:"1l2asr"}],["path",{d:"m3 21 7-7",key:"tjx5ai"}],["path",{d:"M9 21H3v-6",key:"wtvkvv"}]]);const w3=c("maximize",[["path",{d:"M8 3H5a2 2 0 0 0-2 2v3",key:"1dcmit"}],["path",{d:"M21 8V5a2 2 0 0 0-2-2h-3",key:"1e4gt3"}],["path",{d:"M3 16v3a2 2 0 0 0 2 2h3",key:"wsl5sc"}],["path",{d:"M16 21h3a2 2 0 0 0 2-2v-3",key:"18trek"}]]);const x3=c("medal",[["path",{d:"M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15",key:"143lza"}],["path",{d:"M11 12 5.12 2.2",key:"qhuxz6"}],["path",{d:"m13 12 5.88-9.8",key:"hbye0f"}],["path",{d:"M8 7h8",key:"i86dvs"}],["circle",{cx:"12",cy:"17",r:"5",key:"qbz8iq"}],["path",{d:"M12 18v-2h-.5",key:"fawc4q"}]]);const N3=c("megaphone-off",[["path",{d:"M11.636 6A13 13 0 0 0 19.4 3.2 1 1 0 0 1 21 4v11.344",key:"bycexp"}],["path",{d:"M14.378 14.357A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h1",key:"1t17s6"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14",key:"1853fq"}],["path",{d:"M8 8v6",key:"aieo6v"}]]);const C3=c("megaphone",[["path",{d:"M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z",key:"q8bfy3"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14",key:"1853fq"}],["path",{d:"M8 6v8",key:"15ugcq"}]]);const $3=c("meh",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"8",x2:"16",y1:"15",y2:"15",key:"1xb1d9"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]]);const S3=c("memory-stick",[["path",{d:"M12 12v-2",key:"fwoke6"}],["path",{d:"M12 18v-2",key:"qj6yno"}],["path",{d:"M16 12v-2",key:"heuere"}],["path",{d:"M16 18v-2",key:"s1ct0w"}],["path",{d:"M2 11h1.5",key:"15p63e"}],["path",{d:"M20 18v-2",key:"12ehxp"}],["path",{d:"M20.5 11H22",key:"khsy7a"}],["path",{d:"M4 18v-2",key:"1c3oqr"}],["path",{d:"M8 12v-2",key:"1mwtfd"}],["path",{d:"M8 18v-2",key:"qcmpov"}],["rect",{x:"2",y:"6",width:"20",height:"10",rx:"2",key:"1qcswk"}]]);const L3=c("menu",[["path",{d:"M4 5h16",key:"1tepv9"}],["path",{d:"M4 12h16",key:"1lakjw"}],["path",{d:"M4 19h16",key:"1djgab"}]]);const I3=c("merge",[["path",{d:"m8 6 4-4 4 4",key:"ybng9g"}],["path",{d:"M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22",key:"1hyw0i"}],["path",{d:"m20 22-5-5",key:"1m27yz"}]]);const A3=c("message-circle-code",[["path",{d:"m10 9-3 3 3 3",key:"1oro0q"}],["path",{d:"m14 15 3-3-3-3",key:"bz13h7"}],["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}]]);const P3=c("message-circle-dashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.72a10 10 0 0 1 2.69 2.7",key:"jiglxs"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.28 17.61a10 10 0 0 1-2.7 2.69",key:"elg7ff"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"m6.163 21.117-2.906.85a1 1 0 0 1-1.236-1.169l.965-2.98",key:"1qsu07"}]]);const T3=c("message-circle-heart",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}],["path",{d:"M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 5.004 2.224 3 3 0 0 1-.832 2.083l-3.447 3.62a1 1 0 0 1-1.45-.001z",key:"hoo97p"}]]);const D3=c("message-circle-more",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}],["path",{d:"M8 12h.01",key:"czm47f"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 12h.01",key:"1l6xoz"}]]);const E3=c("message-circle-off",[["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M4.93 4.929a10 10 0 0 0-1.938 11.412 2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 0 0 11.302-1.989",key:"7il5tn"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65",key:"1pfsoa"}]]);const z3=c("message-circle-plus",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M12 8v8",key:"napkw2"}]]);const Ar=c("message-circle-question-mark",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);const O3=c("message-circle-reply",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}],["path",{d:"m10 15-3-3 3-3",key:"1pgupc"}],["path",{d:"M7 12h8a2 2 0 0 1 2 2v1",key:"89sh1g"}]]);const q3=c("message-circle-warning",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]);const j3=c("message-circle-x",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]]);const H3=c("message-circle",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}]]);const V3=c("message-square-code",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"m10 8-3 3 3 3",key:"fp6dz7"}],["path",{d:"m14 14 3-3-3-3",key:"1yrceu"}]]);const F3=c("message-square-dashed",[["path",{d:"M14 3h2",key:"1d12a5"}],["path",{d:"M16 19h-2",key:"1agirb"}],["path",{d:"M2 12v-2",key:"1ey295"}],["path",{d:"M2 16v5.286a.71.71 0 0 0 1.212.502l1.149-1.149",key:"120k8q"}],["path",{d:"M20 19a2 2 0 0 0 2-2v-1",key:"ior8tn"}],["path",{d:"M22 10v2",key:"rmlecy"}],["path",{d:"M22 6V5a2 2 0 0 0-2-2",key:"sp3k6r"}],["path",{d:"M4 3a2 2 0 0 0-2 2v1",key:"11zt7s"}],["path",{d:"M8 19h2",key:"jnunrx"}],["path",{d:"M8 3h2",key:"ysbsee"}]]);const B3=c("message-square-diff",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M10 15h4",key:"192ueg"}],["path",{d:"M10 9h4",key:"u4k05v"}],["path",{d:"M12 7v4",key:"xawao1"}]]);const W3=c("message-square-dot",[["path",{d:"M12.7 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4.7",key:"wjb7ig"}],["circle",{cx:"19",cy:"6",r:"3",key:"108a5v"}]]);const U3=c("message-square-heart",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M7.5 9.5c0 .687.265 1.383.697 1.844l3.009 3.264a1.14 1.14 0 0 0 .407.314 1 1 0 0 0 .783-.004 1.14 1.14 0 0 0 .398-.31l3.008-3.264A2.77 2.77 0 0 0 16.5 9.5 2.5 2.5 0 0 0 12 8a2.5 2.5 0 0 0-4.5 1.5",key:"1faxuh"}]]);const R3=c("message-square-lock",[["path",{d:"M22 8.5V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H10",key:"fu6chl"}],["path",{d:"M20 15v-2a2 2 0 0 0-4 0v2",key:"vl8a78"}],["rect",{x:"14",y:"15",width:"8",height:"5",rx:"1",key:"37aafw"}]]);const G3=c("message-square-off",[["path",{d:"M19 19H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.7.7 0 0 1 2 21.286V5a2 2 0 0 1 1.184-1.826",key:"1wyg69"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.656 3H20a2 2 0 0 1 2 2v11.344",key:"mhl4k6"}]]);const K3=c("message-square-more",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M12 11h.01",key:"z322tv"}],["path",{d:"M16 11h.01",key:"xkw8gn"}],["path",{d:"M8 11h.01",key:"1dfujw"}]]);const Y3=c("message-square-plus",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M12 8v6",key:"1ib9pf"}],["path",{d:"M9 11h6",key:"1fldmi"}]]);const X3=c("message-square-quote",[["path",{d:"M14 14a2 2 0 0 0 2-2V8h-2",key:"1r06pg"}],["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M8 14a2 2 0 0 0 2-2V8H8",key:"1jzu5j"}]]);const Z3=c("message-square-reply",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"m10 8-3 3 3 3",key:"fp6dz7"}],["path",{d:"M17 14v-1a2 2 0 0 0-2-2H7",key:"1tkjnz"}]]);const Q3=c("message-square-text",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M7 11h10",key:"1twpyw"}],["path",{d:"M7 15h6",key:"d9of3u"}],["path",{d:"M7 7h8",key:"af5zfr"}]]);const J3=c("message-square-share",[["path",{d:"M12 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4",key:"11da1y"}],["path",{d:"M16 3h6v6",key:"1bx56c"}],["path",{d:"m16 9 6-6",key:"m4dnic"}]]);const e_=c("message-square-warning",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M12 15h.01",key:"q59x07"}],["path",{d:"M12 7v4",key:"xawao1"}]]);const t_=c("message-square-x",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"m14.5 8.5-5 5",key:"19tnj2"}],["path",{d:"m9.5 8.5 5 5",key:"1oa8ql"}]]);const o_=c("message-square",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}]]);const n_=c("messages-square",[["path",{d:"M16 10a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 14.286V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z",key:"1n2ejm"}],["path",{d:"M20 9a2 2 0 0 1 2 2v10.286a.71.71 0 0 1-1.212.502l-2.202-2.202A2 2 0 0 0 17.172 19H10a2 2 0 0 1-2-2v-1",key:"1qfcsi"}]]);const a_=c("mic-off",[["path",{d:"M12 19v3",key:"npa21l"}],["path",{d:"M15 9.34V5a3 3 0 0 0-5.68-1.33",key:"1gzdoj"}],["path",{d:"M16.95 16.95A7 7 0 0 1 5 12v-2",key:"cqa7eg"}],["path",{d:"M18.89 13.23A7 7 0 0 0 19 12v-2",key:"16hl24"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M9 9v3a3 3 0 0 0 5.12 2.12",key:"r2i35w"}]]);const r_=c("mic",[["path",{d:"M12 19v3",key:"npa21l"}],["path",{d:"M19 10v2a7 7 0 0 1-14 0v-2",key:"1vc78b"}],["rect",{x:"9",y:"2",width:"6",height:"13",rx:"3",key:"s6n7sd"}]]);const Pr=c("mic-vocal",[["path",{d:"m11 7.601-5.994 8.19a1 1 0 0 0 .1 1.298l.817.818a1 1 0 0 0 1.314.087L15.09 12",key:"80a601"}],["path",{d:"M16.5 21.174C15.5 20.5 14.372 20 13 20c-2.058 0-3.928 2.356-6 2-2.072-.356-2.775-3.369-1.5-4.5",key:"j0ngtp"}],["circle",{cx:"16",cy:"7",r:"5",key:"d08jfb"}]]);const i_=c("microchip",[["path",{d:"M10 12h4",key:"a56b0p"}],["path",{d:"M10 17h4",key:"pvmtpo"}],["path",{d:"M10 7h4",key:"1vgcok"}],["path",{d:"M18 12h2",key:"quuxs7"}],["path",{d:"M18 18h2",key:"4scel"}],["path",{d:"M18 6h2",key:"1ptzki"}],["path",{d:"M4 12h2",key:"1ltxp0"}],["path",{d:"M4 18h2",key:"1xrofg"}],["path",{d:"M4 6h2",key:"1cx33n"}],["rect",{x:"6",y:"2",width:"12",height:"20",rx:"2",key:"749fme"}]]);const c_=c("microscope",[["path",{d:"M6 18h8",key:"1borvv"}],["path",{d:"M3 22h18",key:"8prr45"}],["path",{d:"M14 22a7 7 0 1 0 0-14h-1",key:"1jwaiy"}],["path",{d:"M9 14h2",key:"197e7h"}],["path",{d:"M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z",key:"1bmzmy"}],["path",{d:"M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3",key:"1drr47"}]]);const s_=c("microwave",[["rect",{width:"20",height:"15",x:"2",y:"4",rx:"2",key:"2no95f"}],["rect",{width:"8",height:"7",x:"6",y:"8",rx:"1",key:"zh9wx"}],["path",{d:"M18 8v7",key:"o5zi4n"}],["path",{d:"M6 19v2",key:"1loha6"}],["path",{d:"M18 19v2",key:"1dawf0"}]]);const d_=c("milestone",[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M12 3v3",key:"1n5kay"}],["path",{d:"M4 6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h13a2 2 0 0 0 1.152-.365l3.424-2.317a1 1 0 0 0 0-1.635l-3.424-2.318A2 2 0 0 0 17 6z",key:"1btarq"}]]);const l_=c("milk-off",[["path",{d:"M8 2h8",key:"1ssgc1"}],["path",{d:"M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3",key:"y0ejgx"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435",key:"iaxqsy"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const u_=c("milk",[["path",{d:"M8 2h8",key:"1ssgc1"}],["path",{d:"M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2",key:"qtp12x"}],["path",{d:"M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0",key:"ygeh44"}]]);const h_=c("minimize-2",[["path",{d:"m14 10 7-7",key:"oa77jy"}],["path",{d:"M20 10h-6V4",key:"mjg0md"}],["path",{d:"m3 21 7-7",key:"tjx5ai"}],["path",{d:"M4 14h6v6",key:"rmj7iw"}]]);const p_=c("minimize",[["path",{d:"M8 3v3a2 2 0 0 1-2 2H3",key:"hohbtr"}],["path",{d:"M21 8h-3a2 2 0 0 1-2-2V3",key:"5jw1f3"}],["path",{d:"M3 16h3a2 2 0 0 1 2 2v3",key:"198tvr"}],["path",{d:"M16 21v-3a2 2 0 0 1 2-2h3",key:"ph8mxp"}]]);const y_=c("monitor-check",[["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]]);const Qs=c("minus",[["path",{d:"M5 12h14",key:"1ays0h"}]]);const f_=c("monitor-cloud",[["path",{d:"M11 13a3 3 0 1 1 2.83-4H14a2 2 0 0 1 0 4z",key:"1da4q6"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",key:"x3v2xh"}]]);const m_=c("monitor-cog",[["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"m14.305 7.53.923-.382",key:"1mlnsw"}],["path",{d:"m15.228 4.852-.923-.383",key:"82mpwg"}],["path",{d:"m16.852 3.228-.383-.924",key:"ln4sir"}],["path",{d:"m16.852 8.772-.383.923",key:"1dejw0"}],["path",{d:"m19.148 3.228.383-.924",key:"192kgf"}],["path",{d:"m19.53 9.696-.382-.924",key:"fiavlr"}],["path",{d:"m20.772 4.852.924-.383",key:"1j8mgp"}],["path",{d:"m20.772 7.148.924.383",key:"zix9be"}],["path",{d:"M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7",key:"1tnzv8"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}]]);const k_=c("monitor-dot",[["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M22 12.307V15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8.693",key:"1dx6ho"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["circle",{cx:"19",cy:"6",r:"3",key:"108a5v"}]]);const g_=c("monitor-down",[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"m15 10-3 3-3-3",key:"lzhmyn"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]]);const v_=c("monitor-off",[["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M17 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 1.184-1.826",key:"cv7jms"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"M8.656 3H20a2 2 0 0 1 2 2v10a2 2 0 0 1-.293 1.042",key:"z8ni2w"}]]);const __=c("monitor-pause",[["path",{d:"M10 13V7",key:"1u13u9"}],["path",{d:"M14 13V7",key:"1vj9om"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]]);const b_=c("monitor-play",[["path",{d:"M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z",key:"vbtd3f"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",key:"x3v2xh"}]]);const M_=c("monitor-smartphone",[["path",{d:"M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8",key:"10dyio"}],["path",{d:"M10 19v-3.96 3.15",key:"1irgej"}],["path",{d:"M7 19h5",key:"qswx4l"}],["rect",{width:"6",height:"10",x:"16",y:"12",rx:"2",key:"1egngj"}]]);const w_=c("monitor-speaker",[["path",{d:"M5.5 20H8",key:"1k40s5"}],["path",{d:"M17 9h.01",key:"1j24nn"}],["rect",{width:"10",height:"16",x:"12",y:"4",rx:"2",key:"ixliua"}],["path",{d:"M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4",key:"1mp6e1"}],["circle",{cx:"17",cy:"15",r:"1",key:"tqvash"}]]);const x_=c("monitor-stop",[["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",key:"x3v2xh"}],["rect",{x:"9",y:"7",width:"6",height:"6",rx:"1",key:"5m2oou"}]]);const N_=c("monitor-x",[["path",{d:"m14.5 12.5-5-5",key:"1jahn5"}],["path",{d:"m9.5 12.5 5-5",key:"1k2t7b"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]]);const C_=c("monitor-up",[["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}],["path",{d:"M12 13V7",key:"h0r20n"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]]);const $_=c("moon-star",[["path",{d:"M18 5h4",key:"1lhgn2"}],["path",{d:"M20 3v4",key:"1olli1"}],["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401",key:"kfwtm"}]]);const S_=c("monitor",[["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["line",{x1:"8",x2:"16",y1:"21",y2:"21",key:"1svkeh"}],["line",{x1:"12",x2:"12",y1:"17",y2:"21",key:"vw1qmm"}]]);const L_=c("moon",[["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401",key:"kfwtm"}]]);const I_=c("motorbike",[["path",{d:"m18 14-1-3",key:"bdajw9"}],["path",{d:"m3 9 6 2a2 2 0 0 1 2-2h2a2 2 0 0 1 1.99 1.81",key:"f5fotj"}],["path",{d:"M8 17h3a1 1 0 0 0 1-1 6 6 0 0 1 6-6 1 1 0 0 0 1-1v-.75A5 5 0 0 0 17 5",key:"3i90e2"}],["circle",{cx:"19",cy:"17",r:"3",key:"1otbdv"}],["circle",{cx:"5",cy:"17",r:"3",key:"1d8p0c"}]]);const A_=c("mountain-snow",[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z",key:"otkl63"}],["path",{d:"M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19",key:"1pvmmp"}]]);const P_=c("mountain",[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z",key:"otkl63"}]]);const T_=c("mouse-off",[["path",{d:"M12 6v.343",key:"1gyhex"}],["path",{d:"M18.218 18.218A7 7 0 0 1 5 15V9a7 7 0 0 1 .782-3.218",key:"ukzz01"}],["path",{d:"M19 13.343V9A7 7 0 0 0 8.56 2.902",key:"104jy9"}],["path",{d:"M22 22 2 2",key:"1r8tn9"}]]);const D_=c("mouse-pointer-2-off",[["path",{d:"m15.55 8.45 5.138 2.087a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063L8.45 15.551",key:"1qoshx"}],["path",{d:"M22 2 2 22",key:"y4kqgn"}],["path",{d:"m6.816 11.528-2.779-6.84a.495.495 0 0 1 .651-.651l6.84 2.779",key:"mymuvk"}]]);const E_=c("mouse-pointer-2",[["path",{d:"M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z",key:"edeuup"}]]);const z_=c("mouse-pointer-ban",[["path",{d:"M2.034 2.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.944L8.204 7.545a1 1 0 0 0-.66.66l-1.066 3.443a.5.5 0 0 1-.944.033z",key:"11pp1i"}],["circle",{cx:"16",cy:"16",r:"6",key:"qoo3c4"}],["path",{d:"m11.8 11.8 8.4 8.4",key:"oogvdj"}]]);const O_=c("mouse-pointer-click",[["path",{d:"M14 4.1 12 6",key:"ita8i4"}],["path",{d:"m5.1 8-2.9-.8",key:"1go3kf"}],["path",{d:"m6 12-1.9 2",key:"mnht97"}],["path",{d:"M7.2 2.2 8 5.1",key:"1cfko1"}],["path",{d:"M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z",key:"s0h3yz"}]]);const q_=c("mouse-pointer",[["path",{d:"M12.586 12.586 19 19",key:"ea5xo7"}],["path",{d:"M3.688 3.037a.497.497 0 0 0-.651.651l6.5 15.999a.501.501 0 0 0 .947-.062l1.569-6.083a2 2 0 0 1 1.448-1.479l6.124-1.579a.5.5 0 0 0 .063-.947z",key:"277e5u"}]]);const j_=c("mouse",[["rect",{x:"5",y:"2",width:"14",height:"20",rx:"7",key:"11ol66"}],["path",{d:"M12 6v4",key:"16clxf"}]]);const Tr=c("move-3d",[["path",{d:"M5 3v16h16",key:"1mqmf9"}],["path",{d:"m5 19 6-6",key:"jh6hbb"}],["path",{d:"m2 6 3-3 3 3",key:"tkyvxa"}],["path",{d:"m18 16 3 3-3 3",key:"1d4glt"}]]);const H_=c("move-diagonal-2",[["path",{d:"M19 13v6h-6",key:"1hxl6d"}],["path",{d:"M5 11V5h6",key:"12e2xe"}],["path",{d:"m5 5 14 14",key:"11anup"}]]);const V_=c("move-diagonal",[["path",{d:"M11 19H5v-6",key:"8awifj"}],["path",{d:"M13 5h6v6",key:"7voy1q"}],["path",{d:"M19 5 5 19",key:"wwaj1z"}]]);const F_=c("move-down-left",[["path",{d:"M11 19H5V13",key:"1akmht"}],["path",{d:"M19 5L5 19",key:"72u4yj"}]]);const B_=c("move-down-right",[["path",{d:"M19 13V19H13",key:"10vkzq"}],["path",{d:"M5 5L19 19",key:"5zm2fv"}]]);const W_=c("move-down",[["path",{d:"M8 18L12 22L16 18",key:"cskvfv"}],["path",{d:"M12 2V22",key:"r89rzk"}]]);const U_=c("move-horizontal",[["path",{d:"m18 8 4 4-4 4",key:"1ak13k"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"m6 8-4 4 4 4",key:"15zrgr"}]]);const R_=c("move-left",[["path",{d:"M6 8L2 12L6 16",key:"kyvwex"}],["path",{d:"M2 12H22",key:"1m8cig"}]]);const G_=c("move-right",[["path",{d:"M18 8L22 12L18 16",key:"1r0oui"}],["path",{d:"M2 12H22",key:"1m8cig"}]]);const K_=c("move-up-left",[["path",{d:"M5 11V5H11",key:"3q78g9"}],["path",{d:"M5 5L19 19",key:"5zm2fv"}]]);const Y_=c("move-up",[["path",{d:"M8 6L12 2L16 6",key:"1yvkyx"}],["path",{d:"M12 2V22",key:"r89rzk"}]]);const X_=c("move-up-right",[["path",{d:"M13 5H19V11",key:"1n1gyv"}],["path",{d:"M19 5L5 19",key:"72u4yj"}]]);const Z_=c("move",[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"m15 19-3 3-3-3",key:"11eu04"}],["path",{d:"m19 9 3 3-3 3",key:"1mg7y2"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"m5 9-3 3 3 3",key:"j64kie"}],["path",{d:"m9 5 3-3 3 3",key:"l8vdw6"}]]);const Q_=c("move-vertical",[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"m8 18 4 4 4-4",key:"bh5tu3"}],["path",{d:"m8 6 4-4 4 4",key:"ybng9g"}]]);const J_=c("music-2",[["circle",{cx:"8",cy:"18",r:"4",key:"1fc0mg"}],["path",{d:"M12 18V2l7 4",key:"g04rme"}]]);const e8=c("music-3",[["circle",{cx:"12",cy:"18",r:"4",key:"m3r9ws"}],["path",{d:"M16 18V2",key:"40x2m5"}]]);const t8=c("music-4",[["path",{d:"M9 18V5l12-2v13",key:"1jmyc2"}],["path",{d:"m9 9 12-2",key:"1e64n2"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["circle",{cx:"18",cy:"16",r:"3",key:"1hluhg"}]]);const o8=c("music",[["path",{d:"M9 18V5l12-2v13",key:"1jmyc2"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["circle",{cx:"18",cy:"16",r:"3",key:"1hluhg"}]]);const n8=c("navigation-2-off",[["path",{d:"M9.31 9.31 5 21l7-4 7 4-1.17-3.17",key:"qoq2o2"}],["path",{d:"M14.53 8.88 12 2l-1.17 3.17",key:"k3sjzy"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const a8=c("navigation-2",[["polygon",{points:"12 2 19 21 12 17 5 21 12 2",key:"x8c0qg"}]]);const r8=c("navigation-off",[["path",{d:"M8.43 8.43 3 11l8 2 2 8 2.57-5.43",key:"1vdtb7"}],["path",{d:"M17.39 11.73 22 2l-9.73 4.61",key:"tya3r6"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const i8=c("navigation",[["polygon",{points:"3 11 22 2 13 21 11 13 3 11",key:"1ltx0t"}]]);const c8=c("network",[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1",key:"4q2zg0"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1",key:"8cvhb9"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1",key:"1egb70"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3",key:"1jsf9p"}],["path",{d:"M12 12V8",key:"2874zd"}]]);const s8=c("newspaper",[["path",{d:"M15 18h-5",key:"95g1m2"}],["path",{d:"M18 14h-8",key:"sponae"}],["path",{d:"M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2",key:"39pd36"}],["rect",{width:"8",height:"4",x:"10",y:"6",rx:"1",key:"aywv1n"}]]);const d8=c("nfc",[["path",{d:"M6 8.32a7.43 7.43 0 0 1 0 7.36",key:"9iaqei"}],["path",{d:"M9.46 6.21a11.76 11.76 0 0 1 0 11.58",key:"1yha7l"}],["path",{d:"M12.91 4.1a15.91 15.91 0 0 1 .01 15.8",key:"4iu2gk"}],["path",{d:"M16.37 2a20.16 20.16 0 0 1 0 20",key:"sap9u2"}]]);const l8=c("non-binary",[["path",{d:"M12 2v10",key:"mnfbl"}],["path",{d:"m8.5 4 7 4",key:"m1xjk3"}],["path",{d:"m8.5 8 7-4",key:"t0m5j6"}],["circle",{cx:"12",cy:"17",r:"5",key:"qbz8iq"}]]);const u8=c("notebook-pen",[["path",{d:"M13.4 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7.4",key:"re6nr2"}],["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["path",{d:"M21.378 5.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"pqwjuv"}]]);const h8=c("notebook-tabs",[["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M15 2v20",key:"dcj49h"}],["path",{d:"M15 7h5",key:"1xj5lc"}],["path",{d:"M15 12h5",key:"w5shd9"}],["path",{d:"M15 17h5",key:"1qaofu"}]]);const p8=c("notebook-text",[["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M9.5 8h5",key:"11mslq"}],["path",{d:"M9.5 12H16",key:"ktog6x"}],["path",{d:"M9.5 16H14",key:"p1seyn"}]]);const y8=c("notebook",[["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M16 2v20",key:"rotuqe"}]]);const f8=c("notepad-text-dashed",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v2",key:"j91f56"}],["path",{d:"M20 12v2",key:"w8o0tu"}],["path",{d:"M20 18v2a2 2 0 0 1-2 2h-1",key:"1c9ggx"}],["path",{d:"M13 22h-2",key:"191ugt"}],["path",{d:"M7 22H6a2 2 0 0 1-2-2v-2",key:"1rt9px"}],["path",{d:"M4 14v-2",key:"1v0sqh"}],["path",{d:"M4 8V6a2 2 0 0 1 2-2h2",key:"1mwabg"}],["path",{d:"M8 10h6",key:"3oa6kw"}],["path",{d:"M8 14h8",key:"1fgep2"}],["path",{d:"M8 18h5",key:"17enja"}]]);const m8=c("notepad-text",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"16",height:"18",x:"4",y:"4",rx:"2",key:"1u9h20"}],["path",{d:"M8 10h6",key:"3oa6kw"}],["path",{d:"M8 14h8",key:"1fgep2"}],["path",{d:"M8 18h5",key:"17enja"}]]);const k8=c("nut-off",[["path",{d:"M12 4V2",key:"1k5q1u"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939",key:"1xcvy9"}],["path",{d:"M19 10v3.343",key:"163tfc"}],["path",{d:"M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192",key:"17914v"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const g8=c("nut",[["path",{d:"M12 4V2",key:"1k5q1u"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4",key:"1tgyif"}],["path",{d:"M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z",key:"tnsqj"}]]);const Dr=c("octagon-alert",[["path",{d:"M12 16h.01",key:"1drbdi"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z",key:"1fd625"}]]);const v8=c("octagon-minus",[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}],["path",{d:"M8 12h8",key:"1wcyev"}]]);const Er=c("octagon-pause",[["path",{d:"M10 15V9",key:"1lckn7"}],["path",{d:"M14 15V9",key:"1muqhk"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}]]);const Jo=c("octagon-x",[["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]]);const _8=c("octagon",[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}]]);const b8=c("omega",[["path",{d:"M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.494-.001.52.52 0 0 0-.247.438v.282a.5.5 0 0 0 .5.5H21",key:"1x94xo"}]]);const M8=c("option",[["path",{d:"M3 3h6l6 18h6",key:"ph9rgk"}],["path",{d:"M14 3h7",key:"16f0ms"}]]);const w8=c("orbit",[["path",{d:"M20.341 6.484A10 10 0 0 1 10.266 21.85",key:"1enhxb"}],["path",{d:"M3.659 17.516A10 10 0 0 1 13.74 2.152",key:"1crzgf"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["circle",{cx:"19",cy:"5",r:"2",key:"mhkx31"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}]]);const x8=c("origami",[["path",{d:"M12 12V4a1 1 0 0 1 1-1h6.297a1 1 0 0 1 .651 1.759l-4.696 4.025",key:"1bx4vc"}],["path",{d:"m12 21-7.414-7.414A2 2 0 0 1 4 12.172V6.415a1.002 1.002 0 0 1 1.707-.707L20 20.009",key:"1h3km6"}],["path",{d:"m12.214 3.381 8.414 14.966a1 1 0 0 1-.167 1.199l-1.168 1.163a1 1 0 0 1-.706.291H6.351a1 1 0 0 1-.625-.219L3.25 18.8a1 1 0 0 1 .631-1.781l4.165.027",key:"1hj4wg"}]]);const N8=c("package-2",[["path",{d:"M12 3v6",key:"1holv5"}],["path",{d:"M16.76 3a2 2 0 0 1 1.8 1.1l2.23 4.479a2 2 0 0 1 .21.891V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.472a2 2 0 0 1 .211-.894L5.45 4.1A2 2 0 0 1 7.24 3z",key:"187q7i"}],["path",{d:"M3.054 9.013h17.893",key:"grwhos"}]]);const C8=c("package-check",[["path",{d:"m16 16 2 2 4-4",key:"gfu2re"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}]]);const $8=c("package-minus",[["path",{d:"M16 16h6",key:"100bgy"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}]]);const S8=c("package-open",[["path",{d:"M12 22v-9",key:"x3hkom"}],["path",{d:"M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z",key:"2ntwy6"}],["path",{d:"M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13",key:"1pmm1c"}],["path",{d:"M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z",key:"12ttoo"}]]);const L8=c("package-plus",[["path",{d:"M16 16h6",key:"100bgy"}],["path",{d:"M19 13v6",key:"85cyf1"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}]]);const I8=c("package-search",[["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}],["circle",{cx:"18.5",cy:"15.5",r:"2.5",key:"b5zd12"}],["path",{d:"M20.27 17.27 22 19",key:"1l4muz"}]]);const A8=c("package-x",[["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}],["path",{d:"m17 13 5 5m-5 0 5-5",key:"im3w4b"}]]);const P8=c("package",[["path",{d:"M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z",key:"1a0edw"}],["path",{d:"M12 22V12",key:"d0xqtd"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}]]);const T8=c("paint-bucket",[["path",{d:"M11 7 6 2",key:"1jwth8"}],["path",{d:"M18.992 12H2.041",key:"xw1gg"}],["path",{d:"M21.145 18.38A3.34 3.34 0 0 1 20 16.5a3.3 3.3 0 0 1-1.145 1.88c-.575.46-.855 1.02-.855 1.595A2 2 0 0 0 20 22a2 2 0 0 0 2-2.025c0-.58-.285-1.13-.855-1.595",key:"1nkol4"}],["path",{d:"m8.5 4.5 2.148-2.148a1.205 1.205 0 0 1 1.704 0l7.296 7.296a1.205 1.205 0 0 1 0 1.704l-7.592 7.592a3.615 3.615 0 0 1-5.112 0l-3.888-3.888a3.615 3.615 0 0 1 0-5.112L5.67 7.33",key:"1nk1rd"}]]);const D8=c("paint-roller",[["rect",{width:"16",height:"6",x:"2",y:"2",rx:"2",key:"jcyz7m"}],["path",{d:"M10 16v-2a2 2 0 0 1 2-2h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2",key:"1b9h7c"}],["rect",{width:"4",height:"6",x:"8",y:"16",rx:"1",key:"d6e7yl"}]]);const zr=c("paintbrush-vertical",[["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M14 2v4",key:"qmzblu"}],["path",{d:"M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z",key:"ycvu00"}],["path",{d:"M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1",key:"iw4wnp"}]]);const E8=c("paintbrush",[["path",{d:"m14.622 17.897-10.68-2.913",key:"vj2p1u"}],["path",{d:"M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0z",key:"18tc5c"}],["path",{d:"M9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15",key:"ytzfxy"}]]);const z8=c("palette",[["path",{d:"M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z",key:"e79jfc"}],["circle",{cx:"13.5",cy:"6.5",r:".5",fill:"currentColor",key:"1okk4w"}],["circle",{cx:"17.5",cy:"10.5",r:".5",fill:"currentColor",key:"f64h9f"}],["circle",{cx:"6.5",cy:"12.5",r:".5",fill:"currentColor",key:"qy21gx"}],["circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor",key:"fotxhn"}]]);const O8=c("panda",[["path",{d:"M11.25 17.25h1.5L12 18z",key:"1wmwwj"}],["path",{d:"m15 12 2 2",key:"k60wz4"}],["path",{d:"M18 6.5a.5.5 0 0 0-.5-.5",key:"1ch4h4"}],["path",{d:"M20.69 9.67a4.5 4.5 0 1 0-7.04-5.5 8.35 8.35 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5C2.49 11.2 2 12.88 2 14.5 2 19.47 6.48 22 12 22s10-2.53 10-7.5c0-1.62-.48-3.3-1.3-4.83",key:"1c660l"}],["path",{d:"M6 6.5a.495.495 0 0 1 .5-.5",key:"eviuep"}],["path",{d:"m9 12-2 2",key:"326nkw"}]]);const q8=c("panel-bottom-close",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"m15 8-3 3-3-3",key:"1oxy1z"}]]);const Or=c("panel-bottom-dashed",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M14 15h1",key:"171nev"}],["path",{d:"M19 15h2",key:"1vnucp"}],["path",{d:"M3 15h2",key:"8bym0q"}],["path",{d:"M9 15h1",key:"1tg3ks"}]]);const j8=c("panel-bottom-open",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}]]);const H8=c("panel-bottom",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h18",key:"5xshup"}]]);const qr=c("panel-left-close",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m16 15-3-3 3-3",key:"14y99z"}]]);const jr=c("panel-left-dashed",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 14v1",key:"askpd8"}],["path",{d:"M9 19v2",key:"16tejx"}],["path",{d:"M9 3v2",key:"1noubl"}],["path",{d:"M9 9v1",key:"19ebxg"}]]);const Hr=c("panel-left-open",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m14 9 3 3-3 3",key:"8010ee"}]]);const V8=c("panel-left-right-dashed",[["path",{d:"M15 10V9",key:"4dkmfx"}],["path",{d:"M15 15v-1",key:"6a4afx"}],["path",{d:"M15 21v-2",key:"1qshmc"}],["path",{d:"M15 5V3",key:"1fk0mb"}],["path",{d:"M9 10V9",key:"1lazqi"}],["path",{d:"M9 15v-1",key:"9lx740"}],["path",{d:"M9 21v-2",key:"1fwk0n"}],["path",{d:"M9 5V3",key:"2q8zi6"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const en=c("panel-left",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}]]);const F8=c("panel-right-close",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}],["path",{d:"m8 9 3 3-3 3",key:"12hl5m"}]]);const Vr=c("panel-right-dashed",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 14v1",key:"ilsfch"}],["path",{d:"M15 19v2",key:"1fst2f"}],["path",{d:"M15 3v2",key:"z204g4"}],["path",{d:"M15 9v1",key:"z2a8b1"}]]);const B8=c("panel-right-open",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}],["path",{d:"m10 15-3-3 3-3",key:"1pgupc"}]]);const W8=c("panel-right",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}]]);const U8=c("panel-top-bottom-dashed",[["path",{d:"M14 15h1",key:"171nev"}],["path",{d:"M14 9h1",key:"l0svgy"}],["path",{d:"M19 15h2",key:"1vnucp"}],["path",{d:"M19 9h2",key:"te2zfg"}],["path",{d:"M3 15h2",key:"8bym0q"}],["path",{d:"M3 9h2",key:"1h4ldw"}],["path",{d:"M9 15h1",key:"1tg3ks"}],["path",{d:"M9 9h1",key:"15jzuz"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const R8=c("panel-top-close",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"m9 16 3-3 3 3",key:"1idcnm"}]]);const Fr=c("panel-top-dashed",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M14 9h1",key:"l0svgy"}],["path",{d:"M19 9h2",key:"te2zfg"}],["path",{d:"M3 9h2",key:"1h4ldw"}],["path",{d:"M9 9h1",key:"15jzuz"}]]);const G8=c("panel-top-open",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"m15 14-3 3-3-3",key:"g215vf"}]]);const K8=c("panel-top",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}]]);const Y8=c("panels-left-bottom",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"M9 15h12",key:"5ijen5"}]]);const X8=c("panels-right-bottom",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h12",key:"1wkqb3"}],["path",{d:"M15 3v18",key:"14nvp0"}]]);const Z8=c("paperclip",[["path",{d:"m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551",key:"1miecu"}]]);const Br=c("panels-top-left",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M9 21V9",key:"1oto5p"}]]);const Q8=c("parentheses",[["path",{d:"M8 21s-4-3-4-9 4-9 4-9",key:"uto9ud"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9",key:"4w2vsq"}]]);const J8=c("parking-meter",[["path",{d:"M11 15h2",key:"199qp6"}],["path",{d:"M12 12v3",key:"158kv8"}],["path",{d:"M12 19v3",key:"npa21l"}],["path",{d:"M15.282 19a1 1 0 0 0 .948-.68l2.37-6.988a7 7 0 1 0-13.2 0l2.37 6.988a1 1 0 0 0 .948.68z",key:"1jofit"}],["path",{d:"M9 9a3 3 0 1 1 6 0",key:"jdoeu8"}]]);const e6=c("party-popper",[["path",{d:"M5.8 11.3 2 22l10.7-3.79",key:"gwxi1d"}],["path",{d:"M4 3h.01",key:"1vcuye"}],["path",{d:"M22 8h.01",key:"1mrtc2"}],["path",{d:"M15 2h.01",key:"1cjtqr"}],["path",{d:"M22 20h.01",key:"1mrys2"}],["path",{d:"m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10",key:"hbicv8"}],["path",{d:"m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17",key:"1i94pl"}],["path",{d:"m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7",key:"1cofks"}],["path",{d:"M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z",key:"4kbmks"}]]);const t6=c("pause",[["rect",{x:"14",y:"3",width:"5",height:"18",rx:"1",key:"kaeet6"}],["rect",{x:"5",y:"3",width:"5",height:"18",rx:"1",key:"1wsw3u"}]]);const o6=c("paw-print",[["circle",{cx:"11",cy:"4",r:"2",key:"vol9p0"}],["circle",{cx:"18",cy:"8",r:"2",key:"17gozi"}],["circle",{cx:"20",cy:"16",r:"2",key:"1v9bxh"}],["path",{d:"M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z",key:"1ydw1z"}]]);const n6=c("pc-case",[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",key:"1uq1d7"}],["path",{d:"M15 14h.01",key:"1kp3bh"}],["path",{d:"M9 6h6",key:"dgm16u"}],["path",{d:"M9 10h6",key:"9gxzsh"}]]);const Wr=c("pen-line",[["path",{d:"M13 21h8",key:"1jsn5i"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);const a6=c("pen-off",[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982",key:"bjo8r8"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353",key:"16h5ne"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const r6=c("pen-tool",[["path",{d:"M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z",key:"nt11vn"}],["path",{d:"m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18",key:"15qc1e"}],["path",{d:"m2.3 2.3 7.286 7.286",key:"1wuzzi"}],["circle",{cx:"11",cy:"11",r:"2",key:"xmgehs"}]]);const Ur=c("pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);const i6=c("pencil-line",[["path",{d:"M13 21h8",key:"1jsn5i"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);const c6=c("pencil-off",[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982",key:"bjo8r8"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353",key:"16h5ne"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const s6=c("pencil-ruler",[["path",{d:"M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13",key:"orapub"}],["path",{d:"m8 6 2-2",key:"115y1s"}],["path",{d:"m18 16 2-2",key:"ee94s4"}],["path",{d:"m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17",key:"cfq27r"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]]);const d6=c("pencil",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]]);const l6=c("pentagon",[["path",{d:"M10.83 2.38a2 2 0 0 1 2.34 0l8 5.74a2 2 0 0 1 .73 2.25l-3.04 9.26a2 2 0 0 1-1.9 1.37H7.04a2 2 0 0 1-1.9-1.37L2.1 10.37a2 2 0 0 1 .73-2.25z",key:"2hea0t"}]]);const u6=c("percent",[["line",{x1:"19",x2:"5",y1:"5",y2:"19",key:"1x9vlm"}],["circle",{cx:"6.5",cy:"6.5",r:"2.5",key:"4mh3h7"}],["circle",{cx:"17.5",cy:"17.5",r:"2.5",key:"1mdrzq"}]]);const h6=c("person-standing",[["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["path",{d:"m9 20 3-6 3 6",key:"se2kox"}],["path",{d:"m6 8 6 2 6-2",key:"4o3us4"}],["path",{d:"M12 10v4",key:"1kjpxc"}]]);const p6=c("philippine-peso",[["path",{d:"M20 11H4",key:"6ut86h"}],["path",{d:"M20 7H4",key:"zbl0bi"}],["path",{d:"M7 21V4a1 1 0 0 1 1-1h4a1 1 0 0 1 0 12H7",key:"1ana5r"}]]);const y6=c("phone-call",[["path",{d:"M13 2a9 9 0 0 1 9 9",key:"1itnx2"}],["path",{d:"M13 6a5 5 0 0 1 5 5",key:"11nki7"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);const f6=c("phone-forwarded",[["path",{d:"M14 6h8",key:"yd68k4"}],["path",{d:"m18 2 4 4-4 4",key:"pucp1d"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);const m6=c("phone-incoming",[["path",{d:"M16 2v6h6",key:"1mfrl5"}],["path",{d:"m22 2-6 6",key:"6f0sa0"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);const k6=c("phone-missed",[["path",{d:"m16 2 6 6",key:"1gw87d"}],["path",{d:"m22 2-6 6",key:"6f0sa0"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);const g6=c("phone-off",[["path",{d:"M10.1 13.9a14 14 0 0 0 3.732 2.668 1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2 18 18 0 0 1-12.728-5.272",key:"1wngk7"}],["path",{d:"M22 2 2 22",key:"y4kqgn"}],["path",{d:"M4.76 13.582A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 .244.473",key:"10hv5p"}]]);const v6=c("phone-outgoing",[["path",{d:"m16 8 6-6",key:"oawc05"}],["path",{d:"M22 8V2h-6",key:"oqy2zc"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);const _6=c("phone",[["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);const b6=c("pi",[["line",{x1:"9",x2:"9",y1:"4",y2:"20",key:"ovs5a5"}],["path",{d:"M4 7c0-1.7 1.3-3 3-3h13",key:"10pag4"}],["path",{d:"M18 20c-1.7 0-3-1.3-3-3V4",key:"1gaosr"}]]);const M6=c("piano",[["path",{d:"M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8",key:"lag0yf"}],["path",{d:"M2 14h20",key:"myj16y"}],["path",{d:"M6 14v4",key:"9ng0ue"}],["path",{d:"M10 14v4",key:"1v8uk5"}],["path",{d:"M14 14v4",key:"1tqops"}],["path",{d:"M18 14v4",key:"18uqwm"}]]);const w6=c("pickaxe",[["path",{d:"m14 13-8.381 8.38a1 1 0 0 1-3.001-3L11 9.999",key:"1lw9ds"}],["path",{d:"M15.973 4.027A13 13 0 0 0 5.902 2.373c-1.398.342-1.092 2.158.277 2.601a19.9 19.9 0 0 1 5.822 3.024",key:"ffj4ej"}],["path",{d:"M16.001 11.999a19.9 19.9 0 0 1 3.024 5.824c.444 1.369 2.26 1.676 2.603.278A13 13 0 0 0 20 8.069",key:"8tj4zw"}],["path",{d:"M18.352 3.352a1.205 1.205 0 0 0-1.704 0l-5.296 5.296a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l5.296-5.296a1.205 1.205 0 0 0 0-1.704z",key:"hh6h97"}]]);const x6=c("picture-in-picture-2",[["path",{d:"M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4",key:"daa4of"}],["rect",{width:"10",height:"7",x:"12",y:"13",rx:"2",key:"1nb8gs"}]]);const N6=c("picture-in-picture",[["path",{d:"M2 10h6V4",key:"zwrco"}],["path",{d:"m2 4 6 6",key:"ug085t"}],["path",{d:"M21 10V7a2 2 0 0 0-2-2h-7",key:"git5jr"}],["path",{d:"M3 14v2a2 2 0 0 0 2 2h3",key:"1f7fh3"}],["rect",{x:"12",y:"14",width:"10",height:"7",rx:"1",key:"1wjs3o"}]]);const C6=c("piggy-bank",[["path",{d:"M11 17h3v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a3.16 3.16 0 0 0 2-2h1a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-1a5 5 0 0 0-2-4V3a4 4 0 0 0-3.2 1.6l-.3.4H11a6 6 0 0 0-6 6v1a5 5 0 0 0 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1z",key:"1piglc"}],["path",{d:"M16 10h.01",key:"1m94wz"}],["path",{d:"M2 8v1a2 2 0 0 0 2 2h1",key:"1env43"}]]);const $6=c("pilcrow-left",[["path",{d:"M14 3v11",key:"mlfb7b"}],["path",{d:"M14 9h-3a3 3 0 0 1 0-6h9",key:"1ulc19"}],["path",{d:"M18 3v11",key:"1phi0r"}],["path",{d:"M22 18H2l4-4",key:"yt65j9"}],["path",{d:"m6 22-4-4",key:"6jgyf5"}]]);const S6=c("pilcrow-right",[["path",{d:"M10 3v11",key:"o3l5kj"}],["path",{d:"M10 9H7a1 1 0 0 1 0-6h8",key:"1wb1nc"}],["path",{d:"M14 3v11",key:"mlfb7b"}],["path",{d:"m18 14 4 4H2",key:"4r8io1"}],["path",{d:"m22 18-4 4",key:"1hjjrd"}]]);const L6=c("pilcrow",[["path",{d:"M13 4v16",key:"8vvj80"}],["path",{d:"M17 4v16",key:"7dpous"}],["path",{d:"M19 4H9.5a4.5 4.5 0 0 0 0 9H13",key:"sh4n9v"}]]);const I6=c("pill-bottle",[["path",{d:"M18 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4",key:"17ldeb"}],["path",{d:"M6 7v13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7",key:"nc37y6"}],["rect",{width:"16",height:"5",x:"4",y:"2",rx:"1",key:"3jeezo"}]]);const A6=c("pill",[["path",{d:"m10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z",key:"wa1lgi"}],["path",{d:"m8.5 8.5 7 7",key:"rvfmvr"}]]);const P6=c("pin-off",[["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89",key:"znwnzq"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11",key:"c9qhm2"}]]);const T6=c("pin",[["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z",key:"1nkz8b"}]]);const D6=c("pipette",[["path",{d:"m12 9-8.414 8.414A2 2 0 0 0 3 18.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 3.828 21h1.344a2 2 0 0 0 1.414-.586L15 12",key:"1y3wsu"}],["path",{d:"m18 9 .4.4a1 1 0 1 1-3 3l-3.8-3.8a1 1 0 1 1 3-3l.4.4 3.4-3.4a1 1 0 1 1 3 3z",key:"110lr1"}],["path",{d:"m2 22 .414-.414",key:"jhxm08"}]]);const E6=c("pizza",[["path",{d:"m12 14-1 1",key:"11onhr"}],["path",{d:"m13.75 18.25-1.25 1.42",key:"1yisr3"}],["path",{d:"M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12",key:"1qtqk6"}],["path",{d:"M18.8 9.3a1 1 0 0 0 2.1 7.7",key:"fbbbr2"}],["path",{d:"M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z",key:"1hyfdd"}]]);const z6=c("plane-landing",[["path",{d:"M2 22h20",key:"272qi7"}],["path",{d:"M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z",key:"1ma21e"}]]);const O6=c("plane-takeoff",[["path",{d:"M2 22h20",key:"272qi7"}],["path",{d:"M6.36 17.4 4 17l-2-4 1.1-.55a2 2 0 0 1 1.8 0l.17.1a2 2 0 0 0 1.8 0L8 12 5 6l.9-.45a2 2 0 0 1 2.09.2l4.02 3a2 2 0 0 0 2.1.2l4.19-2.06a2.41 2.41 0 0 1 1.73-.17L21 7a1.4 1.4 0 0 1 .87 1.99l-.38.76c-.23.46-.6.84-1.07 1.08L7.58 17.2a2 2 0 0 1-1.22.18Z",key:"fkigj9"}]]);const q6=c("plane",[["path",{d:"M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z",key:"1v9wt8"}]]);const j6=c("play",[["path",{d:"M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z",key:"10ikf1"}]]);const H6=c("plug-2",[["path",{d:"M9 2v6",key:"17ngun"}],["path",{d:"M15 2v6",key:"s7yy2p"}],["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M5 8h14",key:"pcz4l3"}],["path",{d:"M6 11V8h12v3a6 6 0 1 1-12 0Z",key:"wtfw2c"}]]);const Rr=c("plug-zap",[["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z",key:"goz73y"}],["path",{d:"m2 22 3-3",key:"19mgm9"}],["path",{d:"M7.5 13.5 10 11",key:"7xgeeb"}],["path",{d:"M10.5 16.5 13 14",key:"10btkg"}],["path",{d:"m18 3-4 4h6l-4 4",key:"16psg9"}]]);const V6=c("plug",[["path",{d:"M12 22v-5",key:"1ega77"}],["path",{d:"M15 8V2",key:"18g5xt"}],["path",{d:"M17 8a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1z",key:"1xoxul"}],["path",{d:"M9 8V2",key:"14iosj"}]]);const Js=c("plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);const F6=c("pocket",[["path",{d:"M20 3a2 2 0 0 1 2 2v6a1 1 0 0 1-20 0V5a2 2 0 0 1 2-2z",key:"1uodqw"}],["path",{d:"m8 10 4 4 4-4",key:"1mxd5q"}]]);const B6=c("pocket-knife",[["path",{d:"M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2",key:"19w3oe"}],["path",{d:"M18 6h.01",key:"1v4wsw"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z",key:"6fykxj"}],["path",{d:"M18 11.66V22a4 4 0 0 0 4-4V6",key:"1utzek"}]]);const W6=c("podcast",[["path",{d:"M13 17a1 1 0 1 0-2 0l.5 4.5a0.5 0.5 0 0 0 1 0z",fill:"currentColor",key:"x1mxqr"}],["path",{d:"M16.85 18.58a9 9 0 1 0-9.7 0",key:"d71mpg"}],["path",{d:"M8 14a5 5 0 1 1 8 0",key:"fc81rn"}],["circle",{cx:"12",cy:"11",r:"1",fill:"currentColor",key:"vqiwd"}]]);const U6=c("pointer-off",[["path",{d:"M10 4.5V4a2 2 0 0 0-2.41-1.957",key:"jsi14n"}],["path",{d:"M13.9 8.4a2 2 0 0 0-1.26-1.295",key:"hirc7f"}],["path",{d:"M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158",key:"1jxb2e"}],["path",{d:"m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343",key:"10r7hm"}],["path",{d:"M6 6v8",key:"tv5xkp"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const R6=c("pointer",[["path",{d:"M22 14a8 8 0 0 1-8 8",key:"56vcr3"}],["path",{d:"M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2",key:"1agjmk"}],["path",{d:"M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1",key:"wdbh2u"}],["path",{d:"M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10",key:"1ibuk9"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15",key:"g6ys72"}]]);const G6=c("popcorn",[["path",{d:"M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4",key:"10td1f"}],["path",{d:"M10 22 9 8",key:"yjptiv"}],["path",{d:"m14 22 1-14",key:"8jwc8b"}],["path",{d:"M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z",key:"1qo33t"}]]);const K6=c("popsicle",[["path",{d:"M18.6 14.4c.8-.8.8-2 0-2.8l-8.1-8.1a4.95 4.95 0 1 0-7.1 7.1l8.1 8.1c.9.7 2.1.7 2.9-.1Z",key:"1o68ps"}],["path",{d:"m22 22-5.5-5.5",key:"17o70y"}]]);const Y6=c("pound-sterling",[["path",{d:"M18 7c0-5.333-8-5.333-8 0",key:"1prm2n"}],["path",{d:"M10 7v14",key:"18tmcs"}],["path",{d:"M6 21h12",key:"4dkmi1"}],["path",{d:"M6 13h10",key:"ybwr4a"}]]);const X6=c("power-off",[["path",{d:"M18.36 6.64A9 9 0 0 1 20.77 15",key:"dxknvb"}],["path",{d:"M6.16 6.16a9 9 0 1 0 12.68 12.68",key:"1x7qb5"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const Z6=c("power",[["path",{d:"M12 2v10",key:"mnfbl"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04",key:"obofu9"}]]);const Q6=c("presentation",[["path",{d:"M2 3h20",key:"91anmk"}],["path",{d:"M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3",key:"2k9sn8"}],["path",{d:"m7 21 5-5 5 5",key:"bip4we"}]]);const J6=c("printer-check",[["path",{d:"M13.5 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v.5",key:"qeb09x"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2",key:"1md90i"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6",key:"1itne7"}]]);const eb=c("printer-x",[["path",{d:"M12.531 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h6.377",key:"1w39xo"}],["path",{d:"m16.5 16.5 5 5",key:"zc9lw7"}],["path",{d:"m16.5 21.5 5-5",key:"1fr29m"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.5",key:"18he39"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6",key:"1itne7"}]]);const tb=c("projector",[["path",{d:"M5 7 3 5",key:"1yys58"}],["path",{d:"M9 6V3",key:"1ptz9u"}],["path",{d:"m13 7 2-2",key:"1w3vmq"}],["circle",{cx:"9",cy:"13",r:"3",key:"1mma13"}],["path",{d:"M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17",key:"2frwzc"}],["path",{d:"M16 16h2",key:"dnq2od"}]]);const ob=c("printer",[["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2",key:"143wyd"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6",key:"1itne7"}],["rect",{x:"6",y:"14",width:"12",height:"8",rx:"1",key:"1ue0tg"}]]);const nb=c("proportions",[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M12 9v11",key:"1fnkrn"}],["path",{d:"M2 9h13a2 2 0 0 1 2 2v9",key:"11z3ex"}]]);const ab=c("puzzle",[["path",{d:"M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z",key:"w46dr5"}]]);const rb=c("pyramid",[["path",{d:"M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z",key:"aenxs0"}],["path",{d:"M12 2v20",key:"t6zp3m"}]]);const ib=c("qr-code",[["rect",{width:"5",height:"5",x:"3",y:"3",rx:"1",key:"1tu5fj"}],["rect",{width:"5",height:"5",x:"16",y:"3",rx:"1",key:"1v8r4q"}],["rect",{width:"5",height:"5",x:"3",y:"16",rx:"1",key:"1x03jg"}],["path",{d:"M21 16h-3a2 2 0 0 0-2 2v3",key:"177gqh"}],["path",{d:"M21 21v.01",key:"ents32"}],["path",{d:"M12 7v3a2 2 0 0 1-2 2H7",key:"8crl2c"}],["path",{d:"M3 12h.01",key:"nlz23k"}],["path",{d:"M12 3h.01",key:"n36tog"}],["path",{d:"M12 16v.01",key:"133mhm"}],["path",{d:"M16 12h1",key:"1slzba"}],["path",{d:"M21 12v.01",key:"1lwtk9"}],["path",{d:"M12 21v-1",key:"1880an"}]]);const cb=c("quote",[["path",{d:"M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z",key:"rib7q0"}],["path",{d:"M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z",key:"1ymkrd"}]]);const sb=c("rabbit",[["path",{d:"M13 16a3 3 0 0 1 2.24 5",key:"1epib5"}],["path",{d:"M18 12h.01",key:"yjnet6"}],["path",{d:"M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1 1 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1a3 3 0 0 0-3 3",key:"ue9ozu"}],["path",{d:"M20 8.54V4a2 2 0 1 0-4 0v3",key:"49iql8"}],["path",{d:"M7.612 12.524a3 3 0 1 0-1.6 4.3",key:"1e33i0"}]]);const db=c("radar",[["path",{d:"M19.07 4.93A10 10 0 0 0 6.99 3.34",key:"z3du51"}],["path",{d:"M4 6h.01",key:"oypzma"}],["path",{d:"M2.29 9.62A10 10 0 1 0 21.31 8.35",key:"qzzz0"}],["path",{d:"M16.24 7.76A6 6 0 1 0 8.23 16.67",key:"1yjesh"}],["path",{d:"M12 18h.01",key:"mhygvu"}],["path",{d:"M17.99 11.66A6 6 0 0 1 15.77 16.67",key:"1u2y91"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"m13.41 10.59 5.66-5.66",key:"mhq4k0"}]]);const lb=c("radical",[["path",{d:"M3 12h3.28a1 1 0 0 1 .948.684l2.298 7.934a.5.5 0 0 0 .96-.044L13.82 4.771A1 1 0 0 1 14.792 4H21",key:"1mqj8i"}]]);const ub=c("radiation",[["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M14 15.4641a4 4 0 0 1-4 0L7.52786 19.74597 A 1 1 0 0 0 7.99303 21.16211 10 10 0 0 0 16.00697 21.16211 1 1 0 0 0 16.47214 19.74597z",key:"1y4lzb"}],["path",{d:"M16 12a4 4 0 0 0-2-3.464l2.472-4.282a1 1 0 0 1 1.46-.305 10 10 0 0 1 4.006 6.94A1 1 0 0 1 21 12z",key:"163ggk"}],["path",{d:"M8 12a4 4 0 0 1 2-3.464L7.528 4.254a1 1 0 0 0-1.46-.305 10 10 0 0 0-4.006 6.94A1 1 0 0 0 3 12z",key:"1l9i0b"}]]);const hb=c("radio-receiver",[["path",{d:"M5 16v2",key:"g5qcv5"}],["path",{d:"M19 16v2",key:"1gbaio"}],["rect",{width:"20",height:"8",x:"2",y:"8",rx:"2",key:"vjsjur"}],["path",{d:"M18 12h.01",key:"yjnet6"}]]);const pb=c("radio-tower",[["path",{d:"M4.9 16.1C1 12.2 1 5.8 4.9 1.9",key:"s0qx1y"}],["path",{d:"M7.8 4.7a6.14 6.14 0 0 0-.8 7.5",key:"1idnkw"}],["circle",{cx:"12",cy:"9",r:"2",key:"1092wv"}],["path",{d:"M16.2 4.8c2 2 2.26 5.11.8 7.47",key:"ojru2q"}],["path",{d:"M19.1 1.9a9.96 9.96 0 0 1 0 14.1",key:"rhi7fg"}],["path",{d:"M9.5 18h5",key:"mfy3pd"}],["path",{d:"m8 22 4-11 4 11",key:"25yftu"}]]);const yb=c("radio",[["path",{d:"M16.247 7.761a6 6 0 0 1 0 8.478",key:"1fwjs5"}],["path",{d:"M19.075 4.933a10 10 0 0 1 0 14.134",key:"ehdyv1"}],["path",{d:"M4.925 19.067a10 10 0 0 1 0-14.134",key:"1q22gi"}],["path",{d:"M7.753 16.239a6 6 0 0 1 0-8.478",key:"r2q7qm"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const fb=c("radius",[["path",{d:"M20.34 17.52a10 10 0 1 0-2.82 2.82",key:"fydyku"}],["circle",{cx:"19",cy:"19",r:"2",key:"17f5cg"}],["path",{d:"m13.41 13.41 4.18 4.18",key:"1gqbwc"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const mb=c("rainbow",[["path",{d:"M22 17a10 10 0 0 0-20 0",key:"ozegv"}],["path",{d:"M6 17a6 6 0 0 1 12 0",key:"5giftw"}],["path",{d:"M10 17a2 2 0 0 1 4 0",key:"gnsikk"}]]);const kb=c("rail-symbol",[["path",{d:"M5 15h14",key:"m0yey3"}],["path",{d:"M5 9h14",key:"7tsvo6"}],["path",{d:"m14 20-5-5 6-6-5-5",key:"1jo42i"}]]);const gb=c("rat",[["path",{d:"M13 22H4a2 2 0 0 1 0-4h12",key:"bt3f23"}],["path",{d:"M13.236 18a3 3 0 0 0-2.2-5",key:"1tbvmo"}],["path",{d:"M16 9h.01",key:"1bdo4e"}],["path",{d:"M16.82 3.94a3 3 0 1 1 3.237 4.868l1.815 2.587a1.5 1.5 0 0 1-1.5 2.1l-2.872-.453a3 3 0 0 0-3.5 3",key:"9ch7kn"}],["path",{d:"M17 4.988a3 3 0 1 0-5.2 2.052A7 7 0 0 0 4 14.015 4 4 0 0 0 8 18",key:"3s7e9i"}]]);const vb=c("ratio",[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2",key:"1oxtiu"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}]]);const _b=c("receipt-cent",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M12 6.5v11",key:"ecfhkf"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2",key:"1makmb"}]]);const bb=c("receipt-euro",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 12h5",key:"1g6qi8"}],["path",{d:"M16 9.5a4 4 0 1 0 0 5.2",key:"b2px4r"}]]);const Mb=c("receipt-indian-rupee",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 7h8",key:"i86dvs"}],["path",{d:"M12 17.5 8 15h1a4 4 0 0 0 0-8",key:"grpkl4"}],["path",{d:"M8 11h8",key:"vwpz6n"}]]);const wb=c("receipt-japanese-yen",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"m12 10 3-3",key:"1mc12w"}],["path",{d:"m9 7 3 3v7.5",key:"39i0xv"}],["path",{d:"M9 11h6",key:"1fldmi"}],["path",{d:"M9 15h6",key:"cctwl0"}]]);const xb=c("receipt-pound-sterling",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 13h5",key:"1k9z8w"}],["path",{d:"M10 17V9.5a2.5 2.5 0 0 1 5 0",key:"1dzgp0"}],["path",{d:"M8 17h7",key:"8mjdqu"}]]);const Nb=c("receipt-russian-ruble",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 15h5",key:"vxg57a"}],["path",{d:"M8 11h5a2 2 0 1 0 0-4h-3v10",key:"1usi5u"}]]);const Cb=c("receipt-swiss-franc",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M10 17V7h5",key:"k7jq18"}],["path",{d:"M10 11h4",key:"1i0mka"}],["path",{d:"M8 15h5",key:"vxg57a"}]]);const $b=c("receipt-text",[["path",{d:"M13 16H8",key:"wsln4y"}],["path",{d:"M14 8H8",key:"1l3xfs"}],["path",{d:"M16 12H8",key:"1fr5h0"}],["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z",key:"ycz6yz"}]]);const Sb=c("receipt",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8",key:"1h4pet"}],["path",{d:"M12 17.5v-11",key:"1jc1ny"}]]);const Lb=c("receipt-turkish-lira",[["path",{d:"M10 6.5v11a5.5 5.5 0 0 0 5.5-5.5",key:"nw10mp"}],["path",{d:"m14 8-6 3",key:"2tb98i"}],["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1z",key:"io9ry0"}]]);const Ib=c("rectangle-circle",[["path",{d:"M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z",key:"1m5n7q"}],["circle",{cx:"14",cy:"12",r:"8",key:"1pag6k"}]]);const Gr=c("rectangle-ellipsis",[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M17 12h.01",key:"1m0b6t"}],["path",{d:"M7 12h.01",key:"eqddd0"}]]);const Ab=c("rectangle-goggles",[["path",{d:"M20 6a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-1.6-.8l-1.6-2.13a1 1 0 0 0-1.6 0L9.6 17.2A2 2 0 0 1 8 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z",key:"d5y1f"}]]);const Pb=c("rectangle-horizontal",[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}]]);const Tb=c("rectangle-vertical",[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2",key:"1oxtiu"}]]);const Db=c("redo-2",[["path",{d:"m15 14 5-5-5-5",key:"12vg1m"}],["path",{d:"M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13",key:"6uklza"}]]);const Eb=c("redo-dot",[["circle",{cx:"12",cy:"17",r:"1",key:"1ixnty"}],["path",{d:"M21 7v6h-6",key:"3ptur4"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7",key:"1kgawr"}]]);const zb=c("recycle",[["path",{d:"M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5",key:"x6z5xu"}],["path",{d:"M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12",key:"1x4zh5"}],["path",{d:"m14 16-3 3 3 3",key:"f6jyew"}],["path",{d:"M8.293 13.596 7.196 9.5 3.1 10.598",key:"wf1obh"}],["path",{d:"m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843",key:"9tzpgr"}],["path",{d:"m13.378 9.633 4.096 1.098 1.097-4.096",key:"1oe83g"}]]);const Ob=c("redo",[["path",{d:"M21 7v6h-6",key:"3ptur4"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7",key:"1kgawr"}]]);const qb=c("refresh-ccw-dot",[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"14sxne"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16",key:"1hlbsb"}],["path",{d:"M16 16h5v5",key:"ccwih5"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]]);const jb=c("refresh-ccw",[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"14sxne"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16",key:"1hlbsb"}],["path",{d:"M16 16h5v5",key:"ccwih5"}]]);const Hb=c("refresh-cw-off",[["path",{d:"M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47",key:"1krf6h"}],["path",{d:"M8 16H3v5",key:"1cv678"}],["path",{d:"M3 12C3 9.51 4 7.26 5.64 5.64",key:"ruvoct"}],["path",{d:"m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64",key:"19q130"}],["path",{d:"M21 12c0 1-.16 1.97-.47 2.87",key:"4w8emr"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M22 22 2 2",key:"1r8tn9"}]]);const Vb=c("refresh-cw",[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",key:"v9h5vc"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",key:"3uifl3"}],["path",{d:"M8 16H3v5",key:"1cv678"}]]);const Fb=c("refrigerator",[["path",{d:"M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z",key:"fpq118"}],["path",{d:"M5 10h14",key:"elsbfy"}],["path",{d:"M15 7v6",key:"1nx30x"}]]);const Bb=c("regex",[["path",{d:"M17 3v10",key:"15fgeh"}],["path",{d:"m12.67 5.5 8.66 5",key:"1gpheq"}],["path",{d:"m12.67 10.5 8.66-5",key:"1dkfa6"}],["path",{d:"M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z",key:"swwfx4"}]]);const Wb=c("remove-formatting",[["path",{d:"M4 7V4h16v3",key:"9msm58"}],["path",{d:"M5 20h6",key:"1h6pxn"}],["path",{d:"M13 4 8 20",key:"kqq6aj"}],["path",{d:"m15 15 5 5",key:"me55sn"}],["path",{d:"m20 15-5 5",key:"11p7ol"}]]);const Ub=c("repeat-1",[["path",{d:"m17 2 4 4-4 4",key:"nntrym"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14",key:"84bu3i"}],["path",{d:"m7 22-4-4 4-4",key:"1wqhfi"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3",key:"1rx37r"}],["path",{d:"M11 10h1v4",key:"70cz1p"}]]);const Rb=c("repeat-2",[["path",{d:"m2 9 3-3 3 3",key:"1ltn5i"}],["path",{d:"M13 18H7a2 2 0 0 1-2-2V6",key:"1r6tfw"}],["path",{d:"m22 15-3 3-3-3",key:"4rnwn2"}],["path",{d:"M11 6h6a2 2 0 0 1 2 2v10",key:"2f72bc"}]]);const Gb=c("repeat",[["path",{d:"m17 2 4 4-4 4",key:"nntrym"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14",key:"84bu3i"}],["path",{d:"m7 22-4-4 4-4",key:"1wqhfi"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3",key:"1rx37r"}]]);const Kb=c("replace-all",[["path",{d:"M14 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1",key:"zg1ipl"}],["path",{d:"M14 4a1 1 0 0 1 1-1",key:"dhj8ez"}],["path",{d:"M15 10a1 1 0 0 1-1-1",key:"1mnyi5"}],["path",{d:"M19 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1",key:"txt6k4"}],["path",{d:"M21 4a1 1 0 0 0-1-1",key:"sfs9ap"}],["path",{d:"M21 9a1 1 0 0 1-1 1",key:"mp6qeo"}],["path",{d:"m3 7 3 3 3-3",key:"x25e72"}],["path",{d:"M6 10V5a2 2 0 0 1 2-2h2",key:"15xut4"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1",key:"1bkyp8"}]]);const Yb=c("replace",[["path",{d:"M14 4a1 1 0 0 1 1-1",key:"dhj8ez"}],["path",{d:"M15 10a1 1 0 0 1-1-1",key:"1mnyi5"}],["path",{d:"M21 4a1 1 0 0 0-1-1",key:"sfs9ap"}],["path",{d:"M21 9a1 1 0 0 1-1 1",key:"mp6qeo"}],["path",{d:"m3 7 3 3 3-3",key:"x25e72"}],["path",{d:"M6 10V5a2 2 0 0 1 2-2h2",key:"15xut4"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1",key:"1bkyp8"}]]);const Xb=c("reply-all",[["path",{d:"m12 17-5-5 5-5",key:"1s3y5u"}],["path",{d:"M22 18v-2a4 4 0 0 0-4-4H7",key:"1fcyog"}],["path",{d:"m7 17-5-5 5-5",key:"1ed8i2"}]]);const Zb=c("reply",[["path",{d:"M20 18v-2a4 4 0 0 0-4-4H4",key:"5vmcpk"}],["path",{d:"m9 17-5-5 5-5",key:"nvlc11"}]]);const Qb=c("rewind",[["path",{d:"M12 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 12 18z",key:"2a1g8i"}],["path",{d:"M22 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 22 18z",key:"rg3s36"}]]);const Jb=c("ribbon",[["path",{d:"M12 11.22C11 9.997 10 9 10 8a2 2 0 0 1 4 0c0 1-.998 2.002-2.01 3.22",key:"1rnhq3"}],["path",{d:"m12 18 2.57-3.5",key:"116vt7"}],["path",{d:"M6.243 9.016a7 7 0 0 1 11.507-.009",key:"10dq0b"}],["path",{d:"M9.35 14.53 12 11.22",key:"tdsyp2"}],["path",{d:"M9.35 14.53C7.728 12.246 6 10.221 6 7a6 5 0 0 1 12 0c-.005 3.22-1.778 5.235-3.43 7.5l3.557 4.527a1 1 0 0 1-.203 1.43l-1.894 1.36a1 1 0 0 1-1.384-.215L12 18l-2.679 3.593a1 1 0 0 1-1.39.213l-1.865-1.353a1 1 0 0 1-.203-1.422z",key:"nmifey"}]]);const ed=c("rocket",[["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z",key:"m3kijz"}],["path",{d:"m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z",key:"1fmvmk"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0",key:"1f8sc4"}],["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5",key:"qeys4"}]]);const eM=c("rocking-chair",[["polyline",{points:"3.5 2 6.5 12.5 18 12.5",key:"y3iy52"}],["line",{x1:"9.5",x2:"5.5",y1:"12.5",y2:"20",key:"19vg5i"}],["line",{x1:"15",x2:"18.5",y1:"12.5",y2:"20",key:"1inpmv"}],["path",{d:"M2.75 18a13 13 0 0 0 18.5 0",key:"1nquas"}]]);const tM=c("roller-coaster",[["path",{d:"M6 19V5",key:"1r845m"}],["path",{d:"M10 19V6.8",key:"9j2tfs"}],["path",{d:"M14 19v-7.8",key:"10s8qv"}],["path",{d:"M18 5v4",key:"1tajlv"}],["path",{d:"M18 19v-6",key:"ielfq3"}],["path",{d:"M22 19V9",key:"158nzp"}],["path",{d:"M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65",key:"1930oh"}]]);const oM=c("rose",[["path",{d:"M17 10h-1a4 4 0 1 1 4-4v.534",key:"7qf5zm"}],["path",{d:"M17 6h1a4 4 0 0 1 1.42 7.74l-2.29.87a6 6 0 0 1-5.339-10.68l2.069-1.31",key:"1et29u"}],["path",{d:"M4.5 17c2.8-.5 4.4 0 5.5.8s1.8 2.2 2.3 3.7c-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2",key:"kiv2lz"}],["path",{d:"M9.77 12C4 15 2 22 2 22",key:"h28rw0"}],["circle",{cx:"17",cy:"8",r:"2",key:"1330xn"}]]);const Kr=c("rotate-3d",[["path",{d:"M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2",key:"10n0gc"}],["path",{d:"m15.194 13.707 3.814 1.86-1.86 3.814",key:"16shm9"}],["path",{d:"M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4",key:"1lxi77"}]]);const nM=c("rotate-ccw-key",[["path",{d:"m14.5 9.5 1 1",key:"159eiq"}],["path",{d:"m15.5 8.5-4 4",key:"iirg3q"}],["path",{d:"M3 12a9 9 0 1 0 9-9 9.74 9.74 0 0 0-6.74 2.74L3 8",key:"g2jlw"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["circle",{cx:"10",cy:"14",r:"2",key:"1239so"}]]);const aM=c("rotate-ccw-square",[["path",{d:"M20 9V7a2 2 0 0 0-2-2h-6",key:"19z8uc"}],["path",{d:"m15 2-3 3 3 3",key:"177bxs"}],["path",{d:"M20 13v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2",key:"d36hnl"}]]);const rM=c("rotate-ccw",[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]]);const iM=c("rotate-cw-square",[["path",{d:"M12 5H6a2 2 0 0 0-2 2v3",key:"l96uqu"}],["path",{d:"m9 8 3-3-3-3",key:"1gzgc3"}],["path",{d:"M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2",key:"1w2k5h"}]]);const cM=c("rotate-cw",[["path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8",key:"1p45f6"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}]]);const sM=c("route-off",[["circle",{cx:"6",cy:"19",r:"3",key:"1kj8tv"}],["path",{d:"M9 19h8.5c.4 0 .9-.1 1.3-.2",key:"1effex"}],["path",{d:"M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12",key:"k9y2ds"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M21 15.3a3.5 3.5 0 0 0-3.3-3.3",key:"11nlu2"}],["path",{d:"M15 5h-4.3",key:"6537je"}],["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}]]);const dM=c("route",[["circle",{cx:"6",cy:"19",r:"3",key:"1kj8tv"}],["path",{d:"M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15",key:"1d8sl"}],["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}]]);const lM=c("router",[["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6.01 18H6",key:"19vcac"}],["path",{d:"M10.01 18H10",key:"uamcmx"}],["path",{d:"M15 10v4",key:"qjz1xs"}],["path",{d:"M17.84 7.17a4 4 0 0 0-5.66 0",key:"1rif40"}],["path",{d:"M20.66 4.34a8 8 0 0 0-11.31 0",key:"6a5xfq"}]]);const Yr=c("rows-2",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 12h18",key:"1i2n21"}]]);const Xr=c("rows-3",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M21 9H3",key:"1338ky"}],["path",{d:"M21 15H3",key:"9uk58r"}]]);const uM=c("rows-4",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M21 7.5H3",key:"1hm9pq"}],["path",{d:"M21 12H3",key:"2avoz0"}],["path",{d:"M21 16.5H3",key:"n7jzkj"}]]);const hM=c("rss",[["path",{d:"M4 11a9 9 0 0 1 9 9",key:"pv89mb"}],["path",{d:"M4 4a16 16 0 0 1 16 16",key:"k0647b"}],["circle",{cx:"5",cy:"19",r:"1",key:"bfqh0e"}]]);const pM=c("ruler-dimension-line",[["path",{d:"M10 15v-3",key:"1pjskw"}],["path",{d:"M14 15v-3",key:"1o1mqj"}],["path",{d:"M18 15v-3",key:"cws6he"}],["path",{d:"M2 8V4",key:"3jv1jz"}],["path",{d:"M22 6H2",key:"1iqbfk"}],["path",{d:"M22 8V4",key:"16f4ou"}],["path",{d:"M6 15v-3",key:"1ij1qe"}],["rect",{x:"2",y:"12",width:"20",height:"8",rx:"2",key:"1tqiko"}]]);const yM=c("russian-ruble",[["path",{d:"M6 11h8a4 4 0 0 0 0-8H9v18",key:"18ai8t"}],["path",{d:"M6 15h8",key:"1y8f6l"}]]);const fM=c("sailboat",[["path",{d:"M10 2v15",key:"1qf71f"}],["path",{d:"M7 22a4 4 0 0 1-4-4 1 1 0 0 1 1-1h16a1 1 0 0 1 1 1 4 4 0 0 1-4 4z",key:"1pxcvx"}],["path",{d:"M9.159 2.46a1 1 0 0 1 1.521-.193l9.977 8.98A1 1 0 0 1 20 13H4a1 1 0 0 1-.824-1.567z",key:"5oog16"}]]);const mM=c("salad",[["path",{d:"M7 21h10",key:"1b0cd5"}],["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z",key:"4rw317"}],["path",{d:"M11.38 12a2.4 2.4 0 0 1-.4-4.77 2.4 2.4 0 0 1 3.2-2.77 2.4 2.4 0 0 1 3.47-.63 2.4 2.4 0 0 1 3.37 3.37 2.4 2.4 0 0 1-1.1 3.7 2.51 2.51 0 0 1 .03 1.1",key:"10xrj0"}],["path",{d:"m13 12 4-4",key:"1hckqy"}],["path",{d:"M10.9 7.25A3.99 3.99 0 0 0 4 10c0 .73.2 1.41.54 2",key:"1p4srx"}]]);const kM=c("ruler",[["path",{d:"M21.3 15.3a2.4 2.4 0 0 1 0 3.4l-2.6 2.6a2.4 2.4 0 0 1-3.4 0L2.7 8.7a2.41 2.41 0 0 1 0-3.4l2.6-2.6a2.41 2.41 0 0 1 3.4 0Z",key:"icamh8"}],["path",{d:"m14.5 12.5 2-2",key:"inckbg"}],["path",{d:"m11.5 9.5 2-2",key:"fmmyf7"}],["path",{d:"m8.5 6.5 2-2",key:"vc6u1g"}],["path",{d:"m17.5 15.5 2-2",key:"wo5hmg"}]]);const gM=c("sandwich",[["path",{d:"m2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777",key:"f1wd0e"}],["path",{d:"M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25",key:"1pfu07"}],["path",{d:"M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9",key:"1oq9qw"}],["path",{d:"m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2",key:"1fnwu5"}],["rect",{width:"20",height:"4",x:"2",y:"11",rx:"1",key:"itshg"}]]);const vM=c("satellite-dish",[["path",{d:"M4 10a7.31 7.31 0 0 0 10 10Z",key:"1fzpp3"}],["path",{d:"m9 15 3-3",key:"88sc13"}],["path",{d:"M17 13a6 6 0 0 0-6-6",key:"15cc6u"}],["path",{d:"M21 13A10 10 0 0 0 11 3",key:"11nf8s"}]]);const _M=c("satellite",[["path",{d:"m13.5 6.5-3.148-3.148a1.205 1.205 0 0 0-1.704 0L6.352 5.648a1.205 1.205 0 0 0 0 1.704L9.5 10.5",key:"dzhfyz"}],["path",{d:"M16.5 7.5 19 5",key:"1ltcjm"}],["path",{d:"m17.5 10.5 3.148 3.148a1.205 1.205 0 0 1 0 1.704l-2.296 2.296a1.205 1.205 0 0 1-1.704 0L13.5 14.5",key:"nfoymv"}],["path",{d:"M9 21a6 6 0 0 0-6-6",key:"1iajcf"}],["path",{d:"M9.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l4.296-4.296a1.205 1.205 0 0 0 0-1.704l-2.296-2.296a1.205 1.205 0 0 0-1.704 0z",key:"nv9zqy"}]]);const bM=c("saudi-riyal",[["path",{d:"m20 19.5-5.5 1.2",key:"1aenhr"}],["path",{d:"M14.5 4v11.22a1 1 0 0 0 1.242.97L20 15.2",key:"2rtezt"}],["path",{d:"m2.978 19.351 5.549-1.363A2 2 0 0 0 10 16V2",key:"1kbm92"}],["path",{d:"M20 10 4 13.5",key:"8nums9"}]]);const MM=c("save-off",[["path",{d:"M13 13H8a1 1 0 0 0-1 1v7",key:"h8g396"}],["path",{d:"M14 8h1",key:"1lfen6"}],["path",{d:"M17 21v-4",key:"1yknxs"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41",key:"1t4vdl"}],["path",{d:"M29.5 11.5s5 5 4 5",key:"zzn4i6"}],["path",{d:"M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15",key:"24cby9"}]]);const wM=c("save-all",[["path",{d:"M10 2v3a1 1 0 0 0 1 1h5",key:"1xspal"}],["path",{d:"M18 18v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6",key:"1ra60u"}],["path",{d:"M18 22H4a2 2 0 0 1-2-2V6",key:"pblm9e"}],["path",{d:"M8 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9.172a2 2 0 0 1 1.414.586l2.828 2.828A2 2 0 0 1 22 6.828V16a2 2 0 0 1-2.01 2z",key:"1yve0x"}]]);const xM=c("save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);const Zr=c("scale-3d",[["path",{d:"M5 7v11a1 1 0 0 0 1 1h11",key:"13dt1j"}],["path",{d:"M5.293 18.707 11 13",key:"ezgbsx"}],["circle",{cx:"19",cy:"19",r:"2",key:"17f5cg"}],["circle",{cx:"5",cy:"5",r:"2",key:"1gwv83"}]]);const NM=c("scale",[["path",{d:"M12 3v18",key:"108xh3"}],["path",{d:"m19 8 3 8a5 5 0 0 1-6 0zV7",key:"zcdpyk"}],["path",{d:"M3 7h1a17 17 0 0 0 8-2 17 17 0 0 0 8 2h1",key:"1yorad"}],["path",{d:"m5 8 3 8a5 5 0 0 1-6 0zV7",key:"eua70x"}],["path",{d:"M7 21h10",key:"1b0cd5"}]]);const CM=c("scaling",[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7",key:"1m0v6g"}],["path",{d:"M14 15H9v-5",key:"pi4jk9"}],["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"M21 3 9 15",key:"15kdhq"}]]);const $M=c("scan-barcode",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M8 7v10",key:"23sfjj"}],["path",{d:"M12 7v10",key:"jspqdw"}],["path",{d:"M17 7v10",key:"578dap"}]]);const SM=c("scan-eye",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0",key:"11ak4c"}]]);const LM=c("scan-face",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2",key:"1y1vjs"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"M15 9h.01",key:"x1ddxp"}]]);const IM=c("scan-heart",[["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 4.172 4.306l-3.447 3.62a1 1 0 0 1-1.449 0z",key:"1ak1ef"}]]);const AM=c("scan-line",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M7 12h10",key:"b7w52i"}]]);const PM=c("scan-qr-code",[["path",{d:"M17 12v4a1 1 0 0 1-1 1h-4",key:"uk4fdo"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M17 8V7",key:"q2g9wo"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M7 17h.01",key:"19xn7k"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["rect",{x:"7",y:"7",width:"5",height:"5",rx:"1",key:"m9kyts"}]]);const TM=c("scan-search",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"m16 16-1.9-1.9",key:"1dq9hf"}]]);const DM=c("scan",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}]]);const EM=c("scan-text",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M7 8h8",key:"1jbsf9"}],["path",{d:"M7 12h10",key:"b7w52i"}],["path",{d:"M7 16h6",key:"1vyc9m"}]]);const zM=c("scissors-line-dashed",[["path",{d:"M5.42 9.42 8 12",key:"12pkuq"}],["circle",{cx:"4",cy:"8",r:"2",key:"107mxr"}],["path",{d:"m14 6-8.58 8.58",key:"gvzu5l"}],["circle",{cx:"4",cy:"16",r:"2",key:"1ehqvc"}],["path",{d:"M10.8 14.8 14 18",key:"ax7m9r"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}]]);const OM=c("school",[["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3",key:"1rgiei"}],["path",{d:"M18 5v16",key:"1ethyx"}],["path",{d:"m4 6 7.106-3.79a2 2 0 0 1 1.788 0L20 6",key:"zywc2d"}],["path",{d:"m6 11-3.52 2.147a1 1 0 0 0-.48.854V19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a1 1 0 0 0-.48-.853L18 11",key:"1d4ql0"}],["path",{d:"M6 5v16",key:"1sn0nx"}],["circle",{cx:"12",cy:"9",r:"2",key:"1092wv"}]]);const qM=c("scissors",[["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M8.12 8.12 12 12",key:"1alkpv"}],["path",{d:"M20 4 8.12 15.88",key:"xgtan2"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["path",{d:"M14.8 14.8 20 20",key:"ptml3r"}]]);const jM=c("scooter",[["path",{d:"M21 4h-3.5l2 11.05",key:"1gktiw"}],["path",{d:"M6.95 17h5.142c.523 0 .95-.406 1.063-.916a6.5 6.5 0 0 1 5.345-5.009",key:"1bq3u3"}],["circle",{cx:"19.5",cy:"17.5",r:"2.5",key:"e4zhv9"}],["circle",{cx:"4.5",cy:"17.5",r:"2.5",key:"50vk4p"}]]);const HM=c("screen-share-off",[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3",key:"i8wdob"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"m22 3-5 5",key:"12jva0"}],["path",{d:"m17 3 5 5",key:"k36vhe"}]]);const VM=c("screen-share",[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3",key:"i8wdob"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"m17 8 5-5",key:"fqif7o"}],["path",{d:"M17 3h5v5",key:"1o3tu8"}]]);const FM=c("scroll",[["path",{d:"M19 17V5a2 2 0 0 0-2-2H4",key:"zz82l3"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3",key:"1ph1d7"}]]);const BM=c("search-alert",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}],["path",{d:"M11 7v4",key:"m2edmq"}],["path",{d:"M11 15h.01",key:"k85uqc"}]]);const WM=c("scroll-text",[["path",{d:"M15 12h-5",key:"r7krc0"}],["path",{d:"M15 8h-5",key:"1khuty"}],["path",{d:"M19 17V5a2 2 0 0 0-2-2H4",key:"zz82l3"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3",key:"1ph1d7"}]]);const UM=c("search-check",[["path",{d:"m8 11 2 2 4-4",key:"1sed1v"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);const RM=c("search-code",[["path",{d:"m13 13.5 2-2.5-2-2.5",key:"1rvxrh"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}],["path",{d:"M9 8.5 7 11l2 2.5",key:"6ffwbx"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]]);const GM=c("search-slash",[["path",{d:"m13.5 8.5-5 5",key:"1cs55j"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);const KM=c("search-x",[["path",{d:"m13.5 8.5-5 5",key:"1cs55j"}],["path",{d:"m8.5 8.5 5 5",key:"a8mexj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);const Qr=c("search",[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]]);const YM=c("section",[["path",{d:"M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0",key:"vqan6v"}],["path",{d:"M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0",key:"wdjd8o"}]]);const Jr=c("send-horizontal",[["path",{d:"M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z",key:"117uat"}],["path",{d:"M6 12h16",key:"s4cdu5"}]]);const XM=c("send-to-back",[["rect",{x:"14",y:"14",width:"8",height:"8",rx:"2",key:"1b0bso"}],["rect",{x:"2",y:"2",width:"8",height:"8",rx:"2",key:"1x09vl"}],["path",{d:"M7 14v1a2 2 0 0 0 2 2h1",key:"pao6x6"}],["path",{d:"M14 7h1a2 2 0 0 1 2 2v1",key:"19tdru"}]]);const ZM=c("send",[["path",{d:"M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z",key:"1ffxy3"}],["path",{d:"m21.854 2.147-10.94 10.939",key:"12cjpa"}]]);const QM=c("separator-horizontal",[["path",{d:"m16 16-4 4-4-4",key:"3dv8je"}],["path",{d:"M3 12h18",key:"1i2n21"}],["path",{d:"m8 8 4-4 4 4",key:"2bscm2"}]]);const JM=c("separator-vertical",[["path",{d:"M12 3v18",key:"108xh3"}],["path",{d:"m16 16 4-4-4-4",key:"1js579"}],["path",{d:"m8 8-4 4 4 4",key:"1whems"}]]);const e7=c("server-cog",[["path",{d:"m10.852 14.772-.383.923",key:"11vil6"}],["path",{d:"M13.148 14.772a3 3 0 1 0-2.296-5.544l-.383-.923",key:"1v3clb"}],["path",{d:"m13.148 9.228.383-.923",key:"t2zzyc"}],["path",{d:"m13.53 15.696-.382-.924a3 3 0 1 1-2.296-5.544",key:"1bxfiv"}],["path",{d:"m14.772 10.852.923-.383",key:"k9m8cz"}],["path",{d:"m14.772 13.148.923.383",key:"1xvhww"}],["path",{d:"M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5",key:"tn8das"}],["path",{d:"M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5",key:"1g2pve"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M6 6h.01",key:"1utrut"}],["path",{d:"m9.228 10.852-.923-.383",key:"1wtb30"}],["path",{d:"m9.228 13.148-.923.383",key:"1a830x"}]]);const t7=c("server-crash",[["path",{d:"M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2",key:"4b9dqc"}],["path",{d:"M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2",key:"22nnkd"}],["path",{d:"M6 6h.01",key:"1utrut"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"m13 6-4 6h6l-4 6",key:"14hqih"}]]);const o7=c("server-off",[["path",{d:"M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5",key:"bt2siv"}],["path",{d:"M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z",key:"1hjrv1"}],["path",{d:"M22 17v-1a2 2 0 0 0-2-2h-1",key:"1iynyr"}],["path",{d:"M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z",key:"161ggg"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const n7=c("server",[["rect",{width:"20",height:"8",x:"2",y:"2",rx:"2",ry:"2",key:"ngkwjq"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",ry:"2",key:"iecqi9"}],["line",{x1:"6",x2:"6.01",y1:"6",y2:"6",key:"16zg32"}],["line",{x1:"6",x2:"6.01",y1:"18",y2:"18",key:"nzw8ys"}]]);const a7=c("settings-2",[["path",{d:"M14 17H5",key:"gfn3mx"}],["path",{d:"M19 7h-9",key:"6i9tg"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["circle",{cx:"7",cy:"7",r:"3",key:"dfmy0x"}]]);const r7=c("settings",[["path",{d:"M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915",key:"1i5ecw"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);const i7=c("shapes",[["path",{d:"M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z",key:"1bo67w"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1",key:"1bkyp8"}],["circle",{cx:"17.5",cy:"17.5",r:"3.5",key:"w3z12y"}]]);const c7=c("share-2",[["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}],["circle",{cx:"6",cy:"12",r:"3",key:"w7nqdw"}],["circle",{cx:"18",cy:"19",r:"3",key:"1xt0gg"}],["line",{x1:"8.59",x2:"15.42",y1:"13.51",y2:"17.49",key:"47mynk"}],["line",{x1:"15.41",x2:"8.59",y1:"6.51",y2:"10.49",key:"1n3mei"}]]);const s7=c("share",[["path",{d:"M12 2v13",key:"1km8f5"}],["path",{d:"m16 6-4-4-4 4",key:"13yo43"}],["path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8",key:"1b2hhj"}]]);const d7=c("sheet",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["line",{x1:"3",x2:"21",y1:"9",y2:"9",key:"1vqk6q"}],["line",{x1:"3",x2:"21",y1:"15",y2:"15",key:"o2sbyz"}],["line",{x1:"9",x2:"9",y1:"9",y2:"21",key:"1ib60c"}],["line",{x1:"15",x2:"15",y1:"9",y2:"21",key:"1n26ft"}]]);const l7=c("shell",[["path",{d:"M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44",key:"1cn552"}]]);const u7=c("shield-alert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]);const h7=c("shield-ban",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m4.243 5.21 14.39 12.472",key:"1c9a7c"}]]);const p7=c("shield-check",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);const y7=c("shield-half",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 22V2",key:"zs6s6o"}]]);const f7=c("shield-ellipsis",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M8 12h.01",key:"czm47f"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 12h.01",key:"1l6xoz"}]]);const m7=c("shield-minus",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M9 12h6",key:"1c52cq"}]]);const k7=c("shield-off",[["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71",key:"1jlk70"}],["path",{d:"M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264",key:"18rp1v"}]]);const g7=c("shield-plus",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M9 12h6",key:"1c52cq"}],["path",{d:"M12 9v6",key:"199k2o"}]]);const ei=c("shield-question-mark",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3",key:"mhlwft"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);const v7=c("shield-user",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M6.376 18.91a6 6 0 0 1 11.249.003",key:"hnjrf2"}],["circle",{cx:"12",cy:"11",r:"4",key:"1gt34v"}]]);const ti=c("shield-x",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m14.5 9.5-5 5",key:"17q4r4"}],["path",{d:"m9.5 9.5 5 5",key:"18nt4w"}]]);const _7=c("shield",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]]);const b7=c("ship-wheel",[["circle",{cx:"12",cy:"12",r:"8",key:"46899m"}],["path",{d:"M12 2v7.5",key:"1e5rl5"}],["path",{d:"m19 5-5.23 5.23",key:"1ezxxf"}],["path",{d:"M22 12h-7.5",key:"le1719"}],["path",{d:"m19 19-5.23-5.23",key:"p3fmgn"}],["path",{d:"M12 14.5V22",key:"dgcmos"}],["path",{d:"M10.23 13.77 5 19",key:"qwopd4"}],["path",{d:"M9.5 12H2",key:"r7bup8"}],["path",{d:"M10.23 10.23 5 5",key:"k2y7lj"}],["circle",{cx:"12",cy:"12",r:"2.5",key:"ix0uyj"}]]);const M7=c("ship",[["path",{d:"M12 10.189V14",key:"1p8cqu"}],["path",{d:"M12 2v3",key:"qbqxhf"}],["path",{d:"M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6",key:"qpkstq"}],["path",{d:"M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76",key:"7tigtc"}],["path",{d:"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"1924j5"}]]);const w7=c("shirt",[["path",{d:"M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z",key:"1wgbhj"}]]);const x7=c("shopping-bag",[["path",{d:"M16 10a4 4 0 0 1-8 0",key:"1ltviw"}],["path",{d:"M3.103 6.034h17.794",key:"awc11p"}],["path",{d:"M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z",key:"o988cm"}]]);const N7=c("shopping-basket",[["path",{d:"m15 11-1 9",key:"5wnq3a"}],["path",{d:"m19 11-4-7",key:"cnml18"}],["path",{d:"M2 11h20",key:"3eubbj"}],["path",{d:"m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4",key:"yiazzp"}],["path",{d:"M4.5 15.5h15",key:"13mye1"}],["path",{d:"m5 11 4-7",key:"116ra9"}],["path",{d:"m9 11 1 9",key:"1ojof7"}]]);const C7=c("shopping-cart",[["circle",{cx:"8",cy:"21",r:"1",key:"jimo8o"}],["circle",{cx:"19",cy:"21",r:"1",key:"13723u"}],["path",{d:"M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12",key:"9zh506"}]]);const $7=c("shovel",[["path",{d:"M21.56 4.56a1.5 1.5 0 0 1 0 2.122l-.47.47a3 3 0 0 1-4.212-.03 3 3 0 0 1 0-4.243l.44-.44a1.5 1.5 0 0 1 2.121 0z",key:"1gcedi"}],["path",{d:"M3 22a1 1 0 0 1-1-1v-3.586a1 1 0 0 1 .293-.707l3.355-3.355a1.205 1.205 0 0 1 1.704 0l3.296 3.296a1.205 1.205 0 0 1 0 1.704l-3.355 3.355a1 1 0 0 1-.707.293z",key:"pg9kv3"}],["path",{d:"m9 15 7.879-7.878",key:"1o1zgh"}]]);const S7=c("shower-head",[["path",{d:"m4 4 2.5 2.5",key:"uv2vmf"}],["path",{d:"M13.5 6.5a4.95 4.95 0 0 0-7 7",key:"frdkwv"}],["path",{d:"M15 5 5 15",key:"1ag8rq"}],["path",{d:"M14 17v.01",key:"eokfpp"}],["path",{d:"M10 16v.01",key:"14uyyl"}],["path",{d:"M13 13v.01",key:"1v1k97"}],["path",{d:"M16 10v.01",key:"5169yg"}],["path",{d:"M11 20v.01",key:"cj92p8"}],["path",{d:"M17 14v.01",key:"11cswd"}],["path",{d:"M20 11v.01",key:"19e0od"}]]);const L7=c("shredder",[["path",{d:"M4 13V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5",key:"1eob4r"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 22v-5",key:"sfixh4"}],["path",{d:"M14 19v-2",key:"pdve8j"}],["path",{d:"M18 20v-3",key:"uox2gk"}],["path",{d:"M2 13h20",key:"5evz65"}],["path",{d:"M6 20v-3",key:"c6pdcb"}]]);const I7=c("shrimp",[["path",{d:"M11 12h.01",key:"1lr4k6"}],["path",{d:"M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1",key:"fatpdi"}],["path",{d:"M14 2a3.28 3.28 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8",key:"kehrqe"}],["path",{d:"M14 8a8.5 8.5 0 0 1 0 8",key:"1imjx2"}],["path",{d:"M16 16c2 0 4.5-4 4-6",key:"z0nejz"}]]);const A7=c("shrink",[["path",{d:"m15 15 6 6m-6-6v4.8m0-4.8h4.8",key:"17vawe"}],["path",{d:"M9 19.8V15m0 0H4.2M9 15l-6 6",key:"chjx8e"}],["path",{d:"M15 4.2V9m0 0h4.8M15 9l6-6",key:"lav6yq"}],["path",{d:"M9 4.2V9m0 0H4.2M9 9 3 3",key:"1pxi2q"}]]);const P7=c("shrub",[["path",{d:"M12 22v-5.172a2 2 0 0 0-.586-1.414L9.5 13.5",key:"1p17fm"}],["path",{d:"M14.5 14.5 12 17",key:"dy5w4y"}],["path",{d:"M17 8.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0z",key:"6z7b3o"}]]);const T7=c("shuffle",[["path",{d:"m18 14 4 4-4 4",key:"10pe0f"}],["path",{d:"m18 2 4 4-4 4",key:"pucp1d"}],["path",{d:"M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22",key:"1ailkh"}],["path",{d:"M2 6h1.972a4 4 0 0 1 3.6 2.2",key:"km57vx"}],["path",{d:"M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45",key:"os18l9"}]]);const D7=c("sigma",[["path",{d:"M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2",key:"wuwx1p"}]]);const E7=c("signal-high",[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}],["path",{d:"M12 20v-8",key:"i3yub9"}],["path",{d:"M17 20V8",key:"1tkaf5"}]]);const z7=c("signal-low",[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}]]);const O7=c("signal-medium",[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}],["path",{d:"M12 20v-8",key:"i3yub9"}]]);const q7=c("signal-zero",[["path",{d:"M2 20h.01",key:"4haj6o"}]]);const j7=c("signal",[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}],["path",{d:"M12 20v-8",key:"i3yub9"}],["path",{d:"M17 20V8",key:"1tkaf5"}],["path",{d:"M22 4v16",key:"sih9yq"}]]);const H7=c("signature",[["path",{d:"m21 17-2.156-1.868A.5.5 0 0 0 18 15.5v.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1c0-2.545-3.991-3.97-8.5-4a1 1 0 0 0 0 5c4.153 0 4.745-11.295 5.708-13.5a2.5 2.5 0 1 1 3.31 3.284",key:"y32ogt"}],["path",{d:"M3 21h18",key:"itz85i"}]]);const V7=c("signpost-big",[["path",{d:"M10 9H4L2 7l2-2h6",key:"1hq7x2"}],["path",{d:"M14 5h6l2 2-2 2h-6",key:"bv62ej"}],["path",{d:"M10 22V4a2 2 0 1 1 4 0v18",key:"eqpcf2"}],["path",{d:"M8 22h8",key:"rmew8v"}]]);const F7=c("signpost",[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M12 3v3",key:"1n5kay"}],["path",{d:"M18 6a2 2 0 0 1 1.387.56l2.307 2.22a1 1 0 0 1 0 1.44l-2.307 2.22A2 2 0 0 1 18 13H6a2 2 0 0 1-1.387-.56l-2.306-2.22a1 1 0 0 1 0-1.44l2.306-2.22A2 2 0 0 1 6 6z",key:"gqqp9m"}]]);const B7=c("siren",[["path",{d:"M7 18v-6a5 5 0 1 1 10 0v6",key:"pcx96s"}],["path",{d:"M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z",key:"1b4s83"}],["path",{d:"M21 12h1",key:"jtio3y"}],["path",{d:"M18.5 4.5 18 5",key:"g5sp9y"}],["path",{d:"M2 12h1",key:"1uaihz"}],["path",{d:"M12 2v1",key:"11qlp1"}],["path",{d:"m4.929 4.929.707.707",key:"1i51kw"}],["path",{d:"M12 12v6",key:"3ahymv"}]]);const W7=c("skip-back",[["path",{d:"M17.971 4.285A2 2 0 0 1 21 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z",key:"15892j"}],["path",{d:"M3 20V4",key:"1ptbpl"}]]);const U7=c("skip-forward",[["path",{d:"M21 4v16",key:"7j8fe9"}],["path",{d:"M6.029 4.285A2 2 0 0 0 3 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z",key:"zs4d6"}]]);const R7=c("skull",[["path",{d:"m12.5 17-.5-1-.5 1h1z",key:"3me087"}],["path",{d:"M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z",key:"1o5pge"}],["circle",{cx:"15",cy:"12",r:"1",key:"1tmaij"}],["circle",{cx:"9",cy:"12",r:"1",key:"1vctgf"}]]);const G7=c("slack",[["rect",{width:"3",height:"8",x:"13",y:"2",rx:"1.5",key:"diqz80"}],["path",{d:"M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5",key:"183iwg"}],["rect",{width:"3",height:"8",x:"8",y:"14",rx:"1.5",key:"hqg7r1"}],["path",{d:"M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5",key:"76g71w"}],["rect",{width:"8",height:"3",x:"14",y:"13",rx:"1.5",key:"1kmz0a"}],["path",{d:"M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5",key:"jc4sz0"}],["rect",{width:"8",height:"3",x:"2",y:"8",rx:"1.5",key:"1omvl4"}],["path",{d:"M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5",key:"16f3cl"}]]);const K7=c("slash",[["path",{d:"M22 2 2 22",key:"y4kqgn"}]]);const Y7=c("slice",[["path",{d:"M11 16.586V19a1 1 0 0 1-1 1H2L18.37 3.63a1 1 0 1 1 3 3l-9.663 9.663a1 1 0 0 1-1.414 0L8 14",key:"1sllp5"}]]);const X7=c("sliders-horizontal",[["path",{d:"M10 5H3",key:"1qgfaw"}],["path",{d:"M12 19H3",key:"yhmn1j"}],["path",{d:"M14 3v4",key:"1sua03"}],["path",{d:"M16 17v4",key:"1q0r14"}],["path",{d:"M21 12h-9",key:"1o4lsq"}],["path",{d:"M21 19h-5",key:"1rlt1p"}],["path",{d:"M21 5h-7",key:"1oszz2"}],["path",{d:"M8 10v4",key:"tgpxqk"}],["path",{d:"M8 12H3",key:"a7s4jb"}]]);const oi=c("sliders-vertical",[["path",{d:"M10 8h4",key:"1sr2af"}],["path",{d:"M12 21v-9",key:"17s77i"}],["path",{d:"M12 8V3",key:"13r4qs"}],["path",{d:"M17 16h4",key:"h1uq16"}],["path",{d:"M19 12V3",key:"o1uvq1"}],["path",{d:"M19 21v-5",key:"qua636"}],["path",{d:"M3 14h4",key:"bcjad9"}],["path",{d:"M5 10V3",key:"cb8scm"}],["path",{d:"M5 21v-7",key:"1w1uti"}]]);const Z7=c("smartphone-charging",[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2",key:"1yt0o3"}],["path",{d:"M12.667 8 10 12h4l-2.667 4",key:"h9lk2d"}]]);const Q7=c("smartphone-nfc",[["rect",{width:"7",height:"12",x:"2",y:"6",rx:"1",key:"5nje8w"}],["path",{d:"M13 8.32a7.43 7.43 0 0 1 0 7.36",key:"1g306n"}],["path",{d:"M16.46 6.21a11.76 11.76 0 0 1 0 11.58",key:"uqvjvo"}],["path",{d:"M19.91 4.1a15.91 15.91 0 0 1 .01 15.8",key:"ujntz3"}]]);const J7=c("smile-plus",[["path",{d:"M22 11v1a10 10 0 1 1-9-10",key:"ew0xw9"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2",key:"1y1vjs"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}],["path",{d:"M16 5h6",key:"1vod17"}],["path",{d:"M19 2v6",key:"4bpg5p"}]]);const ew=c("smartphone",[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2",key:"1yt0o3"}],["path",{d:"M12 18h.01",key:"mhygvu"}]]);const tw=c("smile",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2",key:"1y1vjs"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]]);const ow=c("snail",[["path",{d:"M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0",key:"hneq2s"}],["circle",{cx:"10",cy:"13",r:"8",key:"194lz3"}],["path",{d:"M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6",key:"ixqyt7"}],["path",{d:"M18 3 19.1 5.2",key:"9tjm43"}],["path",{d:"M22 3 20.9 5.2",key:"j3odrs"}]]);const nw=c("snowflake",[["path",{d:"m10 20-1.25-2.5L6 18",key:"18frcb"}],["path",{d:"M10 4 8.75 6.5 6 6",key:"7mghy3"}],["path",{d:"m14 20 1.25-2.5L18 18",key:"1chtki"}],["path",{d:"m14 4 1.25 2.5L18 6",key:"1b4wsy"}],["path",{d:"m17 21-3-6h-4",key:"15hhxa"}],["path",{d:"m17 3-3 6 1.5 3",key:"11697g"}],["path",{d:"M2 12h6.5L10 9",key:"kv9z4n"}],["path",{d:"m20 10-1.5 2 1.5 2",key:"1swlpi"}],["path",{d:"M22 12h-6.5L14 15",key:"1mxi28"}],["path",{d:"m4 10 1.5 2L4 14",key:"k9enpj"}],["path",{d:"m7 21 3-6-1.5-3",key:"j8hb9u"}],["path",{d:"m7 3 3 6h4",key:"1otusx"}]]);const aw=c("soap-dispenser-droplet",[["path",{d:"M10.5 2v4",key:"1xt6in"}],["path",{d:"M14 2H7a2 2 0 0 0-2 2",key:"e6xig3"}],["path",{d:"M19.29 14.76A6.67 6.67 0 0 1 17 11a6.6 6.6 0 0 1-2.29 3.76c-1.15.92-1.71 2.04-1.71 3.19 0 2.22 1.8 4.05 4 4.05s4-1.83 4-4.05c0-1.16-.57-2.26-1.71-3.19",key:"adq7uc"}],["path",{d:"M9.607 21H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h7V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3",key:"t9hm96"}]]);const rw=c("sofa",[["path",{d:"M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3",key:"1dgpiv"}],["path",{d:"M2 16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z",key:"xacw8m"}],["path",{d:"M4 18v2",key:"jwo5n2"}],["path",{d:"M20 18v2",key:"1ar1qi"}],["path",{d:"M12 4v9",key:"oqhhn3"}]]);const iw=c("solar-panel",[["path",{d:"M11 2h2",key:"isr7bz"}],["path",{d:"m14.28 14-4.56 8",key:"4anwcf"}],["path",{d:"m21 22-1.558-4H4.558",key:"enk13h"}],["path",{d:"M3 10v2",key:"w8mti9"}],["path",{d:"M6.245 15.04A2 2 0 0 1 8 14h12a1 1 0 0 1 .864 1.505l-3.11 5.457A2 2 0 0 1 16 22H4a1 1 0 0 1-.863-1.506z",key:"pouggg"}],["path",{d:"M7 2a4 4 0 0 1-4 4",key:"78s8of"}],["path",{d:"m8.66 7.66 1.41 1.41",key:"1vaqj8"}]]);const cw=c("soup",[["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z",key:"4rw317"}],["path",{d:"M7 21h10",key:"1b0cd5"}],["path",{d:"M19.5 12 22 6",key:"shfsr5"}],["path",{d:"M16.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.73 1.62",key:"rpc6vp"}],["path",{d:"M11.25 3c.27.1.8.53.74 1.36-.05.83-.93 1.2-.98 2.02-.06.78.33 1.24.72 1.62",key:"1lf63m"}],["path",{d:"M6.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.74 1.62",key:"97tijn"}]]);const sw=c("space",[["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1",key:"lt2kga"}]]);const dw=c("spade",[["path",{d:"M12 18v4",key:"jadmvz"}],["path",{d:"M2 14.499a5.5 5.5 0 0 0 9.591 3.675.6.6 0 0 1 .818.001A5.5 5.5 0 0 0 22 14.5c0-2.29-1.5-4-3-5.5l-5.492-5.312a2 2 0 0 0-3-.02L5 8.999c-1.5 1.5-3 3.2-3 5.5",key:"1aw2pz"}]]);const ni=c("sparkles",[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z",key:"1s2grr"}],["path",{d:"M20 2v4",key:"1rf3ol"}],["path",{d:"M22 4h-4",key:"gwowj6"}],["circle",{cx:"4",cy:"20",r:"2",key:"6kqj1y"}]]);const lw=c("sparkle",[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z",key:"1s2grr"}]]);const uw=c("speaker",[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M12 6h.01",key:"1vi96p"}],["circle",{cx:"12",cy:"14",r:"4",key:"1jruaj"}],["path",{d:"M12 14h.01",key:"1etili"}]]);const hw=c("speech",[["path",{d:"M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.164-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.656 3.054 1 4.55a5.77 5.77 0 0 1 .029 2.758L2 20",key:"11atix"}],["path",{d:"M19.8 17.8a7.5 7.5 0 0 0 .003-10.603",key:"yol142"}],["path",{d:"M17 15a3.5 3.5 0 0 0-.025-4.975",key:"ssbmkc"}]]);const pw=c("spell-check-2",[["path",{d:"m6 16 6-12 6 12",key:"1b4byz"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1",key:"8mdmtu"}]]);const yw=c("spell-check",[["path",{d:"m6 16 6-12 6 12",key:"1b4byz"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"m16 20 2 2 4-4",key:"13tcca"}]]);const fw=c("spline-pointer",[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",key:"xwnzip"}],["path",{d:"M5 17A12 12 0 0 1 17 5",key:"1okkup"}],["circle",{cx:"19",cy:"5",r:"2",key:"mhkx31"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}]]);const mw=c("spline",[["circle",{cx:"19",cy:"5",r:"2",key:"mhkx31"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}],["path",{d:"M5 17A12 12 0 0 1 17 5",key:"1okkup"}]]);const kw=c("spool",[["path",{d:"M17 13.44 4.442 17.082A2 2 0 0 0 4.982 21H19a2 2 0 0 0 .558-3.921l-1.115-.32A2 2 0 0 1 17 14.837V7.66",key:"13vns8"}],["path",{d:"m7 10.56 12.558-3.642A2 2 0 0 0 19.018 3H5a2 2 0 0 0-.558 3.921l1.115.32A2 2 0 0 1 7 9.163v7.178",key:"s8x3u0"}]]);const gw=c("split",[["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"M8 3H3v5",key:"15dfkv"}],["path",{d:"M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3",key:"1qrqzj"}],["path",{d:"m15 9 6-6",key:"ko1vev"}]]);const vw=c("spotlight",[["path",{d:"M15.295 19.562 16 22",key:"31jsb7"}],["path",{d:"m17 16 3.758 2.098",key:"121ar7"}],["path",{d:"m19 12.5 3.026-.598",key:"19ukd3"}],["path",{d:"M7.61 6.3a3 3 0 0 0-3.92 1.3l-1.38 2.79a3 3 0 0 0 1.3 3.91l6.89 3.597a1 1 0 0 0 1.342-.447l3.106-6.211a1 1 0 0 0-.447-1.341z",key:"lwb9l9"}],["path",{d:"M8 9V2",key:"1xa0v7"}]]);const _w=c("spray-can",[["path",{d:"M3 3h.01",key:"159qn6"}],["path",{d:"M7 5h.01",key:"1hq22a"}],["path",{d:"M11 7h.01",key:"1osv80"}],["path",{d:"M3 7h.01",key:"1xzrh3"}],["path",{d:"M7 9h.01",key:"19b3jx"}],["path",{d:"M3 11h.01",key:"1eifu7"}],["rect",{width:"4",height:"4",x:"15",y:"5",key:"mri9e4"}],["path",{d:"m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2",key:"aib6hk"}],["path",{d:"m13 14 8-2",key:"1d7bmk"}],["path",{d:"m13 19 8-2",key:"1y2vml"}]]);const bw=c("sprout",[["path",{d:"M14 9.536V7a4 4 0 0 1 4-4h1.5a.5.5 0 0 1 .5.5V5a4 4 0 0 1-4 4 4 4 0 0 0-4 4c0 2 1 3 1 5a5 5 0 0 1-1 3",key:"139s4v"}],["path",{d:"M4 9a5 5 0 0 1 8 4 5 5 0 0 1-8-4",key:"1dlkgp"}],["path",{d:"M5 21h14",key:"11awu3"}]]);const ai=c("square-activity",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M17 12h-2l-2 5-2-10-2 5H7",key:"15hlnc"}]]);const ri=c("square-arrow-down-left",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m16 8-8 8",key:"166keh"}],["path",{d:"M16 16H8V8",key:"1w2ppm"}]]);const ii=c("square-arrow-down",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"m8 12 4 4 4-4",key:"k98ssh"}]]);const ci=c("square-arrow-down-right",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m8 8 8 8",key:"1imecy"}],["path",{d:"M16 8v8H8",key:"1lbpgo"}]]);const si=c("square-arrow-left",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m12 8-4 4 4 4",key:"15vm53"}],["path",{d:"M16 12H8",key:"1fr5h0"}]]);const di=c("square-arrow-out-down-left",[["path",{d:"M13 21h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6",key:"14qz4y"}],["path",{d:"m3 21 9-9",key:"1jfql5"}],["path",{d:"M9 21H3v-6",key:"wtvkvv"}]]);const li=c("square-arrow-out-down-right",[["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6",key:"14rsvq"}],["path",{d:"m21 21-9-9",key:"1et2py"}],["path",{d:"M21 15v6h-6",key:"1jko0i"}]]);const ui=c("square-arrow-out-up-left",[["path",{d:"M13 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6",key:"14mv1t"}],["path",{d:"m3 3 9 9",key:"rks13r"}],["path",{d:"M3 9V3h6",key:"ira0h2"}]]);const hi=c("square-arrow-out-up-right",[["path",{d:"M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6",key:"y09zxi"}],["path",{d:"m21 3-9 9",key:"mpx6sq"}],["path",{d:"M15 3h6v6",key:"1q9fwt"}]]);const pi=c("square-arrow-right",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"m12 16 4-4-4-4",key:"1i9zcv"}]]);const yi=c("square-arrow-up-left",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 16V8h8",key:"19xb1h"}],["path",{d:"M16 16 8 8",key:"1qdy8n"}]]);const fi=c("square-arrow-up-right",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 8h8v8",key:"b65dnt"}],["path",{d:"m8 16 8-8",key:"13b9ih"}]]);const mi=c("square-arrow-up",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m16 12-4-4-4 4",key:"177agl"}],["path",{d:"M12 16V8",key:"1sbj14"}]]);const ki=c("square-asterisk",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"m8.5 14 7-4",key:"12hpby"}],["path",{d:"m8.5 10 7 4",key:"wwy2dy"}]]);const gi=c("square-bottom-dashed-scissors",[["line",{x1:"5",y1:"3",x2:"19",y2:"3",key:"x74652"}],["line",{x1:"3",y1:"5",x2:"3",y2:"19",key:"31ivqu"}],["line",{x1:"21",y1:"5",x2:"21",y2:"19",key:"1am4cd"}],["line",{x1:"9",y1:"21",x2:"10",y2:"21",key:"sb02er"}],["line",{x1:"14",y1:"21",x2:"15",y2:"21",key:"1bvb1m"}],["path",{d:"M 3 5 A2 2 0 0 1 5 3",key:"dbypyf"}],["path",{d:"M 19 3 A2 2 0 0 1 21 5",key:"y6haui"}],["path",{d:"M 5 21 A2 2 0 0 1 3 19",key:"kb75wq"}],["path",{d:"M 21 19 A2 2 0 0 1 19 21",key:"1p3zbf"}],["circle",{cx:"8.5",cy:"8.5",r:"1.5",key:"cn5opk"}],["line",{x1:"9.56066",y1:"9.56066",x2:"12",y2:"12",key:"mksg6j"}],["line",{x1:"17",y1:"17",x2:"14.82",y2:"14.82",key:"1lwi1d"}],["circle",{cx:"8.5",cy:"15.5",r:"1.5",key:"12hfy1"}],["line",{x1:"9.56066",y1:"14.43934",x2:"17",y2:"7",key:"4jyfgs"}]]);const _o=c("square-chart-gantt",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 8h7",key:"kbo1nt"}],["path",{d:"M8 12h6",key:"ikassy"}],["path",{d:"M11 16h5",key:"oq65wt"}]]);const vi=c("square-check-big",[["path",{d:"M21 10.656V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.344",key:"2acyp4"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]]);const _i=c("square-check",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);const bi=c("square-chevron-down",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m16 10-4 4-4-4",key:"894hmk"}]]);const Mi=c("square-chevron-left",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m14 16-4-4 4-4",key:"ojs7w8"}]]);const wi=c("square-chevron-right",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m10 8 4 4-4 4",key:"1wy4r4"}]]);const xi=c("square-chevron-up",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m8 14 4-4 4 4",key:"fy2ptz"}]]);const Ni=c("square-code",[["path",{d:"m10 9-3 3 3 3",key:"1oro0q"}],["path",{d:"m14 15 3-3-3-3",key:"bz13h7"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const Mw=c("square-dashed-bottom-code",[["path",{d:"M10 9.5 8 12l2 2.5",key:"3mjy60"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"m14 9.5 2 2.5-2 2.5",key:"1bir2l"}],["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2",key:"as5y1o"}],["path",{d:"M9 21h1",key:"15o7lz"}]]);const ww=c("square-dashed-bottom",[["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2",key:"as5y1o"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M14 21h1",key:"v9vybs"}]]);const Ci=c("square-dashed-mouse-pointer",[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",key:"xwnzip"}],["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M9 3h1",key:"1yesri"}],["path",{d:"M9 21h2",key:"1qve2z"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M21 9v2",key:"p14lih"}],["path",{d:"M3 14v1",key:"vnatye"}]]);const $i=c("square-dashed-kanban",[["path",{d:"M8 7v7",key:"1x2jlm"}],["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M16 7v9",key:"1hp2iy"}],["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M9 3h1",key:"1yesri"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M21 14v1",key:"169vum"}],["path",{d:"M21 19a2 2 0 0 1-2 2",key:"1j7049"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M3 14v1",key:"vnatye"}],["path",{d:"M3 9v1",key:"1r0deq"}]]);const xw=c("square-dashed-top-solid",[["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M21 14v1",key:"169vum"}],["path",{d:"M21 19a2 2 0 0 1-2 2",key:"1j7049"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M3 14v1",key:"vnatye"}],["path",{d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2",key:"89voep"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M9 21h1",key:"15o7lz"}]]);const Si=c("square-dashed",[["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M21 19a2 2 0 0 1-2 2",key:"1j7049"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M9 3h1",key:"1yesri"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M3 14v1",key:"vnatye"}],["path",{d:"M21 14v1",key:"169vum"}]]);const Li=c("square-divide",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16",key:"aqc6ln"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8",key:"1mkcni"}]]);const Ii=c("square-dot",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]]);const Ai=c("square-equal",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 10h10",key:"1101jm"}],["path",{d:"M7 14h10",key:"1mhdw3"}]]);const Pi=c("square-function",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3",key:"m1af9g"}],["path",{d:"M9 11.2h5.7",key:"3zgcl2"}]]);const Ti=c("square-library",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 7v10",key:"d5nglc"}],["path",{d:"M11 7v10",key:"pptsnr"}],["path",{d:"m15 7 2 10",key:"1m7qm5"}]]);const Di=c("square-kanban",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 7v7",key:"1x2jlm"}],["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M16 7v9",key:"1hp2iy"}]]);const Ei=c("square-m",[["path",{d:"M8 16V8.5a.5.5 0 0 1 .9-.3l2.7 3.599a.5.5 0 0 0 .8 0l2.7-3.6a.5.5 0 0 1 .9.3V16",key:"1ywlsj"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const zi=c("square-menu",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 8h10",key:"1jw688"}],["path",{d:"M7 12h10",key:"b7w52i"}],["path",{d:"M7 16h10",key:"wp8him"}]]);const Oi=c("square-minus",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 12h8",key:"1wcyev"}]]);const qi=c("square-mouse-pointer",[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",key:"xwnzip"}],["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6",key:"14rsvq"}]]);const ji=c("square-parking-off",[["path",{d:"M3.6 3.6A2 2 0 0 1 5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-.59 1.41",key:"9l1ft6"}],["path",{d:"M3 8.7V19a2 2 0 0 0 2 2h10.3",key:"17knke"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M13 13a3 3 0 1 0 0-6H9v2",key:"uoagbd"}],["path",{d:"M9 17v-2.3",key:"1jxgo2"}]]);const Hi=c("square-parking",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9",key:"1dfk2c"}]]);const Nw=c("square-pause",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9",key:"c1nkhi"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9",key:"h65svq"}]]);const _t=c("square-pen",[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7",key:"1m0v6g"}],["path",{d:"M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z",key:"ohrbg2"}]]);const Vi=c("square-percent",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"M15 15h.01",key:"lqbp3k"}]]);const Fi=c("square-pi",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 7h10",key:"udp07y"}],["path",{d:"M10 7v10",key:"i1d9ee"}],["path",{d:"M16 17a2 2 0 0 1-2-2V7",key:"ftwdc7"}]]);const Bi=c("square-pilcrow",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 12H9.5a2.5 2.5 0 0 1 0-5H17",key:"1l9586"}],["path",{d:"M12 7v10",key:"jspqdw"}],["path",{d:"M16 7v10",key:"lavkr4"}]]);const Wi=c("square-play",[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}],["path",{d:"M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z",key:"kmsa83"}]]);const Ui=c("square-plus",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M12 8v8",key:"napkw2"}]]);const Ri=c("square-power",[["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005",key:"1pek45"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const Cw=c("square-radical",[["path",{d:"M7 12h2l2 5 2-10h4",key:"1fxv6h"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const $w=c("square-round-corner",[["path",{d:"M21 11a8 8 0 0 0-8-8",key:"1lxwo5"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1dv2y5"}]]);const Gi=c("square-scissors",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"8.5",cy:"8.5",r:"1.5",key:"cn5opk"}],["line",{x1:"9.56066",y1:"9.56066",x2:"12",y2:"12",key:"mksg6j"}],["line",{x1:"17",y1:"17",x2:"14.82",y2:"14.82",key:"1lwi1d"}],["circle",{cx:"8.5",cy:"15.5",r:"1.5",key:"12hfy1"}],["line",{x1:"9.56066",y1:"14.43934",x2:"17",y2:"7",key:"4jyfgs"}]]);const Ki=c("square-sigma",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M16 8.9V7H8l4 5-4 5h8v-1.9",key:"9nih0i"}]]);const Yi=c("square-slash",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9",key:"1dfufj"}]]);const Xi=c("square-split-horizontal",[["path",{d:"M8 19H5c-1 0-2-1-2-2V7c0-1 1-2 2-2h3",key:"lubmu8"}],["path",{d:"M16 5h3c1 0 2 1 2 2v10c0 1-1 2-2 2h-3",key:"1ag34g"}],["line",{x1:"12",x2:"12",y1:"4",y2:"20",key:"1tx1rr"}]]);const Zi=c("square-split-vertical",[["path",{d:"M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3",key:"1pi83i"}],["path",{d:"M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3",key:"ido5k7"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12",key:"1e0a9i"}]]);const Sw=c("square-square",[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1",key:"z9xiuo"}]]);const Lw=c("square-stack",[["path",{d:"M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2",key:"4i38lg"}],["path",{d:"M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2",key:"mlte4a"}],["rect",{width:"8",height:"8",x:"14",y:"14",rx:"2",key:"1fa9i4"}]]);const Iw=c("square-star",[["path",{d:"M11.035 7.69a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z",key:"13edca"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const Aw=c("square-stop",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1",key:"1ssd4o"}]]);const Qi=c("square-terminal",[["path",{d:"m7 11 2-2-2-2",key:"1lz0vl"}],["path",{d:"M11 13h4",key:"1p7l4v"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}]]);const Ji=c("square-user",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M7 21v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2",key:"1m6ac2"}]]);const ec=c("square-user-round",[["path",{d:"M18 21a6 6 0 0 0-12 0",key:"kaz2du"}],["circle",{cx:"12",cy:"11",r:"4",key:"1gt34v"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]]);const tc=c("square-x",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]]);const Pw=c("square",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]]);const Tw=c("squares-exclude",[["path",{d:"M16 12v2a2 2 0 0 1-2 2H9a1 1 0 0 0-1 1v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h0",key:"1mcohs"}],["path",{d:"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1h-5a2 2 0 0 0-2 2v2",key:"1r1efp"}]]);const Dw=c("squares-intersect",[["path",{d:"M10 22a2 2 0 0 1-2-2",key:"i7yj1i"}],["path",{d:"M14 2a2 2 0 0 1 2 2",key:"170a0m"}],["path",{d:"M16 22h-2",key:"18d249"}],["path",{d:"M2 10V8",key:"7yj4fe"}],["path",{d:"M2 4a2 2 0 0 1 2-2",key:"ddgnws"}],["path",{d:"M20 8a2 2 0 0 1 2 2",key:"1770vt"}],["path",{d:"M22 14v2",key:"iot8ja"}],["path",{d:"M22 20a2 2 0 0 1-2 2",key:"qj8q6g"}],["path",{d:"M4 16a2 2 0 0 1-2-2",key:"1dnafg"}],["path",{d:"M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z",key:"ci6f0b"}],["path",{d:"M8 2h2",key:"1gmkwm"}]]);const Ew=c("squares-unite",[["path",{d:"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 0 1 1h3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-3a1 1 0 0 0-1-1z",key:"17jnth"}]]);const zw=c("squares-subtract",[["path",{d:"M10 22a2 2 0 0 1-2-2",key:"i7yj1i"}],["path",{d:"M16 22h-2",key:"18d249"}],["path",{d:"M16 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h3a1 1 0 0 0 1-1v-5a2 2 0 0 1 2-2h5a1 1 0 0 0 1-1z",key:"1njgbb"}],["path",{d:"M20 8a2 2 0 0 1 2 2",key:"1770vt"}],["path",{d:"M22 14v2",key:"iot8ja"}],["path",{d:"M22 20a2 2 0 0 1-2 2",key:"qj8q6g"}]]);const Ow=c("squircle-dashed",[["path",{d:"M13.77 3.043a34 34 0 0 0-3.54 0",key:"1oaobr"}],["path",{d:"M13.771 20.956a33 33 0 0 1-3.541.001",key:"95iq0j"}],["path",{d:"M20.18 17.74c-.51 1.15-1.29 1.93-2.439 2.44",key:"1u6qty"}],["path",{d:"M20.18 6.259c-.51-1.148-1.291-1.929-2.44-2.438",key:"1ew6g6"}],["path",{d:"M20.957 10.23a33 33 0 0 1 0 3.54",key:"1l9npr"}],["path",{d:"M3.043 10.23a34 34 0 0 0 .001 3.541",key:"1it6jm"}],["path",{d:"M6.26 20.179c-1.15-.508-1.93-1.29-2.44-2.438",key:"14uchd"}],["path",{d:"M6.26 3.82c-1.149.51-1.93 1.291-2.44 2.44",key:"8k4agb"}]]);const qw=c("squircle",[["path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9",key:"garfkc"}]]);const jw=c("squirrel",[["path",{d:"M15.236 22a3 3 0 0 0-2.2-5",key:"21bitc"}],["path",{d:"M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4",key:"oh0fg0"}],["path",{d:"M18 13h.01",key:"9veqaj"}],["path",{d:"M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10",key:"980v8a"}]]);const Hw=c("stamp",[["path",{d:"M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-6 0c0 2 1 2 1 3.5V13",key:"i9gjdv"}],["path",{d:"M20 15.5a2.5 2.5 0 0 0-2.5-2.5h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1z",key:"1vzg3v"}],["path",{d:"M5 22h14",key:"ehvnwv"}]]);const Vw=c("star-off",[["path",{d:"m10.344 4.688 1.181-2.393a.53.53 0 0 1 .95 0l2.31 4.679a2.12 2.12 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.237 3.152",key:"19ctli"}],["path",{d:"m17.945 17.945.43 2.505a.53.53 0 0 1-.771.56l-4.618-2.428a2.12 2.12 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a8 8 0 0 0 .4-.099",key:"ptqqvy"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const Fw=c("star-half",[["path",{d:"M12 18.338a2.1 2.1 0 0 0-.987.244L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16l2.309-4.679A.53.53 0 0 1 12 2",key:"2ksp49"}]]);const Bw=c("star",[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",key:"r04s7s"}]]);const Ww=c("step-back",[["path",{d:"M13.971 4.285A2 2 0 0 1 17 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z",key:"19qhus"}],["path",{d:"M21 20V4",key:"cb8qj8"}]]);const Uw=c("step-forward",[["path",{d:"M10.029 4.285A2 2 0 0 0 7 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z",key:"1ystz2"}],["path",{d:"M3 4v16",key:"1ph11n"}]]);const Rw=c("stethoscope",[["path",{d:"M11 2v2",key:"1539x4"}],["path",{d:"M5 2v2",key:"1yf1q8"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1",key:"rb5t3r"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3",key:"x18d4x"}],["circle",{cx:"20",cy:"10",r:"2",key:"ts1r5v"}]]);const Gw=c("sticker",[["path",{d:"M21 9a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2z",key:"1dfntj"}],["path",{d:"M15 3v5a1 1 0 0 0 1 1h5",key:"6s6qgf"}],["path",{d:"M8 13h.01",key:"1sbv64"}],["path",{d:"M16 13h.01",key:"wip0gl"}],["path",{d:"M10 16s.8 1 2 1c1.3 0 2-1 2-1",key:"1vvgv3"}]]);const Kw=c("sticky-note",[["path",{d:"M21 9a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2z",key:"1dfntj"}],["path",{d:"M15 3v5a1 1 0 0 0 1 1h5",key:"6s6qgf"}]]);const Yw=c("stone",[["path",{d:"M11.264 2.205A4 4 0 0 0 6.42 4.211l-4 8a4 4 0 0 0 1.359 5.117l6 4a4 4 0 0 0 4.438 0l6-4a4 4 0 0 0 1.576-4.592l-2-6a4 4 0 0 0-2.53-2.53z",key:"1si4ox"}],["path",{d:"M11.99 22 14 12l7.822 3.184",key:"1u8to0"}],["path",{d:"M14 12 8.47 2.302",key:"guo3d5"}]]);const Xw=c("store",[["path",{d:"M15 21v-5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v5",key:"slp6dd"}],["path",{d:"M17.774 10.31a1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.451 0 1.12 1.12 0 0 0-1.548 0 2.5 2.5 0 0 1-3.452 0 1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.77-3.248l2.889-4.184A2 2 0 0 1 7 2h10a2 2 0 0 1 1.653.873l2.895 4.192a2.5 2.5 0 0 1-3.774 3.244",key:"o0xfot"}],["path",{d:"M4 10.95V19a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8.05",key:"wn3emo"}]]);const Zw=c("stretch-horizontal",[["rect",{width:"20",height:"6",x:"2",y:"4",rx:"2",key:"qdearl"}],["rect",{width:"20",height:"6",x:"2",y:"14",rx:"2",key:"1xrn6j"}]]);const Qw=c("stretch-vertical",[["rect",{width:"6",height:"20",x:"4",y:"2",rx:"2",key:"19qu7m"}],["rect",{width:"6",height:"20",x:"14",y:"2",rx:"2",key:"24v0nk"}]]);const Jw=c("strikethrough",[["path",{d:"M16 4H9a3 3 0 0 0-2.83 4",key:"43sutm"}],["path",{d:"M14 12a4 4 0 0 1 0 8H6",key:"nlfj13"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12",key:"1e0a9i"}]]);const ex=c("subscript",[["path",{d:"m4 5 8 8",key:"1eunvl"}],["path",{d:"m12 5-8 8",key:"1ah0jp"}],["path",{d:"M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07",key:"e8ta8j"}]]);const tx=c("sun-dim",[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 4h.01",key:"1ujb9j"}],["path",{d:"M20 12h.01",key:"1ykeid"}],["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M4 12h.01",key:"158zrr"}],["path",{d:"M17.657 6.343h.01",key:"31pqzk"}],["path",{d:"M17.657 17.657h.01",key:"jehnf4"}],["path",{d:"M6.343 17.657h.01",key:"gdk6ow"}],["path",{d:"M6.343 6.343h.01",key:"1uurf0"}]]);const ox=c("sun-moon",[["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M14.837 16.385a6 6 0 1 1-7.223-7.222c.624-.147.97.66.715 1.248a4 4 0 0 0 5.26 5.259c.589-.255 1.396.09 1.248.715",key:"xlf6rm"}],["path",{d:"M16 12a4 4 0 0 0-4-4",key:"6vsxu"}],["path",{d:"m19 5-1.256 1.256",key:"1yg6a6"}],["path",{d:"M20 12h2",key:"1q8mjw"}]]);const nx=c("sun-medium",[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 3v1",key:"1asbbs"}],["path",{d:"M12 20v1",key:"1wcdkc"}],["path",{d:"M3 12h1",key:"lp3yf2"}],["path",{d:"M20 12h1",key:"1vloll"}],["path",{d:"m18.364 5.636-.707.707",key:"1hakh0"}],["path",{d:"m6.343 17.657-.707.707",key:"18m9nf"}],["path",{d:"m5.636 5.636.707.707",key:"1xv1c5"}],["path",{d:"m17.657 17.657.707.707",key:"vl76zb"}]]);const ax=c("sun-snow",[["path",{d:"M10 21v-1",key:"1u8rkd"}],["path",{d:"M10 4V3",key:"pkzwkn"}],["path",{d:"M10 9a3 3 0 0 0 0 6",key:"gv75dk"}],["path",{d:"m14 20 1.25-2.5L18 18",key:"1chtki"}],["path",{d:"m14 4 1.25 2.5L18 6",key:"1b4wsy"}],["path",{d:"m17 21-3-6 1.5-3H22",key:"o5qa3v"}],["path",{d:"m17 3-3 6 1.5 3",key:"11697g"}],["path",{d:"M2 12h1",key:"1uaihz"}],["path",{d:"m20 10-1.5 2 1.5 2",key:"1swlpi"}],["path",{d:"m3.64 18.36.7-.7",key:"105rm9"}],["path",{d:"m4.34 6.34-.7-.7",key:"d3unjp"}]]);const rx=c("sun",[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"m17.66 17.66 1.41 1.41",key:"ptbguv"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m6.34 17.66-1.41 1.41",key:"1m8zz5"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}]]);const ix=c("sunrise",[["path",{d:"M12 2v8",key:"1q4o3n"}],["path",{d:"m4.93 10.93 1.41 1.41",key:"2a7f42"}],["path",{d:"M2 18h2",key:"j10viu"}],["path",{d:"M20 18h2",key:"wocana"}],["path",{d:"m19.07 10.93-1.41 1.41",key:"15zs5n"}],["path",{d:"M22 22H2",key:"19qnx5"}],["path",{d:"m8 6 4-4 4 4",key:"ybng9g"}],["path",{d:"M16 18a4 4 0 0 0-8 0",key:"1lzouq"}]]);const cx=c("sunset",[["path",{d:"M12 10V2",key:"16sf7g"}],["path",{d:"m4.93 10.93 1.41 1.41",key:"2a7f42"}],["path",{d:"M2 18h2",key:"j10viu"}],["path",{d:"M20 18h2",key:"wocana"}],["path",{d:"m19.07 10.93-1.41 1.41",key:"15zs5n"}],["path",{d:"M22 22H2",key:"19qnx5"}],["path",{d:"m16 6-4 4-4-4",key:"6wukr"}],["path",{d:"M16 18a4 4 0 0 0-8 0",key:"1lzouq"}]]);const sx=c("superscript",[["path",{d:"m4 19 8-8",key:"hr47gm"}],["path",{d:"m12 19-8-8",key:"1dhhmo"}],["path",{d:"M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06",key:"1dfcux"}]]);const dx=c("swatch-book",[["path",{d:"M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z",key:"1ldrpk"}],["path",{d:"M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7",key:"11i5po"}],["path",{d:"M 7 17h.01",key:"1euzgo"}],["path",{d:"m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8",key:"o2gii7"}]]);const lx=c("swiss-franc",[["path",{d:"M10 21V3h8",key:"br2l0g"}],["path",{d:"M6 16h9",key:"2py0wn"}],["path",{d:"M10 9.5h7",key:"13dmhz"}]]);const ux=c("switch-camera",[["path",{d:"M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5",key:"mtk2lu"}],["path",{d:"M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5",key:"120jsl"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"m18 22-3-3 3-3",key:"kgdoj7"}],["path",{d:"m6 2 3 3-3 3",key:"1fnbkv"}]]);const hx=c("sword",[["path",{d:"m11 19-6-6",key:"s7kpr"}],["path",{d:"m5 21-2-2",key:"1kw20b"}],["path",{d:"m8 16-4 4",key:"1oqv8h"}],["path",{d:"M9.5 17.5 21 6V3h-3L6.5 14.5",key:"pkxemp"}]]);const px=c("swords",[["polyline",{points:"14.5 17.5 3 6 3 3 6 3 17.5 14.5",key:"1hfsw2"}],["line",{x1:"13",x2:"19",y1:"19",y2:"13",key:"1vrmhu"}],["line",{x1:"16",x2:"20",y1:"16",y2:"20",key:"1bron3"}],["line",{x1:"19",x2:"21",y1:"21",y2:"19",key:"13pww6"}],["polyline",{points:"14.5 6.5 18 3 21 3 21 6 17.5 9.5",key:"hbey2j"}],["line",{x1:"5",x2:"9",y1:"14",y2:"18",key:"1hf58s"}],["line",{x1:"7",x2:"4",y1:"17",y2:"20",key:"pidxm4"}],["line",{x1:"3",x2:"5",y1:"19",y2:"21",key:"1pehsh"}]]);const yx=c("syringe",[["path",{d:"m18 2 4 4",key:"22kx64"}],["path",{d:"m17 7 3-3",key:"1w1zoj"}],["path",{d:"M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5",key:"1exhtz"}],["path",{d:"m9 11 4 4",key:"rovt3i"}],["path",{d:"m5 19-3 3",key:"59f2uf"}],["path",{d:"m14 4 6 6",key:"yqp9t2"}]]);const fx=c("table-2",[["path",{d:"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18",key:"gugj83"}]]);const mx=c("table-cells-merge",[["path",{d:"M12 21v-6",key:"lihzve"}],["path",{d:"M12 9V3",key:"da5inc"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M3 9h18",key:"1pudct"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]]);const kx=c("table-cells-split",[["path",{d:"M12 15V9",key:"8c7uyn"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M3 9h18",key:"1pudct"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]]);const gx=c("table-columns-split",[["path",{d:"M14 14v2",key:"w2a1xv"}],["path",{d:"M14 20v2",key:"1lq872"}],["path",{d:"M14 2v2",key:"6buw04"}],["path",{d:"M14 8v2",key:"i67w9a"}],["path",{d:"M2 15h8",key:"82wtch"}],["path",{d:"M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2",key:"up0l64"}],["path",{d:"M2 9h8",key:"yelfik"}],["path",{d:"M22 15h-4",key:"1es58f"}],["path",{d:"M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2",key:"pdjoqf"}],["path",{d:"M22 9h-4",key:"1luja7"}],["path",{d:"M5 3v18",key:"14hmio"}]]);const vx=c("table-properties",[["path",{d:"M15 3v18",key:"14nvp0"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M21 9H3",key:"1338ky"}],["path",{d:"M21 15H3",key:"9uk58r"}]]);const _x=c("table-rows-split",[["path",{d:"M14 10h2",key:"1lstlu"}],["path",{d:"M15 22v-8",key:"1fwwgm"}],["path",{d:"M15 2v4",key:"1044rn"}],["path",{d:"M2 10h2",key:"1r8dkt"}],["path",{d:"M20 10h2",key:"1ug425"}],["path",{d:"M3 19h18",key:"awlh7x"}],["path",{d:"M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6",key:"ibqhof"}],["path",{d:"M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2",key:"1uenja"}],["path",{d:"M8 10h2",key:"66od0"}],["path",{d:"M9 22v-8",key:"fmnu31"}],["path",{d:"M9 2v4",key:"j1yeou"}]]);const bx=c("table-of-contents",[["path",{d:"M16 5H3",key:"m91uny"}],["path",{d:"M16 12H3",key:"1a2rj7"}],["path",{d:"M16 19H3",key:"zzsher"}],["path",{d:"M21 5h.01",key:"wa75ra"}],["path",{d:"M21 12h.01",key:"msek7k"}],["path",{d:"M21 19h.01",key:"qvbq2j"}]]);const Mx=c("table",[["path",{d:"M12 3v18",key:"108xh3"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M3 15h18",key:"5xshup"}]]);const wx=c("tablet-smartphone",[["rect",{width:"10",height:"14",x:"3",y:"8",rx:"2",key:"1vrsiq"}],["path",{d:"M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4",key:"1j4zmg"}],["path",{d:"M8 18h.01",key:"lrp35t"}]]);const xx=c("tablet",[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",ry:"2",key:"76otgf"}],["line",{x1:"12",x2:"12.01",y1:"18",y2:"18",key:"1dp563"}]]);const Nx=c("tag",[["path",{d:"M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z",key:"vktsd0"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}]]);const Cx=c("tablets",[["circle",{cx:"7",cy:"7",r:"5",key:"x29byf"}],["circle",{cx:"17",cy:"17",r:"5",key:"1op1d2"}],["path",{d:"M12 17h10",key:"ls21zv"}],["path",{d:"m3.46 10.54 7.08-7.08",key:"1rehiu"}]]);const $x=c("tags",[["path",{d:"M13.172 2a2 2 0 0 1 1.414.586l6.71 6.71a2.4 2.4 0 0 1 0 3.408l-4.592 4.592a2.4 2.4 0 0 1-3.408 0l-6.71-6.71A2 2 0 0 1 6 9.172V3a1 1 0 0 1 1-1z",key:"16rjxf"}],["path",{d:"M2 7v6.172a2 2 0 0 0 .586 1.414l6.71 6.71a2.4 2.4 0 0 0 3.191.193",key:"178nd4"}],["circle",{cx:"10.5",cy:"6.5",r:".5",fill:"currentColor",key:"12ikhr"}]]);const Sx=c("tally-1",[["path",{d:"M4 4v16",key:"6qkkli"}]]);const Lx=c("tally-2",[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}]]);const Ix=c("tally-3",[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}],["path",{d:"M14 4v16",key:"12vmem"}]]);const Ax=c("tally-4",[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}],["path",{d:"M14 4v16",key:"12vmem"}],["path",{d:"M19 4v16",key:"8ij5ei"}]]);const Px=c("tally-5",[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}],["path",{d:"M14 4v16",key:"12vmem"}],["path",{d:"M19 4v16",key:"8ij5ei"}],["path",{d:"M22 6 2 18",key:"h9moai"}]]);const Tx=c("tangent",[["circle",{cx:"17",cy:"4",r:"2",key:"y5j2s2"}],["path",{d:"M15.59 5.41 5.41 15.59",key:"l0vprr"}],["circle",{cx:"4",cy:"17",r:"2",key:"9p4efm"}],["path",{d:"M12 22s-4-9-1.5-11.5S22 12 22 12",key:"1twk4o"}]]);const Dx=c("target",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const Ex=c("telescope",[["path",{d:"m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44",key:"k4qptu"}],["path",{d:"m13.56 11.747 4.332-.924",key:"19l80z"}],["path",{d:"m16 21-3.105-6.21",key:"7oh9d"}],["path",{d:"M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z",key:"m7xp4m"}],["path",{d:"m6.158 8.633 1.114 4.456",key:"74o979"}],["path",{d:"m8 21 3.105-6.21",key:"1fvxut"}],["circle",{cx:"12",cy:"13",r:"2",key:"1c1ljs"}]]);const zx=c("tent-tree",[["circle",{cx:"4",cy:"4",r:"2",key:"bt5ra8"}],["path",{d:"m14 5 3-3 3 3",key:"1sorif"}],["path",{d:"m14 10 3-3 3 3",key:"1jyi9h"}],["path",{d:"M17 14V2",key:"8ymqnk"}],["path",{d:"M17 14H7l-5 8h20Z",key:"13ar7p"}],["path",{d:"M8 14v8",key:"1ghmqk"}],["path",{d:"m9 14 5 8",key:"13pgi6"}]]);const Ox=c("tent",[["path",{d:"M3.5 21 14 3",key:"1szst5"}],["path",{d:"M20.5 21 10 3",key:"1310c3"}],["path",{d:"M15.5 21 12 15l-3.5 6",key:"1ddtfw"}],["path",{d:"M2 21h20",key:"1nyx9w"}]]);const qx=c("terminal",[["path",{d:"M12 19h8",key:"baeox8"}],["path",{d:"m4 17 6-6-6-6",key:"1yngyt"}]]);const oc=c("test-tube-diagonal",[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3",key:"1ub6xw"}],["path",{d:"m16 2 6 6",key:"1gw87d"}],["path",{d:"M12 16H4",key:"1cjfip"}]]);const jx=c("test-tube",[["path",{d:"M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2",key:"125lnx"}],["path",{d:"M8.5 2h7",key:"csnxdl"}],["path",{d:"M14.5 16h-5",key:"1ox875"}]]);const Hx=c("test-tubes",[["path",{d:"M9 2v17.5A2.5 2.5 0 0 1 6.5 22A2.5 2.5 0 0 1 4 19.5V2",key:"1hjrqt"}],["path",{d:"M20 2v17.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5V2",key:"16lc8n"}],["path",{d:"M3 2h7",key:"7s29d5"}],["path",{d:"M14 2h7",key:"7sicin"}],["path",{d:"M9 16H4",key:"1bfye3"}],["path",{d:"M20 16h-5",key:"ddnjpe"}]]);const nc=c("text-align-center",[["path",{d:"M21 5H3",key:"1fi0y6"}],["path",{d:"M17 12H7",key:"16if0g"}],["path",{d:"M19 19H5",key:"vjpgq2"}]]);const ac=c("text-align-end",[["path",{d:"M21 5H3",key:"1fi0y6"}],["path",{d:"M21 12H9",key:"dn1m92"}],["path",{d:"M21 19H7",key:"4cu937"}]]);const rc=c("text-align-justify",[["path",{d:"M3 5h18",key:"1u36vt"}],["path",{d:"M3 12h18",key:"1i2n21"}],["path",{d:"M3 19h18",key:"awlh7x"}]]);const bo=c("text-align-start",[["path",{d:"M21 5H3",key:"1fi0y6"}],["path",{d:"M15 12H3",key:"6jk70r"}],["path",{d:"M17 19H3",key:"z6ezky"}]]);const Vx=c("text-cursor-input",[["path",{d:"M12 20h-1a2 2 0 0 1-2-2 2 2 0 0 1-2 2H6",key:"1528k5"}],["path",{d:"M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7",key:"13ksps"}],["path",{d:"M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1",key:"1n9rhb"}],["path",{d:"M6 4h1a2 2 0 0 1 2 2 2 2 0 0 1 2-2h1",key:"1mj8rg"}],["path",{d:"M9 6v12",key:"velyjx"}]]);const Fx=c("text-cursor",[["path",{d:"M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1",key:"uvaxm9"}],["path",{d:"M7 22h1a4 4 0 0 0 4-4v-1",key:"11xy8d"}],["path",{d:"M7 2h1a4 4 0 0 1 4 4v1",key:"1uw06m"}]]);const ic=c("text-initial",[["path",{d:"M15 5h6",key:"1pr8yx"}],["path",{d:"M15 12h6",key:"upa0zy"}],["path",{d:"M3 19h18",key:"awlh7x"}],["path",{d:"m3 12 3.553-7.724a.5.5 0 0 1 .894 0L11 12",key:"6lvno8"}],["path",{d:"M3.92 10h6.16",key:"1tl8ex"}]]);const Bx=c("text-quote",[["path",{d:"M17 5H3",key:"1cn7zz"}],["path",{d:"M21 12H8",key:"scolzb"}],["path",{d:"M21 19H8",key:"13qgcb"}],["path",{d:"M3 12v7",key:"1ri8j3"}]]);const Wx=c("text-search",[["path",{d:"M21 5H3",key:"1fi0y6"}],["path",{d:"M10 12H3",key:"1ulcyk"}],["path",{d:"M10 19H3",key:"108z41"}],["circle",{cx:"17",cy:"15",r:"3",key:"1upz2a"}],["path",{d:"m21 19-1.9-1.9",key:"dwi7p8"}]]);const cc=c("text-select",[["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M21 14v1",key:"169vum"}],["path",{d:"M21 19a2 2 0 0 1-2 2",key:"1j7049"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M3 14v1",key:"vnatye"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M7 12h10",key:"b7w52i"}],["path",{d:"M7 16h6",key:"1vyc9m"}],["path",{d:"M7 8h8",key:"1jbsf9"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M9 3h1",key:"1yesri"}]]);const sc=c("text-wrap",[["path",{d:"m16 16-3 3 3 3",key:"117b85"}],["path",{d:"M3 12h14.5a1 1 0 0 1 0 7H13",key:"18xa6z"}],["path",{d:"M3 19h6",key:"1ygdsz"}],["path",{d:"M3 5h18",key:"1u36vt"}]]);const Ux=c("theater",[["path",{d:"M2 10s3-3 3-8",key:"3xiif0"}],["path",{d:"M22 10s-3-3-3-8",key:"ioaa5q"}],["path",{d:"M10 2c0 4.4-3.6 8-8 8",key:"16fkpi"}],["path",{d:"M14 2c0 4.4 3.6 8 8 8",key:"b9eulq"}],["path",{d:"M2 10s2 2 2 5",key:"1au1lb"}],["path",{d:"M22 10s-2 2-2 5",key:"qi2y5e"}],["path",{d:"M8 15h8",key:"45n4r"}],["path",{d:"M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1",key:"1vsc2m"}],["path",{d:"M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1",key:"hrha4u"}]]);const Rx=c("thermometer-snowflake",[["path",{d:"m10 20-1.25-2.5L6 18",key:"18frcb"}],["path",{d:"M10 4 8.75 6.5 6 6",key:"7mghy3"}],["path",{d:"M10.585 15H10",key:"4nqulp"}],["path",{d:"M2 12h6.5L10 9",key:"kv9z4n"}],["path",{d:"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z",key:"yu0u2z"}],["path",{d:"m4 10 1.5 2L4 14",key:"k9enpj"}],["path",{d:"m7 21 3-6-1.5-3",key:"j8hb9u"}],["path",{d:"m7 3 3 6h2",key:"1bbqgq"}]]);const Gx=c("thermometer-sun",[["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 8a4 4 0 0 0-1.645 7.647",key:"wz5p04"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z",key:"yu0u2z"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"m6.34 17.66-1.41 1.41",key:"1m8zz5"}]]);const Kx=c("thermometer",[["path",{d:"M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z",key:"17jzev"}]]);const Yx=c("thumbs-down",[["path",{d:"M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z",key:"m61m77"}],["path",{d:"M17 14V2",key:"8ymqnk"}]]);const Xx=c("thumbs-up",[["path",{d:"M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z",key:"emmmcr"}],["path",{d:"M7 10v12",key:"1qc93n"}]]);const Zx=c("ticket-check",[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);const Qx=c("ticket-minus",[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"M9 12h6",key:"1c52cq"}]]);const Jx=c("ticket-percent",[["path",{d:"M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"1l48ns"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M15 15h.01",key:"lqbp3k"}]]);const e9=c("ticket-plus",[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"M9 12h6",key:"1c52cq"}],["path",{d:"M12 9v6",key:"199k2o"}]]);const t9=c("ticket-slash",[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"m9.5 14.5 5-5",key:"qviqfa"}]]);const o9=c("ticket-x",[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"m9.5 14.5 5-5",key:"qviqfa"}],["path",{d:"m9.5 9.5 5 5",key:"18nt4w"}]]);const n9=c("ticket",[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"M13 5v2",key:"dyzc3o"}],["path",{d:"M13 17v2",key:"1ont0d"}],["path",{d:"M13 11v2",key:"1wjjxi"}]]);const a9=c("tickets-plane",[["path",{d:"M10.5 17h1.227a2 2 0 0 0 1.345-.52L18 12",key:"16muxl"}],["path",{d:"m12 13.5 3.794.506",key:"6v5z87"}],["path",{d:"m3.173 8.18 11-5a2 2 0 0 1 2.647.993L18.56 8",key:"15hfpj"}],["path",{d:"M6 10V8",key:"1y41hn"}],["path",{d:"M6 14v1",key:"cao2tf"}],["path",{d:"M6 19v2",key:"1loha6"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2",key:"p3bz5l"}]]);const r9=c("tickets",[["path",{d:"m3.173 8.18 11-5a2 2 0 0 1 2.647.993L18.56 8",key:"15hfpj"}],["path",{d:"M6 10V8",key:"1y41hn"}],["path",{d:"M6 14v1",key:"cao2tf"}],["path",{d:"M6 19v2",key:"1loha6"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2",key:"p3bz5l"}]]);const i9=c("timer-off",[["path",{d:"M10 2h4",key:"n1abiw"}],["path",{d:"M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7",key:"10he05"}],["path",{d:"M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2",key:"15f7sh"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M12 12v-2",key:"fwoke6"}]]);const c9=c("timer",[["line",{x1:"10",x2:"14",y1:"2",y2:"2",key:"14vaq8"}],["line",{x1:"12",x2:"15",y1:"14",y2:"11",key:"17fdiu"}],["circle",{cx:"12",cy:"14",r:"8",key:"1e1u0o"}]]);const s9=c("timer-reset",[["path",{d:"M10 2h4",key:"n1abiw"}],["path",{d:"M12 14v-4",key:"1evpnu"}],["path",{d:"M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6",key:"1ts96g"}],["path",{d:"M9 17H4v5",key:"8t5av"}]]);const d9=c("toggle-left",[["circle",{cx:"9",cy:"12",r:"3",key:"u3jwor"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7",key:"g7kal2"}]]);const l9=c("toggle-right",[["circle",{cx:"15",cy:"12",r:"3",key:"1afu0r"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7",key:"g7kal2"}]]);const u9=c("toilet",[["path",{d:"M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18",key:"kc4kqr"}],["path",{d:"M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8",key:"1tqs57"}]]);const h9=c("tool-case",[["path",{d:"M10 15h4",key:"192ueg"}],["path",{d:"m14.817 10.995-.971-1.45 1.034-1.232a2 2 0 0 0-2.025-3.238l-1.82.364L9.91 3.885a2 2 0 0 0-3.625.748L6.141 6.55l-1.725.426a2 2 0 0 0-.19 3.756l.657.27",key:"xbnumr"}],["path",{d:"m18.822 10.995 2.26-5.38a1 1 0 0 0-.557-1.318L16.954 2.9a1 1 0 0 0-1.281.533l-.924 2.122",key:"eaw7gc"}],["path",{d:"M4 12.006A1 1 0 0 1 4.994 11H19a1 1 0 0 1 1 1v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z",key:"1vaooh"}]]);const p9=c("tornado",[["path",{d:"M21 4H3",key:"1hwok0"}],["path",{d:"M18 8H6",key:"41n648"}],["path",{d:"M19 12H9",key:"1g4lpz"}],["path",{d:"M16 16h-6",key:"1j5d54"}],["path",{d:"M11 20H9",key:"39obr8"}]]);const y9=c("toolbox",[["path",{d:"M16 12v4",key:"vf1vip"}],["path",{d:"M16 6a2 2 0 0 1 1.414.586l4 4A2 2 0 0 1 22 12v7a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 .586-1.414l4-4A2 2 0 0 1 8 6z",key:"1h1rvn"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2",key:"1ksdt3"}],["path",{d:"M2 14h20",key:"myj16y"}],["path",{d:"M8 12v4",key:"1w4uao"}]]);const f9=c("torus",[["ellipse",{cx:"12",cy:"11",rx:"3",ry:"2",key:"1b2qxu"}],["ellipse",{cx:"12",cy:"12.5",rx:"10",ry:"8.5",key:"h8emeu"}]]);const m9=c("touchpad-off",[["path",{d:"M12 20v-6",key:"1rm09r"}],["path",{d:"M19.656 14H22",key:"170xzr"}],["path",{d:"M2 14h12",key:"d8icqz"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2",key:"s23sx2"}],["path",{d:"M9.656 4H20a2 2 0 0 1 2 2v10.344",key:"ovjcvl"}]]);const k9=c("touchpad",[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M2 14h20",key:"myj16y"}],["path",{d:"M12 20v-6",key:"1rm09r"}]]);const g9=c("tower-control",[["path",{d:"M18.2 12.27 20 6H4l1.8 6.27a1 1 0 0 0 .95.73h10.5a1 1 0 0 0 .96-.73Z",key:"1pledb"}],["path",{d:"M8 13v9",key:"hmv0ci"}],["path",{d:"M16 22v-9",key:"ylnf1u"}],["path",{d:"m9 6 1 7",key:"dpdgam"}],["path",{d:"m15 6-1 7",key:"ls7zgu"}],["path",{d:"M12 6V2",key:"1pj48d"}],["path",{d:"M13 2h-2",key:"mj6ths"}]]);const v9=c("toy-brick",[["rect",{width:"18",height:"12",x:"3",y:"8",rx:"1",key:"158fvp"}],["path",{d:"M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3",key:"s0042v"}],["path",{d:"M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3",key:"9wmeh2"}]]);const _9=c("tractor",[["path",{d:"m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.158a1 1 0 0 1-.988.842H20",key:"she1j9"}],["path",{d:"M16 18h-5",key:"bq60fd"}],["path",{d:"M18 5a1 1 0 0 0-1 1v5.573",key:"1kv8ia"}],["path",{d:"M3 4h8.129a1 1 0 0 1 .99.863L13 11.246",key:"1q1ert"}],["path",{d:"M4 11V4",key:"9ft8pt"}],["path",{d:"M7 15h.01",key:"k5ht0j"}],["path",{d:"M8 10.1V4",key:"1jgyzo"}],["circle",{cx:"18",cy:"18",r:"2",key:"1emm8v"}],["circle",{cx:"7",cy:"15",r:"5",key:"ddtuc"}]]);const b9=c("traffic-cone",[["path",{d:"M16.05 10.966a5 2.5 0 0 1-8.1 0",key:"m5jpwb"}],["path",{d:"m16.923 14.049 4.48 2.04a1 1 0 0 1 .001 1.831l-8.574 3.9a2 2 0 0 1-1.66 0l-8.574-3.91a1 1 0 0 1 0-1.83l4.484-2.04",key:"rbg3g8"}],["path",{d:"M16.949 14.14a5 2.5 0 1 1-9.9 0L10.063 3.5a2 2 0 0 1 3.874 0z",key:"vap8c8"}],["path",{d:"M9.194 6.57a5 2.5 0 0 0 5.61 0",key:"15hn5c"}]]);const M9=c("train-front-tunnel",[["path",{d:"M2 22V12a10 10 0 1 1 20 0v10",key:"o0fyp0"}],["path",{d:"M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8",key:"m8q3n9"}],["path",{d:"M10 15h.01",key:"44in9x"}],["path",{d:"M14 15h.01",key:"5mohn5"}],["path",{d:"M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z",key:"hckbmu"}],["path",{d:"m9 19-2 3",key:"iij7hm"}],["path",{d:"m15 19 2 3",key:"npx8sa"}]]);const w9=c("train-front",[["path",{d:"M8 3.1V7a4 4 0 0 0 8 0V3.1",key:"1v71zp"}],["path",{d:"m9 15-1-1",key:"1yrq24"}],["path",{d:"m15 15 1-1",key:"1t0d6s"}],["path",{d:"M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z",key:"1p0hjs"}],["path",{d:"m8 19-2 3",key:"13i0xs"}],["path",{d:"m16 19 2 3",key:"xo31yx"}]]);const x9=c("train-track",[["path",{d:"M2 17 17 2",key:"18b09t"}],["path",{d:"m2 14 8 8",key:"1gv9hu"}],["path",{d:"m5 11 8 8",key:"189pqp"}],["path",{d:"m8 8 8 8",key:"1imecy"}],["path",{d:"m11 5 8 8",key:"ummqn6"}],["path",{d:"m14 2 8 8",key:"1vk7dn"}],["path",{d:"M7 22 22 7",key:"15mb1i"}]]);const dc=c("tram-front",[["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2",key:"1wxw4b"}],["path",{d:"M4 11h16",key:"mpoxn0"}],["path",{d:"M12 3v8",key:"1h2ygw"}],["path",{d:"m8 19-2 3",key:"13i0xs"}],["path",{d:"m18 22-2-3",key:"1p0ohu"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M16 15h.01",key:"rnfrdf"}]]);const N9=c("transgender",[["path",{d:"M12 16v6",key:"c8a4gj"}],["path",{d:"M14 20h-4",key:"m8m19d"}],["path",{d:"M18 2h4v4",key:"1341mj"}],["path",{d:"m2 2 7.17 7.17",key:"13q8l2"}],["path",{d:"M2 5.355V2h3.357",key:"18136r"}],["path",{d:"m22 2-7.17 7.17",key:"1epvy4"}],["path",{d:"M8 5 5 8",key:"mgbjhz"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]]);const lc=c("trash-2",[["path",{d:"M10 11v6",key:"nco0om"}],["path",{d:"M14 11v6",key:"outv1u"}],["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6",key:"miytrc"}],["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",key:"e791ji"}]]);const C9=c("trash",[["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6",key:"miytrc"}],["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",key:"e791ji"}]]);const $9=c("tree-deciduous",[["path",{d:"M8 19a4 4 0 0 1-2.24-7.32A3.5 3.5 0 0 1 9 6.03V6a3 3 0 1 1 6 0v.04a3.5 3.5 0 0 1 3.24 5.65A4 4 0 0 1 16 19Z",key:"oadzkq"}],["path",{d:"M12 19v3",key:"npa21l"}]]);const uc=c("tree-palm",[["path",{d:"M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4",key:"foxbe7"}],["path",{d:"M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3",key:"18arnh"}],["path",{d:"M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35",key:"ywahnh"}],["path",{d:"M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14",key:"ft0feo"}]]);const S9=c("tree-pine",[["path",{d:"m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z",key:"cpyugq"}],["path",{d:"M12 22v-3",key:"kmzjlo"}]]);const L9=c("trees",[["path",{d:"M10 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z",key:"1l6gj6"}],["path",{d:"M7 16v6",key:"1a82de"}],["path",{d:"M13 19v3",key:"13sx9i"}],["path",{d:"M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5",key:"1sj9kv"}]]);const I9=c("trello",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["rect",{width:"3",height:"9",x:"7",y:"7",key:"14n3xi"}],["rect",{width:"3",height:"5",x:"14",y:"7",key:"s4azjd"}]]);const td=c("trending-down",[["path",{d:"M16 17h6v-6",key:"t6n2it"}],["path",{d:"m22 17-8.5-8.5-5 5L2 7",key:"x473p"}]]);const A9=c("trending-up-down",[["path",{d:"M14.828 14.828 21 21",key:"ar5fw7"}],["path",{d:"M21 16v5h-5",key:"1ck2sf"}],["path",{d:"m21 3-9 9-4-4-6 6",key:"1h02xo"}],["path",{d:"M21 8V3h-5",key:"1qoq8a"}]]);const od=c("trending-up",[["path",{d:"M16 7h6v6",key:"box55l"}],["path",{d:"m22 7-8.5 8.5-5-5L2 17",key:"1t1m79"}]]);const tn=c("triangle-alert",[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);const P9=c("triangle-dashed",[["path",{d:"M10.17 4.193a2 2 0 0 1 3.666.013",key:"pltmmw"}],["path",{d:"M14 21h2",key:"v4qezv"}],["path",{d:"m15.874 7.743 1 1.732",key:"10m0iw"}],["path",{d:"m18.849 12.952 1 1.732",key:"zadnam"}],["path",{d:"M21.824 18.18a2 2 0 0 1-1.835 2.824",key:"fvwuk4"}],["path",{d:"M4.024 21a2 2 0 0 1-1.839-2.839",key:"1e1kah"}],["path",{d:"m5.136 12.952-1 1.732",key:"1u4ldi"}],["path",{d:"M8 21h2",key:"i9zjee"}],["path",{d:"m8.102 7.743-1 1.732",key:"1zzo4u"}]]);const T9=c("triangle-right",[["path",{d:"M22 18a2 2 0 0 1-2 2H3c-1.1 0-1.3-.6-.4-1.3L20.4 4.3c.9-.7 1.6-.4 1.6.7Z",key:"183wce"}]]);const D9=c("triangle",[["path",{d:"M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z",key:"14u9p9"}]]);const E9=c("trophy",[["path",{d:"M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978",key:"1n3hpd"}],["path",{d:"M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978",key:"rfe1zi"}],["path",{d:"M18 9h1.5a1 1 0 0 0 0-5H18",key:"7xy6bh"}],["path",{d:"M4 22h16",key:"57wxv0"}],["path",{d:"M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z",key:"1mhfuq"}],["path",{d:"M6 9H4.5a1 1 0 0 1 0-5H6",key:"tex48p"}]]);const z9=c("truck-electric",[["path",{d:"M14 19V7a2 2 0 0 0-2-2H9",key:"15peso"}],["path",{d:"M15 19H9",key:"18q6dt"}],["path",{d:"M19 19h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62L18.3 9.38a1 1 0 0 0-.78-.38H14",key:"1dkp3j"}],["path",{d:"M2 13v5a1 1 0 0 0 1 1h2",key:"pkmmzz"}],["path",{d:"M4 3 2.15 5.15a.495.495 0 0 0 .35.86h2.15a.47.47 0 0 1 .35.86L3 9.02",key:"1n26pd"}],["circle",{cx:"17",cy:"19",r:"2",key:"1nxcgd"}],["circle",{cx:"7",cy:"19",r:"2",key:"gzo7y7"}]]);const O9=c("truck",[["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2",key:"wrbu53"}],["path",{d:"M15 18H9",key:"1lyqi6"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14",key:"lysw3i"}],["circle",{cx:"17",cy:"18",r:"2",key:"332jqn"}],["circle",{cx:"7",cy:"18",r:"2",key:"19iecd"}]]);const q9=c("turkish-lira",[["path",{d:"M15 4 5 9",key:"14bkc9"}],["path",{d:"m15 8.5-10 5",key:"1grtsx"}],["path",{d:"M18 12a9 9 0 0 1-9 9V3",key:"1sst7f"}]]);const j9=c("turntable",[["path",{d:"M10 12.01h.01",key:"7rp0yl"}],["path",{d:"M18 8v4a8 8 0 0 1-1.07 4",key:"1st48v"}],["circle",{cx:"10",cy:"12",r:"4",key:"19levz"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2",key:"izxlao"}]]);const H9=c("turtle",[["path",{d:"m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z",key:"1lbbv7"}],["path",{d:"M4.82 7.9 8 10",key:"m9wose"}],["path",{d:"M15.18 7.9 12 10",key:"p8dp2u"}],["path",{d:"M16.93 10H20a2 2 0 0 1 0 4H2",key:"12nsm7"}]]);const V9=c("tv-minimal-play",[["path",{d:"M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z",key:"vbtd3f"}],["path",{d:"M7 21h10",key:"1b0cd5"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}]]);const hc=c("tv-minimal",[["path",{d:"M7 21h10",key:"1b0cd5"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}]]);const F9=c("tv",[["path",{d:"m17 2-5 5-5-5",key:"16satq"}],["rect",{width:"20",height:"15",x:"2",y:"7",rx:"2",key:"1e6viu"}]]);const B9=c("twitch",[["path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7",key:"c0yzno"}]]);const W9=c("twitter",[["path",{d:"M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z",key:"pff0z6"}]]);const U9=c("type",[["path",{d:"M12 4v16",key:"1654pz"}],["path",{d:"M4 7V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2",key:"e0r10z"}],["path",{d:"M9 20h6",key:"s66wpe"}]]);const R9=c("type-outline",[["path",{d:"M14 16.5a.5.5 0 0 0 .5.5h.5a2 2 0 0 1 0 4H9a2 2 0 0 1 0-4h.5a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V8a2 2 0 0 1-4 0V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3a2 2 0 0 1-4 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z",key:"1reda3"}]]);const G9=c("umbrella-off",[["path",{d:"M12 13v7a2 2 0 0 0 4 0",key:"rpgb42"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M18.656 13h2.336a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-12.07-7.51",key:"yawknk"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M5.961 5.957a10.28 10.28 0 0 0-3.922 5.769A1 1 0 0 0 3 13h10",key:"5sfalc"}]]);const K9=c("umbrella",[["path",{d:"M12 13v7a2 2 0 0 0 4 0",key:"rpgb42"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M20.992 13a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-19.923 0A1 1 0 0 0 3 13z",key:"124nyo"}]]);const Y9=c("underline",[["path",{d:"M6 4v6a6 6 0 0 0 12 0V4",key:"9kb039"}],["line",{x1:"4",x2:"20",y1:"20",y2:"20",key:"nun2al"}]]);const X9=c("undo-2",[["path",{d:"M9 14 4 9l5-5",key:"102s5s"}],["path",{d:"M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11",key:"f3b9sd"}]]);const Z9=c("undo-dot",[["path",{d:"M21 17a9 9 0 0 0-15-6.7L3 13",key:"8mp6z9"}],["path",{d:"M3 7v6h6",key:"1v2h90"}],["circle",{cx:"12",cy:"17",r:"1",key:"1ixnty"}]]);const Q9=c("undo",[["path",{d:"M3 7v6h6",key:"1v2h90"}],["path",{d:"M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13",key:"1r6uu6"}]]);const J9=c("unfold-horizontal",[["path",{d:"M16 12h6",key:"15xry1"}],["path",{d:"M8 12H2",key:"1jqql6"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m19 15 3-3-3-3",key:"wjy7rq"}],["path",{d:"m5 9-3 3 3 3",key:"j64kie"}]]);const eN=c("unfold-vertical",[["path",{d:"M12 22v-6",key:"6o8u61"}],["path",{d:"M12 8V2",key:"1wkif3"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}],["path",{d:"m15 19-3 3-3-3",key:"11eu04"}],["path",{d:"m15 5-3-3-3 3",key:"itvq4r"}]]);const tN=c("ungroup",[["rect",{width:"8",height:"6",x:"5",y:"4",rx:"1",key:"nzclkv"}],["rect",{width:"8",height:"6",x:"11",y:"14",rx:"1",key:"4tytwb"}]]);const pc=c("university",[["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3",key:"1rgiei"}],["path",{d:"M18 12h.01",key:"yjnet6"}],["path",{d:"M18 16h.01",key:"plv8zi"}],["path",{d:"M22 7a1 1 0 0 0-1-1h-2a2 2 0 0 1-1.143-.359L13.143 2.36a2 2 0 0 0-2.286-.001L6.143 5.64A2 2 0 0 1 5 6H3a1 1 0 0 0-1 1v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2z",key:"1ogmi3"}],["path",{d:"M6 12h.01",key:"c2rlol"}],["path",{d:"M6 16h.01",key:"1pmjb7"}],["circle",{cx:"12",cy:"10",r:"2",key:"1yojzk"}]]);const oN=c("unlink-2",[["path",{d:"M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2",key:"1re2ne"}]]);const nN=c("unlink",[["path",{d:"m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71",key:"yqzxt4"}],["path",{d:"m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71",key:"4qinb0"}],["line",{x1:"8",x2:"8",y1:"2",y2:"5",key:"1041cp"}],["line",{x1:"2",x2:"5",y1:"8",y2:"8",key:"14m1p5"}],["line",{x1:"16",x2:"16",y1:"19",y2:"22",key:"rzdirn"}],["line",{x1:"19",x2:"22",y1:"16",y2:"16",key:"ox905f"}]]);const aN=c("unplug",[["path",{d:"m19 5 3-3",key:"yk6iyv"}],["path",{d:"m2 22 3-3",key:"19mgm9"}],["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z",key:"goz73y"}],["path",{d:"M7.5 13.5 10 11",key:"7xgeeb"}],["path",{d:"M10.5 16.5 13 14",key:"10btkg"}],["path",{d:"m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z",key:"1snsnr"}]]);const nd=c("upload",[["path",{d:"M12 3v12",key:"1x0j5s"}],["path",{d:"m17 8-5-5-5 5",key:"7q97r8"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}]]);const rN=c("usb",[["circle",{cx:"10",cy:"7",r:"1",key:"dypaad"}],["circle",{cx:"4",cy:"20",r:"1",key:"22iqad"}],["path",{d:"M4.7 19.3 19 5",key:"1enqfc"}],["path",{d:"m21 3-3 1 2 2Z",key:"d3ov82"}],["path",{d:"M9.26 7.68 5 12l2 5",key:"1esawj"}],["path",{d:"m10 14 5 2 3.5-3.5",key:"v8oal5"}],["path",{d:"m18 12 1-1 1 1-1 1Z",key:"1bh22v"}]]);const iN=c("user-check",[["path",{d:"m16 11 2 2 4-4",key:"9rsbq5"}],["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}]]);const cN=c("user-cog",[["path",{d:"M10 15H6a4 4 0 0 0-4 4v2",key:"1nfge6"}],["path",{d:"m14.305 16.53.923-.382",key:"1itpsq"}],["path",{d:"m15.228 13.852-.923-.383",key:"eplpkm"}],["path",{d:"m16.852 12.228-.383-.923",key:"13v3q0"}],["path",{d:"m16.852 17.772-.383.924",key:"1i8mnm"}],["path",{d:"m19.148 12.228.383-.923",key:"1q8j1v"}],["path",{d:"m19.53 18.696-.382-.924",key:"vk1qj3"}],["path",{d:"m20.772 13.852.924-.383",key:"n880s0"}],["path",{d:"m20.772 16.148.924.383",key:"1g6xey"}],["circle",{cx:"18",cy:"15",r:"3",key:"gjjjvw"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}]]);const sN=c("user-lock",[["circle",{cx:"10",cy:"7",r:"4",key:"e45bow"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2",key:"3bnktk"}],["path",{d:"M15 15.5V14a2 2 0 0 1 4 0v1.5",key:"12ym5i"}],["rect",{width:"8",height:"5",x:"13",y:"16",rx:".899",key:"4p176n"}]]);const dN=c("user-minus",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11",key:"1shjgl"}]]);const lN=c("user-pen",[["path",{d:"M11.5 15H7a4 4 0 0 0-4 4v2",key:"15lzij"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1817ys"}],["circle",{cx:"10",cy:"7",r:"4",key:"e45bow"}]]);const uN=c("user-plus",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["line",{x1:"19",x2:"19",y1:"8",y2:"14",key:"1bvyxn"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11",key:"1shjgl"}]]);const yc=c("user-round-check",[["path",{d:"M2 21a8 8 0 0 1 13.292-6",key:"bjp14o"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}]]);const fc=c("user-round-cog",[["path",{d:"m14.305 19.53.923-.382",key:"3m78fa"}],["path",{d:"m15.228 16.852-.923-.383",key:"npixar"}],["path",{d:"m16.852 15.228-.383-.923",key:"5xggr7"}],["path",{d:"m16.852 20.772-.383.924",key:"dpfhf9"}],["path",{d:"m19.148 15.228.383-.923",key:"1reyyz"}],["path",{d:"m19.53 21.696-.382-.924",key:"1goivc"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62",key:"1yezr2"}],["path",{d:"m20.772 16.852.924-.383",key:"htqkph"}],["path",{d:"m20.772 19.148.924.383",key:"9w9pjp"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]]);const mc=c("user-round-minus",[["path",{d:"M2 21a8 8 0 0 1 13.292-6",key:"bjp14o"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M22 19h-6",key:"vcuq98"}]]);const hN=c("user-round-pen",[["path",{d:"M2 21a8 8 0 0 1 10.821-7.487",key:"1c8h7z"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1817ys"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}]]);const kc=c("user-round-plus",[["path",{d:"M2 21a8 8 0 0 1 13.292-6",key:"bjp14o"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M19 16v6",key:"tddt3s"}],["path",{d:"M22 19h-6",key:"vcuq98"}]]);const pN=c("user-round-search",[["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62",key:"1yezr2"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["path",{d:"m22 22-1.9-1.9",key:"1e5ubv"}]]);const gc=c("user-round-x",[["path",{d:"M2 21a8 8 0 0 1 11.873-7",key:"74fkxq"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"m17 17 5 5",key:"p7ous7"}],["path",{d:"m22 17-5 5",key:"gqnmv0"}]]);const vc=c("user-round",[["circle",{cx:"12",cy:"8",r:"5",key:"1hypcn"}],["path",{d:"M20 21a8 8 0 0 0-16 0",key:"rfgkzh"}]]);const yN=c("user-search",[["circle",{cx:"10",cy:"7",r:"4",key:"e45bow"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2",key:"3bnktk"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["path",{d:"m21 21-1.9-1.9",key:"1g2n9r"}]]);const fN=c("user-star",[["path",{d:"M16.051 12.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z",key:"1m8t9f"}],["path",{d:"M8 15H7a4 4 0 0 0-4 4v2",key:"l9tmp8"}],["circle",{cx:"10",cy:"7",r:"4",key:"e45bow"}]]);const mN=c("user-x",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["line",{x1:"17",x2:"22",y1:"8",y2:"13",key:"3nzzx3"}],["line",{x1:"22",x2:"17",y1:"8",y2:"13",key:"1swrse"}]]);const kN=c("user",[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2",key:"975kel"}],["circle",{cx:"12",cy:"7",r:"4",key:"17ys0d"}]]);const _c=c("users-round",[["path",{d:"M18 21a8 8 0 0 0-16 0",key:"3ypg7q"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3",key:"10s06x"}]]);const bc=c("utensils-crossed",[["path",{d:"m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8",key:"n7qcjb"}],["path",{d:"M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7",key:"d0u48b"}],["path",{d:"m2.1 21.8 6.4-6.3",key:"yn04lh"}],["path",{d:"m19 5-7 7",key:"194lzd"}]]);const gN=c("users",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["path",{d:"M16 3.128a4 4 0 0 1 0 7.744",key:"16gr8j"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}]]);const Mc=c("utensils",[["path",{d:"M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2",key:"cjf0a3"}],["path",{d:"M7 2v20",key:"1473qp"}],["path",{d:"M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7",key:"j28e5"}]]);const vN=c("utility-pole",[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"M2 5h20",key:"1fs1ex"}],["path",{d:"M3 3v2",key:"9imdir"}],["path",{d:"M7 3v2",key:"n0os7"}],["path",{d:"M17 3v2",key:"1l2re6"}],["path",{d:"M21 3v2",key:"1duuac"}],["path",{d:"m19 5-7 7-7-7",key:"133zxf"}]]);const _N=c("van",[["path",{d:"M13 6v5a1 1 0 0 0 1 1h6.102a1 1 0 0 1 .712.298l.898.91a1 1 0 0 1 .288.702V17a1 1 0 0 1-1 1h-3",key:"k3s650"}],["path",{d:"M5 18H3a1 1 0 0 1-1-1V8a2 2 0 0 1 2-2h12c1.1 0 2.1.8 2.4 1.8l1.176 4.2",key:"fnd93u"}],["path",{d:"M9 18h5",key:"lrx6i"}],["circle",{cx:"16",cy:"18",r:"2",key:"1v4tcr"}],["circle",{cx:"7",cy:"18",r:"2",key:"19iecd"}]]);const bN=c("variable",[["path",{d:"M8 21s-4-3-4-9 4-9 4-9",key:"uto9ud"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9",key:"4w2vsq"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15",key:"f7djnv"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15",key:"1shsy8"}]]);const MN=c("vault",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}],["path",{d:"m7.9 7.9 2.7 2.7",key:"hpeyl3"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor",key:"w0ekpg"}],["path",{d:"m13.4 10.6 2.7-2.7",key:"264c1n"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor",key:"nkw3mc"}],["path",{d:"m7.9 16.1 2.7-2.7",key:"p81g5e"}],["circle",{cx:"16.5",cy:"16.5",r:".5",fill:"currentColor",key:"fubopw"}],["path",{d:"m13.4 13.4 2.7 2.7",key:"abhel3"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const wN=c("vector-square",[["path",{d:"M19.5 7a24 24 0 0 1 0 10",key:"8n60xe"}],["path",{d:"M4.5 7a24 24 0 0 0 0 10",key:"2lmadr"}],["path",{d:"M7 19.5a24 24 0 0 0 10 0",key:"1q94o2"}],["path",{d:"M7 4.5a24 24 0 0 1 10 0",key:"2z8ypa"}],["rect",{x:"17",y:"17",width:"5",height:"5",rx:"1",key:"1ac74s"}],["rect",{x:"17",y:"2",width:"5",height:"5",rx:"1",key:"1e7h5j"}],["rect",{x:"2",y:"17",width:"5",height:"5",rx:"1",key:"1t4eah"}],["rect",{x:"2",y:"2",width:"5",height:"5",rx:"1",key:"940dhs"}]]);const xN=c("vegan",[["path",{d:"M16 8q6 0 6-6-6 0-6 6",key:"qsyyc4"}],["path",{d:"M17.41 3.59a10 10 0 1 0 3 3",key:"41m9h7"}],["path",{d:"M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14",key:"qiv7li"}]]);const NN=c("venetian-mask",[["path",{d:"M18 11c-1.5 0-2.5.5-3 2",key:"1fod00"}],["path",{d:"M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z",key:"d70hit"}],["path",{d:"M6 11c1.5 0 2.5.5 3 2",key:"136fht"}]]);const CN=c("venus-and-mars",[["path",{d:"M10 20h4",key:"ni2waw"}],["path",{d:"M12 16v6",key:"c8a4gj"}],["path",{d:"M17 2h4v4",key:"vhe59"}],["path",{d:"m21 2-5.46 5.46",key:"19kypf"}],["circle",{cx:"12",cy:"11",r:"5",key:"16gxyc"}]]);const $N=c("venus",[["path",{d:"M12 15v7",key:"t2xh3l"}],["path",{d:"M9 19h6",key:"456am0"}],["circle",{cx:"12",cy:"9",r:"6",key:"1nw4tq"}]]);const SN=c("vibrate-off",[["path",{d:"m2 8 2 2-2 2 2 2-2 2",key:"sv1b1"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2",key:"101i4y"}],["path",{d:"M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2",key:"1hbad5"}],["path",{d:"M16 10.34V6c0-.55-.45-1-1-1h-4.34",key:"1x5tf0"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const LN=c("vibrate",[["path",{d:"m2 8 2 2-2 2 2 2-2 2",key:"sv1b1"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2",key:"101i4y"}],["rect",{width:"8",height:"14",x:"8",y:"5",rx:"1",key:"1oyrl4"}]]);const IN=c("video-off",[["path",{d:"M10.66 6H14a2 2 0 0 1 2 2v2.5l5.248-3.062A.5.5 0 0 1 22 7.87v8.196",key:"w8jjjt"}],["path",{d:"M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2",key:"1xawa7"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const AN=c("videotape",[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M2 8h20",key:"d11cs7"}],["circle",{cx:"8",cy:"14",r:"2",key:"1k2qr5"}],["path",{d:"M8 12h8",key:"1wcyev"}],["circle",{cx:"16",cy:"14",r:"2",key:"14k7lr"}]]);const PN=c("video",[["path",{d:"m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5",key:"ftymec"}],["rect",{x:"2",y:"6",width:"14",height:"12",rx:"2",key:"158x01"}]]);const TN=c("view",[["path",{d:"M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2",key:"mrq65r"}],["path",{d:"M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2",key:"be3xqs"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0",key:"11ak4c"}]]);const DN=c("voicemail",[["circle",{cx:"6",cy:"12",r:"4",key:"1ehtga"}],["circle",{cx:"18",cy:"12",r:"4",key:"4vafl8"}],["line",{x1:"6",x2:"18",y1:"16",y2:"16",key:"pmt8us"}]]);const EN=c("volleyball",[["path",{d:"M11.1 7.1a16.55 16.55 0 0 1 10.9 4",key:"2880wi"}],["path",{d:"M12 12a12.6 12.6 0 0 1-8.7 5",key:"113sja"}],["path",{d:"M16.8 13.6a16.55 16.55 0 0 1-9 7.5",key:"1qmsgl"}],["path",{d:"M20.7 17a12.8 12.8 0 0 0-8.7-5 13.3 13.3 0 0 1 0-10",key:"1bmeqp"}],["path",{d:"M6.3 3.8a16.55 16.55 0 0 0 1.9 11.5",key:"iekzv9"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const zN=c("volume-1",[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["path",{d:"M16 9a5 5 0 0 1 0 6",key:"1q6k2b"}]]);const ON=c("volume-2",[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["path",{d:"M16 9a5 5 0 0 1 0 6",key:"1q6k2b"}],["path",{d:"M19.364 18.364a9 9 0 0 0 0-12.728",key:"ijwkga"}]]);const qN=c("volume-off",[["path",{d:"M16 9a5 5 0 0 1 .95 2.293",key:"1fgyg8"}],["path",{d:"M19.364 5.636a9 9 0 0 1 1.889 9.96",key:"l3zxae"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"m7 7-.587.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298V11",key:"1gbwow"}],["path",{d:"M9.828 4.172A.686.686 0 0 1 11 4.657v.686",key:"s2je0y"}]]);const jN=c("volume-x",[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["line",{x1:"22",x2:"16",y1:"9",y2:"15",key:"1ewh16"}],["line",{x1:"16",x2:"22",y1:"9",y2:"15",key:"5ykzw1"}]]);const HN=c("volume",[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}]]);const VN=c("vote",[["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}],["path",{d:"M5 7c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v12H5V7Z",key:"1ezoue"}],["path",{d:"M22 19H2",key:"nuriw5"}]]);const FN=c("wallet-cards",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2",key:"4125el"}],["path",{d:"M3 11h3c.8 0 1.6.3 2.1.9l1.1.9c1.6 1.6 4.1 1.6 5.7 0l1.1-.9c.5-.5 1.3-.9 2.1-.9H21",key:"1dpki6"}]]);const wc=c("wallet-minimal",[["path",{d:"M17 14h.01",key:"7oqj8z"}],["path",{d:"M7 7h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14",key:"u1rqew"}]]);const BN=c("wallet",[["path",{d:"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1",key:"18etb6"}],["path",{d:"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4",key:"xoc0q4"}]]);const WN=c("wallpaper",[["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15",key:"1sl52q"}],["circle",{cx:"8",cy:"9",r:"2",key:"gjzl9d"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",key:"x3v2xh"}]]);const xc=c("wand-sparkles",[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72",key:"ul74o6"}],["path",{d:"m14 7 3 3",key:"1r5n42"}],["path",{d:"M5 6v4",key:"ilb8ba"}],["path",{d:"M19 14v4",key:"blhpug"}],["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M7 8H3",key:"zfb6yr"}],["path",{d:"M21 16h-4",key:"1cnmox"}],["path",{d:"M11 3H9",key:"1obp7u"}]]);const UN=c("wand",[["path",{d:"M15 4V2",key:"z1p9b7"}],["path",{d:"M15 16v-2",key:"px0unx"}],["path",{d:"M8 9h2",key:"1g203m"}],["path",{d:"M20 9h2",key:"19tzq7"}],["path",{d:"M17.8 11.8 19 13",key:"yihg8r"}],["path",{d:"M15 9h.01",key:"x1ddxp"}],["path",{d:"M17.8 6.2 19 5",key:"fd4us0"}],["path",{d:"m3 21 9-9",key:"1jfql5"}],["path",{d:"M12.2 6.2 11 5",key:"i3da3b"}]]);const RN=c("warehouse",[["path",{d:"M18 21V10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v11",key:"pb2vm6"}],["path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 1.132-1.803l7.95-3.974a2 2 0 0 1 1.837 0l7.948 3.974A2 2 0 0 1 22 8z",key:"doq5xv"}],["path",{d:"M6 13h12",key:"yf64js"}],["path",{d:"M6 17h12",key:"1jwigz"}]]);const GN=c("washing-machine",[["path",{d:"M3 6h3",key:"155dbl"}],["path",{d:"M17 6h.01",key:"e2y6kg"}],["rect",{width:"18",height:"20",x:"3",y:"2",rx:"2",key:"od3kk9"}],["circle",{cx:"12",cy:"13",r:"5",key:"nlbqau"}],["path",{d:"M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5",key:"17lach"}]]);const KN=c("waves-arrow-down",[["path",{d:"M12 10L12 2",key:"jvb0aw"}],["path",{d:"M16 6L12 10L8 6",key:"9j6vje"}],["path",{d:"M2 15C2.6 15.5 3.2 16 4.5 16C7 16 7 14 9.5 14C12.1 14 11.9 16 14.5 16C17 16 17 14 19.5 14C20.8 14 21.4 14.5 22 15",key:"s2zepw"}],["path",{d:"M2 21C2.6 21.5 3.2 22 4.5 22C7 22 7 20 9.5 20C12.1 20 11.9 22 14.5 22C17 22 17 20 19.5 20C20.8 20 21.4 20.5 22 21",key:"u68omc"}]]);const YN=c("watch",[["path",{d:"M12 10v2.2l1.6 1",key:"n3r21l"}],["path",{d:"m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05",key:"18k57s"}],["path",{d:"m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05",key:"16ny36"}],["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}]]);const XN=c("waves-arrow-up",[["path",{d:"M12 2v8",key:"1q4o3n"}],["path",{d:"M2 15c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"1p9f19"}],["path",{d:"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"vbxynw"}],["path",{d:"m8 6 4-4 4 4",key:"ybng9g"}]]);const ZN=c("waves-ladder",[["path",{d:"M19 5a2 2 0 0 0-2 2v11",key:"s41o68"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"rd2r6e"}],["path",{d:"M7 13h10",key:"1rwob1"}],["path",{d:"M7 9h10",key:"12czzb"}],["path",{d:"M9 5a2 2 0 0 0-2 2v11",key:"x0q4gh"}]]);const QN=c("waves",[["path",{d:"M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"knzxuh"}],["path",{d:"M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"2jd2cc"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"rd2r6e"}]]);const JN=c("waypoints",[["path",{d:"m10.586 5.414-5.172 5.172",key:"4mc350"}],["path",{d:"m18.586 13.414-5.172 5.172",key:"8c96vv"}],["path",{d:"M6 12h12",key:"8npq4p"}],["circle",{cx:"12",cy:"20",r:"2",key:"144qzu"}],["circle",{cx:"12",cy:"4",r:"2",key:"muu5ef"}],["circle",{cx:"20",cy:"12",r:"2",key:"1xzzfp"}],["circle",{cx:"4",cy:"12",r:"2",key:"1hvhnz"}]]);const eC=c("webcam",[["circle",{cx:"12",cy:"10",r:"8",key:"1gshiw"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M7 22h10",key:"10w4w3"}],["path",{d:"M12 22v-4",key:"1utk9m"}]]);const tC=c("webhook-off",[["path",{d:"M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15",key:"1tvl6x"}],["path",{d:"M9 3.4a4 4 0 0 1 6.52.66",key:"q04jfq"}],["path",{d:"m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05",key:"azowf0"}],["path",{d:"M20.3 20.3a4 4 0 0 1-2.3.7",key:"5joiws"}],["path",{d:"M18.6 13a4 4 0 0 1 3.357 3.414",key:"cangb8"}],["path",{d:"m12 6 .6 1",key:"tpjl1n"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const oC=c("webhook",[["path",{d:"M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2",key:"q3hayz"}],["path",{d:"m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06",key:"1go1hn"}],["path",{d:"m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8",key:"qlwsc0"}]]);const nC=c("weight-tilde",[["path",{d:"M6.5 8a2 2 0 0 0-1.906 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8z",key:"1wl739"}],["path",{d:"M7.999 15a2.5 2.5 0 0 1 4 0 2.5 2.5 0 0 0 4 0",key:"1egezo"}],["circle",{cx:"12",cy:"5",r:"3",key:"rqqgnr"}]]);const aC=c("weight",[["circle",{cx:"12",cy:"5",r:"3",key:"rqqgnr"}],["path",{d:"M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z",key:"56o5sh"}]]);const rC=c("wheat-off",[["path",{d:"m2 22 10-10",key:"28ilpk"}],["path",{d:"m16 8-1.17 1.17",key:"1qqm82"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"1rdhi6"}],["path",{d:"m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97",key:"4wz8re"}],["path",{d:"M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62",key:"rves66"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z",key:"19rau1"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"tc8ph9"}],["path",{d:"m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98",key:"ak46r"}],["path",{d:"M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28",key:"1tw520"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const iC=c("wheat",[["path",{d:"M2 22 16 8",key:"60hf96"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"1rdhi6"}],["path",{d:"M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"1sdzmb"}],["path",{d:"M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"eoatbi"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z",key:"19rau1"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"tc8ph9"}],["path",{d:"M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"2m8kc5"}],["path",{d:"M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"vex3ng"}]]);const cC=c("whole-word",[["circle",{cx:"7",cy:"12",r:"3",key:"12clwm"}],["path",{d:"M10 9v6",key:"17i7lo"}],["circle",{cx:"17",cy:"12",r:"3",key:"gl7c2s"}],["path",{d:"M14 7v8",key:"dl84cr"}],["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1",key:"lt2kga"}]]);const sC=c("wifi-cog",[["path",{d:"m14.305 19.53.923-.382",key:"3m78fa"}],["path",{d:"m15.228 16.852-.923-.383",key:"npixar"}],["path",{d:"m16.852 15.228-.383-.923",key:"5xggr7"}],["path",{d:"m16.852 20.772-.383.924",key:"dpfhf9"}],["path",{d:"m19.148 15.228.383-.923",key:"1reyyz"}],["path",{d:"m19.53 21.696-.382-.924",key:"1goivc"}],["path",{d:"M2 7.82a15 15 0 0 1 20 0",key:"1ovjuk"}],["path",{d:"m20.772 16.852.924-.383",key:"htqkph"}],["path",{d:"m20.772 19.148.924.383",key:"9w9pjp"}],["path",{d:"M5 11.858a10 10 0 0 1 11.5-1.785",key:"3sn16i"}],["path",{d:"M8.5 15.429a5 5 0 0 1 2.413-1.31",key:"1pxovh"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]]);const dC=c("wifi-high",[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0",key:"1x1e6c"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]]);const lC=c("wifi-low",[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]]);const uC=c("wifi-off",[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}],["path",{d:"M5 12.859a10 10 0 0 1 5.17-2.69",key:"1dl1wf"}],["path",{d:"M19 12.859a10 10 0 0 0-2.007-1.523",key:"4k23kn"}],["path",{d:"M2 8.82a15 15 0 0 1 4.177-2.643",key:"1grhjp"}],["path",{d:"M22 8.82a15 15 0 0 0-11.288-3.764",key:"z3jwby"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const hC=c("wifi-pen",[["path",{d:"M2 8.82a15 15 0 0 1 20 0",key:"dnpr2z"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1817ys"}],["path",{d:"M5 12.859a10 10 0 0 1 10.5-2.222",key:"rpb7oy"}],["path",{d:"M8.5 16.429a5 5 0 0 1 3-1.406",key:"r8bmzl"}]]);const pC=c("wifi-sync",[["path",{d:"M11.965 10.105v4L13.5 12.5a5 5 0 0 1 8 1.5",key:"1immaq"}],["path",{d:"M11.965 14.105h4",key:"uejny8"}],["path",{d:"M17.965 18.105h4L20.43 19.71a5 5 0 0 1-8-1.5",key:"1i3a7e"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0",key:"dnpr2z"}],["path",{d:"M21.965 22.105v-4",key:"1ku6vx"}],["path",{d:"M5 12.86a10 10 0 0 1 3-2.032",key:"pemdtu"}],["path",{d:"M8.5 16.429h.01",key:"2bm739"}]]);const yC=c("wifi-zero",[["path",{d:"M12 20h.01",key:"zekei9"}]]);const fC=c("wifi",[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0",key:"dnpr2z"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0",key:"1x1e6c"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]]);const mC=c("wind-arrow-down",[["path",{d:"M10 2v8",key:"d4bbey"}],["path",{d:"M12.8 21.6A2 2 0 1 0 14 18H2",key:"19kp1d"}],["path",{d:"M17.5 10a2.5 2.5 0 1 1 2 4H2",key:"19kpjc"}],["path",{d:"m6 6 4 4 4-4",key:"k13n16"}]]);const kC=c("wind",[["path",{d:"M12.8 19.6A2 2 0 1 0 14 16H2",key:"148xed"}],["path",{d:"M17.5 8a2.5 2.5 0 1 1 2 4H2",key:"1u4tom"}],["path",{d:"M9.8 4.4A2 2 0 1 1 11 8H2",key:"75valh"}]]);const gC=c("wine-off",[["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M7 10h3m7 0h-1.343",key:"v48bem"}],["path",{d:"M12 15v7",key:"t2xh3l"}],["path",{d:"M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198",key:"1ymjlu"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const vC=c("wine",[["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M7 10h10",key:"1101jm"}],["path",{d:"M12 15v7",key:"t2xh3l"}],["path",{d:"M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z",key:"10ffi3"}]]);const _C=c("workflow",[["rect",{width:"8",height:"8",x:"3",y:"3",rx:"2",key:"by2w9f"}],["path",{d:"M7 11v4a2 2 0 0 0 2 2h4",key:"xkn7yn"}],["rect",{width:"8",height:"8",x:"13",y:"13",rx:"2",key:"1cgmvn"}]]);const bC=c("worm",[["path",{d:"m19 12-1.5 3",key:"9bcu4o"}],["path",{d:"M19.63 18.81 22 20",key:"121v98"}],["path",{d:"M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z",key:"1tij6q"}]]);const MC=c("wrench",[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z",key:"1ngwbx"}]]);const on=c("x",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);const wC=c("zap-off",[["path",{d:"M10.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317",key:"193nxd"}],["path",{d:"M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773",key:"27a7lr"}],["path",{d:"M16.273 16.273 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643",key:"1e0qe9"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const xC=c("youtube",[["path",{d:"M2.5 17a24.12 24.12 0 0 1 0-10 2 2 0 0 1 1.4-1.4 49.56 49.56 0 0 1 16.2 0A2 2 0 0 1 21.5 7a24.12 24.12 0 0 1 0 10 2 2 0 0 1-1.4 1.4 49.55 49.55 0 0 1-16.2 0A2 2 0 0 1 2.5 17",key:"1q2vi4"}],["path",{d:"m10 15 5-3-5-3z",key:"1jp15x"}]]);const NC=c("zap",[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",key:"1xq2db"}]]);const CC=c("zoom-in",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"11",x2:"11",y1:"8",y2:"14",key:"1vmskp"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]]);const $C=c("zoom-out",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]]);const jS=Object.freeze(Object.defineProperty({__proto__:null,AArrowDown:x1,AArrowUp:N1,ALargeSmall:C1,Accessibility:$1,Activity:S1,AirVent:L1,Airplay:I1,AlarmClock:P1,AlarmClockCheck:Mn,AlarmClockMinus:wn,AlarmClockOff:A1,AlarmClockPlus:xn,AlarmSmoke:T1,Album:D1,AlignCenterHorizontal:E1,AlignCenterVertical:z1,AlignEndHorizontal:O1,AlignEndVertical:q1,AlignHorizontalDistributeCenter:j1,AlignHorizontalDistributeEnd:H1,AlignHorizontalDistributeStart:V1,AlignHorizontalJustifyCenter:F1,AlignHorizontalJustifyEnd:B1,AlignHorizontalJustifyStart:W1,AlignHorizontalSpaceAround:U1,AlignHorizontalSpaceBetween:R1,AlignStartHorizontal:G1,AlignStartVertical:K1,AlignVerticalDistributeCenter:Y1,AlignVerticalDistributeEnd:X1,AlignVerticalDistributeStart:Z1,AlignVerticalJustifyCenter:J1,AlignVerticalJustifyEnd:Q1,AlignVerticalJustifyStart:el,AlignVerticalSpaceAround:tl,AlignVerticalSpaceBetween:ol,Ambulance:nl,Ampersand:al,Ampersands:rl,Amphora:il,Anchor:sl,Angry:cl,Annoyed:dl,Antenna:ll,Anvil:ul,Aperture:hl,AppWindow:yl,AppWindowMac:pl,Apple:fl,Archive:gl,ArchiveRestore:ml,ArchiveX:kl,Armchair:vl,ArrowBigDown:bl,ArrowBigDownDash:_l,ArrowBigLeft:wl,ArrowBigLeftDash:Ml,ArrowBigRight:Nl,ArrowBigRightDash:xl,ArrowBigUp:$l,ArrowBigUpDash:Cl,ArrowDown:Ol,ArrowDown01:Sl,ArrowDown10:Ll,ArrowDownAZ:Nn,ArrowDownFromLine:Il,ArrowDownLeft:Al,ArrowDownNarrowWide:Pl,ArrowDownRight:Tl,ArrowDownToDot:Dl,ArrowDownToLine:El,ArrowDownUp:zl,ArrowDownWideNarrow:Cn,ArrowDownZA:$n,ArrowLeft:Zc,ArrowLeftFromLine:ql,ArrowLeftRight:jl,ArrowLeftToLine:Hl,ArrowRight:Vs,ArrowRightFromLine:Vl,ArrowRightLeft:Fl,ArrowRightToLine:Bl,ArrowUp:Jl,ArrowUp01:Wl,ArrowUp10:Ul,ArrowUpAZ:Sn,ArrowUpDown:Rl,ArrowUpFromDot:Gl,ArrowUpFromLine:Kl,ArrowUpLeft:Yl,ArrowUpNarrowWide:Ln,ArrowUpRight:Xl,ArrowUpToLine:Zl,ArrowUpWideNarrow:Ql,ArrowUpZA:In,ArrowsUpFromLine:e2,Asterisk:t2,AtSign:o2,Atom:n2,AudioLines:a2,AudioWaveform:r2,Award:i2,Axe:c2,Axis3d:An,Baby:d2,Backpack:s2,Badge:C2,BadgeAlert:l2,BadgeCent:u2,BadgeCheck:Pn,BadgeDollarSign:h2,BadgeEuro:p2,BadgeIndianRupee:y2,BadgeInfo:f2,BadgeJapaneseYen:m2,BadgeMinus:k2,BadgePercent:g2,BadgePlus:v2,BadgePoundSterling:_2,BadgeQuestionMark:Tn,BadgeRussianRuble:b2,BadgeSwissFranc:M2,BadgeTurkishLira:w2,BadgeX:x2,BaggageClaim:N2,Balloon:$2,Ban:S2,Banana:L2,Bandage:A2,Banknote:E2,BanknoteArrowDown:I2,BanknoteArrowUp:P2,BanknoteX:T2,Barcode:D2,Barrel:z2,Baseline:O2,Bath:q2,Battery:R2,BatteryCharging:j2,BatteryFull:H2,BatteryLow:V2,BatteryMedium:F2,BatteryPlus:B2,BatteryWarning:W2,Beaker:U2,Bean:K2,BeanOff:G2,Bed:Z2,BedDouble:Y2,BedSingle:X2,Beef:Q2,Beer:t0,BeerOff:J2,Bell:c0,BellDot:e0,BellElectric:o0,BellMinus:n0,BellOff:a0,BellPlus:r0,BellRing:i0,BetweenHorizontalEnd:Dn,BetweenHorizontalStart:En,BetweenVerticalEnd:s0,BetweenVerticalStart:d0,BicepsFlexed:l0,Bike:u0,Binary:h0,Binoculars:p0,Biohazard:y0,Bird:f0,Birdhouse:m0,Bitcoin:k0,Blend:g0,Blinds:v0,Blocks:_0,Bluetooth:N0,BluetoothConnected:b0,BluetoothOff:M0,BluetoothSearching:w0,Bold:x0,Bolt:C0,Bomb:S0,Bone:$0,Book:J0,BookA:L0,BookAlert:I0,BookAudio:A0,BookCheck:P0,BookCopy:T0,BookDashed:zn,BookDown:D0,BookHeadphones:E0,BookHeart:z0,BookImage:O0,BookKey:q0,BookLock:j0,BookMarked:V0,BookMinus:H0,BookOpen:B0,BookOpenCheck:F0,BookOpenText:W0,BookPlus:U0,BookSearch:R0,BookText:G0,BookType:K0,BookUp:X0,BookUp2:Y0,BookUser:Z0,BookX:Q0,Bookmark:au,BookmarkCheck:eu,BookmarkMinus:tu,BookmarkPlus:ou,BookmarkX:nu,BoomBox:ru,Bot:su,BotMessageSquare:iu,BotOff:cu,BottleWine:lu,BowArrow:du,Box:uu,Boxes:hu,Braces:On,Brackets:pu,Brain:mu,BrainCircuit:yu,BrainCog:fu,BrickWall:vu,BrickWallFire:ku,BrickWallShield:gu,Briefcase:wu,BriefcaseBusiness:_u,BriefcaseConveyorBelt:bu,BriefcaseMedical:Mu,BringToFront:xu,Brush:Nu,BrushCleaning:Cu,Bubbles:$u,Bug:Iu,BugOff:Su,BugPlay:Lu,Building:Pu,Building2:Au,Bus:Du,BusFront:Tu,Cable:zu,CableCar:Eu,Cake:qu,CakeSlice:Ou,Calculator:ju,Calendar:Fs,Calendar1:Hu,CalendarArrowDown:Vu,CalendarArrowUp:Fu,CalendarCheck:Uu,CalendarCheck2:Bu,CalendarClock:Wu,CalendarCog:Ru,CalendarDays:Gu,CalendarFold:Ku,CalendarHeart:Yu,CalendarMinus:Zu,CalendarMinus2:Xu,CalendarOff:Qu,CalendarPlus:eh,CalendarPlus2:Ju,CalendarRange:th,CalendarSearch:oh,CalendarSync:ah,CalendarX:rh,CalendarX2:nh,Calendars:ih,Camera:sh,CameraOff:ch,Candy:uh,CandyCane:lh,CandyOff:dh,Cannabis:ph,CannabisOff:hh,Captions:qn,CaptionsOff:yh,Car:mh,CarFront:fh,CarTaxiFront:kh,Caravan:vh,CardSim:gh,Carrot:_h,CaseLower:bh,CaseSensitive:Mh,CaseUpper:wh,CassetteTape:xh,Cast:Nh,Castle:Ch,Cat:$h,Cctv:Sh,ChartArea:jn,ChartBar:Vn,ChartBarBig:Hn,ChartBarDecreasing:Lh,ChartBarIncreasing:Ih,ChartBarStacked:Ah,ChartCandlestick:Fn,ChartColumn:Un,ChartColumnBig:Bn,ChartColumnDecreasing:Ph,ChartColumnIncreasing:Wn,ChartColumnStacked:Th,ChartGantt:Dh,ChartLine:Rn,ChartNetwork:Eh,ChartNoAxesColumn:Kn,ChartNoAxesColumnDecreasing:zh,ChartNoAxesColumnIncreasing:Gn,ChartNoAxesCombined:Oh,ChartNoAxesGantt:Yn,ChartPie:Xn,ChartScatter:Zn,ChartSpline:qh,Check:po,CheckCheck:jh,CheckLine:Hh,ChefHat:Vh,Cherry:Fh,ChessBishop:Bh,ChessKing:Wh,ChessKnight:Uh,ChessPawn:Rh,ChessQueen:Gh,ChessRook:Kh,ChevronDown:Ht,ChevronFirst:Yh,ChevronLast:Xh,ChevronLeft:Qn,ChevronRight:Pt,ChevronUp:Qc,ChevronsDown:Qh,ChevronsDownUp:Zh,ChevronsLeft:Bs,ChevronsLeftRight:ep,ChevronsLeftRightEllipsis:Jh,ChevronsRight:Ws,ChevronsRightLeft:tp,ChevronsUp:op,ChevronsUpDown:Jc,Chromium:Jn,Church:np,Cigarette:rp,CigaretteOff:ap,Circle:Qo,CircleAlert:Zo,CircleArrowDown:ea,CircleArrowLeft:ta,CircleArrowOutDownLeft:oa,CircleArrowOutDownRight:na,CircleArrowOutUpLeft:aa,CircleArrowOutUpRight:ra,CircleArrowRight:ia,CircleArrowUp:ca,CircleCheck:jo,CircleCheckBig:sa,CircleChevronDown:da,CircleChevronLeft:la,CircleChevronRight:ua,CircleChevronUp:ha,CircleDashed:ip,CircleDivide:pa,CircleDollarSign:cp,CircleDot:dp,CircleDotDashed:sp,CircleEllipsis:lp,CircleEqual:up,CircleFadingArrowUp:hp,CircleFadingPlus:pp,CircleGauge:ya,CircleMinus:fa,CircleOff:yp,CircleParking:ka,CircleParkingOff:ma,CirclePause:ga,CirclePercent:va,CirclePile:fp,CirclePlay:ba,CirclePlus:_a,CirclePoundSterling:mp,CirclePower:Ma,CircleQuestionMark:yo,CircleSlash:kp,CircleSlash2:wa,CircleSmall:vp,CircleStar:gp,CircleStop:xa,CircleUser:Ca,CircleUserRound:Na,CircleX:$a,CircuitBoard:_p,Citrus:bp,Clapperboard:Mp,Clipboard:Pp,ClipboardCheck:wp,ClipboardClock:xp,ClipboardCopy:Np,ClipboardList:Cp,ClipboardMinus:$p,ClipboardPaste:Sp,ClipboardPen:La,ClipboardPenLine:Sa,ClipboardPlus:Lp,ClipboardType:Ip,ClipboardX:Ap,Clock:Zp,Clock1:Tp,Clock10:Dp,Clock11:Ep,Clock12:zp,Clock2:Op,Clock3:qp,Clock4:jp,Clock5:Hp,Clock6:Vp,Clock7:Fp,Clock8:Bp,Clock9:Wp,ClockAlert:Up,ClockArrowDown:Rp,ClockArrowUp:Gp,ClockCheck:Kp,ClockFading:Yp,ClockPlus:Xp,ClosedCaption:Qp,Cloud:my,CloudAlert:Jp,CloudBackup:ey,CloudCheck:ty,CloudCog:oy,CloudDownload:Ia,CloudDrizzle:ny,CloudFog:ay,CloudHail:ry,CloudLightning:iy,CloudMoon:sy,CloudMoonRain:cy,CloudOff:dy,CloudRain:uy,CloudRainWind:ly,CloudSnow:hy,CloudSun:yy,CloudSunRain:py,CloudSync:fy,CloudUpload:Aa,Cloudy:gy,Clover:ky,Club:vy,Code:_y,CodeXml:Pa,Codepen:by,Codesandbox:My,Coffee:wy,Cog:xy,Coins:Ny,Columns2:Ta,Columns3:Da,Columns3Cog:fo,Columns4:Cy,Combine:$y,Command:Sy,Compass:Ly,Component:Iy,Computer:Ay,ConciergeBell:Py,Cone:Ty,Construction:Dy,Contact:Ey,ContactRound:Ea,Container:zy,Contrast:Oy,Cookie:qy,CookingPot:jy,Copy:Ry,CopyCheck:Hy,CopyMinus:Vy,CopyPlus:Fy,CopySlash:By,CopyX:Wy,Copyleft:Uy,Copyright:Gy,CornerDownLeft:Ky,CornerDownRight:Yy,CornerLeftDown:Xy,CornerLeftUp:Zy,CornerRightDown:Qy,CornerRightUp:Jy,CornerUpLeft:ef,CornerUpRight:tf,Cpu:of,CreativeCommons:nf,CreditCard:af,Croissant:rf,Crop:cf,Cross:sf,Crosshair:lf,Crown:df,Cuboid:uf,CupSoda:hf,Currency:pf,Cylinder:yf,Dam:ff,Database:gf,DatabaseBackup:mf,DatabaseZap:kf,DecimalsArrowLeft:vf,DecimalsArrowRight:_f,Delete:bf,Dessert:Mf,Diameter:wf,Diamond:Cf,DiamondMinus:xf,DiamondPercent:za,DiamondPlus:Nf,Dice1:$f,Dice2:Sf,Dice3:Lf,Dice4:If,Dice5:Af,Dice6:Pf,Dices:Tf,Diff:Df,Disc:qf,Disc2:Ef,Disc3:zf,DiscAlbum:Of,Divide:jf,Dna:Vf,DnaOff:Hf,Dock:Ff,Dog:Bf,DollarSign:Wf,Donut:Uf,DoorClosed:Gf,DoorClosedLocked:Rf,DoorOpen:Kf,Dot:Us,Download:Rs,DraftingCompass:Yf,Drama:Xf,Dribbble:Qf,Drill:Zf,Drone:Jf,Droplet:tm,DropletOff:em,Droplets:om,Drum:nm,Drumstick:am,Dumbbell:rm,Ear:im,EarOff:cm,Earth:Oa,EarthLock:sm,Eclipse:dm,Egg:hm,EggFried:lm,EggOff:um,Ellipsis:Ho,EllipsisVertical:qa,Equal:fm,EqualApproximately:pm,EqualNot:ym,Eraser:mm,EthernetPort:km,Euro:gm,EvCharger:vm,Expand:_m,ExternalLink:bm,Eye:xm,EyeClosed:Mm,EyeOff:wm,Facebook:Nm,Factory:Cm,Fan:$m,FastForward:Sm,Feather:Lm,Fence:Im,FerrisWheel:Am,Figma:Pm,File:Gs,FileArchive:Tm,FileAxis3d:ja,FileBadge:Ha,FileBox:Dm,FileBraces:Fa,FileBracesCorner:Va,FileChartColumn:Ba,FileChartColumnIncreasing:Wa,FileChartLine:Ua,FileChartPie:Ra,FileCheck:Em,FileCheckCorner:Ga,FileClock:zm,FileCode:Om,FileCodeCorner:Ka,FileCog:Ya,FileDiff:Hm,FileDigit:qm,FileDown:jm,FileExclamationPoint:Xa,FileHeadphone:mo,FileHeart:Vm,FileImage:Fm,FileInput:Bm,FileKey:Za,FileLock:Qa,FileMinus:Wm,FileMinusCorner:Ja,FileMusic:Um,FileOutput:Rm,FilePen:tr,FilePenLine:er,FilePlay:or,FilePlus:Gm,FilePlusCorner:nr,FileQuestionMark:ar,FileScan:Km,FileSearch:Ym,FileSearchCorner:rr,FileSignal:ir,FileSliders:Xm,FileSpreadsheet:Zm,FileStack:Qm,FileSymlink:Jm,FileTerminal:ek,FileText:tk,FileType:ok,FileTypeCorner:cr,FileUp:nk,FileUser:ak,FileVideoCamera:sr,FileVolume:rk,FileX:ik,FileXCorner:dr,Files:ck,Film:sk,FingerprintPattern:lr,FireExtinguisher:dk,Fish:hk,FishOff:lk,FishSymbol:uk,FishingHook:pk,Flag:kk,FlagOff:yk,FlagTriangleLeft:fk,FlagTriangleRight:mk,Flame:vk,FlameKindling:gk,Flashlight:bk,FlashlightOff:_k,FlaskConical:wk,FlaskConicalOff:Mk,FlaskRound:xk,FlipHorizontal:Ck,FlipHorizontal2:Nk,FlipVertical:Sk,FlipVertical2:$k,Flower:Ik,Flower2:Lk,Focus:Ak,FoldHorizontal:Tk,FoldVertical:Pk,Folder:Ys,FolderArchive:Dk,FolderCheck:Ek,FolderClock:zk,FolderClosed:Ok,FolderCode:qk,FolderCog:ur,FolderDot:jk,FolderDown:Hk,FolderGit:Fk,FolderGit2:Vk,FolderHeart:Bk,FolderInput:Wk,FolderKanban:Rk,FolderKey:Uk,FolderLock:Gk,FolderMinus:Kk,FolderOpen:Ks,FolderOpenDot:Yk,FolderOutput:Xk,FolderPen:hr,FolderPlus:Zk,FolderRoot:Qk,FolderSearch:eg,FolderSearch2:Jk,FolderSymlink:tg,FolderSync:og,FolderTree:ng,FolderUp:ag,FolderX:ig,Folders:rg,Footprints:cg,Forklift:sg,Form:dg,Forward:lg,Frame:ug,Framer:hg,Frown:pg,Fuel:yg,Fullscreen:fg,Funnel:yr,FunnelPlus:mg,FunnelX:pr,GalleryHorizontal:gg,GalleryHorizontalEnd:kg,GalleryThumbnails:vg,GalleryVertical:bg,GalleryVerticalEnd:_g,Gamepad:xg,Gamepad2:Mg,GamepadDirectional:wg,Gauge:Ng,Gavel:$g,Gem:Cg,GeorgianLari:Lg,Ghost:Sg,Gift:Ig,GitBranch:Tg,GitBranchMinus:Ag,GitBranchPlus:Pg,GitCommitHorizontal:fr,GitCommitVertical:Dg,GitCompare:zg,GitCompareArrows:Eg,GitFork:Og,GitGraph:qg,GitMerge:jg,GitPullRequest:Ug,GitPullRequestArrow:Hg,GitPullRequestClosed:Vg,GitPullRequestCreate:Bg,GitPullRequestCreateArrow:Fg,GitPullRequestDraft:Wg,Github:Rg,Gitlab:Gg,GlassWater:Kg,Glasses:Yg,Globe:Qg,GlobeLock:Xg,GlobeX:Zg,Goal:e4,Gpu:Jg,GraduationCap:t4,Grape:o4,Grid2x2:vr,Grid2x2Check:mr,Grid2x2Plus:kr,Grid2x2X:gr,Grid3x2:n4,Grid3x3:ko,Grip:r4,GripHorizontal:a4,GripVertical:es,Group:i4,Guitar:c4,Ham:s4,Hamburger:d4,Hammer:l4,Hand:m4,HandCoins:u4,HandFist:h4,HandGrab:_r,HandHeart:p4,HandHelping:br,HandMetal:y4,HandPlatter:f4,Handbag:k4,Handshake:g4,HardDrive:M4,HardDriveDownload:v4,HardDriveUpload:_4,HardHat:b4,Hash:w4,HatGlasses:x4,Haze:N4,Hd:C4,HdmiPort:$4,Heading:D4,Heading1:S4,Heading2:L4,Heading3:I4,Heading4:A4,Heading5:P4,Heading6:T4,HeadphoneOff:E4,Headphones:z4,Headset:O4,Heart:W4,HeartCrack:q4,HeartHandshake:j4,HeartMinus:H4,HeartOff:V4,HeartPlus:F4,HeartPulse:B4,Heater:U4,Helicopter:R4,Hexagon:G4,Highlighter:K4,History:Y4,Hop:Z4,HopOff:X4,Hospital:Q4,Hotel:J4,Hourglass:e5,House:Mr,HouseHeart:t5,HousePlug:o5,HousePlus:n5,HouseWifi:a5,IceCreamBowl:wr,IceCreamCone:xr,IdCard:i5,IdCardLanyard:r5,Image:y5,ImageDown:c5,ImageMinus:s5,ImageOff:d5,ImagePlay:l5,ImagePlus:u5,ImageUp:h5,ImageUpscale:p5,Images:f5,Import:m5,Inbox:Xs,IndianRupee:k5,Infinity:g5,Info:Zs,InspectionPanel:v5,Instagram:_5,Italic:b5,IterationCcw:M5,IterationCw:w5,JapaneseYen:x5,Joystick:N5,Kanban:C5,Kayak:$5,Key:I5,KeyRound:S5,KeySquare:L5,Keyboard:T5,KeyboardMusic:A5,KeyboardOff:P5,Lamp:j5,LampCeiling:D5,LampDesk:E5,LampFloor:z5,LampWallDown:O5,LampWallUp:q5,LandPlot:H5,Landmark:V5,Languages:F5,Laptop:W5,LaptopMinimal:Nr,LaptopMinimalCheck:B5,Lasso:R5,LassoSelect:U5,Laugh:G5,Layers:Cr,Layers2:K5,LayersPlus:Y5,LayoutDashboard:X5,LayoutGrid:Z5,LayoutList:Q5,LayoutPanelLeft:J5,LayoutPanelTop:ev,LayoutTemplate:tv,Leaf:ov,LeafyGreen:nv,Lectern:av,Library:iv,LibraryBig:rv,LifeBuoy:cv,Ligature:sv,Lightbulb:lv,LightbulbOff:dv,LineSquiggle:uv,Link:yv,Link2:pv,Link2Off:hv,Linkedin:fv,List:Dv,ListCheck:mv,ListChecks:kv,ListChevronsDownUp:gv,ListChevronsUpDown:vv,ListCollapse:_v,ListEnd:bv,ListFilter:wv,ListFilterPlus:Mv,ListIndentDecrease:go,ListIndentIncrease:vo,ListMinus:xv,ListMusic:Nv,ListOrdered:Cv,ListPlus:$v,ListRestart:Sv,ListStart:Lv,ListTodo:Iv,ListTree:Av,ListVideo:Pv,ListX:Tv,Loader:zv,LoaderCircle:Vt,LoaderPinwheel:Ev,Locate:jv,LocateFixed:Ov,LocateOff:qv,Lock:Vv,LockKeyhole:Hv,LockKeyholeOpen:$r,LockOpen:Sr,LogIn:Fv,LogOut:Bv,Logs:Wv,Lollipop:Uv,Luggage:Rv,Magnet:Gv,Mail:e3,MailCheck:Kv,MailMinus:Yv,MailOpen:Xv,MailPlus:Zv,MailQuestionMark:Lr,MailSearch:Qv,MailWarning:Jv,MailX:t3,Mailbox:o3,Mails:n3,Map:g3,MapMinus:a3,MapPin:f3,MapPinCheck:i3,MapPinCheckInside:r3,MapPinHouse:c3,MapPinMinus:d3,MapPinMinusInside:s3,MapPinOff:l3,MapPinPen:Ir,MapPinPlus:h3,MapPinPlusInside:u3,MapPinX:y3,MapPinXInside:p3,MapPinned:m3,MapPlus:k3,Mars:_3,MarsStroke:v3,Martini:b3,Maximize:w3,Maximize2:M3,Medal:x3,Megaphone:C3,MegaphoneOff:N3,Meh:$3,MemoryStick:S3,Menu:L3,Merge:I3,MessageCircle:H3,MessageCircleCode:A3,MessageCircleDashed:P3,MessageCircleHeart:T3,MessageCircleMore:D3,MessageCircleOff:E3,MessageCirclePlus:z3,MessageCircleQuestionMark:Ar,MessageCircleReply:O3,MessageCircleWarning:q3,MessageCircleX:j3,MessageSquare:o_,MessageSquareCode:V3,MessageSquareDashed:F3,MessageSquareDiff:B3,MessageSquareDot:W3,MessageSquareHeart:U3,MessageSquareLock:R3,MessageSquareMore:K3,MessageSquareOff:G3,MessageSquarePlus:Y3,MessageSquareQuote:X3,MessageSquareReply:Z3,MessageSquareShare:J3,MessageSquareText:Q3,MessageSquareWarning:e_,MessageSquareX:t_,MessagesSquare:n_,Mic:r_,MicOff:a_,MicVocal:Pr,Microchip:i_,Microscope:c_,Microwave:s_,Milestone:d_,Milk:u_,MilkOff:l_,Minimize:p_,Minimize2:h_,Minus:Qs,Monitor:S_,MonitorCheck:y_,MonitorCloud:f_,MonitorCog:m_,MonitorDot:k_,MonitorDown:g_,MonitorOff:v_,MonitorPause:__,MonitorPlay:b_,MonitorSmartphone:M_,MonitorSpeaker:w_,MonitorStop:x_,MonitorUp:C_,MonitorX:N_,Moon:L_,MoonStar:$_,Motorbike:I_,Mountain:P_,MountainSnow:A_,Mouse:j_,MouseOff:T_,MousePointer:q_,MousePointer2:E_,MousePointer2Off:D_,MousePointerBan:z_,MousePointerClick:O_,Move:Z_,Move3d:Tr,MoveDiagonal:V_,MoveDiagonal2:H_,MoveDown:W_,MoveDownLeft:F_,MoveDownRight:B_,MoveHorizontal:U_,MoveLeft:R_,MoveRight:G_,MoveUp:Y_,MoveUpLeft:K_,MoveUpRight:X_,MoveVertical:Q_,Music:o8,Music2:J_,Music3:e8,Music4:t8,Navigation:i8,Navigation2:a8,Navigation2Off:n8,NavigationOff:r8,Network:c8,Newspaper:s8,Nfc:d8,NonBinary:l8,Notebook:y8,NotebookPen:u8,NotebookTabs:h8,NotebookText:p8,NotepadText:m8,NotepadTextDashed:f8,Nut:g8,NutOff:k8,Octagon:_8,OctagonAlert:Dr,OctagonMinus:v8,OctagonPause:Er,OctagonX:Jo,Omega:b8,Option:M8,Orbit:w8,Origami:x8,Package:P8,Package2:N8,PackageCheck:C8,PackageMinus:$8,PackageOpen:S8,PackagePlus:L8,PackageSearch:I8,PackageX:A8,PaintBucket:T8,PaintRoller:D8,Paintbrush:E8,PaintbrushVertical:zr,Palette:z8,Panda:O8,PanelBottom:H8,PanelBottomClose:q8,PanelBottomDashed:Or,PanelBottomOpen:j8,PanelLeft:en,PanelLeftClose:qr,PanelLeftDashed:jr,PanelLeftOpen:Hr,PanelLeftRightDashed:V8,PanelRight:W8,PanelRightClose:F8,PanelRightDashed:Vr,PanelRightOpen:B8,PanelTop:K8,PanelTopBottomDashed:U8,PanelTopClose:R8,PanelTopDashed:Fr,PanelTopOpen:G8,PanelsLeftBottom:Y8,PanelsRightBottom:X8,PanelsTopLeft:Br,Paperclip:Z8,Parentheses:Q8,ParkingMeter:J8,PartyPopper:e6,Pause:t6,PawPrint:o6,PcCase:n6,Pen:Ur,PenLine:Wr,PenOff:a6,PenTool:r6,Pencil:d6,PencilLine:i6,PencilOff:c6,PencilRuler:s6,Pentagon:l6,Percent:u6,PersonStanding:h6,PhilippinePeso:p6,Phone:_6,PhoneCall:y6,PhoneForwarded:f6,PhoneIncoming:m6,PhoneMissed:k6,PhoneOff:g6,PhoneOutgoing:v6,Pi:b6,Piano:M6,Pickaxe:w6,PictureInPicture:N6,PictureInPicture2:x6,PiggyBank:C6,Pilcrow:L6,PilcrowLeft:$6,PilcrowRight:S6,Pill:A6,PillBottle:I6,Pin:T6,PinOff:P6,Pipette:D6,Pizza:E6,Plane:q6,PlaneLanding:z6,PlaneTakeoff:O6,Play:j6,Plug:V6,Plug2:H6,PlugZap:Rr,Plus:Js,Pocket:F6,PocketKnife:B6,Podcast:W6,Pointer:R6,PointerOff:U6,Popcorn:G6,Popsicle:K6,PoundSterling:Y6,Power:Z6,PowerOff:X6,Presentation:Q6,Printer:ob,PrinterCheck:J6,PrinterX:eb,Projector:tb,Proportions:nb,Puzzle:ab,Pyramid:rb,QrCode:ib,Quote:cb,Rabbit:sb,Radar:db,Radiation:ub,Radical:lb,Radio:yb,RadioReceiver:hb,RadioTower:pb,Radius:fb,RailSymbol:kb,Rainbow:mb,Rat:gb,Ratio:vb,Receipt:Sb,ReceiptCent:_b,ReceiptEuro:bb,ReceiptIndianRupee:Mb,ReceiptJapaneseYen:wb,ReceiptPoundSterling:xb,ReceiptRussianRuble:Nb,ReceiptSwissFranc:Cb,ReceiptText:$b,ReceiptTurkishLira:Lb,RectangleCircle:Ib,RectangleEllipsis:Gr,RectangleGoggles:Ab,RectangleHorizontal:Pb,RectangleVertical:Tb,Recycle:zb,Redo:Ob,Redo2:Db,RedoDot:Eb,RefreshCcw:jb,RefreshCcwDot:qb,RefreshCw:Vb,RefreshCwOff:Hb,Refrigerator:Fb,Regex:Bb,RemoveFormatting:Wb,Repeat:Gb,Repeat1:Ub,Repeat2:Rb,Replace:Yb,ReplaceAll:Kb,Reply:Zb,ReplyAll:Xb,Rewind:Qb,Ribbon:Jb,Rocket:ed,RockingChair:eM,RollerCoaster:tM,Rose:oM,Rotate3d:Kr,RotateCcw:rM,RotateCcwKey:nM,RotateCcwSquare:aM,RotateCw:cM,RotateCwSquare:iM,Route:dM,RouteOff:sM,Router:lM,Rows2:Yr,Rows3:Xr,Rows4:uM,Rss:hM,Ruler:kM,RulerDimensionLine:pM,RussianRuble:yM,Sailboat:fM,Salad:mM,Sandwich:gM,Satellite:_M,SatelliteDish:vM,SaudiRiyal:bM,Save:xM,SaveAll:wM,SaveOff:MM,Scale:NM,Scale3d:Zr,Scaling:CM,Scan:DM,ScanBarcode:$M,ScanEye:SM,ScanFace:LM,ScanHeart:IM,ScanLine:AM,ScanQrCode:PM,ScanSearch:TM,ScanText:EM,School:OM,Scissors:qM,ScissorsLineDashed:zM,Scooter:jM,ScreenShare:VM,ScreenShareOff:HM,Scroll:FM,ScrollText:WM,Search:Qr,SearchAlert:BM,SearchCheck:UM,SearchCode:RM,SearchSlash:GM,SearchX:KM,Section:YM,Send:ZM,SendHorizontal:Jr,SendToBack:XM,SeparatorHorizontal:QM,SeparatorVertical:JM,Server:n7,ServerCog:e7,ServerCrash:t7,ServerOff:o7,Settings:r7,Settings2:a7,Shapes:i7,Share:s7,Share2:c7,Sheet:d7,Shell:l7,Shield:_7,ShieldAlert:u7,ShieldBan:h7,ShieldCheck:p7,ShieldEllipsis:f7,ShieldHalf:y7,ShieldMinus:m7,ShieldOff:k7,ShieldPlus:g7,ShieldQuestionMark:ei,ShieldUser:v7,ShieldX:ti,Ship:M7,ShipWheel:b7,Shirt:w7,ShoppingBag:x7,ShoppingBasket:N7,ShoppingCart:C7,Shovel:$7,ShowerHead:S7,Shredder:L7,Shrimp:I7,Shrink:A7,Shrub:P7,Shuffle:T7,Sigma:D7,Signal:j7,SignalHigh:E7,SignalLow:z7,SignalMedium:O7,SignalZero:q7,Signature:H7,Signpost:F7,SignpostBig:V7,Siren:B7,SkipBack:W7,SkipForward:U7,Skull:R7,Slack:G7,Slash:K7,Slice:Y7,SlidersHorizontal:X7,SlidersVertical:oi,Smartphone:ew,SmartphoneCharging:Z7,SmartphoneNfc:Q7,Smile:tw,SmilePlus:J7,Snail:ow,Snowflake:nw,SoapDispenserDroplet:aw,Sofa:rw,SolarPanel:iw,Soup:cw,Space:sw,Spade:dw,Sparkle:lw,Sparkles:ni,Speaker:uw,Speech:hw,SpellCheck:yw,SpellCheck2:pw,Spline:mw,SplinePointer:fw,Split:gw,Spool:kw,Spotlight:vw,SprayCan:_w,Sprout:bw,Square:Pw,SquareActivity:ai,SquareArrowDown:ii,SquareArrowDownLeft:ri,SquareArrowDownRight:ci,SquareArrowLeft:si,SquareArrowOutDownLeft:di,SquareArrowOutDownRight:li,SquareArrowOutUpLeft:ui,SquareArrowOutUpRight:hi,SquareArrowRight:pi,SquareArrowUp:mi,SquareArrowUpLeft:yi,SquareArrowUpRight:fi,SquareAsterisk:ki,SquareBottomDashedScissors:gi,SquareChartGantt:_o,SquareCheck:_i,SquareCheckBig:vi,SquareChevronDown:bi,SquareChevronLeft:Mi,SquareChevronRight:wi,SquareChevronUp:xi,SquareCode:Ni,SquareDashed:Si,SquareDashedBottom:ww,SquareDashedBottomCode:Mw,SquareDashedKanban:$i,SquareDashedMousePointer:Ci,SquareDashedTopSolid:xw,SquareDivide:Li,SquareDot:Ii,SquareEqual:Ai,SquareFunction:Pi,SquareKanban:Di,SquareLibrary:Ti,SquareM:Ei,SquareMenu:zi,SquareMinus:Oi,SquareMousePointer:qi,SquareParking:Hi,SquareParkingOff:ji,SquarePause:Nw,SquarePen:_t,SquarePercent:Vi,SquarePi:Fi,SquarePilcrow:Bi,SquarePlay:Wi,SquarePlus:Ui,SquarePower:Ri,SquareRadical:Cw,SquareRoundCorner:$w,SquareScissors:Gi,SquareSigma:Ki,SquareSlash:Yi,SquareSplitHorizontal:Xi,SquareSplitVertical:Zi,SquareSquare:Sw,SquareStack:Lw,SquareStar:Iw,SquareStop:Aw,SquareTerminal:Qi,SquareUser:Ji,SquareUserRound:ec,SquareX:tc,SquaresExclude:Tw,SquaresIntersect:Dw,SquaresSubtract:zw,SquaresUnite:Ew,Squircle:qw,SquircleDashed:Ow,Squirrel:jw,Stamp:Hw,Star:Bw,StarHalf:Fw,StarOff:Vw,StepBack:Ww,StepForward:Uw,Stethoscope:Rw,Sticker:Gw,StickyNote:Kw,Stone:Yw,Store:Xw,StretchHorizontal:Zw,StretchVertical:Qw,Strikethrough:Jw,Subscript:ex,Sun:rx,SunDim:tx,SunMedium:nx,SunMoon:ox,SunSnow:ax,Sunrise:ix,Sunset:cx,Superscript:sx,SwatchBook:dx,SwissFranc:lx,SwitchCamera:ux,Sword:hx,Swords:px,Syringe:yx,Table:Mx,Table2:fx,TableCellsMerge:mx,TableCellsSplit:kx,TableColumnsSplit:gx,TableOfContents:bx,TableProperties:vx,TableRowsSplit:_x,Tablet:xx,TabletSmartphone:wx,Tablets:Cx,Tag:Nx,Tags:$x,Tally1:Sx,Tally2:Lx,Tally3:Ix,Tally4:Ax,Tally5:Px,Tangent:Tx,Target:Dx,Telescope:Ex,Tent:Ox,TentTree:zx,Terminal:qx,TestTube:jx,TestTubeDiagonal:oc,TestTubes:Hx,TextAlignCenter:nc,TextAlignEnd:ac,TextAlignJustify:rc,TextAlignStart:bo,TextCursor:Fx,TextCursorInput:Vx,TextInitial:ic,TextQuote:Bx,TextSearch:Wx,TextSelect:cc,TextWrap:sc,Theater:Ux,Thermometer:Kx,ThermometerSnowflake:Rx,ThermometerSun:Gx,ThumbsDown:Yx,ThumbsUp:Xx,Ticket:n9,TicketCheck:Zx,TicketMinus:Qx,TicketPercent:Jx,TicketPlus:e9,TicketSlash:t9,TicketX:o9,Tickets:r9,TicketsPlane:a9,Timer:c9,TimerOff:i9,TimerReset:s9,ToggleLeft:d9,ToggleRight:l9,Toilet:u9,ToolCase:h9,Toolbox:y9,Tornado:p9,Torus:f9,Touchpad:k9,TouchpadOff:m9,TowerControl:g9,ToyBrick:v9,Tractor:_9,TrafficCone:b9,TrainFront:w9,TrainFrontTunnel:M9,TrainTrack:x9,TramFront:dc,Transgender:N9,Trash:C9,Trash2:lc,TreeDeciduous:$9,TreePalm:uc,TreePine:S9,Trees:L9,Trello:I9,TrendingDown:td,TrendingUp:od,TrendingUpDown:A9,Triangle:D9,TriangleAlert:tn,TriangleDashed:P9,TriangleRight:T9,Trophy:E9,Truck:O9,TruckElectric:z9,TurkishLira:q9,Turntable:j9,Turtle:H9,Tv:F9,TvMinimal:hc,TvMinimalPlay:V9,Twitch:B9,Twitter:W9,Type:U9,TypeOutline:R9,Umbrella:K9,UmbrellaOff:G9,Underline:Y9,Undo:Q9,Undo2:X9,UndoDot:Z9,UnfoldHorizontal:J9,UnfoldVertical:eN,Ungroup:tN,University:pc,Unlink:nN,Unlink2:oN,Unplug:aN,Upload:nd,Usb:rN,User:kN,UserCheck:iN,UserCog:cN,UserLock:sN,UserMinus:dN,UserPen:lN,UserPlus:uN,UserRound:vc,UserRoundCheck:yc,UserRoundCog:fc,UserRoundMinus:mc,UserRoundPen:hN,UserRoundPlus:kc,UserRoundSearch:pN,UserRoundX:gc,UserSearch:yN,UserStar:fN,UserX:mN,Users:gN,UsersRound:_c,Utensils:Mc,UtensilsCrossed:bc,UtilityPole:vN,Van:_N,Variable:bN,Vault:MN,VectorSquare:wN,Vegan:xN,VenetianMask:NN,Venus:$N,VenusAndMars:CN,Vibrate:LN,VibrateOff:SN,Video:PN,VideoOff:IN,Videotape:AN,View:TN,Voicemail:DN,Volleyball:EN,Volume:HN,Volume1:zN,Volume2:ON,VolumeOff:qN,VolumeX:jN,Vote:VN,Wallet:BN,WalletCards:FN,WalletMinimal:wc,Wallpaper:WN,Wand:UN,WandSparkles:xc,Warehouse:RN,WashingMachine:GN,Watch:YN,Waves:QN,WavesArrowDown:KN,WavesArrowUp:XN,WavesLadder:ZN,Waypoints:JN,Webcam:eC,Webhook:oC,WebhookOff:tC,Weight:aC,WeightTilde:nC,Wheat:iC,WheatOff:rC,WholeWord:cC,Wifi:fC,WifiCog:sC,WifiHigh:dC,WifiLow:lC,WifiOff:uC,WifiPen:hC,WifiSync:pC,WifiZero:yC,Wind:kC,WindArrowDown:mC,Wine:vC,WineOff:gC,Workflow:_C,Worm:bC,Wrench:MC,X:on,Youtube:xC,Zap:NC,ZapOff:wC,ZoomIn:CC,ZoomOut:$C},Symbol.toStringTag,{value:"Module"}));const MD=Object.freeze(Object.defineProperty({__proto__:null,AArrowDown:x1,AArrowDownIcon:x1,AArrowUp:N1,AArrowUpIcon:N1,ALargeSmall:C1,ALargeSmallIcon:C1,Accessibility:$1,AccessibilityIcon:$1,Activity:S1,ActivityIcon:S1,ActivitySquare:ai,ActivitySquareIcon:ai,AirVent:L1,AirVentIcon:L1,Airplay:I1,AirplayIcon:I1,AlarmCheck:Mn,AlarmCheckIcon:Mn,AlarmClock:P1,AlarmClockCheck:Mn,AlarmClockCheckIcon:Mn,AlarmClockIcon:P1,AlarmClockMinus:wn,AlarmClockMinusIcon:wn,AlarmClockOff:A1,AlarmClockOffIcon:A1,AlarmClockPlus:xn,AlarmClockPlusIcon:xn,AlarmMinus:wn,AlarmMinusIcon:wn,AlarmPlus:xn,AlarmPlusIcon:xn,AlarmSmoke:T1,AlarmSmokeIcon:T1,Album:D1,AlbumIcon:D1,AlertCircle:Zo,AlertCircleIcon:Zo,AlertOctagon:Dr,AlertOctagonIcon:Dr,AlertTriangle:tn,AlertTriangleIcon:tn,AlignCenter:nc,AlignCenterHorizontal:E1,AlignCenterHorizontalIcon:E1,AlignCenterIcon:nc,AlignCenterVertical:z1,AlignCenterVerticalIcon:z1,AlignEndHorizontal:O1,AlignEndHorizontalIcon:O1,AlignEndVertical:q1,AlignEndVerticalIcon:q1,AlignHorizontalDistributeCenter:j1,AlignHorizontalDistributeCenterIcon:j1,AlignHorizontalDistributeEnd:H1,AlignHorizontalDistributeEndIcon:H1,AlignHorizontalDistributeStart:V1,AlignHorizontalDistributeStartIcon:V1,AlignHorizontalJustifyCenter:F1,AlignHorizontalJustifyCenterIcon:F1,AlignHorizontalJustifyEnd:B1,AlignHorizontalJustifyEndIcon:B1,AlignHorizontalJustifyStart:W1,AlignHorizontalJustifyStartIcon:W1,AlignHorizontalSpaceAround:U1,AlignHorizontalSpaceAroundIcon:U1,AlignHorizontalSpaceBetween:R1,AlignHorizontalSpaceBetweenIcon:R1,AlignJustify:rc,AlignJustifyIcon:rc,AlignLeft:bo,AlignLeftIcon:bo,AlignRight:ac,AlignRightIcon:ac,AlignStartHorizontal:G1,AlignStartHorizontalIcon:G1,AlignStartVertical:K1,AlignStartVerticalIcon:K1,AlignVerticalDistributeCenter:Y1,AlignVerticalDistributeCenterIcon:Y1,AlignVerticalDistributeEnd:X1,AlignVerticalDistributeEndIcon:X1,AlignVerticalDistributeStart:Z1,AlignVerticalDistributeStartIcon:Z1,AlignVerticalJustifyCenter:J1,AlignVerticalJustifyCenterIcon:J1,AlignVerticalJustifyEnd:Q1,AlignVerticalJustifyEndIcon:Q1,AlignVerticalJustifyStart:el,AlignVerticalJustifyStartIcon:el,AlignVerticalSpaceAround:tl,AlignVerticalSpaceAroundIcon:tl,AlignVerticalSpaceBetween:ol,AlignVerticalSpaceBetweenIcon:ol,Ambulance:nl,AmbulanceIcon:nl,Ampersand:al,AmpersandIcon:al,Ampersands:rl,AmpersandsIcon:rl,Amphora:il,AmphoraIcon:il,Anchor:sl,AnchorIcon:sl,Angry:cl,AngryIcon:cl,Annoyed:dl,AnnoyedIcon:dl,Antenna:ll,AntennaIcon:ll,Anvil:ul,AnvilIcon:ul,Aperture:hl,ApertureIcon:hl,AppWindow:yl,AppWindowIcon:yl,AppWindowMac:pl,AppWindowMacIcon:pl,Apple:fl,AppleIcon:fl,Archive:gl,ArchiveIcon:gl,ArchiveRestore:ml,ArchiveRestoreIcon:ml,ArchiveX:kl,ArchiveXIcon:kl,AreaChart:jn,AreaChartIcon:jn,Armchair:vl,ArmchairIcon:vl,ArrowBigDown:bl,ArrowBigDownDash:_l,ArrowBigDownDashIcon:_l,ArrowBigDownIcon:bl,ArrowBigLeft:wl,ArrowBigLeftDash:Ml,ArrowBigLeftDashIcon:Ml,ArrowBigLeftIcon:wl,ArrowBigRight:Nl,ArrowBigRightDash:xl,ArrowBigRightDashIcon:xl,ArrowBigRightIcon:Nl,ArrowBigUp:$l,ArrowBigUpDash:Cl,ArrowBigUpDashIcon:Cl,ArrowBigUpIcon:$l,ArrowDown:Ol,ArrowDown01:Sl,ArrowDown01Icon:Sl,ArrowDown10:Ll,ArrowDown10Icon:Ll,ArrowDownAZ:Nn,ArrowDownAZIcon:Nn,ArrowDownAz:Nn,ArrowDownAzIcon:Nn,ArrowDownCircle:ea,ArrowDownCircleIcon:ea,ArrowDownFromLine:Il,ArrowDownFromLineIcon:Il,ArrowDownIcon:Ol,ArrowDownLeft:Al,ArrowDownLeftFromCircle:oa,ArrowDownLeftFromCircleIcon:oa,ArrowDownLeftFromSquare:di,ArrowDownLeftFromSquareIcon:di,ArrowDownLeftIcon:Al,ArrowDownLeftSquare:ri,ArrowDownLeftSquareIcon:ri,ArrowDownNarrowWide:Pl,ArrowDownNarrowWideIcon:Pl,ArrowDownRight:Tl,ArrowDownRightFromCircle:na,ArrowDownRightFromCircleIcon:na,ArrowDownRightFromSquare:li,ArrowDownRightFromSquareIcon:li,ArrowDownRightIcon:Tl,ArrowDownRightSquare:ci,ArrowDownRightSquareIcon:ci,ArrowDownSquare:ii,ArrowDownSquareIcon:ii,ArrowDownToDot:Dl,ArrowDownToDotIcon:Dl,ArrowDownToLine:El,ArrowDownToLineIcon:El,ArrowDownUp:zl,ArrowDownUpIcon:zl,ArrowDownWideNarrow:Cn,ArrowDownWideNarrowIcon:Cn,ArrowDownZA:$n,ArrowDownZAIcon:$n,ArrowDownZa:$n,ArrowDownZaIcon:$n,ArrowLeft:Zc,ArrowLeftCircle:ta,ArrowLeftCircleIcon:ta,ArrowLeftFromLine:ql,ArrowLeftFromLineIcon:ql,ArrowLeftIcon:Zc,ArrowLeftRight:jl,ArrowLeftRightIcon:jl,ArrowLeftSquare:si,ArrowLeftSquareIcon:si,ArrowLeftToLine:Hl,ArrowLeftToLineIcon:Hl,ArrowRight:Vs,ArrowRightCircle:ia,ArrowRightCircleIcon:ia,ArrowRightFromLine:Vl,ArrowRightFromLineIcon:Vl,ArrowRightIcon:Vs,ArrowRightLeft:Fl,ArrowRightLeftIcon:Fl,ArrowRightSquare:pi,ArrowRightSquareIcon:pi,ArrowRightToLine:Bl,ArrowRightToLineIcon:Bl,ArrowUp:Jl,ArrowUp01:Wl,ArrowUp01Icon:Wl,ArrowUp10:Ul,ArrowUp10Icon:Ul,ArrowUpAZ:Sn,ArrowUpAZIcon:Sn,ArrowUpAz:Sn,ArrowUpAzIcon:Sn,ArrowUpCircle:ca,ArrowUpCircleIcon:ca,ArrowUpDown:Rl,ArrowUpDownIcon:Rl,ArrowUpFromDot:Gl,ArrowUpFromDotIcon:Gl,ArrowUpFromLine:Kl,ArrowUpFromLineIcon:Kl,ArrowUpIcon:Jl,ArrowUpLeft:Yl,ArrowUpLeftFromCircle:aa,ArrowUpLeftFromCircleIcon:aa,ArrowUpLeftFromSquare:ui,ArrowUpLeftFromSquareIcon:ui,ArrowUpLeftIcon:Yl,ArrowUpLeftSquare:yi,ArrowUpLeftSquareIcon:yi,ArrowUpNarrowWide:Ln,ArrowUpNarrowWideIcon:Ln,ArrowUpRight:Xl,ArrowUpRightFromCircle:ra,ArrowUpRightFromCircleIcon:ra,ArrowUpRightFromSquare:hi,ArrowUpRightFromSquareIcon:hi,ArrowUpRightIcon:Xl,ArrowUpRightSquare:fi,ArrowUpRightSquareIcon:fi,ArrowUpSquare:mi,ArrowUpSquareIcon:mi,ArrowUpToLine:Zl,ArrowUpToLineIcon:Zl,ArrowUpWideNarrow:Ql,ArrowUpWideNarrowIcon:Ql,ArrowUpZA:In,ArrowUpZAIcon:In,ArrowUpZa:In,ArrowUpZaIcon:In,ArrowsUpFromLine:e2,ArrowsUpFromLineIcon:e2,Asterisk:t2,AsteriskIcon:t2,AsteriskSquare:ki,AsteriskSquareIcon:ki,AtSign:o2,AtSignIcon:o2,Atom:n2,AtomIcon:n2,AudioLines:a2,AudioLinesIcon:a2,AudioWaveform:r2,AudioWaveformIcon:r2,Award:i2,AwardIcon:i2,Axe:c2,AxeIcon:c2,Axis3D:An,Axis3DIcon:An,Axis3d:An,Axis3dIcon:An,Baby:d2,BabyIcon:d2,Backpack:s2,BackpackIcon:s2,Badge:C2,BadgeAlert:l2,BadgeAlertIcon:l2,BadgeCent:u2,BadgeCentIcon:u2,BadgeCheck:Pn,BadgeCheckIcon:Pn,BadgeDollarSign:h2,BadgeDollarSignIcon:h2,BadgeEuro:p2,BadgeEuroIcon:p2,BadgeHelp:Tn,BadgeHelpIcon:Tn,BadgeIcon:C2,BadgeIndianRupee:y2,BadgeIndianRupeeIcon:y2,BadgeInfo:f2,BadgeInfoIcon:f2,BadgeJapaneseYen:m2,BadgeJapaneseYenIcon:m2,BadgeMinus:k2,BadgeMinusIcon:k2,BadgePercent:g2,BadgePercentIcon:g2,BadgePlus:v2,BadgePlusIcon:v2,BadgePoundSterling:_2,BadgePoundSterlingIcon:_2,BadgeQuestionMark:Tn,BadgeQuestionMarkIcon:Tn,BadgeRussianRuble:b2,BadgeRussianRubleIcon:b2,BadgeSwissFranc:M2,BadgeSwissFrancIcon:M2,BadgeTurkishLira:w2,BadgeTurkishLiraIcon:w2,BadgeX:x2,BadgeXIcon:x2,BaggageClaim:N2,BaggageClaimIcon:N2,Balloon:$2,BalloonIcon:$2,Ban:S2,BanIcon:S2,Banana:L2,BananaIcon:L2,Bandage:A2,BandageIcon:A2,Banknote:E2,BanknoteArrowDown:I2,BanknoteArrowDownIcon:I2,BanknoteArrowUp:P2,BanknoteArrowUpIcon:P2,BanknoteIcon:E2,BanknoteX:T2,BanknoteXIcon:T2,BarChart:Gn,BarChart2:Kn,BarChart2Icon:Kn,BarChart3:Un,BarChart3Icon:Un,BarChart4:Wn,BarChart4Icon:Wn,BarChartBig:Bn,BarChartBigIcon:Bn,BarChartHorizontal:Vn,BarChartHorizontalBig:Hn,BarChartHorizontalBigIcon:Hn,BarChartHorizontalIcon:Vn,BarChartIcon:Gn,Barcode:D2,BarcodeIcon:D2,Barrel:z2,BarrelIcon:z2,Baseline:O2,BaselineIcon:O2,Bath:q2,BathIcon:q2,Battery:R2,BatteryCharging:j2,BatteryChargingIcon:j2,BatteryFull:H2,BatteryFullIcon:H2,BatteryIcon:R2,BatteryLow:V2,BatteryLowIcon:V2,BatteryMedium:F2,BatteryMediumIcon:F2,BatteryPlus:B2,BatteryPlusIcon:B2,BatteryWarning:W2,BatteryWarningIcon:W2,Beaker:U2,BeakerIcon:U2,Bean:K2,BeanIcon:K2,BeanOff:G2,BeanOffIcon:G2,Bed:Z2,BedDouble:Y2,BedDoubleIcon:Y2,BedIcon:Z2,BedSingle:X2,BedSingleIcon:X2,Beef:Q2,BeefIcon:Q2,Beer:t0,BeerIcon:t0,BeerOff:J2,BeerOffIcon:J2,Bell:c0,BellDot:e0,BellDotIcon:e0,BellElectric:o0,BellElectricIcon:o0,BellIcon:c0,BellMinus:n0,BellMinusIcon:n0,BellOff:a0,BellOffIcon:a0,BellPlus:r0,BellPlusIcon:r0,BellRing:i0,BellRingIcon:i0,BetweenHorizonalEnd:Dn,BetweenHorizonalEndIcon:Dn,BetweenHorizonalStart:En,BetweenHorizonalStartIcon:En,BetweenHorizontalEnd:Dn,BetweenHorizontalEndIcon:Dn,BetweenHorizontalStart:En,BetweenHorizontalStartIcon:En,BetweenVerticalEnd:s0,BetweenVerticalEndIcon:s0,BetweenVerticalStart:d0,BetweenVerticalStartIcon:d0,BicepsFlexed:l0,BicepsFlexedIcon:l0,Bike:u0,BikeIcon:u0,Binary:h0,BinaryIcon:h0,Binoculars:p0,BinocularsIcon:p0,Biohazard:y0,BiohazardIcon:y0,Bird:f0,BirdIcon:f0,Birdhouse:m0,BirdhouseIcon:m0,Bitcoin:k0,BitcoinIcon:k0,Blend:g0,BlendIcon:g0,Blinds:v0,BlindsIcon:v0,Blocks:_0,BlocksIcon:_0,Bluetooth:N0,BluetoothConnected:b0,BluetoothConnectedIcon:b0,BluetoothIcon:N0,BluetoothOff:M0,BluetoothOffIcon:M0,BluetoothSearching:w0,BluetoothSearchingIcon:w0,Bold:x0,BoldIcon:x0,Bolt:C0,BoltIcon:C0,Bomb:S0,BombIcon:S0,Bone:$0,BoneIcon:$0,Book:J0,BookA:L0,BookAIcon:L0,BookAlert:I0,BookAlertIcon:I0,BookAudio:A0,BookAudioIcon:A0,BookCheck:P0,BookCheckIcon:P0,BookCopy:T0,BookCopyIcon:T0,BookDashed:zn,BookDashedIcon:zn,BookDown:D0,BookDownIcon:D0,BookHeadphones:E0,BookHeadphonesIcon:E0,BookHeart:z0,BookHeartIcon:z0,BookIcon:J0,BookImage:O0,BookImageIcon:O0,BookKey:q0,BookKeyIcon:q0,BookLock:j0,BookLockIcon:j0,BookMarked:V0,BookMarkedIcon:V0,BookMinus:H0,BookMinusIcon:H0,BookOpen:B0,BookOpenCheck:F0,BookOpenCheckIcon:F0,BookOpenIcon:B0,BookOpenText:W0,BookOpenTextIcon:W0,BookPlus:U0,BookPlusIcon:U0,BookSearch:R0,BookSearchIcon:R0,BookTemplate:zn,BookTemplateIcon:zn,BookText:G0,BookTextIcon:G0,BookType:K0,BookTypeIcon:K0,BookUp:X0,BookUp2:Y0,BookUp2Icon:Y0,BookUpIcon:X0,BookUser:Z0,BookUserIcon:Z0,BookX:Q0,BookXIcon:Q0,Bookmark:au,BookmarkCheck:eu,BookmarkCheckIcon:eu,BookmarkIcon:au,BookmarkMinus:tu,BookmarkMinusIcon:tu,BookmarkPlus:ou,BookmarkPlusIcon:ou,BookmarkX:nu,BookmarkXIcon:nu,BoomBox:ru,BoomBoxIcon:ru,Bot:su,BotIcon:su,BotMessageSquare:iu,BotMessageSquareIcon:iu,BotOff:cu,BotOffIcon:cu,BottleWine:lu,BottleWineIcon:lu,BowArrow:du,BowArrowIcon:du,Box:uu,BoxIcon:uu,BoxSelect:Si,BoxSelectIcon:Si,Boxes:hu,BoxesIcon:hu,Braces:On,BracesIcon:On,Brackets:pu,BracketsIcon:pu,Brain:mu,BrainCircuit:yu,BrainCircuitIcon:yu,BrainCog:fu,BrainCogIcon:fu,BrainIcon:mu,BrickWall:vu,BrickWallFire:ku,BrickWallFireIcon:ku,BrickWallIcon:vu,BrickWallShield:gu,BrickWallShieldIcon:gu,Briefcase:wu,BriefcaseBusiness:_u,BriefcaseBusinessIcon:_u,BriefcaseConveyorBelt:bu,BriefcaseConveyorBeltIcon:bu,BriefcaseIcon:wu,BriefcaseMedical:Mu,BriefcaseMedicalIcon:Mu,BringToFront:xu,BringToFrontIcon:xu,Brush:Nu,BrushCleaning:Cu,BrushCleaningIcon:Cu,BrushIcon:Nu,Bubbles:$u,BubblesIcon:$u,Bug:Iu,BugIcon:Iu,BugOff:Su,BugOffIcon:Su,BugPlay:Lu,BugPlayIcon:Lu,Building:Pu,Building2:Au,Building2Icon:Au,BuildingIcon:Pu,Bus:Du,BusFront:Tu,BusFrontIcon:Tu,BusIcon:Du,Cable:zu,CableCar:Eu,CableCarIcon:Eu,CableIcon:zu,Cake:qu,CakeIcon:qu,CakeSlice:Ou,CakeSliceIcon:Ou,Calculator:ju,CalculatorIcon:ju,Calendar:Fs,Calendar1:Hu,Calendar1Icon:Hu,CalendarArrowDown:Vu,CalendarArrowDownIcon:Vu,CalendarArrowUp:Fu,CalendarArrowUpIcon:Fu,CalendarCheck:Uu,CalendarCheck2:Bu,CalendarCheck2Icon:Bu,CalendarCheckIcon:Uu,CalendarClock:Wu,CalendarClockIcon:Wu,CalendarCog:Ru,CalendarCogIcon:Ru,CalendarDays:Gu,CalendarDaysIcon:Gu,CalendarFold:Ku,CalendarFoldIcon:Ku,CalendarHeart:Yu,CalendarHeartIcon:Yu,CalendarIcon:Fs,CalendarMinus:Zu,CalendarMinus2:Xu,CalendarMinus2Icon:Xu,CalendarMinusIcon:Zu,CalendarOff:Qu,CalendarOffIcon:Qu,CalendarPlus:eh,CalendarPlus2:Ju,CalendarPlus2Icon:Ju,CalendarPlusIcon:eh,CalendarRange:th,CalendarRangeIcon:th,CalendarSearch:oh,CalendarSearchIcon:oh,CalendarSync:ah,CalendarSyncIcon:ah,CalendarX:rh,CalendarX2:nh,CalendarX2Icon:nh,CalendarXIcon:rh,Calendars:ih,CalendarsIcon:ih,Camera:sh,CameraIcon:sh,CameraOff:ch,CameraOffIcon:ch,CandlestickChart:Fn,CandlestickChartIcon:Fn,Candy:uh,CandyCane:lh,CandyCaneIcon:lh,CandyIcon:uh,CandyOff:dh,CandyOffIcon:dh,Cannabis:ph,CannabisIcon:ph,CannabisOff:hh,CannabisOffIcon:hh,Captions:qn,CaptionsIcon:qn,CaptionsOff:yh,CaptionsOffIcon:yh,Car:mh,CarFront:fh,CarFrontIcon:fh,CarIcon:mh,CarTaxiFront:kh,CarTaxiFrontIcon:kh,Caravan:vh,CaravanIcon:vh,CardSim:gh,CardSimIcon:gh,Carrot:_h,CarrotIcon:_h,CaseLower:bh,CaseLowerIcon:bh,CaseSensitive:Mh,CaseSensitiveIcon:Mh,CaseUpper:wh,CaseUpperIcon:wh,CassetteTape:xh,CassetteTapeIcon:xh,Cast:Nh,CastIcon:Nh,Castle:Ch,CastleIcon:Ch,Cat:$h,CatIcon:$h,Cctv:Sh,CctvIcon:Sh,ChartArea:jn,ChartAreaIcon:jn,ChartBar:Vn,ChartBarBig:Hn,ChartBarBigIcon:Hn,ChartBarDecreasing:Lh,ChartBarDecreasingIcon:Lh,ChartBarIcon:Vn,ChartBarIncreasing:Ih,ChartBarIncreasingIcon:Ih,ChartBarStacked:Ah,ChartBarStackedIcon:Ah,ChartCandlestick:Fn,ChartCandlestickIcon:Fn,ChartColumn:Un,ChartColumnBig:Bn,ChartColumnBigIcon:Bn,ChartColumnDecreasing:Ph,ChartColumnDecreasingIcon:Ph,ChartColumnIcon:Un,ChartColumnIncreasing:Wn,ChartColumnIncreasingIcon:Wn,ChartColumnStacked:Th,ChartColumnStackedIcon:Th,ChartGantt:Dh,ChartGanttIcon:Dh,ChartLine:Rn,ChartLineIcon:Rn,ChartNetwork:Eh,ChartNetworkIcon:Eh,ChartNoAxesColumn:Kn,ChartNoAxesColumnDecreasing:zh,ChartNoAxesColumnDecreasingIcon:zh,ChartNoAxesColumnIcon:Kn,ChartNoAxesColumnIncreasing:Gn,ChartNoAxesColumnIncreasingIcon:Gn,ChartNoAxesCombined:Oh,ChartNoAxesCombinedIcon:Oh,ChartNoAxesGantt:Yn,ChartNoAxesGanttIcon:Yn,ChartPie:Xn,ChartPieIcon:Xn,ChartScatter:Zn,ChartScatterIcon:Zn,ChartSpline:qh,ChartSplineIcon:qh,Check:po,CheckCheck:jh,CheckCheckIcon:jh,CheckCircle:sa,CheckCircle2:jo,CheckCircle2Icon:jo,CheckCircleIcon:sa,CheckIcon:po,CheckLine:Hh,CheckLineIcon:Hh,CheckSquare:vi,CheckSquare2:_i,CheckSquare2Icon:_i,CheckSquareIcon:vi,ChefHat:Vh,ChefHatIcon:Vh,Cherry:Fh,CherryIcon:Fh,ChessBishop:Bh,ChessBishopIcon:Bh,ChessKing:Wh,ChessKingIcon:Wh,ChessKnight:Uh,ChessKnightIcon:Uh,ChessPawn:Rh,ChessPawnIcon:Rh,ChessQueen:Gh,ChessQueenIcon:Gh,ChessRook:Kh,ChessRookIcon:Kh,ChevronDown:Ht,ChevronDownCircle:da,ChevronDownCircleIcon:da,ChevronDownIcon:Ht,ChevronDownSquare:bi,ChevronDownSquareIcon:bi,ChevronFirst:Yh,ChevronFirstIcon:Yh,ChevronLast:Xh,ChevronLastIcon:Xh,ChevronLeft:Qn,ChevronLeftCircle:la,ChevronLeftCircleIcon:la,ChevronLeftIcon:Qn,ChevronLeftSquare:Mi,ChevronLeftSquareIcon:Mi,ChevronRight:Pt,ChevronRightCircle:ua,ChevronRightCircleIcon:ua,ChevronRightIcon:Pt,ChevronRightSquare:wi,ChevronRightSquareIcon:wi,ChevronUp:Qc,ChevronUpCircle:ha,ChevronUpCircleIcon:ha,ChevronUpIcon:Qc,ChevronUpSquare:xi,ChevronUpSquareIcon:xi,ChevronsDown:Qh,ChevronsDownIcon:Qh,ChevronsDownUp:Zh,ChevronsDownUpIcon:Zh,ChevronsLeft:Bs,ChevronsLeftIcon:Bs,ChevronsLeftRight:ep,ChevronsLeftRightEllipsis:Jh,ChevronsLeftRightEllipsisIcon:Jh,ChevronsLeftRightIcon:ep,ChevronsRight:Ws,ChevronsRightIcon:Ws,ChevronsRightLeft:tp,ChevronsRightLeftIcon:tp,ChevronsUp:op,ChevronsUpDown:Jc,ChevronsUpDownIcon:Jc,ChevronsUpIcon:op,Chrome:Jn,ChromeIcon:Jn,Chromium:Jn,ChromiumIcon:Jn,Church:np,ChurchIcon:np,Cigarette:rp,CigaretteIcon:rp,CigaretteOff:ap,CigaretteOffIcon:ap,Circle:Qo,CircleAlert:Zo,CircleAlertIcon:Zo,CircleArrowDown:ea,CircleArrowDownIcon:ea,CircleArrowLeft:ta,CircleArrowLeftIcon:ta,CircleArrowOutDownLeft:oa,CircleArrowOutDownLeftIcon:oa,CircleArrowOutDownRight:na,CircleArrowOutDownRightIcon:na,CircleArrowOutUpLeft:aa,CircleArrowOutUpLeftIcon:aa,CircleArrowOutUpRight:ra,CircleArrowOutUpRightIcon:ra,CircleArrowRight:ia,CircleArrowRightIcon:ia,CircleArrowUp:ca,CircleArrowUpIcon:ca,CircleCheck:jo,CircleCheckBig:sa,CircleCheckBigIcon:sa,CircleCheckIcon:jo,CircleChevronDown:da,CircleChevronDownIcon:da,CircleChevronLeft:la,CircleChevronLeftIcon:la,CircleChevronRight:ua,CircleChevronRightIcon:ua,CircleChevronUp:ha,CircleChevronUpIcon:ha,CircleDashed:ip,CircleDashedIcon:ip,CircleDivide:pa,CircleDivideIcon:pa,CircleDollarSign:cp,CircleDollarSignIcon:cp,CircleDot:dp,CircleDotDashed:sp,CircleDotDashedIcon:sp,CircleDotIcon:dp,CircleEllipsis:lp,CircleEllipsisIcon:lp,CircleEqual:up,CircleEqualIcon:up,CircleFadingArrowUp:hp,CircleFadingArrowUpIcon:hp,CircleFadingPlus:pp,CircleFadingPlusIcon:pp,CircleGauge:ya,CircleGaugeIcon:ya,CircleHelp:yo,CircleHelpIcon:yo,CircleIcon:Qo,CircleMinus:fa,CircleMinusIcon:fa,CircleOff:yp,CircleOffIcon:yp,CircleParking:ka,CircleParkingIcon:ka,CircleParkingOff:ma,CircleParkingOffIcon:ma,CirclePause:ga,CirclePauseIcon:ga,CirclePercent:va,CirclePercentIcon:va,CirclePile:fp,CirclePileIcon:fp,CirclePlay:ba,CirclePlayIcon:ba,CirclePlus:_a,CirclePlusIcon:_a,CirclePoundSterling:mp,CirclePoundSterlingIcon:mp,CirclePower:Ma,CirclePowerIcon:Ma,CircleQuestionMark:yo,CircleQuestionMarkIcon:yo,CircleSlash:kp,CircleSlash2:wa,CircleSlash2Icon:wa,CircleSlashIcon:kp,CircleSlashed:wa,CircleSlashedIcon:wa,CircleSmall:vp,CircleSmallIcon:vp,CircleStar:gp,CircleStarIcon:gp,CircleStop:xa,CircleStopIcon:xa,CircleUser:Ca,CircleUserIcon:Ca,CircleUserRound:Na,CircleUserRoundIcon:Na,CircleX:$a,CircleXIcon:$a,CircuitBoard:_p,CircuitBoardIcon:_p,Citrus:bp,CitrusIcon:bp,Clapperboard:Mp,ClapperboardIcon:Mp,Clipboard:Pp,ClipboardCheck:wp,ClipboardCheckIcon:wp,ClipboardClock:xp,ClipboardClockIcon:xp,ClipboardCopy:Np,ClipboardCopyIcon:Np,ClipboardEdit:La,ClipboardEditIcon:La,ClipboardIcon:Pp,ClipboardList:Cp,ClipboardListIcon:Cp,ClipboardMinus:$p,ClipboardMinusIcon:$p,ClipboardPaste:Sp,ClipboardPasteIcon:Sp,ClipboardPen:La,ClipboardPenIcon:La,ClipboardPenLine:Sa,ClipboardPenLineIcon:Sa,ClipboardPlus:Lp,ClipboardPlusIcon:Lp,ClipboardSignature:Sa,ClipboardSignatureIcon:Sa,ClipboardType:Ip,ClipboardTypeIcon:Ip,ClipboardX:Ap,ClipboardXIcon:Ap,Clock:Zp,Clock1:Tp,Clock10:Dp,Clock10Icon:Dp,Clock11:Ep,Clock11Icon:Ep,Clock12:zp,Clock12Icon:zp,Clock1Icon:Tp,Clock2:Op,Clock2Icon:Op,Clock3:qp,Clock3Icon:qp,Clock4:jp,Clock4Icon:jp,Clock5:Hp,Clock5Icon:Hp,Clock6:Vp,Clock6Icon:Vp,Clock7:Fp,Clock7Icon:Fp,Clock8:Bp,Clock8Icon:Bp,Clock9:Wp,Clock9Icon:Wp,ClockAlert:Up,ClockAlertIcon:Up,ClockArrowDown:Rp,ClockArrowDownIcon:Rp,ClockArrowUp:Gp,ClockArrowUpIcon:Gp,ClockCheck:Kp,ClockCheckIcon:Kp,ClockFading:Yp,ClockFadingIcon:Yp,ClockIcon:Zp,ClockPlus:Xp,ClockPlusIcon:Xp,ClosedCaption:Qp,ClosedCaptionIcon:Qp,Cloud:my,CloudAlert:Jp,CloudAlertIcon:Jp,CloudBackup:ey,CloudBackupIcon:ey,CloudCheck:ty,CloudCheckIcon:ty,CloudCog:oy,CloudCogIcon:oy,CloudDownload:Ia,CloudDownloadIcon:Ia,CloudDrizzle:ny,CloudDrizzleIcon:ny,CloudFog:ay,CloudFogIcon:ay,CloudHail:ry,CloudHailIcon:ry,CloudIcon:my,CloudLightning:iy,CloudLightningIcon:iy,CloudMoon:sy,CloudMoonIcon:sy,CloudMoonRain:cy,CloudMoonRainIcon:cy,CloudOff:dy,CloudOffIcon:dy,CloudRain:uy,CloudRainIcon:uy,CloudRainWind:ly,CloudRainWindIcon:ly,CloudSnow:hy,CloudSnowIcon:hy,CloudSun:yy,CloudSunIcon:yy,CloudSunRain:py,CloudSunRainIcon:py,CloudSync:fy,CloudSyncIcon:fy,CloudUpload:Aa,CloudUploadIcon:Aa,Cloudy:gy,CloudyIcon:gy,Clover:ky,CloverIcon:ky,Club:vy,ClubIcon:vy,Code:_y,Code2:Pa,Code2Icon:Pa,CodeIcon:_y,CodeSquare:Ni,CodeSquareIcon:Ni,CodeXml:Pa,CodeXmlIcon:Pa,Codepen:by,CodepenIcon:by,Codesandbox:My,CodesandboxIcon:My,Coffee:wy,CoffeeIcon:wy,Cog:xy,CogIcon:xy,Coins:Ny,CoinsIcon:Ny,Columns:Ta,Columns2:Ta,Columns2Icon:Ta,Columns3:Da,Columns3Cog:fo,Columns3CogIcon:fo,Columns3Icon:Da,Columns4:Cy,Columns4Icon:Cy,ColumnsIcon:Ta,ColumnsSettings:fo,ColumnsSettingsIcon:fo,Combine:$y,CombineIcon:$y,Command:Sy,CommandIcon:Sy,Compass:Ly,CompassIcon:Ly,Component:Iy,ComponentIcon:Iy,Computer:Ay,ComputerIcon:Ay,ConciergeBell:Py,ConciergeBellIcon:Py,Cone:Ty,ConeIcon:Ty,Construction:Dy,ConstructionIcon:Dy,Contact:Ey,Contact2:Ea,Contact2Icon:Ea,ContactIcon:Ey,ContactRound:Ea,ContactRoundIcon:Ea,Container:zy,ContainerIcon:zy,Contrast:Oy,ContrastIcon:Oy,Cookie:qy,CookieIcon:qy,CookingPot:jy,CookingPotIcon:jy,Copy:Ry,CopyCheck:Hy,CopyCheckIcon:Hy,CopyIcon:Ry,CopyMinus:Vy,CopyMinusIcon:Vy,CopyPlus:Fy,CopyPlusIcon:Fy,CopySlash:By,CopySlashIcon:By,CopyX:Wy,CopyXIcon:Wy,Copyleft:Uy,CopyleftIcon:Uy,Copyright:Gy,CopyrightIcon:Gy,CornerDownLeft:Ky,CornerDownLeftIcon:Ky,CornerDownRight:Yy,CornerDownRightIcon:Yy,CornerLeftDown:Xy,CornerLeftDownIcon:Xy,CornerLeftUp:Zy,CornerLeftUpIcon:Zy,CornerRightDown:Qy,CornerRightDownIcon:Qy,CornerRightUp:Jy,CornerRightUpIcon:Jy,CornerUpLeft:ef,CornerUpLeftIcon:ef,CornerUpRight:tf,CornerUpRightIcon:tf,Cpu:of,CpuIcon:of,CreativeCommons:nf,CreativeCommonsIcon:nf,CreditCard:af,CreditCardIcon:af,Croissant:rf,CroissantIcon:rf,Crop:cf,CropIcon:cf,Cross:sf,CrossIcon:sf,Crosshair:lf,CrosshairIcon:lf,Crown:df,CrownIcon:df,Cuboid:uf,CuboidIcon:uf,CupSoda:hf,CupSodaIcon:hf,CurlyBraces:On,CurlyBracesIcon:On,Currency:pf,CurrencyIcon:pf,Cylinder:yf,CylinderIcon:yf,Dam:ff,DamIcon:ff,Database:gf,DatabaseBackup:mf,DatabaseBackupIcon:mf,DatabaseIcon:gf,DatabaseZap:kf,DatabaseZapIcon:kf,DecimalsArrowLeft:vf,DecimalsArrowLeftIcon:vf,DecimalsArrowRight:_f,DecimalsArrowRightIcon:_f,Delete:bf,DeleteIcon:bf,Dessert:Mf,DessertIcon:Mf,Diameter:wf,DiameterIcon:wf,Diamond:Cf,DiamondIcon:Cf,DiamondMinus:xf,DiamondMinusIcon:xf,DiamondPercent:za,DiamondPercentIcon:za,DiamondPlus:Nf,DiamondPlusIcon:Nf,Dice1:$f,Dice1Icon:$f,Dice2:Sf,Dice2Icon:Sf,Dice3:Lf,Dice3Icon:Lf,Dice4:If,Dice4Icon:If,Dice5:Af,Dice5Icon:Af,Dice6:Pf,Dice6Icon:Pf,Dices:Tf,DicesIcon:Tf,Diff:Df,DiffIcon:Df,Disc:qf,Disc2:Ef,Disc2Icon:Ef,Disc3:zf,Disc3Icon:zf,DiscAlbum:Of,DiscAlbumIcon:Of,DiscIcon:qf,Divide:jf,DivideCircle:pa,DivideCircleIcon:pa,DivideIcon:jf,DivideSquare:Li,DivideSquareIcon:Li,Dna:Vf,DnaIcon:Vf,DnaOff:Hf,DnaOffIcon:Hf,Dock:Ff,DockIcon:Ff,Dog:Bf,DogIcon:Bf,DollarSign:Wf,DollarSignIcon:Wf,Donut:Uf,DonutIcon:Uf,DoorClosed:Gf,DoorClosedIcon:Gf,DoorClosedLocked:Rf,DoorClosedLockedIcon:Rf,DoorOpen:Kf,DoorOpenIcon:Kf,Dot:Us,DotIcon:Us,DotSquare:Ii,DotSquareIcon:Ii,Download:Rs,DownloadCloud:Ia,DownloadCloudIcon:Ia,DownloadIcon:Rs,DraftingCompass:Yf,DraftingCompassIcon:Yf,Drama:Xf,DramaIcon:Xf,Dribbble:Qf,DribbbleIcon:Qf,Drill:Zf,DrillIcon:Zf,Drone:Jf,DroneIcon:Jf,Droplet:tm,DropletIcon:tm,DropletOff:em,DropletOffIcon:em,Droplets:om,DropletsIcon:om,Drum:nm,DrumIcon:nm,Drumstick:am,DrumstickIcon:am,Dumbbell:rm,DumbbellIcon:rm,Ear:im,EarIcon:im,EarOff:cm,EarOffIcon:cm,Earth:Oa,EarthIcon:Oa,EarthLock:sm,EarthLockIcon:sm,Eclipse:dm,EclipseIcon:dm,Edit:_t,Edit2:Ur,Edit2Icon:Ur,Edit3:Wr,Edit3Icon:Wr,EditIcon:_t,Egg:hm,EggFried:lm,EggFriedIcon:lm,EggIcon:hm,EggOff:um,EggOffIcon:um,Ellipsis:Ho,EllipsisIcon:Ho,EllipsisVertical:qa,EllipsisVerticalIcon:qa,Equal:fm,EqualApproximately:pm,EqualApproximatelyIcon:pm,EqualIcon:fm,EqualNot:ym,EqualNotIcon:ym,EqualSquare:Ai,EqualSquareIcon:Ai,Eraser:mm,EraserIcon:mm,EthernetPort:km,EthernetPortIcon:km,Euro:gm,EuroIcon:gm,EvCharger:vm,EvChargerIcon:vm,Expand:_m,ExpandIcon:_m,ExternalLink:bm,ExternalLinkIcon:bm,Eye:xm,EyeClosed:Mm,EyeClosedIcon:Mm,EyeIcon:xm,EyeOff:wm,EyeOffIcon:wm,Facebook:Nm,FacebookIcon:Nm,Factory:Cm,FactoryIcon:Cm,Fan:$m,FanIcon:$m,FastForward:Sm,FastForwardIcon:Sm,Feather:Lm,FeatherIcon:Lm,Fence:Im,FenceIcon:Im,FerrisWheel:Am,FerrisWheelIcon:Am,Figma:Pm,FigmaIcon:Pm,File:Gs,FileArchive:Tm,FileArchiveIcon:Tm,FileAudio:mo,FileAudio2:mo,FileAudio2Icon:mo,FileAudioIcon:mo,FileAxis3D:ja,FileAxis3DIcon:ja,FileAxis3d:ja,FileAxis3dIcon:ja,FileBadge:Ha,FileBadge2:Ha,FileBadge2Icon:Ha,FileBadgeIcon:Ha,FileBarChart:Wa,FileBarChart2:Ba,FileBarChart2Icon:Ba,FileBarChartIcon:Wa,FileBox:Dm,FileBoxIcon:Dm,FileBraces:Fa,FileBracesCorner:Va,FileBracesCornerIcon:Va,FileBracesIcon:Fa,FileChartColumn:Ba,FileChartColumnIcon:Ba,FileChartColumnIncreasing:Wa,FileChartColumnIncreasingIcon:Wa,FileChartLine:Ua,FileChartLineIcon:Ua,FileChartPie:Ra,FileChartPieIcon:Ra,FileCheck:Em,FileCheck2:Ga,FileCheck2Icon:Ga,FileCheckCorner:Ga,FileCheckCornerIcon:Ga,FileCheckIcon:Em,FileClock:zm,FileClockIcon:zm,FileCode:Om,FileCode2:Ka,FileCode2Icon:Ka,FileCodeCorner:Ka,FileCodeCornerIcon:Ka,FileCodeIcon:Om,FileCog:Ya,FileCog2:Ya,FileCog2Icon:Ya,FileCogIcon:Ya,FileDiff:Hm,FileDiffIcon:Hm,FileDigit:qm,FileDigitIcon:qm,FileDown:jm,FileDownIcon:jm,FileEdit:tr,FileEditIcon:tr,FileExclamationPoint:Xa,FileExclamationPointIcon:Xa,FileHeadphone:mo,FileHeadphoneIcon:mo,FileHeart:Vm,FileHeartIcon:Vm,FileIcon:Gs,FileImage:Fm,FileImageIcon:Fm,FileInput:Bm,FileInputIcon:Bm,FileJson:Fa,FileJson2:Va,FileJson2Icon:Va,FileJsonIcon:Fa,FileKey:Za,FileKey2:Za,FileKey2Icon:Za,FileKeyIcon:Za,FileLineChart:Ua,FileLineChartIcon:Ua,FileLock:Qa,FileLock2:Qa,FileLock2Icon:Qa,FileLockIcon:Qa,FileMinus:Wm,FileMinus2:Ja,FileMinus2Icon:Ja,FileMinusCorner:Ja,FileMinusCornerIcon:Ja,FileMinusIcon:Wm,FileMusic:Um,FileMusicIcon:Um,FileOutput:Rm,FileOutputIcon:Rm,FilePen:tr,FilePenIcon:tr,FilePenLine:er,FilePenLineIcon:er,FilePieChart:Ra,FilePieChartIcon:Ra,FilePlay:or,FilePlayIcon:or,FilePlus:Gm,FilePlus2:nr,FilePlus2Icon:nr,FilePlusCorner:nr,FilePlusCornerIcon:nr,FilePlusIcon:Gm,FileQuestion:ar,FileQuestionIcon:ar,FileQuestionMark:ar,FileQuestionMarkIcon:ar,FileScan:Km,FileScanIcon:Km,FileSearch:Ym,FileSearch2:rr,FileSearch2Icon:rr,FileSearchCorner:rr,FileSearchCornerIcon:rr,FileSearchIcon:Ym,FileSignal:ir,FileSignalIcon:ir,FileSignature:er,FileSignatureIcon:er,FileSliders:Xm,FileSlidersIcon:Xm,FileSpreadsheet:Zm,FileSpreadsheetIcon:Zm,FileStack:Qm,FileStackIcon:Qm,FileSymlink:Jm,FileSymlinkIcon:Jm,FileTerminal:ek,FileTerminalIcon:ek,FileText:tk,FileTextIcon:tk,FileType:ok,FileType2:cr,FileType2Icon:cr,FileTypeCorner:cr,FileTypeCornerIcon:cr,FileTypeIcon:ok,FileUp:nk,FileUpIcon:nk,FileUser:ak,FileUserIcon:ak,FileVideo:or,FileVideo2:sr,FileVideo2Icon:sr,FileVideoCamera:sr,FileVideoCameraIcon:sr,FileVideoIcon:or,FileVolume:rk,FileVolume2:ir,FileVolume2Icon:ir,FileVolumeIcon:rk,FileWarning:Xa,FileWarningIcon:Xa,FileX:ik,FileX2:dr,FileX2Icon:dr,FileXCorner:dr,FileXCornerIcon:dr,FileXIcon:ik,Files:ck,FilesIcon:ck,Film:sk,FilmIcon:sk,Filter:yr,FilterIcon:yr,FilterX:pr,FilterXIcon:pr,Fingerprint:lr,FingerprintIcon:lr,FingerprintPattern:lr,FingerprintPatternIcon:lr,FireExtinguisher:dk,FireExtinguisherIcon:dk,Fish:hk,FishIcon:hk,FishOff:lk,FishOffIcon:lk,FishSymbol:uk,FishSymbolIcon:uk,FishingHook:pk,FishingHookIcon:pk,Flag:kk,FlagIcon:kk,FlagOff:yk,FlagOffIcon:yk,FlagTriangleLeft:fk,FlagTriangleLeftIcon:fk,FlagTriangleRight:mk,FlagTriangleRightIcon:mk,Flame:vk,FlameIcon:vk,FlameKindling:gk,FlameKindlingIcon:gk,Flashlight:bk,FlashlightIcon:bk,FlashlightOff:_k,FlashlightOffIcon:_k,FlaskConical:wk,FlaskConicalIcon:wk,FlaskConicalOff:Mk,FlaskConicalOffIcon:Mk,FlaskRound:xk,FlaskRoundIcon:xk,FlipHorizontal:Ck,FlipHorizontal2:Nk,FlipHorizontal2Icon:Nk,FlipHorizontalIcon:Ck,FlipVertical:Sk,FlipVertical2:$k,FlipVertical2Icon:$k,FlipVerticalIcon:Sk,Flower:Ik,Flower2:Lk,Flower2Icon:Lk,FlowerIcon:Ik,Focus:Ak,FocusIcon:Ak,FoldHorizontal:Tk,FoldHorizontalIcon:Tk,FoldVertical:Pk,FoldVerticalIcon:Pk,Folder:Ys,FolderArchive:Dk,FolderArchiveIcon:Dk,FolderCheck:Ek,FolderCheckIcon:Ek,FolderClock:zk,FolderClockIcon:zk,FolderClosed:Ok,FolderClosedIcon:Ok,FolderCode:qk,FolderCodeIcon:qk,FolderCog:ur,FolderCog2:ur,FolderCog2Icon:ur,FolderCogIcon:ur,FolderDot:jk,FolderDotIcon:jk,FolderDown:Hk,FolderDownIcon:Hk,FolderEdit:hr,FolderEditIcon:hr,FolderGit:Fk,FolderGit2:Vk,FolderGit2Icon:Vk,FolderGitIcon:Fk,FolderHeart:Bk,FolderHeartIcon:Bk,FolderIcon:Ys,FolderInput:Wk,FolderInputIcon:Wk,FolderKanban:Rk,FolderKanbanIcon:Rk,FolderKey:Uk,FolderKeyIcon:Uk,FolderLock:Gk,FolderLockIcon:Gk,FolderMinus:Kk,FolderMinusIcon:Kk,FolderOpen:Ks,FolderOpenDot:Yk,FolderOpenDotIcon:Yk,FolderOpenIcon:Ks,FolderOutput:Xk,FolderOutputIcon:Xk,FolderPen:hr,FolderPenIcon:hr,FolderPlus:Zk,FolderPlusIcon:Zk,FolderRoot:Qk,FolderRootIcon:Qk,FolderSearch:eg,FolderSearch2:Jk,FolderSearch2Icon:Jk,FolderSearchIcon:eg,FolderSymlink:tg,FolderSymlinkIcon:tg,FolderSync:og,FolderSyncIcon:og,FolderTree:ng,FolderTreeIcon:ng,FolderUp:ag,FolderUpIcon:ag,FolderX:ig,FolderXIcon:ig,Folders:rg,FoldersIcon:rg,Footprints:cg,FootprintsIcon:cg,ForkKnife:Mc,ForkKnifeCrossed:bc,ForkKnifeCrossedIcon:bc,ForkKnifeIcon:Mc,Forklift:sg,ForkliftIcon:sg,Form:dg,FormIcon:dg,FormInput:Gr,FormInputIcon:Gr,Forward:lg,ForwardIcon:lg,Frame:ug,FrameIcon:ug,Framer:hg,FramerIcon:hg,Frown:pg,FrownIcon:pg,Fuel:yg,FuelIcon:yg,Fullscreen:fg,FullscreenIcon:fg,FunctionSquare:Pi,FunctionSquareIcon:Pi,Funnel:yr,FunnelIcon:yr,FunnelPlus:mg,FunnelPlusIcon:mg,FunnelX:pr,FunnelXIcon:pr,GalleryHorizontal:gg,GalleryHorizontalEnd:kg,GalleryHorizontalEndIcon:kg,GalleryHorizontalIcon:gg,GalleryThumbnails:vg,GalleryThumbnailsIcon:vg,GalleryVertical:bg,GalleryVerticalEnd:_g,GalleryVerticalEndIcon:_g,GalleryVerticalIcon:bg,Gamepad:xg,Gamepad2:Mg,Gamepad2Icon:Mg,GamepadDirectional:wg,GamepadDirectionalIcon:wg,GamepadIcon:xg,GanttChart:Yn,GanttChartIcon:Yn,GanttChartSquare:_o,GanttChartSquareIcon:_o,Gauge:Ng,GaugeCircle:ya,GaugeCircleIcon:ya,GaugeIcon:Ng,Gavel:$g,GavelIcon:$g,Gem:Cg,GemIcon:Cg,GeorgianLari:Lg,GeorgianLariIcon:Lg,Ghost:Sg,GhostIcon:Sg,Gift:Ig,GiftIcon:Ig,GitBranch:Tg,GitBranchIcon:Tg,GitBranchMinus:Ag,GitBranchMinusIcon:Ag,GitBranchPlus:Pg,GitBranchPlusIcon:Pg,GitCommit:fr,GitCommitHorizontal:fr,GitCommitHorizontalIcon:fr,GitCommitIcon:fr,GitCommitVertical:Dg,GitCommitVerticalIcon:Dg,GitCompare:zg,GitCompareArrows:Eg,GitCompareArrowsIcon:Eg,GitCompareIcon:zg,GitFork:Og,GitForkIcon:Og,GitGraph:qg,GitGraphIcon:qg,GitMerge:jg,GitMergeIcon:jg,GitPullRequest:Ug,GitPullRequestArrow:Hg,GitPullRequestArrowIcon:Hg,GitPullRequestClosed:Vg,GitPullRequestClosedIcon:Vg,GitPullRequestCreate:Bg,GitPullRequestCreateArrow:Fg,GitPullRequestCreateArrowIcon:Fg,GitPullRequestCreateIcon:Bg,GitPullRequestDraft:Wg,GitPullRequestDraftIcon:Wg,GitPullRequestIcon:Ug,Github:Rg,GithubIcon:Rg,Gitlab:Gg,GitlabIcon:Gg,GlassWater:Kg,GlassWaterIcon:Kg,Glasses:Yg,GlassesIcon:Yg,Globe:Qg,Globe2:Oa,Globe2Icon:Oa,GlobeIcon:Qg,GlobeLock:Xg,GlobeLockIcon:Xg,GlobeX:Zg,GlobeXIcon:Zg,Goal:e4,GoalIcon:e4,Gpu:Jg,GpuIcon:Jg,Grab:_r,GrabIcon:_r,GraduationCap:t4,GraduationCapIcon:t4,Grape:o4,GrapeIcon:o4,Grid:ko,Grid2X2:vr,Grid2X2Check:mr,Grid2X2CheckIcon:mr,Grid2X2Icon:vr,Grid2X2Plus:kr,Grid2X2PlusIcon:kr,Grid2X2X:gr,Grid2X2XIcon:gr,Grid2x2:vr,Grid2x2Check:mr,Grid2x2CheckIcon:mr,Grid2x2Icon:vr,Grid2x2Plus:kr,Grid2x2PlusIcon:kr,Grid2x2X:gr,Grid2x2XIcon:gr,Grid3X3:ko,Grid3X3Icon:ko,Grid3x2:n4,Grid3x2Icon:n4,Grid3x3:ko,Grid3x3Icon:ko,GridIcon:ko,Grip:r4,GripHorizontal:a4,GripHorizontalIcon:a4,GripIcon:r4,GripVertical:es,GripVerticalIcon:es,Group:i4,GroupIcon:i4,Guitar:c4,GuitarIcon:c4,Ham:s4,HamIcon:s4,Hamburger:d4,HamburgerIcon:d4,Hammer:l4,HammerIcon:l4,Hand:m4,HandCoins:u4,HandCoinsIcon:u4,HandFist:h4,HandFistIcon:h4,HandGrab:_r,HandGrabIcon:_r,HandHeart:p4,HandHeartIcon:p4,HandHelping:br,HandHelpingIcon:br,HandIcon:m4,HandMetal:y4,HandMetalIcon:y4,HandPlatter:f4,HandPlatterIcon:f4,Handbag:k4,HandbagIcon:k4,Handshake:g4,HandshakeIcon:g4,HardDrive:M4,HardDriveDownload:v4,HardDriveDownloadIcon:v4,HardDriveIcon:M4,HardDriveUpload:_4,HardDriveUploadIcon:_4,HardHat:b4,HardHatIcon:b4,Hash:w4,HashIcon:w4,HatGlasses:x4,HatGlassesIcon:x4,Haze:N4,HazeIcon:N4,Hd:C4,HdIcon:C4,HdmiPort:$4,HdmiPortIcon:$4,Heading:D4,Heading1:S4,Heading1Icon:S4,Heading2:L4,Heading2Icon:L4,Heading3:I4,Heading3Icon:I4,Heading4:A4,Heading4Icon:A4,Heading5:P4,Heading5Icon:P4,Heading6:T4,Heading6Icon:T4,HeadingIcon:D4,HeadphoneOff:E4,HeadphoneOffIcon:E4,Headphones:z4,HeadphonesIcon:z4,Headset:O4,HeadsetIcon:O4,Heart:W4,HeartCrack:q4,HeartCrackIcon:q4,HeartHandshake:j4,HeartHandshakeIcon:j4,HeartIcon:W4,HeartMinus:H4,HeartMinusIcon:H4,HeartOff:V4,HeartOffIcon:V4,HeartPlus:F4,HeartPlusIcon:F4,HeartPulse:B4,HeartPulseIcon:B4,Heater:U4,HeaterIcon:U4,Helicopter:R4,HelicopterIcon:R4,HelpCircle:yo,HelpCircleIcon:yo,HelpingHand:br,HelpingHandIcon:br,Hexagon:G4,HexagonIcon:G4,Highlighter:K4,HighlighterIcon:K4,History:Y4,HistoryIcon:Y4,Home:Mr,HomeIcon:Mr,Hop:Z4,HopIcon:Z4,HopOff:X4,HopOffIcon:X4,Hospital:Q4,HospitalIcon:Q4,Hotel:J4,HotelIcon:J4,Hourglass:e5,HourglassIcon:e5,House:Mr,HouseHeart:t5,HouseHeartIcon:t5,HouseIcon:Mr,HousePlug:o5,HousePlugIcon:o5,HousePlus:n5,HousePlusIcon:n5,HouseWifi:a5,HouseWifiIcon:a5,IceCream:xr,IceCream2:wr,IceCream2Icon:wr,IceCreamBowl:wr,IceCreamBowlIcon:wr,IceCreamCone:xr,IceCreamConeIcon:xr,IceCreamIcon:xr,Icon:bD,IdCard:i5,IdCardIcon:i5,IdCardLanyard:r5,IdCardLanyardIcon:r5,Image:y5,ImageDown:c5,ImageDownIcon:c5,ImageIcon:y5,ImageMinus:s5,ImageMinusIcon:s5,ImageOff:d5,ImageOffIcon:d5,ImagePlay:l5,ImagePlayIcon:l5,ImagePlus:u5,ImagePlusIcon:u5,ImageUp:h5,ImageUpIcon:h5,ImageUpscale:p5,ImageUpscaleIcon:p5,Images:f5,ImagesIcon:f5,Import:m5,ImportIcon:m5,Inbox:Xs,InboxIcon:Xs,Indent:vo,IndentDecrease:go,IndentDecreaseIcon:go,IndentIcon:vo,IndentIncrease:vo,IndentIncreaseIcon:vo,IndianRupee:k5,IndianRupeeIcon:k5,Infinity:g5,InfinityIcon:g5,Info:Zs,InfoIcon:Zs,Inspect:qi,InspectIcon:qi,InspectionPanel:v5,InspectionPanelIcon:v5,Instagram:_5,InstagramIcon:_5,Italic:b5,ItalicIcon:b5,IterationCcw:M5,IterationCcwIcon:M5,IterationCw:w5,IterationCwIcon:w5,JapaneseYen:x5,JapaneseYenIcon:x5,Joystick:N5,JoystickIcon:N5,Kanban:C5,KanbanIcon:C5,KanbanSquare:Di,KanbanSquareDashed:$i,KanbanSquareDashedIcon:$i,KanbanSquareIcon:Di,Kayak:$5,KayakIcon:$5,Key:I5,KeyIcon:I5,KeyRound:S5,KeyRoundIcon:S5,KeySquare:L5,KeySquareIcon:L5,Keyboard:T5,KeyboardIcon:T5,KeyboardMusic:A5,KeyboardMusicIcon:A5,KeyboardOff:P5,KeyboardOffIcon:P5,Lamp:j5,LampCeiling:D5,LampCeilingIcon:D5,LampDesk:E5,LampDeskIcon:E5,LampFloor:z5,LampFloorIcon:z5,LampIcon:j5,LampWallDown:O5,LampWallDownIcon:O5,LampWallUp:q5,LampWallUpIcon:q5,LandPlot:H5,LandPlotIcon:H5,Landmark:V5,LandmarkIcon:V5,Languages:F5,LanguagesIcon:F5,Laptop:W5,Laptop2:Nr,Laptop2Icon:Nr,LaptopIcon:W5,LaptopMinimal:Nr,LaptopMinimalCheck:B5,LaptopMinimalCheckIcon:B5,LaptopMinimalIcon:Nr,Lasso:R5,LassoIcon:R5,LassoSelect:U5,LassoSelectIcon:U5,Laugh:G5,LaughIcon:G5,Layers:Cr,Layers2:K5,Layers2Icon:K5,Layers3:Cr,Layers3Icon:Cr,LayersIcon:Cr,LayersPlus:Y5,LayersPlusIcon:Y5,Layout:Br,LayoutDashboard:X5,LayoutDashboardIcon:X5,LayoutGrid:Z5,LayoutGridIcon:Z5,LayoutIcon:Br,LayoutList:Q5,LayoutListIcon:Q5,LayoutPanelLeft:J5,LayoutPanelLeftIcon:J5,LayoutPanelTop:ev,LayoutPanelTopIcon:ev,LayoutTemplate:tv,LayoutTemplateIcon:tv,Leaf:ov,LeafIcon:ov,LeafyGreen:nv,LeafyGreenIcon:nv,Lectern:av,LecternIcon:av,LetterText:ic,LetterTextIcon:ic,Library:iv,LibraryBig:rv,LibraryBigIcon:rv,LibraryIcon:iv,LibrarySquare:Ti,LibrarySquareIcon:Ti,LifeBuoy:cv,LifeBuoyIcon:cv,Ligature:sv,LigatureIcon:sv,Lightbulb:lv,LightbulbIcon:lv,LightbulbOff:dv,LightbulbOffIcon:dv,LineChart:Rn,LineChartIcon:Rn,LineSquiggle:uv,LineSquiggleIcon:uv,Link:yv,Link2:pv,Link2Icon:pv,Link2Off:hv,Link2OffIcon:hv,LinkIcon:yv,Linkedin:fv,LinkedinIcon:fv,List:Dv,ListCheck:mv,ListCheckIcon:mv,ListChecks:kv,ListChecksIcon:kv,ListChevronsDownUp:gv,ListChevronsDownUpIcon:gv,ListChevronsUpDown:vv,ListChevronsUpDownIcon:vv,ListCollapse:_v,ListCollapseIcon:_v,ListEnd:bv,ListEndIcon:bv,ListFilter:wv,ListFilterIcon:wv,ListFilterPlus:Mv,ListFilterPlusIcon:Mv,ListIcon:Dv,ListIndentDecrease:go,ListIndentDecreaseIcon:go,ListIndentIncrease:vo,ListIndentIncreaseIcon:vo,ListMinus:xv,ListMinusIcon:xv,ListMusic:Nv,ListMusicIcon:Nv,ListOrdered:Cv,ListOrderedIcon:Cv,ListPlus:$v,ListPlusIcon:$v,ListRestart:Sv,ListRestartIcon:Sv,ListStart:Lv,ListStartIcon:Lv,ListTodo:Iv,ListTodoIcon:Iv,ListTree:Av,ListTreeIcon:Av,ListVideo:Pv,ListVideoIcon:Pv,ListX:Tv,ListXIcon:Tv,Loader:zv,Loader2:Vt,Loader2Icon:Vt,LoaderCircle:Vt,LoaderCircleIcon:Vt,LoaderIcon:zv,LoaderPinwheel:Ev,LoaderPinwheelIcon:Ev,Locate:jv,LocateFixed:Ov,LocateFixedIcon:Ov,LocateIcon:jv,LocateOff:qv,LocateOffIcon:qv,LocationEdit:Ir,LocationEditIcon:Ir,Lock:Vv,LockIcon:Vv,LockKeyhole:Hv,LockKeyholeIcon:Hv,LockKeyholeOpen:$r,LockKeyholeOpenIcon:$r,LockOpen:Sr,LockOpenIcon:Sr,LogIn:Fv,LogInIcon:Fv,LogOut:Bv,LogOutIcon:Bv,Logs:Wv,LogsIcon:Wv,Lollipop:Uv,LollipopIcon:Uv,LucideAArrowDown:x1,LucideAArrowUp:N1,LucideALargeSmall:C1,LucideAccessibility:$1,LucideActivity:S1,LucideActivitySquare:ai,LucideAirVent:L1,LucideAirplay:I1,LucideAlarmCheck:Mn,LucideAlarmClock:P1,LucideAlarmClockCheck:Mn,LucideAlarmClockMinus:wn,LucideAlarmClockOff:A1,LucideAlarmClockPlus:xn,LucideAlarmMinus:wn,LucideAlarmPlus:xn,LucideAlarmSmoke:T1,LucideAlbum:D1,LucideAlertCircle:Zo,LucideAlertOctagon:Dr,LucideAlertTriangle:tn,LucideAlignCenter:nc,LucideAlignCenterHorizontal:E1,LucideAlignCenterVertical:z1,LucideAlignEndHorizontal:O1,LucideAlignEndVertical:q1,LucideAlignHorizontalDistributeCenter:j1,LucideAlignHorizontalDistributeEnd:H1,LucideAlignHorizontalDistributeStart:V1,LucideAlignHorizontalJustifyCenter:F1,LucideAlignHorizontalJustifyEnd:B1,LucideAlignHorizontalJustifyStart:W1,LucideAlignHorizontalSpaceAround:U1,LucideAlignHorizontalSpaceBetween:R1,LucideAlignJustify:rc,LucideAlignLeft:bo,LucideAlignRight:ac,LucideAlignStartHorizontal:G1,LucideAlignStartVertical:K1,LucideAlignVerticalDistributeCenter:Y1,LucideAlignVerticalDistributeEnd:X1,LucideAlignVerticalDistributeStart:Z1,LucideAlignVerticalJustifyCenter:J1,LucideAlignVerticalJustifyEnd:Q1,LucideAlignVerticalJustifyStart:el,LucideAlignVerticalSpaceAround:tl,LucideAlignVerticalSpaceBetween:ol,LucideAmbulance:nl,LucideAmpersand:al,LucideAmpersands:rl,LucideAmphora:il,LucideAnchor:sl,LucideAngry:cl,LucideAnnoyed:dl,LucideAntenna:ll,LucideAnvil:ul,LucideAperture:hl,LucideAppWindow:yl,LucideAppWindowMac:pl,LucideApple:fl,LucideArchive:gl,LucideArchiveRestore:ml,LucideArchiveX:kl,LucideAreaChart:jn,LucideArmchair:vl,LucideArrowBigDown:bl,LucideArrowBigDownDash:_l,LucideArrowBigLeft:wl,LucideArrowBigLeftDash:Ml,LucideArrowBigRight:Nl,LucideArrowBigRightDash:xl,LucideArrowBigUp:$l,LucideArrowBigUpDash:Cl,LucideArrowDown:Ol,LucideArrowDown01:Sl,LucideArrowDown10:Ll,LucideArrowDownAZ:Nn,LucideArrowDownAz:Nn,LucideArrowDownCircle:ea,LucideArrowDownFromLine:Il,LucideArrowDownLeft:Al,LucideArrowDownLeftFromCircle:oa,LucideArrowDownLeftFromSquare:di,LucideArrowDownLeftSquare:ri,LucideArrowDownNarrowWide:Pl,LucideArrowDownRight:Tl,LucideArrowDownRightFromCircle:na,LucideArrowDownRightFromSquare:li,LucideArrowDownRightSquare:ci,LucideArrowDownSquare:ii,LucideArrowDownToDot:Dl,LucideArrowDownToLine:El,LucideArrowDownUp:zl,LucideArrowDownWideNarrow:Cn,LucideArrowDownZA:$n,LucideArrowDownZa:$n,LucideArrowLeft:Zc,LucideArrowLeftCircle:ta,LucideArrowLeftFromLine:ql,LucideArrowLeftRight:jl,LucideArrowLeftSquare:si,LucideArrowLeftToLine:Hl,LucideArrowRight:Vs,LucideArrowRightCircle:ia,LucideArrowRightFromLine:Vl,LucideArrowRightLeft:Fl,LucideArrowRightSquare:pi,LucideArrowRightToLine:Bl,LucideArrowUp:Jl,LucideArrowUp01:Wl,LucideArrowUp10:Ul,LucideArrowUpAZ:Sn,LucideArrowUpAz:Sn,LucideArrowUpCircle:ca,LucideArrowUpDown:Rl,LucideArrowUpFromDot:Gl,LucideArrowUpFromLine:Kl,LucideArrowUpLeft:Yl,LucideArrowUpLeftFromCircle:aa,LucideArrowUpLeftFromSquare:ui,LucideArrowUpLeftSquare:yi,LucideArrowUpNarrowWide:Ln,LucideArrowUpRight:Xl,LucideArrowUpRightFromCircle:ra,LucideArrowUpRightFromSquare:hi,LucideArrowUpRightSquare:fi,LucideArrowUpSquare:mi,LucideArrowUpToLine:Zl,LucideArrowUpWideNarrow:Ql,LucideArrowUpZA:In,LucideArrowUpZa:In,LucideArrowsUpFromLine:e2,LucideAsterisk:t2,LucideAsteriskSquare:ki,LucideAtSign:o2,LucideAtom:n2,LucideAudioLines:a2,LucideAudioWaveform:r2,LucideAward:i2,LucideAxe:c2,LucideAxis3D:An,LucideAxis3d:An,LucideBaby:d2,LucideBackpack:s2,LucideBadge:C2,LucideBadgeAlert:l2,LucideBadgeCent:u2,LucideBadgeCheck:Pn,LucideBadgeDollarSign:h2,LucideBadgeEuro:p2,LucideBadgeHelp:Tn,LucideBadgeIndianRupee:y2,LucideBadgeInfo:f2,LucideBadgeJapaneseYen:m2,LucideBadgeMinus:k2,LucideBadgePercent:g2,LucideBadgePlus:v2,LucideBadgePoundSterling:_2,LucideBadgeQuestionMark:Tn,LucideBadgeRussianRuble:b2,LucideBadgeSwissFranc:M2,LucideBadgeTurkishLira:w2,LucideBadgeX:x2,LucideBaggageClaim:N2,LucideBalloon:$2,LucideBan:S2,LucideBanana:L2,LucideBandage:A2,LucideBanknote:E2,LucideBanknoteArrowDown:I2,LucideBanknoteArrowUp:P2,LucideBanknoteX:T2,LucideBarChart:Gn,LucideBarChart2:Kn,LucideBarChart3:Un,LucideBarChart4:Wn,LucideBarChartBig:Bn,LucideBarChartHorizontal:Vn,LucideBarChartHorizontalBig:Hn,LucideBarcode:D2,LucideBarrel:z2,LucideBaseline:O2,LucideBath:q2,LucideBattery:R2,LucideBatteryCharging:j2,LucideBatteryFull:H2,LucideBatteryLow:V2,LucideBatteryMedium:F2,LucideBatteryPlus:B2,LucideBatteryWarning:W2,LucideBeaker:U2,LucideBean:K2,LucideBeanOff:G2,LucideBed:Z2,LucideBedDouble:Y2,LucideBedSingle:X2,LucideBeef:Q2,LucideBeer:t0,LucideBeerOff:J2,LucideBell:c0,LucideBellDot:e0,LucideBellElectric:o0,LucideBellMinus:n0,LucideBellOff:a0,LucideBellPlus:r0,LucideBellRing:i0,LucideBetweenHorizonalEnd:Dn,LucideBetweenHorizonalStart:En,LucideBetweenHorizontalEnd:Dn,LucideBetweenHorizontalStart:En,LucideBetweenVerticalEnd:s0,LucideBetweenVerticalStart:d0,LucideBicepsFlexed:l0,LucideBike:u0,LucideBinary:h0,LucideBinoculars:p0,LucideBiohazard:y0,LucideBird:f0,LucideBirdhouse:m0,LucideBitcoin:k0,LucideBlend:g0,LucideBlinds:v0,LucideBlocks:_0,LucideBluetooth:N0,LucideBluetoothConnected:b0,LucideBluetoothOff:M0,LucideBluetoothSearching:w0,LucideBold:x0,LucideBolt:C0,LucideBomb:S0,LucideBone:$0,LucideBook:J0,LucideBookA:L0,LucideBookAlert:I0,LucideBookAudio:A0,LucideBookCheck:P0,LucideBookCopy:T0,LucideBookDashed:zn,LucideBookDown:D0,LucideBookHeadphones:E0,LucideBookHeart:z0,LucideBookImage:O0,LucideBookKey:q0,LucideBookLock:j0,LucideBookMarked:V0,LucideBookMinus:H0,LucideBookOpen:B0,LucideBookOpenCheck:F0,LucideBookOpenText:W0,LucideBookPlus:U0,LucideBookSearch:R0,LucideBookTemplate:zn,LucideBookText:G0,LucideBookType:K0,LucideBookUp:X0,LucideBookUp2:Y0,LucideBookUser:Z0,LucideBookX:Q0,LucideBookmark:au,LucideBookmarkCheck:eu,LucideBookmarkMinus:tu,LucideBookmarkPlus:ou,LucideBookmarkX:nu,LucideBoomBox:ru,LucideBot:su,LucideBotMessageSquare:iu,LucideBotOff:cu,LucideBottleWine:lu,LucideBowArrow:du,LucideBox:uu,LucideBoxSelect:Si,LucideBoxes:hu,LucideBraces:On,LucideBrackets:pu,LucideBrain:mu,LucideBrainCircuit:yu,LucideBrainCog:fu,LucideBrickWall:vu,LucideBrickWallFire:ku,LucideBrickWallShield:gu,LucideBriefcase:wu,LucideBriefcaseBusiness:_u,LucideBriefcaseConveyorBelt:bu,LucideBriefcaseMedical:Mu,LucideBringToFront:xu,LucideBrush:Nu,LucideBrushCleaning:Cu,LucideBubbles:$u,LucideBug:Iu,LucideBugOff:Su,LucideBugPlay:Lu,LucideBuilding:Pu,LucideBuilding2:Au,LucideBus:Du,LucideBusFront:Tu,LucideCable:zu,LucideCableCar:Eu,LucideCake:qu,LucideCakeSlice:Ou,LucideCalculator:ju,LucideCalendar:Fs,LucideCalendar1:Hu,LucideCalendarArrowDown:Vu,LucideCalendarArrowUp:Fu,LucideCalendarCheck:Uu,LucideCalendarCheck2:Bu,LucideCalendarClock:Wu,LucideCalendarCog:Ru,LucideCalendarDays:Gu,LucideCalendarFold:Ku,LucideCalendarHeart:Yu,LucideCalendarMinus:Zu,LucideCalendarMinus2:Xu,LucideCalendarOff:Qu,LucideCalendarPlus:eh,LucideCalendarPlus2:Ju,LucideCalendarRange:th,LucideCalendarSearch:oh,LucideCalendarSync:ah,LucideCalendarX:rh,LucideCalendarX2:nh,LucideCalendars:ih,LucideCamera:sh,LucideCameraOff:ch,LucideCandlestickChart:Fn,LucideCandy:uh,LucideCandyCane:lh,LucideCandyOff:dh,LucideCannabis:ph,LucideCannabisOff:hh,LucideCaptions:qn,LucideCaptionsOff:yh,LucideCar:mh,LucideCarFront:fh,LucideCarTaxiFront:kh,LucideCaravan:vh,LucideCardSim:gh,LucideCarrot:_h,LucideCaseLower:bh,LucideCaseSensitive:Mh,LucideCaseUpper:wh,LucideCassetteTape:xh,LucideCast:Nh,LucideCastle:Ch,LucideCat:$h,LucideCctv:Sh,LucideChartArea:jn,LucideChartBar:Vn,LucideChartBarBig:Hn,LucideChartBarDecreasing:Lh,LucideChartBarIncreasing:Ih,LucideChartBarStacked:Ah,LucideChartCandlestick:Fn,LucideChartColumn:Un,LucideChartColumnBig:Bn,LucideChartColumnDecreasing:Ph,LucideChartColumnIncreasing:Wn,LucideChartColumnStacked:Th,LucideChartGantt:Dh,LucideChartLine:Rn,LucideChartNetwork:Eh,LucideChartNoAxesColumn:Kn,LucideChartNoAxesColumnDecreasing:zh,LucideChartNoAxesColumnIncreasing:Gn,LucideChartNoAxesCombined:Oh,LucideChartNoAxesGantt:Yn,LucideChartPie:Xn,LucideChartScatter:Zn,LucideChartSpline:qh,LucideCheck:po,LucideCheckCheck:jh,LucideCheckCircle:sa,LucideCheckCircle2:jo,LucideCheckLine:Hh,LucideCheckSquare:vi,LucideCheckSquare2:_i,LucideChefHat:Vh,LucideCherry:Fh,LucideChessBishop:Bh,LucideChessKing:Wh,LucideChessKnight:Uh,LucideChessPawn:Rh,LucideChessQueen:Gh,LucideChessRook:Kh,LucideChevronDown:Ht,LucideChevronDownCircle:da,LucideChevronDownSquare:bi,LucideChevronFirst:Yh,LucideChevronLast:Xh,LucideChevronLeft:Qn,LucideChevronLeftCircle:la,LucideChevronLeftSquare:Mi,LucideChevronRight:Pt,LucideChevronRightCircle:ua,LucideChevronRightSquare:wi,LucideChevronUp:Qc,LucideChevronUpCircle:ha,LucideChevronUpSquare:xi,LucideChevronsDown:Qh,LucideChevronsDownUp:Zh,LucideChevronsLeft:Bs,LucideChevronsLeftRight:ep,LucideChevronsLeftRightEllipsis:Jh,LucideChevronsRight:Ws,LucideChevronsRightLeft:tp,LucideChevronsUp:op,LucideChevronsUpDown:Jc,LucideChrome:Jn,LucideChromium:Jn,LucideChurch:np,LucideCigarette:rp,LucideCigaretteOff:ap,LucideCircle:Qo,LucideCircleAlert:Zo,LucideCircleArrowDown:ea,LucideCircleArrowLeft:ta,LucideCircleArrowOutDownLeft:oa,LucideCircleArrowOutDownRight:na,LucideCircleArrowOutUpLeft:aa,LucideCircleArrowOutUpRight:ra,LucideCircleArrowRight:ia,LucideCircleArrowUp:ca,LucideCircleCheck:jo,LucideCircleCheckBig:sa,LucideCircleChevronDown:da,LucideCircleChevronLeft:la,LucideCircleChevronRight:ua,LucideCircleChevronUp:ha,LucideCircleDashed:ip,LucideCircleDivide:pa,LucideCircleDollarSign:cp,LucideCircleDot:dp,LucideCircleDotDashed:sp,LucideCircleEllipsis:lp,LucideCircleEqual:up,LucideCircleFadingArrowUp:hp,LucideCircleFadingPlus:pp,LucideCircleGauge:ya,LucideCircleHelp:yo,LucideCircleMinus:fa,LucideCircleOff:yp,LucideCircleParking:ka,LucideCircleParkingOff:ma,LucideCirclePause:ga,LucideCirclePercent:va,LucideCirclePile:fp,LucideCirclePlay:ba,LucideCirclePlus:_a,LucideCirclePoundSterling:mp,LucideCirclePower:Ma,LucideCircleQuestionMark:yo,LucideCircleSlash:kp,LucideCircleSlash2:wa,LucideCircleSlashed:wa,LucideCircleSmall:vp,LucideCircleStar:gp,LucideCircleStop:xa,LucideCircleUser:Ca,LucideCircleUserRound:Na,LucideCircleX:$a,LucideCircuitBoard:_p,LucideCitrus:bp,LucideClapperboard:Mp,LucideClipboard:Pp,LucideClipboardCheck:wp,LucideClipboardClock:xp,LucideClipboardCopy:Np,LucideClipboardEdit:La,LucideClipboardList:Cp,LucideClipboardMinus:$p,LucideClipboardPaste:Sp,LucideClipboardPen:La,LucideClipboardPenLine:Sa,LucideClipboardPlus:Lp,LucideClipboardSignature:Sa,LucideClipboardType:Ip,LucideClipboardX:Ap,LucideClock:Zp,LucideClock1:Tp,LucideClock10:Dp,LucideClock11:Ep,LucideClock12:zp,LucideClock2:Op,LucideClock3:qp,LucideClock4:jp,LucideClock5:Hp,LucideClock6:Vp,LucideClock7:Fp,LucideClock8:Bp,LucideClock9:Wp,LucideClockAlert:Up,LucideClockArrowDown:Rp,LucideClockArrowUp:Gp,LucideClockCheck:Kp,LucideClockFading:Yp,LucideClockPlus:Xp,LucideClosedCaption:Qp,LucideCloud:my,LucideCloudAlert:Jp,LucideCloudBackup:ey,LucideCloudCheck:ty,LucideCloudCog:oy,LucideCloudDownload:Ia,LucideCloudDrizzle:ny,LucideCloudFog:ay,LucideCloudHail:ry,LucideCloudLightning:iy,LucideCloudMoon:sy,LucideCloudMoonRain:cy,LucideCloudOff:dy,LucideCloudRain:uy,LucideCloudRainWind:ly,LucideCloudSnow:hy,LucideCloudSun:yy,LucideCloudSunRain:py,LucideCloudSync:fy,LucideCloudUpload:Aa,LucideCloudy:gy,LucideClover:ky,LucideClub:vy,LucideCode:_y,LucideCode2:Pa,LucideCodeSquare:Ni,LucideCodeXml:Pa,LucideCodepen:by,LucideCodesandbox:My,LucideCoffee:wy,LucideCog:xy,LucideCoins:Ny,LucideColumns:Ta,LucideColumns2:Ta,LucideColumns3:Da,LucideColumns3Cog:fo,LucideColumns4:Cy,LucideColumnsSettings:fo,LucideCombine:$y,LucideCommand:Sy,LucideCompass:Ly,LucideComponent:Iy,LucideComputer:Ay,LucideConciergeBell:Py,LucideCone:Ty,LucideConstruction:Dy,LucideContact:Ey,LucideContact2:Ea,LucideContactRound:Ea,LucideContainer:zy,LucideContrast:Oy,LucideCookie:qy,LucideCookingPot:jy,LucideCopy:Ry,LucideCopyCheck:Hy,LucideCopyMinus:Vy,LucideCopyPlus:Fy,LucideCopySlash:By,LucideCopyX:Wy,LucideCopyleft:Uy,LucideCopyright:Gy,LucideCornerDownLeft:Ky,LucideCornerDownRight:Yy,LucideCornerLeftDown:Xy,LucideCornerLeftUp:Zy,LucideCornerRightDown:Qy,LucideCornerRightUp:Jy,LucideCornerUpLeft:ef,LucideCornerUpRight:tf,LucideCpu:of,LucideCreativeCommons:nf,LucideCreditCard:af,LucideCroissant:rf,LucideCrop:cf,LucideCross:sf,LucideCrosshair:lf,LucideCrown:df,LucideCuboid:uf,LucideCupSoda:hf,LucideCurlyBraces:On,LucideCurrency:pf,LucideCylinder:yf,LucideDam:ff,LucideDatabase:gf,LucideDatabaseBackup:mf,LucideDatabaseZap:kf,LucideDecimalsArrowLeft:vf,LucideDecimalsArrowRight:_f,LucideDelete:bf,LucideDessert:Mf,LucideDiameter:wf,LucideDiamond:Cf,LucideDiamondMinus:xf,LucideDiamondPercent:za,LucideDiamondPlus:Nf,LucideDice1:$f,LucideDice2:Sf,LucideDice3:Lf,LucideDice4:If,LucideDice5:Af,LucideDice6:Pf,LucideDices:Tf,LucideDiff:Df,LucideDisc:qf,LucideDisc2:Ef,LucideDisc3:zf,LucideDiscAlbum:Of,LucideDivide:jf,LucideDivideCircle:pa,LucideDivideSquare:Li,LucideDna:Vf,LucideDnaOff:Hf,LucideDock:Ff,LucideDog:Bf,LucideDollarSign:Wf,LucideDonut:Uf,LucideDoorClosed:Gf,LucideDoorClosedLocked:Rf,LucideDoorOpen:Kf,LucideDot:Us,LucideDotSquare:Ii,LucideDownload:Rs,LucideDownloadCloud:Ia,LucideDraftingCompass:Yf,LucideDrama:Xf,LucideDribbble:Qf,LucideDrill:Zf,LucideDrone:Jf,LucideDroplet:tm,LucideDropletOff:em,LucideDroplets:om,LucideDrum:nm,LucideDrumstick:am,LucideDumbbell:rm,LucideEar:im,LucideEarOff:cm,LucideEarth:Oa,LucideEarthLock:sm,LucideEclipse:dm,LucideEdit:_t,LucideEdit2:Ur,LucideEdit3:Wr,LucideEgg:hm,LucideEggFried:lm,LucideEggOff:um,LucideEllipsis:Ho,LucideEllipsisVertical:qa,LucideEqual:fm,LucideEqualApproximately:pm,LucideEqualNot:ym,LucideEqualSquare:Ai,LucideEraser:mm,LucideEthernetPort:km,LucideEuro:gm,LucideEvCharger:vm,LucideExpand:_m,LucideExternalLink:bm,LucideEye:xm,LucideEyeClosed:Mm,LucideEyeOff:wm,LucideFacebook:Nm,LucideFactory:Cm,LucideFan:$m,LucideFastForward:Sm,LucideFeather:Lm,LucideFence:Im,LucideFerrisWheel:Am,LucideFigma:Pm,LucideFile:Gs,LucideFileArchive:Tm,LucideFileAudio:mo,LucideFileAudio2:mo,LucideFileAxis3D:ja,LucideFileAxis3d:ja,LucideFileBadge:Ha,LucideFileBadge2:Ha,LucideFileBarChart:Wa,LucideFileBarChart2:Ba,LucideFileBox:Dm,LucideFileBraces:Fa,LucideFileBracesCorner:Va,LucideFileChartColumn:Ba,LucideFileChartColumnIncreasing:Wa,LucideFileChartLine:Ua,LucideFileChartPie:Ra,LucideFileCheck:Em,LucideFileCheck2:Ga,LucideFileCheckCorner:Ga,LucideFileClock:zm,LucideFileCode:Om,LucideFileCode2:Ka,LucideFileCodeCorner:Ka,LucideFileCog:Ya,LucideFileCog2:Ya,LucideFileDiff:Hm,LucideFileDigit:qm,LucideFileDown:jm,LucideFileEdit:tr,LucideFileExclamationPoint:Xa,LucideFileHeadphone:mo,LucideFileHeart:Vm,LucideFileImage:Fm,LucideFileInput:Bm,LucideFileJson:Fa,LucideFileJson2:Va,LucideFileKey:Za,LucideFileKey2:Za,LucideFileLineChart:Ua,LucideFileLock:Qa,LucideFileLock2:Qa,LucideFileMinus:Wm,LucideFileMinus2:Ja,LucideFileMinusCorner:Ja,LucideFileMusic:Um,LucideFileOutput:Rm,LucideFilePen:tr,LucideFilePenLine:er,LucideFilePieChart:Ra,LucideFilePlay:or,LucideFilePlus:Gm,LucideFilePlus2:nr,LucideFilePlusCorner:nr,LucideFileQuestion:ar,LucideFileQuestionMark:ar,LucideFileScan:Km,LucideFileSearch:Ym,LucideFileSearch2:rr,LucideFileSearchCorner:rr,LucideFileSignal:ir,LucideFileSignature:er,LucideFileSliders:Xm,LucideFileSpreadsheet:Zm,LucideFileStack:Qm,LucideFileSymlink:Jm,LucideFileTerminal:ek,LucideFileText:tk,LucideFileType:ok,LucideFileType2:cr,LucideFileTypeCorner:cr,LucideFileUp:nk,LucideFileUser:ak,LucideFileVideo:or,LucideFileVideo2:sr,LucideFileVideoCamera:sr,LucideFileVolume:rk,LucideFileVolume2:ir,LucideFileWarning:Xa,LucideFileX:ik,LucideFileX2:dr,LucideFileXCorner:dr,LucideFiles:ck,LucideFilm:sk,LucideFilter:yr,LucideFilterX:pr,LucideFingerprint:lr,LucideFingerprintPattern:lr,LucideFireExtinguisher:dk,LucideFish:hk,LucideFishOff:lk,LucideFishSymbol:uk,LucideFishingHook:pk,LucideFlag:kk,LucideFlagOff:yk,LucideFlagTriangleLeft:fk,LucideFlagTriangleRight:mk,LucideFlame:vk,LucideFlameKindling:gk,LucideFlashlight:bk,LucideFlashlightOff:_k,LucideFlaskConical:wk,LucideFlaskConicalOff:Mk,LucideFlaskRound:xk,LucideFlipHorizontal:Ck,LucideFlipHorizontal2:Nk,LucideFlipVertical:Sk,LucideFlipVertical2:$k,LucideFlower:Ik,LucideFlower2:Lk,LucideFocus:Ak,LucideFoldHorizontal:Tk,LucideFoldVertical:Pk,LucideFolder:Ys,LucideFolderArchive:Dk,LucideFolderCheck:Ek,LucideFolderClock:zk,LucideFolderClosed:Ok,LucideFolderCode:qk,LucideFolderCog:ur,LucideFolderCog2:ur,LucideFolderDot:jk,LucideFolderDown:Hk,LucideFolderEdit:hr,LucideFolderGit:Fk,LucideFolderGit2:Vk,LucideFolderHeart:Bk,LucideFolderInput:Wk,LucideFolderKanban:Rk,LucideFolderKey:Uk,LucideFolderLock:Gk,LucideFolderMinus:Kk,LucideFolderOpen:Ks,LucideFolderOpenDot:Yk,LucideFolderOutput:Xk,LucideFolderPen:hr,LucideFolderPlus:Zk,LucideFolderRoot:Qk,LucideFolderSearch:eg,LucideFolderSearch2:Jk,LucideFolderSymlink:tg,LucideFolderSync:og,LucideFolderTree:ng,LucideFolderUp:ag,LucideFolderX:ig,LucideFolders:rg,LucideFootprints:cg,LucideForkKnife:Mc,LucideForkKnifeCrossed:bc,LucideForklift:sg,LucideForm:dg,LucideFormInput:Gr,LucideForward:lg,LucideFrame:ug,LucideFramer:hg,LucideFrown:pg,LucideFuel:yg,LucideFullscreen:fg,LucideFunctionSquare:Pi,LucideFunnel:yr,LucideFunnelPlus:mg,LucideFunnelX:pr,LucideGalleryHorizontal:gg,LucideGalleryHorizontalEnd:kg,LucideGalleryThumbnails:vg,LucideGalleryVertical:bg,LucideGalleryVerticalEnd:_g,LucideGamepad:xg,LucideGamepad2:Mg,LucideGamepadDirectional:wg,LucideGanttChart:Yn,LucideGanttChartSquare:_o,LucideGauge:Ng,LucideGaugeCircle:ya,LucideGavel:$g,LucideGem:Cg,LucideGeorgianLari:Lg,LucideGhost:Sg,LucideGift:Ig,LucideGitBranch:Tg,LucideGitBranchMinus:Ag,LucideGitBranchPlus:Pg,LucideGitCommit:fr,LucideGitCommitHorizontal:fr,LucideGitCommitVertical:Dg,LucideGitCompare:zg,LucideGitCompareArrows:Eg,LucideGitFork:Og,LucideGitGraph:qg,LucideGitMerge:jg,LucideGitPullRequest:Ug,LucideGitPullRequestArrow:Hg,LucideGitPullRequestClosed:Vg,LucideGitPullRequestCreate:Bg,LucideGitPullRequestCreateArrow:Fg,LucideGitPullRequestDraft:Wg,LucideGithub:Rg,LucideGitlab:Gg,LucideGlassWater:Kg,LucideGlasses:Yg,LucideGlobe:Qg,LucideGlobe2:Oa,LucideGlobeLock:Xg,LucideGlobeX:Zg,LucideGoal:e4,LucideGpu:Jg,LucideGrab:_r,LucideGraduationCap:t4,LucideGrape:o4,LucideGrid:ko,LucideGrid2X2:vr,LucideGrid2X2Check:mr,LucideGrid2X2Plus:kr,LucideGrid2X2X:gr,LucideGrid2x2:vr,LucideGrid2x2Check:mr,LucideGrid2x2Plus:kr,LucideGrid2x2X:gr,LucideGrid3X3:ko,LucideGrid3x2:n4,LucideGrid3x3:ko,LucideGrip:r4,LucideGripHorizontal:a4,LucideGripVertical:es,LucideGroup:i4,LucideGuitar:c4,LucideHam:s4,LucideHamburger:d4,LucideHammer:l4,LucideHand:m4,LucideHandCoins:u4,LucideHandFist:h4,LucideHandGrab:_r,LucideHandHeart:p4,LucideHandHelping:br,LucideHandMetal:y4,LucideHandPlatter:f4,LucideHandbag:k4,LucideHandshake:g4,LucideHardDrive:M4,LucideHardDriveDownload:v4,LucideHardDriveUpload:_4,LucideHardHat:b4,LucideHash:w4,LucideHatGlasses:x4,LucideHaze:N4,LucideHd:C4,LucideHdmiPort:$4,LucideHeading:D4,LucideHeading1:S4,LucideHeading2:L4,LucideHeading3:I4,LucideHeading4:A4,LucideHeading5:P4,LucideHeading6:T4,LucideHeadphoneOff:E4,LucideHeadphones:z4,LucideHeadset:O4,LucideHeart:W4,LucideHeartCrack:q4,LucideHeartHandshake:j4,LucideHeartMinus:H4,LucideHeartOff:V4,LucideHeartPlus:F4,LucideHeartPulse:B4,LucideHeater:U4,LucideHelicopter:R4,LucideHelpCircle:yo,LucideHelpingHand:br,LucideHexagon:G4,LucideHighlighter:K4,LucideHistory:Y4,LucideHome:Mr,LucideHop:Z4,LucideHopOff:X4,LucideHospital:Q4,LucideHotel:J4,LucideHourglass:e5,LucideHouse:Mr,LucideHouseHeart:t5,LucideHousePlug:o5,LucideHousePlus:n5,LucideHouseWifi:a5,LucideIceCream:xr,LucideIceCream2:wr,LucideIceCreamBowl:wr,LucideIceCreamCone:xr,LucideIdCard:i5,LucideIdCardLanyard:r5,LucideImage:y5,LucideImageDown:c5,LucideImageMinus:s5,LucideImageOff:d5,LucideImagePlay:l5,LucideImagePlus:u5,LucideImageUp:h5,LucideImageUpscale:p5,LucideImages:f5,LucideImport:m5,LucideInbox:Xs,LucideIndent:vo,LucideIndentDecrease:go,LucideIndentIncrease:vo,LucideIndianRupee:k5,LucideInfinity:g5,LucideInfo:Zs,LucideInspect:qi,LucideInspectionPanel:v5,LucideInstagram:_5,LucideItalic:b5,LucideIterationCcw:M5,LucideIterationCw:w5,LucideJapaneseYen:x5,LucideJoystick:N5,LucideKanban:C5,LucideKanbanSquare:Di,LucideKanbanSquareDashed:$i,LucideKayak:$5,LucideKey:I5,LucideKeyRound:S5,LucideKeySquare:L5,LucideKeyboard:T5,LucideKeyboardMusic:A5,LucideKeyboardOff:P5,LucideLamp:j5,LucideLampCeiling:D5,LucideLampDesk:E5,LucideLampFloor:z5,LucideLampWallDown:O5,LucideLampWallUp:q5,LucideLandPlot:H5,LucideLandmark:V5,LucideLanguages:F5,LucideLaptop:W5,LucideLaptop2:Nr,LucideLaptopMinimal:Nr,LucideLaptopMinimalCheck:B5,LucideLasso:R5,LucideLassoSelect:U5,LucideLaugh:G5,LucideLayers:Cr,LucideLayers2:K5,LucideLayers3:Cr,LucideLayersPlus:Y5,LucideLayout:Br,LucideLayoutDashboard:X5,LucideLayoutGrid:Z5,LucideLayoutList:Q5,LucideLayoutPanelLeft:J5,LucideLayoutPanelTop:ev,LucideLayoutTemplate:tv,LucideLeaf:ov,LucideLeafyGreen:nv,LucideLectern:av,LucideLetterText:ic,LucideLibrary:iv,LucideLibraryBig:rv,LucideLibrarySquare:Ti,LucideLifeBuoy:cv,LucideLigature:sv,LucideLightbulb:lv,LucideLightbulbOff:dv,LucideLineChart:Rn,LucideLineSquiggle:uv,LucideLink:yv,LucideLink2:pv,LucideLink2Off:hv,LucideLinkedin:fv,LucideList:Dv,LucideListCheck:mv,LucideListChecks:kv,LucideListChevronsDownUp:gv,LucideListChevronsUpDown:vv,LucideListCollapse:_v,LucideListEnd:bv,LucideListFilter:wv,LucideListFilterPlus:Mv,LucideListIndentDecrease:go,LucideListIndentIncrease:vo,LucideListMinus:xv,LucideListMusic:Nv,LucideListOrdered:Cv,LucideListPlus:$v,LucideListRestart:Sv,LucideListStart:Lv,LucideListTodo:Iv,LucideListTree:Av,LucideListVideo:Pv,LucideListX:Tv,LucideLoader:zv,LucideLoader2:Vt,LucideLoaderCircle:Vt,LucideLoaderPinwheel:Ev,LucideLocate:jv,LucideLocateFixed:Ov,LucideLocateOff:qv,LucideLocationEdit:Ir,LucideLock:Vv,LucideLockKeyhole:Hv,LucideLockKeyholeOpen:$r,LucideLockOpen:Sr,LucideLogIn:Fv,LucideLogOut:Bv,LucideLogs:Wv,LucideLollipop:Uv,LucideLuggage:Rv,LucideMSquare:Ei,LucideMagnet:Gv,LucideMail:e3,LucideMailCheck:Kv,LucideMailMinus:Yv,LucideMailOpen:Xv,LucideMailPlus:Zv,LucideMailQuestion:Lr,LucideMailQuestionMark:Lr,LucideMailSearch:Qv,LucideMailWarning:Jv,LucideMailX:t3,LucideMailbox:o3,LucideMails:n3,LucideMap:g3,LucideMapMinus:a3,LucideMapPin:f3,LucideMapPinCheck:i3,LucideMapPinCheckInside:r3,LucideMapPinHouse:c3,LucideMapPinMinus:d3,LucideMapPinMinusInside:s3,LucideMapPinOff:l3,LucideMapPinPen:Ir,LucideMapPinPlus:h3,LucideMapPinPlusInside:u3,LucideMapPinX:y3,LucideMapPinXInside:p3,LucideMapPinned:m3,LucideMapPlus:k3,LucideMars:_3,LucideMarsStroke:v3,LucideMartini:b3,LucideMaximize:w3,LucideMaximize2:M3,LucideMedal:x3,LucideMegaphone:C3,LucideMegaphoneOff:N3,LucideMeh:$3,LucideMemoryStick:S3,LucideMenu:L3,LucideMenuSquare:zi,LucideMerge:I3,LucideMessageCircle:H3,LucideMessageCircleCode:A3,LucideMessageCircleDashed:P3,LucideMessageCircleHeart:T3,LucideMessageCircleMore:D3,LucideMessageCircleOff:E3,LucideMessageCirclePlus:z3,LucideMessageCircleQuestion:Ar,LucideMessageCircleQuestionMark:Ar,LucideMessageCircleReply:O3,LucideMessageCircleWarning:q3,LucideMessageCircleX:j3,LucideMessageSquare:o_,LucideMessageSquareCode:V3,LucideMessageSquareDashed:F3,LucideMessageSquareDiff:B3,LucideMessageSquareDot:W3,LucideMessageSquareHeart:U3,LucideMessageSquareLock:R3,LucideMessageSquareMore:K3,LucideMessageSquareOff:G3,LucideMessageSquarePlus:Y3,LucideMessageSquareQuote:X3,LucideMessageSquareReply:Z3,LucideMessageSquareShare:J3,LucideMessageSquareText:Q3,LucideMessageSquareWarning:e_,LucideMessageSquareX:t_,LucideMessagesSquare:n_,LucideMic:r_,LucideMic2:Pr,LucideMicOff:a_,LucideMicVocal:Pr,LucideMicrochip:i_,LucideMicroscope:c_,LucideMicrowave:s_,LucideMilestone:d_,LucideMilk:u_,LucideMilkOff:l_,LucideMinimize:p_,LucideMinimize2:h_,LucideMinus:Qs,LucideMinusCircle:fa,LucideMinusSquare:Oi,LucideMonitor:S_,LucideMonitorCheck:y_,LucideMonitorCloud:f_,LucideMonitorCog:m_,LucideMonitorDot:k_,LucideMonitorDown:g_,LucideMonitorOff:v_,LucideMonitorPause:__,LucideMonitorPlay:b_,LucideMonitorSmartphone:M_,LucideMonitorSpeaker:w_,LucideMonitorStop:x_,LucideMonitorUp:C_,LucideMonitorX:N_,LucideMoon:L_,LucideMoonStar:$_,LucideMoreHorizontal:Ho,LucideMoreVertical:qa,LucideMotorbike:I_,LucideMountain:P_,LucideMountainSnow:A_,LucideMouse:j_,LucideMouseOff:T_,LucideMousePointer:q_,LucideMousePointer2:E_,LucideMousePointer2Off:D_,LucideMousePointerBan:z_,LucideMousePointerClick:O_,LucideMousePointerSquareDashed:Ci,LucideMove:Z_,LucideMove3D:Tr,LucideMove3d:Tr,LucideMoveDiagonal:V_,LucideMoveDiagonal2:H_,LucideMoveDown:W_,LucideMoveDownLeft:F_,LucideMoveDownRight:B_,LucideMoveHorizontal:U_,LucideMoveLeft:R_,LucideMoveRight:G_,LucideMoveUp:Y_,LucideMoveUpLeft:K_,LucideMoveUpRight:X_,LucideMoveVertical:Q_,LucideMusic:o8,LucideMusic2:J_,LucideMusic3:e8,LucideMusic4:t8,LucideNavigation:i8,LucideNavigation2:a8,LucideNavigation2Off:n8,LucideNavigationOff:r8,LucideNetwork:c8,LucideNewspaper:s8,LucideNfc:d8,LucideNonBinary:l8,LucideNotebook:y8,LucideNotebookPen:u8,LucideNotebookTabs:h8,LucideNotebookText:p8,LucideNotepadText:m8,LucideNotepadTextDashed:f8,LucideNut:g8,LucideNutOff:k8,LucideOctagon:_8,LucideOctagonAlert:Dr,LucideOctagonMinus:v8,LucideOctagonPause:Er,LucideOctagonX:Jo,LucideOmega:b8,LucideOption:M8,LucideOrbit:w8,LucideOrigami:x8,LucideOutdent:go,LucidePackage:P8,LucidePackage2:N8,LucidePackageCheck:C8,LucidePackageMinus:$8,LucidePackageOpen:S8,LucidePackagePlus:L8,LucidePackageSearch:I8,LucidePackageX:A8,LucidePaintBucket:T8,LucidePaintRoller:D8,LucidePaintbrush:E8,LucidePaintbrush2:zr,LucidePaintbrushVertical:zr,LucidePalette:z8,LucidePalmtree:uc,LucidePanda:O8,LucidePanelBottom:H8,LucidePanelBottomClose:q8,LucidePanelBottomDashed:Or,LucidePanelBottomInactive:Or,LucidePanelBottomOpen:j8,LucidePanelLeft:en,LucidePanelLeftClose:qr,LucidePanelLeftDashed:jr,LucidePanelLeftInactive:jr,LucidePanelLeftOpen:Hr,LucidePanelLeftRightDashed:V8,LucidePanelRight:W8,LucidePanelRightClose:F8,LucidePanelRightDashed:Vr,LucidePanelRightInactive:Vr,LucidePanelRightOpen:B8,LucidePanelTop:K8,LucidePanelTopBottomDashed:U8,LucidePanelTopClose:R8,LucidePanelTopDashed:Fr,LucidePanelTopInactive:Fr,LucidePanelTopOpen:G8,LucidePanelsLeftBottom:Y8,LucidePanelsLeftRight:Da,LucidePanelsRightBottom:X8,LucidePanelsTopBottom:Xr,LucidePanelsTopLeft:Br,LucidePaperclip:Z8,LucideParentheses:Q8,LucideParkingCircle:ka,LucideParkingCircleOff:ma,LucideParkingMeter:J8,LucideParkingSquare:Hi,LucideParkingSquareOff:ji,LucidePartyPopper:e6,LucidePause:t6,LucidePauseCircle:ga,LucidePauseOctagon:Er,LucidePawPrint:o6,LucidePcCase:n6,LucidePen:Ur,LucidePenBox:_t,LucidePenLine:Wr,LucidePenOff:a6,LucidePenSquare:_t,LucidePenTool:r6,LucidePencil:d6,LucidePencilLine:i6,LucidePencilOff:c6,LucidePencilRuler:s6,LucidePentagon:l6,LucidePercent:u6,LucidePercentCircle:va,LucidePercentDiamond:za,LucidePercentSquare:Vi,LucidePersonStanding:h6,LucidePhilippinePeso:p6,LucidePhone:_6,LucidePhoneCall:y6,LucidePhoneForwarded:f6,LucidePhoneIncoming:m6,LucidePhoneMissed:k6,LucidePhoneOff:g6,LucidePhoneOutgoing:v6,LucidePi:b6,LucidePiSquare:Fi,LucidePiano:M6,LucidePickaxe:w6,LucidePictureInPicture:N6,LucidePictureInPicture2:x6,LucidePieChart:Xn,LucidePiggyBank:C6,LucidePilcrow:L6,LucidePilcrowLeft:$6,LucidePilcrowRight:S6,LucidePilcrowSquare:Bi,LucidePill:A6,LucidePillBottle:I6,LucidePin:T6,LucidePinOff:P6,LucidePipette:D6,LucidePizza:E6,LucidePlane:q6,LucidePlaneLanding:z6,LucidePlaneTakeoff:O6,LucidePlay:j6,LucidePlayCircle:ba,LucidePlaySquare:Wi,LucidePlug:V6,LucidePlug2:H6,LucidePlugZap:Rr,LucidePlugZap2:Rr,LucidePlus:Js,LucidePlusCircle:_a,LucidePlusSquare:Ui,LucidePocket:F6,LucidePocketKnife:B6,LucidePodcast:W6,LucidePointer:R6,LucidePointerOff:U6,LucidePopcorn:G6,LucidePopsicle:K6,LucidePoundSterling:Y6,LucidePower:Z6,LucidePowerCircle:Ma,LucidePowerOff:X6,LucidePowerSquare:Ri,LucidePresentation:Q6,LucidePrinter:ob,LucidePrinterCheck:J6,LucidePrinterX:eb,LucideProjector:tb,LucideProportions:nb,LucidePuzzle:ab,LucidePyramid:rb,LucideQrCode:ib,LucideQuote:cb,LucideRabbit:sb,LucideRadar:db,LucideRadiation:ub,LucideRadical:lb,LucideRadio:yb,LucideRadioReceiver:hb,LucideRadioTower:pb,LucideRadius:fb,LucideRailSymbol:kb,LucideRainbow:mb,LucideRat:gb,LucideRatio:vb,LucideReceipt:Sb,LucideReceiptCent:_b,LucideReceiptEuro:bb,LucideReceiptIndianRupee:Mb,LucideReceiptJapaneseYen:wb,LucideReceiptPoundSterling:xb,LucideReceiptRussianRuble:Nb,LucideReceiptSwissFranc:Cb,LucideReceiptText:$b,LucideReceiptTurkishLira:Lb,LucideRectangleCircle:Ib,LucideRectangleEllipsis:Gr,LucideRectangleGoggles:Ab,LucideRectangleHorizontal:Pb,LucideRectangleVertical:Tb,LucideRecycle:zb,LucideRedo:Ob,LucideRedo2:Db,LucideRedoDot:Eb,LucideRefreshCcw:jb,LucideRefreshCcwDot:qb,LucideRefreshCw:Vb,LucideRefreshCwOff:Hb,LucideRefrigerator:Fb,LucideRegex:Bb,LucideRemoveFormatting:Wb,LucideRepeat:Gb,LucideRepeat1:Ub,LucideRepeat2:Rb,LucideReplace:Yb,LucideReplaceAll:Kb,LucideReply:Zb,LucideReplyAll:Xb,LucideRewind:Qb,LucideRibbon:Jb,LucideRocket:ed,LucideRockingChair:eM,LucideRollerCoaster:tM,LucideRose:oM,LucideRotate3D:Kr,LucideRotate3d:Kr,LucideRotateCcw:rM,LucideRotateCcwKey:nM,LucideRotateCcwSquare:aM,LucideRotateCw:cM,LucideRotateCwSquare:iM,LucideRoute:dM,LucideRouteOff:sM,LucideRouter:lM,LucideRows:Yr,LucideRows2:Yr,LucideRows3:Xr,LucideRows4:uM,LucideRss:hM,LucideRuler:kM,LucideRulerDimensionLine:pM,LucideRussianRuble:yM,LucideSailboat:fM,LucideSalad:mM,LucideSandwich:gM,LucideSatellite:_M,LucideSatelliteDish:vM,LucideSaudiRiyal:bM,LucideSave:xM,LucideSaveAll:wM,LucideSaveOff:MM,LucideScale:NM,LucideScale3D:Zr,LucideScale3d:Zr,LucideScaling:CM,LucideScan:DM,LucideScanBarcode:$M,LucideScanEye:SM,LucideScanFace:LM,LucideScanHeart:IM,LucideScanLine:AM,LucideScanQrCode:PM,LucideScanSearch:TM,LucideScanText:EM,LucideScatterChart:Zn,LucideSchool:OM,LucideSchool2:pc,LucideScissors:qM,LucideScissorsLineDashed:zM,LucideScissorsSquare:Gi,LucideScissorsSquareDashedBottom:gi,LucideScooter:jM,LucideScreenShare:VM,LucideScreenShareOff:HM,LucideScroll:FM,LucideScrollText:WM,LucideSearch:Qr,LucideSearchAlert:BM,LucideSearchCheck:UM,LucideSearchCode:RM,LucideSearchSlash:GM,LucideSearchX:KM,LucideSection:YM,LucideSend:ZM,LucideSendHorizonal:Jr,LucideSendHorizontal:Jr,LucideSendToBack:XM,LucideSeparatorHorizontal:QM,LucideSeparatorVertical:JM,LucideServer:n7,LucideServerCog:e7,LucideServerCrash:t7,LucideServerOff:o7,LucideSettings:r7,LucideSettings2:a7,LucideShapes:i7,LucideShare:s7,LucideShare2:c7,LucideSheet:d7,LucideShell:l7,LucideShield:_7,LucideShieldAlert:u7,LucideShieldBan:h7,LucideShieldCheck:p7,LucideShieldClose:ti,LucideShieldEllipsis:f7,LucideShieldHalf:y7,LucideShieldMinus:m7,LucideShieldOff:k7,LucideShieldPlus:g7,LucideShieldQuestion:ei,LucideShieldQuestionMark:ei,LucideShieldUser:v7,LucideShieldX:ti,LucideShip:M7,LucideShipWheel:b7,LucideShirt:w7,LucideShoppingBag:x7,LucideShoppingBasket:N7,LucideShoppingCart:C7,LucideShovel:$7,LucideShowerHead:S7,LucideShredder:L7,LucideShrimp:I7,LucideShrink:A7,LucideShrub:P7,LucideShuffle:T7,LucideSidebar:en,LucideSidebarClose:qr,LucideSidebarOpen:Hr,LucideSigma:D7,LucideSigmaSquare:Ki,LucideSignal:j7,LucideSignalHigh:E7,LucideSignalLow:z7,LucideSignalMedium:O7,LucideSignalZero:q7,LucideSignature:H7,LucideSignpost:F7,LucideSignpostBig:V7,LucideSiren:B7,LucideSkipBack:W7,LucideSkipForward:U7,LucideSkull:R7,LucideSlack:G7,LucideSlash:K7,LucideSlashSquare:Yi,LucideSlice:Y7,LucideSliders:oi,LucideSlidersHorizontal:X7,LucideSlidersVertical:oi,LucideSmartphone:ew,LucideSmartphoneCharging:Z7,LucideSmartphoneNfc:Q7,LucideSmile:tw,LucideSmilePlus:J7,LucideSnail:ow,LucideSnowflake:nw,LucideSoapDispenserDroplet:aw,LucideSofa:rw,LucideSolarPanel:iw,LucideSortAsc:Ln,LucideSortDesc:Cn,LucideSoup:cw,LucideSpace:sw,LucideSpade:dw,LucideSparkle:lw,LucideSparkles:ni,LucideSpeaker:uw,LucideSpeech:hw,LucideSpellCheck:yw,LucideSpellCheck2:pw,LucideSpline:mw,LucideSplinePointer:fw,LucideSplit:gw,LucideSplitSquareHorizontal:Xi,LucideSplitSquareVertical:Zi,LucideSpool:kw,LucideSpotlight:vw,LucideSprayCan:_w,LucideSprout:bw,LucideSquare:Pw,LucideSquareActivity:ai,LucideSquareArrowDown:ii,LucideSquareArrowDownLeft:ri,LucideSquareArrowDownRight:ci,LucideSquareArrowLeft:si,LucideSquareArrowOutDownLeft:di,LucideSquareArrowOutDownRight:li,LucideSquareArrowOutUpLeft:ui,LucideSquareArrowOutUpRight:hi,LucideSquareArrowRight:pi,LucideSquareArrowUp:mi,LucideSquareArrowUpLeft:yi,LucideSquareArrowUpRight:fi,LucideSquareAsterisk:ki,LucideSquareBottomDashedScissors:gi,LucideSquareChartGantt:_o,LucideSquareCheck:_i,LucideSquareCheckBig:vi,LucideSquareChevronDown:bi,LucideSquareChevronLeft:Mi,LucideSquareChevronRight:wi,LucideSquareChevronUp:xi,LucideSquareCode:Ni,LucideSquareDashed:Si,LucideSquareDashedBottom:ww,LucideSquareDashedBottomCode:Mw,LucideSquareDashedKanban:$i,LucideSquareDashedMousePointer:Ci,LucideSquareDashedTopSolid:xw,LucideSquareDivide:Li,LucideSquareDot:Ii,LucideSquareEqual:Ai,LucideSquareFunction:Pi,LucideSquareGanttChart:_o,LucideSquareKanban:Di,LucideSquareLibrary:Ti,LucideSquareM:Ei,LucideSquareMenu:zi,LucideSquareMinus:Oi,LucideSquareMousePointer:qi,LucideSquareParking:Hi,LucideSquareParkingOff:ji,LucideSquarePause:Nw,LucideSquarePen:_t,LucideSquarePercent:Vi,LucideSquarePi:Fi,LucideSquarePilcrow:Bi,LucideSquarePlay:Wi,LucideSquarePlus:Ui,LucideSquarePower:Ri,LucideSquareRadical:Cw,LucideSquareRoundCorner:$w,LucideSquareScissors:Gi,LucideSquareSigma:Ki,LucideSquareSlash:Yi,LucideSquareSplitHorizontal:Xi,LucideSquareSplitVertical:Zi,LucideSquareSquare:Sw,LucideSquareStack:Lw,LucideSquareStar:Iw,LucideSquareStop:Aw,LucideSquareTerminal:Qi,LucideSquareUser:Ji,LucideSquareUserRound:ec,LucideSquareX:tc,LucideSquaresExclude:Tw,LucideSquaresIntersect:Dw,LucideSquaresSubtract:zw,LucideSquaresUnite:Ew,LucideSquircle:qw,LucideSquircleDashed:Ow,LucideSquirrel:jw,LucideStamp:Hw,LucideStar:Bw,LucideStarHalf:Fw,LucideStarOff:Vw,LucideStars:ni,LucideStepBack:Ww,LucideStepForward:Uw,LucideStethoscope:Rw,LucideSticker:Gw,LucideStickyNote:Kw,LucideStone:Yw,LucideStopCircle:xa,LucideStore:Xw,LucideStretchHorizontal:Zw,LucideStretchVertical:Qw,LucideStrikethrough:Jw,LucideSubscript:ex,LucideSubtitles:qn,LucideSun:rx,LucideSunDim:tx,LucideSunMedium:nx,LucideSunMoon:ox,LucideSunSnow:ax,LucideSunrise:ix,LucideSunset:cx,LucideSuperscript:sx,LucideSwatchBook:dx,LucideSwissFranc:lx,LucideSwitchCamera:ux,LucideSword:hx,LucideSwords:px,LucideSyringe:yx,LucideTable:Mx,LucideTable2:fx,LucideTableCellsMerge:mx,LucideTableCellsSplit:kx,LucideTableColumnsSplit:gx,LucideTableConfig:fo,LucideTableOfContents:bx,LucideTableProperties:vx,LucideTableRowsSplit:_x,LucideTablet:xx,LucideTabletSmartphone:wx,LucideTablets:Cx,LucideTag:Nx,LucideTags:$x,LucideTally1:Sx,LucideTally2:Lx,LucideTally3:Ix,LucideTally4:Ax,LucideTally5:Px,LucideTangent:Tx,LucideTarget:Dx,LucideTelescope:Ex,LucideTent:Ox,LucideTentTree:zx,LucideTerminal:qx,LucideTerminalSquare:Qi,LucideTestTube:jx,LucideTestTube2:oc,LucideTestTubeDiagonal:oc,LucideTestTubes:Hx,LucideText:bo,LucideTextAlignCenter:nc,LucideTextAlignEnd:ac,LucideTextAlignJustify:rc,LucideTextAlignStart:bo,LucideTextCursor:Fx,LucideTextCursorInput:Vx,LucideTextInitial:ic,LucideTextQuote:Bx,LucideTextSearch:Wx,LucideTextSelect:cc,LucideTextSelection:cc,LucideTextWrap:sc,LucideTheater:Ux,LucideThermometer:Kx,LucideThermometerSnowflake:Rx,LucideThermometerSun:Gx,LucideThumbsDown:Yx,LucideThumbsUp:Xx,LucideTicket:n9,LucideTicketCheck:Zx,LucideTicketMinus:Qx,LucideTicketPercent:Jx,LucideTicketPlus:e9,LucideTicketSlash:t9,LucideTicketX:o9,LucideTickets:r9,LucideTicketsPlane:a9,LucideTimer:c9,LucideTimerOff:i9,LucideTimerReset:s9,LucideToggleLeft:d9,LucideToggleRight:l9,LucideToilet:u9,LucideToolCase:h9,LucideToolbox:y9,LucideTornado:p9,LucideTorus:f9,LucideTouchpad:k9,LucideTouchpadOff:m9,LucideTowerControl:g9,LucideToyBrick:v9,LucideTractor:_9,LucideTrafficCone:b9,LucideTrain:dc,LucideTrainFront:w9,LucideTrainFrontTunnel:M9,LucideTrainTrack:x9,LucideTramFront:dc,LucideTransgender:N9,LucideTrash:C9,LucideTrash2:lc,LucideTreeDeciduous:$9,LucideTreePalm:uc,LucideTreePine:S9,LucideTrees:L9,LucideTrello:I9,LucideTrendingDown:td,LucideTrendingUp:od,LucideTrendingUpDown:A9,LucideTriangle:D9,LucideTriangleAlert:tn,LucideTriangleDashed:P9,LucideTriangleRight:T9,LucideTrophy:E9,LucideTruck:O9,LucideTruckElectric:z9,LucideTurkishLira:q9,LucideTurntable:j9,LucideTurtle:H9,LucideTv:F9,LucideTv2:hc,LucideTvMinimal:hc,LucideTvMinimalPlay:V9,LucideTwitch:B9,LucideTwitter:W9,LucideType:U9,LucideTypeOutline:R9,LucideUmbrella:K9,LucideUmbrellaOff:G9,LucideUnderline:Y9,LucideUndo:Q9,LucideUndo2:X9,LucideUndoDot:Z9,LucideUnfoldHorizontal:J9,LucideUnfoldVertical:eN,LucideUngroup:tN,LucideUniversity:pc,LucideUnlink:nN,LucideUnlink2:oN,LucideUnlock:Sr,LucideUnlockKeyhole:$r,LucideUnplug:aN,LucideUpload:nd,LucideUploadCloud:Aa,LucideUsb:rN,LucideUser:kN,LucideUser2:vc,LucideUserCheck:iN,LucideUserCheck2:yc,LucideUserCircle:Ca,LucideUserCircle2:Na,LucideUserCog:cN,LucideUserCog2:fc,LucideUserLock:sN,LucideUserMinus:dN,LucideUserMinus2:mc,LucideUserPen:lN,LucideUserPlus:uN,LucideUserPlus2:kc,LucideUserRound:vc,LucideUserRoundCheck:yc,LucideUserRoundCog:fc,LucideUserRoundMinus:mc,LucideUserRoundPen:hN,LucideUserRoundPlus:kc,LucideUserRoundSearch:pN,LucideUserRoundX:gc,LucideUserSearch:yN,LucideUserSquare:Ji,LucideUserSquare2:ec,LucideUserStar:fN,LucideUserX:mN,LucideUserX2:gc,LucideUsers:gN,LucideUsers2:_c,LucideUsersRound:_c,LucideUtensils:Mc,LucideUtensilsCrossed:bc,LucideUtilityPole:vN,LucideVan:_N,LucideVariable:bN,LucideVault:MN,LucideVectorSquare:wN,LucideVegan:xN,LucideVenetianMask:NN,LucideVenus:$N,LucideVenusAndMars:CN,LucideVerified:Pn,LucideVibrate:LN,LucideVibrateOff:SN,LucideVideo:PN,LucideVideoOff:IN,LucideVideotape:AN,LucideView:TN,LucideVoicemail:DN,LucideVolleyball:EN,LucideVolume:HN,LucideVolume1:zN,LucideVolume2:ON,LucideVolumeOff:qN,LucideVolumeX:jN,LucideVote:VN,LucideWallet:BN,LucideWallet2:wc,LucideWalletCards:FN,LucideWalletMinimal:wc,LucideWallpaper:WN,LucideWand:UN,LucideWand2:xc,LucideWandSparkles:xc,LucideWarehouse:RN,LucideWashingMachine:GN,LucideWatch:YN,LucideWaves:QN,LucideWavesArrowDown:KN,LucideWavesArrowUp:XN,LucideWavesLadder:ZN,LucideWaypoints:JN,LucideWebcam:eC,LucideWebhook:oC,LucideWebhookOff:tC,LucideWeight:aC,LucideWeightTilde:nC,LucideWheat:iC,LucideWheatOff:rC,LucideWholeWord:cC,LucideWifi:fC,LucideWifiCog:sC,LucideWifiHigh:dC,LucideWifiLow:lC,LucideWifiOff:uC,LucideWifiPen:hC,LucideWifiSync:pC,LucideWifiZero:yC,LucideWind:kC,LucideWindArrowDown:mC,LucideWine:vC,LucideWineOff:gC,LucideWorkflow:_C,LucideWorm:bC,LucideWrapText:sc,LucideWrench:MC,LucideX:on,LucideXCircle:$a,LucideXOctagon:Jo,LucideXSquare:tc,LucideYoutube:xC,LucideZap:NC,LucideZapOff:wC,LucideZoomIn:CC,LucideZoomOut:$C,Luggage:Rv,LuggageIcon:Rv,MSquare:Ei,MSquareIcon:Ei,Magnet:Gv,MagnetIcon:Gv,Mail:e3,MailCheck:Kv,MailCheckIcon:Kv,MailIcon:e3,MailMinus:Yv,MailMinusIcon:Yv,MailOpen:Xv,MailOpenIcon:Xv,MailPlus:Zv,MailPlusIcon:Zv,MailQuestion:Lr,MailQuestionIcon:Lr,MailQuestionMark:Lr,MailQuestionMarkIcon:Lr,MailSearch:Qv,MailSearchIcon:Qv,MailWarning:Jv,MailWarningIcon:Jv,MailX:t3,MailXIcon:t3,Mailbox:o3,MailboxIcon:o3,Mails:n3,MailsIcon:n3,Map:g3,MapIcon:g3,MapMinus:a3,MapMinusIcon:a3,MapPin:f3,MapPinCheck:i3,MapPinCheckIcon:i3,MapPinCheckInside:r3,MapPinCheckInsideIcon:r3,MapPinHouse:c3,MapPinHouseIcon:c3,MapPinIcon:f3,MapPinMinus:d3,MapPinMinusIcon:d3,MapPinMinusInside:s3,MapPinMinusInsideIcon:s3,MapPinOff:l3,MapPinOffIcon:l3,MapPinPen:Ir,MapPinPenIcon:Ir,MapPinPlus:h3,MapPinPlusIcon:h3,MapPinPlusInside:u3,MapPinPlusInsideIcon:u3,MapPinX:y3,MapPinXIcon:y3,MapPinXInside:p3,MapPinXInsideIcon:p3,MapPinned:m3,MapPinnedIcon:m3,MapPlus:k3,MapPlusIcon:k3,Mars:_3,MarsIcon:_3,MarsStroke:v3,MarsStrokeIcon:v3,Martini:b3,MartiniIcon:b3,Maximize:w3,Maximize2:M3,Maximize2Icon:M3,MaximizeIcon:w3,Medal:x3,MedalIcon:x3,Megaphone:C3,MegaphoneIcon:C3,MegaphoneOff:N3,MegaphoneOffIcon:N3,Meh:$3,MehIcon:$3,MemoryStick:S3,MemoryStickIcon:S3,Menu:L3,MenuIcon:L3,MenuSquare:zi,MenuSquareIcon:zi,Merge:I3,MergeIcon:I3,MessageCircle:H3,MessageCircleCode:A3,MessageCircleCodeIcon:A3,MessageCircleDashed:P3,MessageCircleDashedIcon:P3,MessageCircleHeart:T3,MessageCircleHeartIcon:T3,MessageCircleIcon:H3,MessageCircleMore:D3,MessageCircleMoreIcon:D3,MessageCircleOff:E3,MessageCircleOffIcon:E3,MessageCirclePlus:z3,MessageCirclePlusIcon:z3,MessageCircleQuestion:Ar,MessageCircleQuestionIcon:Ar,MessageCircleQuestionMark:Ar,MessageCircleQuestionMarkIcon:Ar,MessageCircleReply:O3,MessageCircleReplyIcon:O3,MessageCircleWarning:q3,MessageCircleWarningIcon:q3,MessageCircleX:j3,MessageCircleXIcon:j3,MessageSquare:o_,MessageSquareCode:V3,MessageSquareCodeIcon:V3,MessageSquareDashed:F3,MessageSquareDashedIcon:F3,MessageSquareDiff:B3,MessageSquareDiffIcon:B3,MessageSquareDot:W3,MessageSquareDotIcon:W3,MessageSquareHeart:U3,MessageSquareHeartIcon:U3,MessageSquareIcon:o_,MessageSquareLock:R3,MessageSquareLockIcon:R3,MessageSquareMore:K3,MessageSquareMoreIcon:K3,MessageSquareOff:G3,MessageSquareOffIcon:G3,MessageSquarePlus:Y3,MessageSquarePlusIcon:Y3,MessageSquareQuote:X3,MessageSquareQuoteIcon:X3,MessageSquareReply:Z3,MessageSquareReplyIcon:Z3,MessageSquareShare:J3,MessageSquareShareIcon:J3,MessageSquareText:Q3,MessageSquareTextIcon:Q3,MessageSquareWarning:e_,MessageSquareWarningIcon:e_,MessageSquareX:t_,MessageSquareXIcon:t_,MessagesSquare:n_,MessagesSquareIcon:n_,Mic:r_,Mic2:Pr,Mic2Icon:Pr,MicIcon:r_,MicOff:a_,MicOffIcon:a_,MicVocal:Pr,MicVocalIcon:Pr,Microchip:i_,MicrochipIcon:i_,Microscope:c_,MicroscopeIcon:c_,Microwave:s_,MicrowaveIcon:s_,Milestone:d_,MilestoneIcon:d_,Milk:u_,MilkIcon:u_,MilkOff:l_,MilkOffIcon:l_,Minimize:p_,Minimize2:h_,Minimize2Icon:h_,MinimizeIcon:p_,Minus:Qs,MinusCircle:fa,MinusCircleIcon:fa,MinusIcon:Qs,MinusSquare:Oi,MinusSquareIcon:Oi,Monitor:S_,MonitorCheck:y_,MonitorCheckIcon:y_,MonitorCloud:f_,MonitorCloudIcon:f_,MonitorCog:m_,MonitorCogIcon:m_,MonitorDot:k_,MonitorDotIcon:k_,MonitorDown:g_,MonitorDownIcon:g_,MonitorIcon:S_,MonitorOff:v_,MonitorOffIcon:v_,MonitorPause:__,MonitorPauseIcon:__,MonitorPlay:b_,MonitorPlayIcon:b_,MonitorSmartphone:M_,MonitorSmartphoneIcon:M_,MonitorSpeaker:w_,MonitorSpeakerIcon:w_,MonitorStop:x_,MonitorStopIcon:x_,MonitorUp:C_,MonitorUpIcon:C_,MonitorX:N_,MonitorXIcon:N_,Moon:L_,MoonIcon:L_,MoonStar:$_,MoonStarIcon:$_,MoreHorizontal:Ho,MoreHorizontalIcon:Ho,MoreVertical:qa,MoreVerticalIcon:qa,Motorbike:I_,MotorbikeIcon:I_,Mountain:P_,MountainIcon:P_,MountainSnow:A_,MountainSnowIcon:A_,Mouse:j_,MouseIcon:j_,MouseOff:T_,MouseOffIcon:T_,MousePointer:q_,MousePointer2:E_,MousePointer2Icon:E_,MousePointer2Off:D_,MousePointer2OffIcon:D_,MousePointerBan:z_,MousePointerBanIcon:z_,MousePointerClick:O_,MousePointerClickIcon:O_,MousePointerIcon:q_,MousePointerSquareDashed:Ci,MousePointerSquareDashedIcon:Ci,Move:Z_,Move3D:Tr,Move3DIcon:Tr,Move3d:Tr,Move3dIcon:Tr,MoveDiagonal:V_,MoveDiagonal2:H_,MoveDiagonal2Icon:H_,MoveDiagonalIcon:V_,MoveDown:W_,MoveDownIcon:W_,MoveDownLeft:F_,MoveDownLeftIcon:F_,MoveDownRight:B_,MoveDownRightIcon:B_,MoveHorizontal:U_,MoveHorizontalIcon:U_,MoveIcon:Z_,MoveLeft:R_,MoveLeftIcon:R_,MoveRight:G_,MoveRightIcon:G_,MoveUp:Y_,MoveUpIcon:Y_,MoveUpLeft:K_,MoveUpLeftIcon:K_,MoveUpRight:X_,MoveUpRightIcon:X_,MoveVertical:Q_,MoveVerticalIcon:Q_,Music:o8,Music2:J_,Music2Icon:J_,Music3:e8,Music3Icon:e8,Music4:t8,Music4Icon:t8,MusicIcon:o8,Navigation:i8,Navigation2:a8,Navigation2Icon:a8,Navigation2Off:n8,Navigation2OffIcon:n8,NavigationIcon:i8,NavigationOff:r8,NavigationOffIcon:r8,Network:c8,NetworkIcon:c8,Newspaper:s8,NewspaperIcon:s8,Nfc:d8,NfcIcon:d8,NonBinary:l8,NonBinaryIcon:l8,Notebook:y8,NotebookIcon:y8,NotebookPen:u8,NotebookPenIcon:u8,NotebookTabs:h8,NotebookTabsIcon:h8,NotebookText:p8,NotebookTextIcon:p8,NotepadText:m8,NotepadTextDashed:f8,NotepadTextDashedIcon:f8,NotepadTextIcon:m8,Nut:g8,NutIcon:g8,NutOff:k8,NutOffIcon:k8,Octagon:_8,OctagonAlert:Dr,OctagonAlertIcon:Dr,OctagonIcon:_8,OctagonMinus:v8,OctagonMinusIcon:v8,OctagonPause:Er,OctagonPauseIcon:Er,OctagonX:Jo,OctagonXIcon:Jo,Omega:b8,OmegaIcon:b8,Option:M8,OptionIcon:M8,Orbit:w8,OrbitIcon:w8,Origami:x8,OrigamiIcon:x8,Outdent:go,OutdentIcon:go,Package:P8,Package2:N8,Package2Icon:N8,PackageCheck:C8,PackageCheckIcon:C8,PackageIcon:P8,PackageMinus:$8,PackageMinusIcon:$8,PackageOpen:S8,PackageOpenIcon:S8,PackagePlus:L8,PackagePlusIcon:L8,PackageSearch:I8,PackageSearchIcon:I8,PackageX:A8,PackageXIcon:A8,PaintBucket:T8,PaintBucketIcon:T8,PaintRoller:D8,PaintRollerIcon:D8,Paintbrush:E8,Paintbrush2:zr,Paintbrush2Icon:zr,PaintbrushIcon:E8,PaintbrushVertical:zr,PaintbrushVerticalIcon:zr,Palette:z8,PaletteIcon:z8,Palmtree:uc,PalmtreeIcon:uc,Panda:O8,PandaIcon:O8,PanelBottom:H8,PanelBottomClose:q8,PanelBottomCloseIcon:q8,PanelBottomDashed:Or,PanelBottomDashedIcon:Or,PanelBottomIcon:H8,PanelBottomInactive:Or,PanelBottomInactiveIcon:Or,PanelBottomOpen:j8,PanelBottomOpenIcon:j8,PanelLeft:en,PanelLeftClose:qr,PanelLeftCloseIcon:qr,PanelLeftDashed:jr,PanelLeftDashedIcon:jr,PanelLeftIcon:en,PanelLeftInactive:jr,PanelLeftInactiveIcon:jr,PanelLeftOpen:Hr,PanelLeftOpenIcon:Hr,PanelLeftRightDashed:V8,PanelLeftRightDashedIcon:V8,PanelRight:W8,PanelRightClose:F8,PanelRightCloseIcon:F8,PanelRightDashed:Vr,PanelRightDashedIcon:Vr,PanelRightIcon:W8,PanelRightInactive:Vr,PanelRightInactiveIcon:Vr,PanelRightOpen:B8,PanelRightOpenIcon:B8,PanelTop:K8,PanelTopBottomDashed:U8,PanelTopBottomDashedIcon:U8,PanelTopClose:R8,PanelTopCloseIcon:R8,PanelTopDashed:Fr,PanelTopDashedIcon:Fr,PanelTopIcon:K8,PanelTopInactive:Fr,PanelTopInactiveIcon:Fr,PanelTopOpen:G8,PanelTopOpenIcon:G8,PanelsLeftBottom:Y8,PanelsLeftBottomIcon:Y8,PanelsLeftRight:Da,PanelsLeftRightIcon:Da,PanelsRightBottom:X8,PanelsRightBottomIcon:X8,PanelsTopBottom:Xr,PanelsTopBottomIcon:Xr,PanelsTopLeft:Br,PanelsTopLeftIcon:Br,Paperclip:Z8,PaperclipIcon:Z8,Parentheses:Q8,ParenthesesIcon:Q8,ParkingCircle:ka,ParkingCircleIcon:ka,ParkingCircleOff:ma,ParkingCircleOffIcon:ma,ParkingMeter:J8,ParkingMeterIcon:J8,ParkingSquare:Hi,ParkingSquareIcon:Hi,ParkingSquareOff:ji,ParkingSquareOffIcon:ji,PartyPopper:e6,PartyPopperIcon:e6,Pause:t6,PauseCircle:ga,PauseCircleIcon:ga,PauseIcon:t6,PauseOctagon:Er,PauseOctagonIcon:Er,PawPrint:o6,PawPrintIcon:o6,PcCase:n6,PcCaseIcon:n6,Pen:Ur,PenBox:_t,PenBoxIcon:_t,PenIcon:Ur,PenLine:Wr,PenLineIcon:Wr,PenOff:a6,PenOffIcon:a6,PenSquare:_t,PenSquareIcon:_t,PenTool:r6,PenToolIcon:r6,Pencil:d6,PencilIcon:d6,PencilLine:i6,PencilLineIcon:i6,PencilOff:c6,PencilOffIcon:c6,PencilRuler:s6,PencilRulerIcon:s6,Pentagon:l6,PentagonIcon:l6,Percent:u6,PercentCircle:va,PercentCircleIcon:va,PercentDiamond:za,PercentDiamondIcon:za,PercentIcon:u6,PercentSquare:Vi,PercentSquareIcon:Vi,PersonStanding:h6,PersonStandingIcon:h6,PhilippinePeso:p6,PhilippinePesoIcon:p6,Phone:_6,PhoneCall:y6,PhoneCallIcon:y6,PhoneForwarded:f6,PhoneForwardedIcon:f6,PhoneIcon:_6,PhoneIncoming:m6,PhoneIncomingIcon:m6,PhoneMissed:k6,PhoneMissedIcon:k6,PhoneOff:g6,PhoneOffIcon:g6,PhoneOutgoing:v6,PhoneOutgoingIcon:v6,Pi:b6,PiIcon:b6,PiSquare:Fi,PiSquareIcon:Fi,Piano:M6,PianoIcon:M6,Pickaxe:w6,PickaxeIcon:w6,PictureInPicture:N6,PictureInPicture2:x6,PictureInPicture2Icon:x6,PictureInPictureIcon:N6,PieChart:Xn,PieChartIcon:Xn,PiggyBank:C6,PiggyBankIcon:C6,Pilcrow:L6,PilcrowIcon:L6,PilcrowLeft:$6,PilcrowLeftIcon:$6,PilcrowRight:S6,PilcrowRightIcon:S6,PilcrowSquare:Bi,PilcrowSquareIcon:Bi,Pill:A6,PillBottle:I6,PillBottleIcon:I6,PillIcon:A6,Pin:T6,PinIcon:T6,PinOff:P6,PinOffIcon:P6,Pipette:D6,PipetteIcon:D6,Pizza:E6,PizzaIcon:E6,Plane:q6,PlaneIcon:q6,PlaneLanding:z6,PlaneLandingIcon:z6,PlaneTakeoff:O6,PlaneTakeoffIcon:O6,Play:j6,PlayCircle:ba,PlayCircleIcon:ba,PlayIcon:j6,PlaySquare:Wi,PlaySquareIcon:Wi,Plug:V6,Plug2:H6,Plug2Icon:H6,PlugIcon:V6,PlugZap:Rr,PlugZap2:Rr,PlugZap2Icon:Rr,PlugZapIcon:Rr,Plus:Js,PlusCircle:_a,PlusCircleIcon:_a,PlusIcon:Js,PlusSquare:Ui,PlusSquareIcon:Ui,Pocket:F6,PocketIcon:F6,PocketKnife:B6,PocketKnifeIcon:B6,Podcast:W6,PodcastIcon:W6,Pointer:R6,PointerIcon:R6,PointerOff:U6,PointerOffIcon:U6,Popcorn:G6,PopcornIcon:G6,Popsicle:K6,PopsicleIcon:K6,PoundSterling:Y6,PoundSterlingIcon:Y6,Power:Z6,PowerCircle:Ma,PowerCircleIcon:Ma,PowerIcon:Z6,PowerOff:X6,PowerOffIcon:X6,PowerSquare:Ri,PowerSquareIcon:Ri,Presentation:Q6,PresentationIcon:Q6,Printer:ob,PrinterCheck:J6,PrinterCheckIcon:J6,PrinterIcon:ob,PrinterX:eb,PrinterXIcon:eb,Projector:tb,ProjectorIcon:tb,Proportions:nb,ProportionsIcon:nb,Puzzle:ab,PuzzleIcon:ab,Pyramid:rb,PyramidIcon:rb,QrCode:ib,QrCodeIcon:ib,Quote:cb,QuoteIcon:cb,Rabbit:sb,RabbitIcon:sb,Radar:db,RadarIcon:db,Radiation:ub,RadiationIcon:ub,Radical:lb,RadicalIcon:lb,Radio:yb,RadioIcon:yb,RadioReceiver:hb,RadioReceiverIcon:hb,RadioTower:pb,RadioTowerIcon:pb,Radius:fb,RadiusIcon:fb,RailSymbol:kb,RailSymbolIcon:kb,Rainbow:mb,RainbowIcon:mb,Rat:gb,RatIcon:gb,Ratio:vb,RatioIcon:vb,Receipt:Sb,ReceiptCent:_b,ReceiptCentIcon:_b,ReceiptEuro:bb,ReceiptEuroIcon:bb,ReceiptIcon:Sb,ReceiptIndianRupee:Mb,ReceiptIndianRupeeIcon:Mb,ReceiptJapaneseYen:wb,ReceiptJapaneseYenIcon:wb,ReceiptPoundSterling:xb,ReceiptPoundSterlingIcon:xb,ReceiptRussianRuble:Nb,ReceiptRussianRubleIcon:Nb,ReceiptSwissFranc:Cb,ReceiptSwissFrancIcon:Cb,ReceiptText:$b,ReceiptTextIcon:$b,ReceiptTurkishLira:Lb,ReceiptTurkishLiraIcon:Lb,RectangleCircle:Ib,RectangleCircleIcon:Ib,RectangleEllipsis:Gr,RectangleEllipsisIcon:Gr,RectangleGoggles:Ab,RectangleGogglesIcon:Ab,RectangleHorizontal:Pb,RectangleHorizontalIcon:Pb,RectangleVertical:Tb,RectangleVerticalIcon:Tb,Recycle:zb,RecycleIcon:zb,Redo:Ob,Redo2:Db,Redo2Icon:Db,RedoDot:Eb,RedoDotIcon:Eb,RedoIcon:Ob,RefreshCcw:jb,RefreshCcwDot:qb,RefreshCcwDotIcon:qb,RefreshCcwIcon:jb,RefreshCw:Vb,RefreshCwIcon:Vb,RefreshCwOff:Hb,RefreshCwOffIcon:Hb,Refrigerator:Fb,RefrigeratorIcon:Fb,Regex:Bb,RegexIcon:Bb,RemoveFormatting:Wb,RemoveFormattingIcon:Wb,Repeat:Gb,Repeat1:Ub,Repeat1Icon:Ub,Repeat2:Rb,Repeat2Icon:Rb,RepeatIcon:Gb,Replace:Yb,ReplaceAll:Kb,ReplaceAllIcon:Kb,ReplaceIcon:Yb,Reply:Zb,ReplyAll:Xb,ReplyAllIcon:Xb,ReplyIcon:Zb,Rewind:Qb,RewindIcon:Qb,Ribbon:Jb,RibbonIcon:Jb,Rocket:ed,RocketIcon:ed,RockingChair:eM,RockingChairIcon:eM,RollerCoaster:tM,RollerCoasterIcon:tM,Rose:oM,RoseIcon:oM,Rotate3D:Kr,Rotate3DIcon:Kr,Rotate3d:Kr,Rotate3dIcon:Kr,RotateCcw:rM,RotateCcwIcon:rM,RotateCcwKey:nM,RotateCcwKeyIcon:nM,RotateCcwSquare:aM,RotateCcwSquareIcon:aM,RotateCw:cM,RotateCwIcon:cM,RotateCwSquare:iM,RotateCwSquareIcon:iM,Route:dM,RouteIcon:dM,RouteOff:sM,RouteOffIcon:sM,Router:lM,RouterIcon:lM,Rows:Yr,Rows2:Yr,Rows2Icon:Yr,Rows3:Xr,Rows3Icon:Xr,Rows4:uM,Rows4Icon:uM,RowsIcon:Yr,Rss:hM,RssIcon:hM,Ruler:kM,RulerDimensionLine:pM,RulerDimensionLineIcon:pM,RulerIcon:kM,RussianRuble:yM,RussianRubleIcon:yM,Sailboat:fM,SailboatIcon:fM,Salad:mM,SaladIcon:mM,Sandwich:gM,SandwichIcon:gM,Satellite:_M,SatelliteDish:vM,SatelliteDishIcon:vM,SatelliteIcon:_M,SaudiRiyal:bM,SaudiRiyalIcon:bM,Save:xM,SaveAll:wM,SaveAllIcon:wM,SaveIcon:xM,SaveOff:MM,SaveOffIcon:MM,Scale:NM,Scale3D:Zr,Scale3DIcon:Zr,Scale3d:Zr,Scale3dIcon:Zr,ScaleIcon:NM,Scaling:CM,ScalingIcon:CM,Scan:DM,ScanBarcode:$M,ScanBarcodeIcon:$M,ScanEye:SM,ScanEyeIcon:SM,ScanFace:LM,ScanFaceIcon:LM,ScanHeart:IM,ScanHeartIcon:IM,ScanIcon:DM,ScanLine:AM,ScanLineIcon:AM,ScanQrCode:PM,ScanQrCodeIcon:PM,ScanSearch:TM,ScanSearchIcon:TM,ScanText:EM,ScanTextIcon:EM,ScatterChart:Zn,ScatterChartIcon:Zn,School:OM,School2:pc,School2Icon:pc,SchoolIcon:OM,Scissors:qM,ScissorsIcon:qM,ScissorsLineDashed:zM,ScissorsLineDashedIcon:zM,ScissorsSquare:Gi,ScissorsSquareDashedBottom:gi,ScissorsSquareDashedBottomIcon:gi,ScissorsSquareIcon:Gi,Scooter:jM,ScooterIcon:jM,ScreenShare:VM,ScreenShareIcon:VM,ScreenShareOff:HM,ScreenShareOffIcon:HM,Scroll:FM,ScrollIcon:FM,ScrollText:WM,ScrollTextIcon:WM,Search:Qr,SearchAlert:BM,SearchAlertIcon:BM,SearchCheck:UM,SearchCheckIcon:UM,SearchCode:RM,SearchCodeIcon:RM,SearchIcon:Qr,SearchSlash:GM,SearchSlashIcon:GM,SearchX:KM,SearchXIcon:KM,Section:YM,SectionIcon:YM,Send:ZM,SendHorizonal:Jr,SendHorizonalIcon:Jr,SendHorizontal:Jr,SendHorizontalIcon:Jr,SendIcon:ZM,SendToBack:XM,SendToBackIcon:XM,SeparatorHorizontal:QM,SeparatorHorizontalIcon:QM,SeparatorVertical:JM,SeparatorVerticalIcon:JM,Server:n7,ServerCog:e7,ServerCogIcon:e7,ServerCrash:t7,ServerCrashIcon:t7,ServerIcon:n7,ServerOff:o7,ServerOffIcon:o7,Settings:r7,Settings2:a7,Settings2Icon:a7,SettingsIcon:r7,Shapes:i7,ShapesIcon:i7,Share:s7,Share2:c7,Share2Icon:c7,ShareIcon:s7,Sheet:d7,SheetIcon:d7,Shell:l7,ShellIcon:l7,Shield:_7,ShieldAlert:u7,ShieldAlertIcon:u7,ShieldBan:h7,ShieldBanIcon:h7,ShieldCheck:p7,ShieldCheckIcon:p7,ShieldClose:ti,ShieldCloseIcon:ti,ShieldEllipsis:f7,ShieldEllipsisIcon:f7,ShieldHalf:y7,ShieldHalfIcon:y7,ShieldIcon:_7,ShieldMinus:m7,ShieldMinusIcon:m7,ShieldOff:k7,ShieldOffIcon:k7,ShieldPlus:g7,ShieldPlusIcon:g7,ShieldQuestion:ei,ShieldQuestionIcon:ei,ShieldQuestionMark:ei,ShieldQuestionMarkIcon:ei,ShieldUser:v7,ShieldUserIcon:v7,ShieldX:ti,ShieldXIcon:ti,Ship:M7,ShipIcon:M7,ShipWheel:b7,ShipWheelIcon:b7,Shirt:w7,ShirtIcon:w7,ShoppingBag:x7,ShoppingBagIcon:x7,ShoppingBasket:N7,ShoppingBasketIcon:N7,ShoppingCart:C7,ShoppingCartIcon:C7,Shovel:$7,ShovelIcon:$7,ShowerHead:S7,ShowerHeadIcon:S7,Shredder:L7,ShredderIcon:L7,Shrimp:I7,ShrimpIcon:I7,Shrink:A7,ShrinkIcon:A7,Shrub:P7,ShrubIcon:P7,Shuffle:T7,ShuffleIcon:T7,Sidebar:en,SidebarClose:qr,SidebarCloseIcon:qr,SidebarIcon:en,SidebarOpen:Hr,SidebarOpenIcon:Hr,Sigma:D7,SigmaIcon:D7,SigmaSquare:Ki,SigmaSquareIcon:Ki,Signal:j7,SignalHigh:E7,SignalHighIcon:E7,SignalIcon:j7,SignalLow:z7,SignalLowIcon:z7,SignalMedium:O7,SignalMediumIcon:O7,SignalZero:q7,SignalZeroIcon:q7,Signature:H7,SignatureIcon:H7,Signpost:F7,SignpostBig:V7,SignpostBigIcon:V7,SignpostIcon:F7,Siren:B7,SirenIcon:B7,SkipBack:W7,SkipBackIcon:W7,SkipForward:U7,SkipForwardIcon:U7,Skull:R7,SkullIcon:R7,Slack:G7,SlackIcon:G7,Slash:K7,SlashIcon:K7,SlashSquare:Yi,SlashSquareIcon:Yi,Slice:Y7,SliceIcon:Y7,Sliders:oi,SlidersHorizontal:X7,SlidersHorizontalIcon:X7,SlidersIcon:oi,SlidersVertical:oi,SlidersVerticalIcon:oi,Smartphone:ew,SmartphoneCharging:Z7,SmartphoneChargingIcon:Z7,SmartphoneIcon:ew,SmartphoneNfc:Q7,SmartphoneNfcIcon:Q7,Smile:tw,SmileIcon:tw,SmilePlus:J7,SmilePlusIcon:J7,Snail:ow,SnailIcon:ow,Snowflake:nw,SnowflakeIcon:nw,SoapDispenserDroplet:aw,SoapDispenserDropletIcon:aw,Sofa:rw,SofaIcon:rw,SolarPanel:iw,SolarPanelIcon:iw,SortAsc:Ln,SortAscIcon:Ln,SortDesc:Cn,SortDescIcon:Cn,Soup:cw,SoupIcon:cw,Space:sw,SpaceIcon:sw,Spade:dw,SpadeIcon:dw,Sparkle:lw,SparkleIcon:lw,Sparkles:ni,SparklesIcon:ni,Speaker:uw,SpeakerIcon:uw,Speech:hw,SpeechIcon:hw,SpellCheck:yw,SpellCheck2:pw,SpellCheck2Icon:pw,SpellCheckIcon:yw,Spline:mw,SplineIcon:mw,SplinePointer:fw,SplinePointerIcon:fw,Split:gw,SplitIcon:gw,SplitSquareHorizontal:Xi,SplitSquareHorizontalIcon:Xi,SplitSquareVertical:Zi,SplitSquareVerticalIcon:Zi,Spool:kw,SpoolIcon:kw,Spotlight:vw,SpotlightIcon:vw,SprayCan:_w,SprayCanIcon:_w,Sprout:bw,SproutIcon:bw,Square:Pw,SquareActivity:ai,SquareActivityIcon:ai,SquareArrowDown:ii,SquareArrowDownIcon:ii,SquareArrowDownLeft:ri,SquareArrowDownLeftIcon:ri,SquareArrowDownRight:ci,SquareArrowDownRightIcon:ci,SquareArrowLeft:si,SquareArrowLeftIcon:si,SquareArrowOutDownLeft:di,SquareArrowOutDownLeftIcon:di,SquareArrowOutDownRight:li,SquareArrowOutDownRightIcon:li,SquareArrowOutUpLeft:ui,SquareArrowOutUpLeftIcon:ui,SquareArrowOutUpRight:hi,SquareArrowOutUpRightIcon:hi,SquareArrowRight:pi,SquareArrowRightIcon:pi,SquareArrowUp:mi,SquareArrowUpIcon:mi,SquareArrowUpLeft:yi,SquareArrowUpLeftIcon:yi,SquareArrowUpRight:fi,SquareArrowUpRightIcon:fi,SquareAsterisk:ki,SquareAsteriskIcon:ki,SquareBottomDashedScissors:gi,SquareBottomDashedScissorsIcon:gi,SquareChartGantt:_o,SquareChartGanttIcon:_o,SquareCheck:_i,SquareCheckBig:vi,SquareCheckBigIcon:vi,SquareCheckIcon:_i,SquareChevronDown:bi,SquareChevronDownIcon:bi,SquareChevronLeft:Mi,SquareChevronLeftIcon:Mi,SquareChevronRight:wi,SquareChevronRightIcon:wi,SquareChevronUp:xi,SquareChevronUpIcon:xi,SquareCode:Ni,SquareCodeIcon:Ni,SquareDashed:Si,SquareDashedBottom:ww,SquareDashedBottomCode:Mw,SquareDashedBottomCodeIcon:Mw,SquareDashedBottomIcon:ww,SquareDashedIcon:Si,SquareDashedKanban:$i,SquareDashedKanbanIcon:$i,SquareDashedMousePointer:Ci,SquareDashedMousePointerIcon:Ci,SquareDashedTopSolid:xw,SquareDashedTopSolidIcon:xw,SquareDivide:Li,SquareDivideIcon:Li,SquareDot:Ii,SquareDotIcon:Ii,SquareEqual:Ai,SquareEqualIcon:Ai,SquareFunction:Pi,SquareFunctionIcon:Pi,SquareGanttChart:_o,SquareGanttChartIcon:_o,SquareIcon:Pw,SquareKanban:Di,SquareKanbanIcon:Di,SquareLibrary:Ti,SquareLibraryIcon:Ti,SquareM:Ei,SquareMIcon:Ei,SquareMenu:zi,SquareMenuIcon:zi,SquareMinus:Oi,SquareMinusIcon:Oi,SquareMousePointer:qi,SquareMousePointerIcon:qi,SquareParking:Hi,SquareParkingIcon:Hi,SquareParkingOff:ji,SquareParkingOffIcon:ji,SquarePause:Nw,SquarePauseIcon:Nw,SquarePen:_t,SquarePenIcon:_t,SquarePercent:Vi,SquarePercentIcon:Vi,SquarePi:Fi,SquarePiIcon:Fi,SquarePilcrow:Bi,SquarePilcrowIcon:Bi,SquarePlay:Wi,SquarePlayIcon:Wi,SquarePlus:Ui,SquarePlusIcon:Ui,SquarePower:Ri,SquarePowerIcon:Ri,SquareRadical:Cw,SquareRadicalIcon:Cw,SquareRoundCorner:$w,SquareRoundCornerIcon:$w,SquareScissors:Gi,SquareScissorsIcon:Gi,SquareSigma:Ki,SquareSigmaIcon:Ki,SquareSlash:Yi,SquareSlashIcon:Yi,SquareSplitHorizontal:Xi,SquareSplitHorizontalIcon:Xi,SquareSplitVertical:Zi,SquareSplitVerticalIcon:Zi,SquareSquare:Sw,SquareSquareIcon:Sw,SquareStack:Lw,SquareStackIcon:Lw,SquareStar:Iw,SquareStarIcon:Iw,SquareStop:Aw,SquareStopIcon:Aw,SquareTerminal:Qi,SquareTerminalIcon:Qi,SquareUser:Ji,SquareUserIcon:Ji,SquareUserRound:ec,SquareUserRoundIcon:ec,SquareX:tc,SquareXIcon:tc,SquaresExclude:Tw,SquaresExcludeIcon:Tw,SquaresIntersect:Dw,SquaresIntersectIcon:Dw,SquaresSubtract:zw,SquaresSubtractIcon:zw,SquaresUnite:Ew,SquaresUniteIcon:Ew,Squircle:qw,SquircleDashed:Ow,SquircleDashedIcon:Ow,SquircleIcon:qw,Squirrel:jw,SquirrelIcon:jw,Stamp:Hw,StampIcon:Hw,Star:Bw,StarHalf:Fw,StarHalfIcon:Fw,StarIcon:Bw,StarOff:Vw,StarOffIcon:Vw,Stars:ni,StarsIcon:ni,StepBack:Ww,StepBackIcon:Ww,StepForward:Uw,StepForwardIcon:Uw,Stethoscope:Rw,StethoscopeIcon:Rw,Sticker:Gw,StickerIcon:Gw,StickyNote:Kw,StickyNoteIcon:Kw,Stone:Yw,StoneIcon:Yw,StopCircle:xa,StopCircleIcon:xa,Store:Xw,StoreIcon:Xw,StretchHorizontal:Zw,StretchHorizontalIcon:Zw,StretchVertical:Qw,StretchVerticalIcon:Qw,Strikethrough:Jw,StrikethroughIcon:Jw,Subscript:ex,SubscriptIcon:ex,Subtitles:qn,SubtitlesIcon:qn,Sun:rx,SunDim:tx,SunDimIcon:tx,SunIcon:rx,SunMedium:nx,SunMediumIcon:nx,SunMoon:ox,SunMoonIcon:ox,SunSnow:ax,SunSnowIcon:ax,Sunrise:ix,SunriseIcon:ix,Sunset:cx,SunsetIcon:cx,Superscript:sx,SuperscriptIcon:sx,SwatchBook:dx,SwatchBookIcon:dx,SwissFranc:lx,SwissFrancIcon:lx,SwitchCamera:ux,SwitchCameraIcon:ux,Sword:hx,SwordIcon:hx,Swords:px,SwordsIcon:px,Syringe:yx,SyringeIcon:yx,Table:Mx,Table2:fx,Table2Icon:fx,TableCellsMerge:mx,TableCellsMergeIcon:mx,TableCellsSplit:kx,TableCellsSplitIcon:kx,TableColumnsSplit:gx,TableColumnsSplitIcon:gx,TableConfig:fo,TableConfigIcon:fo,TableIcon:Mx,TableOfContents:bx,TableOfContentsIcon:bx,TableProperties:vx,TablePropertiesIcon:vx,TableRowsSplit:_x,TableRowsSplitIcon:_x,Tablet:xx,TabletIcon:xx,TabletSmartphone:wx,TabletSmartphoneIcon:wx,Tablets:Cx,TabletsIcon:Cx,Tag:Nx,TagIcon:Nx,Tags:$x,TagsIcon:$x,Tally1:Sx,Tally1Icon:Sx,Tally2:Lx,Tally2Icon:Lx,Tally3:Ix,Tally3Icon:Ix,Tally4:Ax,Tally4Icon:Ax,Tally5:Px,Tally5Icon:Px,Tangent:Tx,TangentIcon:Tx,Target:Dx,TargetIcon:Dx,Telescope:Ex,TelescopeIcon:Ex,Tent:Ox,TentIcon:Ox,TentTree:zx,TentTreeIcon:zx,Terminal:qx,TerminalIcon:qx,TerminalSquare:Qi,TerminalSquareIcon:Qi,TestTube:jx,TestTube2:oc,TestTube2Icon:oc,TestTubeDiagonal:oc,TestTubeDiagonalIcon:oc,TestTubeIcon:jx,TestTubes:Hx,TestTubesIcon:Hx,Text:bo,TextAlignCenter:nc,TextAlignCenterIcon:nc,TextAlignEnd:ac,TextAlignEndIcon:ac,TextAlignJustify:rc,TextAlignJustifyIcon:rc,TextAlignStart:bo,TextAlignStartIcon:bo,TextCursor:Fx,TextCursorIcon:Fx,TextCursorInput:Vx,TextCursorInputIcon:Vx,TextIcon:bo,TextInitial:ic,TextInitialIcon:ic,TextQuote:Bx,TextQuoteIcon:Bx,TextSearch:Wx,TextSearchIcon:Wx,TextSelect:cc,TextSelectIcon:cc,TextSelection:cc,TextSelectionIcon:cc,TextWrap:sc,TextWrapIcon:sc,Theater:Ux,TheaterIcon:Ux,Thermometer:Kx,ThermometerIcon:Kx,ThermometerSnowflake:Rx,ThermometerSnowflakeIcon:Rx,ThermometerSun:Gx,ThermometerSunIcon:Gx,ThumbsDown:Yx,ThumbsDownIcon:Yx,ThumbsUp:Xx,ThumbsUpIcon:Xx,Ticket:n9,TicketCheck:Zx,TicketCheckIcon:Zx,TicketIcon:n9,TicketMinus:Qx,TicketMinusIcon:Qx,TicketPercent:Jx,TicketPercentIcon:Jx,TicketPlus:e9,TicketPlusIcon:e9,TicketSlash:t9,TicketSlashIcon:t9,TicketX:o9,TicketXIcon:o9,Tickets:r9,TicketsIcon:r9,TicketsPlane:a9,TicketsPlaneIcon:a9,Timer:c9,TimerIcon:c9,TimerOff:i9,TimerOffIcon:i9,TimerReset:s9,TimerResetIcon:s9,ToggleLeft:d9,ToggleLeftIcon:d9,ToggleRight:l9,ToggleRightIcon:l9,Toilet:u9,ToiletIcon:u9,ToolCase:h9,ToolCaseIcon:h9,Toolbox:y9,ToolboxIcon:y9,Tornado:p9,TornadoIcon:p9,Torus:f9,TorusIcon:f9,Touchpad:k9,TouchpadIcon:k9,TouchpadOff:m9,TouchpadOffIcon:m9,TowerControl:g9,TowerControlIcon:g9,ToyBrick:v9,ToyBrickIcon:v9,Tractor:_9,TractorIcon:_9,TrafficCone:b9,TrafficConeIcon:b9,Train:dc,TrainFront:w9,TrainFrontIcon:w9,TrainFrontTunnel:M9,TrainFrontTunnelIcon:M9,TrainIcon:dc,TrainTrack:x9,TrainTrackIcon:x9,TramFront:dc,TramFrontIcon:dc,Transgender:N9,TransgenderIcon:N9,Trash:C9,Trash2:lc,Trash2Icon:lc,TrashIcon:C9,TreeDeciduous:$9,TreeDeciduousIcon:$9,TreePalm:uc,TreePalmIcon:uc,TreePine:S9,TreePineIcon:S9,Trees:L9,TreesIcon:L9,Trello:I9,TrelloIcon:I9,TrendingDown:td,TrendingDownIcon:td,TrendingUp:od,TrendingUpDown:A9,TrendingUpDownIcon:A9,TrendingUpIcon:od,Triangle:D9,TriangleAlert:tn,TriangleAlertIcon:tn,TriangleDashed:P9,TriangleDashedIcon:P9,TriangleIcon:D9,TriangleRight:T9,TriangleRightIcon:T9,Trophy:E9,TrophyIcon:E9,Truck:O9,TruckElectric:z9,TruckElectricIcon:z9,TruckIcon:O9,TurkishLira:q9,TurkishLiraIcon:q9,Turntable:j9,TurntableIcon:j9,Turtle:H9,TurtleIcon:H9,Tv:F9,Tv2:hc,Tv2Icon:hc,TvIcon:F9,TvMinimal:hc,TvMinimalIcon:hc,TvMinimalPlay:V9,TvMinimalPlayIcon:V9,Twitch:B9,TwitchIcon:B9,Twitter:W9,TwitterIcon:W9,Type:U9,TypeIcon:U9,TypeOutline:R9,TypeOutlineIcon:R9,Umbrella:K9,UmbrellaIcon:K9,UmbrellaOff:G9,UmbrellaOffIcon:G9,Underline:Y9,UnderlineIcon:Y9,Undo:Q9,Undo2:X9,Undo2Icon:X9,UndoDot:Z9,UndoDotIcon:Z9,UndoIcon:Q9,UnfoldHorizontal:J9,UnfoldHorizontalIcon:J9,UnfoldVertical:eN,UnfoldVerticalIcon:eN,Ungroup:tN,UngroupIcon:tN,University:pc,UniversityIcon:pc,Unlink:nN,Unlink2:oN,Unlink2Icon:oN,UnlinkIcon:nN,Unlock:Sr,UnlockIcon:Sr,UnlockKeyhole:$r,UnlockKeyholeIcon:$r,Unplug:aN,UnplugIcon:aN,Upload:nd,UploadCloud:Aa,UploadCloudIcon:Aa,UploadIcon:nd,Usb:rN,UsbIcon:rN,User:kN,User2:vc,User2Icon:vc,UserCheck:iN,UserCheck2:yc,UserCheck2Icon:yc,UserCheckIcon:iN,UserCircle:Ca,UserCircle2:Na,UserCircle2Icon:Na,UserCircleIcon:Ca,UserCog:cN,UserCog2:fc,UserCog2Icon:fc,UserCogIcon:cN,UserIcon:kN,UserLock:sN,UserLockIcon:sN,UserMinus:dN,UserMinus2:mc,UserMinus2Icon:mc,UserMinusIcon:dN,UserPen:lN,UserPenIcon:lN,UserPlus:uN,UserPlus2:kc,UserPlus2Icon:kc,UserPlusIcon:uN,UserRound:vc,UserRoundCheck:yc,UserRoundCheckIcon:yc,UserRoundCog:fc,UserRoundCogIcon:fc,UserRoundIcon:vc,UserRoundMinus:mc,UserRoundMinusIcon:mc,UserRoundPen:hN,UserRoundPenIcon:hN,UserRoundPlus:kc,UserRoundPlusIcon:kc,UserRoundSearch:pN,UserRoundSearchIcon:pN,UserRoundX:gc,UserRoundXIcon:gc,UserSearch:yN,UserSearchIcon:yN,UserSquare:Ji,UserSquare2:ec,UserSquare2Icon:ec,UserSquareIcon:Ji,UserStar:fN,UserStarIcon:fN,UserX:mN,UserX2:gc,UserX2Icon:gc,UserXIcon:mN,Users:gN,Users2:_c,Users2Icon:_c,UsersIcon:gN,UsersRound:_c,UsersRoundIcon:_c,Utensils:Mc,UtensilsCrossed:bc,UtensilsCrossedIcon:bc,UtensilsIcon:Mc,UtilityPole:vN,UtilityPoleIcon:vN,Van:_N,VanIcon:_N,Variable:bN,VariableIcon:bN,Vault:MN,VaultIcon:MN,VectorSquare:wN,VectorSquareIcon:wN,Vegan:xN,VeganIcon:xN,VenetianMask:NN,VenetianMaskIcon:NN,Venus:$N,VenusAndMars:CN,VenusAndMarsIcon:CN,VenusIcon:$N,Verified:Pn,VerifiedIcon:Pn,Vibrate:LN,VibrateIcon:LN,VibrateOff:SN,VibrateOffIcon:SN,Video:PN,VideoIcon:PN,VideoOff:IN,VideoOffIcon:IN,Videotape:AN,VideotapeIcon:AN,View:TN,ViewIcon:TN,Voicemail:DN,VoicemailIcon:DN,Volleyball:EN,VolleyballIcon:EN,Volume:HN,Volume1:zN,Volume1Icon:zN,Volume2:ON,Volume2Icon:ON,VolumeIcon:HN,VolumeOff:qN,VolumeOffIcon:qN,VolumeX:jN,VolumeXIcon:jN,Vote:VN,VoteIcon:VN,Wallet:BN,Wallet2:wc,Wallet2Icon:wc,WalletCards:FN,WalletCardsIcon:FN,WalletIcon:BN,WalletMinimal:wc,WalletMinimalIcon:wc,Wallpaper:WN,WallpaperIcon:WN,Wand:UN,Wand2:xc,Wand2Icon:xc,WandIcon:UN,WandSparkles:xc,WandSparklesIcon:xc,Warehouse:RN,WarehouseIcon:RN,WashingMachine:GN,WashingMachineIcon:GN,Watch:YN,WatchIcon:YN,Waves:QN,WavesArrowDown:KN,WavesArrowDownIcon:KN,WavesArrowUp:XN,WavesArrowUpIcon:XN,WavesIcon:QN,WavesLadder:ZN,WavesLadderIcon:ZN,Waypoints:JN,WaypointsIcon:JN,Webcam:eC,WebcamIcon:eC,Webhook:oC,WebhookIcon:oC,WebhookOff:tC,WebhookOffIcon:tC,Weight:aC,WeightIcon:aC,WeightTilde:nC,WeightTildeIcon:nC,Wheat:iC,WheatIcon:iC,WheatOff:rC,WheatOffIcon:rC,WholeWord:cC,WholeWordIcon:cC,Wifi:fC,WifiCog:sC,WifiCogIcon:sC,WifiHigh:dC,WifiHighIcon:dC,WifiIcon:fC,WifiLow:lC,WifiLowIcon:lC,WifiOff:uC,WifiOffIcon:uC,WifiPen:hC,WifiPenIcon:hC,WifiSync:pC,WifiSyncIcon:pC,WifiZero:yC,WifiZeroIcon:yC,Wind:kC,WindArrowDown:mC,WindArrowDownIcon:mC,WindIcon:kC,Wine:vC,WineIcon:vC,WineOff:gC,WineOffIcon:gC,Workflow:_C,WorkflowIcon:_C,Worm:bC,WormIcon:bC,WrapText:sc,WrapTextIcon:sc,Wrench:MC,WrenchIcon:MC,X:on,XCircle:$a,XCircleIcon:$a,XIcon:on,XOctagon:Jo,XOctagonIcon:Jo,XSquare:tc,XSquareIcon:tc,Youtube:xC,YoutubeIcon:xC,Zap:NC,ZapIcon:NC,ZapOff:wC,ZapOffIcon:wC,ZoomIn:CC,ZoomInIcon:CC,ZoomOut:$C,ZoomOutIcon:$C,createLucideIcon:c,icons:jS},Symbol.toStringTag,{value:"Module"})),IY=wY,wD=p.forwardRef(({className:e,...t},o)=>d.jsx(xY,{ref:o,className:S("border-b",e),...t}));wD.displayName="AccordionItem";const xD=p.forwardRef(({className:e,children:t,...o},n)=>d.jsx(NY,{className:"flex",children:d.jsxs(kD,{ref:n,className:S("flex flex-1 items-center justify-between py-4 font-medium transition-all hover:underline [&[data-state=open]>svg]:rotate-180",e),...o,children:[t,d.jsx(Ht,{className:"h-4 w-4 shrink-0 transition-transform duration-200"})]})}));xD.displayName=kD.displayName;const ND=p.forwardRef(({className:e,children:t,...o},n)=>d.jsx(gD,{ref:n,className:"overflow-hidden text-sm transition-all data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down",...o,children:d.jsx("div",{className:S("pb-4 pt-0",e),children:t})}));ND.displayName=gD.displayName;function Ue(e){const t=p.useRef(e);return p.useEffect(()=>{t.current=e}),p.useMemo(()=>(...o)=>t.current?.(...o),[])}function AY(e,t=globalThis?.document){const o=Ue(e);p.useEffect(()=>{const n=a=>{a.key==="Escape"&&o(a)};return t.addEventListener("keydown",n,{capture:!0}),()=>t.removeEventListener("keydown",n,{capture:!0})},[o,t])}var PY="DismissableLayer",HS="dismissableLayer.update",TY="dismissableLayer.pointerDownOutside",DY="dismissableLayer.focusOutside",CD,$D=p.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),nn=p.forwardRef((e,t)=>{const{disableOutsidePointerEvents:o=!1,onEscapeKeyDown:n,onPointerDownOutside:a,onFocusOutside:r,onInteractOutside:i,onDismiss:s,...l}=e,u=p.useContext($D),[y,h]=p.useState(null),f=y?.ownerDocument??globalThis?.document,[,k]=p.useState({}),m=be(t,$=>h($)),g=Array.from(u.layers),[_]=[...u.layersWithOutsidePointerEventsDisabled].slice(-1),v=g.indexOf(_),b=y?g.indexOf(y):-1,M=u.layersWithOutsidePointerEventsDisabled.size>0,x=b>=v,N=OY($=>{const L=$.target,A=[...u.branches].some(z=>z.contains(L));!x||A||(a?.($),i?.($),$.defaultPrevented||s?.())},f),C=qY($=>{const L=$.target;[...u.branches].some(z=>z.contains(L))||(r?.($),i?.($),$.defaultPrevented||s?.())},f);return AY($=>{b===u.layers.size-1&&(n?.($),!$.defaultPrevented&&s&&($.preventDefault(),s()))},f),p.useEffect(()=>{if(y)return o&&(u.layersWithOutsidePointerEventsDisabled.size===0&&(CD=f.body.style.pointerEvents,f.body.style.pointerEvents="none"),u.layersWithOutsidePointerEventsDisabled.add(y)),u.layers.add(y),SD(),()=>{o&&u.layersWithOutsidePointerEventsDisabled.size===1&&(f.body.style.pointerEvents=CD)}},[y,f,o,u]),p.useEffect(()=>()=>{y&&(u.layers.delete(y),u.layersWithOutsidePointerEventsDisabled.delete(y),SD())},[y,u]),p.useEffect(()=>{const $=()=>k({});return document.addEventListener(HS,$),()=>document.removeEventListener(HS,$)},[]),d.jsx(se.div,{...l,ref:m,style:{pointerEvents:M?x?"auto":"none":void 0,...e.style},onFocusCapture:X(e.onFocusCapture,C.onFocusCapture),onBlurCapture:X(e.onBlurCapture,C.onBlurCapture),onPointerDownCapture:X(e.onPointerDownCapture,N.onPointerDownCapture)})});nn.displayName=PY;var EY="DismissableLayerBranch",zY=p.forwardRef((e,t)=>{const o=p.useContext($D),n=p.useRef(null),a=be(t,n);return p.useEffect(()=>{const r=n.current;if(r)return o.branches.add(r),()=>{o.branches.delete(r)}},[o.branches]),d.jsx(se.div,{...e,ref:a})});zY.displayName=EY;function OY(e,t=globalThis?.document){const o=Ue(e),n=p.useRef(!1),a=p.useRef(()=>{});return p.useEffect(()=>{const r=s=>{if(s.target&&!n.current){let l=function(){LD(TY,o,u,{discrete:!0})};const u={originalEvent:s};s.pointerType==="touch"?(t.removeEventListener("click",a.current),a.current=l,t.addEventListener("click",a.current,{once:!0})):l()}else t.removeEventListener("click",a.current);n.current=!1},i=window.setTimeout(()=>{t.addEventListener("pointerdown",r)},0);return()=>{window.clearTimeout(i),t.removeEventListener("pointerdown",r),t.removeEventListener("click",a.current)}},[t,o]),{onPointerDownCapture:()=>n.current=!0}}function qY(e,t=globalThis?.document){const o=Ue(e),n=p.useRef(!1);return p.useEffect(()=>{const a=r=>{r.target&&!n.current&&LD(DY,o,{originalEvent:r},{discrete:!1})};return t.addEventListener("focusin",a),()=>t.removeEventListener("focusin",a)},[t,o]),{onFocusCapture:()=>n.current=!0,onBlurCapture:()=>n.current=!1}}function SD(){const e=new CustomEvent(HS);document.dispatchEvent(e)}function LD(e,t,o,{discrete:n}){const a=o.originalEvent.target,r=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:o});t&&a.addEventListener(e,t,{once:!0}),n?g1(a,r):a.dispatchEvent(r)}var VS="focusScope.autoFocusOnMount",FS="focusScope.autoFocusOnUnmount",ID={bubbles:!1,cancelable:!0},jY="FocusScope",ad=p.forwardRef((e,t)=>{const{loop:o=!1,trapped:n=!1,onMountAutoFocus:a,onUnmountAutoFocus:r,...i}=e,[s,l]=p.useState(null),u=Ue(a),y=Ue(r),h=p.useRef(null),f=be(t,g=>l(g)),k=p.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;p.useEffect(()=>{if(n){let g=function(M){if(k.paused||!s)return;const x=M.target;s.contains(x)?h.current=x:an(h.current,{select:!0})},_=function(M){if(k.paused||!s)return;const x=M.relatedTarget;x!==null&&(s.contains(x)||an(h.current,{select:!0}))},v=function(M){if(document.activeElement===document.body)for(const N of M)N.removedNodes.length>0&&an(s)};document.addEventListener("focusin",g),document.addEventListener("focusout",_);const b=new MutationObserver(v);return s&&b.observe(s,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",g),document.removeEventListener("focusout",_),b.disconnect()}}},[n,s,k.paused]),p.useEffect(()=>{if(s){TD.add(k);const g=document.activeElement;if(!s.contains(g)){const v=new CustomEvent(VS,ID);s.addEventListener(VS,u),s.dispatchEvent(v),v.defaultPrevented||(HY(UY(AD(s)),{select:!0}),document.activeElement===g&&an(s))}return()=>{s.removeEventListener(VS,u),setTimeout(()=>{const v=new CustomEvent(FS,ID);s.addEventListener(FS,y),s.dispatchEvent(v),v.defaultPrevented||an(g??document.body,{select:!0}),s.removeEventListener(FS,y),TD.remove(k)},0)}}},[s,u,y,k]);const m=p.useCallback(g=>{if(!o&&!n||k.paused)return;const _=g.key==="Tab"&&!g.altKey&&!g.ctrlKey&&!g.metaKey,v=document.activeElement;if(_&&v){const b=g.currentTarget,[M,x]=VY(b);M&&x?!g.shiftKey&&v===x?(g.preventDefault(),o&&an(M,{select:!0})):g.shiftKey&&v===M&&(g.preventDefault(),o&&an(x,{select:!0})):v===b&&g.preventDefault()}},[o,n,k.paused]);return d.jsx(se.div,{tabIndex:-1,...i,ref:f,onKeyDown:m})});ad.displayName=jY;function HY(e,{select:t=!1}={}){const o=document.activeElement;for(const n of e)if(an(n,{select:t}),document.activeElement!==o)return}function VY(e){const t=AD(e),o=PD(t,e),n=PD(t.reverse(),e);return[o,n]}function AD(e){const t=[],o=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:n=>{const a=n.tagName==="INPUT"&&n.type==="hidden";return n.disabled||n.hidden||a?NodeFilter.FILTER_SKIP:n.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;o.nextNode();)t.push(o.currentNode);return t}function PD(e,t){for(const o of e)if(!FY(o,{upTo:t}))return o}function FY(e,{upTo:t}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}function BY(e){return e instanceof HTMLInputElement&&"select"in e}function an(e,{select:t=!1}={}){if(e&&e.focus){const o=document.activeElement;e.focus({preventScroll:!0}),e!==o&&BY(e)&&t&&e.select()}}var TD=WY();function WY(){let e=[];return{add(t){const o=e[0];t!==o&&o?.pause(),e=DD(e,t),e.unshift(t)},remove(t){e=DD(e,t),e[0]?.resume()}}}function DD(e,t){const o=[...e],n=o.indexOf(t);return n!==-1&&o.splice(n,1),o}function UY(e){return e.filter(t=>t.tagName!=="A")}var RY="Portal",rd=p.forwardRef((e,t)=>{const{container:o,...n}=e,[a,r]=p.useState(!1);Ze(()=>r(!0),[]);const i=o||a&&globalThis?.document?.body;return i?s1.createPortal(d.jsx(se.div,{...n,ref:t}),i):null});rd.displayName=RY;var BS=0;function SC(){p.useEffect(()=>{const e=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",e[0]??ED()),document.body.insertAdjacentElement("beforeend",e[1]??ED()),BS++,()=>{BS===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(t=>t.remove()),BS--}},[])}function ED(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.outline="none",e.style.opacity="0",e.style.position="fixed",e.style.pointerEvents="none",e}var Mo=function(){return Mo=Object.assign||function(t){for(var o,n=1,a=arguments.length;n<a;n++){o=arguments[n];for(var r in o)Object.prototype.hasOwnProperty.call(o,r)&&(t[r]=o[r])}return t},Mo.apply(this,arguments)};function zD(e,t){var o={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(o[n]=e[n]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var a=0,n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(o[n[a]]=e[n[a]]);return o}function GY(e,t,o){if(o||arguments.length===2)for(var n=0,a=t.length,r;n<a;n++)(r||!(n in t))&&(r||(r=Array.prototype.slice.call(t,0,n)),r[n]=t[n]);return e.concat(r||Array.prototype.slice.call(t))}typeof SuppressedError=="function"&&SuppressedError;var LC="right-scroll-bar-position",IC="width-before-scroll-bar",KY="with-scroll-bars-hidden",YY="--removed-body-scroll-bar-size";function WS(e,t){return typeof e=="function"?e(t):e&&(e.current=t),e}function XY(e,t){var o=w.useState(function(){return{value:e,callback:t,facade:{get current(){return o.value},set current(n){var a=o.value;a!==n&&(o.value=n,o.callback(n,a))}}}})[0];return o.callback=t,o.facade}var ZY=typeof window<"u"?p.useLayoutEffect:p.useEffect,OD=new WeakMap;function QY(e,t){var o=XY(null,function(n){return e.forEach(function(a){return WS(a,n)})});return ZY(function(){var n=OD.get(o);if(n){var a=new Set(n),r=new Set(e),i=o.current;a.forEach(function(s){r.has(s)||WS(s,null)}),r.forEach(function(s){a.has(s)||WS(s,i)})}OD.set(o,e)},[e]),o}function JY(e){return e}function eX(e,t){t===void 0&&(t=JY);var o=[],n=!1,a={read:function(){if(n)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return o.length?o[o.length-1]:e},useMedium:function(r){var i=t(r,n);return o.push(i),function(){o=o.filter(function(s){return s!==i})}},assignSyncMedium:function(r){for(n=!0;o.length;){var i=o;o=[],i.forEach(r)}o={push:function(s){return r(s)},filter:function(){return o}}},assignMedium:function(r){n=!0;var i=[];if(o.length){var s=o;o=[],s.forEach(r),i=o}var l=function(){var y=i;i=[],y.forEach(r)},u=function(){return Promise.resolve().then(l)};u(),o={push:function(y){i.push(y),u()},filter:function(y){return i=i.filter(y),o}}}};return a}function tX(e){e===void 0&&(e={});var t=eX(null);return t.options=Mo({async:!0,ssr:!1},e),t}var qD=function(e){var t=e.sideCar,o=zD(e,["sideCar"]);if(!t)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var n=t.read();if(!n)throw new Error("Sidecar medium not found");return p.createElement(n,Mo({},o))};qD.isSideCarExport=!0;function oX(e,t){return e.useMedium(t),qD}var jD=tX(),US=function(){},AC=p.forwardRef(function(e,t){var o=p.useRef(null),n=p.useState({onScrollCapture:US,onWheelCapture:US,onTouchMoveCapture:US}),a=n[0],r=n[1],i=e.forwardProps,s=e.children,l=e.className,u=e.removeScrollBar,y=e.enabled,h=e.shards,f=e.sideCar,k=e.noRelative,m=e.noIsolation,g=e.inert,_=e.allowPinchZoom,v=e.as,b=v===void 0?"div":v,M=e.gapMode,x=zD(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noRelative","noIsolation","inert","allowPinchZoom","as","gapMode"]),N=f,C=QY([o,t]),$=Mo(Mo({},x),a);return p.createElement(p.Fragment,null,y&&p.createElement(N,{sideCar:jD,removeScrollBar:u,shards:h,noRelative:k,noIsolation:m,inert:g,setCallbacks:r,allowPinchZoom:!!_,lockRef:o,gapMode:M}),i?p.cloneElement(p.Children.only(s),Mo(Mo({},$),{ref:C})):p.createElement(b,Mo({},$,{className:l,ref:C}),s))});AC.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1},AC.classNames={fullWidth:IC,zeroRight:LC};var nX=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function aX(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=nX();return t&&e.setAttribute("nonce",t),e}function rX(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function iX(e){var t=document.head||document.getElementsByTagName("head")[0];t.appendChild(e)}var cX=function(){var e=0,t=null;return{add:function(o){e==0&&(t=aX())&&(rX(t,o),iX(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},sX=function(){var e=cX();return function(t,o){p.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&o])}},HD=function(){var e=sX(),t=function(o){var n=o.styles,a=o.dynamic;return e(n,a),null};return t},dX={left:0,top:0,right:0,gap:0},RS=function(e){return parseInt(e||"",10)||0},lX=function(e){var t=window.getComputedStyle(document.body),o=t[e==="padding"?"paddingLeft":"marginLeft"],n=t[e==="padding"?"paddingTop":"marginTop"],a=t[e==="padding"?"paddingRight":"marginRight"];return[RS(o),RS(n),RS(a)]},uX=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return dX;var t=lX(e),o=document.documentElement.clientWidth,n=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,n-o+t[2]-t[0])}},hX=HD(),ts="data-scroll-locked",pX=function(e,t,o,n){var a=e.left,r=e.top,i=e.right,s=e.gap;return o===void 0&&(o="margin"),`
|
|
8
|
+
.`.concat(KY,` {
|
|
9
|
+
overflow: hidden `).concat(n,`;
|
|
10
|
+
padding-right: `).concat(s,"px ").concat(n,`;
|
|
11
|
+
}
|
|
12
|
+
body[`).concat(ts,`] {
|
|
13
|
+
overflow: hidden `).concat(n,`;
|
|
14
|
+
overscroll-behavior: contain;
|
|
15
|
+
`).concat([t&&"position: relative ".concat(n,";"),o==="margin"&&`
|
|
16
|
+
padding-left: `.concat(a,`px;
|
|
17
|
+
padding-top: `).concat(r,`px;
|
|
18
|
+
padding-right: `).concat(i,`px;
|
|
19
|
+
margin-left:0;
|
|
20
|
+
margin-top:0;
|
|
21
|
+
margin-right: `).concat(s,"px ").concat(n,`;
|
|
22
|
+
`),o==="padding"&&"padding-right: ".concat(s,"px ").concat(n,";")].filter(Boolean).join(""),`
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.`).concat(LC,` {
|
|
26
|
+
right: `).concat(s,"px ").concat(n,`;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.`).concat(IC,` {
|
|
30
|
+
margin-right: `).concat(s,"px ").concat(n,`;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.`).concat(LC," .").concat(LC,` {
|
|
34
|
+
right: 0 `).concat(n,`;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.`).concat(IC," .").concat(IC,` {
|
|
38
|
+
margin-right: 0 `).concat(n,`;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
body[`).concat(ts,`] {
|
|
42
|
+
`).concat(YY,": ").concat(s,`px;
|
|
43
|
+
}
|
|
44
|
+
`)},VD=function(){var e=parseInt(document.body.getAttribute(ts)||"0",10);return isFinite(e)?e:0},yX=function(){p.useEffect(function(){return document.body.setAttribute(ts,(VD()+1).toString()),function(){var e=VD()-1;e<=0?document.body.removeAttribute(ts):document.body.setAttribute(ts,e.toString())}},[])},fX=function(e){var t=e.noRelative,o=e.noImportant,n=e.gapMode,a=n===void 0?"margin":n;yX();var r=p.useMemo(function(){return uX(a)},[a]);return p.createElement(hX,{styles:pX(r,!t,a,o?"":"!important")})},GS=!1;if(typeof window<"u")try{var PC=Object.defineProperty({},"passive",{get:function(){return GS=!0,!0}});window.addEventListener("test",PC,PC),window.removeEventListener("test",PC,PC)}catch{GS=!1}var os=GS?{passive:!1}:!1,mX=function(e){return e.tagName==="TEXTAREA"},FD=function(e,t){if(!(e instanceof Element))return!1;var o=window.getComputedStyle(e);return o[t]!=="hidden"&&!(o.overflowY===o.overflowX&&!mX(e)&&o[t]==="visible")},kX=function(e){return FD(e,"overflowY")},gX=function(e){return FD(e,"overflowX")},BD=function(e,t){var o=t.ownerDocument,n=t;do{typeof ShadowRoot<"u"&&n instanceof ShadowRoot&&(n=n.host);var a=WD(e,n);if(a){var r=UD(e,n),i=r[1],s=r[2];if(i>s)return!0}n=n.parentNode}while(n&&n!==o.body);return!1},vX=function(e){var t=e.scrollTop,o=e.scrollHeight,n=e.clientHeight;return[t,o,n]},_X=function(e){var t=e.scrollLeft,o=e.scrollWidth,n=e.clientWidth;return[t,o,n]},WD=function(e,t){return e==="v"?kX(t):gX(t)},UD=function(e,t){return e==="v"?vX(t):_X(t)},bX=function(e,t){return e==="h"&&t==="rtl"?-1:1},MX=function(e,t,o,n,a){var r=bX(e,window.getComputedStyle(t).direction),i=r*n,s=o.target,l=t.contains(s),u=!1,y=i>0,h=0,f=0;do{if(!s)break;var k=UD(e,s),m=k[0],g=k[1],_=k[2],v=g-_-r*m;(m||v)&&WD(e,s)&&(h+=v,f+=m);var b=s.parentNode;s=b&&b.nodeType===Node.DOCUMENT_FRAGMENT_NODE?b.host:b}while(!l&&s!==document.body||l&&(t.contains(s)||t===s));return(y&&Math.abs(h)<1||!y&&Math.abs(f)<1)&&(u=!0),u},TC=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},RD=function(e){return[e.deltaX,e.deltaY]},GD=function(e){return e&&"current"in e?e.current:e},wX=function(e,t){return e[0]===t[0]&&e[1]===t[1]},xX=function(e){return`
|
|
45
|
+
.block-interactivity-`.concat(e,` {pointer-events: none;}
|
|
46
|
+
.allow-interactivity-`).concat(e,` {pointer-events: all;}
|
|
47
|
+
`)},NX=0,ns=[];function CX(e){var t=p.useRef([]),o=p.useRef([0,0]),n=p.useRef(),a=p.useState(NX++)[0],r=p.useState(HD)[0],i=p.useRef(e);p.useEffect(function(){i.current=e},[e]),p.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(a));var g=GY([e.lockRef.current],(e.shards||[]).map(GD),!0).filter(Boolean);return g.forEach(function(_){return _.classList.add("allow-interactivity-".concat(a))}),function(){document.body.classList.remove("block-interactivity-".concat(a)),g.forEach(function(_){return _.classList.remove("allow-interactivity-".concat(a))})}}},[e.inert,e.lockRef.current,e.shards]);var s=p.useCallback(function(g,_){if("touches"in g&&g.touches.length===2||g.type==="wheel"&&g.ctrlKey)return!i.current.allowPinchZoom;var v=TC(g),b=o.current,M="deltaX"in g?g.deltaX:b[0]-v[0],x="deltaY"in g?g.deltaY:b[1]-v[1],N,C=g.target,$=Math.abs(M)>Math.abs(x)?"h":"v";if("touches"in g&&$==="h"&&C.type==="range")return!1;var L=window.getSelection(),A=L&&L.anchorNode,z=A?A===C||A.contains(C):!1;if(z)return!1;var E=BD($,C);if(!E)return!0;if(E?N=$:(N=$==="v"?"h":"v",E=BD($,C)),!E)return!1;if(!n.current&&"changedTouches"in g&&(M||x)&&(n.current=N),!N)return!0;var O=n.current||N;return MX(O,_,g,O==="h"?M:x)},[]),l=p.useCallback(function(g){var _=g;if(!(!ns.length||ns[ns.length-1]!==r)){var v="deltaY"in _?RD(_):TC(_),b=t.current.filter(function(N){return N.name===_.type&&(N.target===_.target||_.target===N.shadowParent)&&wX(N.delta,v)})[0];if(b&&b.should){_.cancelable&&_.preventDefault();return}if(!b){var M=(i.current.shards||[]).map(GD).filter(Boolean).filter(function(N){return N.contains(_.target)}),x=M.length>0?s(_,M[0]):!i.current.noIsolation;x&&_.cancelable&&_.preventDefault()}}},[]),u=p.useCallback(function(g,_,v,b){var M={name:g,delta:_,target:v,should:b,shadowParent:$X(v)};t.current.push(M),setTimeout(function(){t.current=t.current.filter(function(x){return x!==M})},1)},[]),y=p.useCallback(function(g){o.current=TC(g),n.current=void 0},[]),h=p.useCallback(function(g){u(g.type,RD(g),g.target,s(g,e.lockRef.current))},[]),f=p.useCallback(function(g){u(g.type,TC(g),g.target,s(g,e.lockRef.current))},[]);p.useEffect(function(){return ns.push(r),e.setCallbacks({onScrollCapture:h,onWheelCapture:h,onTouchMoveCapture:f}),document.addEventListener("wheel",l,os),document.addEventListener("touchmove",l,os),document.addEventListener("touchstart",y,os),function(){ns=ns.filter(function(g){return g!==r}),document.removeEventListener("wheel",l,os),document.removeEventListener("touchmove",l,os),document.removeEventListener("touchstart",y,os)}},[]);var k=e.removeScrollBar,m=e.inert;return p.createElement(p.Fragment,null,m?p.createElement(r,{styles:xX(a)}):null,k?p.createElement(fX,{noRelative:e.noRelative,gapMode:e.gapMode}):null)}function $X(e){for(var t=null;e!==null;)e instanceof ShadowRoot&&(t=e.host,e=e.host),e=e.parentNode;return t}const SX=oX(jD,CX);var id=p.forwardRef(function(e,t){return p.createElement(AC,Mo({},e,{ref:t,sideCar:SX}))});id.classNames=AC.classNames;var LX=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},as=new WeakMap,DC=new WeakMap,EC={},KS=0,KD=function(e){return e&&(e.host||KD(e.parentNode))},IX=function(e,t){return t.map(function(o){if(e.contains(o))return o;var n=KD(o);return n&&e.contains(n)?n:(console.error("aria-hidden",o,"in not contained inside",e,". Doing nothing"),null)}).filter(function(o){return!!o})},AX=function(e,t,o,n){var a=IX(t,Array.isArray(e)?e:[e]);EC[o]||(EC[o]=new WeakMap);var r=EC[o],i=[],s=new Set,l=new Set(a),u=function(h){!h||s.has(h)||(s.add(h),u(h.parentNode))};a.forEach(u);var y=function(h){!h||l.has(h)||Array.prototype.forEach.call(h.children,function(f){if(s.has(f))y(f);else try{var k=f.getAttribute(n),m=k!==null&&k!=="false",g=(as.get(f)||0)+1,_=(r.get(f)||0)+1;as.set(f,g),r.set(f,_),i.push(f),g===1&&m&&DC.set(f,!0),_===1&&f.setAttribute(o,"true"),m||f.setAttribute(n,"true")}catch(v){console.error("aria-hidden: cannot operate on ",f,v)}})};return y(t),s.clear(),KS++,function(){i.forEach(function(h){var f=as.get(h)-1,k=r.get(h)-1;as.set(h,f),r.set(h,k),f||(DC.has(h)||h.removeAttribute(n),DC.delete(h)),k||h.removeAttribute(o)}),KS--,KS||(as=new WeakMap,as=new WeakMap,DC=new WeakMap,EC={})}},zC=function(e,t,o){o===void 0&&(o="data-aria-hidden");var n=Array.from(Array.isArray(e)?e:[e]),a=LX(e);return a?(n.push.apply(n,Array.from(a.querySelectorAll("[aria-live], script"))),AX(n,a,o,"aria-hidden")):function(){return null}},OC="Dialog",[YD,XD]=Xe(OC),[PX,Jt]=YD(OC),ZD=e=>{const{__scopeDialog:t,children:o,open:n,defaultOpen:a,onOpenChange:r,modal:i=!0}=e,s=p.useRef(null),l=p.useRef(null),[u,y]=Ke({prop:n,defaultProp:a??!1,onChange:r,caller:OC});return d.jsx(PX,{scope:t,triggerRef:s,contentRef:l,contentId:We(),titleId:We(),descriptionId:We(),open:u,onOpenChange:y,onOpenToggle:p.useCallback(()=>y(h=>!h),[y]),modal:i,children:o})};ZD.displayName=OC;var QD="DialogTrigger",JD=p.forwardRef((e,t)=>{const{__scopeDialog:o,...n}=e,a=Jt(QD,o),r=be(t,a.triggerRef);return d.jsx(se.button,{type:"button","aria-haspopup":"dialog","aria-expanded":a.open,"aria-controls":a.contentId,"data-state":ZS(a.open),...n,ref:r,onClick:X(e.onClick,a.onOpenToggle)})});JD.displayName=QD;var YS="DialogPortal",[TX,eE]=YD(YS,{forceMount:void 0}),tE=e=>{const{__scopeDialog:t,forceMount:o,children:n,container:a}=e,r=Jt(YS,t);return d.jsx(TX,{scope:t,forceMount:o,children:p.Children.map(n,i=>d.jsx(Qe,{present:o||r.open,children:d.jsx(rd,{asChild:!0,container:a,children:i})}))})};tE.displayName=YS;var qC="DialogOverlay",oE=p.forwardRef((e,t)=>{const o=eE(qC,e.__scopeDialog),{forceMount:n=o.forceMount,...a}=e,r=Jt(qC,e.__scopeDialog);return r.modal?d.jsx(Qe,{present:n||r.open,children:d.jsx(EX,{...a,ref:t})}):null});oE.displayName=qC;var DX=bn("DialogOverlay.RemoveScroll"),EX=p.forwardRef((e,t)=>{const{__scopeDialog:o,...n}=e,a=Jt(qC,o);return d.jsx(id,{as:DX,allowPinchZoom:!0,shards:[a.contentRef],children:d.jsx(se.div,{"data-state":ZS(a.open),...n,ref:t,style:{pointerEvents:"auto",...n.style}})})}),Nc="DialogContent",nE=p.forwardRef((e,t)=>{const o=eE(Nc,e.__scopeDialog),{forceMount:n=o.forceMount,...a}=e,r=Jt(Nc,e.__scopeDialog);return d.jsx(Qe,{present:n||r.open,children:r.modal?d.jsx(zX,{...a,ref:t}):d.jsx(OX,{...a,ref:t})})});nE.displayName=Nc;var zX=p.forwardRef((e,t)=>{const o=Jt(Nc,e.__scopeDialog),n=p.useRef(null),a=be(t,o.contentRef,n);return p.useEffect(()=>{const r=n.current;if(r)return zC(r)},[]),d.jsx(aE,{...e,ref:a,trapFocus:o.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:X(e.onCloseAutoFocus,r=>{r.preventDefault(),o.triggerRef.current?.focus()}),onPointerDownOutside:X(e.onPointerDownOutside,r=>{const i=r.detail.originalEvent,s=i.button===0&&i.ctrlKey===!0;(i.button===2||s)&&r.preventDefault()}),onFocusOutside:X(e.onFocusOutside,r=>r.preventDefault())})}),OX=p.forwardRef((e,t)=>{const o=Jt(Nc,e.__scopeDialog),n=p.useRef(!1),a=p.useRef(!1);return d.jsx(aE,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:r=>{e.onCloseAutoFocus?.(r),r.defaultPrevented||(n.current||o.triggerRef.current?.focus(),r.preventDefault()),n.current=!1,a.current=!1},onInteractOutside:r=>{e.onInteractOutside?.(r),r.defaultPrevented||(n.current=!0,r.detail.originalEvent.type==="pointerdown"&&(a.current=!0));const i=r.target;o.triggerRef.current?.contains(i)&&r.preventDefault(),r.detail.originalEvent.type==="focusin"&&a.current&&r.preventDefault()}})}),aE=p.forwardRef((e,t)=>{const{__scopeDialog:o,trapFocus:n,onOpenAutoFocus:a,onCloseAutoFocus:r,...i}=e,s=Jt(Nc,o),l=p.useRef(null),u=be(t,l);return SC(),d.jsxs(d.Fragment,{children:[d.jsx(ad,{asChild:!0,loop:!0,trapped:n,onMountAutoFocus:a,onUnmountAutoFocus:r,children:d.jsx(nn,{role:"dialog",id:s.contentId,"aria-describedby":s.descriptionId,"aria-labelledby":s.titleId,"data-state":ZS(s.open),...i,ref:u,onDismiss:()=>s.onOpenChange(!1)})}),d.jsxs(d.Fragment,{children:[d.jsx(jX,{titleId:s.titleId}),d.jsx(VX,{contentRef:l,descriptionId:s.descriptionId})]})]})}),XS="DialogTitle",rE=p.forwardRef((e,t)=>{const{__scopeDialog:o,...n}=e,a=Jt(XS,o);return d.jsx(se.h2,{id:a.titleId,...n,ref:t})});rE.displayName=XS;var iE="DialogDescription",cE=p.forwardRef((e,t)=>{const{__scopeDialog:o,...n}=e,a=Jt(iE,o);return d.jsx(se.p,{id:a.descriptionId,...n,ref:t})});cE.displayName=iE;var sE="DialogClose",dE=p.forwardRef((e,t)=>{const{__scopeDialog:o,...n}=e,a=Jt(sE,o);return d.jsx(se.button,{type:"button",...n,ref:t,onClick:X(e.onClick,()=>a.onOpenChange(!1))})});dE.displayName=sE;function ZS(e){return e?"open":"closed"}var lE="DialogTitleWarning",[qX,uE]=GK(lE,{contentName:Nc,titleName:XS,docsSlug:"dialog"}),jX=({titleId:e})=>{const t=uE(lE),o=`\`${t.contentName}\` requires a \`${t.titleName}\` for the component to be accessible for screen reader users.
|
|
48
|
+
|
|
49
|
+
If you want to hide the \`${t.titleName}\`, you can wrap it with our VisuallyHidden component.
|
|
50
|
+
|
|
51
|
+
For more information, see https://radix-ui.com/primitives/docs/components/${t.docsSlug}`;return p.useEffect(()=>{e&&(document.getElementById(e)||console.error(o))},[o,e]),null},HX="DialogDescriptionWarning",VX=({contentRef:e,descriptionId:t})=>{const n=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${uE(HX).contentName}}.`;return p.useEffect(()=>{const a=e.current?.getAttribute("aria-describedby");t&&a&&(document.getElementById(t)||console.warn(n))},[n,e,t]),null},cd=ZD,jC=JD,sd=tE,Cc=oE,$c=nE,rs=rE,is=cE,dd=dE,hE="AlertDialog",[FX]=Xe(hE,[XD]),Vo=XD(),pE=e=>{const{__scopeAlertDialog:t,...o}=e,n=Vo(t);return d.jsx(cd,{...n,...o,modal:!0})};pE.displayName=hE;var BX="AlertDialogTrigger",yE=p.forwardRef((e,t)=>{const{__scopeAlertDialog:o,...n}=e,a=Vo(o);return d.jsx(jC,{...a,...n,ref:t})});yE.displayName=BX;var WX="AlertDialogPortal",fE=e=>{const{__scopeAlertDialog:t,...o}=e,n=Vo(t);return d.jsx(sd,{...n,...o})};fE.displayName=WX;var UX="AlertDialogOverlay",mE=p.forwardRef((e,t)=>{const{__scopeAlertDialog:o,...n}=e,a=Vo(o);return d.jsx(Cc,{...a,...n,ref:t})});mE.displayName=UX;var cs="AlertDialogContent",[RX,GX]=FX(cs),KX=tD("AlertDialogContent"),kE=p.forwardRef((e,t)=>{const{__scopeAlertDialog:o,children:n,...a}=e,r=Vo(o),i=p.useRef(null),s=be(t,i),l=p.useRef(null);return d.jsx(qX,{contentName:cs,titleName:gE,docsSlug:"alert-dialog",children:d.jsx(RX,{scope:o,cancelRef:l,children:d.jsxs($c,{role:"alertdialog",...r,...a,ref:s,onOpenAutoFocus:X(a.onOpenAutoFocus,u=>{u.preventDefault(),l.current?.focus({preventScroll:!0})}),onPointerDownOutside:u=>u.preventDefault(),onInteractOutside:u=>u.preventDefault(),children:[d.jsx(KX,{children:n}),d.jsx(XX,{contentRef:i})]})})})});kE.displayName=cs;var gE="AlertDialogTitle",vE=p.forwardRef((e,t)=>{const{__scopeAlertDialog:o,...n}=e,a=Vo(o);return d.jsx(rs,{...a,...n,ref:t})});vE.displayName=gE;var _E="AlertDialogDescription",bE=p.forwardRef((e,t)=>{const{__scopeAlertDialog:o,...n}=e,a=Vo(o);return d.jsx(is,{...a,...n,ref:t})});bE.displayName=_E;var YX="AlertDialogAction",ME=p.forwardRef((e,t)=>{const{__scopeAlertDialog:o,...n}=e,a=Vo(o);return d.jsx(dd,{...a,...n,ref:t})});ME.displayName=YX;var wE="AlertDialogCancel",xE=p.forwardRef((e,t)=>{const{__scopeAlertDialog:o,...n}=e,{cancelRef:a}=GX(wE,o),r=Vo(o),i=be(t,a);return d.jsx(dd,{...r,...n,ref:i})});xE.displayName=wE;var XX=({contentRef:e})=>{const t=`\`${cs}\` requires a description for the component to be accessible for screen reader users.
|
|
52
|
+
|
|
53
|
+
You can add a description to the \`${cs}\` by passing a \`${_E}\` component as a child, which also benefits sighted users by adding visible context to the dialog.
|
|
54
|
+
|
|
55
|
+
Alternatively, you can use your own component as a description by assigning it an \`id\` and passing the same value to the \`aria-describedby\` prop in \`${cs}\`. If the description is confusing or duplicative for sighted users, you can use the \`@radix-ui/react-visually-hidden\` primitive as a wrapper around your description component.
|
|
56
|
+
|
|
57
|
+
For more information, see https://radix-ui.com/primitives/docs/components/alert-dialog`;return p.useEffect(()=>{document.getElementById(e.current?.getAttribute("aria-describedby"))||console.warn(t)},[t,e]),null},ZX=pE,QX=yE,JX=fE,NE=mE,CE=kE,$E=ME,SE=xE,LE=vE,IE=bE,eZ=Symbol.for("react.lazy"),HC=p[" use ".trim().toString()];function tZ(e){return typeof e=="object"&&e!==null&&"then"in e}function AE(e){return e!=null&&typeof e=="object"&&"$$typeof"in e&&e.$$typeof===eZ&&"_payload"in e&&tZ(e._payload)}function PE(e){const t=oZ(e),o=p.forwardRef((n,a)=>{let{children:r,...i}=n;AE(r)&&typeof HC=="function"&&(r=HC(r._payload));const s=p.Children.toArray(r),l=s.find(aZ);if(l){const u=l.props.children,y=s.map(h=>h===l?p.Children.count(u)>1?p.Children.only(null):p.isValidElement(u)?u.props.children:null:h);return d.jsx(t,{...i,ref:a,children:p.isValidElement(u)?p.cloneElement(u,void 0,y):null})}return d.jsx(t,{...i,ref:a,children:r})});return o.displayName=`${e}.Slot`,o}var Fo=PE("Slot");function oZ(e){const t=p.forwardRef((o,n)=>{let{children:a,...r}=o;if(AE(a)&&typeof HC=="function"&&(a=HC(a._payload)),p.isValidElement(a)){const i=iZ(a),s=rZ(r,a.props);return a.type!==p.Fragment&&(s.ref=n?Xt(n,i):i),p.cloneElement(a,s)}return p.Children.count(a)>1?p.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var nZ=Symbol("radix.slottable");function aZ(e){return p.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===nZ}function rZ(e,t){const o={...t};for(const n in t){const a=e[n],r=t[n];/^on[A-Z]/.test(n)?a&&r?o[n]=(...s)=>{const l=r(...s);return a(...s),l}:a&&(o[n]=a):n==="style"?o[n]={...a,...r}:n==="className"&&(o[n]=[a,r].filter(Boolean).join(" "))}return{...e,...o}}function iZ(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,o=t&&"isReactWarning"in t&&t.isReactWarning;return o?e.ref:(t=Object.getOwnPropertyDescriptor(e,"ref")?.get,o=t&&"isReactWarning"in t&&t.isReactWarning,o?e.props.ref:e.props.ref||e.ref)}const TE=e=>typeof e=="boolean"?`${e}`:e===0?"0":e,DE=uS,Bo=(e,t)=>o=>{var n;if(t?.variants==null)return DE(e,o?.class,o?.className);const{variants:a,defaultVariants:r}=t,i=Object.keys(a).map(u=>{const y=o?.[u],h=r?.[u];if(y===null)return null;const f=TE(y)||TE(h);return a[u][f]}),s=o&&Object.entries(o).reduce((u,y)=>{let[h,f]=y;return f===void 0||(u[h]=f),u},{}),l=t==null||(n=t.compoundVariants)===null||n===void 0?void 0:n.reduce((u,y)=>{let{class:h,className:f,...k}=y;return Object.entries(k).every(m=>{let[g,_]=m;return Array.isArray(_)?_.includes({...r,...s}[g]):{...r,...s}[g]===_})?[...u,h,f]:u},[]);return DE(e,i,l,o?.class,o?.className)},ss=Bo("inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",{variants:{variant:{default:"bg-primary text-primary-foreground hover:bg-primary/90",destructive:"bg-destructive text-destructive-foreground hover:bg-destructive/90",outline:"border border-input bg-background hover:bg-accent hover:text-accent-foreground",secondary:"bg-secondary text-secondary-foreground hover:bg-secondary/80",ghost:"hover:bg-accent hover:text-accent-foreground",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-10 px-4 py-2",sm:"h-9 rounded-md px-3",lg:"h-11 rounded-md px-8",icon:"h-10 w-10","icon-sm":"h-8 w-8","icon-lg":"h-12 w-12"}},defaultVariants:{variant:"default",size:"default"}}),je=p.forwardRef(({className:e,variant:t,size:o,asChild:n=!1,...a},r)=>{const i=n?Fo:"button";return d.jsx(i,{className:S(ss({variant:t,size:o,className:e})),ref:r,...a})});je.displayName="Button";const cZ=ZX,sZ=QX,dZ=JX,EE=p.forwardRef(({className:e,...t},o)=>d.jsx(NE,{className:S("fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",e),...t,ref:o}));EE.displayName=NE.displayName;const zE=p.forwardRef(({className:e,...t},o)=>d.jsxs(dZ,{children:[d.jsx(EE,{}),d.jsx(CE,{ref:o,className:S("fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",e),...t})]}));zE.displayName=CE.displayName;const OE=({className:e,...t})=>d.jsx("div",{className:S("flex flex-col space-y-2 text-center sm:text-left",e),...t});OE.displayName="AlertDialogHeader";const qE=({className:e,...t})=>d.jsx("div",{className:S("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",e),...t});qE.displayName="AlertDialogFooter";const jE=p.forwardRef(({className:e,...t},o)=>d.jsx(LE,{ref:o,className:S("text-lg font-semibold",e),...t}));jE.displayName=LE.displayName;const HE=p.forwardRef(({className:e,...t},o)=>d.jsx(IE,{ref:o,className:S("text-sm text-muted-foreground",e),...t}));HE.displayName=IE.displayName;const VE=p.forwardRef(({className:e,...t},o)=>d.jsx($E,{ref:o,className:S(ss(),e),...t}));VE.displayName=$E.displayName;const FE=p.forwardRef(({className:e,...t},o)=>d.jsx(SE,{ref:o,className:S(ss({variant:"outline"}),"mt-2 sm:mt-0",e),...t}));FE.displayName=SE.displayName;const lZ=Bo("relative w-full rounded-lg border p-4 [&>svg~*]:pl-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground",{variants:{variant:{default:"bg-background text-foreground",destructive:"border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive"}},defaultVariants:{variant:"default"}}),QS=p.forwardRef(({className:e,variant:t,...o},n)=>d.jsx("div",{ref:n,role:"alert",className:S(lZ({variant:t}),e),...o}));QS.displayName="Alert";const BE=p.forwardRef(({className:e,...t},o)=>d.jsx("h5",{ref:o,className:S("mb-1 font-medium leading-none tracking-tight",e),...t}));BE.displayName="AlertTitle";const JS=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("text-sm [&_p]:leading-relaxed",e),...t}));JS.displayName="AlertDescription";var uZ=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],ht=uZ.reduce((e,t)=>{const o=PE(`Primitive.${t}`),n=p.forwardRef((a,r)=>{const{asChild:i,...s}=a,l=i?o:t;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),d.jsx(l,{...s,ref:r})});return n.displayName=`Primitive.${t}`,{...e,[t]:n}},{}),hZ="AspectRatio",WE=p.forwardRef((e,t)=>{const{ratio:o=1/1,style:n,...a}=e;return d.jsx("div",{style:{position:"relative",width:"100%",paddingBottom:`${100/o}%`},"data-radix-aspect-ratio-wrapper":"",children:d.jsx(ht.div,{...a,ref:t,style:{...n,position:"absolute",top:0,right:0,bottom:0,left:0}})})});WE.displayName=hZ;var pZ=WE;const yZ=pZ;function UE(e,t=[]){let o=[];function n(r,i){const s=p.createContext(i);s.displayName=r+"Context";const l=o.length;o=[...o,i];const u=h=>{const{scope:f,children:k,...m}=h,g=f?.[e]?.[l]||s,_=p.useMemo(()=>m,Object.values(m));return d.jsx(g.Provider,{value:_,children:k})};u.displayName=r+"Provider";function y(h,f){const k=f?.[e]?.[l]||s,m=p.useContext(k);if(m)return m;if(i!==void 0)return i;throw new Error(`\`${h}\` must be used within \`${r}\``)}return[u,y]}const a=()=>{const r=o.map(i=>p.createContext(i));return function(s){const l=s?.[e]||r;return p.useMemo(()=>({[`__scope${e}`]:{...s,[e]:l}}),[s,l])}};return a.scopeName=e,[n,fZ(a,...t)]}function fZ(...e){const t=e[0];if(e.length===1)return t;const o=()=>{const n=e.map(a=>({useScope:a(),scopeName:a.scopeName}));return function(r){const i=n.reduce((s,{useScope:l,scopeName:u})=>{const h=l(r)[`__scope${u}`];return{...s,...h}},{});return p.useMemo(()=>({[`__scope${t.scopeName}`]:i}),[i])}};return o.scopeName=t.scopeName,o}var VC=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function RE(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var FC={exports:{}},eL={};var GE;function mZ(){if(GE)return eL;GE=1;var e=w;function t(h,f){return h===f&&(h!==0||1/h===1/f)||h!==h&&f!==f}var o=typeof Object.is=="function"?Object.is:t,n=e.useState,a=e.useEffect,r=e.useLayoutEffect,i=e.useDebugValue;function s(h,f){var k=f(),m=n({inst:{value:k,getSnapshot:f}}),g=m[0].inst,_=m[1];return r(function(){g.value=k,g.getSnapshot=f,l(g)&&_({inst:g})},[h,k,f]),a(function(){return l(g)&&_({inst:g}),h(function(){l(g)&&_({inst:g})})},[h]),i(k),k}function l(h){var f=h.getSnapshot;h=h.value;try{var k=f();return!o(h,k)}catch{return!0}}function u(h,f){return f()}var y=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?u:s;return eL.useSyncExternalStore=e.useSyncExternalStore!==void 0?e.useSyncExternalStore:y,eL}var tL={};var KE;function kZ(){return KE||(KE=1,process.env.NODE_ENV!=="production"&&(function(){function e(k,m){return k===m&&(k!==0||1/k===1/m)||k!==k&&m!==m}function t(k,m){y||a.startTransition===void 0||(y=!0,console.error("You are using an outdated, pre-release alpha of React 18 that does not support useSyncExternalStore. The use-sync-external-store shim will not work correctly. Upgrade to a newer pre-release."));var g=m();if(!h){var _=m();r(g,_)||(console.error("The result of getSnapshot should be cached to avoid an infinite loop"),h=!0)}_=i({inst:{value:g,getSnapshot:m}});var v=_[0].inst,b=_[1];return l(function(){v.value=g,v.getSnapshot=m,o(v)&&b({inst:v})},[k,g,m]),s(function(){return o(v)&&b({inst:v}),k(function(){o(v)&&b({inst:v})})},[k]),u(g),g}function o(k){var m=k.getSnapshot;k=k.value;try{var g=m();return!r(k,g)}catch{return!0}}function n(k,m){return m()}typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());var a=w,r=typeof Object.is=="function"?Object.is:e,i=a.useState,s=a.useEffect,l=a.useLayoutEffect,u=a.useDebugValue,y=!1,h=!1,f=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?n:t;tL.useSyncExternalStore=a.useSyncExternalStore!==void 0?a.useSyncExternalStore:f,typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})()),tL}var YE;function gZ(){return YE||(YE=1,process.env.NODE_ENV==="production"?FC.exports=mZ():FC.exports=kZ()),FC.exports}var vZ=gZ();function _Z(){return vZ.useSyncExternalStore(bZ,()=>!0,()=>!1)}function bZ(){return()=>{}}var oL="Avatar",[MZ]=UE(oL),[wZ,XE]=MZ(oL),ZE=p.forwardRef((e,t)=>{const{__scopeAvatar:o,...n}=e,[a,r]=p.useState("idle");return d.jsx(wZ,{scope:o,imageLoadingStatus:a,onImageLoadingStatusChange:r,children:d.jsx(ht.span,{...n,ref:t})})});ZE.displayName=oL;var QE="AvatarImage",JE=p.forwardRef((e,t)=>{const{__scopeAvatar:o,src:n,onLoadingStatusChange:a=()=>{},...r}=e,i=XE(QE,o),s=xZ(n,r),l=Ue(u=>{a(u),i.onImageLoadingStatusChange(u)});return Ze(()=>{s!=="idle"&&l(s)},[s,l]),s==="loaded"?d.jsx(ht.img,{...r,ref:t,src:n}):null});JE.displayName=QE;var ez="AvatarFallback",tz=p.forwardRef((e,t)=>{const{__scopeAvatar:o,delayMs:n,...a}=e,r=XE(ez,o),[i,s]=p.useState(n===void 0);return p.useEffect(()=>{if(n!==void 0){const l=window.setTimeout(()=>s(!0),n);return()=>window.clearTimeout(l)}},[n]),i&&r.imageLoadingStatus!=="loaded"?d.jsx(ht.span,{...a,ref:t}):null});tz.displayName=ez;function oz(e,t){return e?t?(e.src!==t&&(e.src=t),e.complete&&e.naturalWidth>0?"loaded":"loading"):"error":"idle"}function xZ(e,{referrerPolicy:t,crossOrigin:o}){const n=_Z(),a=p.useRef(null),r=n?(a.current||(a.current=new window.Image),a.current):null,[i,s]=p.useState(()=>oz(r,e));return Ze(()=>{s(oz(r,e))},[r,e]),Ze(()=>{const l=h=>()=>{s(h)};if(!r)return;const u=l("loaded"),y=l("error");return r.addEventListener("load",u),r.addEventListener("error",y),t&&(r.referrerPolicy=t),typeof o=="string"&&(r.crossOrigin=o),()=>{r.removeEventListener("load",u),r.removeEventListener("error",y)}},[r,o,t]),i}var nz=ZE,az=JE,rz=tz;const iz=p.forwardRef(({className:e,...t},o)=>d.jsx(nz,{ref:o,className:S("relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full",e),...t}));iz.displayName=nz.displayName;const cz=p.forwardRef(({className:e,...t},o)=>d.jsx(az,{ref:o,className:S("aspect-square h-full w-full",e),...t}));cz.displayName=az.displayName;const sz=p.forwardRef(({className:e,...t},o)=>d.jsx(rz,{ref:o,className:S("flex h-full w-full items-center justify-center rounded-full bg-muted",e),...t}));sz.displayName=rz.displayName;const NZ=Bo("inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",{variants:{variant:{default:"border-transparent bg-primary text-primary-foreground hover:bg-primary/80",secondary:"border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80",destructive:"border-transparent bg-destructive text-destructive-foreground hover:bg-destructive/80",outline:"text-foreground"}},defaultVariants:{variant:"default"}});function dz({className:e,variant:t,...o}){return d.jsx("div",{className:S(NZ({variant:t}),e),...o})}const nL=p.forwardRef(({...e},t)=>d.jsx("nav",{ref:t,"aria-label":"breadcrumb",...e}));nL.displayName="Breadcrumb";const aL=p.forwardRef(({className:e,...t},o)=>d.jsx("ol",{ref:o,className:S("flex flex-wrap items-center gap-1.5 break-words text-sm text-muted-foreground sm:gap-2.5",e),...t}));aL.displayName="BreadcrumbList";const rL=p.forwardRef(({className:e,...t},o)=>d.jsx("li",{ref:o,className:S("inline-flex items-center gap-1.5",e),...t}));rL.displayName="BreadcrumbItem";const iL=p.forwardRef(({asChild:e,className:t,...o},n)=>{const a=e?Fo:"a";return d.jsx(a,{ref:n,className:S("transition-colors hover:text-foreground",t),...o})});iL.displayName="BreadcrumbLink";const cL=p.forwardRef(({className:e,...t},o)=>d.jsx("span",{ref:o,role:"link","aria-disabled":"true","aria-current":"page",className:S("font-normal text-foreground",e),...t}));cL.displayName="BreadcrumbPage";const sL=({children:e,className:t,...o})=>d.jsx("li",{role:"presentation","aria-hidden":"true",className:S("[&>svg]:w-3.5 [&>svg]:h-3.5",t),...o,children:e??d.jsx(Pt,{})});sL.displayName="BreadcrumbSeparator";function CZ(e,t,o="long"){return new Intl.DateTimeFormat("en-US",{hour:"numeric",timeZone:e,timeZoneName:o}).format(t).split(/\s/g).slice(2).join(" ")}const $Z={},ld={};function Sc(e,t){try{const n=($Z[e]||=new Intl.DateTimeFormat("en-US",{timeZone:e,timeZoneName:"longOffset"}).format)(t).split("GMT")[1];return n in ld?ld[n]:lz(n,n.split(":"))}catch{if(e in ld)return ld[e];const o=e?.match(SZ);return o?lz(e,o.slice(1)):NaN}}const SZ=/([+-]\d\d):?(\d\d)?/;function lz(e,t){const o=+(t[0]||0),n=+(t[1]||0),a=+(t[2]||0)/60;return ld[e]=o*60+n>0?o*60+n+a:o*60-n-a}class wo extends Date{constructor(...t){super(),t.length>1&&typeof t[t.length-1]=="string"&&(this.timeZone=t.pop()),this.internal=new Date,isNaN(Sc(this.timeZone,this))?this.setTime(NaN):t.length?typeof t[0]=="number"&&(t.length===1||t.length===2&&typeof t[1]!="number")?this.setTime(t[0]):typeof t[0]=="string"?this.setTime(+new Date(t[0])):t[0]instanceof Date?this.setTime(+t[0]):(this.setTime(+new Date(...t)),hz(this),dL(this)):this.setTime(Date.now())}static tz(t,...o){return o.length?new wo(...o,t):new wo(Date.now(),t)}withTimeZone(t){return new wo(+this,t)}getTimezoneOffset(){const t=-Sc(this.timeZone,this);return t>0?Math.floor(t):Math.ceil(t)}setTime(t){return Date.prototype.setTime.apply(this,arguments),dL(this),+this}[Symbol.for("constructDateFrom")](t){return new wo(+new Date(t),this.timeZone)}}const uz=/^(get|set)(?!UTC)/;Object.getOwnPropertyNames(Date.prototype).forEach(e=>{if(!uz.test(e))return;const t=e.replace(uz,"$1UTC");wo.prototype[t]&&(e.startsWith("get")?wo.prototype[e]=function(){return this.internal[t]()}:(wo.prototype[e]=function(){return Date.prototype[t].apply(this.internal,arguments),LZ(this),+this},wo.prototype[t]=function(){return Date.prototype[t].apply(this,arguments),dL(this),+this}))});function dL(e){e.internal.setTime(+e),e.internal.setUTCSeconds(e.internal.getUTCSeconds()-Math.round(-Sc(e.timeZone,e)*60))}function LZ(e){Date.prototype.setFullYear.call(e,e.internal.getUTCFullYear(),e.internal.getUTCMonth(),e.internal.getUTCDate()),Date.prototype.setHours.call(e,e.internal.getUTCHours(),e.internal.getUTCMinutes(),e.internal.getUTCSeconds(),e.internal.getUTCMilliseconds()),hz(e)}function hz(e){const t=Sc(e.timeZone,e),o=t>0?Math.floor(t):Math.ceil(t),n=new Date(+e);n.setUTCHours(n.getUTCHours()-1);const a=-new Date(+e).getTimezoneOffset(),r=-new Date(+n).getTimezoneOffset(),i=a-r,s=Date.prototype.getHours.apply(e)!==e.internal.getUTCHours();i&&s&&e.internal.setUTCMinutes(e.internal.getUTCMinutes()+i);const l=a-o;l&&Date.prototype.setUTCMinutes.call(e,Date.prototype.getUTCMinutes.call(e)+l);const u=new Date(+e);u.setUTCSeconds(0);const y=a>0?u.getSeconds():(u.getSeconds()-60)%60,h=Math.round(-(Sc(e.timeZone,e)*60))%60;(h||y)&&(e.internal.setUTCSeconds(e.internal.getUTCSeconds()+h),Date.prototype.setUTCSeconds.call(e,Date.prototype.getUTCSeconds.call(e)+h+y));const f=Sc(e.timeZone,e),k=f>0?Math.floor(f):Math.ceil(f),g=-new Date(+e).getTimezoneOffset()-k,_=k!==o,v=g-l;if(_&&v){Date.prototype.setUTCMinutes.call(e,Date.prototype.getUTCMinutes.call(e)+v);const b=Sc(e.timeZone,e),M=b>0?Math.floor(b):Math.ceil(b),x=k-M;x&&(e.internal.setUTCMinutes(e.internal.getUTCMinutes()+x),Date.prototype.setUTCMinutes.call(e,Date.prototype.getUTCMinutes.call(e)+x))}}class pt extends wo{static tz(t,...o){return o.length?new pt(...o,t):new pt(Date.now(),t)}toISOString(){const[t,o,n]=this.tzComponents(),a=`${t}${o}:${n}`;return this.internal.toISOString().slice(0,-1)+a}toString(){return`${this.toDateString()} ${this.toTimeString()}`}toDateString(){const[t,o,n,a]=this.internal.toUTCString().split(" ");return`${t?.slice(0,-1)} ${n} ${o} ${a}`}toTimeString(){const t=this.internal.toUTCString().split(" ")[4],[o,n,a]=this.tzComponents();return`${t} GMT${o}${n}${a} (${CZ(this.timeZone,this)})`}toLocaleString(t,o){return Date.prototype.toLocaleString.call(this,t,{...o,timeZone:o?.timeZone||this.timeZone})}toLocaleDateString(t,o){return Date.prototype.toLocaleDateString.call(this,t,{...o,timeZone:o?.timeZone||this.timeZone})}toLocaleTimeString(t,o){return Date.prototype.toLocaleTimeString.call(this,t,{...o,timeZone:o?.timeZone||this.timeZone})}tzComponents(){const t=this.getTimezoneOffset(),o=t>0?"-":"+",n=String(Math.floor(Math.abs(t)/60)).padStart(2,"0"),a=String(Math.abs(t)%60).padStart(2,"0");return[o,n,a]}withTimeZone(t){return new pt(+this,t)}[Symbol.for("constructDateFrom")](t){return new pt(+new Date(t),this.timeZone)}}const pz=6048e5,IZ=864e5,yz=Symbol.for("constructDateFrom");function ct(e,t){return typeof e=="function"?e(t):e&&typeof e=="object"&&yz in e?e[yz](t):e instanceof Date?new e.constructor(t):new Date(t)}function Be(e,t){return ct(t||e,e)}function fz(e,t,o){const n=Be(e,o?.in);return isNaN(t)?ct(e,NaN):(t&&n.setDate(n.getDate()+t),n)}function mz(e,t,o){const n=Be(e,o?.in);if(isNaN(t))return ct(e,NaN);if(!t)return n;const a=n.getDate(),r=ct(e,n.getTime());r.setMonth(n.getMonth()+t+1,0);const i=r.getDate();return a>=i?r:(n.setFullYear(r.getFullYear(),r.getMonth(),a),n)}let AZ={};function ud(){return AZ}function ds(e,t){const o=ud(),n=t?.weekStartsOn??t?.locale?.options?.weekStartsOn??o.weekStartsOn??o.locale?.options?.weekStartsOn??0,a=Be(e,t?.in),r=a.getDay(),i=(r<n?7:0)+r-n;return a.setDate(a.getDate()-i),a.setHours(0,0,0,0),a}function hd(e,t){return ds(e,{...t,weekStartsOn:1})}function kz(e,t){const o=Be(e,t?.in),n=o.getFullYear(),a=ct(o,0);a.setFullYear(n+1,0,4),a.setHours(0,0,0,0);const r=hd(a),i=ct(o,0);i.setFullYear(n,0,4),i.setHours(0,0,0,0);const s=hd(i);return o.getTime()>=r.getTime()?n+1:o.getTime()>=s.getTime()?n:n-1}function gz(e){const t=Be(e),o=new Date(Date.UTC(t.getFullYear(),t.getMonth(),t.getDate(),t.getHours(),t.getMinutes(),t.getSeconds(),t.getMilliseconds()));return o.setUTCFullYear(t.getFullYear()),+e-+o}function ls(e,...t){const o=ct.bind(null,t.find(n=>typeof n=="object"));return t.map(o)}function pd(e,t){const o=Be(e,t?.in);return o.setHours(0,0,0,0),o}function lL(e,t,o){const[n,a]=ls(o?.in,e,t),r=pd(n),i=pd(a),s=+r-gz(r),l=+i-gz(i);return Math.round((s-l)/IZ)}function PZ(e,t){const o=kz(e,t),n=ct(e,0);return n.setFullYear(o,0,4),n.setHours(0,0,0,0),hd(n)}function TZ(e,t,o){return fz(e,t*7,o)}function DZ(e,t,o){return mz(e,t*12,o)}function EZ(e,t){let o,n=t?.in;return e.forEach(a=>{!n&&typeof a=="object"&&(n=ct.bind(null,a));const r=Be(a,n);(!o||o<r||isNaN(+r))&&(o=r)}),ct(n,o||NaN)}function zZ(e,t){let o,n=t?.in;return e.forEach(a=>{!n&&typeof a=="object"&&(n=ct.bind(null,a));const r=Be(a,n);(!o||o>r||isNaN(+r))&&(o=r)}),ct(n,o||NaN)}function OZ(e,t,o){const[n,a]=ls(o?.in,e,t);return+pd(n)==+pd(a)}function vz(e){return e instanceof Date||typeof e=="object"&&Object.prototype.toString.call(e)==="[object Date]"}function qZ(e){return!(!vz(e)&&typeof e!="number"||isNaN(+Be(e)))}function _z(e,t,o){const[n,a]=ls(o?.in,e,t),r=n.getFullYear()-a.getFullYear(),i=n.getMonth()-a.getMonth();return r*12+i}function jZ(e,t){const o=Be(e,t?.in),n=o.getMonth();return o.setFullYear(o.getFullYear(),n+1,0),o.setHours(23,59,59,999),o}function bz(e,t){const[o,n]=ls(e,t.start,t.end);return{start:o,end:n}}function HZ(e,t){const{start:o,end:n}=bz(t?.in,e);let a=+o>+n;const r=a?+o:+n,i=a?n:o;i.setHours(0,0,0,0),i.setDate(1);let s=1;const l=[];for(;+i<=r;)l.push(ct(o,i)),i.setMonth(i.getMonth()+s);return a?l.reverse():l}function VZ(e,t){const o=Be(e,t?.in);return o.setDate(1),o.setHours(0,0,0,0),o}function FZ(e,t){const o=Be(e,t?.in),n=o.getFullYear();return o.setFullYear(n+1,0,0),o.setHours(23,59,59,999),o}function Mz(e,t){const o=Be(e,t?.in);return o.setFullYear(o.getFullYear(),0,1),o.setHours(0,0,0,0),o}function BZ(e,t){const{start:o,end:n}=bz(t?.in,e);let a=+o>+n;const r=a?+o:+n,i=a?n:o;i.setHours(0,0,0,0),i.setMonth(0,1);let s=1;const l=[];for(;+i<=r;)l.push(ct(o,i)),i.setFullYear(i.getFullYear()+s);return a?l.reverse():l}function wz(e,t){const o=ud(),n=t?.weekStartsOn??t?.locale?.options?.weekStartsOn??o.weekStartsOn??o.locale?.options?.weekStartsOn??0,a=Be(e,t?.in),r=a.getDay(),i=(r<n?-7:0)+6-(r-n);return a.setDate(a.getDate()+i),a.setHours(23,59,59,999),a}function WZ(e,t){return wz(e,{...t,weekStartsOn:1})}const UZ={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},RZ=(e,t,o)=>{let n;const a=UZ[e];return typeof a=="string"?n=a:t===1?n=a.one:n=a.other.replace("{{count}}",t.toString()),o?.addSuffix?o.comparison&&o.comparison>0?"in "+n:n+" ago":n};function uL(e){return(t={})=>{const o=t.width?String(t.width):e.defaultWidth;return e.formats[o]||e.formats[e.defaultWidth]}}const GZ={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},KZ={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},YZ={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},XZ={date:uL({formats:GZ,defaultWidth:"full"}),time:uL({formats:KZ,defaultWidth:"full"}),dateTime:uL({formats:YZ,defaultWidth:"full"})},ZZ={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},QZ=(e,t,o,n)=>ZZ[e];function yd(e){return(t,o)=>{const n=o?.context?String(o.context):"standalone";let a;if(n==="formatting"&&e.formattingValues){const i=e.defaultFormattingWidth||e.defaultWidth,s=o?.width?String(o.width):i;a=e.formattingValues[s]||e.formattingValues[i]}else{const i=e.defaultWidth,s=o?.width?String(o.width):e.defaultWidth;a=e.values[s]||e.values[i]}const r=e.argumentCallback?e.argumentCallback(t):t;return a[r]}}const JZ={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},eQ={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},tQ={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},oQ={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},nQ={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},aQ={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},rQ={ordinalNumber:(e,t)=>{const o=Number(e),n=o%100;if(n>20||n<10)switch(n%10){case 1:return o+"st";case 2:return o+"nd";case 3:return o+"rd"}return o+"th"},era:yd({values:JZ,defaultWidth:"wide"}),quarter:yd({values:eQ,defaultWidth:"wide",argumentCallback:e=>e-1}),month:yd({values:tQ,defaultWidth:"wide"}),day:yd({values:oQ,defaultWidth:"wide"}),dayPeriod:yd({values:nQ,defaultWidth:"wide",formattingValues:aQ,defaultFormattingWidth:"wide"})};function fd(e){return(t,o={})=>{const n=o.width,a=n&&e.matchPatterns[n]||e.matchPatterns[e.defaultMatchWidth],r=t.match(a);if(!r)return null;const i=r[0],s=n&&e.parsePatterns[n]||e.parsePatterns[e.defaultParseWidth],l=Array.isArray(s)?cQ(s,h=>h.test(i)):iQ(s,h=>h.test(i));let u;u=e.valueCallback?e.valueCallback(l):l,u=o.valueCallback?o.valueCallback(u):u;const y=t.slice(i.length);return{value:u,rest:y}}}function iQ(e,t){for(const o in e)if(Object.prototype.hasOwnProperty.call(e,o)&&t(e[o]))return o}function cQ(e,t){for(let o=0;o<e.length;o++)if(t(e[o]))return o}function sQ(e){return(t,o={})=>{const n=t.match(e.matchPattern);if(!n)return null;const a=n[0],r=t.match(e.parsePattern);if(!r)return null;let i=e.valueCallback?e.valueCallback(r[0]):r[0];i=o.valueCallback?o.valueCallback(i):i;const s=t.slice(a.length);return{value:i,rest:s}}}const dQ=/^(\d+)(th|st|nd|rd)?/i,lQ=/\d+/i,uQ={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},hQ={any:[/^b/i,/^(a|c)/i]},pQ={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},yQ={any:[/1/i,/2/i,/3/i,/4/i]},fQ={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},mQ={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},kQ={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},gQ={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},vQ={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},_Q={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},bQ={ordinalNumber:sQ({matchPattern:dQ,parsePattern:lQ,valueCallback:e=>parseInt(e,10)}),era:fd({matchPatterns:uQ,defaultMatchWidth:"wide",parsePatterns:hQ,defaultParseWidth:"any"}),quarter:fd({matchPatterns:pQ,defaultMatchWidth:"wide",parsePatterns:yQ,defaultParseWidth:"any",valueCallback:e=>e+1}),month:fd({matchPatterns:fQ,defaultMatchWidth:"wide",parsePatterns:mQ,defaultParseWidth:"any"}),day:fd({matchPatterns:kQ,defaultMatchWidth:"wide",parsePatterns:gQ,defaultParseWidth:"any"}),dayPeriod:fd({matchPatterns:vQ,defaultMatchWidth:"any",parsePatterns:_Q,defaultParseWidth:"any"})},us={code:"en-US",formatDistance:RZ,formatLong:XZ,formatRelative:QZ,localize:rQ,match:bQ,options:{weekStartsOn:0,firstWeekContainsDate:1}};function MQ(e,t){const o=Be(e,t?.in);return lL(o,Mz(o))+1}function hL(e,t){const o=Be(e,t?.in),n=+hd(o)-+PZ(o);return Math.round(n/pz)+1}function xz(e,t){const o=Be(e,t?.in),n=o.getFullYear(),a=ud(),r=t?.firstWeekContainsDate??t?.locale?.options?.firstWeekContainsDate??a.firstWeekContainsDate??a.locale?.options?.firstWeekContainsDate??1,i=ct(t?.in||e,0);i.setFullYear(n+1,0,r),i.setHours(0,0,0,0);const s=ds(i,t),l=ct(t?.in||e,0);l.setFullYear(n,0,r),l.setHours(0,0,0,0);const u=ds(l,t);return+o>=+s?n+1:+o>=+u?n:n-1}function wQ(e,t){const o=ud(),n=t?.firstWeekContainsDate??t?.locale?.options?.firstWeekContainsDate??o.firstWeekContainsDate??o.locale?.options?.firstWeekContainsDate??1,a=xz(e,t),r=ct(t?.in||e,0);return r.setFullYear(a,0,n),r.setHours(0,0,0,0),ds(r,t)}function pL(e,t){const o=Be(e,t?.in),n=+ds(o,t)-+wQ(o,t);return Math.round(n/pz)+1}function He(e,t){const o=e<0?"-":"",n=Math.abs(e).toString().padStart(t,"0");return o+n}const rn={y(e,t){const o=e.getFullYear(),n=o>0?o:1-o;return He(t==="yy"?n%100:n,t.length)},M(e,t){const o=e.getMonth();return t==="M"?String(o+1):He(o+1,2)},d(e,t){return He(e.getDate(),t.length)},a(e,t){const o=e.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return o.toUpperCase();case"aaa":return o;case"aaaaa":return o[0];default:return o==="am"?"a.m.":"p.m."}},h(e,t){return He(e.getHours()%12||12,t.length)},H(e,t){return He(e.getHours(),t.length)},m(e,t){return He(e.getMinutes(),t.length)},s(e,t){return He(e.getSeconds(),t.length)},S(e,t){const o=t.length,n=e.getMilliseconds(),a=Math.trunc(n*Math.pow(10,o-3));return He(a,t.length)}},hs={midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},Nz={G:function(e,t,o){const n=e.getFullYear()>0?1:0;switch(t){case"G":case"GG":case"GGG":return o.era(n,{width:"abbreviated"});case"GGGGG":return o.era(n,{width:"narrow"});default:return o.era(n,{width:"wide"})}},y:function(e,t,o){if(t==="yo"){const n=e.getFullYear(),a=n>0?n:1-n;return o.ordinalNumber(a,{unit:"year"})}return rn.y(e,t)},Y:function(e,t,o,n){const a=xz(e,n),r=a>0?a:1-a;if(t==="YY"){const i=r%100;return He(i,2)}return t==="Yo"?o.ordinalNumber(r,{unit:"year"}):He(r,t.length)},R:function(e,t){const o=kz(e);return He(o,t.length)},u:function(e,t){const o=e.getFullYear();return He(o,t.length)},Q:function(e,t,o){const n=Math.ceil((e.getMonth()+1)/3);switch(t){case"Q":return String(n);case"QQ":return He(n,2);case"Qo":return o.ordinalNumber(n,{unit:"quarter"});case"QQQ":return o.quarter(n,{width:"abbreviated",context:"formatting"});case"QQQQQ":return o.quarter(n,{width:"narrow",context:"formatting"});default:return o.quarter(n,{width:"wide",context:"formatting"})}},q:function(e,t,o){const n=Math.ceil((e.getMonth()+1)/3);switch(t){case"q":return String(n);case"qq":return He(n,2);case"qo":return o.ordinalNumber(n,{unit:"quarter"});case"qqq":return o.quarter(n,{width:"abbreviated",context:"standalone"});case"qqqqq":return o.quarter(n,{width:"narrow",context:"standalone"});default:return o.quarter(n,{width:"wide",context:"standalone"})}},M:function(e,t,o){const n=e.getMonth();switch(t){case"M":case"MM":return rn.M(e,t);case"Mo":return o.ordinalNumber(n+1,{unit:"month"});case"MMM":return o.month(n,{width:"abbreviated",context:"formatting"});case"MMMMM":return o.month(n,{width:"narrow",context:"formatting"});default:return o.month(n,{width:"wide",context:"formatting"})}},L:function(e,t,o){const n=e.getMonth();switch(t){case"L":return String(n+1);case"LL":return He(n+1,2);case"Lo":return o.ordinalNumber(n+1,{unit:"month"});case"LLL":return o.month(n,{width:"abbreviated",context:"standalone"});case"LLLLL":return o.month(n,{width:"narrow",context:"standalone"});default:return o.month(n,{width:"wide",context:"standalone"})}},w:function(e,t,o,n){const a=pL(e,n);return t==="wo"?o.ordinalNumber(a,{unit:"week"}):He(a,t.length)},I:function(e,t,o){const n=hL(e);return t==="Io"?o.ordinalNumber(n,{unit:"week"}):He(n,t.length)},d:function(e,t,o){return t==="do"?o.ordinalNumber(e.getDate(),{unit:"date"}):rn.d(e,t)},D:function(e,t,o){const n=MQ(e);return t==="Do"?o.ordinalNumber(n,{unit:"dayOfYear"}):He(n,t.length)},E:function(e,t,o){const n=e.getDay();switch(t){case"E":case"EE":case"EEE":return o.day(n,{width:"abbreviated",context:"formatting"});case"EEEEE":return o.day(n,{width:"narrow",context:"formatting"});case"EEEEEE":return o.day(n,{width:"short",context:"formatting"});default:return o.day(n,{width:"wide",context:"formatting"})}},e:function(e,t,o,n){const a=e.getDay(),r=(a-n.weekStartsOn+8)%7||7;switch(t){case"e":return String(r);case"ee":return He(r,2);case"eo":return o.ordinalNumber(r,{unit:"day"});case"eee":return o.day(a,{width:"abbreviated",context:"formatting"});case"eeeee":return o.day(a,{width:"narrow",context:"formatting"});case"eeeeee":return o.day(a,{width:"short",context:"formatting"});default:return o.day(a,{width:"wide",context:"formatting"})}},c:function(e,t,o,n){const a=e.getDay(),r=(a-n.weekStartsOn+8)%7||7;switch(t){case"c":return String(r);case"cc":return He(r,t.length);case"co":return o.ordinalNumber(r,{unit:"day"});case"ccc":return o.day(a,{width:"abbreviated",context:"standalone"});case"ccccc":return o.day(a,{width:"narrow",context:"standalone"});case"cccccc":return o.day(a,{width:"short",context:"standalone"});default:return o.day(a,{width:"wide",context:"standalone"})}},i:function(e,t,o){const n=e.getDay(),a=n===0?7:n;switch(t){case"i":return String(a);case"ii":return He(a,t.length);case"io":return o.ordinalNumber(a,{unit:"day"});case"iii":return o.day(n,{width:"abbreviated",context:"formatting"});case"iiiii":return o.day(n,{width:"narrow",context:"formatting"});case"iiiiii":return o.day(n,{width:"short",context:"formatting"});default:return o.day(n,{width:"wide",context:"formatting"})}},a:function(e,t,o){const a=e.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return o.dayPeriod(a,{width:"abbreviated",context:"formatting"});case"aaa":return o.dayPeriod(a,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return o.dayPeriod(a,{width:"narrow",context:"formatting"});default:return o.dayPeriod(a,{width:"wide",context:"formatting"})}},b:function(e,t,o){const n=e.getHours();let a;switch(n===12?a=hs.noon:n===0?a=hs.midnight:a=n/12>=1?"pm":"am",t){case"b":case"bb":return o.dayPeriod(a,{width:"abbreviated",context:"formatting"});case"bbb":return o.dayPeriod(a,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return o.dayPeriod(a,{width:"narrow",context:"formatting"});default:return o.dayPeriod(a,{width:"wide",context:"formatting"})}},B:function(e,t,o){const n=e.getHours();let a;switch(n>=17?a=hs.evening:n>=12?a=hs.afternoon:n>=4?a=hs.morning:a=hs.night,t){case"B":case"BB":case"BBB":return o.dayPeriod(a,{width:"abbreviated",context:"formatting"});case"BBBBB":return o.dayPeriod(a,{width:"narrow",context:"formatting"});default:return o.dayPeriod(a,{width:"wide",context:"formatting"})}},h:function(e,t,o){if(t==="ho"){let n=e.getHours()%12;return n===0&&(n=12),o.ordinalNumber(n,{unit:"hour"})}return rn.h(e,t)},H:function(e,t,o){return t==="Ho"?o.ordinalNumber(e.getHours(),{unit:"hour"}):rn.H(e,t)},K:function(e,t,o){const n=e.getHours()%12;return t==="Ko"?o.ordinalNumber(n,{unit:"hour"}):He(n,t.length)},k:function(e,t,o){let n=e.getHours();return n===0&&(n=24),t==="ko"?o.ordinalNumber(n,{unit:"hour"}):He(n,t.length)},m:function(e,t,o){return t==="mo"?o.ordinalNumber(e.getMinutes(),{unit:"minute"}):rn.m(e,t)},s:function(e,t,o){return t==="so"?o.ordinalNumber(e.getSeconds(),{unit:"second"}):rn.s(e,t)},S:function(e,t){return rn.S(e,t)},X:function(e,t,o){const n=e.getTimezoneOffset();if(n===0)return"Z";switch(t){case"X":return $z(n);case"XXXX":case"XX":return Lc(n);default:return Lc(n,":")}},x:function(e,t,o){const n=e.getTimezoneOffset();switch(t){case"x":return $z(n);case"xxxx":case"xx":return Lc(n);default:return Lc(n,":")}},O:function(e,t,o){const n=e.getTimezoneOffset();switch(t){case"O":case"OO":case"OOO":return"GMT"+Cz(n,":");default:return"GMT"+Lc(n,":")}},z:function(e,t,o){const n=e.getTimezoneOffset();switch(t){case"z":case"zz":case"zzz":return"GMT"+Cz(n,":");default:return"GMT"+Lc(n,":")}},t:function(e,t,o){const n=Math.trunc(+e/1e3);return He(n,t.length)},T:function(e,t,o){return He(+e,t.length)}};function Cz(e,t=""){const o=e>0?"-":"+",n=Math.abs(e),a=Math.trunc(n/60),r=n%60;return r===0?o+String(a):o+String(a)+t+He(r,2)}function $z(e,t){return e%60===0?(e>0?"-":"+")+He(Math.abs(e)/60,2):Lc(e,t)}function Lc(e,t=""){const o=e>0?"-":"+",n=Math.abs(e),a=He(Math.trunc(n/60),2),r=He(n%60,2);return o+a+t+r}const Sz=(e,t)=>{switch(e){case"P":return t.date({width:"short"});case"PP":return t.date({width:"medium"});case"PPP":return t.date({width:"long"});default:return t.date({width:"full"})}},Lz=(e,t)=>{switch(e){case"p":return t.time({width:"short"});case"pp":return t.time({width:"medium"});case"ppp":return t.time({width:"long"});default:return t.time({width:"full"})}},xQ={p:Lz,P:(e,t)=>{const o=e.match(/(P+)(p+)?/)||[],n=o[1],a=o[2];if(!a)return Sz(e,t);let r;switch(n){case"P":r=t.dateTime({width:"short"});break;case"PP":r=t.dateTime({width:"medium"});break;case"PPP":r=t.dateTime({width:"long"});break;default:r=t.dateTime({width:"full"});break}return r.replace("{{date}}",Sz(n,t)).replace("{{time}}",Lz(a,t))}},NQ=/^D+$/,CQ=/^Y+$/,$Q=["D","DD","YY","YYYY"];function SQ(e){return NQ.test(e)}function LQ(e){return CQ.test(e)}function IQ(e,t,o){const n=AQ(e,t,o);if(console.warn(n),$Q.includes(e))throw new RangeError(n)}function AQ(e,t,o){const n=e[0]==="Y"?"years":"days of the month";return`Use \`${e.toLowerCase()}\` instead of \`${e}\` (in \`${t}\`) for formatting ${n} to the input \`${o}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`}const PQ=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,TQ=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,DQ=/^'([^]*?)'?$/,EQ=/''/g,zQ=/[a-zA-Z]/;function ps(e,t,o){const n=ud(),a=o?.locale??n.locale??us,r=o?.firstWeekContainsDate??o?.locale?.options?.firstWeekContainsDate??n.firstWeekContainsDate??n.locale?.options?.firstWeekContainsDate??1,i=o?.weekStartsOn??o?.locale?.options?.weekStartsOn??n.weekStartsOn??n.locale?.options?.weekStartsOn??0,s=Be(e,o?.in);if(!qZ(s))throw new RangeError("Invalid time value");let l=t.match(TQ).map(y=>{const h=y[0];if(h==="p"||h==="P"){const f=xQ[h];return f(y,a.formatLong)}return y}).join("").match(PQ).map(y=>{if(y==="''")return{isToken:!1,value:"'"};const h=y[0];if(h==="'")return{isToken:!1,value:OQ(y)};if(Nz[h])return{isToken:!0,value:y};if(h.match(zQ))throw new RangeError("Format string contains an unescaped latin alphabet character `"+h+"`");return{isToken:!1,value:y}});a.localize.preprocessor&&(l=a.localize.preprocessor(s,l));const u={firstWeekContainsDate:r,weekStartsOn:i,locale:a};return l.map(y=>{if(!y.isToken)return y.value;const h=y.value;(!o?.useAdditionalWeekYearTokens&&LQ(h)||!o?.useAdditionalDayOfYearTokens&&SQ(h))&&IQ(h,t,String(e));const f=Nz[h[0]];return f(s,h,a.localize,u)}).join("")}function OQ(e){const t=e.match(DQ);return t?t[1].replace(EQ,"'"):e}function qQ(e,t){const o=Be(e,t?.in),n=o.getFullYear(),a=o.getMonth(),r=ct(o,0);return r.setFullYear(n,a+1,0),r.setHours(0,0,0,0),r.getDate()}function jQ(e,t){return Be(e,t?.in).getMonth()}function HQ(e,t){return Be(e,t?.in).getFullYear()}function VQ(e,t){return+Be(e)>+Be(t)}function FQ(e,t){return+Be(e)<+Be(t)}function BQ(e,t,o){const[n,a]=ls(o?.in,e,t);return n.getFullYear()===a.getFullYear()&&n.getMonth()===a.getMonth()}function WQ(e,t,o){const[n,a]=ls(o?.in,e,t);return n.getFullYear()===a.getFullYear()}function UQ(e,t,o){const n=Be(e,o?.in),a=n.getFullYear(),r=n.getDate(),i=ct(e,0);i.setFullYear(a,t,15),i.setHours(0,0,0,0);const s=qQ(i);return n.setMonth(t,Math.min(r,s)),n}function RQ(e,t,o){const n=Be(e,o?.in);return isNaN(+n)?ct(e,NaN):(n.setFullYear(t),n)}const Iz=5,GQ=4;function KQ(e,t){const o=t.startOfMonth(e),n=o.getDay()>0?o.getDay():7,a=t.addDays(e,-n+1),r=t.addDays(a,Iz*7-1);return t.getMonth(e)===t.getMonth(r)?Iz:GQ}function Az(e,t){const o=t.startOfMonth(e),n=o.getDay();return n===1?o:n===0?t.addDays(o,-6):t.addDays(o,-1*(n-1))}function YQ(e,t){const o=Az(e,t),n=KQ(e,t);return t.addDays(o,n*7-1)}const Pz={...us,labels:{labelDayButton:(e,t,o,n)=>{let a;n&&typeof n.format=="function"?a=n.format.bind(n):a=(i,s)=>ps(i,s,{locale:us,...o});let r=a(e,"PPPP");return t.today&&(r=`Today, ${r}`),t.selected&&(r=`${r}, selected`),r},labelMonthDropdown:"Choose the Month",labelNext:"Go to the Next Month",labelPrevious:"Go to the Previous Month",labelWeekNumber:e=>`Week ${e}`,labelYearDropdown:"Choose the Year",labelGrid:(e,t,o)=>{let n;return o&&typeof o.format=="function"?n=o.format.bind(o):n=(a,r)=>ps(a,r,{locale:us,...t}),n(e,"LLLL yyyy")},labelGridcell:(e,t,o,n)=>{let a;n&&typeof n.format=="function"?a=n.format.bind(n):a=(i,s)=>ps(i,s,{locale:us,...o});let r=a(e,"PPPP");return t?.today&&(r=`Today, ${r}`),r},labelNav:"Navigation bar",labelWeekNumberHeader:"Week Number",labelWeekday:(e,t,o)=>{let n;return o&&typeof o.format=="function"?n=o.format.bind(o):n=(a,r)=>ps(a,r,{locale:us,...t}),n(e,"cccc")}}};class Tt{constructor(t,o){this.Date=Date,this.today=()=>this.overrides?.today?this.overrides.today():this.options.timeZone?pt.tz(this.options.timeZone):new this.Date,this.newDate=(n,a,r)=>this.overrides?.newDate?this.overrides.newDate(n,a,r):this.options.timeZone?new pt(n,a,r,this.options.timeZone):new Date(n,a,r),this.addDays=(n,a)=>this.overrides?.addDays?this.overrides.addDays(n,a):fz(n,a),this.addMonths=(n,a)=>this.overrides?.addMonths?this.overrides.addMonths(n,a):mz(n,a),this.addWeeks=(n,a)=>this.overrides?.addWeeks?this.overrides.addWeeks(n,a):TZ(n,a),this.addYears=(n,a)=>this.overrides?.addYears?this.overrides.addYears(n,a):DZ(n,a),this.differenceInCalendarDays=(n,a)=>this.overrides?.differenceInCalendarDays?this.overrides.differenceInCalendarDays(n,a):lL(n,a),this.differenceInCalendarMonths=(n,a)=>this.overrides?.differenceInCalendarMonths?this.overrides.differenceInCalendarMonths(n,a):_z(n,a),this.eachMonthOfInterval=n=>this.overrides?.eachMonthOfInterval?this.overrides.eachMonthOfInterval(n):HZ(n),this.eachYearOfInterval=n=>{const a=this.overrides?.eachYearOfInterval?this.overrides.eachYearOfInterval(n):BZ(n),r=new Set(a.map(s=>this.getYear(s)));if(r.size===a.length)return a;const i=[];return r.forEach(s=>{i.push(new Date(s,0,1))}),i},this.endOfBroadcastWeek=n=>this.overrides?.endOfBroadcastWeek?this.overrides.endOfBroadcastWeek(n):YQ(n,this),this.endOfISOWeek=n=>this.overrides?.endOfISOWeek?this.overrides.endOfISOWeek(n):WZ(n),this.endOfMonth=n=>this.overrides?.endOfMonth?this.overrides.endOfMonth(n):jZ(n),this.endOfWeek=(n,a)=>this.overrides?.endOfWeek?this.overrides.endOfWeek(n,a):wz(n,this.options),this.endOfYear=n=>this.overrides?.endOfYear?this.overrides.endOfYear(n):FZ(n),this.format=(n,a,r)=>{const i=this.overrides?.format?this.overrides.format(n,a,this.options):ps(n,a,this.options);return this.options.numerals&&this.options.numerals!=="latn"?this.replaceDigits(i):i},this.getISOWeek=n=>this.overrides?.getISOWeek?this.overrides.getISOWeek(n):hL(n),this.getMonth=(n,a)=>this.overrides?.getMonth?this.overrides.getMonth(n,this.options):jQ(n,this.options),this.getYear=(n,a)=>this.overrides?.getYear?this.overrides.getYear(n,this.options):HQ(n,this.options),this.getWeek=(n,a)=>this.overrides?.getWeek?this.overrides.getWeek(n,this.options):pL(n,this.options),this.isAfter=(n,a)=>this.overrides?.isAfter?this.overrides.isAfter(n,a):VQ(n,a),this.isBefore=(n,a)=>this.overrides?.isBefore?this.overrides.isBefore(n,a):FQ(n,a),this.isDate=n=>this.overrides?.isDate?this.overrides.isDate(n):vz(n),this.isSameDay=(n,a)=>this.overrides?.isSameDay?this.overrides.isSameDay(n,a):OZ(n,a),this.isSameMonth=(n,a)=>this.overrides?.isSameMonth?this.overrides.isSameMonth(n,a):BQ(n,a),this.isSameYear=(n,a)=>this.overrides?.isSameYear?this.overrides.isSameYear(n,a):WQ(n,a),this.max=n=>this.overrides?.max?this.overrides.max(n):EZ(n),this.min=n=>this.overrides?.min?this.overrides.min(n):zZ(n),this.setMonth=(n,a)=>this.overrides?.setMonth?this.overrides.setMonth(n,a):UQ(n,a),this.setYear=(n,a)=>this.overrides?.setYear?this.overrides.setYear(n,a):RQ(n,a),this.startOfBroadcastWeek=(n,a)=>this.overrides?.startOfBroadcastWeek?this.overrides.startOfBroadcastWeek(n,this):Az(n,this),this.startOfDay=n=>this.overrides?.startOfDay?this.overrides.startOfDay(n):pd(n),this.startOfISOWeek=n=>this.overrides?.startOfISOWeek?this.overrides.startOfISOWeek(n):hd(n),this.startOfMonth=n=>this.overrides?.startOfMonth?this.overrides.startOfMonth(n):VZ(n),this.startOfWeek=(n,a)=>this.overrides?.startOfWeek?this.overrides.startOfWeek(n,this.options):ds(n,this.options),this.startOfYear=n=>this.overrides?.startOfYear?this.overrides.startOfYear(n):Mz(n),this.options={locale:Pz,...t},this.overrides=o}getDigitMap(){const{numerals:t="latn"}=this.options,o=new Intl.NumberFormat("en-US",{numberingSystem:t}),n={};for(let a=0;a<10;a++)n[a.toString()]=o.format(a);return n}replaceDigits(t){const o=this.getDigitMap();return t.replace(/\d/g,n=>o[n]||n)}formatNumber(t){return this.replaceDigits(t.toString())}getMonthYearOrder(){const t=this.options.locale?.code;return t&&Tt.yearFirstLocales.has(t)?"year-first":"month-first"}formatMonthYear(t){const{locale:o,timeZone:n,numerals:a}=this.options,r=o?.code;if(r&&Tt.yearFirstLocales.has(r))try{return new Intl.DateTimeFormat(r,{month:"long",year:"numeric",timeZone:n,numberingSystem:a}).format(t)}catch{}const i=this.getMonthYearOrder()==="year-first"?"y LLLL":"LLLL y";return this.format(t,i)}}Tt.yearFirstLocales=new Set(["eu","hu","ja","ja-Hira","ja-JP","ko","ko-KR","lt","lt-LT","lv","lv-LV","mn","mn-MN","zh","zh-CN","zh-HK","zh-TW"]);const xo=new Tt;class Tz{constructor(t,o,n=xo){this.date=t,this.displayMonth=o,this.outside=!!(o&&!n.isSameMonth(t,o)),this.dateLib=n,this.isoDate=n.format(t,"yyyy-MM-dd"),this.displayMonthId=n.format(o,"yyyy-MM"),this.dateMonthId=n.format(t,"yyyy-MM")}isEqualTo(t){return this.dateLib.isSameDay(t.date,this.date)&&this.dateLib.isSameMonth(t.displayMonth,this.displayMonth)}}class XQ{constructor(t,o){this.date=t,this.weeks=o}}class ZQ{constructor(t,o){this.days=o,this.weekNumber=t}}function QQ(e){return w.createElement("button",{...e})}function JQ(e){return w.createElement("span",{...e})}function eJ(e){const{size:t=24,orientation:o="left",className:n}=e;return w.createElement("svg",{className:n,width:t,height:t,viewBox:"0 0 24 24"},o==="up"&&w.createElement("polygon",{points:"6.77 17 12.5 11.43 18.24 17 20 15.28 12.5 8 5 15.28"}),o==="down"&&w.createElement("polygon",{points:"6.77 8 12.5 13.57 18.24 8 20 9.72 12.5 17 5 9.72"}),o==="left"&&w.createElement("polygon",{points:"16 18.112 9.81111111 12 16 5.87733333 14.0888889 4 6 12 14.0888889 20"}),o==="right"&&w.createElement("polygon",{points:"8 18.112 14.18888889 12 8 5.87733333 9.91111111 4 18 12 9.91111111 20"}))}function tJ(e){const{day:t,modifiers:o,...n}=e;return w.createElement("td",{...n})}function oJ(e){const{day:t,modifiers:o,...n}=e,a=w.useRef(null);return w.useEffect(()=>{o.focused&&a.current?.focus()},[o.focused]),w.createElement("button",{ref:a,...n})}var Me;(function(e){e.Root="root",e.Chevron="chevron",e.Day="day",e.DayButton="day_button",e.CaptionLabel="caption_label",e.Dropdowns="dropdowns",e.Dropdown="dropdown",e.DropdownRoot="dropdown_root",e.Footer="footer",e.MonthGrid="month_grid",e.MonthCaption="month_caption",e.MonthsDropdown="months_dropdown",e.Month="month",e.Months="months",e.Nav="nav",e.NextMonthButton="button_next",e.PreviousMonthButton="button_previous",e.Week="week",e.Weeks="weeks",e.Weekday="weekday",e.Weekdays="weekdays",e.WeekNumber="week_number",e.WeekNumberHeader="week_number_header",e.YearsDropdown="years_dropdown"})(Me||(Me={}));var Je;(function(e){e.disabled="disabled",e.hidden="hidden",e.outside="outside",e.focused="focused",e.today="today"})(Je||(Je={}));var eo;(function(e){e.range_end="range_end",e.range_middle="range_middle",e.range_start="range_start",e.selected="selected"})(eo||(eo={}));var Dt;(function(e){e.weeks_before_enter="weeks_before_enter",e.weeks_before_exit="weeks_before_exit",e.weeks_after_enter="weeks_after_enter",e.weeks_after_exit="weeks_after_exit",e.caption_after_enter="caption_after_enter",e.caption_after_exit="caption_after_exit",e.caption_before_enter="caption_before_enter",e.caption_before_exit="caption_before_exit"})(Dt||(Dt={}));function nJ(e){const{options:t,className:o,components:n,classNames:a,...r}=e,i=[a[Me.Dropdown],o].join(" "),s=t?.find(({value:l})=>l===r.value);return w.createElement("span",{"data-disabled":r.disabled,className:a[Me.DropdownRoot]},w.createElement(n.Select,{className:i,...r},t?.map(({value:l,label:u,disabled:y})=>w.createElement(n.Option,{key:l,value:l,disabled:y},u))),w.createElement("span",{className:a[Me.CaptionLabel],"aria-hidden":!0},s?.label,w.createElement(n.Chevron,{orientation:"down",size:18,className:a[Me.Chevron]})))}function aJ(e){return w.createElement("div",{...e})}function rJ(e){return w.createElement("div",{...e})}function iJ(e){const{calendarMonth:t,displayIndex:o,...n}=e;return w.createElement("div",{...n},e.children)}function cJ(e){const{calendarMonth:t,displayIndex:o,...n}=e;return w.createElement("div",{...n})}function sJ(e){return w.createElement("table",{...e})}function dJ(e){return w.createElement("div",{...e})}const Dz=w.createContext(void 0);function md(){const e=w.useContext(Dz);if(e===void 0)throw new Error("useDayPicker() must be used within a custom component.");return e}function lJ(e){const{components:t}=md();return w.createElement(t.Dropdown,{...e})}function uJ(e){const{onPreviousClick:t,onNextClick:o,previousMonth:n,nextMonth:a,...r}=e,{components:i,classNames:s,labels:{labelPrevious:l,labelNext:u}}=md(),y=w.useCallback(f=>{a&&o?.(f)},[a,o]),h=w.useCallback(f=>{n&&t?.(f)},[n,t]);return w.createElement("nav",{...r},w.createElement(i.PreviousMonthButton,{type:"button",className:s[Me.PreviousMonthButton],tabIndex:n?void 0:-1,"aria-disabled":n?void 0:!0,"aria-label":l(n),onClick:h},w.createElement(i.Chevron,{disabled:n?void 0:!0,className:s[Me.Chevron],orientation:"left"})),w.createElement(i.NextMonthButton,{type:"button",className:s[Me.NextMonthButton],tabIndex:a?void 0:-1,"aria-disabled":a?void 0:!0,"aria-label":u(a),onClick:y},w.createElement(i.Chevron,{disabled:a?void 0:!0,orientation:"right",className:s[Me.Chevron]})))}function hJ(e){const{components:t}=md();return w.createElement(t.Button,{...e})}function pJ(e){return w.createElement("option",{...e})}function yJ(e){const{components:t}=md();return w.createElement(t.Button,{...e})}function fJ(e){const{rootRef:t,...o}=e;return w.createElement("div",{...o,ref:t})}function mJ(e){return w.createElement("select",{...e})}function kJ(e){const{week:t,...o}=e;return w.createElement("tr",{...o})}function gJ(e){return w.createElement("th",{...e})}function vJ(e){return w.createElement("thead",{"aria-hidden":!0},w.createElement("tr",{...e}))}function _J(e){const{week:t,...o}=e;return w.createElement("th",{...o})}function bJ(e){return w.createElement("th",{...e})}function MJ(e){return w.createElement("tbody",{...e})}function wJ(e){const{components:t}=md();return w.createElement(t.Dropdown,{...e})}const xJ=Object.freeze(Object.defineProperty({__proto__:null,Button:QQ,CaptionLabel:JQ,Chevron:eJ,Day:tJ,DayButton:oJ,Dropdown:nJ,DropdownNav:aJ,Footer:rJ,Month:iJ,MonthCaption:cJ,MonthGrid:sJ,Months:dJ,MonthsDropdown:lJ,Nav:uJ,NextMonthButton:hJ,Option:pJ,PreviousMonthButton:yJ,Root:fJ,Select:mJ,Week:kJ,WeekNumber:_J,WeekNumberHeader:bJ,Weekday:gJ,Weekdays:vJ,Weeks:MJ,YearsDropdown:wJ},Symbol.toStringTag,{value:"Module"}));function Wo(e,t,o=!1,n=xo){let{from:a,to:r}=e;const{differenceInCalendarDays:i,isSameDay:s}=n;return a&&r?(i(r,a)<0&&([a,r]=[r,a]),i(t,a)>=(o?1:0)&&i(r,t)>=(o?1:0)):!o&&r?s(r,t):!o&&a?s(a,t):!1}function yL(e){return!!(e&&typeof e=="object"&&"before"in e&&"after"in e)}function BC(e){return!!(e&&typeof e=="object"&&"from"in e)}function fL(e){return!!(e&&typeof e=="object"&&"after"in e)}function mL(e){return!!(e&&typeof e=="object"&&"before"in e)}function Ez(e){return!!(e&&typeof e=="object"&&"dayOfWeek"in e)}function zz(e,t){return Array.isArray(e)&&e.every(t.isDate)}function Uo(e,t,o=xo){const n=Array.isArray(t)?t:[t],{isSameDay:a,differenceInCalendarDays:r,isAfter:i}=o;return n.some(s=>{if(typeof s=="boolean")return s;if(o.isDate(s))return a(e,s);if(zz(s,o))return s.some(l=>a(e,l));if(BC(s))return Wo(s,e,!1,o);if(Ez(s))return Array.isArray(s.dayOfWeek)?s.dayOfWeek.includes(e.getDay()):s.dayOfWeek===e.getDay();if(yL(s)){const l=r(s.before,e),u=r(s.after,e),y=l>0,h=u<0;return i(s.before,s.after)?h&&y:y||h}return fL(s)?r(e,s.after)>0:mL(s)?r(s.before,e)>0:typeof s=="function"?s(e):!1})}function NJ(e,t,o,n,a){const{disabled:r,hidden:i,modifiers:s,showOutsideDays:l,broadcastCalendar:u,today:y=a.today()}=t,{isSameDay:h,isSameMonth:f,startOfMonth:k,isBefore:m,endOfMonth:g,isAfter:_}=a,v=o&&k(o),b=n&&g(n),M={[Je.focused]:[],[Je.outside]:[],[Je.disabled]:[],[Je.hidden]:[],[Je.today]:[]},x={};for(const N of e){const{date:C,displayMonth:$}=N,L=!!($&&!f(C,$)),A=!!(v&&m(C,v)),z=!!(b&&_(C,b)),E=!!(r&&Uo(C,r,a)),O=!!(i&&Uo(C,i,a))||A||z||!u&&!l&&L||u&&l===!1&&L,T=h(C,y);L&&M.outside.push(N),E&&M.disabled.push(N),O&&M.hidden.push(N),T&&M.today.push(N),s&&Object.keys(s).forEach(W=>{const R=s?.[W];R&&Uo(C,R,a)&&(x[W]?x[W].push(N):x[W]=[N])})}return N=>{const C={[Je.focused]:!1,[Je.disabled]:!1,[Je.hidden]:!1,[Je.outside]:!1,[Je.today]:!1},$={};for(const L in M){const A=M[L];C[L]=A.some(z=>z===N)}for(const L in x)$[L]=x[L].some(A=>A===N);return{...C,...$}}}function CJ(e,t,o={}){return Object.entries(e).filter(([,a])=>a===!0).reduce((a,[r])=>(o[r]?a.push(o[r]):t[Je[r]]?a.push(t[Je[r]]):t[eo[r]]&&a.push(t[eo[r]]),a),[t[Me.Day]])}function $J(e){return{...xJ,...e}}function SJ(e){const t={"data-mode":e.mode??void 0,"data-required":"required"in e?e.required:void 0,"data-multiple-months":e.numberOfMonths&&e.numberOfMonths>1||void 0,"data-week-numbers":e.showWeekNumber||void 0,"data-broadcast-calendar":e.broadcastCalendar||void 0,"data-nav-layout":e.navLayout||void 0};return Object.entries(e).forEach(([o,n])=>{o.startsWith("data-")&&(t[o]=n)}),t}function kL(){const e={};for(const t in Me)e[Me[t]]=`rdp-${Me[t]}`;for(const t in Je)e[Je[t]]=`rdp-${Je[t]}`;for(const t in eo)e[eo[t]]=`rdp-${eo[t]}`;for(const t in Dt)e[Dt[t]]=`rdp-${Dt[t]}`;return e}function Oz(e,t,o){return(o??new Tt(t)).formatMonthYear(e)}const LJ=Oz;function IJ(e,t,o){return(o??new Tt(t)).format(e,"d")}function AJ(e,t=xo){return t.format(e,"LLLL")}function PJ(e,t,o){return(o??new Tt(t)).format(e,"cccccc")}function TJ(e,t=xo){return e<10?t.formatNumber(`0${e.toLocaleString()}`):t.formatNumber(`${e.toLocaleString()}`)}function DJ(){return""}function qz(e,t=xo){return t.format(e,"yyyy")}const EJ=Object.freeze(Object.defineProperty({__proto__:null,formatCaption:Oz,formatDay:IJ,formatMonthCaption:LJ,formatMonthDropdown:AJ,formatWeekNumber:TJ,formatWeekNumberHeader:DJ,formatWeekdayName:PJ,formatYearCaption:qz,formatYearDropdown:qz},Symbol.toStringTag,{value:"Module"}));function zJ(e){return e?.formatMonthCaption&&!e.formatCaption&&(e.formatCaption=e.formatMonthCaption),e?.formatYearCaption&&!e.formatYearDropdown&&(e.formatYearDropdown=e.formatYearCaption),{...EJ,...e}}function gL(e,t,o,n){let a=(n??new Tt(o)).format(e,"PPPP");return t.today&&(a=`Today, ${a}`),t.selected&&(a=`${a}, selected`),a}const OJ=gL;function vL(e,t,o){return(o??new Tt(t)).formatMonthYear(e)}const qJ=vL;function jz(e,t,o,n){let a=(n??new Tt(o)).format(e,"PPPP");return t?.today&&(a=`Today, ${a}`),a}function Hz(e){return"Choose the Month"}function Vz(){return""}const jJ="Go to the Next Month";function Fz(e,t){return jJ}function Bz(e){return"Go to the Previous Month"}function Wz(e,t,o){return(o??new Tt(t)).format(e,"cccc")}function Uz(e,t){return`Week ${e}`}function Rz(e){return"Week Number"}function Gz(e){return"Choose the Year"}const HJ=Object.freeze(Object.defineProperty({__proto__:null,labelCaption:qJ,labelDay:OJ,labelDayButton:gL,labelGrid:vL,labelGridcell:jz,labelMonthDropdown:Hz,labelNav:Vz,labelNext:Fz,labelPrevious:Bz,labelWeekNumber:Uz,labelWeekNumberHeader:Rz,labelWeekday:Wz,labelYearDropdown:Gz},Symbol.toStringTag,{value:"Module"})),to=(e,t,o)=>t||(o?typeof o=="function"?o:(...n)=>o:e);function VJ(e,t){const o=t.locale?.labels??{};return{...HJ,...e??{},labelDayButton:to(gL,e?.labelDayButton,o.labelDayButton),labelMonthDropdown:to(Hz,e?.labelMonthDropdown,o.labelMonthDropdown),labelNext:to(Fz,e?.labelNext,o.labelNext),labelPrevious:to(Bz,e?.labelPrevious,o.labelPrevious),labelWeekNumber:to(Uz,e?.labelWeekNumber,o.labelWeekNumber),labelYearDropdown:to(Gz,e?.labelYearDropdown,o.labelYearDropdown),labelGrid:to(vL,e?.labelGrid,o.labelGrid),labelGridcell:to(jz,e?.labelGridcell,o.labelGridcell),labelNav:to(Vz,e?.labelNav,o.labelNav),labelWeekNumberHeader:to(Rz,e?.labelWeekNumberHeader,o.labelWeekNumberHeader),labelWeekday:to(Wz,e?.labelWeekday,o.labelWeekday)}}function FJ(e,t,o,n,a){const{startOfMonth:r,startOfYear:i,endOfYear:s,eachMonthOfInterval:l,getMonth:u}=a;return l({start:i(e),end:s(e)}).map(f=>{const k=n.formatMonthDropdown(f,a),m=u(f),g=t&&f<r(t)||o&&f>r(o)||!1;return{value:m,label:k,disabled:g}})}function BJ(e,t={},o={}){let n={...t?.[Me.Day]};return Object.entries(e).filter(([,a])=>a===!0).forEach(([a])=>{n={...n,...o?.[a]}}),n}function WJ(e,t,o,n){const a=n??e.today(),r=o?e.startOfBroadcastWeek(a,e):t?e.startOfISOWeek(a):e.startOfWeek(a),i=[];for(let s=0;s<7;s++){const l=e.addDays(r,s);i.push(l)}return i}function UJ(e,t,o,n,a=!1){if(!e||!t)return;const{startOfYear:r,endOfYear:i,eachYearOfInterval:s,getYear:l}=n,u=r(e),y=i(t),h=s({start:u,end:y});return a&&h.reverse(),h.map(f=>{const k=o.formatYearDropdown(f,n);return{value:l(f),label:k,disabled:!1}})}function RJ(e,t={}){const{weekStartsOn:o,locale:n}=t,a=o??n?.options?.weekStartsOn??0,r=s=>{const l=typeof s=="number"||typeof s=="string"?new Date(s):s;return new pt(l.getFullYear(),l.getMonth(),l.getDate(),12,0,0,e)},i=s=>{const l=r(s);return new Date(l.getFullYear(),l.getMonth(),l.getDate(),0,0,0,0)};return{today:()=>r(pt.tz(e)),newDate:(s,l,u)=>new pt(s,l,u,12,0,0,e),startOfDay:s=>r(s),startOfWeek:(s,l)=>{const u=r(s),y=l?.weekStartsOn??a,h=(u.getDay()-y+7)%7;return u.setDate(u.getDate()-h),u},startOfISOWeek:s=>{const l=r(s),u=(l.getDay()-1+7)%7;return l.setDate(l.getDate()-u),l},startOfMonth:s=>{const l=r(s);return l.setDate(1),l},startOfYear:s=>{const l=r(s);return l.setMonth(0,1),l},endOfWeek:(s,l)=>{const u=r(s),f=(((l?.weekStartsOn??a)+6)%7-u.getDay()+7)%7;return u.setDate(u.getDate()+f),u},endOfISOWeek:s=>{const l=r(s),u=(7-l.getDay())%7;return l.setDate(l.getDate()+u),l},endOfMonth:s=>{const l=r(s);return l.setMonth(l.getMonth()+1,0),l},endOfYear:s=>{const l=r(s);return l.setMonth(11,31),l},eachMonthOfInterval:s=>{const l=r(s.start),u=r(s.end),y=[],h=new pt(l.getFullYear(),l.getMonth(),1,12,0,0,e),f=u.getFullYear()*12+u.getMonth();for(;h.getFullYear()*12+h.getMonth()<=f;)y.push(new pt(h,e)),h.setMonth(h.getMonth()+1,1);return y},addDays:(s,l)=>{const u=r(s);return u.setDate(u.getDate()+l),u},addWeeks:(s,l)=>{const u=r(s);return u.setDate(u.getDate()+l*7),u},addMonths:(s,l)=>{const u=r(s);return u.setMonth(u.getMonth()+l),u},addYears:(s,l)=>{const u=r(s);return u.setFullYear(u.getFullYear()+l),u},eachYearOfInterval:s=>{const l=r(s.start),u=r(s.end),y=[],h=new pt(l.getFullYear(),0,1,12,0,0,e);for(;h.getFullYear()<=u.getFullYear();)y.push(new pt(h,e)),h.setFullYear(h.getFullYear()+1,0,1);return y},getWeek:(s,l)=>{const u=i(s);return pL(u,{weekStartsOn:l?.weekStartsOn??a,firstWeekContainsDate:l?.firstWeekContainsDate??n?.options?.firstWeekContainsDate??1})},getISOWeek:s=>{const l=i(s);return hL(l)},differenceInCalendarDays:(s,l)=>{const u=i(s),y=i(l);return lL(u,y)},differenceInCalendarMonths:(s,l)=>{const u=i(s),y=i(l);return _z(u,y)}}}const kd=e=>e instanceof HTMLElement?e:null,_L=e=>[...e.querySelectorAll("[data-animated-month]")??[]],GJ=e=>kd(e.querySelector("[data-animated-month]")),bL=e=>kd(e.querySelector("[data-animated-caption]")),ML=e=>kd(e.querySelector("[data-animated-weeks]")),KJ=e=>kd(e.querySelector("[data-animated-nav]")),YJ=e=>kd(e.querySelector("[data-animated-weekdays]"));function XJ(e,t,{classNames:o,months:n,focused:a,dateLib:r}){const i=w.useRef(null),s=w.useRef(n),l=w.useRef(!1);w.useLayoutEffect(()=>{const u=s.current;if(s.current=n,!t||!e.current||!(e.current instanceof HTMLElement)||n.length===0||u.length===0||n.length!==u.length)return;const y=r.isSameMonth(n[0].date,u[0].date),h=r.isAfter(n[0].date,u[0].date),f=h?o[Dt.caption_after_enter]:o[Dt.caption_before_enter],k=h?o[Dt.weeks_after_enter]:o[Dt.weeks_before_enter],m=i.current,g=e.current.cloneNode(!0);if(g instanceof HTMLElement?(_L(g).forEach(M=>{if(!(M instanceof HTMLElement))return;const x=GJ(M);x&&M.contains(x)&&M.removeChild(x);const N=bL(M);N&&N.classList.remove(f);const C=ML(M);C&&C.classList.remove(k)}),i.current=g):i.current=null,l.current||y||a)return;const _=m instanceof HTMLElement?_L(m):[],v=_L(e.current);if(v?.every(b=>b instanceof HTMLElement)&&_&&_.every(b=>b instanceof HTMLElement)){l.current=!0,e.current.style.isolation="isolate";const b=KJ(e.current);b&&(b.style.zIndex="1"),v.forEach((M,x)=>{const N=_[x];if(!N)return;M.style.position="relative",M.style.overflow="hidden";const C=bL(M);C&&C.classList.add(f);const $=ML(M);$&&$.classList.add(k);const L=()=>{l.current=!1,e.current&&(e.current.style.isolation=""),b&&(b.style.zIndex=""),C&&C.classList.remove(f),$&&$.classList.remove(k),M.style.position="",M.style.overflow="",M.contains(N)&&M.removeChild(N)};N.style.pointerEvents="none",N.style.position="absolute",N.style.overflow="hidden",N.setAttribute("aria-hidden","true");const A=YJ(N);A&&(A.style.opacity="0");const z=bL(N);z&&(z.classList.add(h?o[Dt.caption_before_exit]:o[Dt.caption_after_exit]),z.addEventListener("animationend",L));const E=ML(N);E&&E.classList.add(h?o[Dt.weeks_before_exit]:o[Dt.weeks_after_exit]),M.insertBefore(N,M.firstChild)})}})}function ZJ(e,t,o,n){const a=e[0],r=e[e.length-1],{ISOWeek:i,fixedWeeks:s,broadcastCalendar:l}=o??{},{addDays:u,differenceInCalendarDays:y,differenceInCalendarMonths:h,endOfBroadcastWeek:f,endOfISOWeek:k,endOfMonth:m,endOfWeek:g,isAfter:_,startOfBroadcastWeek:v,startOfISOWeek:b,startOfWeek:M}=n,x=l?v(a,n):i?b(a):M(a),N=l?f(r):i?k(m(r)):g(m(r)),C=t&&(l?f(t):i?k(t):g(t)),$=C&&_(N,C)?C:N,L=y($,x),A=h(r,a)+1,z=[];for(let T=0;T<=L;T++){const W=u(x,T);z.push(W)}const O=(l?35:42)*A;if(s&&z.length<O){const T=O-z.length;for(let W=0;W<T;W++){const R=u(z[z.length-1],1);z.push(R)}}return z}function QJ(e){const t=[];return e.reduce((o,n)=>{const a=n.weeks.reduce((r,i)=>r.concat(i.days.slice()),t.slice());return o.concat(a.slice())},t.slice())}function JJ(e,t,o,n){const{numberOfMonths:a=1}=o,r=[];for(let i=0;i<a;i++){const s=n.addMonths(e,i);if(t&&s>t)break;r.push(s)}return r}function Kz(e,t,o,n){const{month:a,defaultMonth:r,today:i=n.today(),numberOfMonths:s=1}=e;let l=a||r||i;const{differenceInCalendarMonths:u,addMonths:y,startOfMonth:h}=n;if(o&&u(o,l)<s-1){const f=-1*(s-1);l=y(o,f)}return t&&u(l,t)<0&&(l=t),h(l)}function eee(e,t,o,n){const{addDays:a,endOfBroadcastWeek:r,endOfISOWeek:i,endOfMonth:s,endOfWeek:l,getISOWeek:u,getWeek:y,startOfBroadcastWeek:h,startOfISOWeek:f,startOfWeek:k}=n,m=e.reduce((g,_)=>{const v=o.broadcastCalendar?h(_,n):o.ISOWeek?f(_):k(_),b=o.broadcastCalendar?r(_):o.ISOWeek?i(s(_)):l(s(_)),M=t.filter($=>$>=v&&$<=b),x=o.broadcastCalendar?35:42;if(o.fixedWeeks&&M.length<x){const $=t.filter(L=>{const A=x-M.length;return L>b&&L<=a(b,A)});M.push(...$)}const N=M.reduce(($,L)=>{const A=o.ISOWeek?u(L):y(L),z=$.find(O=>O.weekNumber===A),E=new Tz(L,_,n);return z?z.days.push(E):$.push(new ZQ(A,[E])),$},[]),C=new XQ(_,N);return g.push(C),g},[]);return o.reverseMonths?m.reverse():m}function tee(e,t){let{startMonth:o,endMonth:n}=e;const{startOfYear:a,startOfDay:r,startOfMonth:i,endOfMonth:s,addYears:l,endOfYear:u,newDate:y,today:h}=t,{fromYear:f,toYear:k,fromMonth:m,toMonth:g}=e;!o&&m&&(o=m),!o&&f&&(o=t.newDate(f,0,1)),!n&&g&&(n=g),!n&&k&&(n=y(k,11,31));const _=e.captionLayout==="dropdown"||e.captionLayout==="dropdown-years";return o?o=i(o):f?o=y(f,0,1):!o&&_&&(o=a(l(e.today??h(),-100))),n?n=s(n):k?n=y(k,11,31):!n&&_&&(n=u(e.today??h())),[o&&r(o),n&&r(n)]}function oee(e,t,o,n){if(o.disableNavigation)return;const{pagedNavigation:a,numberOfMonths:r=1}=o,{startOfMonth:i,addMonths:s,differenceInCalendarMonths:l}=n,u=a?r:1,y=i(e);if(!t)return s(y,u);if(!(l(t,e)<r))return s(y,u)}function nee(e,t,o,n){if(o.disableNavigation)return;const{pagedNavigation:a,numberOfMonths:r}=o,{startOfMonth:i,addMonths:s,differenceInCalendarMonths:l}=n,u=a?r??1:1,y=i(e);if(!t)return s(y,-u);if(!(l(y,t)<=0))return s(y,-u)}function aee(e){const t=[];return e.reduce((o,n)=>o.concat(n.weeks.slice()),t.slice())}function WC(e,t){const[o,n]=w.useState(e);return[t===void 0?o:t,n]}function ree(e,t){const[o,n]=tee(e,t),{startOfMonth:a,endOfMonth:r}=t,i=Kz(e,o,n,t),[s,l]=WC(i,e.month?i:void 0);w.useEffect(()=>{const x=Kz(e,o,n,t);l(x)},[e.timeZone]);const{months:u,weeks:y,days:h,previousMonth:f,nextMonth:k}=w.useMemo(()=>{const x=JJ(s,n,{numberOfMonths:e.numberOfMonths},t),N=ZJ(x,e.endMonth?r(e.endMonth):void 0,{ISOWeek:e.ISOWeek,fixedWeeks:e.fixedWeeks,broadcastCalendar:e.broadcastCalendar},t),C=eee(x,N,{broadcastCalendar:e.broadcastCalendar,fixedWeeks:e.fixedWeeks,ISOWeek:e.ISOWeek,reverseMonths:e.reverseMonths},t),$=aee(C),L=QJ(C),A=nee(s,o,e,t),z=oee(s,n,e,t);return{months:C,weeks:$,days:L,previousMonth:A,nextMonth:z}},[t,s.getTime(),n?.getTime(),o?.getTime(),e.disableNavigation,e.broadcastCalendar,e.endMonth?.getTime(),e.fixedWeeks,e.ISOWeek,e.numberOfMonths,e.pagedNavigation,e.reverseMonths]),{disableNavigation:m,onMonthChange:g}=e,_=x=>y.some(N=>N.days.some(C=>C.isEqualTo(x))),v=x=>{if(m)return;let N=a(x);o&&N<a(o)&&(N=a(o)),n&&N>a(n)&&(N=a(n)),l(N),g?.(N)};return{months:u,weeks:y,days:h,navStart:o,navEnd:n,previousMonth:f,nextMonth:k,goToMonth:v,goToDay:x=>{_(x)||v(x.date)}}}var No;(function(e){e[e.Today=0]="Today",e[e.Selected=1]="Selected",e[e.LastFocused=2]="LastFocused",e[e.FocusedModifier=3]="FocusedModifier"})(No||(No={}));function Yz(e){return!e[Je.disabled]&&!e[Je.hidden]&&!e[Je.outside]}function iee(e,t,o,n){let a,r=-1;for(const i of e){const s=t(i);Yz(s)&&(s[Je.focused]&&r<No.FocusedModifier?(a=i,r=No.FocusedModifier):n?.isEqualTo(i)&&r<No.LastFocused?(a=i,r=No.LastFocused):o(i.date)&&r<No.Selected?(a=i,r=No.Selected):s[Je.today]&&r<No.Today&&(a=i,r=No.Today))}return a||(a=e.find(i=>Yz(t(i)))),a}function cee(e,t,o,n,a,r,i){const{ISOWeek:s,broadcastCalendar:l}=r,{addDays:u,addMonths:y,addWeeks:h,addYears:f,endOfBroadcastWeek:k,endOfISOWeek:m,endOfWeek:g,max:_,min:v,startOfBroadcastWeek:b,startOfISOWeek:M,startOfWeek:x}=i;let C={day:u,week:h,month:y,year:f,startOfWeek:$=>l?b($,i):s?M($):x($),endOfWeek:$=>l?k($):s?m($):g($)}[e](o,t==="after"?1:-1);return t==="before"&&n?C=_([n,C]):t==="after"&&a&&(C=v([a,C])),C}function Xz(e,t,o,n,a,r,i,s=0){if(s>365)return;const l=cee(e,t,o.date,n,a,r,i),u=!!(r.disabled&&Uo(l,r.disabled,i)),y=!!(r.hidden&&Uo(l,r.hidden,i)),h=l,f=new Tz(l,h,i);return!u&&!y?f:Xz(e,t,f,n,a,r,i,s+1)}function see(e,t,o,n,a){const{autoFocus:r}=e,[i,s]=w.useState(),l=iee(t.days,o,n||(()=>!1),i),[u,y]=w.useState(r?l:void 0);return{isFocusTarget:g=>!!l?.isEqualTo(g),setFocused:y,focused:u,blur:()=>{s(u),y(void 0)},moveFocus:(g,_)=>{if(!u)return;const v=Xz(g,_,u,t.navStart,t.navEnd,e,a);v&&(e.disableNavigation&&!t.days.some(M=>M.isEqualTo(v))||(t.goToDay(v),y(v)))}}}function dee(e,t){const{selected:o,required:n,onSelect:a}=e,[r,i]=WC(o,a?o:void 0),s=a?o:r,{isSameDay:l}=t,u=k=>s?.some(m=>l(m,k))??!1,{min:y,max:h}=e;return{selected:s,select:(k,m,g)=>{let _=[...s??[]];if(u(k)){if(s?.length===y||n&&s?.length===1)return;_=s?.filter(v=>!l(v,k))}else s?.length===h?_=[k]:_=[..._,k];return a||i(_),a?.(_,k,m,g),_},isSelected:u}}function lee(e,t,o=0,n=0,a=!1,r=xo){const{from:i,to:s}=t||{},{isSameDay:l,isAfter:u,isBefore:y}=r;let h;if(!i&&!s)h={from:e,to:o>0?void 0:e};else if(i&&!s)l(i,e)?o===0?h={from:i,to:e}:a?h={from:i,to:void 0}:h=void 0:y(e,i)?h={from:e,to:i}:h={from:i,to:e};else if(i&&s)if(l(i,e)&&l(s,e))a?h={from:i,to:s}:h=void 0;else if(l(i,e))h={from:i,to:o>0?void 0:e};else if(l(s,e))h={from:e,to:o>0?void 0:e};else if(y(e,i))h={from:e,to:s};else if(u(e,i))h={from:i,to:e};else if(u(e,s))h={from:i,to:e};else throw new Error("Invalid range");if(h?.from&&h?.to){const f=r.differenceInCalendarDays(h.to,h.from);n>0&&f>n?h={from:e,to:void 0}:o>1&&f<o&&(h={from:e,to:void 0})}return h}function uee(e,t,o=xo){const n=Array.isArray(t)?t:[t];let a=e.from;const r=o.differenceInCalendarDays(e.to,e.from),i=Math.min(r,6);for(let s=0;s<=i;s++){if(n.includes(a.getDay()))return!0;a=o.addDays(a,1)}return!1}function Zz(e,t,o=xo){return Wo(e,t.from,!1,o)||Wo(e,t.to,!1,o)||Wo(t,e.from,!1,o)||Wo(t,e.to,!1,o)}function hee(e,t,o=xo){const n=Array.isArray(t)?t:[t];if(n.filter(s=>typeof s!="function").some(s=>typeof s=="boolean"?s:o.isDate(s)?Wo(e,s,!1,o):zz(s,o)?s.some(l=>Wo(e,l,!1,o)):BC(s)?s.from&&s.to?Zz(e,{from:s.from,to:s.to},o):!1:Ez(s)?uee(e,s.dayOfWeek,o):yL(s)?o.isAfter(s.before,s.after)?Zz(e,{from:o.addDays(s.after,1),to:o.addDays(s.before,-1)},o):Uo(e.from,s,o)||Uo(e.to,s,o):fL(s)||mL(s)?Uo(e.from,s,o)||Uo(e.to,s,o):!1))return!0;const i=n.filter(s=>typeof s=="function");if(i.length){let s=e.from;const l=o.differenceInCalendarDays(e.to,e.from);for(let u=0;u<=l;u++){if(i.some(y=>y(s)))return!0;s=o.addDays(s,1)}}return!1}function pee(e,t){const{disabled:o,excludeDisabled:n,selected:a,required:r,onSelect:i}=e,[s,l]=WC(a,i?a:void 0),u=i?a:s;return{selected:u,select:(f,k,m)=>{const{min:g,max:_}=e,v=f?lee(f,u,g,_,r,t):void 0;return n&&o&&v?.from&&v.to&&hee({from:v.from,to:v.to},o,t)&&(v.from=f,v.to=void 0),i||l(v),i?.(v,f,k,m),v},isSelected:f=>u&&Wo(u,f,!1,t)}}function yee(e,t){const{selected:o,required:n,onSelect:a}=e,[r,i]=WC(o,a?o:void 0),s=a?o:r,{isSameDay:l}=t;return{selected:s,select:(h,f,k)=>{let m=h;return!n&&s&&s&&l(h,s)&&(m=void 0),a||i(m),a?.(m,h,f,k),m},isSelected:h=>s?l(s,h):!1}}function fee(e,t){const o=yee(e,t),n=dee(e,t),a=pee(e,t);switch(e.mode){case"single":return o;case"multiple":return n;case"range":return a;default:return}}function Ft(e,t){return e instanceof pt&&e.timeZone===t?e:new pt(e,t)}function ys(e,t,o){return Ft(e,t)}function Qz(e,t,o){return typeof e=="boolean"||typeof e=="function"?e:e instanceof Date?ys(e,t):Array.isArray(e)?e.map(n=>n instanceof Date?ys(n,t):n):BC(e)?{...e,from:e.from?Ft(e.from,t):e.from,to:e.to?Ft(e.to,t):e.to}:yL(e)?{before:ys(e.before,t),after:ys(e.after,t)}:fL(e)?{after:ys(e.after,t)}:mL(e)?{before:ys(e.before,t)}:e}function wL(e,t,o){return e&&(Array.isArray(e)?e.map(n=>Qz(n,t)):Qz(e,t))}function mee(e){let t=e;const o=t.timeZone;if(o&&(t={...e,timeZone:o},t.today&&(t.today=Ft(t.today,o)),t.month&&(t.month=Ft(t.month,o)),t.defaultMonth&&(t.defaultMonth=Ft(t.defaultMonth,o)),t.startMonth&&(t.startMonth=Ft(t.startMonth,o)),t.endMonth&&(t.endMonth=Ft(t.endMonth,o)),t.mode==="single"&&t.selected?t.selected=Ft(t.selected,o):t.mode==="multiple"&&t.selected?t.selected=t.selected?.map(oe=>Ft(oe,o)):t.mode==="range"&&t.selected&&(t.selected={from:t.selected.from?Ft(t.selected.from,o):t.selected.from,to:t.selected.to?Ft(t.selected.to,o):t.selected.to}),t.disabled!==void 0&&(t.disabled=wL(t.disabled,o)),t.hidden!==void 0&&(t.hidden=wL(t.hidden,o)),t.modifiers)){const oe={};Object.keys(t.modifiers).forEach(ve=>{oe[ve]=wL(t.modifiers?.[ve],o)}),t.modifiers=oe}const{components:n,formatters:a,labels:r,dateLib:i,locale:s,classNames:l}=w.useMemo(()=>{const oe={...Pz,...t.locale},ve=t.broadcastCalendar?1:t.weekStartsOn,he=t.noonSafe&&t.timeZone?RJ(t.timeZone,{weekStartsOn:ve,locale:oe}):void 0,me=t.dateLib&&he?{...he,...t.dateLib}:t.dateLib??he,Le=new Tt({locale:oe,weekStartsOn:ve,firstWeekContainsDate:t.firstWeekContainsDate,useAdditionalWeekYearTokens:t.useAdditionalWeekYearTokens,useAdditionalDayOfYearTokens:t.useAdditionalDayOfYearTokens,timeZone:t.timeZone,numerals:t.numerals},me);return{dateLib:Le,components:$J(t.components),formatters:zJ(t.formatters),labels:VJ(t.labels,Le.options),locale:oe,classNames:{...kL(),...t.classNames}}},[t.locale,t.broadcastCalendar,t.weekStartsOn,t.firstWeekContainsDate,t.useAdditionalWeekYearTokens,t.useAdditionalDayOfYearTokens,t.timeZone,t.numerals,t.dateLib,t.noonSafe,t.components,t.formatters,t.labels,t.classNames]);t.today||(t={...t,today:i.today()});const{captionLayout:u,mode:y,navLayout:h,numberOfMonths:f=1,onDayBlur:k,onDayClick:m,onDayFocus:g,onDayKeyDown:_,onDayMouseEnter:v,onDayMouseLeave:b,onNextClick:M,onPrevClick:x,showWeekNumber:N,styles:C}=t,{formatCaption:$,formatDay:L,formatMonthDropdown:A,formatWeekNumber:z,formatWeekNumberHeader:E,formatWeekdayName:O,formatYearDropdown:T}=a,W=ree(t,i),{days:R,months:H,navStart:Y,navEnd:j,previousMonth:U,nextMonth:ce,goToMonth:le}=W,B=NJ(R,t,Y,j,i),{isSelected:F,select:K,selected:G}=fee(t,i)??{},{blur:ie,focused:V,isFocusTarget:te,moveFocus:fe,setFocused:pe}=see(t,W,B,F??(()=>!1),i),{labelDayButton:de,labelGridcell:ee,labelGrid:_e,labelMonthDropdown:q,labelNav:ue,labelPrevious:xe,labelNext:Ce,labelWeekday:De,labelWeekNumber:$e,labelWeekNumberHeader:Pe,labelYearDropdown:P}=r,I=w.useMemo(()=>WJ(i,t.ISOWeek,t.broadcastCalendar,t.today),[i,t.ISOWeek,t.broadcastCalendar,t.today]),D=y!==void 0||m!==void 0,Q=w.useCallback(()=>{U&&(le(U),x?.(U))},[U,le,x]),Z=w.useCallback(()=>{ce&&(le(ce),M?.(ce))},[le,ce,M]),J=w.useCallback((oe,ve)=>he=>{he.preventDefault(),he.stopPropagation(),pe(oe),!ve.disabled&&(K?.(oe.date,ve,he),m?.(oe.date,ve,he))},[K,m,pe]),ne=w.useCallback((oe,ve)=>he=>{pe(oe),g?.(oe.date,ve,he)},[g,pe]),Ne=w.useCallback((oe,ve)=>he=>{ie(),k?.(oe.date,ve,he)},[ie,k]),Se=w.useCallback((oe,ve)=>he=>{const me={ArrowLeft:[he.shiftKey?"month":"day",t.dir==="rtl"?"after":"before"],ArrowRight:[he.shiftKey?"month":"day",t.dir==="rtl"?"before":"after"],ArrowDown:[he.shiftKey?"year":"week","after"],ArrowUp:[he.shiftKey?"year":"week","before"],PageUp:[he.shiftKey?"year":"month","before"],PageDown:[he.shiftKey?"year":"month","after"],Home:["startOfWeek","before"],End:["endOfWeek","after"]};if(me[he.key]){he.preventDefault(),he.stopPropagation();const[Le,re]=me[he.key];fe(Le,re)}_?.(oe.date,ve,he)},[fe,_,t.dir]),Te=w.useCallback((oe,ve)=>he=>{v?.(oe.date,ve,he)},[v]),dt=w.useCallback((oe,ve)=>he=>{b?.(oe.date,ve,he)},[b]),Ve=w.useCallback(oe=>ve=>{const he=Number(ve.target.value),me=i.setMonth(i.startOfMonth(oe),he);le(me)},[i,le]),nt=w.useCallback(oe=>ve=>{const he=Number(ve.target.value),me=i.setYear(i.startOfMonth(oe),he);le(me)},[i,le]),{className:wt,style:St}=w.useMemo(()=>({className:[l[Me.Root],t.className].filter(Boolean).join(" "),style:{...C?.[Me.Root],...t.style}}),[l,t.className,t.style,C]),zo=SJ(t),lo=w.useRef(null);XJ(lo,!!t.animate,{classNames:l,months:H,focused:V,dateLib:i});const uo={dayPickerProps:t,selected:G,select:K,isSelected:F,months:H,nextMonth:ce,previousMonth:U,goToMonth:le,getModifiers:B,components:n,classNames:l,styles:C,labels:r,formatters:a};return w.createElement(Dz.Provider,{value:uo},w.createElement(n.Root,{rootRef:t.animate?lo:void 0,className:wt,style:St,dir:t.dir,id:t.id,lang:t.lang,nonce:t.nonce,title:t.title,role:t.role,"aria-label":t["aria-label"],"aria-labelledby":t["aria-labelledby"],...zo},w.createElement(n.Months,{className:l[Me.Months],style:C?.[Me.Months]},!t.hideNavigation&&!h&&w.createElement(n.Nav,{"data-animated-nav":t.animate?"true":void 0,className:l[Me.Nav],style:C?.[Me.Nav],"aria-label":ue(),onPreviousClick:Q,onNextClick:Z,previousMonth:U,nextMonth:ce}),H.map((oe,ve)=>w.createElement(n.Month,{"data-animated-month":t.animate?"true":void 0,className:l[Me.Month],style:C?.[Me.Month],key:ve,displayIndex:ve,calendarMonth:oe},h==="around"&&!t.hideNavigation&&ve===0&&w.createElement(n.PreviousMonthButton,{type:"button",className:l[Me.PreviousMonthButton],tabIndex:U?void 0:-1,"aria-disabled":U?void 0:!0,"aria-label":xe(U),onClick:Q,"data-animated-button":t.animate?"true":void 0},w.createElement(n.Chevron,{disabled:U?void 0:!0,className:l[Me.Chevron],orientation:t.dir==="rtl"?"right":"left"})),w.createElement(n.MonthCaption,{"data-animated-caption":t.animate?"true":void 0,className:l[Me.MonthCaption],style:C?.[Me.MonthCaption],calendarMonth:oe,displayIndex:ve},u?.startsWith("dropdown")?w.createElement(n.DropdownNav,{className:l[Me.Dropdowns],style:C?.[Me.Dropdowns]},(()=>{const he=u==="dropdown"||u==="dropdown-months"?w.createElement(n.MonthsDropdown,{key:"month",className:l[Me.MonthsDropdown],"aria-label":q(),classNames:l,components:n,disabled:!!t.disableNavigation,onChange:Ve(oe.date),options:FJ(oe.date,Y,j,a,i),style:C?.[Me.Dropdown],value:i.getMonth(oe.date)}):w.createElement("span",{key:"month"},A(oe.date,i)),me=u==="dropdown"||u==="dropdown-years"?w.createElement(n.YearsDropdown,{key:"year",className:l[Me.YearsDropdown],"aria-label":P(i.options),classNames:l,components:n,disabled:!!t.disableNavigation,onChange:nt(oe.date),options:UJ(Y,j,a,i,!!t.reverseYears),style:C?.[Me.Dropdown],value:i.getYear(oe.date)}):w.createElement("span",{key:"year"},T(oe.date,i));return i.getMonthYearOrder()==="year-first"?[me,he]:[he,me]})(),w.createElement("span",{role:"status","aria-live":"polite",style:{border:0,clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",width:"1px",whiteSpace:"nowrap",wordWrap:"normal"}},$(oe.date,i.options,i))):w.createElement(n.CaptionLabel,{className:l[Me.CaptionLabel],role:"status","aria-live":"polite"},$(oe.date,i.options,i))),h==="around"&&!t.hideNavigation&&ve===f-1&&w.createElement(n.NextMonthButton,{type:"button",className:l[Me.NextMonthButton],tabIndex:ce?void 0:-1,"aria-disabled":ce?void 0:!0,"aria-label":Ce(ce),onClick:Z,"data-animated-button":t.animate?"true":void 0},w.createElement(n.Chevron,{disabled:ce?void 0:!0,className:l[Me.Chevron],orientation:t.dir==="rtl"?"left":"right"})),ve===f-1&&h==="after"&&!t.hideNavigation&&w.createElement(n.Nav,{"data-animated-nav":t.animate?"true":void 0,className:l[Me.Nav],style:C?.[Me.Nav],"aria-label":ue(),onPreviousClick:Q,onNextClick:Z,previousMonth:U,nextMonth:ce}),w.createElement(n.MonthGrid,{role:"grid","aria-multiselectable":y==="multiple"||y==="range","aria-label":_e(oe.date,i.options,i)||void 0,className:l[Me.MonthGrid],style:C?.[Me.MonthGrid]},!t.hideWeekdays&&w.createElement(n.Weekdays,{"data-animated-weekdays":t.animate?"true":void 0,className:l[Me.Weekdays],style:C?.[Me.Weekdays]},N&&w.createElement(n.WeekNumberHeader,{"aria-label":Pe(i.options),className:l[Me.WeekNumberHeader],style:C?.[Me.WeekNumberHeader],scope:"col"},E()),I.map(he=>w.createElement(n.Weekday,{"aria-label":De(he,i.options,i),className:l[Me.Weekday],key:String(he),style:C?.[Me.Weekday],scope:"col"},O(he,i.options,i)))),w.createElement(n.Weeks,{"data-animated-weeks":t.animate?"true":void 0,className:l[Me.Weeks],style:C?.[Me.Weeks]},oe.weeks.map(he=>w.createElement(n.Week,{className:l[Me.Week],key:he.weekNumber,style:C?.[Me.Week],week:he},N&&w.createElement(n.WeekNumber,{week:he,style:C?.[Me.WeekNumber],"aria-label":$e(he.weekNumber,{locale:s}),className:l[Me.WeekNumber],scope:"row",role:"rowheader"},z(he.weekNumber,i)),he.days.map(me=>{const{date:Le}=me,re=B(me);if(re[Je.focused]=!re.hidden&&!!V?.isEqualTo(me),re[eo.selected]=F?.(Le)||re.selected,BC(G)){const{from:kt,to:qe}=G;re[eo.range_start]=!!(kt&&qe&&i.isSameDay(Le,kt)),re[eo.range_end]=!!(kt&&qe&&i.isSameDay(Le,qe)),re[eo.range_middle]=Wo(G,Le,!0,i)}const Ae=BJ(re,C,t.modifiersStyles),Oe=CJ(re,l,t.modifiersClassNames),Fe=!D&&!re.hidden?ee(Le,re,i.options,i):void 0;return w.createElement(n.Day,{key:`${me.isoDate}_${me.displayMonthId}`,day:me,modifiers:re,className:Oe.join(" "),style:Ae,role:"gridcell","aria-selected":re.selected||void 0,"aria-label":Fe,"data-day":me.isoDate,"data-month":me.outside?me.dateMonthId:void 0,"data-selected":re.selected||void 0,"data-disabled":re.disabled||void 0,"data-hidden":re.hidden||void 0,"data-outside":me.outside||void 0,"data-focused":re.focused||void 0,"data-today":re.today||void 0},!re.hidden&&D?w.createElement(n.DayButton,{className:l[Me.DayButton],style:C?.[Me.DayButton],type:"button",day:me,modifiers:re,disabled:!re.focused&&re.disabled||void 0,"aria-disabled":re.focused&&re.disabled||void 0,tabIndex:te(me)?0:-1,"aria-label":de(Le,re,i.options,i),onClick:J(me,re),onBlur:Ne(me,re),onFocus:ne(me,re),onKeyDown:Se(me,re),onMouseEnter:Te(me,re),onMouseLeave:dt(me,re)},L(Le,i.options,i)):!re.hidden&&L(me.date,i.options,i))})))))))),t.footer&&w.createElement(n.Footer,{className:l[Me.Footer],style:C?.[Me.Footer],role:"status","aria-live":"polite"},t.footer)))}function Jz({className:e,classNames:t,showOutsideDays:o=!0,captionLayout:n="label",buttonVariant:a="ghost",formatters:r,components:i,...s}){const l=kL();return d.jsx(mee,{showOutsideDays:o,className:S("bg-background group/calendar p-3 [--cell-size:2rem] [[data-slot=card-content]_&]:bg-transparent [[data-slot=popover-content]_&]:bg-transparent",String.raw`rtl:**:[.rdp-button\_next>svg]:rotate-180`,String.raw`rtl:**:[.rdp-button\_previous>svg]:rotate-180`,e),captionLayout:n,formatters:{formatMonthDropdown:u=>u.toLocaleString("default",{month:"short"}),...r},classNames:{root:S("w-fit",l.root),months:S("relative flex flex-col gap-4 md:flex-row",l.months),month:S("flex w-full flex-col gap-4",l.month),nav:S("absolute inset-x-0 top-0 flex w-full items-center justify-between gap-1",l.nav),button_previous:S(ss({variant:a}),"h-[--cell-size] w-[--cell-size] select-none p-0 aria-disabled:opacity-50",l.button_previous),button_next:S(ss({variant:a}),"h-[--cell-size] w-[--cell-size] select-none p-0 aria-disabled:opacity-50",l.button_next),month_caption:S("flex h-[--cell-size] w-full items-center justify-center px-[--cell-size]",l.month_caption),dropdowns:S("flex h-[--cell-size] w-full items-center justify-center gap-1.5 text-sm font-medium",l.dropdowns),dropdown_root:S("has-focus:border-ring border-input shadow-xs has-focus:ring-ring/50 has-focus:ring-[3px] relative rounded-md border",l.dropdown_root),dropdown:S("bg-popover absolute inset-0 opacity-0",l.dropdown),caption_label:S("select-none font-medium",n==="label"?"text-sm":"[&>svg]:text-muted-foreground flex h-8 items-center gap-1 rounded-md pl-2 pr-1 text-sm [&>svg]:size-3.5",l.caption_label),table:"w-full border-collapse",weekdays:S("flex",l.weekdays),weekday:S("text-muted-foreground flex-1 select-none rounded-md text-[0.8rem] font-normal",l.weekday),week:S("mt-2 flex w-full",l.week),week_number_header:S("w-[--cell-size] select-none",l.week_number_header),week_number:S("text-muted-foreground select-none text-[0.8rem]",l.week_number),day:S("group/day relative aspect-square h-full w-full select-none p-0 text-center [&:first-child[data-selected=true]_button]:rounded-l-md [&:last-child[data-selected=true]_button]:rounded-r-md",l.day),range_start:S("bg-accent rounded-l-md",l.range_start),range_middle:S("rounded-none",l.range_middle),range_end:S("bg-accent rounded-r-md",l.range_end),today:S("bg-accent text-accent-foreground rounded-md data-[selected=true]:rounded-none",l.today),outside:S("text-muted-foreground aria-selected:text-muted-foreground",l.outside),disabled:S("text-muted-foreground opacity-50",l.disabled),hidden:S("invisible",l.hidden),...t},components:{Root:({className:u,rootRef:y,...h})=>d.jsx("div",{"data-slot":"calendar",ref:y,className:S(u),...h}),Chevron:({className:u,orientation:y,...h})=>y==="left"?d.jsx(Qn,{className:S("size-4",u),...h}):y==="right"?d.jsx(Pt,{className:S("size-4",u),...h}):d.jsx(Ht,{className:S("size-4",u),...h}),DayButton:kee,WeekNumber:({children:u,...y})=>d.jsx("td",{...y,children:d.jsx("div",{className:"flex size-[--cell-size] items-center justify-center text-center",children:u})}),...i},...s})}function kee({className:e,day:t,modifiers:o,...n}){const a=kL(),r=p.useRef(null);return p.useEffect(()=>{o.focused&&r.current?.focus()},[o.focused]),d.jsx(je,{ref:r,variant:"ghost",size:"icon","data-day":t.date.toLocaleDateString(),"data-selected-single":o.selected&&!o.range_start&&!o.range_end&&!o.range_middle,"data-range-start":o.range_start,"data-range-end":o.range_end,"data-range-middle":o.range_middle,className:S("data-[selected-single=true]:bg-primary data-[selected-single=true]:text-primary-foreground data-[range-middle=true]:bg-accent data-[range-middle=true]:text-accent-foreground data-[range-start=true]:bg-primary data-[range-start=true]:text-primary-foreground data-[range-end=true]:bg-primary data-[range-end=true]:text-primary-foreground group-data-[focused=true]/day:border-ring group-data-[focused=true]/day:ring-ring/50 flex aspect-square h-auto w-full min-w-[--cell-size] flex-col gap-1 font-normal leading-none data-[range-end=true]:rounded-md data-[range-middle=true]:rounded-none data-[range-start=true]:rounded-md group-data-[focused=true]/day:relative group-data-[focused=true]/day:z-10 group-data-[focused=true]/day:ring-[3px] [&>span]:text-xs [&>span]:opacity-70",a.day,e),...n})}const gd=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("rounded-lg border bg-card text-card-foreground shadow-sm",e),...t}));gd.displayName="Card";const vd=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("flex flex-col space-y-1.5 p-6",e),...t}));vd.displayName="CardHeader";const _d=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("text-2xl font-semibold leading-none tracking-tight",e),...t}));_d.displayName="CardTitle";const eO=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("text-sm text-muted-foreground",e),...t}));eO.displayName="CardDescription";const bd=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("p-6 pt-0",e),...t}));bd.displayName="CardContent";const tO=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("flex items-center p-6 pt-0",e),...t}));tO.displayName="CardFooter";function gee(e){return Object.prototype.toString.call(e)==="[object Object]"}function oO(e){return gee(e)||Array.isArray(e)}function vee(){return!!(typeof window<"u"&&window.document&&window.document.createElement)}function xL(e,t){const o=Object.keys(e),n=Object.keys(t);if(o.length!==n.length)return!1;const a=JSON.stringify(Object.keys(e.breakpoints||{})),r=JSON.stringify(Object.keys(t.breakpoints||{}));return a!==r?!1:o.every(i=>{const s=e[i],l=t[i];return typeof s=="function"?`${s}`==`${l}`:!oO(s)||!oO(l)?s===l:xL(s,l)})}function nO(e){return e.concat().sort((t,o)=>t.name>o.name?1:-1).map(t=>t.options)}function _ee(e,t){if(e.length!==t.length)return!1;const o=nO(e),n=nO(t);return o.every((a,r)=>{const i=n[r];return xL(a,i)})}function NL(e){return typeof e=="number"}function CL(e){return typeof e=="string"}function UC(e){return typeof e=="boolean"}function aO(e){return Object.prototype.toString.call(e)==="[object Object]"}function et(e){return Math.abs(e)}function $L(e){return Math.sign(e)}function Md(e,t){return et(e-t)}function bee(e,t){if(e===0||t===0||et(e)<=et(t))return 0;const o=Md(et(e),et(t));return et(o/e)}function Mee(e){return Math.round(e*100)/100}function wd(e){return Nd(e).map(Number)}function oo(e){return e[xd(e)]}function xd(e){return Math.max(0,e.length-1)}function SL(e,t){return t===xd(e)}function rO(e,t=0){return Array.from(Array(e),(o,n)=>t+n)}function Nd(e){return Object.keys(e)}function iO(e,t){return[e,t].reduce((o,n)=>(Nd(n).forEach(a=>{const r=o[a],i=n[a],s=aO(r)&&aO(i);o[a]=s?iO(r,i):i}),o),{})}function LL(e,t){return typeof t.MouseEvent<"u"&&e instanceof t.MouseEvent}function wee(e,t){const o={start:n,center:a,end:r};function n(){return 0}function a(l){return r(l)/2}function r(l){return t-l}function i(l,u){return CL(e)?o[e](l):e(t,l,u)}return{measure:i}}function Cd(){let e=[];function t(a,r,i,s={passive:!0}){let l;if("addEventListener"in a)a.addEventListener(r,i,s),l=()=>a.removeEventListener(r,i,s);else{const u=a;u.addListener(i),l=()=>u.removeListener(i)}return e.push(l),n}function o(){e=e.filter(a=>a())}const n={add:t,clear:o};return n}function xee(e,t,o,n){const a=Cd(),r=1e3/60;let i=null,s=0,l=0;function u(){a.add(e,"visibilitychange",()=>{e.hidden&&m()})}function y(){k(),a.clear()}function h(_){if(!l)return;i||(i=_,o(),o());const v=_-i;for(i=_,s+=v;s>=r;)o(),s-=r;const b=s/r;n(b),l&&(l=t.requestAnimationFrame(h))}function f(){l||(l=t.requestAnimationFrame(h))}function k(){t.cancelAnimationFrame(l),i=null,s=0,l=0}function m(){i=null,s=0}return{init:u,destroy:y,start:f,stop:k,update:o,render:n}}function Nee(e,t){const o=t==="rtl",n=e==="y",a=n?"y":"x",r=n?"x":"y",i=!n&&o?-1:1,s=y(),l=h();function u(m){const{height:g,width:_}=m;return n?g:_}function y(){return n?"top":o?"right":"left"}function h(){return n?"bottom":o?"left":"right"}function f(m){return m*i}return{scroll:a,cross:r,startEdge:s,endEdge:l,measureSize:u,direction:f}}function Ic(e=0,t=0){const o=et(e-t);function n(u){return u<e}function a(u){return u>t}function r(u){return n(u)||a(u)}function i(u){return r(u)?n(u)?e:t:u}function s(u){return o?u-o*Math.ceil((u-t)/o):u}return{length:o,max:t,min:e,constrain:i,reachedAny:r,reachedMax:a,reachedMin:n,removeOffset:s}}function cO(e,t,o){const{constrain:n}=Ic(0,e),a=e+1;let r=i(t);function i(f){return o?et((a+f)%a):n(f)}function s(){return r}function l(f){return r=i(f),h}function u(f){return y().set(s()+f)}function y(){return cO(e,s(),o)}const h={get:s,set:l,add:u,clone:y};return h}function Cee(e,t,o,n,a,r,i,s,l,u,y,h,f,k,m,g,_,v,b){const{cross:M,direction:x}=e,N=["INPUT","SELECT","TEXTAREA"],C={passive:!1},$=Cd(),L=Cd(),A=Ic(50,225).constrain(k.measure(20)),z={mouse:300,touch:400},E={mouse:500,touch:600},O=m?43:25;let T=!1,W=0,R=0,H=!1,Y=!1,j=!1,U=!1;function ce(ee){if(!b)return;function _e(ue){(UC(b)||b(ee,ue))&&ie(ue)}const q=t;$.add(q,"dragstart",ue=>ue.preventDefault(),C).add(q,"touchmove",()=>{},C).add(q,"touchend",()=>{}).add(q,"touchstart",_e).add(q,"mousedown",_e).add(q,"touchcancel",te).add(q,"contextmenu",te).add(q,"click",fe,!0)}function le(){$.clear(),L.clear()}function B(){const ee=U?o:t;L.add(ee,"touchmove",V,C).add(ee,"touchend",te).add(ee,"mousemove",V,C).add(ee,"mouseup",te)}function F(ee){const _e=ee.nodeName||"";return N.includes(_e)}function K(){return(m?E:z)[U?"mouse":"touch"]}function G(ee,_e){const q=h.add($L(ee)*-1),ue=y.byDistance(ee,!m).distance;return m||et(ee)<A?ue:_&&_e?ue*.5:y.byIndex(q.get(),0).distance}function ie(ee){const _e=LL(ee,n);U=_e,j=m&&_e&&!ee.buttons&&T,T=Md(a.get(),i.get())>=2,!(_e&&ee.button!==0)&&(F(ee.target)||(H=!0,r.pointerDown(ee),u.useFriction(0).useDuration(0),a.set(i),B(),W=r.readPoint(ee),R=r.readPoint(ee,M),f.emit("pointerDown")))}function V(ee){if(!LL(ee,n)&&ee.touches.length>=2)return te(ee);const q=r.readPoint(ee),ue=r.readPoint(ee,M),xe=Md(q,W),Ce=Md(ue,R);if(!Y&&!U&&(!ee.cancelable||(Y=xe>Ce,!Y)))return te(ee);const De=r.pointerMove(ee);xe>g&&(j=!0),u.useFriction(.3).useDuration(.75),s.start(),a.add(x(De)),ee.preventDefault()}function te(ee){const q=y.byDistance(0,!1).index!==h.get(),ue=r.pointerUp(ee)*K(),xe=G(x(ue),q),Ce=bee(ue,xe),De=O-10*Ce,$e=v+Ce/50;Y=!1,H=!1,L.clear(),u.useDuration(De).useFriction($e),l.distance(xe,!m),U=!1,f.emit("pointerUp")}function fe(ee){j&&(ee.stopPropagation(),ee.preventDefault(),j=!1)}function pe(){return H}return{init:ce,destroy:le,pointerDown:pe}}function $ee(e,t){let n,a;function r(h){return h.timeStamp}function i(h,f){const m=`client${(f||e.scroll)==="x"?"X":"Y"}`;return(LL(h,t)?h:h.touches[0])[m]}function s(h){return n=h,a=h,i(h)}function l(h){const f=i(h)-i(a),k=r(h)-r(n)>170;return a=h,k&&(n=h),f}function u(h){if(!n||!a)return 0;const f=i(a)-i(n),k=r(h)-r(n),m=r(h)-r(a)>170,g=f/k;return k&&!m&&et(g)>.1?g:0}return{pointerDown:s,pointerMove:l,pointerUp:u,readPoint:i}}function See(){function e(o){const{offsetTop:n,offsetLeft:a,offsetWidth:r,offsetHeight:i}=o;return{top:n,right:a+r,bottom:n+i,left:a,width:r,height:i}}return{measure:e}}function Lee(e){function t(n){return e*(n/100)}return{measure:t}}function Iee(e,t,o,n,a,r,i){const s=[e].concat(n);let l,u,y=[],h=!1;function f(_){return a.measureSize(i.measure(_))}function k(_){if(!r)return;u=f(e),y=n.map(f);function v(b){for(const M of b){if(h)return;const x=M.target===e,N=n.indexOf(M.target),C=x?u:y[N],$=f(x?e:n[N]);if(et($-C)>=.5){_.reInit(),t.emit("resize");break}}}l=new ResizeObserver(b=>{(UC(r)||r(_,b))&&v(b)}),o.requestAnimationFrame(()=>{s.forEach(b=>l.observe(b))})}function m(){h=!0,l&&l.disconnect()}return{init:k,destroy:m}}function Aee(e,t,o,n,a,r){let i=0,s=0,l=a,u=r,y=e.get(),h=0;function f(){const C=n.get()-e.get(),$=!l;let L=0;return $?(i=0,o.set(n),e.set(n),L=C):(o.set(e),i+=C/l,i*=u,y+=i,e.add(i),L=y-h),s=$L(L),h=y,N}function k(){const C=n.get()-t.get();return et(C)<.001}function m(){return l}function g(){return s}function _(){return i}function v(){return M(a)}function b(){return x(r)}function M(C){return l=C,N}function x(C){return u=C,N}const N={direction:g,duration:m,velocity:_,seek:f,settled:k,useBaseFriction:b,useBaseDuration:v,useFriction:x,useDuration:M};return N}function Pee(e,t,o,n,a){const r=a.measure(10),i=a.measure(50),s=Ic(.1,.99);let l=!1;function u(){return!(l||!e.reachedAny(o.get())||!e.reachedAny(t.get()))}function y(k){if(!u())return;const m=e.reachedMin(t.get())?"min":"max",g=et(e[m]-t.get()),_=o.get()-t.get(),v=s.constrain(g/i);o.subtract(_*v),!k&&et(_)<r&&(o.set(e.constrain(o.get())),n.useDuration(25).useBaseFriction())}function h(k){l=!k}return{shouldConstrain:u,constrain:y,toggleActive:h}}function Tee(e,t,o,n,a){const r=Ic(-t+e,0),i=h(),s=y(),l=f();function u(m,g){return Md(m,g)<=1}function y(){const m=i[0],g=oo(i),_=i.lastIndexOf(m),v=i.indexOf(g)+1;return Ic(_,v)}function h(){return o.map((m,g)=>{const{min:_,max:v}=r,b=r.constrain(m),M=!g,x=SL(o,g);return M?v:x||u(_,b)?_:u(v,b)?v:b}).map(m=>parseFloat(m.toFixed(3)))}function f(){if(t<=e+a)return[r.max];if(n==="keepSnaps")return i;const{min:m,max:g}=s;return i.slice(m,g)}return{snapsContained:l,scrollContainLimit:s}}function Dee(e,t,o){const n=t[0],a=o?n-e:oo(t);return{limit:Ic(a,n)}}function Eee(e,t,o,n){const r=t.min+.1,i=t.max+.1,{reachedMin:s,reachedMax:l}=Ic(r,i);function u(f){return f===1?l(o.get()):f===-1?s(o.get()):!1}function y(f){if(!u(f))return;const k=e*(f*-1);n.forEach(m=>m.add(k))}return{loop:y}}function zee(e){const{max:t,length:o}=e;function n(r){const i=r-t;return o?i/-o:0}return{get:n}}function Oee(e,t,o,n,a){const{startEdge:r,endEdge:i}=e,{groupSlides:s}=a,l=h().map(t.measure),u=f(),y=k();function h(){return s(n).map(g=>oo(g)[i]-g[0][r]).map(et)}function f(){return n.map(g=>o[r]-g[r]).map(g=>-et(g))}function k(){return s(u).map(g=>g[0]).map((g,_)=>g+l[_])}return{snaps:u,snapsAligned:y}}function qee(e,t,o,n,a,r){const{groupSlides:i}=a,{min:s,max:l}=n,u=y();function y(){const f=i(r),k=!e||t==="keepSnaps";return o.length===1?[r]:k?f:f.slice(s,l).map((m,g,_)=>{const v=!g,b=SL(_,g);if(v){const M=oo(_[0])+1;return rO(M)}if(b){const M=xd(r)-oo(_)[0]+1;return rO(M,oo(_)[0])}return m})}return{slideRegistry:u}}function jee(e,t,o,n,a){const{reachedAny:r,removeOffset:i,constrain:s}=n;function l(m){return m.concat().sort((g,_)=>et(g)-et(_))[0]}function u(m){const g=e?i(m):s(m),_=t.map((b,M)=>({diff:y(b-g,0),index:M})).sort((b,M)=>et(b.diff)-et(M.diff)),{index:v}=_[0];return{index:v,distance:g}}function y(m,g){const _=[m,m+o,m-o];if(!e)return m;if(!g)return l(_);const v=_.filter(b=>$L(b)===g);return v.length?l(v):oo(_)-o}function h(m,g){const _=t[m]-a.get(),v=y(_,g);return{index:m,distance:v}}function f(m,g){const _=a.get()+m,{index:v,distance:b}=u(_),M=!e&&r(_);if(!g||M)return{index:v,distance:m};const x=t[v]-b,N=m+y(x,0);return{index:v,distance:N}}return{byDistance:f,byIndex:h,shortcut:y}}function Hee(e,t,o,n,a,r,i){function s(h){const f=h.distance,k=h.index!==t.get();r.add(f),f&&(n.duration()?e.start():(e.update(),e.render(1),e.update())),k&&(o.set(t.get()),t.set(h.index),i.emit("select"))}function l(h,f){const k=a.byDistance(h,f);s(k)}function u(h,f){const k=t.clone().set(h),m=a.byIndex(k.get(),f);s(m)}return{distance:l,index:u}}function Vee(e,t,o,n,a,r,i,s){const l={passive:!0,capture:!0};let u=0;function y(k){if(!s)return;function m(g){if(new Date().getTime()-u>10)return;i.emit("slideFocusStart"),e.scrollLeft=0;const b=o.findIndex(M=>M.includes(g));NL(b)&&(a.useDuration(0),n.index(b,0),i.emit("slideFocus"))}r.add(document,"keydown",h,!1),t.forEach((g,_)=>{r.add(g,"focus",v=>{(UC(s)||s(k,v))&&m(_)},l)})}function h(k){k.code==="Tab"&&(u=new Date().getTime())}return{init:y}}function $d(e){let t=e;function o(){return t}function n(l){t=i(l)}function a(l){t+=i(l)}function r(l){t-=i(l)}function i(l){return NL(l)?l:l.get()}return{get:o,set:n,add:a,subtract:r}}function sO(e,t){const o=e.scroll==="x"?i:s,n=t.style;let a=null,r=!1;function i(f){return`translate3d(${f}px,0px,0px)`}function s(f){return`translate3d(0px,${f}px,0px)`}function l(f){if(r)return;const k=Mee(e.direction(f));k!==a&&(n.transform=o(k),a=k)}function u(f){r=!f}function y(){r||(n.transform="",t.getAttribute("style")||t.removeAttribute("style"))}return{clear:y,to:l,toggleActive:u}}function Fee(e,t,o,n,a,r,i,s,l){const y=wd(a),h=wd(a).reverse(),f=v().concat(b());function k($,L){return $.reduce((A,z)=>A-a[z],L)}function m($,L){return $.reduce((A,z)=>k(A,L)>0?A.concat([z]):A,[])}function g($){return r.map((L,A)=>({start:L-n[A]+.5+$,end:L+t-.5+$}))}function _($,L,A){const z=g(L);return $.map(E=>{const O=A?0:-o,T=A?o:0,W=A?"end":"start",R=z[E][W];return{index:E,loopPoint:R,slideLocation:$d(-1),translate:sO(e,l[E]),target:()=>s.get()>R?O:T}})}function v(){const $=i[0],L=m(h,$);return _(L,o,!1)}function b(){const $=t-i[0]-1,L=m(y,$);return _(L,-o,!0)}function M(){return f.every(({index:$})=>{const L=y.filter(A=>A!==$);return k(L,t)<=.1})}function x(){f.forEach($=>{const{target:L,translate:A,slideLocation:z}=$,E=L();E!==z.get()&&(A.to(E),z.set(E))})}function N(){f.forEach($=>$.translate.clear())}return{canLoop:M,clear:N,loop:x,loopPoints:f}}function Bee(e,t,o){let n,a=!1;function r(l){if(!o)return;function u(y){for(const h of y)if(h.type==="childList"){l.reInit(),t.emit("slidesChanged");break}}n=new MutationObserver(y=>{a||(UC(o)||o(l,y))&&u(y)}),n.observe(e,{childList:!0})}function i(){n&&n.disconnect(),a=!0}return{init:r,destroy:i}}function Wee(e,t,o,n){const a={};let r=null,i=null,s,l=!1;function u(){s=new IntersectionObserver(m=>{l||(m.forEach(g=>{const _=t.indexOf(g.target);a[_]=g}),r=null,i=null,o.emit("slidesInView"))},{root:e.parentElement,threshold:n}),t.forEach(m=>s.observe(m))}function y(){s&&s.disconnect(),l=!0}function h(m){return Nd(a).reduce((g,_)=>{const v=parseInt(_),{isIntersecting:b}=a[v];return(m&&b||!m&&!b)&&g.push(v),g},[])}function f(m=!0){if(m&&r)return r;if(!m&&i)return i;const g=h(m);return m&&(r=g),m||(i=g),g}return{init:u,destroy:y,get:f}}function Uee(e,t,o,n,a,r){const{measureSize:i,startEdge:s,endEdge:l}=e,u=o[0]&&a,y=m(),h=g(),f=o.map(i),k=_();function m(){if(!u)return 0;const b=o[0];return et(t[s]-b[s])}function g(){if(!u)return 0;const b=r.getComputedStyle(oo(n));return parseFloat(b.getPropertyValue(`margin-${l}`))}function _(){return o.map((b,M,x)=>{const N=!M,C=SL(x,M);return N?f[M]+y:C?f[M]+h:x[M+1][s]-b[s]}).map(et)}return{slideSizes:f,slideSizesWithGaps:k,startGap:y,endGap:h}}function Ree(e,t,o,n,a,r,i,s,l){const{startEdge:u,endEdge:y,direction:h}=e,f=NL(o);function k(v,b){return wd(v).filter(M=>M%b===0).map(M=>v.slice(M,M+b))}function m(v){return v.length?wd(v).reduce((b,M,x)=>{const N=oo(b)||0,C=N===0,$=M===xd(v),L=a[u]-r[N][u],A=a[u]-r[M][y],z=!n&&C?h(i):0,E=!n&&$?h(s):0,O=et(A-E-(L+z));return x&&O>t+l&&b.push(M),$&&b.push(v.length),b},[]).map((b,M,x)=>{const N=Math.max(x[M-1]||0);return v.slice(N,b)}):[]}function g(v){return f?k(v,o):m(v)}return{groupSlides:g}}function Gee(e,t,o,n,a,r,i){const{align:s,axis:l,direction:u,startIndex:y,loop:h,duration:f,dragFree:k,dragThreshold:m,inViewThreshold:g,slidesToScroll:_,skipSnaps:v,containScroll:b,watchResize:M,watchSlides:x,watchDrag:N,watchFocus:C}=r,$=2,L=See(),A=L.measure(t),z=o.map(L.measure),E=Nee(l,u),O=E.measureSize(A),T=Lee(O),W=wee(s,O),R=!h&&!!b,H=h||!!b,{slideSizes:Y,slideSizesWithGaps:j,startGap:U,endGap:ce}=Uee(E,A,z,o,H,a),le=Ree(E,O,_,h,A,z,U,ce,$),{snaps:B,snapsAligned:F}=Oee(E,W,A,z,le),K=-oo(B)+oo(j),{snapsContained:G,scrollContainLimit:ie}=Tee(O,K,F,b,$),V=R?G:F,{limit:te}=Dee(K,V,h),fe=cO(xd(V),y,h),pe=fe.clone(),de=wd(o),ee=({dragHandler:Te,scrollBody:dt,scrollBounds:Ve,options:{loop:nt}})=>{nt||Ve.constrain(Te.pointerDown()),dt.seek()},_e=({scrollBody:Te,translate:dt,location:Ve,offsetLocation:nt,previousLocation:wt,scrollLooper:St,slideLooper:zo,dragHandler:lo,animation:uo,eventHandler:oe,scrollBounds:ve,options:{loop:he}},me)=>{const Le=Te.settled(),re=!ve.shouldConstrain(),Ae=he?Le:Le&&re,Oe=Ae&&!lo.pointerDown();Oe&&uo.stop();const Fe=Ve.get()*me+wt.get()*(1-me);nt.set(Fe),he&&(St.loop(Te.direction()),zo.loop()),dt.to(nt.get()),Oe&&oe.emit("settle"),Ae||oe.emit("scroll")},q=xee(n,a,()=>ee(Se),Te=>_e(Se,Te)),ue=.68,xe=V[fe.get()],Ce=$d(xe),De=$d(xe),$e=$d(xe),Pe=$d(xe),P=Aee(Ce,$e,De,Pe,f,ue),I=jee(h,V,K,te,Pe),D=Hee(q,fe,pe,P,I,Pe,i),Q=zee(te),Z=Cd(),J=Wee(t,o,i,g),{slideRegistry:ne}=qee(R,b,V,ie,le,de),Ne=Vee(e,o,ne,D,P,Z,i,C),Se={ownerDocument:n,ownerWindow:a,eventHandler:i,containerRect:A,slideRects:z,animation:q,axis:E,dragHandler:Cee(E,e,n,a,Pe,$ee(E,a),Ce,q,D,P,I,fe,i,T,k,m,v,ue,N),eventStore:Z,percentOfView:T,index:fe,indexPrevious:pe,limit:te,location:Ce,offsetLocation:$e,previousLocation:De,options:r,resizeHandler:Iee(t,i,a,o,E,M,L),scrollBody:P,scrollBounds:Pee(te,$e,Pe,P,T),scrollLooper:Eee(K,te,$e,[Ce,$e,De,Pe]),scrollProgress:Q,scrollSnapList:V.map(Q.get),scrollSnaps:V,scrollTarget:I,scrollTo:D,slideLooper:Fee(E,O,K,Y,j,B,V,$e,o),slideFocus:Ne,slidesHandler:Bee(t,i,x),slidesInView:J,slideIndexes:de,slideRegistry:ne,slidesToScroll:le,target:Pe,translate:sO(E,t)};return Se}function Kee(){let e={},t;function o(u){t=u}function n(u){return e[u]||[]}function a(u){return n(u).forEach(y=>y(t,u)),l}function r(u,y){return e[u]=n(u).concat([y]),l}function i(u,y){return e[u]=n(u).filter(h=>h!==y),l}function s(){e={}}const l={init:o,emit:a,off:i,on:r,clear:s};return l}const Yee={align:"center",axis:"x",container:null,slides:null,containScroll:"trimSnaps",direction:"ltr",slidesToScroll:1,inViewThreshold:0,breakpoints:{},dragFree:!1,dragThreshold:10,loop:!1,skipSnaps:!1,duration:25,startIndex:0,active:!0,watchDrag:!0,watchResize:!0,watchSlides:!0,watchFocus:!0};function Xee(e){function t(r,i){return iO(r,i||{})}function o(r){const i=r.breakpoints||{},s=Nd(i).filter(l=>e.matchMedia(l).matches).map(l=>i[l]).reduce((l,u)=>t(l,u),{});return t(r,s)}function n(r){return r.map(i=>Nd(i.breakpoints||{})).reduce((i,s)=>i.concat(s),[]).map(e.matchMedia)}return{mergeOptions:t,optionsAtMedia:o,optionsMediaQueries:n}}function Zee(e){let t=[];function o(r,i){return t=i.filter(({options:s})=>e.optionsAtMedia(s).active!==!1),t.forEach(s=>s.init(r,e)),i.reduce((s,l)=>Object.assign(s,{[l.name]:l}),{})}function n(){t=t.filter(r=>r.destroy())}return{init:o,destroy:n}}function RC(e,t,o){const n=e.ownerDocument,a=n.defaultView,r=Xee(a),i=Zee(r),s=Cd(),l=Kee(),{mergeOptions:u,optionsAtMedia:y,optionsMediaQueries:h}=r,{on:f,off:k,emit:m}=l,g=E;let _=!1,v,b=u(Yee,RC.globalOptions),M=u(b),x=[],N,C,$;function L(){const{container:de,slides:ee}=M;C=(CL(de)?e.querySelector(de):de)||e.children[0];const q=CL(ee)?C.querySelectorAll(ee):ee;$=[].slice.call(q||C.children)}function A(de){const ee=Gee(e,C,$,n,a,de,l);if(de.loop&&!ee.slideLooper.canLoop()){const _e=Object.assign({},de,{loop:!1});return A(_e)}return ee}function z(de,ee){_||(b=u(b,de),M=y(b),x=ee||x,L(),v=A(M),h([b,...x.map(({options:_e})=>_e)]).forEach(_e=>s.add(_e,"change",E)),M.active&&(v.translate.to(v.location.get()),v.animation.init(),v.slidesInView.init(),v.slideFocus.init(pe),v.eventHandler.init(pe),v.resizeHandler.init(pe),v.slidesHandler.init(pe),v.options.loop&&v.slideLooper.loop(),C.offsetParent&&$.length&&v.dragHandler.init(pe),N=i.init(pe,x)))}function E(de,ee){const _e=le();O(),z(u({startIndex:_e},de),ee),l.emit("reInit")}function O(){v.dragHandler.destroy(),v.eventStore.clear(),v.translate.clear(),v.slideLooper.clear(),v.resizeHandler.destroy(),v.slidesHandler.destroy(),v.slidesInView.destroy(),v.animation.destroy(),i.destroy(),s.clear()}function T(){_||(_=!0,s.clear(),O(),l.emit("destroy"),l.clear())}function W(de,ee,_e){!M.active||_||(v.scrollBody.useBaseFriction().useDuration(ee===!0?0:M.duration),v.scrollTo.index(de,_e||0))}function R(de){const ee=v.index.add(1).get();W(ee,de,-1)}function H(de){const ee=v.index.add(-1).get();W(ee,de,1)}function Y(){return v.index.add(1).get()!==le()}function j(){return v.index.add(-1).get()!==le()}function U(){return v.scrollSnapList}function ce(){return v.scrollProgress.get(v.offsetLocation.get())}function le(){return v.index.get()}function B(){return v.indexPrevious.get()}function F(){return v.slidesInView.get()}function K(){return v.slidesInView.get(!1)}function G(){return N}function ie(){return v}function V(){return e}function te(){return C}function fe(){return $}const pe={canScrollNext:Y,canScrollPrev:j,containerNode:te,internalEngine:ie,destroy:T,off:k,on:f,emit:m,plugins:G,previousScrollSnap:B,reInit:g,rootNode:V,scrollNext:R,scrollPrev:H,scrollProgress:ce,scrollSnapList:U,scrollTo:W,selectedScrollSnap:le,slideNodes:fe,slidesInView:F,slidesNotInView:K};return z(t,o),setTimeout(()=>l.emit("init"),0),pe}RC.globalOptions=void 0;function IL(e={},t=[]){const o=w.useRef(e),n=w.useRef(t),[a,r]=w.useState(),[i,s]=w.useState(),l=w.useCallback(()=>{a&&a.reInit(o.current,n.current)},[a]);return w.useEffect(()=>{xL(o.current,e)||(o.current=e,l())},[e,l]),w.useEffect(()=>{_ee(n.current,t)||(n.current=t,l())},[t,l]),w.useEffect(()=>{if(vee()&&i){RC.globalOptions=IL.globalOptions;const u=RC(i,o.current,n.current);return r(u),()=>u.destroy()}else r(void 0)},[i,r]),[s,a]}IL.globalOptions=void 0;const dO=p.createContext(null);function GC(){const e=p.useContext(dO);if(!e)throw new Error("useCarousel must be used within a <Carousel />");return e}const lO=p.forwardRef(({orientation:e="horizontal",opts:t,setApi:o,plugins:n,className:a,children:r,...i},s)=>{const[l,u]=IL({...t,axis:e==="horizontal"?"x":"y"},n),[y,h]=p.useState(!1),[f,k]=p.useState(!1),m=p.useCallback(b=>{b&&(h(b.canScrollPrev()),k(b.canScrollNext()))},[]),g=p.useCallback(()=>{u?.scrollPrev()},[u]),_=p.useCallback(()=>{u?.scrollNext()},[u]),v=p.useCallback(b=>{b.key==="ArrowLeft"?(b.preventDefault(),g()):b.key==="ArrowRight"&&(b.preventDefault(),_())},[g,_]);return p.useEffect(()=>{!u||!o||o(u)},[u,o]),p.useEffect(()=>{if(u)return m(u),u.on("reInit",m),u.on("select",m),()=>{u?.off("select",m)}},[u,m]),d.jsx(dO.Provider,{value:{carouselRef:l,api:u,opts:t,orientation:e||(t?.axis==="y"?"vertical":"horizontal"),scrollPrev:g,scrollNext:_,canScrollPrev:y,canScrollNext:f},children:d.jsx("div",{ref:s,onKeyDownCapture:v,className:S("relative",a),role:"region","aria-roledescription":"carousel",...i,children:r})})});lO.displayName="Carousel";const uO=p.forwardRef(({className:e,...t},o)=>{const{carouselRef:n,orientation:a}=GC();return d.jsx("div",{ref:n,className:"overflow-hidden",children:d.jsx("div",{ref:o,className:S("flex",a==="horizontal"?"-ml-4":"-mt-4 flex-col",e),...t})})});uO.displayName="CarouselContent";const hO=p.forwardRef(({className:e,...t},o)=>{const{orientation:n}=GC();return d.jsx("div",{ref:o,role:"group","aria-roledescription":"slide",className:S("min-w-0 shrink-0 grow-0 basis-full",n==="horizontal"?"pl-4":"pt-4",e),...t})});hO.displayName="CarouselItem";const pO=p.forwardRef(({className:e,variant:t="outline",size:o="icon",...n},a)=>{const{orientation:r,scrollPrev:i,canScrollPrev:s}=GC();return d.jsxs(je,{ref:a,variant:t,size:o,className:S("absolute h-8 w-8 rounded-full",r==="horizontal"?"-left-12 top-1/2 -translate-y-1/2":"-top-12 left-1/2 -translate-x-1/2 rotate-90",e),disabled:!s,onClick:i,...n,children:[d.jsx(Zc,{className:"h-4 w-4"}),d.jsx("span",{className:"sr-only",children:"Previous slide"})]})});pO.displayName="CarouselPrevious";const yO=p.forwardRef(({className:e,variant:t="outline",size:o="icon",...n},a)=>{const{orientation:r,scrollNext:i,canScrollNext:s}=GC();return d.jsxs(je,{ref:a,variant:t,size:o,className:S("absolute h-8 w-8 rounded-full",r==="horizontal"?"-right-12 top-1/2 -translate-y-1/2":"-bottom-12 left-1/2 -translate-x-1/2 rotate-90",e),disabled:!s,onClick:i,...n,children:[d.jsx(Vs,{className:"h-4 w-4"}),d.jsx("span",{className:"sr-only",children:"Next slide"})]})});yO.displayName="CarouselNext";var AL,fO;function KC(){if(fO)return AL;fO=1;var e=Array.isArray;return AL=e,AL}var PL,mO;function Qee(){if(mO)return PL;mO=1;var e=typeof VC=="object"&&VC&&VC.Object===Object&&VC;return PL=e,PL}var TL,kO;function YC(){if(kO)return TL;kO=1;var e=Qee(),t=typeof self=="object"&&self&&self.Object===Object&&self,o=e||t||Function("return this")();return TL=o,TL}var DL,gO;function EL(){if(gO)return DL;gO=1;var e=YC(),t=e.Symbol;return DL=t,DL}var zL,vO;function Jee(){if(vO)return zL;vO=1;var e=EL(),t=Object.prototype,o=t.hasOwnProperty,n=t.toString,a=e?e.toStringTag:void 0;function r(i){var s=o.call(i,a),l=i[a];try{i[a]=void 0;var u=!0}catch{}var y=n.call(i);return u&&(s?i[a]=l:delete i[a]),y}return zL=r,zL}var OL,_O;function ete(){if(_O)return OL;_O=1;var e=Object.prototype,t=e.toString;function o(n){return t.call(n)}return OL=o,OL}var qL,bO;function XC(){if(bO)return qL;bO=1;var e=EL(),t=Jee(),o=ete(),n="[object Null]",a="[object Undefined]",r=e?e.toStringTag:void 0;function i(s){return s==null?s===void 0?a:n:r&&r in Object(s)?t(s):o(s)}return qL=i,qL}var jL,MO;function HL(){if(MO)return jL;MO=1;function e(t){return t!=null&&typeof t=="object"}return jL=e,jL}var VL,wO;function ZC(){if(wO)return VL;wO=1;var e=XC(),t=HL(),o="[object Symbol]";function n(a){return typeof a=="symbol"||t(a)&&e(a)==o}return VL=n,VL}var FL,xO;function tte(){if(xO)return FL;xO=1;var e=KC(),t=ZC(),o=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,n=/^\w*$/;function a(r,i){if(e(r))return!1;var s=typeof r;return s=="number"||s=="symbol"||s=="boolean"||r==null||t(r)?!0:n.test(r)||!o.test(r)||i!=null&&r in Object(i)}return FL=a,FL}var BL,NO;function fs(){if(NO)return BL;NO=1;function e(t){var o=typeof t;return t!=null&&(o=="object"||o=="function")}return BL=e,BL}var WL,CO;function $O(){if(CO)return WL;CO=1;var e=XC(),t=fs(),o="[object AsyncFunction]",n="[object Function]",a="[object GeneratorFunction]",r="[object Proxy]";function i(s){if(!t(s))return!1;var l=e(s);return l==n||l==a||l==o||l==r}return WL=i,WL}var UL,SO;function ote(){if(SO)return UL;SO=1;var e=YC(),t=e["__core-js_shared__"];return UL=t,UL}var RL,LO;function nte(){if(LO)return RL;LO=1;var e=ote(),t=(function(){var n=/[^.]+$/.exec(e&&e.keys&&e.keys.IE_PROTO||"");return n?"Symbol(src)_1."+n:""})();function o(n){return!!t&&t in n}return RL=o,RL}var GL,IO;function ate(){if(IO)return GL;IO=1;var e=Function.prototype,t=e.toString;function o(n){if(n!=null){try{return t.call(n)}catch{}try{return n+""}catch{}}return""}return GL=o,GL}var KL,AO;function rte(){if(AO)return KL;AO=1;var e=$O(),t=nte(),o=fs(),n=ate(),a=/[\\^$.*+?()[\]{}|]/g,r=/^\[object .+?Constructor\]$/,i=Function.prototype,s=Object.prototype,l=i.toString,u=s.hasOwnProperty,y=RegExp("^"+l.call(u).replace(a,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function h(f){if(!o(f)||t(f))return!1;var k=e(f)?y:r;return k.test(n(f))}return KL=h,KL}var YL,PO;function ite(){if(PO)return YL;PO=1;function e(t,o){return t?.[o]}return YL=e,YL}var XL,TO;function DO(){if(TO)return XL;TO=1;var e=rte(),t=ite();function o(n,a){var r=t(n,a);return e(r)?r:void 0}return XL=o,XL}var ZL,EO;function QC(){if(EO)return ZL;EO=1;var e=DO(),t=e(Object,"create");return ZL=t,ZL}var QL,zO;function cte(){if(zO)return QL;zO=1;var e=QC();function t(){this.__data__=e?e(null):{},this.size=0}return QL=t,QL}var JL,OO;function ste(){if(OO)return JL;OO=1;function e(t){var o=this.has(t)&&delete this.__data__[t];return this.size-=o?1:0,o}return JL=e,JL}var eI,qO;function dte(){if(qO)return eI;qO=1;var e=QC(),t="__lodash_hash_undefined__",o=Object.prototype,n=o.hasOwnProperty;function a(r){var i=this.__data__;if(e){var s=i[r];return s===t?void 0:s}return n.call(i,r)?i[r]:void 0}return eI=a,eI}var tI,jO;function lte(){if(jO)return tI;jO=1;var e=QC(),t=Object.prototype,o=t.hasOwnProperty;function n(a){var r=this.__data__;return e?r[a]!==void 0:o.call(r,a)}return tI=n,tI}var oI,HO;function ute(){if(HO)return oI;HO=1;var e=QC(),t="__lodash_hash_undefined__";function o(n,a){var r=this.__data__;return this.size+=this.has(n)?0:1,r[n]=e&&a===void 0?t:a,this}return oI=o,oI}var nI,VO;function hte(){if(VO)return nI;VO=1;var e=cte(),t=ste(),o=dte(),n=lte(),a=ute();function r(i){var s=-1,l=i==null?0:i.length;for(this.clear();++s<l;){var u=i[s];this.set(u[0],u[1])}}return r.prototype.clear=e,r.prototype.delete=t,r.prototype.get=o,r.prototype.has=n,r.prototype.set=a,nI=r,nI}var aI,FO;function pte(){if(FO)return aI;FO=1;function e(){this.__data__=[],this.size=0}return aI=e,aI}var rI,BO;function yte(){if(BO)return rI;BO=1;function e(t,o){return t===o||t!==t&&o!==o}return rI=e,rI}var iI,WO;function JC(){if(WO)return iI;WO=1;var e=yte();function t(o,n){for(var a=o.length;a--;)if(e(o[a][0],n))return a;return-1}return iI=t,iI}var cI,UO;function fte(){if(UO)return cI;UO=1;var e=JC(),t=Array.prototype,o=t.splice;function n(a){var r=this.__data__,i=e(r,a);if(i<0)return!1;var s=r.length-1;return i==s?r.pop():o.call(r,i,1),--this.size,!0}return cI=n,cI}var sI,RO;function mte(){if(RO)return sI;RO=1;var e=JC();function t(o){var n=this.__data__,a=e(n,o);return a<0?void 0:n[a][1]}return sI=t,sI}var dI,GO;function kte(){if(GO)return dI;GO=1;var e=JC();function t(o){return e(this.__data__,o)>-1}return dI=t,dI}var lI,KO;function gte(){if(KO)return lI;KO=1;var e=JC();function t(o,n){var a=this.__data__,r=e(a,o);return r<0?(++this.size,a.push([o,n])):a[r][1]=n,this}return lI=t,lI}var uI,YO;function vte(){if(YO)return uI;YO=1;var e=pte(),t=fte(),o=mte(),n=kte(),a=gte();function r(i){var s=-1,l=i==null?0:i.length;for(this.clear();++s<l;){var u=i[s];this.set(u[0],u[1])}}return r.prototype.clear=e,r.prototype.delete=t,r.prototype.get=o,r.prototype.has=n,r.prototype.set=a,uI=r,uI}var hI,XO;function _te(){if(XO)return hI;XO=1;var e=DO(),t=YC(),o=e(t,"Map");return hI=o,hI}var pI,ZO;function bte(){if(ZO)return pI;ZO=1;var e=hte(),t=vte(),o=_te();function n(){this.size=0,this.__data__={hash:new e,map:new(o||t),string:new e}}return pI=n,pI}var yI,QO;function Mte(){if(QO)return yI;QO=1;function e(t){var o=typeof t;return o=="string"||o=="number"||o=="symbol"||o=="boolean"?t!=="__proto__":t===null}return yI=e,yI}var fI,JO;function e$(){if(JO)return fI;JO=1;var e=Mte();function t(o,n){var a=o.__data__;return e(n)?a[typeof n=="string"?"string":"hash"]:a.map}return fI=t,fI}var mI,eq;function wte(){if(eq)return mI;eq=1;var e=e$();function t(o){var n=e(this,o).delete(o);return this.size-=n?1:0,n}return mI=t,mI}var kI,tq;function xte(){if(tq)return kI;tq=1;var e=e$();function t(o){return e(this,o).get(o)}return kI=t,kI}var gI,oq;function Nte(){if(oq)return gI;oq=1;var e=e$();function t(o){return e(this,o).has(o)}return gI=t,gI}var vI,nq;function Cte(){if(nq)return vI;nq=1;var e=e$();function t(o,n){var a=e(this,o),r=a.size;return a.set(o,n),this.size+=a.size==r?0:1,this}return vI=t,vI}var _I,aq;function $te(){if(aq)return _I;aq=1;var e=bte(),t=wte(),o=xte(),n=Nte(),a=Cte();function r(i){var s=-1,l=i==null?0:i.length;for(this.clear();++s<l;){var u=i[s];this.set(u[0],u[1])}}return r.prototype.clear=e,r.prototype.delete=t,r.prototype.get=o,r.prototype.has=n,r.prototype.set=a,_I=r,_I}var bI,rq;function Ste(){if(rq)return bI;rq=1;var e=$te(),t="Expected a function";function o(n,a){if(typeof n!="function"||a!=null&&typeof a!="function")throw new TypeError(t);var r=function(){var i=arguments,s=a?a.apply(this,i):i[0],l=r.cache;if(l.has(s))return l.get(s);var u=n.apply(this,i);return r.cache=l.set(s,u)||l,u};return r.cache=new(o.Cache||e),r}return o.Cache=e,bI=o,bI}var MI,iq;function Lte(){if(iq)return MI;iq=1;var e=Ste(),t=500;function o(n){var a=e(n,function(i){return r.size===t&&r.clear(),i}),r=a.cache;return a}return MI=o,MI}var wI,cq;function Ite(){if(cq)return wI;cq=1;var e=Lte(),t=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,o=/\\(\\)?/g,n=e(function(a){var r=[];return a.charCodeAt(0)===46&&r.push(""),a.replace(t,function(i,s,l,u){r.push(l?u.replace(o,"$1"):s||i)}),r});return wI=n,wI}var xI,sq;function Ate(){if(sq)return xI;sq=1;function e(t,o){for(var n=-1,a=t==null?0:t.length,r=Array(a);++n<a;)r[n]=o(t[n],n,t);return r}return xI=e,xI}var NI,dq;function Pte(){if(dq)return NI;dq=1;var e=EL(),t=Ate(),o=KC(),n=ZC(),a=e?e.prototype:void 0,r=a?a.toString:void 0;function i(s){if(typeof s=="string")return s;if(o(s))return t(s,i)+"";if(n(s))return r?r.call(s):"";var l=s+"";return l=="0"&&1/s==-1/0?"-0":l}return NI=i,NI}var CI,lq;function Tte(){if(lq)return CI;lq=1;var e=Pte();function t(o){return o==null?"":e(o)}return CI=t,CI}var $I,uq;function Dte(){if(uq)return $I;uq=1;var e=KC(),t=tte(),o=Ite(),n=Tte();function a(r,i){return e(r)?r:t(r,i)?[r]:o(n(r))}return $I=a,$I}var SI,hq;function Ete(){if(hq)return SI;hq=1;var e=ZC();function t(o){if(typeof o=="string"||e(o))return o;var n=o+"";return n=="0"&&1/o==-1/0?"-0":n}return SI=t,SI}var LI,pq;function zte(){if(pq)return LI;pq=1;var e=Dte(),t=Ete();function o(n,a){a=e(a,n);for(var r=0,i=a.length;n!=null&&r<i;)n=n[t(a[r++])];return r&&r==i?n:void 0}return LI=o,LI}var II,yq;function Ote(){if(yq)return II;yq=1;var e=zte();function t(o,n,a){var r=o==null?void 0:e(o,n);return r===void 0?a:r}return II=t,II}Ote();var AI,fq;function qte(){if(fq)return AI;fq=1;var e=XC(),t=KC(),o=HL(),n="[object String]";function a(r){return typeof r=="string"||!t(r)&&o(r)&&e(r)==n}return AI=a,AI}var jte=qte();const Hte=RE(jte);$O(),fs();var t$={exports:{}},Ee={};var mq;function Vte(){if(mq)return Ee;mq=1;var e=Symbol.for("react.element"),t=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),n=Symbol.for("react.strict_mode"),a=Symbol.for("react.profiler"),r=Symbol.for("react.provider"),i=Symbol.for("react.context"),s=Symbol.for("react.server_context"),l=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),y=Symbol.for("react.suspense_list"),h=Symbol.for("react.memo"),f=Symbol.for("react.lazy"),k=Symbol.for("react.offscreen"),m;m=Symbol.for("react.module.reference");function g(_){if(typeof _=="object"&&_!==null){var v=_.$$typeof;switch(v){case e:switch(_=_.type,_){case o:case a:case n:case u:case y:return _;default:switch(_=_&&_.$$typeof,_){case s:case i:case l:case f:case h:case r:return _;default:return v}}case t:return v}}}return Ee.ContextConsumer=i,Ee.ContextProvider=r,Ee.Element=e,Ee.ForwardRef=l,Ee.Fragment=o,Ee.Lazy=f,Ee.Memo=h,Ee.Portal=t,Ee.Profiler=a,Ee.StrictMode=n,Ee.Suspense=u,Ee.SuspenseList=y,Ee.isAsyncMode=function(){return!1},Ee.isConcurrentMode=function(){return!1},Ee.isContextConsumer=function(_){return g(_)===i},Ee.isContextProvider=function(_){return g(_)===r},Ee.isElement=function(_){return typeof _=="object"&&_!==null&&_.$$typeof===e},Ee.isForwardRef=function(_){return g(_)===l},Ee.isFragment=function(_){return g(_)===o},Ee.isLazy=function(_){return g(_)===f},Ee.isMemo=function(_){return g(_)===h},Ee.isPortal=function(_){return g(_)===t},Ee.isProfiler=function(_){return g(_)===a},Ee.isStrictMode=function(_){return g(_)===n},Ee.isSuspense=function(_){return g(_)===u},Ee.isSuspenseList=function(_){return g(_)===y},Ee.isValidElementType=function(_){return typeof _=="string"||typeof _=="function"||_===o||_===a||_===n||_===u||_===y||_===k||typeof _=="object"&&_!==null&&(_.$$typeof===f||_.$$typeof===h||_.$$typeof===r||_.$$typeof===i||_.$$typeof===l||_.$$typeof===m||_.getModuleId!==void 0)},Ee.typeOf=g,Ee}var ze={};var kq;function Fte(){return kq||(kq=1,process.env.NODE_ENV!=="production"&&(function(){var e=Symbol.for("react.element"),t=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),n=Symbol.for("react.strict_mode"),a=Symbol.for("react.profiler"),r=Symbol.for("react.provider"),i=Symbol.for("react.context"),s=Symbol.for("react.server_context"),l=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),y=Symbol.for("react.suspense_list"),h=Symbol.for("react.memo"),f=Symbol.for("react.lazy"),k=Symbol.for("react.offscreen"),m=!1,g=!1,_=!1,v=!1,b=!1,M;M=Symbol.for("react.module.reference");function x(q){return!!(typeof q=="string"||typeof q=="function"||q===o||q===a||b||q===n||q===u||q===y||v||q===k||m||g||_||typeof q=="object"&&q!==null&&(q.$$typeof===f||q.$$typeof===h||q.$$typeof===r||q.$$typeof===i||q.$$typeof===l||q.$$typeof===M||q.getModuleId!==void 0))}function N(q){if(typeof q=="object"&&q!==null){var ue=q.$$typeof;switch(ue){case e:var xe=q.type;switch(xe){case o:case a:case n:case u:case y:return xe;default:var Ce=xe&&xe.$$typeof;switch(Ce){case s:case i:case l:case f:case h:case r:return Ce;default:return ue}}case t:return ue}}}var C=i,$=r,L=e,A=l,z=o,E=f,O=h,T=t,W=a,R=n,H=u,Y=y,j=!1,U=!1;function ce(q){return j||(j=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 18+.")),!1}function le(q){return U||(U=!0,console.warn("The ReactIs.isConcurrentMode() alias has been deprecated, and will be removed in React 18+.")),!1}function B(q){return N(q)===i}function F(q){return N(q)===r}function K(q){return typeof q=="object"&&q!==null&&q.$$typeof===e}function G(q){return N(q)===l}function ie(q){return N(q)===o}function V(q){return N(q)===f}function te(q){return N(q)===h}function fe(q){return N(q)===t}function pe(q){return N(q)===a}function de(q){return N(q)===n}function ee(q){return N(q)===u}function _e(q){return N(q)===y}ze.ContextConsumer=C,ze.ContextProvider=$,ze.Element=L,ze.ForwardRef=A,ze.Fragment=z,ze.Lazy=E,ze.Memo=O,ze.Portal=T,ze.Profiler=W,ze.StrictMode=R,ze.Suspense=H,ze.SuspenseList=Y,ze.isAsyncMode=ce,ze.isConcurrentMode=le,ze.isContextConsumer=B,ze.isContextProvider=F,ze.isElement=K,ze.isForwardRef=G,ze.isFragment=ie,ze.isLazy=V,ze.isMemo=te,ze.isPortal=fe,ze.isProfiler=pe,ze.isStrictMode=de,ze.isSuspense=ee,ze.isSuspenseList=_e,ze.isValidElementType=x,ze.typeOf=N})()),ze}var gq;function Bte(){return gq||(gq=1,process.env.NODE_ENV==="production"?t$.exports=Vte():t$.exports=Fte()),t$.exports}Bte();var PI,vq;function _q(){if(vq)return PI;vq=1;var e=XC(),t=HL(),o="[object Number]";function n(a){return typeof a=="number"||t(a)&&e(a)==o}return PI=n,PI}var TI,bq;function Wte(){if(bq)return TI;bq=1;var e=_q();function t(o){return e(o)&&o!=+o}return TI=t,TI}Wte(),_q();var o$=function(t){return Hte(t)&&t.indexOf("%")===t.length-1},Ute=function(t){return typeof t=="string"?t:t?t.displayName||t.name||"Component":""},Rte=process.env.NODE_ENV!=="production",DI=function(t,o){for(var n=arguments.length,a=new Array(n>2?n-2:0),r=2;r<n;r++)a[r-2]=arguments[r];if(Rte&&typeof console<"u"&&console.warn&&(o===void 0&&console.warn("LogUtils requires an error message argument"),!t))if(o===void 0)console.warn("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var i=0;console.warn(o.replace(/%s/g,function(){return a[i++]}))}},EI,Mq;function Gte(){if(Mq)return EI;Mq=1;var e=YC(),t=function(){return e.Date.now()};return EI=t,EI}var zI,wq;function Kte(){if(wq)return zI;wq=1;var e=/\s/;function t(o){for(var n=o.length;n--&&e.test(o.charAt(n)););return n}return zI=t,zI}var OI,xq;function Yte(){if(xq)return OI;xq=1;var e=Kte(),t=/^\s+/;function o(n){return n&&n.slice(0,e(n)+1).replace(t,"")}return OI=o,OI}var qI,Nq;function Xte(){if(Nq)return qI;Nq=1;var e=Yte(),t=fs(),o=ZC(),n=NaN,a=/^[-+]0x[0-9a-f]+$/i,r=/^0b[01]+$/i,i=/^0o[0-7]+$/i,s=parseInt;function l(u){if(typeof u=="number")return u;if(o(u))return n;if(t(u)){var y=typeof u.valueOf=="function"?u.valueOf():u;u=t(y)?y+"":y}if(typeof u!="string")return u===0?u:+u;u=e(u);var h=r.test(u);return h||i.test(u)?s(u.slice(2),h?2:8):a.test(u)?n:+u}return qI=l,qI}var jI,Cq;function Zte(){if(Cq)return jI;Cq=1;var e=fs(),t=Gte(),o=Xte(),n="Expected a function",a=Math.max,r=Math.min;function i(s,l,u){var y,h,f,k,m,g,_=0,v=!1,b=!1,M=!0;if(typeof s!="function")throw new TypeError(n);l=o(l)||0,e(u)&&(v=!!u.leading,b="maxWait"in u,f=b?a(o(u.maxWait)||0,l):f,M="trailing"in u?!!u.trailing:M);function x(T){var W=y,R=h;return y=h=void 0,_=T,k=s.apply(R,W),k}function N(T){return _=T,m=setTimeout(L,l),v?x(T):k}function C(T){var W=T-g,R=T-_,H=l-W;return b?r(H,f-R):H}function $(T){var W=T-g,R=T-_;return g===void 0||W>=l||W<0||b&&R>=f}function L(){var T=t();if($(T))return A(T);m=setTimeout(L,C(T))}function A(T){return m=void 0,M&&y?x(T):(y=h=void 0,k)}function z(){m!==void 0&&clearTimeout(m),_=0,y=g=h=m=void 0}function E(){return m===void 0?k:A(t())}function O(){var T=t(),W=$(T);if(y=arguments,h=this,g=T,W){if(m===void 0)return N(g);if(b)return clearTimeout(m),m=setTimeout(L,l),x(g)}return m===void 0&&(m=setTimeout(L,l)),k}return O.cancel=z,O.flush=E,O}return jI=i,jI}var HI,$q;function Qte(){if($q)return HI;$q=1;var e=Zte(),t=fs(),o="Expected a function";function n(a,r,i){var s=!0,l=!0;if(typeof a!="function")throw new TypeError(o);return t(i)&&(s="leading"in i?!!i.leading:s,l="trailing"in i?!!i.trailing:l),e(a,r,{leading:s,maxWait:r,trailing:l})}return HI=n,HI}var Jte=Qte();const eoe=RE(Jte);function Sd(e){"@babel/helpers - typeof";return Sd=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Sd(e)}function Sq(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable})),o.push.apply(o,n)}return o}function n$(e){for(var t=1;t<arguments.length;t++){var o=arguments[t]!=null?arguments[t]:{};t%2?Sq(Object(o),!0).forEach(function(n){toe(e,n,o[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Sq(Object(o)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(o,n))})}return e}function toe(e,t,o){return t=ooe(t),t in e?Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[t]=o,e}function ooe(e){var t=noe(e,"string");return Sd(t)=="symbol"?t:t+""}function noe(e,t){if(Sd(e)!="object"||!e)return e;var o=e[Symbol.toPrimitive];if(o!==void 0){var n=o.call(e,t);if(Sd(n)!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function aoe(e,t){return soe(e)||coe(e,t)||ioe(e,t)||roe()}function roe(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
|
|
58
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function ioe(e,t){if(e){if(typeof e=="string")return Lq(e,t);var o=Object.prototype.toString.call(e).slice(8,-1);if(o==="Object"&&e.constructor&&(o=e.constructor.name),o==="Map"||o==="Set")return Array.from(e);if(o==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o))return Lq(e,t)}}function Lq(e,t){(t==null||t>e.length)&&(t=e.length);for(var o=0,n=new Array(t);o<t;o++)n[o]=e[o];return n}function coe(e,t){var o=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(o!=null){var n,a,r,i,s=[],l=!0,u=!1;try{if(r=(o=o.call(e)).next,t!==0)for(;!(l=(n=r.call(o)).done)&&(s.push(n.value),s.length!==t);l=!0);}catch(y){u=!0,a=y}finally{try{if(!l&&o.return!=null&&(i=o.return(),Object(i)!==i))return}finally{if(u)throw a}}return s}}function soe(e){if(Array.isArray(e))return e}var doe=w.forwardRef(function(e,t){var o=e.aspect,n=e.initialDimension,a=n===void 0?{width:-1,height:-1}:n,r=e.width,i=r===void 0?"100%":r,s=e.height,l=s===void 0?"100%":s,u=e.minWidth,y=u===void 0?0:u,h=e.minHeight,f=e.maxHeight,k=e.children,m=e.debounce,g=m===void 0?0:m,_=e.id,v=e.className,b=e.onResize,M=e.style,x=M===void 0?{}:M,N=w.useRef(null),C=w.useRef();C.current=b,w.useImperativeHandle(t,function(){return Object.defineProperty(N.current,"current",{get:function(){return console.warn("The usage of ref.current.current is deprecated and will no longer be supported."),N.current},configurable:!0})});var $=w.useState({containerWidth:a.width,containerHeight:a.height}),L=aoe($,2),A=L[0],z=L[1],E=w.useCallback(function(T,W){z(function(R){var H=Math.round(T),Y=Math.round(W);return R.containerWidth===H&&R.containerHeight===Y?R:{containerWidth:H,containerHeight:Y}})},[]);w.useEffect(function(){var T=function(U){var ce,le=U[0].contentRect,B=le.width,F=le.height;E(B,F),(ce=C.current)===null||ce===void 0||ce.call(C,B,F)};g>0&&(T=eoe(T,g,{trailing:!0,leading:!1}));var W=new ResizeObserver(T),R=N.current.getBoundingClientRect(),H=R.width,Y=R.height;return E(H,Y),W.observe(N.current),function(){W.disconnect()}},[E,g]);var O=w.useMemo(function(){var T=A.containerWidth,W=A.containerHeight;if(T<0||W<0)return null;DI(o$(i)||o$(l),`The width(%s) and height(%s) are both fixed numbers,
|
|
59
|
+
maybe you don't need to use a ResponsiveContainer.`,i,l),DI(!o||o>0,"The aspect(%s) must be greater than zero.",o);var R=o$(i)?T:i,H=o$(l)?W:l;o&&o>0&&(R?H=R/o:H&&(R=H*o),f&&H>f&&(H=f)),DI(R>0||H>0,`The width(%s) and height(%s) of chart should be greater than 0,
|
|
60
|
+
please check the style of container, or the props width(%s) and height(%s),
|
|
61
|
+
or add a minWidth(%s) or minHeight(%s) or use aspect(%s) to control the
|
|
62
|
+
height and width.`,R,H,i,l,y,h,o);var Y=!Array.isArray(k)&&Ute(k.type).endsWith("Chart");return w.Children.map(k,function(j){return w.isValidElement(j)?w.cloneElement(j,n$({width:R,height:H},Y?{style:n$({height:"100%",width:"100%",maxHeight:H,maxWidth:R},j.props.style)}:{})):j})},[o,k,l,f,h,y,A,i]);return w.createElement("div",{id:_?"".concat(_):void 0,className:uS("recharts-responsive-container",v),style:n$(n$({},x),{},{width:i,height:l,minWidth:y,minHeight:h,maxHeight:f}),ref:N},O)});const loe={light:"",dark:".dark"},Iq=p.createContext(null);function Aq(){const e=p.useContext(Iq);if(!e)throw new Error("useChart must be used within a <ChartContainer />");return e}const uoe=p.forwardRef(({id:e,className:t,children:o,config:n,...a},r)=>{const i=p.useId(),s=`chart-${e||i.replace(/:/g,"")}`;return d.jsx(Iq.Provider,{value:{config:n},children:d.jsxs("div",{"data-chart":s,ref:r,className:S("flex aspect-video justify-center text-xs [&_.recharts-cartesian-axis-tick_text]:fill-muted-foreground [&_.recharts-cartesian-grid_line[stroke='#ccc']]:stroke-border/50 [&_.recharts-curve.recharts-tooltip-cursor]:stroke-border [&_.recharts-dot[stroke='#fff']]:stroke-transparent [&_.recharts-layer]:outline-none [&_.recharts-polar-grid_[stroke='#ccc']]:stroke-border [&_.recharts-radial-bar-background-sector]:fill-muted [&_.recharts-rectangle.recharts-tooltip-cursor]:fill-muted [&_.recharts-reference-line_[stroke='#ccc']]:stroke-border [&_.recharts-sector[stroke='#fff']]:stroke-transparent [&_.recharts-sector]:outline-none [&_.recharts-surface]:outline-none",t),...a,children:[d.jsx(hoe,{id:s,config:n}),d.jsx(doe,{children:o})]})})});uoe.displayName="Chart";const hoe=({id:e,config:t})=>{const o=Object.entries(t).filter(([,n])=>n.theme||n.color);return o.length?d.jsx("style",{dangerouslySetInnerHTML:{__html:Object.entries(loe).map(([n,a])=>`
|
|
63
|
+
${a} [data-chart=${e}] {
|
|
64
|
+
${o.map(([r,i])=>{const s=i.theme?.[n]||i.color;return s?` --color-${r}: ${s};`:null}).join(`
|
|
65
|
+
`)}
|
|
66
|
+
}
|
|
67
|
+
`).join(`
|
|
68
|
+
`)}}):null},poe=p.forwardRef(({active:e,payload:t,className:o,indicator:n="dot",hideLabel:a=!1,hideIndicator:r=!1,label:i,labelFormatter:s,labelClassName:l,formatter:u,color:y,nameKey:h,labelKey:f},k)=>{const{config:m}=Aq(),g=p.useMemo(()=>{if(a||!t?.length)return null;const[v]=t,b=`${f||v?.dataKey||v?.name||"value"}`,M=VI(m,v,b),x=!f&&typeof i=="string"?m[i]?.label||i:M?.label;return s?d.jsx("div",{className:S("font-medium",l),children:s(x,t)}):x?d.jsx("div",{className:S("font-medium",l),children:x}):null},[i,s,t,a,l,m,f]);if(!e||!t?.length)return null;const _=t.length===1&&n!=="dot";return d.jsxs("div",{ref:k,className:S("grid min-w-[8rem] items-start gap-1.5 rounded-lg border border-border/50 bg-background px-2.5 py-1.5 text-xs shadow-xl",o),children:[_?null:g,d.jsx("div",{className:"grid gap-1.5",children:t.filter(v=>v.type!=="none").map((v,b)=>{const M=`${h||v.name||v.dataKey||"value"}`,x=VI(m,v,M),N=y||v.payload.fill||v.color;return d.jsx("div",{className:S("flex w-full flex-wrap items-stretch gap-2 [&>svg]:h-2.5 [&>svg]:w-2.5 [&>svg]:text-muted-foreground",n==="dot"&&"items-center"),children:u&&v?.value!==void 0&&v.name?u(v.value,v.name,v,b,v.payload):d.jsxs(d.Fragment,{children:[x?.icon?d.jsx(x.icon,{}):!r&&d.jsx("div",{className:S("shrink-0 rounded-[2px] border-[--color-border] bg-[--color-bg]",{"h-2.5 w-2.5":n==="dot","w-1":n==="line","w-0 border-[1.5px] border-dashed bg-transparent":n==="dashed","my-0.5":_&&n==="dashed"}),style:{"--color-bg":N,"--color-border":N}}),d.jsxs("div",{className:S("flex flex-1 justify-between leading-none",_?"items-end":"items-center"),children:[d.jsxs("div",{className:"grid gap-1.5",children:[_?g:null,d.jsx("span",{className:"text-muted-foreground",children:x?.label||v.name})]}),v.value&&d.jsx("span",{className:"font-mono font-medium tabular-nums text-foreground",children:v.value.toLocaleString()})]})]})},v.dataKey)})})]})});poe.displayName="ChartTooltip";const yoe=p.forwardRef(({className:e,hideIcon:t=!1,payload:o,verticalAlign:n="bottom",nameKey:a},r)=>{const{config:i}=Aq();return o?.length?d.jsx("div",{ref:r,className:S("flex items-center justify-center gap-4",n==="top"?"pb-3":"pt-3",e),children:o.filter(s=>s.type!=="none").map(s=>{const l=`${a||s.dataKey||"value"}`,u=VI(i,s,l);return d.jsxs("div",{className:S("flex items-center gap-1.5 [&>svg]:h-3 [&>svg]:w-3 [&>svg]:text-muted-foreground"),children:[u?.icon&&!t?d.jsx(u.icon,{}):d.jsx("div",{className:"h-2 w-2 shrink-0 rounded-[2px]",style:{backgroundColor:s.color}}),u?.label]},s.value)})}):null});yoe.displayName="ChartLegend";function VI(e,t,o){if(typeof t!="object"||t===null)return;const n="payload"in t&&typeof t.payload=="object"&&t.payload!==null?t.payload:void 0;let a=o;return o in t&&typeof t[o]=="string"?a=t[o]:n&&o in n&&typeof n[o]=="string"&&(a=n[o]),a in e?e[a]:e[o]}function ms(e){const t=p.useRef({value:e,previous:e});return p.useMemo(()=>(t.current.value!==e&&(t.current.previous=t.current.value,t.current.value=e),t.current.previous),[e])}function Ld(e){const[t,o]=p.useState(void 0);return Ze(()=>{if(e){o({width:e.offsetWidth,height:e.offsetHeight});const n=new ResizeObserver(a=>{if(!Array.isArray(a)||!a.length)return;const r=a[0];let i,s;if("borderBoxSize"in r){const l=r.borderBoxSize,u=Array.isArray(l)?l[0]:l;i=u.inlineSize,s=u.blockSize}else i=e.offsetWidth,s=e.offsetHeight;o({width:i,height:s})});return n.observe(e,{box:"border-box"}),()=>n.unobserve(e)}else o(void 0)},[e]),t}var a$="Checkbox",[foe]=Xe(a$),[moe,FI]=foe(a$);function koe(e){const{__scopeCheckbox:t,checked:o,children:n,defaultChecked:a,disabled:r,form:i,name:s,onCheckedChange:l,required:u,value:y="on",internal_do_not_use_render:h}=e,[f,k]=Ke({prop:o,defaultProp:a??!1,onChange:l,caller:a$}),[m,g]=p.useState(null),[_,v]=p.useState(null),b=p.useRef(!1),M=m?!!i||!!m.closest("form"):!0,x={checked:f,disabled:r,setChecked:k,control:m,setControl:g,name:s,form:i,value:y,hasConsumerStoppedPropagationRef:b,required:u,defaultChecked:cn(a)?!1:a,isFormControl:M,bubbleInput:_,setBubbleInput:v};return d.jsx(moe,{scope:t,...x,children:goe(h)?h(x):n})}var Pq="CheckboxTrigger",Tq=p.forwardRef(({__scopeCheckbox:e,onKeyDown:t,onClick:o,...n},a)=>{const{control:r,value:i,disabled:s,checked:l,required:u,setControl:y,setChecked:h,hasConsumerStoppedPropagationRef:f,isFormControl:k,bubbleInput:m}=FI(Pq,e),g=be(a,y),_=p.useRef(l);return p.useEffect(()=>{const v=r?.form;if(v){const b=()=>h(_.current);return v.addEventListener("reset",b),()=>v.removeEventListener("reset",b)}},[r,h]),d.jsx(se.button,{type:"button",role:"checkbox","aria-checked":cn(l)?"mixed":l,"aria-required":u,"data-state":qq(l),"data-disabled":s?"":void 0,disabled:s,value:i,...n,ref:g,onKeyDown:X(t,v=>{v.key==="Enter"&&v.preventDefault()}),onClick:X(o,v=>{h(b=>cn(b)?!0:!b),m&&k&&(f.current=v.isPropagationStopped(),f.current||v.stopPropagation())})})});Tq.displayName=Pq;var BI=p.forwardRef((e,t)=>{const{__scopeCheckbox:o,name:n,checked:a,defaultChecked:r,required:i,disabled:s,value:l,onCheckedChange:u,form:y,...h}=e;return d.jsx(koe,{__scopeCheckbox:o,checked:a,defaultChecked:r,disabled:s,required:i,onCheckedChange:u,name:n,form:y,value:l,internal_do_not_use_render:({isFormControl:f})=>d.jsxs(d.Fragment,{children:[d.jsx(Tq,{...h,ref:t,__scopeCheckbox:o}),f&&d.jsx(Oq,{__scopeCheckbox:o})]})})});BI.displayName=a$;var Dq="CheckboxIndicator",Eq=p.forwardRef((e,t)=>{const{__scopeCheckbox:o,forceMount:n,...a}=e,r=FI(Dq,o);return d.jsx(Qe,{present:n||cn(r.checked)||r.checked===!0,children:d.jsx(se.span,{"data-state":qq(r.checked),"data-disabled":r.disabled?"":void 0,...a,ref:t,style:{pointerEvents:"none",...e.style}})})});Eq.displayName=Dq;var zq="CheckboxBubbleInput",Oq=p.forwardRef(({__scopeCheckbox:e,...t},o)=>{const{control:n,hasConsumerStoppedPropagationRef:a,checked:r,defaultChecked:i,required:s,disabled:l,name:u,value:y,form:h,bubbleInput:f,setBubbleInput:k}=FI(zq,e),m=be(o,k),g=ms(r),_=Ld(n);p.useEffect(()=>{const b=f;if(!b)return;const M=window.HTMLInputElement.prototype,N=Object.getOwnPropertyDescriptor(M,"checked").set,C=!a.current;if(g!==r&&N){const $=new Event("click",{bubbles:C});b.indeterminate=cn(r),N.call(b,cn(r)?!1:r),b.dispatchEvent($)}},[f,g,r,a]);const v=p.useRef(cn(r)?!1:r);return d.jsx(se.input,{type:"checkbox","aria-hidden":!0,defaultChecked:i??v.current,required:s,disabled:l,name:u,value:y,form:h,...t,tabIndex:-1,ref:m,style:{...t.style,..._,position:"absolute",pointerEvents:"none",opacity:0,margin:0,transform:"translateX(-100%)"}})});Oq.displayName=zq;function goe(e){return typeof e=="function"}function cn(e){return e==="indeterminate"}function qq(e){return cn(e)?"indeterminate":e?"checked":"unchecked"}const Id=p.forwardRef(({className:e,...t},o)=>d.jsx(BI,{ref:o,className:S("grid place-content-center peer h-4 w-4 shrink-0 rounded-sm border border-primary ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground",e),...t,children:d.jsx(Eq,{className:S("grid place-content-center text-current"),children:d.jsx(po,{className:"h-4 w-4"})})}));Id.displayName=BI.displayName;const jq=rD,Hq=AS,Vq=TS;var Fq=1,voe=.9,_oe=.8,boe=.17,WI=.1,UI=.999,Moe=.9999,woe=.99,xoe=/[\\\/_+.#"@\[\(\{&]/,Noe=/[\\\/_+.#"@\[\(\{&]/g,Coe=/[\s-]/,Bq=/[\s-]/g;function RI(e,t,o,n,a,r,i){if(r===t.length)return a===e.length?Fq:woe;var s=`${a},${r}`;if(i[s]!==void 0)return i[s];for(var l=n.charAt(r),u=o.indexOf(l,a),y=0,h,f,k,m;u>=0;)h=RI(e,t,o,n,u+1,r+1,i),h>y&&(u===a?h*=Fq:xoe.test(e.charAt(u-1))?(h*=_oe,k=e.slice(a,u-1).match(Noe),k&&a>0&&(h*=Math.pow(UI,k.length))):Coe.test(e.charAt(u-1))?(h*=voe,m=e.slice(a,u-1).match(Bq),m&&a>0&&(h*=Math.pow(UI,m.length))):(h*=boe,a>0&&(h*=Math.pow(UI,u-a))),e.charAt(u)!==t.charAt(r)&&(h*=Moe)),(h<WI&&o.charAt(u-1)===n.charAt(r+1)||n.charAt(r+1)===n.charAt(r)&&o.charAt(u-1)!==n.charAt(r))&&(f=RI(e,t,o,n,u+1,r+2,i),f*WI>h&&(h=f*WI)),h>y&&(y=h),u=o.indexOf(l,u+1);return i[s]=y,y}function Wq(e){return e.toLowerCase().replace(Bq," ")}function $oe(e,t,o){return e=o&&o.length>0?`${e+" "+o.join(" ")}`:e,RI(e,t,Wq(e),Wq(t),0,0,{})}var Ad='[cmdk-group=""]',GI='[cmdk-group-items=""]',Soe='[cmdk-group-heading=""]',Uq='[cmdk-item=""]',Rq=`${Uq}:not([aria-disabled="true"])`,KI="cmdk-item-select",ks="data-value",Loe=(e,t,o)=>$oe(e,t,o),Gq=p.createContext(void 0),Pd=()=>p.useContext(Gq),Kq=p.createContext(void 0),YI=()=>p.useContext(Kq),Yq=p.createContext(void 0),Xq=p.forwardRef((e,t)=>{let o=gs(()=>{var B,F;return{search:"",value:(F=(B=e.value)!=null?B:e.defaultValue)!=null?F:"",selectedItemId:void 0,filtered:{count:0,items:new Map,groups:new Set}}}),n=gs(()=>new Set),a=gs(()=>new Map),r=gs(()=>new Map),i=gs(()=>new Set),s=Zq(e),{label:l,children:u,value:y,onValueChange:h,filter:f,shouldFilter:k,loop:m,disablePointerSelection:g=!1,vimBindings:_=!0,...v}=e,b=We(),M=We(),x=We(),N=p.useRef(null),C=Hoe();Ac(()=>{if(y!==void 0){let B=y.trim();o.current.value=B,$.emit()}},[y]),Ac(()=>{C(6,T)},[]);let $=p.useMemo(()=>({subscribe:B=>(i.current.add(B),()=>i.current.delete(B)),snapshot:()=>o.current,setState:(B,F,K)=>{var G,ie,V,te;if(!Object.is(o.current[B],F)){if(o.current[B]=F,B==="search")O(),z(),C(1,E);else if(B==="value"){if(document.activeElement.hasAttribute("cmdk-input")||document.activeElement.hasAttribute("cmdk-root")){let fe=document.getElementById(x);fe?fe.focus():(G=document.getElementById(b))==null||G.focus()}if(C(7,()=>{var fe;o.current.selectedItemId=(fe=W())==null?void 0:fe.id,$.emit()}),K||C(5,T),((ie=s.current)==null?void 0:ie.value)!==void 0){let fe=F??"";(te=(V=s.current).onValueChange)==null||te.call(V,fe);return}}$.emit()}},emit:()=>{i.current.forEach(B=>B())}}),[]),L=p.useMemo(()=>({value:(B,F,K)=>{var G;F!==((G=r.current.get(B))==null?void 0:G.value)&&(r.current.set(B,{value:F,keywords:K}),o.current.filtered.items.set(B,A(F,K)),C(2,()=>{z(),$.emit()}))},item:(B,F)=>(n.current.add(B),F&&(a.current.has(F)?a.current.get(F).add(B):a.current.set(F,new Set([B]))),C(3,()=>{O(),z(),o.current.value||E(),$.emit()}),()=>{r.current.delete(B),n.current.delete(B),o.current.filtered.items.delete(B);let K=W();C(4,()=>{O(),K?.getAttribute("id")===B&&E(),$.emit()})}),group:B=>(a.current.has(B)||a.current.set(B,new Set),()=>{r.current.delete(B),a.current.delete(B)}),filter:()=>s.current.shouldFilter,label:l||e["aria-label"],getDisablePointerSelection:()=>s.current.disablePointerSelection,listId:b,inputId:x,labelId:M,listInnerRef:N}),[]);function A(B,F){var K,G;let ie=(G=(K=s.current)==null?void 0:K.filter)!=null?G:Loe;return B?ie(B,o.current.search,F):0}function z(){if(!o.current.search||s.current.shouldFilter===!1)return;let B=o.current.filtered.items,F=[];o.current.filtered.groups.forEach(G=>{let ie=a.current.get(G),V=0;ie.forEach(te=>{let fe=B.get(te);V=Math.max(fe,V)}),F.push([G,V])});let K=N.current;R().sort((G,ie)=>{var V,te;let fe=G.getAttribute("id"),pe=ie.getAttribute("id");return((V=B.get(pe))!=null?V:0)-((te=B.get(fe))!=null?te:0)}).forEach(G=>{let ie=G.closest(GI);ie?ie.appendChild(G.parentElement===ie?G:G.closest(`${GI} > *`)):K.appendChild(G.parentElement===K?G:G.closest(`${GI} > *`))}),F.sort((G,ie)=>ie[1]-G[1]).forEach(G=>{var ie;let V=(ie=N.current)==null?void 0:ie.querySelector(`${Ad}[${ks}="${encodeURIComponent(G[0])}"]`);V?.parentElement.appendChild(V)})}function E(){let B=R().find(K=>K.getAttribute("aria-disabled")!=="true"),F=B?.getAttribute(ks);$.setState("value",F||void 0)}function O(){var B,F,K,G;if(!o.current.search||s.current.shouldFilter===!1){o.current.filtered.count=n.current.size;return}o.current.filtered.groups=new Set;let ie=0;for(let V of n.current){let te=(F=(B=r.current.get(V))==null?void 0:B.value)!=null?F:"",fe=(G=(K=r.current.get(V))==null?void 0:K.keywords)!=null?G:[],pe=A(te,fe);o.current.filtered.items.set(V,pe),pe>0&&ie++}for(let[V,te]of a.current)for(let fe of te)if(o.current.filtered.items.get(fe)>0){o.current.filtered.groups.add(V);break}o.current.filtered.count=ie}function T(){var B,F,K;let G=W();G&&(((B=G.parentElement)==null?void 0:B.firstChild)===G&&((K=(F=G.closest(Ad))==null?void 0:F.querySelector(Soe))==null||K.scrollIntoView({block:"nearest"})),G.scrollIntoView({block:"nearest"}))}function W(){var B;return(B=N.current)==null?void 0:B.querySelector(`${Uq}[aria-selected="true"]`)}function R(){var B;return Array.from(((B=N.current)==null?void 0:B.querySelectorAll(Rq))||[])}function H(B){let F=R()[B];F&&$.setState("value",F.getAttribute(ks))}function Y(B){var F;let K=W(),G=R(),ie=G.findIndex(te=>te===K),V=G[ie+B];(F=s.current)!=null&&F.loop&&(V=ie+B<0?G[G.length-1]:ie+B===G.length?G[0]:G[ie+B]),V&&$.setState("value",V.getAttribute(ks))}function j(B){let F=W(),K=F?.closest(Ad),G;for(;K&&!G;)K=B>0?qoe(K,Ad):joe(K,Ad),G=K?.querySelector(Rq);G?$.setState("value",G.getAttribute(ks)):Y(B)}let U=()=>H(R().length-1),ce=B=>{B.preventDefault(),B.metaKey?U():B.altKey?j(1):Y(1)},le=B=>{B.preventDefault(),B.metaKey?H(0):B.altKey?j(-1):Y(-1)};return p.createElement(ht.div,{ref:t,tabIndex:-1,...v,"cmdk-root":"",onKeyDown:B=>{var F;(F=v.onKeyDown)==null||F.call(v,B);let K=B.nativeEvent.isComposing||B.keyCode===229;if(!(B.defaultPrevented||K))switch(B.key){case"n":case"j":{_&&B.ctrlKey&&ce(B);break}case"ArrowDown":{ce(B);break}case"p":case"k":{_&&B.ctrlKey&&le(B);break}case"ArrowUp":{le(B);break}case"Home":{B.preventDefault(),H(0);break}case"End":{B.preventDefault(),U();break}case"Enter":{B.preventDefault();let G=W();if(G){let ie=new Event(KI);G.dispatchEvent(ie)}}}}},p.createElement("label",{"cmdk-label":"",htmlFor:L.inputId,id:L.labelId,style:Foe},l),r$(e,B=>p.createElement(Kq.Provider,{value:$},p.createElement(Gq.Provider,{value:L},B))))}),Ioe=p.forwardRef((e,t)=>{var o,n;let a=We(),r=p.useRef(null),i=p.useContext(Yq),s=Pd(),l=Zq(e),u=(n=(o=l.current)==null?void 0:o.forceMount)!=null?n:i?.forceMount;Ac(()=>{if(!u)return s.item(a,i?.id)},[u]);let y=Qq(a,r,[e.value,e.children,r],e.keywords),h=YI(),f=sn(C=>C.value&&C.value===y.current),k=sn(C=>u||s.filter()===!1?!0:C.search?C.filtered.items.get(a)>0:!0);p.useEffect(()=>{let C=r.current;if(!(!C||e.disabled))return C.addEventListener(KI,m),()=>C.removeEventListener(KI,m)},[k,e.onSelect,e.disabled]);function m(){var C,$;g(),($=(C=l.current).onSelect)==null||$.call(C,y.current)}function g(){h.setState("value",y.current,!0)}if(!k)return null;let{disabled:_,value:v,onSelect:b,forceMount:M,keywords:x,...N}=e;return p.createElement(ht.div,{ref:Xt(r,t),...N,id:a,"cmdk-item":"",role:"option","aria-disabled":!!_,"aria-selected":!!f,"data-disabled":!!_,"data-selected":!!f,onPointerMove:_||s.getDisablePointerSelection()?void 0:g,onClick:_?void 0:m},e.children)}),Aoe=p.forwardRef((e,t)=>{let{heading:o,children:n,forceMount:a,...r}=e,i=We(),s=p.useRef(null),l=p.useRef(null),u=We(),y=Pd(),h=sn(k=>a||y.filter()===!1?!0:k.search?k.filtered.groups.has(i):!0);Ac(()=>y.group(i),[]),Qq(i,s,[e.value,e.heading,l]);let f=p.useMemo(()=>({id:i,forceMount:a}),[a]);return p.createElement(ht.div,{ref:Xt(s,t),...r,"cmdk-group":"",role:"presentation",hidden:h?void 0:!0},o&&p.createElement("div",{ref:l,"cmdk-group-heading":"","aria-hidden":!0,id:u},o),r$(e,k=>p.createElement("div",{"cmdk-group-items":"",role:"group","aria-labelledby":o?u:void 0},p.createElement(Yq.Provider,{value:f},k))))}),Poe=p.forwardRef((e,t)=>{let{alwaysRender:o,...n}=e,a=p.useRef(null),r=sn(i=>!i.search);return!o&&!r?null:p.createElement(ht.div,{ref:Xt(a,t),...n,"cmdk-separator":"",role:"separator"})}),Toe=p.forwardRef((e,t)=>{let{onValueChange:o,...n}=e,a=e.value!=null,r=YI(),i=sn(u=>u.search),s=sn(u=>u.selectedItemId),l=Pd();return p.useEffect(()=>{e.value!=null&&r.setState("search",e.value)},[e.value]),p.createElement(ht.input,{ref:t,...n,"cmdk-input":"",autoComplete:"off",autoCorrect:"off",spellCheck:!1,"aria-autocomplete":"list",role:"combobox","aria-expanded":!0,"aria-controls":l.listId,"aria-labelledby":l.labelId,"aria-activedescendant":s,id:l.inputId,type:"text",value:a?e.value:i,onChange:u=>{a||r.setState("search",u.target.value),o?.(u.target.value)}})}),Doe=p.forwardRef((e,t)=>{let{children:o,label:n="Suggestions",...a}=e,r=p.useRef(null),i=p.useRef(null),s=sn(u=>u.selectedItemId),l=Pd();return p.useEffect(()=>{if(i.current&&r.current){let u=i.current,y=r.current,h,f=new ResizeObserver(()=>{h=requestAnimationFrame(()=>{let k=u.offsetHeight;y.style.setProperty("--cmdk-list-height",k.toFixed(1)+"px")})});return f.observe(u),()=>{cancelAnimationFrame(h),f.unobserve(u)}}},[]),p.createElement(ht.div,{ref:Xt(r,t),...a,"cmdk-list":"",role:"listbox",tabIndex:-1,"aria-activedescendant":s,"aria-label":n,id:l.listId},r$(e,u=>p.createElement("div",{ref:Xt(i,l.listInnerRef),"cmdk-list-sizer":""},u)))}),Eoe=p.forwardRef((e,t)=>{let{open:o,onOpenChange:n,overlayClassName:a,contentClassName:r,container:i,...s}=e;return p.createElement(cd,{open:o,onOpenChange:n},p.createElement(sd,{container:i},p.createElement(Cc,{"cmdk-overlay":"",className:a}),p.createElement($c,{"aria-label":e.label,"cmdk-dialog":"",className:r},p.createElement(Xq,{ref:t,...s}))))}),zoe=p.forwardRef((e,t)=>sn(o=>o.filtered.count===0)?p.createElement(ht.div,{ref:t,...e,"cmdk-empty":"",role:"presentation"}):null),Ooe=p.forwardRef((e,t)=>{let{progress:o,children:n,label:a="Loading...",...r}=e;return p.createElement(ht.div,{ref:t,...r,"cmdk-loading":"",role:"progressbar","aria-valuenow":o,"aria-valuemin":0,"aria-valuemax":100,"aria-label":a},r$(e,i=>p.createElement("div",{"aria-hidden":!0},i)))}),Nt=Object.assign(Xq,{List:Doe,Item:Ioe,Input:Toe,Group:Aoe,Separator:Poe,Dialog:Eoe,Empty:zoe,Loading:Ooe});function qoe(e,t){let o=e.nextElementSibling;for(;o;){if(o.matches(t))return o;o=o.nextElementSibling}}function joe(e,t){let o=e.previousElementSibling;for(;o;){if(o.matches(t))return o;o=o.previousElementSibling}}function Zq(e){let t=p.useRef(e);return Ac(()=>{t.current=e}),t}var Ac=typeof window>"u"?p.useEffect:p.useLayoutEffect;function gs(e){let t=p.useRef();return t.current===void 0&&(t.current=e()),t}function sn(e){let t=YI(),o=()=>e(t.snapshot());return p.useSyncExternalStore(t.subscribe,o,o)}function Qq(e,t,o,n=[]){let a=p.useRef(),r=Pd();return Ac(()=>{var i;let s=(()=>{var u;for(let y of o){if(typeof y=="string")return y.trim();if(typeof y=="object"&&"current"in y)return y.current?(u=y.current.textContent)==null?void 0:u.trim():a.current}})(),l=n.map(u=>u.trim());r.value(e,s,l),(i=t.current)==null||i.setAttribute(ks,s),a.current=s}),a}var Hoe=()=>{let[e,t]=p.useState(),o=gs(()=>new Map);return Ac(()=>{o.current.forEach(n=>n()),o.current=new Map},[e]),(n,a)=>{o.current.set(n,a),t({})}};function Voe(e){let t=e.type;return typeof t=="function"?t(e.props):"render"in t?t.render(e.props):e}function r$({asChild:e,children:t},o){return e&&p.isValidElement(t)?p.cloneElement(Voe(t),{ref:t.ref},o(t.props.children)):o(t)}var Foe={position:"absolute",width:"1px",height:"1px",padding:"0",margin:"-1px",overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",borderWidth:"0"};const Boe=cd,Woe=jC,Uoe=sd,Jq=p.forwardRef(({className:e,...t},o)=>d.jsx(Cc,{ref:o,className:S("fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",e),...t}));Jq.displayName=Cc.displayName;const ej=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(Uoe,{children:[d.jsx(Jq,{}),d.jsxs($c,{ref:n,className:S("fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",e),...o,children:[t,d.jsxs(dd,{className:"absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground",children:[d.jsx(on,{className:"h-4 w-4"}),d.jsx("span",{className:"sr-only",children:"Close"})]})]})]}));ej.displayName=$c.displayName;const tj=({className:e,...t})=>d.jsx("div",{className:S("flex flex-col space-y-1.5 text-center sm:text-left",e),...t});tj.displayName="DialogHeader";const oj=({className:e,...t})=>d.jsx("div",{className:S("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",e),...t});oj.displayName="DialogFooter";const nj=p.forwardRef(({className:e,...t},o)=>d.jsx(rs,{ref:o,className:S("text-lg font-semibold leading-none tracking-tight",e),...t}));nj.displayName=rs.displayName;const aj=p.forwardRef(({className:e,...t},o)=>d.jsx(is,{ref:o,className:S("text-sm text-muted-foreground",e),...t}));aj.displayName=is.displayName;const XI=p.forwardRef(({className:e,...t},o)=>d.jsx(Nt,{ref:o,className:S("flex h-full w-full flex-col overflow-hidden rounded-md bg-popover text-popover-foreground",e),...t}));XI.displayName=Nt.displayName;const ZI=p.forwardRef(({className:e,...t},o)=>d.jsxs("div",{className:"flex items-center border-b px-3","cmdk-input-wrapper":"",children:[d.jsx(Qr,{className:"mr-2 h-4 w-4 shrink-0 opacity-50"}),d.jsx(Nt.Input,{ref:o,className:S("flex h-11 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50",e),...t})]}));ZI.displayName=Nt.Input.displayName;const QI=p.forwardRef(({className:e,...t},o)=>d.jsx(Nt.List,{ref:o,className:S("max-h-[300px] overflow-y-auto overflow-x-hidden",e),...t}));QI.displayName=Nt.List.displayName;const JI=p.forwardRef((e,t)=>d.jsx(Nt.Empty,{ref:t,className:"py-6 text-center text-sm",...e}));JI.displayName=Nt.Empty.displayName;const eA=p.forwardRef(({className:e,...t},o)=>d.jsx(Nt.Group,{ref:o,className:S("overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground",e),...t}));eA.displayName=Nt.Group.displayName;const Roe=p.forwardRef(({className:e,...t},o)=>d.jsx(Nt.Separator,{ref:o,className:S("-mx-1 h-px bg-border",e),...t}));Roe.displayName=Nt.Separator.displayName;const tA=p.forwardRef(({className:e,...t},o)=>d.jsx(Nt.Item,{ref:o,className:S("relative flex cursor-default gap-2 select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled=true]:pointer-events-none data-[selected='true']:bg-accent data-[selected=true]:text-accent-foreground data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",e),...t}));tA.displayName=Nt.Item.displayName;const Goe=["top","right","bottom","left"],dn=Math.min,Et=Math.max,i$=Math.round,c$=Math.floor,Co=e=>({x:e,y:e}),Koe={left:"right",right:"left",bottom:"top",top:"bottom"},Yoe={start:"end",end:"start"};function oA(e,t,o){return Et(e,dn(t,o))}function Ro(e,t){return typeof e=="function"?e(t):e}function Go(e){return e.split("-")[0]}function vs(e){return e.split("-")[1]}function nA(e){return e==="x"?"y":"x"}function aA(e){return e==="y"?"height":"width"}const Xoe=new Set(["top","bottom"]);function $o(e){return Xoe.has(Go(e))?"y":"x"}function rA(e){return nA($o(e))}function Zoe(e,t,o){o===void 0&&(o=!1);const n=vs(e),a=rA(e),r=aA(a);let i=a==="x"?n===(o?"end":"start")?"right":"left":n==="start"?"bottom":"top";return t.reference[r]>t.floating[r]&&(i=s$(i)),[i,s$(i)]}function Qoe(e){const t=s$(e);return[iA(e),t,iA(t)]}function iA(e){return e.replace(/start|end/g,t=>Yoe[t])}const rj=["left","right"],ij=["right","left"],Joe=["top","bottom"],ene=["bottom","top"];function tne(e,t,o){switch(e){case"top":case"bottom":return o?t?ij:rj:t?rj:ij;case"left":case"right":return t?Joe:ene;default:return[]}}function one(e,t,o,n){const a=vs(e);let r=tne(Go(e),o==="start",n);return a&&(r=r.map(i=>i+"-"+a),t&&(r=r.concat(r.map(iA)))),r}function s$(e){return e.replace(/left|right|bottom|top/g,t=>Koe[t])}function nne(e){return{top:0,right:0,bottom:0,left:0,...e}}function cj(e){return typeof e!="number"?nne(e):{top:e,right:e,bottom:e,left:e}}function d$(e){const{x:t,y:o,width:n,height:a}=e;return{width:n,height:a,top:o,left:t,right:t+n,bottom:o+a,x:t,y:o}}function sj(e,t,o){let{reference:n,floating:a}=e;const r=$o(t),i=rA(t),s=aA(i),l=Go(t),u=r==="y",y=n.x+n.width/2-a.width/2,h=n.y+n.height/2-a.height/2,f=n[s]/2-a[s]/2;let k;switch(l){case"top":k={x:y,y:n.y-a.height};break;case"bottom":k={x:y,y:n.y+n.height};break;case"right":k={x:n.x+n.width,y:h};break;case"left":k={x:n.x-a.width,y:h};break;default:k={x:n.x,y:n.y}}switch(vs(t)){case"start":k[i]-=f*(o&&u?-1:1);break;case"end":k[i]+=f*(o&&u?-1:1);break}return k}async function ane(e,t){var o;t===void 0&&(t={});const{x:n,y:a,platform:r,rects:i,elements:s,strategy:l}=e,{boundary:u="clippingAncestors",rootBoundary:y="viewport",elementContext:h="floating",altBoundary:f=!1,padding:k=0}=Ro(t,e),m=cj(k),_=s[f?h==="floating"?"reference":"floating":h],v=d$(await r.getClippingRect({element:(o=await(r.isElement==null?void 0:r.isElement(_)))==null||o?_:_.contextElement||await(r.getDocumentElement==null?void 0:r.getDocumentElement(s.floating)),boundary:u,rootBoundary:y,strategy:l})),b=h==="floating"?{x:n,y:a,width:i.floating.width,height:i.floating.height}:i.reference,M=await(r.getOffsetParent==null?void 0:r.getOffsetParent(s.floating)),x=await(r.isElement==null?void 0:r.isElement(M))?await(r.getScale==null?void 0:r.getScale(M))||{x:1,y:1}:{x:1,y:1},N=d$(r.convertOffsetParentRelativeRectToViewportRelativeRect?await r.convertOffsetParentRelativeRectToViewportRelativeRect({elements:s,rect:b,offsetParent:M,strategy:l}):b);return{top:(v.top-N.top+m.top)/x.y,bottom:(N.bottom-v.bottom+m.bottom)/x.y,left:(v.left-N.left+m.left)/x.x,right:(N.right-v.right+m.right)/x.x}}const rne=async(e,t,o)=>{const{placement:n="bottom",strategy:a="absolute",middleware:r=[],platform:i}=o,s=r.filter(Boolean),l=await(i.isRTL==null?void 0:i.isRTL(t));let u=await i.getElementRects({reference:e,floating:t,strategy:a}),{x:y,y:h}=sj(u,n,l),f=n,k={},m=0;for(let _=0;_<s.length;_++){var g;const{name:v,fn:b}=s[_],{x:M,y:x,data:N,reset:C}=await b({x:y,y:h,initialPlacement:n,placement:f,strategy:a,middlewareData:k,rects:u,platform:{...i,detectOverflow:(g=i.detectOverflow)!=null?g:ane},elements:{reference:e,floating:t}});y=M??y,h=x??h,k={...k,[v]:{...k[v],...N}},C&&m<=50&&(m++,typeof C=="object"&&(C.placement&&(f=C.placement),C.rects&&(u=C.rects===!0?await i.getElementRects({reference:e,floating:t,strategy:a}):C.rects),{x:y,y:h}=sj(u,f,l)),_=-1)}return{x:y,y:h,placement:f,strategy:a,middlewareData:k}},ine=e=>({name:"arrow",options:e,async fn(t){const{x:o,y:n,placement:a,rects:r,platform:i,elements:s,middlewareData:l}=t,{element:u,padding:y=0}=Ro(e,t)||{};if(u==null)return{};const h=cj(y),f={x:o,y:n},k=rA(a),m=aA(k),g=await i.getDimensions(u),_=k==="y",v=_?"top":"left",b=_?"bottom":"right",M=_?"clientHeight":"clientWidth",x=r.reference[m]+r.reference[k]-f[k]-r.floating[m],N=f[k]-r.reference[k],C=await(i.getOffsetParent==null?void 0:i.getOffsetParent(u));let $=C?C[M]:0;(!$||!await(i.isElement==null?void 0:i.isElement(C)))&&($=s.floating[M]||r.floating[m]);const L=x/2-N/2,A=$/2-g[m]/2-1,z=dn(h[v],A),E=dn(h[b],A),O=z,T=$-g[m]-E,W=$/2-g[m]/2+L,R=oA(O,W,T),H=!l.arrow&&vs(a)!=null&&W!==R&&r.reference[m]/2-(W<O?z:E)-g[m]/2<0,Y=H?W<O?W-O:W-T:0;return{[k]:f[k]+Y,data:{[k]:R,centerOffset:W-R-Y,...H&&{alignmentOffset:Y}},reset:H}}}),cne=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var o,n;const{placement:a,middlewareData:r,rects:i,initialPlacement:s,platform:l,elements:u}=t,{mainAxis:y=!0,crossAxis:h=!0,fallbackPlacements:f,fallbackStrategy:k="bestFit",fallbackAxisSideDirection:m="none",flipAlignment:g=!0,..._}=Ro(e,t);if((o=r.arrow)!=null&&o.alignmentOffset)return{};const v=Go(a),b=$o(s),M=Go(s)===s,x=await(l.isRTL==null?void 0:l.isRTL(u.floating)),N=f||(M||!g?[s$(s)]:Qoe(s)),C=m!=="none";!f&&C&&N.push(...one(s,g,m,x));const $=[s,...N],L=await l.detectOverflow(t,_),A=[];let z=((n=r.flip)==null?void 0:n.overflows)||[];if(y&&A.push(L[v]),h){const W=Zoe(a,i,x);A.push(L[W[0]],L[W[1]])}if(z=[...z,{placement:a,overflows:A}],!A.every(W=>W<=0)){var E,O;const W=(((E=r.flip)==null?void 0:E.index)||0)+1,R=$[W];if(R&&(!(h==="alignment"?b!==$o(R):!1)||z.every(j=>$o(j.placement)===b?j.overflows[0]>0:!0)))return{data:{index:W,overflows:z},reset:{placement:R}};let H=(O=z.filter(Y=>Y.overflows[0]<=0).sort((Y,j)=>Y.overflows[1]-j.overflows[1])[0])==null?void 0:O.placement;if(!H)switch(k){case"bestFit":{var T;const Y=(T=z.filter(j=>{if(C){const U=$o(j.placement);return U===b||U==="y"}return!0}).map(j=>[j.placement,j.overflows.filter(U=>U>0).reduce((U,ce)=>U+ce,0)]).sort((j,U)=>j[1]-U[1])[0])==null?void 0:T[0];Y&&(H=Y);break}case"initialPlacement":H=s;break}if(a!==H)return{reset:{placement:H}}}return{}}}};function dj(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function lj(e){return Goe.some(t=>e[t]>=0)}const sne=function(e){return e===void 0&&(e={}),{name:"hide",options:e,async fn(t){const{rects:o,platform:n}=t,{strategy:a="referenceHidden",...r}=Ro(e,t);switch(a){case"referenceHidden":{const i=await n.detectOverflow(t,{...r,elementContext:"reference"}),s=dj(i,o.reference);return{data:{referenceHiddenOffsets:s,referenceHidden:lj(s)}}}case"escaped":{const i=await n.detectOverflow(t,{...r,altBoundary:!0}),s=dj(i,o.floating);return{data:{escapedOffsets:s,escaped:lj(s)}}}default:return{}}}}},uj=new Set(["left","top"]);async function dne(e,t){const{placement:o,platform:n,elements:a}=e,r=await(n.isRTL==null?void 0:n.isRTL(a.floating)),i=Go(o),s=vs(o),l=$o(o)==="y",u=uj.has(i)?-1:1,y=r&&l?-1:1,h=Ro(t,e);let{mainAxis:f,crossAxis:k,alignmentAxis:m}=typeof h=="number"?{mainAxis:h,crossAxis:0,alignmentAxis:null}:{mainAxis:h.mainAxis||0,crossAxis:h.crossAxis||0,alignmentAxis:h.alignmentAxis};return s&&typeof m=="number"&&(k=s==="end"?m*-1:m),l?{x:k*y,y:f*u}:{x:f*u,y:k*y}}const lne=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){var o,n;const{x:a,y:r,placement:i,middlewareData:s}=t,l=await dne(t,e);return i===((o=s.offset)==null?void 0:o.placement)&&(n=s.arrow)!=null&&n.alignmentOffset?{}:{x:a+l.x,y:r+l.y,data:{...l,placement:i}}}}},une=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:o,y:n,placement:a,platform:r}=t,{mainAxis:i=!0,crossAxis:s=!1,limiter:l={fn:v=>{let{x:b,y:M}=v;return{x:b,y:M}}},...u}=Ro(e,t),y={x:o,y:n},h=await r.detectOverflow(t,u),f=$o(Go(a)),k=nA(f);let m=y[k],g=y[f];if(i){const v=k==="y"?"top":"left",b=k==="y"?"bottom":"right",M=m+h[v],x=m-h[b];m=oA(M,m,x)}if(s){const v=f==="y"?"top":"left",b=f==="y"?"bottom":"right",M=g+h[v],x=g-h[b];g=oA(M,g,x)}const _=l.fn({...t,[k]:m,[f]:g});return{..._,data:{x:_.x-o,y:_.y-n,enabled:{[k]:i,[f]:s}}}}}},hne=function(e){return e===void 0&&(e={}),{options:e,fn(t){const{x:o,y:n,placement:a,rects:r,middlewareData:i}=t,{offset:s=0,mainAxis:l=!0,crossAxis:u=!0}=Ro(e,t),y={x:o,y:n},h=$o(a),f=nA(h);let k=y[f],m=y[h];const g=Ro(s,t),_=typeof g=="number"?{mainAxis:g,crossAxis:0}:{mainAxis:0,crossAxis:0,...g};if(l){const M=f==="y"?"height":"width",x=r.reference[f]-r.floating[M]+_.mainAxis,N=r.reference[f]+r.reference[M]-_.mainAxis;k<x?k=x:k>N&&(k=N)}if(u){var v,b;const M=f==="y"?"width":"height",x=uj.has(Go(a)),N=r.reference[h]-r.floating[M]+(x&&((v=i.offset)==null?void 0:v[h])||0)+(x?0:_.crossAxis),C=r.reference[h]+r.reference[M]+(x?0:((b=i.offset)==null?void 0:b[h])||0)-(x?_.crossAxis:0);m<N?m=N:m>C&&(m=C)}return{[f]:k,[h]:m}}}},pne=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(t){var o,n;const{placement:a,rects:r,platform:i,elements:s}=t,{apply:l=()=>{},...u}=Ro(e,t),y=await i.detectOverflow(t,u),h=Go(a),f=vs(a),k=$o(a)==="y",{width:m,height:g}=r.floating;let _,v;h==="top"||h==="bottom"?(_=h,v=f===(await(i.isRTL==null?void 0:i.isRTL(s.floating))?"start":"end")?"left":"right"):(v=h,_=f==="end"?"top":"bottom");const b=g-y.top-y.bottom,M=m-y.left-y.right,x=dn(g-y[_],b),N=dn(m-y[v],M),C=!t.middlewareData.shift;let $=x,L=N;if((o=t.middlewareData.shift)!=null&&o.enabled.x&&(L=M),(n=t.middlewareData.shift)!=null&&n.enabled.y&&($=b),C&&!f){const z=Et(y.left,0),E=Et(y.right,0),O=Et(y.top,0),T=Et(y.bottom,0);k?L=m-2*(z!==0||E!==0?z+E:Et(y.left,y.right)):$=g-2*(O!==0||T!==0?O+T:Et(y.top,y.bottom))}await l({...t,availableWidth:L,availableHeight:$});const A=await i.getDimensions(s.floating);return m!==A.width||g!==A.height?{reset:{rects:!0}}:{}}}};function l$(){return typeof window<"u"}function _s(e){return hj(e)?(e.nodeName||"").toLowerCase():"#document"}function zt(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function So(e){var t;return(t=(hj(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function hj(e){return l$()?e instanceof Node||e instanceof zt(e).Node:!1}function no(e){return l$()?e instanceof Element||e instanceof zt(e).Element:!1}function Lo(e){return l$()?e instanceof HTMLElement||e instanceof zt(e).HTMLElement:!1}function pj(e){return!l$()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof zt(e).ShadowRoot}const yne=new Set(["inline","contents"]);function Td(e){const{overflow:t,overflowX:o,overflowY:n,display:a}=ao(e);return/auto|scroll|overlay|hidden|clip/.test(t+n+o)&&!yne.has(a)}const fne=new Set(["table","td","th"]);function mne(e){return fne.has(_s(e))}const kne=[":popover-open",":modal"];function u$(e){return kne.some(t=>{try{return e.matches(t)}catch{return!1}})}const gne=["transform","translate","scale","rotate","perspective"],vne=["transform","translate","scale","rotate","perspective","filter"],_ne=["paint","layout","strict","content"];function cA(e){const t=sA(),o=no(e)?ao(e):e;return gne.some(n=>o[n]?o[n]!=="none":!1)||(o.containerType?o.containerType!=="normal":!1)||!t&&(o.backdropFilter?o.backdropFilter!=="none":!1)||!t&&(o.filter?o.filter!=="none":!1)||vne.some(n=>(o.willChange||"").includes(n))||_ne.some(n=>(o.contain||"").includes(n))}function bne(e){let t=ln(e);for(;Lo(t)&&!bs(t);){if(cA(t))return t;if(u$(t))return null;t=ln(t)}return null}function sA(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}const Mne=new Set(["html","body","#document"]);function bs(e){return Mne.has(_s(e))}function ao(e){return zt(e).getComputedStyle(e)}function h$(e){return no(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function ln(e){if(_s(e)==="html")return e;const t=e.assignedSlot||e.parentNode||pj(e)&&e.host||So(e);return pj(t)?t.host:t}function yj(e){const t=ln(e);return bs(t)?e.ownerDocument?e.ownerDocument.body:e.body:Lo(t)&&Td(t)?t:yj(t)}function Dd(e,t,o){var n;t===void 0&&(t=[]),o===void 0&&(o=!0);const a=yj(e),r=a===((n=e.ownerDocument)==null?void 0:n.body),i=zt(a);if(r){const s=dA(i);return t.concat(i,i.visualViewport||[],Td(a)?a:[],s&&o?Dd(s):[])}return t.concat(a,Dd(a,[],o))}function dA(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function fj(e){const t=ao(e);let o=parseFloat(t.width)||0,n=parseFloat(t.height)||0;const a=Lo(e),r=a?e.offsetWidth:o,i=a?e.offsetHeight:n,s=i$(o)!==r||i$(n)!==i;return s&&(o=r,n=i),{width:o,height:n,$:s}}function lA(e){return no(e)?e:e.contextElement}function Ms(e){const t=lA(e);if(!Lo(t))return Co(1);const o=t.getBoundingClientRect(),{width:n,height:a,$:r}=fj(t);let i=(r?i$(o.width):o.width)/n,s=(r?i$(o.height):o.height)/a;return(!i||!Number.isFinite(i))&&(i=1),(!s||!Number.isFinite(s))&&(s=1),{x:i,y:s}}const wne=Co(0);function mj(e){const t=zt(e);return!sA()||!t.visualViewport?wne:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function xne(e,t,o){return t===void 0&&(t=!1),!o||t&&o!==zt(e)?!1:t}function Pc(e,t,o,n){t===void 0&&(t=!1),o===void 0&&(o=!1);const a=e.getBoundingClientRect(),r=lA(e);let i=Co(1);t&&(n?no(n)&&(i=Ms(n)):i=Ms(e));const s=xne(r,o,n)?mj(r):Co(0);let l=(a.left+s.x)/i.x,u=(a.top+s.y)/i.y,y=a.width/i.x,h=a.height/i.y;if(r){const f=zt(r),k=n&&no(n)?zt(n):n;let m=f,g=dA(m);for(;g&&n&&k!==m;){const _=Ms(g),v=g.getBoundingClientRect(),b=ao(g),M=v.left+(g.clientLeft+parseFloat(b.paddingLeft))*_.x,x=v.top+(g.clientTop+parseFloat(b.paddingTop))*_.y;l*=_.x,u*=_.y,y*=_.x,h*=_.y,l+=M,u+=x,m=zt(g),g=dA(m)}}return d$({width:y,height:h,x:l,y:u})}function p$(e,t){const o=h$(e).scrollLeft;return t?t.left+o:Pc(So(e)).left+o}function kj(e,t){const o=e.getBoundingClientRect(),n=o.left+t.scrollLeft-p$(e,o),a=o.top+t.scrollTop;return{x:n,y:a}}function Nne(e){let{elements:t,rect:o,offsetParent:n,strategy:a}=e;const r=a==="fixed",i=So(n),s=t?u$(t.floating):!1;if(n===i||s&&r)return o;let l={scrollLeft:0,scrollTop:0},u=Co(1);const y=Co(0),h=Lo(n);if((h||!h&&!r)&&((_s(n)!=="body"||Td(i))&&(l=h$(n)),Lo(n))){const k=Pc(n);u=Ms(n),y.x=k.x+n.clientLeft,y.y=k.y+n.clientTop}const f=i&&!h&&!r?kj(i,l):Co(0);return{width:o.width*u.x,height:o.height*u.y,x:o.x*u.x-l.scrollLeft*u.x+y.x+f.x,y:o.y*u.y-l.scrollTop*u.y+y.y+f.y}}function Cne(e){return Array.from(e.getClientRects())}function $ne(e){const t=So(e),o=h$(e),n=e.ownerDocument.body,a=Et(t.scrollWidth,t.clientWidth,n.scrollWidth,n.clientWidth),r=Et(t.scrollHeight,t.clientHeight,n.scrollHeight,n.clientHeight);let i=-o.scrollLeft+p$(e);const s=-o.scrollTop;return ao(n).direction==="rtl"&&(i+=Et(t.clientWidth,n.clientWidth)-a),{width:a,height:r,x:i,y:s}}const gj=25;function Sne(e,t){const o=zt(e),n=So(e),a=o.visualViewport;let r=n.clientWidth,i=n.clientHeight,s=0,l=0;if(a){r=a.width,i=a.height;const y=sA();(!y||y&&t==="fixed")&&(s=a.offsetLeft,l=a.offsetTop)}const u=p$(n);if(u<=0){const y=n.ownerDocument,h=y.body,f=getComputedStyle(h),k=y.compatMode==="CSS1Compat"&&parseFloat(f.marginLeft)+parseFloat(f.marginRight)||0,m=Math.abs(n.clientWidth-h.clientWidth-k);m<=gj&&(r-=m)}else u<=gj&&(r+=u);return{width:r,height:i,x:s,y:l}}const Lne=new Set(["absolute","fixed"]);function Ine(e,t){const o=Pc(e,!0,t==="fixed"),n=o.top+e.clientTop,a=o.left+e.clientLeft,r=Lo(e)?Ms(e):Co(1),i=e.clientWidth*r.x,s=e.clientHeight*r.y,l=a*r.x,u=n*r.y;return{width:i,height:s,x:l,y:u}}function vj(e,t,o){let n;if(t==="viewport")n=Sne(e,o);else if(t==="document")n=$ne(So(e));else if(no(t))n=Ine(t,o);else{const a=mj(e);n={x:t.x-a.x,y:t.y-a.y,width:t.width,height:t.height}}return d$(n)}function _j(e,t){const o=ln(e);return o===t||!no(o)||bs(o)?!1:ao(o).position==="fixed"||_j(o,t)}function Ane(e,t){const o=t.get(e);if(o)return o;let n=Dd(e,[],!1).filter(s=>no(s)&&_s(s)!=="body"),a=null;const r=ao(e).position==="fixed";let i=r?ln(e):e;for(;no(i)&&!bs(i);){const s=ao(i),l=cA(i);!l&&s.position==="fixed"&&(a=null),(r?!l&&!a:!l&&s.position==="static"&&!!a&&Lne.has(a.position)||Td(i)&&!l&&_j(e,i))?n=n.filter(y=>y!==i):a=s,i=ln(i)}return t.set(e,n),n}function Pne(e){let{element:t,boundary:o,rootBoundary:n,strategy:a}=e;const i=[...o==="clippingAncestors"?u$(t)?[]:Ane(t,this._c):[].concat(o),n],s=i[0],l=i.reduce((u,y)=>{const h=vj(t,y,a);return u.top=Et(h.top,u.top),u.right=dn(h.right,u.right),u.bottom=dn(h.bottom,u.bottom),u.left=Et(h.left,u.left),u},vj(t,s,a));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}}function Tne(e){const{width:t,height:o}=fj(e);return{width:t,height:o}}function Dne(e,t,o){const n=Lo(t),a=So(t),r=o==="fixed",i=Pc(e,!0,r,t);let s={scrollLeft:0,scrollTop:0};const l=Co(0);function u(){l.x=p$(a)}if(n||!n&&!r)if((_s(t)!=="body"||Td(a))&&(s=h$(t)),n){const k=Pc(t,!0,r,t);l.x=k.x+t.clientLeft,l.y=k.y+t.clientTop}else a&&u();r&&!n&&a&&u();const y=a&&!n&&!r?kj(a,s):Co(0),h=i.left+s.scrollLeft-l.x-y.x,f=i.top+s.scrollTop-l.y-y.y;return{x:h,y:f,width:i.width,height:i.height}}function uA(e){return ao(e).position==="static"}function bj(e,t){if(!Lo(e)||ao(e).position==="fixed")return null;if(t)return t(e);let o=e.offsetParent;return So(e)===o&&(o=o.ownerDocument.body),o}function Mj(e,t){const o=zt(e);if(u$(e))return o;if(!Lo(e)){let a=ln(e);for(;a&&!bs(a);){if(no(a)&&!uA(a))return a;a=ln(a)}return o}let n=bj(e,t);for(;n&&mne(n)&&uA(n);)n=bj(n,t);return n&&bs(n)&&uA(n)&&!cA(n)?o:n||bne(e)||o}const Ene=async function(e){const t=this.getOffsetParent||Mj,o=this.getDimensions,n=await o(e.floating);return{reference:Dne(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:n.width,height:n.height}}};function zne(e){return ao(e).direction==="rtl"}const One={convertOffsetParentRelativeRectToViewportRelativeRect:Nne,getDocumentElement:So,getClippingRect:Pne,getOffsetParent:Mj,getElementRects:Ene,getClientRects:Cne,getDimensions:Tne,getScale:Ms,isElement:no,isRTL:zne};function wj(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function qne(e,t){let o=null,n;const a=So(e);function r(){var s;clearTimeout(n),(s=o)==null||s.disconnect(),o=null}function i(s,l){s===void 0&&(s=!1),l===void 0&&(l=1),r();const u=e.getBoundingClientRect(),{left:y,top:h,width:f,height:k}=u;if(s||t(),!f||!k)return;const m=c$(h),g=c$(a.clientWidth-(y+f)),_=c$(a.clientHeight-(h+k)),v=c$(y),M={rootMargin:-m+"px "+-g+"px "+-_+"px "+-v+"px",threshold:Et(0,dn(1,l))||1};let x=!0;function N(C){const $=C[0].intersectionRatio;if($!==l){if(!x)return i();$?i(!1,$):n=setTimeout(()=>{i(!1,1e-7)},1e3)}$===1&&!wj(u,e.getBoundingClientRect())&&i(),x=!1}try{o=new IntersectionObserver(N,{...M,root:a.ownerDocument})}catch{o=new IntersectionObserver(N,M)}o.observe(e)}return i(!0),r}function jne(e,t,o,n){n===void 0&&(n={});const{ancestorScroll:a=!0,ancestorResize:r=!0,elementResize:i=typeof ResizeObserver=="function",layoutShift:s=typeof IntersectionObserver=="function",animationFrame:l=!1}=n,u=lA(e),y=a||r?[...u?Dd(u):[],...Dd(t)]:[];y.forEach(v=>{a&&v.addEventListener("scroll",o,{passive:!0}),r&&v.addEventListener("resize",o)});const h=u&&s?qne(u,o):null;let f=-1,k=null;i&&(k=new ResizeObserver(v=>{let[b]=v;b&&b.target===u&&k&&(k.unobserve(t),cancelAnimationFrame(f),f=requestAnimationFrame(()=>{var M;(M=k)==null||M.observe(t)})),o()}),u&&!l&&k.observe(u),k.observe(t));let m,g=l?Pc(e):null;l&&_();function _(){const v=Pc(e);g&&!wj(g,v)&&o(),g=v,m=requestAnimationFrame(_)}return o(),()=>{var v;y.forEach(b=>{a&&b.removeEventListener("scroll",o),r&&b.removeEventListener("resize",o)}),h?.(),(v=k)==null||v.disconnect(),k=null,l&&cancelAnimationFrame(m)}}const Hne=lne,Vne=une,Fne=cne,Bne=pne,Wne=sne,xj=ine,Une=hne,Rne=(e,t,o)=>{const n=new Map,a={platform:One,...o},r={...a.platform,_c:n};return rne(e,t,{...a,platform:r})};var Gne=typeof document<"u",Kne=function(){},y$=Gne?w.useLayoutEffect:Kne;function f$(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if(typeof e=="function"&&e.toString()===t.toString())return!0;let o,n,a;if(e&&t&&typeof e=="object"){if(Array.isArray(e)){if(o=e.length,o!==t.length)return!1;for(n=o;n--!==0;)if(!f$(e[n],t[n]))return!1;return!0}if(a=Object.keys(e),o=a.length,o!==Object.keys(t).length)return!1;for(n=o;n--!==0;)if(!{}.hasOwnProperty.call(t,a[n]))return!1;for(n=o;n--!==0;){const r=a[n];if(!(r==="_owner"&&e.$$typeof)&&!f$(e[r],t[r]))return!1}return!0}return e!==e&&t!==t}function Nj(e){return typeof window>"u"?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function Cj(e,t){const o=Nj(e);return Math.round(t*o)/o}function hA(e){const t=p.useRef(e);return y$(()=>{t.current=e}),t}function Yne(e){e===void 0&&(e={});const{placement:t="bottom",strategy:o="absolute",middleware:n=[],platform:a,elements:{reference:r,floating:i}={},transform:s=!0,whileElementsMounted:l,open:u}=e,[y,h]=p.useState({x:0,y:0,strategy:o,placement:t,middlewareData:{},isPositioned:!1}),[f,k]=p.useState(n);f$(f,n)||k(n);const[m,g]=p.useState(null),[_,v]=p.useState(null),b=p.useCallback(j=>{j!==C.current&&(C.current=j,g(j))},[]),M=p.useCallback(j=>{j!==$.current&&($.current=j,v(j))},[]),x=r||m,N=i||_,C=p.useRef(null),$=p.useRef(null),L=p.useRef(y),A=l!=null,z=hA(l),E=hA(a),O=hA(u),T=p.useCallback(()=>{if(!C.current||!$.current)return;const j={placement:t,strategy:o,middleware:f};E.current&&(j.platform=E.current),Rne(C.current,$.current,j).then(U=>{const ce={...U,isPositioned:O.current!==!1};W.current&&!f$(L.current,ce)&&(L.current=ce,d1.flushSync(()=>{h(ce)}))})},[f,t,o,E,O]);y$(()=>{u===!1&&L.current.isPositioned&&(L.current.isPositioned=!1,h(j=>({...j,isPositioned:!1})))},[u]);const W=p.useRef(!1);y$(()=>(W.current=!0,()=>{W.current=!1}),[]),y$(()=>{if(x&&(C.current=x),N&&($.current=N),x&&N){if(z.current)return z.current(x,N,T);T()}},[x,N,T,z,A]);const R=p.useMemo(()=>({reference:C,floating:$,setReference:b,setFloating:M}),[b,M]),H=p.useMemo(()=>({reference:x,floating:N}),[x,N]),Y=p.useMemo(()=>{const j={position:o,left:0,top:0};if(!H.floating)return j;const U=Cj(H.floating,y.x),ce=Cj(H.floating,y.y);return s?{...j,transform:"translate("+U+"px, "+ce+"px)",...Nj(H.floating)>=1.5&&{willChange:"transform"}}:{position:o,left:U,top:ce}},[o,s,H.floating,y.x,y.y]);return p.useMemo(()=>({...y,update:T,refs:R,elements:H,floatingStyles:Y}),[y,T,R,H,Y])}const Xne=e=>{function t(o){return{}.hasOwnProperty.call(o,"current")}return{name:"arrow",options:e,fn(o){const{element:n,padding:a}=typeof e=="function"?e(o):e;return n&&t(n)?n.current!=null?xj({element:n.current,padding:a}).fn(o):{}:n?xj({element:n,padding:a}).fn(o):{}}}},Zne=(e,t)=>({...Hne(e),options:[e,t]}),Qne=(e,t)=>({...Vne(e),options:[e,t]}),Jne=(e,t)=>({...Une(e),options:[e,t]}),eae=(e,t)=>({...Fne(e),options:[e,t]}),tae=(e,t)=>({...Bne(e),options:[e,t]}),oae=(e,t)=>({...Wne(e),options:[e,t]}),nae=(e,t)=>({...Xne(e),options:[e,t]});var aae="Arrow",$j=p.forwardRef((e,t)=>{const{children:o,width:n=10,height:a=5,...r}=e;return d.jsx(se.svg,{...r,ref:t,width:n,height:a,viewBox:"0 0 30 10",preserveAspectRatio:"none",children:e.asChild?o:d.jsx("polygon",{points:"0,0 30,0 15,10"})})});$j.displayName=aae;var rae=$j,pA="Popper",[Sj,Io]=Xe(pA),[iae,Lj]=Sj(pA),Ij=e=>{const{__scopePopper:t,children:o}=e,[n,a]=p.useState(null);return d.jsx(iae,{scope:t,anchor:n,onAnchorChange:a,children:o})};Ij.displayName=pA;var Aj="PopperAnchor",Pj=p.forwardRef((e,t)=>{const{__scopePopper:o,virtualRef:n,...a}=e,r=Lj(Aj,o),i=p.useRef(null),s=be(t,i),l=p.useRef(null);return p.useEffect(()=>{const u=l.current;l.current=n?.current||i.current,u!==l.current&&r.onAnchorChange(l.current)}),n?null:d.jsx(se.div,{...a,ref:s})});Pj.displayName=Aj;var yA="PopperContent",[cae,sae]=Sj(yA),Tj=p.forwardRef((e,t)=>{const{__scopePopper:o,side:n="bottom",sideOffset:a=0,align:r="center",alignOffset:i=0,arrowPadding:s=0,avoidCollisions:l=!0,collisionBoundary:u=[],collisionPadding:y=0,sticky:h="partial",hideWhenDetached:f=!1,updatePositionStrategy:k="optimized",onPlaced:m,...g}=e,_=Lj(yA,o),[v,b]=p.useState(null),M=be(t,V=>b(V)),[x,N]=p.useState(null),C=Ld(x),$=C?.width??0,L=C?.height??0,A=n+(r!=="center"?"-"+r:""),z=typeof y=="number"?y:{top:0,right:0,bottom:0,left:0,...y},E=Array.isArray(u)?u:[u],O=E.length>0,T={padding:z,boundary:E.filter(lae),altBoundary:O},{refs:W,floatingStyles:R,placement:H,isPositioned:Y,middlewareData:j}=Yne({strategy:"fixed",placement:A,whileElementsMounted:(...V)=>jne(...V,{animationFrame:k==="always"}),elements:{reference:_.anchor},middleware:[Zne({mainAxis:a+L,alignmentAxis:i}),l&&Qne({mainAxis:!0,crossAxis:!1,limiter:h==="partial"?Jne():void 0,...T}),l&&eae({...T}),tae({...T,apply:({elements:V,rects:te,availableWidth:fe,availableHeight:pe})=>{const{width:de,height:ee}=te.reference,_e=V.floating.style;_e.setProperty("--radix-popper-available-width",`${fe}px`),_e.setProperty("--radix-popper-available-height",`${pe}px`),_e.setProperty("--radix-popper-anchor-width",`${de}px`),_e.setProperty("--radix-popper-anchor-height",`${ee}px`)}}),x&&nae({element:x,padding:s}),uae({arrowWidth:$,arrowHeight:L}),f&&oae({strategy:"referenceHidden",...T})]}),[U,ce]=zj(H),le=Ue(m);Ze(()=>{Y&&le?.()},[Y,le]);const B=j.arrow?.x,F=j.arrow?.y,K=j.arrow?.centerOffset!==0,[G,ie]=p.useState();return Ze(()=>{v&&ie(window.getComputedStyle(v).zIndex)},[v]),d.jsx("div",{ref:W.setFloating,"data-radix-popper-content-wrapper":"",style:{...R,transform:Y?R.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:G,"--radix-popper-transform-origin":[j.transformOrigin?.x,j.transformOrigin?.y].join(" "),...j.hide?.referenceHidden&&{visibility:"hidden",pointerEvents:"none"}},dir:e.dir,children:d.jsx(cae,{scope:o,placedSide:U,onArrowChange:N,arrowX:B,arrowY:F,shouldHideArrow:K,children:d.jsx(se.div,{"data-side":U,"data-align":ce,...g,ref:M,style:{...g.style,animation:Y?void 0:"none"}})})})});Tj.displayName=yA;var Dj="PopperArrow",dae={top:"bottom",right:"left",bottom:"top",left:"right"},Ej=p.forwardRef(function(t,o){const{__scopePopper:n,...a}=t,r=sae(Dj,n),i=dae[r.placedSide];return d.jsx("span",{ref:r.onArrowChange,style:{position:"absolute",left:r.arrowX,top:r.arrowY,[i]:0,transformOrigin:{top:"",right:"0 0",bottom:"center 0",left:"100% 0"}[r.placedSide],transform:{top:"translateY(100%)",right:"translateY(50%) rotate(90deg) translateX(-50%)",bottom:"rotate(180deg)",left:"translateY(50%) rotate(-90deg) translateX(50%)"}[r.placedSide],visibility:r.shouldHideArrow?"hidden":void 0},children:d.jsx(rae,{...a,ref:o,style:{...a.style,display:"block"}})})});Ej.displayName=Dj;function lae(e){return e!==null}var uae=e=>({name:"transformOrigin",options:e,fn(t){const{placement:o,rects:n,middlewareData:a}=t,i=a.arrow?.centerOffset!==0,s=i?0:e.arrowWidth,l=i?0:e.arrowHeight,[u,y]=zj(o),h={start:"0%",center:"50%",end:"100%"}[y],f=(a.arrow?.x??0)+s/2,k=(a.arrow?.y??0)+l/2;let m="",g="";return u==="bottom"?(m=i?h:`${f}px`,g=`${-l}px`):u==="top"?(m=i?h:`${f}px`,g=`${n.floating.height+l}px`):u==="right"?(m=`${-l}px`,g=i?h:`${k}px`):u==="left"&&(m=`${n.floating.width+l}px`,g=i?h:`${k}px`),{data:{x:m,y:g}}}});function zj(e){const[t,o="center"]=e.split("-");return[t,o]}var ws=Ij,xs=Pj,Ed=Tj,zd=Ej,fA="rovingFocusGroup.onEntryFocus",hae={bubbles:!1,cancelable:!0},Od="RovingFocusGroup",[mA,Oj,pae]=Xo(Od),[yae,Ao]=Xe(Od,[pae]),[fae,mae]=yae(Od),qj=p.forwardRef((e,t)=>d.jsx(mA.Provider,{scope:e.__scopeRovingFocusGroup,children:d.jsx(mA.Slot,{scope:e.__scopeRovingFocusGroup,children:d.jsx(kae,{...e,ref:t})})}));qj.displayName=Od;var kae=p.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:o,orientation:n,loop:a=!1,dir:r,currentTabStopId:i,defaultCurrentTabStopId:s,onCurrentTabStopIdChange:l,onEntryFocus:u,preventScrollOnEntryFocus:y=!1,...h}=e,f=p.useRef(null),k=be(t,f),m=Zt(r),[g,_]=Ke({prop:i,defaultProp:s??null,onChange:l,caller:Od}),[v,b]=p.useState(!1),M=Ue(u),x=Oj(o),N=p.useRef(!1),[C,$]=p.useState(0);return p.useEffect(()=>{const L=f.current;if(L)return L.addEventListener(fA,M),()=>L.removeEventListener(fA,M)},[M]),d.jsx(fae,{scope:o,orientation:n,dir:m,loop:a,currentTabStopId:g,onItemFocus:p.useCallback(L=>_(L),[_]),onItemShiftTab:p.useCallback(()=>b(!0),[]),onFocusableItemAdd:p.useCallback(()=>$(L=>L+1),[]),onFocusableItemRemove:p.useCallback(()=>$(L=>L-1),[]),children:d.jsx(se.div,{tabIndex:v||C===0?-1:0,"data-orientation":n,...h,ref:k,style:{outline:"none",...e.style},onMouseDown:X(e.onMouseDown,()=>{N.current=!0}),onFocus:X(e.onFocus,L=>{const A=!N.current;if(L.target===L.currentTarget&&A&&!v){const z=new CustomEvent(fA,hae);if(L.currentTarget.dispatchEvent(z),!z.defaultPrevented){const E=x().filter(H=>H.focusable),O=E.find(H=>H.active),T=E.find(H=>H.id===g),R=[O,T,...E].filter(Boolean).map(H=>H.ref.current);Vj(R,y)}}N.current=!1}),onBlur:X(e.onBlur,()=>b(!1))})})}),jj="RovingFocusGroupItem",Hj=p.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:o,focusable:n=!0,active:a=!1,tabStopId:r,children:i,...s}=e,l=We(),u=r||l,y=mae(jj,o),h=y.currentTabStopId===u,f=Oj(o),{onFocusableItemAdd:k,onFocusableItemRemove:m,currentTabStopId:g}=y;return p.useEffect(()=>{if(n)return k(),()=>m()},[n,k,m]),d.jsx(mA.ItemSlot,{scope:o,id:u,focusable:n,active:a,children:d.jsx(se.span,{tabIndex:h?0:-1,"data-orientation":y.orientation,...s,ref:t,onMouseDown:X(e.onMouseDown,_=>{n?y.onItemFocus(u):_.preventDefault()}),onFocus:X(e.onFocus,()=>y.onItemFocus(u)),onKeyDown:X(e.onKeyDown,_=>{if(_.key==="Tab"&&_.shiftKey){y.onItemShiftTab();return}if(_.target!==_.currentTarget)return;const v=_ae(_,y.orientation,y.dir);if(v!==void 0){if(_.metaKey||_.ctrlKey||_.altKey||_.shiftKey)return;_.preventDefault();let M=f().filter(x=>x.focusable).map(x=>x.ref.current);if(v==="last")M.reverse();else if(v==="prev"||v==="next"){v==="prev"&&M.reverse();const x=M.indexOf(_.currentTarget);M=y.loop?bae(M,x+1):M.slice(x+1)}setTimeout(()=>Vj(M))}}),children:typeof i=="function"?i({isCurrentTabStop:h,hasTabStop:g!=null}):i})})});Hj.displayName=jj;var gae={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function vae(e,t){return t!=="rtl"?e:e==="ArrowLeft"?"ArrowRight":e==="ArrowRight"?"ArrowLeft":e}function _ae(e,t,o){const n=vae(e.key,o);if(!(t==="vertical"&&["ArrowLeft","ArrowRight"].includes(n))&&!(t==="horizontal"&&["ArrowUp","ArrowDown"].includes(n)))return gae[n]}function Vj(e,t=!1){const o=document.activeElement;for(const n of e)if(n===o||(n.focus({preventScroll:t}),document.activeElement!==o))return}function bae(e,t){return e.map((o,n)=>e[(t+n)%e.length])}var qd=qj,jd=Hj,kA=["Enter"," "],Mae=["ArrowDown","PageUp","Home"],Fj=["ArrowUp","PageDown","End"],wae=[...Mae,...Fj],xae={ltr:[...kA,"ArrowRight"],rtl:[...kA,"ArrowLeft"]},Nae={ltr:["ArrowLeft"],rtl:["ArrowRight"]},Hd="Menu",[Vd,Cae,$ae]=Xo(Hd),[Tc,Fd]=Xe(Hd,[$ae,Io,Ao]),Bd=Io(),Bj=Ao(),[Wj,un]=Tc(Hd),[Sae,Wd]=Tc(Hd),Uj=e=>{const{__scopeMenu:t,open:o=!1,children:n,dir:a,onOpenChange:r,modal:i=!0}=e,s=Bd(t),[l,u]=p.useState(null),y=p.useRef(!1),h=Ue(r),f=Zt(a);return p.useEffect(()=>{const k=()=>{y.current=!0,document.addEventListener("pointerdown",m,{capture:!0,once:!0}),document.addEventListener("pointermove",m,{capture:!0,once:!0})},m=()=>y.current=!1;return document.addEventListener("keydown",k,{capture:!0}),()=>{document.removeEventListener("keydown",k,{capture:!0}),document.removeEventListener("pointerdown",m,{capture:!0}),document.removeEventListener("pointermove",m,{capture:!0})}},[]),d.jsx(ws,{...s,children:d.jsx(Wj,{scope:t,open:o,onOpenChange:h,content:l,onContentChange:u,children:d.jsx(Sae,{scope:t,onClose:p.useCallback(()=>h(!1),[h]),isUsingKeyboardRef:y,dir:f,modal:i,children:n})})})};Uj.displayName=Hd;var Lae="MenuAnchor",gA=p.forwardRef((e,t)=>{const{__scopeMenu:o,...n}=e,a=Bd(o);return d.jsx(xs,{...a,...n,ref:t})});gA.displayName=Lae;var vA="MenuPortal",[Iae,Rj]=Tc(vA,{forceMount:void 0}),Gj=e=>{const{__scopeMenu:t,forceMount:o,children:n,container:a}=e,r=un(vA,t);return d.jsx(Iae,{scope:t,forceMount:o,children:d.jsx(Qe,{present:o||r.open,children:d.jsx(rd,{asChild:!0,container:a,children:n})})})};Gj.displayName=vA;var Bt="MenuContent",[Aae,_A]=Tc(Bt),Kj=p.forwardRef((e,t)=>{const o=Rj(Bt,e.__scopeMenu),{forceMount:n=o.forceMount,...a}=e,r=un(Bt,e.__scopeMenu),i=Wd(Bt,e.__scopeMenu);return d.jsx(Vd.Provider,{scope:e.__scopeMenu,children:d.jsx(Qe,{present:n||r.open,children:d.jsx(Vd.Slot,{scope:e.__scopeMenu,children:i.modal?d.jsx(Pae,{...a,ref:t}):d.jsx(Tae,{...a,ref:t})})})})}),Pae=p.forwardRef((e,t)=>{const o=un(Bt,e.__scopeMenu),n=p.useRef(null),a=be(t,n);return p.useEffect(()=>{const r=n.current;if(r)return zC(r)},[]),d.jsx(bA,{...e,ref:a,trapFocus:o.open,disableOutsidePointerEvents:o.open,disableOutsideScroll:!0,onFocusOutside:X(e.onFocusOutside,r=>r.preventDefault(),{checkForDefaultPrevented:!1}),onDismiss:()=>o.onOpenChange(!1)})}),Tae=p.forwardRef((e,t)=>{const o=un(Bt,e.__scopeMenu);return d.jsx(bA,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,disableOutsideScroll:!1,onDismiss:()=>o.onOpenChange(!1)})}),Dae=bn("MenuContent.ScrollLock"),bA=p.forwardRef((e,t)=>{const{__scopeMenu:o,loop:n=!1,trapFocus:a,onOpenAutoFocus:r,onCloseAutoFocus:i,disableOutsidePointerEvents:s,onEntryFocus:l,onEscapeKeyDown:u,onPointerDownOutside:y,onFocusOutside:h,onInteractOutside:f,onDismiss:k,disableOutsideScroll:m,...g}=e,_=un(Bt,o),v=Wd(Bt,o),b=Bd(o),M=Bj(o),x=Cae(o),[N,C]=p.useState(null),$=p.useRef(null),L=be(t,$,_.onContentChange),A=p.useRef(0),z=p.useRef(""),E=p.useRef(0),O=p.useRef(null),T=p.useRef("right"),W=p.useRef(0),R=m?id:p.Fragment,H=m?{as:Dae,allowPinchZoom:!0}:void 0,Y=U=>{const ce=z.current+U,le=x().filter(V=>!V.disabled),B=document.activeElement,F=le.find(V=>V.ref.current===B)?.textValue,K=le.map(V=>V.textValue),G=Rae(K,ce,F),ie=le.find(V=>V.textValue===G)?.ref.current;(function V(te){z.current=te,window.clearTimeout(A.current),te!==""&&(A.current=window.setTimeout(()=>V(""),1e3))})(ce),ie&&setTimeout(()=>ie.focus())};p.useEffect(()=>()=>window.clearTimeout(A.current),[]),SC();const j=p.useCallback(U=>T.current===O.current?.side&&Kae(U,O.current?.area),[]);return d.jsx(Aae,{scope:o,searchRef:z,onItemEnter:p.useCallback(U=>{j(U)&&U.preventDefault()},[j]),onItemLeave:p.useCallback(U=>{j(U)||($.current?.focus(),C(null))},[j]),onTriggerLeave:p.useCallback(U=>{j(U)&&U.preventDefault()},[j]),pointerGraceTimerRef:E,onPointerGraceIntentChange:p.useCallback(U=>{O.current=U},[]),children:d.jsx(R,{...H,children:d.jsx(ad,{asChild:!0,trapped:a,onMountAutoFocus:X(r,U=>{U.preventDefault(),$.current?.focus({preventScroll:!0})}),onUnmountAutoFocus:i,children:d.jsx(nn,{asChild:!0,disableOutsidePointerEvents:s,onEscapeKeyDown:u,onPointerDownOutside:y,onFocusOutside:h,onInteractOutside:f,onDismiss:k,children:d.jsx(qd,{asChild:!0,...M,dir:v.dir,orientation:"vertical",loop:n,currentTabStopId:N,onCurrentTabStopIdChange:C,onEntryFocus:X(l,U=>{v.isUsingKeyboardRef.current||U.preventDefault()}),preventScrollOnEntryFocus:!0,children:d.jsx(Ed,{role:"menu","aria-orientation":"vertical","data-state":hH(_.open),"data-radix-menu-content":"",dir:v.dir,...b,...g,ref:L,style:{outline:"none",...g.style},onKeyDown:X(g.onKeyDown,U=>{const le=U.target.closest("[data-radix-menu-content]")===U.currentTarget,B=U.ctrlKey||U.altKey||U.metaKey,F=U.key.length===1;le&&(U.key==="Tab"&&U.preventDefault(),!B&&F&&Y(U.key));const K=$.current;if(U.target!==K||!wae.includes(U.key))return;U.preventDefault();const ie=x().filter(V=>!V.disabled).map(V=>V.ref.current);Fj.includes(U.key)&&ie.reverse(),Wae(ie)}),onBlur:X(e.onBlur,U=>{U.currentTarget.contains(U.target)||(window.clearTimeout(A.current),z.current="")}),onPointerMove:X(e.onPointerMove,Rd(U=>{const ce=U.target,le=W.current!==U.clientX;if(U.currentTarget.contains(ce)&&le){const B=U.clientX>W.current?"right":"left";T.current=B,W.current=U.clientX}}))})})})})})})});Kj.displayName=Bt;var Eae="MenuGroup",MA=p.forwardRef((e,t)=>{const{__scopeMenu:o,...n}=e;return d.jsx(se.div,{role:"group",...n,ref:t})});MA.displayName=Eae;var zae="MenuLabel",Yj=p.forwardRef((e,t)=>{const{__scopeMenu:o,...n}=e;return d.jsx(se.div,{...n,ref:t})});Yj.displayName=zae;var m$="MenuItem",Xj="menu.itemSelect",k$=p.forwardRef((e,t)=>{const{disabled:o=!1,onSelect:n,...a}=e,r=p.useRef(null),i=Wd(m$,e.__scopeMenu),s=_A(m$,e.__scopeMenu),l=be(t,r),u=p.useRef(!1),y=()=>{const h=r.current;if(!o&&h){const f=new CustomEvent(Xj,{bubbles:!0,cancelable:!0});h.addEventListener(Xj,k=>n?.(k),{once:!0}),g1(h,f),f.defaultPrevented?u.current=!1:i.onClose()}};return d.jsx(Zj,{...a,ref:l,disabled:o,onClick:X(e.onClick,y),onPointerDown:h=>{e.onPointerDown?.(h),u.current=!0},onPointerUp:X(e.onPointerUp,h=>{u.current||h.currentTarget?.click()}),onKeyDown:X(e.onKeyDown,h=>{const f=s.searchRef.current!=="";o||f&&h.key===" "||kA.includes(h.key)&&(h.currentTarget.click(),h.preventDefault())})})});k$.displayName=m$;var Zj=p.forwardRef((e,t)=>{const{__scopeMenu:o,disabled:n=!1,textValue:a,...r}=e,i=_A(m$,o),s=Bj(o),l=p.useRef(null),u=be(t,l),[y,h]=p.useState(!1),[f,k]=p.useState("");return p.useEffect(()=>{const m=l.current;m&&k((m.textContent??"").trim())},[r.children]),d.jsx(Vd.ItemSlot,{scope:o,disabled:n,textValue:a??f,children:d.jsx(jd,{asChild:!0,...s,focusable:!n,children:d.jsx(se.div,{role:"menuitem","data-highlighted":y?"":void 0,"aria-disabled":n||void 0,"data-disabled":n?"":void 0,...r,ref:u,onPointerMove:X(e.onPointerMove,Rd(m=>{n?i.onItemLeave(m):(i.onItemEnter(m),m.defaultPrevented||m.currentTarget.focus({preventScroll:!0}))})),onPointerLeave:X(e.onPointerLeave,Rd(m=>i.onItemLeave(m))),onFocus:X(e.onFocus,()=>h(!0)),onBlur:X(e.onBlur,()=>h(!1))})})})}),Oae="MenuCheckboxItem",Qj=p.forwardRef((e,t)=>{const{checked:o=!1,onCheckedChange:n,...a}=e;return d.jsx(nH,{scope:e.__scopeMenu,checked:o,children:d.jsx(k$,{role:"menuitemcheckbox","aria-checked":g$(o)?"mixed":o,...a,ref:t,"data-state":NA(o),onSelect:X(a.onSelect,()=>n?.(g$(o)?!0:!o),{checkForDefaultPrevented:!1})})})});Qj.displayName=Oae;var Jj="MenuRadioGroup",[qae,jae]=Tc(Jj,{value:void 0,onValueChange:()=>{}}),eH=p.forwardRef((e,t)=>{const{value:o,onValueChange:n,...a}=e,r=Ue(n);return d.jsx(qae,{scope:e.__scopeMenu,value:o,onValueChange:r,children:d.jsx(MA,{...a,ref:t})})});eH.displayName=Jj;var tH="MenuRadioItem",oH=p.forwardRef((e,t)=>{const{value:o,...n}=e,a=jae(tH,e.__scopeMenu),r=o===a.value;return d.jsx(nH,{scope:e.__scopeMenu,checked:r,children:d.jsx(k$,{role:"menuitemradio","aria-checked":r,...n,ref:t,"data-state":NA(r),onSelect:X(n.onSelect,()=>a.onValueChange?.(o),{checkForDefaultPrevented:!1})})})});oH.displayName=tH;var wA="MenuItemIndicator",[nH,Hae]=Tc(wA,{checked:!1}),aH=p.forwardRef((e,t)=>{const{__scopeMenu:o,forceMount:n,...a}=e,r=Hae(wA,o);return d.jsx(Qe,{present:n||g$(r.checked)||r.checked===!0,children:d.jsx(se.span,{...a,ref:t,"data-state":NA(r.checked)})})});aH.displayName=wA;var Vae="MenuSeparator",rH=p.forwardRef((e,t)=>{const{__scopeMenu:o,...n}=e;return d.jsx(se.div,{role:"separator","aria-orientation":"horizontal",...n,ref:t})});rH.displayName=Vae;var Fae="MenuArrow",iH=p.forwardRef((e,t)=>{const{__scopeMenu:o,...n}=e,a=Bd(o);return d.jsx(zd,{...a,...n,ref:t})});iH.displayName=Fae;var xA="MenuSub",[Bae,cH]=Tc(xA),sH=e=>{const{__scopeMenu:t,children:o,open:n=!1,onOpenChange:a}=e,r=un(xA,t),i=Bd(t),[s,l]=p.useState(null),[u,y]=p.useState(null),h=Ue(a);return p.useEffect(()=>(r.open===!1&&h(!1),()=>h(!1)),[r.open,h]),d.jsx(ws,{...i,children:d.jsx(Wj,{scope:t,open:n,onOpenChange:h,content:u,onContentChange:y,children:d.jsx(Bae,{scope:t,contentId:We(),triggerId:We(),trigger:s,onTriggerChange:l,children:o})})})};sH.displayName=xA;var Ud="MenuSubTrigger",dH=p.forwardRef((e,t)=>{const o=un(Ud,e.__scopeMenu),n=Wd(Ud,e.__scopeMenu),a=cH(Ud,e.__scopeMenu),r=_A(Ud,e.__scopeMenu),i=p.useRef(null),{pointerGraceTimerRef:s,onPointerGraceIntentChange:l}=r,u={__scopeMenu:e.__scopeMenu},y=p.useCallback(()=>{i.current&&window.clearTimeout(i.current),i.current=null},[]);return p.useEffect(()=>y,[y]),p.useEffect(()=>{const h=s.current;return()=>{window.clearTimeout(h),l(null)}},[s,l]),d.jsx(gA,{asChild:!0,...u,children:d.jsx(Zj,{id:a.triggerId,"aria-haspopup":"menu","aria-expanded":o.open,"aria-controls":a.contentId,"data-state":hH(o.open),...e,ref:Xt(t,a.onTriggerChange),onClick:h=>{e.onClick?.(h),!(e.disabled||h.defaultPrevented)&&(h.currentTarget.focus(),o.open||o.onOpenChange(!0))},onPointerMove:X(e.onPointerMove,Rd(h=>{r.onItemEnter(h),!h.defaultPrevented&&!e.disabled&&!o.open&&!i.current&&(r.onPointerGraceIntentChange(null),i.current=window.setTimeout(()=>{o.onOpenChange(!0),y()},100))})),onPointerLeave:X(e.onPointerLeave,Rd(h=>{y();const f=o.content?.getBoundingClientRect();if(f){const k=o.content?.dataset.side,m=k==="right",g=m?-5:5,_=f[m?"left":"right"],v=f[m?"right":"left"];r.onPointerGraceIntentChange({area:[{x:h.clientX+g,y:h.clientY},{x:_,y:f.top},{x:v,y:f.top},{x:v,y:f.bottom},{x:_,y:f.bottom}],side:k}),window.clearTimeout(s.current),s.current=window.setTimeout(()=>r.onPointerGraceIntentChange(null),300)}else{if(r.onTriggerLeave(h),h.defaultPrevented)return;r.onPointerGraceIntentChange(null)}})),onKeyDown:X(e.onKeyDown,h=>{const f=r.searchRef.current!=="";e.disabled||f&&h.key===" "||xae[n.dir].includes(h.key)&&(o.onOpenChange(!0),o.content?.focus(),h.preventDefault())})})})});dH.displayName=Ud;var lH="MenuSubContent",uH=p.forwardRef((e,t)=>{const o=Rj(Bt,e.__scopeMenu),{forceMount:n=o.forceMount,...a}=e,r=un(Bt,e.__scopeMenu),i=Wd(Bt,e.__scopeMenu),s=cH(lH,e.__scopeMenu),l=p.useRef(null),u=be(t,l);return d.jsx(Vd.Provider,{scope:e.__scopeMenu,children:d.jsx(Qe,{present:n||r.open,children:d.jsx(Vd.Slot,{scope:e.__scopeMenu,children:d.jsx(bA,{id:s.contentId,"aria-labelledby":s.triggerId,...a,ref:u,align:"start",side:i.dir==="rtl"?"left":"right",disableOutsidePointerEvents:!1,disableOutsideScroll:!1,trapFocus:!1,onOpenAutoFocus:y=>{i.isUsingKeyboardRef.current&&l.current?.focus(),y.preventDefault()},onCloseAutoFocus:y=>y.preventDefault(),onFocusOutside:X(e.onFocusOutside,y=>{y.target!==s.trigger&&r.onOpenChange(!1)}),onEscapeKeyDown:X(e.onEscapeKeyDown,y=>{i.onClose(),y.preventDefault()}),onKeyDown:X(e.onKeyDown,y=>{const h=y.currentTarget.contains(y.target),f=Nae[i.dir].includes(y.key);h&&f&&(r.onOpenChange(!1),s.trigger?.focus(),y.preventDefault())})})})})})});uH.displayName=lH;function hH(e){return e?"open":"closed"}function g$(e){return e==="indeterminate"}function NA(e){return g$(e)?"indeterminate":e?"checked":"unchecked"}function Wae(e){const t=document.activeElement;for(const o of e)if(o===t||(o.focus(),document.activeElement!==t))return}function Uae(e,t){return e.map((o,n)=>e[(t+n)%e.length])}function Rae(e,t,o){const a=t.length>1&&Array.from(t).every(u=>u===t[0])?t[0]:t,r=o?e.indexOf(o):-1;let i=Uae(e,Math.max(r,0));a.length===1&&(i=i.filter(u=>u!==o));const l=i.find(u=>u.toLowerCase().startsWith(a.toLowerCase()));return l!==o?l:void 0}function Gae(e,t){const{x:o,y:n}=e;let a=!1;for(let r=0,i=t.length-1;r<t.length;i=r++){const s=t[r],l=t[i],u=s.x,y=s.y,h=l.x,f=l.y;y>n!=f>n&&o<(h-u)*(n-y)/(f-y)+u&&(a=!a)}return a}function Kae(e,t){if(!t)return!1;const o={x:e.clientX,y:e.clientY};return Gae(o,t)}function Rd(e){return t=>t.pointerType==="mouse"?e(t):void 0}var CA=Uj,$A=gA,SA=Gj,LA=Kj,IA=MA,AA=Yj,PA=k$,TA=Qj,DA=eH,EA=oH,zA=aH,OA=rH,qA=iH,jA=sH,HA=dH,VA=uH,FA="ContextMenu",[Yae]=Xe(FA,[Fd]),yt=Fd(),[Xae,pH]=Yae(FA),yH=e=>{const{__scopeContextMenu:t,children:o,onOpenChange:n,dir:a,modal:r=!0}=e,[i,s]=p.useState(!1),l=yt(t),u=Ue(n),y=p.useCallback(h=>{s(h),u(h)},[u]);return d.jsx(Xae,{scope:t,open:i,onOpenChange:y,modal:r,children:d.jsx(CA,{...l,dir:a,open:i,onOpenChange:y,modal:r,children:o})})};yH.displayName=FA;var fH="ContextMenuTrigger",mH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,disabled:n=!1,...a}=e,r=pH(fH,o),i=yt(o),s=p.useRef({x:0,y:0}),l=p.useRef({getBoundingClientRect:()=>DOMRect.fromRect({width:0,height:0,...s.current})}),u=p.useRef(0),y=p.useCallback(()=>window.clearTimeout(u.current),[]),h=f=>{s.current={x:f.clientX,y:f.clientY},r.onOpenChange(!0)};return p.useEffect(()=>y,[y]),p.useEffect(()=>{n&&y()},[n,y]),d.jsxs(d.Fragment,{children:[d.jsx($A,{...i,virtualRef:l}),d.jsx(se.span,{"data-state":r.open?"open":"closed","data-disabled":n?"":void 0,...a,ref:t,style:{WebkitTouchCallout:"none",...e.style},onContextMenu:n?e.onContextMenu:X(e.onContextMenu,f=>{y(),h(f),f.preventDefault()}),onPointerDown:n?e.onPointerDown:X(e.onPointerDown,v$(f=>{y(),u.current=window.setTimeout(()=>h(f),700)})),onPointerMove:n?e.onPointerMove:X(e.onPointerMove,v$(y)),onPointerCancel:n?e.onPointerCancel:X(e.onPointerCancel,v$(y)),onPointerUp:n?e.onPointerUp:X(e.onPointerUp,v$(y))})]})});mH.displayName=fH;var Zae="ContextMenuPortal",kH=e=>{const{__scopeContextMenu:t,...o}=e,n=yt(t);return d.jsx(SA,{...n,...o})};kH.displayName=Zae;var gH="ContextMenuContent",vH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=pH(gH,o),r=yt(o),i=p.useRef(!1);return d.jsx(LA,{...r,...n,ref:t,side:"right",sideOffset:2,align:"start",onCloseAutoFocus:s=>{e.onCloseAutoFocus?.(s),!s.defaultPrevented&&i.current&&s.preventDefault(),i.current=!1},onInteractOutside:s=>{e.onInteractOutside?.(s),!s.defaultPrevented&&!a.modal&&(i.current=!0)},style:{...e.style,"--radix-context-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-context-menu-content-available-width":"var(--radix-popper-available-width)","--radix-context-menu-content-available-height":"var(--radix-popper-available-height)","--radix-context-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-context-menu-trigger-height":"var(--radix-popper-anchor-height)"}})});vH.displayName=gH;var Qae="ContextMenuGroup",Jae=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(IA,{...a,...n,ref:t})});Jae.displayName=Qae;var ere="ContextMenuLabel",_H=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(AA,{...a,...n,ref:t})});_H.displayName=ere;var tre="ContextMenuItem",bH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(PA,{...a,...n,ref:t})});bH.displayName=tre;var ore="ContextMenuCheckboxItem",MH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(TA,{...a,...n,ref:t})});MH.displayName=ore;var nre="ContextMenuRadioGroup",are=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(DA,{...a,...n,ref:t})});are.displayName=nre;var rre="ContextMenuRadioItem",wH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(EA,{...a,...n,ref:t})});wH.displayName=rre;var ire="ContextMenuItemIndicator",xH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(zA,{...a,...n,ref:t})});xH.displayName=ire;var cre="ContextMenuSeparator",NH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(OA,{...a,...n,ref:t})});NH.displayName=cre;var sre="ContextMenuArrow",dre=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(qA,{...a,...n,ref:t})});dre.displayName=sre;var CH="ContextMenuSub",$H=e=>{const{__scopeContextMenu:t,children:o,onOpenChange:n,open:a,defaultOpen:r}=e,i=yt(t),[s,l]=Ke({prop:a,defaultProp:r??!1,onChange:n,caller:CH});return d.jsx(jA,{...i,open:s,onOpenChange:l,children:o})};$H.displayName=CH;var lre="ContextMenuSubTrigger",SH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(HA,{...a,...n,ref:t})});SH.displayName=lre;var ure="ContextMenuSubContent",LH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(VA,{...a,...n,ref:t,style:{...e.style,"--radix-context-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-context-menu-content-available-width":"var(--radix-popper-available-width)","--radix-context-menu-content-available-height":"var(--radix-popper-available-height)","--radix-context-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-context-menu-trigger-height":"var(--radix-popper-anchor-height)"}})});LH.displayName=ure;function v$(e){return t=>t.pointerType!=="mouse"?e(t):void 0}var hre=yH,pre=mH,yre=kH,IH=vH,AH=_H,PH=bH,TH=MH,DH=wH,EH=xH,zH=NH,fre=$H,OH=SH,qH=LH;const mre=hre,kre=pre,gre=fre,jH=p.forwardRef(({className:e,inset:t,children:o,...n},a)=>d.jsxs(OH,{ref:a,className:S("flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",t&&"pl-8",e),...n,children:[o,d.jsx(Pt,{className:"ml-auto h-4 w-4"})]}));jH.displayName=OH.displayName;const HH=p.forwardRef(({className:e,...t},o)=>d.jsx(qH,{ref:o,className:S("z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-context-menu-content-transform-origin]",e),...t}));HH.displayName=qH.displayName;const VH=p.forwardRef(({className:e,...t},o)=>d.jsx(yre,{children:d.jsx(IH,{ref:o,className:S("z-50 max-h-[--radix-context-menu-content-available-height] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md animate-in fade-in-80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-context-menu-content-transform-origin]",e),...t})}));VH.displayName=IH.displayName;const FH=p.forwardRef(({className:e,inset:t,...o},n)=>d.jsx(PH,{ref:n,className:S("relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",t&&"pl-8",e),...o}));FH.displayName=PH.displayName;const vre=p.forwardRef(({className:e,children:t,checked:o,...n},a)=>d.jsxs(TH,{ref:a,className:S("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e),checked:o,...n,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx(EH,{children:d.jsx(po,{className:"h-4 w-4"})})}),t]}));vre.displayName=TH.displayName;const _re=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(DH,{ref:n,className:S("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e),...o,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx(EH,{children:d.jsx(Qo,{className:"h-2 w-2 fill-current"})})}),t]}));_re.displayName=DH.displayName;const BH=p.forwardRef(({className:e,inset:t,...o},n)=>d.jsx(AH,{ref:n,className:S("px-2 py-1.5 text-sm font-semibold text-foreground",t&&"pl-8",e),...o}));BH.displayName=AH.displayName;const WH=p.forwardRef(({className:e,...t},o)=>d.jsx(zH,{ref:o,className:S("-mx-1 my-1 h-px bg-border",e),...t}));WH.displayName=zH.displayName;const UH=({className:e,...t})=>d.jsx("span",{className:S("ml-auto text-xs tracking-widest text-muted-foreground",e),...t});UH.displayName="ContextMenuShortcut";function bre(e){if(typeof document>"u")return;let t=document.head||document.getElementsByTagName("head")[0],o=document.createElement("style");o.type="text/css",t.appendChild(o),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(document.createTextNode(e))}const RH=w.createContext({drawerRef:{current:null},overlayRef:{current:null},onPress:()=>{},onRelease:()=>{},onDrag:()=>{},onNestedDrag:()=>{},onNestedOpenChange:()=>{},onNestedRelease:()=>{},openProp:void 0,dismissible:!1,isOpen:!1,isDragging:!1,keyboardIsOpen:{current:!1},snapPointsOffset:null,snapPoints:null,handleOnly:!1,modal:!1,shouldFade:!1,activeSnapPoint:null,onOpenChange:()=>{},setActiveSnapPoint:()=>{},closeDrawer:()=>{},direction:"bottom",shouldAnimate:{current:!0},shouldScaleBackground:!1,setBackgroundColorOnScale:!0,noBodyStyles:!1,container:null,autoFocus:!1}),Gd=()=>{const e=w.useContext(RH);if(!e)throw new Error("useDrawerContext must be used within a Drawer.Root");return e};bre(`[data-vaul-drawer]{touch-action:none;will-change:transform;transition:transform .5s cubic-bezier(.32, .72, 0, 1);animation-duration:.5s;animation-timing-function:cubic-bezier(0.32,0.72,0,1)}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=bottom][data-state=open]{animation-name:slideFromBottom}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=bottom][data-state=closed]{animation-name:slideToBottom}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=top][data-state=open]{animation-name:slideFromTop}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=top][data-state=closed]{animation-name:slideToTop}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=left][data-state=open]{animation-name:slideFromLeft}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=left][data-state=closed]{animation-name:slideToLeft}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=right][data-state=open]{animation-name:slideFromRight}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=right][data-state=closed]{animation-name:slideToRight}[data-vaul-drawer][data-vaul-snap-points=true][data-vaul-drawer-direction=bottom]{transform:translate3d(0,var(--initial-transform,100%),0)}[data-vaul-drawer][data-vaul-snap-points=true][data-vaul-drawer-direction=top]{transform:translate3d(0,calc(var(--initial-transform,100%) * -1),0)}[data-vaul-drawer][data-vaul-snap-points=true][data-vaul-drawer-direction=left]{transform:translate3d(calc(var(--initial-transform,100%) * -1),0,0)}[data-vaul-drawer][data-vaul-snap-points=true][data-vaul-drawer-direction=right]{transform:translate3d(var(--initial-transform,100%),0,0)}[data-vaul-drawer][data-vaul-delayed-snap-points=true][data-vaul-drawer-direction=top]{transform:translate3d(0,var(--snap-point-height,0),0)}[data-vaul-drawer][data-vaul-delayed-snap-points=true][data-vaul-drawer-direction=bottom]{transform:translate3d(0,var(--snap-point-height,0),0)}[data-vaul-drawer][data-vaul-delayed-snap-points=true][data-vaul-drawer-direction=left]{transform:translate3d(var(--snap-point-height,0),0,0)}[data-vaul-drawer][data-vaul-delayed-snap-points=true][data-vaul-drawer-direction=right]{transform:translate3d(var(--snap-point-height,0),0,0)}[data-vaul-overlay][data-vaul-snap-points=false]{animation-duration:.5s;animation-timing-function:cubic-bezier(0.32,0.72,0,1)}[data-vaul-overlay][data-vaul-snap-points=false][data-state=open]{animation-name:fadeIn}[data-vaul-overlay][data-state=closed]{animation-name:fadeOut}[data-vaul-animate=false]{animation:none!important}[data-vaul-overlay][data-vaul-snap-points=true]{opacity:0;transition:opacity .5s cubic-bezier(.32, .72, 0, 1)}[data-vaul-overlay][data-vaul-snap-points=true]{opacity:1}[data-vaul-drawer]:not([data-vaul-custom-container=true])::after{content:'';position:absolute;background:inherit;background-color:inherit}[data-vaul-drawer][data-vaul-drawer-direction=top]::after{top:initial;bottom:100%;left:0;right:0;height:200%}[data-vaul-drawer][data-vaul-drawer-direction=bottom]::after{top:100%;bottom:initial;left:0;right:0;height:200%}[data-vaul-drawer][data-vaul-drawer-direction=left]::after{left:initial;right:100%;top:0;bottom:0;width:200%}[data-vaul-drawer][data-vaul-drawer-direction=right]::after{left:100%;right:initial;top:0;bottom:0;width:200%}[data-vaul-overlay][data-vaul-snap-points=true]:not([data-vaul-snap-points-overlay=true]):not(
|
|
69
|
+
[data-state=closed]
|
|
70
|
+
){opacity:0}[data-vaul-overlay][data-vaul-snap-points-overlay=true]{opacity:1}[data-vaul-handle]{display:block;position:relative;opacity:.7;background:#e2e2e4;margin-left:auto;margin-right:auto;height:5px;width:32px;border-radius:1rem;touch-action:pan-y}[data-vaul-handle]:active,[data-vaul-handle]:hover{opacity:1}[data-vaul-handle-hitarea]{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:max(100%,2.75rem);height:max(100%,2.75rem);touch-action:inherit}@media (hover:hover) and (pointer:fine){[data-vaul-drawer]{user-select:none}}@media (pointer:fine){[data-vaul-handle-hitarea]:{width:100%;height:100%}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeOut{to{opacity:0}}@keyframes slideFromBottom{from{transform:translate3d(0,var(--initial-transform,100%),0)}to{transform:translate3d(0,0,0)}}@keyframes slideToBottom{to{transform:translate3d(0,var(--initial-transform,100%),0)}}@keyframes slideFromTop{from{transform:translate3d(0,calc(var(--initial-transform,100%) * -1),0)}to{transform:translate3d(0,0,0)}}@keyframes slideToTop{to{transform:translate3d(0,calc(var(--initial-transform,100%) * -1),0)}}@keyframes slideFromLeft{from{transform:translate3d(calc(var(--initial-transform,100%) * -1),0,0)}to{transform:translate3d(0,0,0)}}@keyframes slideToLeft{to{transform:translate3d(calc(var(--initial-transform,100%) * -1),0,0)}}@keyframes slideFromRight{from{transform:translate3d(var(--initial-transform,100%),0,0)}to{transform:translate3d(0,0,0)}}@keyframes slideToRight{to{transform:translate3d(var(--initial-transform,100%),0,0)}}`);function Mre(){const e=navigator.userAgent;return typeof window<"u"&&(/Firefox/.test(e)&&/Mobile/.test(e)||/FxiOS/.test(e))}function wre(){return BA(/^Mac/)}function xre(){return BA(/^iPhone/)}function GH(){return/^((?!chrome|android).)*safari/i.test(navigator.userAgent)}function Nre(){return BA(/^iPad/)||wre()&&navigator.maxTouchPoints>1}function KH(){return xre()||Nre()}function BA(e){return typeof window<"u"&&window.navigator!=null?e.test(window.navigator.platform):void 0}const Cre=24,$re=typeof window<"u"?w.useLayoutEffect:w.useEffect;function YH(...e){return(...t)=>{for(let o of e)typeof o=="function"&&o(...t)}}const WA=typeof document<"u"&&window.visualViewport;function XH(e){let t=window.getComputedStyle(e);return/(auto|scroll)/.test(t.overflow+t.overflowX+t.overflowY)}function ZH(e){for(XH(e)&&(e=e.parentElement);e&&!XH(e);)e=e.parentElement;return e||document.scrollingElement||document.documentElement}const Sre=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);let _$=0,UA;function Lre(e={}){let{isDisabled:t}=e;$re(()=>{if(!t)return _$++,_$===1&&KH()&&(UA=Ire()),()=>{_$--,_$===0&&UA?.()}},[t])}function Ire(){let e,t=0,o=h=>{e=ZH(h.target),!(e===document.documentElement&&e===document.body)&&(t=h.changedTouches[0].pageY)},n=h=>{if(!e||e===document.documentElement||e===document.body){h.preventDefault();return}let f=h.changedTouches[0].pageY,k=e.scrollTop,m=e.scrollHeight-e.clientHeight;m!==0&&((k<=0&&f>t||k>=m&&f<t)&&h.preventDefault(),t=f)},a=h=>{let f=h.target;RA(f)&&f!==document.activeElement&&(h.preventDefault(),f.style.transform="translateY(-2000px)",f.focus(),requestAnimationFrame(()=>{f.style.transform=""}))},r=h=>{let f=h.target;RA(f)&&(f.style.transform="translateY(-2000px)",requestAnimationFrame(()=>{f.style.transform="",WA&&(WA.height<window.innerHeight?requestAnimationFrame(()=>{QH(f)}):WA.addEventListener("resize",()=>QH(f),{once:!0}))}))},i=()=>{window.scrollTo(0,0)},s=window.pageXOffset,l=window.pageYOffset,u=YH(Are(document.documentElement,"paddingRight",`${window.innerWidth-document.documentElement.clientWidth}px`));window.scrollTo(0,0);let y=YH(Kd(document,"touchstart",o,{passive:!1,capture:!0}),Kd(document,"touchmove",n,{passive:!1,capture:!0}),Kd(document,"touchend",a,{passive:!1,capture:!0}),Kd(document,"focus",r,!0),Kd(window,"scroll",i));return()=>{u(),y(),window.scrollTo(s,l)}}function Are(e,t,o){let n=e.style[t];return e.style[t]=o,()=>{e.style[t]=n}}function Kd(e,t,o,n){return e.addEventListener(t,o,n),()=>{e.removeEventListener(t,o,n)}}function QH(e){let t=document.scrollingElement||document.documentElement;for(;e&&e!==t;){let o=ZH(e);if(o!==document.documentElement&&o!==document.body&&o!==e){let n=o.getBoundingClientRect().top,a=e.getBoundingClientRect().top,r=e.getBoundingClientRect().bottom;const i=o.getBoundingClientRect().bottom+Cre;r>i&&(o.scrollTop+=a-n)}e=o.parentElement}}function RA(e){return e instanceof HTMLInputElement&&!Sre.has(e.type)||e instanceof HTMLTextAreaElement||e instanceof HTMLElement&&e.isContentEditable}function Pre(e,t){typeof e=="function"?e(t):e!=null&&(e.current=t)}function Tre(...e){return t=>e.forEach(o=>Pre(o,t))}function JH(...e){return p.useCallback(Tre(...e),e)}const eV=new WeakMap;function ut(e,t,o=!1){if(!e||!(e instanceof HTMLElement))return;let n={};Object.entries(t).forEach(([a,r])=>{if(a.startsWith("--")){e.style.setProperty(a,r);return}n[a]=e.style[a],e.style[a]=r}),!o&&eV.set(e,n)}function Dre(e,t){if(!e||!(e instanceof HTMLElement))return;let o=eV.get(e);o&&(e.style[t]=o[t])}const st=e=>{switch(e){case"top":case"bottom":return!0;case"left":case"right":return!1;default:return e}};function b$(e,t){if(!e)return null;const o=window.getComputedStyle(e),n=o.transform||o.webkitTransform||o.mozTransform;let a=n.match(/^matrix3d\((.+)\)$/);return a?parseFloat(a[1].split(", ")[st(t)?13:12]):(a=n.match(/^matrix\((.+)\)$/),a?parseFloat(a[1].split(", ")[st(t)?5:4]):null)}function Ere(e){return 8*(Math.log(e+1)-2)}function GA(e,t){if(!e)return()=>{};const o=e.style.cssText;return Object.assign(e.style,t),()=>{e.style.cssText=o}}function zre(...e){return(...t)=>{for(const o of e)typeof o=="function"&&o(...t)}}const tt={DURATION:.5,EASE:[.32,.72,0,1]},tV=.4,Ore=.25,qre=100,oV=8,Dc=16,KA=26,YA="vaul-dragging";function nV(e){const t=w.useRef(e);return w.useEffect(()=>{t.current=e}),w.useMemo(()=>(...o)=>t.current==null?void 0:t.current.call(t,...o),[])}function jre({defaultProp:e,onChange:t}){const o=w.useState(e),[n]=o,a=w.useRef(n),r=nV(t);return w.useEffect(()=>{a.current!==n&&(r(n),a.current=n)},[n,a,r]),o}function aV({prop:e,defaultProp:t,onChange:o=()=>{}}){const[n,a]=jre({defaultProp:t,onChange:o}),r=e!==void 0,i=r?e:n,s=nV(o),l=w.useCallback(u=>{if(r){const h=typeof u=="function"?u(e):u;h!==e&&s(h)}else a(u)},[r,e,a,s]);return[i,l]}function Hre({activeSnapPointProp:e,setActiveSnapPointProp:t,snapPoints:o,drawerRef:n,overlayRef:a,fadeFromIndex:r,onSnapPointChange:i,direction:s="bottom",container:l,snapToSequentialPoint:u}){const[y,h]=aV({prop:e,defaultProp:o?.[0],onChange:t}),[f,k]=w.useState(typeof window<"u"?{innerWidth:window.innerWidth,innerHeight:window.innerHeight}:void 0);w.useEffect(()=>{function $(){k({innerWidth:window.innerWidth,innerHeight:window.innerHeight})}return window.addEventListener("resize",$),()=>window.removeEventListener("resize",$)},[]);const m=w.useMemo(()=>y===o?.[o.length-1]||null,[o,y]),g=w.useMemo(()=>{var $;return($=o?.findIndex(L=>L===y))!=null?$:null},[o,y]),_=o&&o.length>0&&(r||r===0)&&!Number.isNaN(r)&&o[r]===y||!o,v=w.useMemo(()=>{const $=l?{width:l.getBoundingClientRect().width,height:l.getBoundingClientRect().height}:typeof window<"u"?{width:window.innerWidth,height:window.innerHeight}:{width:0,height:0};var L;return(L=o?.map(A=>{const z=typeof A=="string";let E=0;if(z&&(E=parseInt(A,10)),st(s)){const T=z?E:f?A*$.height:0;return f?s==="bottom"?$.height-T:-$.height+T:T}const O=z?E:f?A*$.width:0;return f?s==="right"?$.width-O:-$.width+O:O}))!=null?L:[]},[o,f,l]),b=w.useMemo(()=>g!==null?v?.[g]:null,[v,g]),M=w.useCallback($=>{var L;const A=(L=v?.findIndex(z=>z===$))!=null?L:null;i(A),ut(n.current,{transition:`transform ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`,transform:st(s)?`translate3d(0, ${$}px, 0)`:`translate3d(${$}px, 0, 0)`}),v&&A!==v.length-1&&r!==void 0&&A!==r&&A<r?ut(a.current,{transition:`opacity ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`,opacity:"0"}):ut(a.current,{transition:`opacity ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`,opacity:"1"}),h(o?.[Math.max(A,0)])},[n.current,o,v,r,a,h]);w.useEffect(()=>{if(y||e){var $;const L=($=o?.findIndex(A=>A===e||A===y))!=null?$:-1;v&&L!==-1&&typeof v[L]=="number"&&M(v[L])}},[y,e,o,v,M]);function x({draggedDistance:$,closeDrawer:L,velocity:A,dismissible:z}){if(r===void 0)return;const E=s==="bottom"||s==="right"?(b??0)-$:(b??0)+$,O=g===r-1,T=g===0,W=$>0;if(O&&ut(a.current,{transition:`opacity ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`}),!u&&A>2&&!W){z?L():M(v[0]);return}if(!u&&A>2&&W&&v&&o){M(v[o.length-1]);return}const R=v?.reduce((Y,j)=>typeof Y!="number"||typeof j!="number"?Y:Math.abs(j-E)<Math.abs(Y-E)?j:Y),H=st(s)?window.innerHeight:window.innerWidth;if(A>tV&&Math.abs($)<H*.4){const Y=W?1:-1;if(Y>0&&m&&o){M(v[o.length-1]);return}if(T&&Y<0&&z&&L(),g===null)return;M(v[g+Y]);return}M(R)}function N({draggedDistance:$}){if(b===null)return;const L=s==="bottom"||s==="right"?b-$:b+$;(s==="bottom"||s==="right")&&L<v[v.length-1]||(s==="top"||s==="left")&&L>v[v.length-1]||ut(n.current,{transform:st(s)?`translate3d(0, ${L}px, 0)`:`translate3d(${L}px, 0, 0)`})}function C($,L){if(!o||typeof g!="number"||!v||r===void 0)return null;const A=g===r-1;if(g>=r&&L)return 0;if(A&&!L)return 1;if(!_&&!A)return null;const E=A?g+1:g-1,O=A?v[E]-v[E-1]:v[E+1]-v[E],T=$/Math.abs(O);return A?1-T:T}return{isLastSnapPoint:m,activeSnapPoint:y,shouldFade:_,getPercentageDragged:C,setActiveSnapPoint:h,activeSnapPointIndex:g,onRelease:x,onDrag:N,snapPointsOffset:v}}const Vre=()=>()=>{};function Fre(){const{direction:e,isOpen:t,shouldScaleBackground:o,setBackgroundColorOnScale:n,noBodyStyles:a}=Gd(),r=w.useRef(null),i=w.useMemo(()=>document.body.style.backgroundColor,[]);function s(){return(window.innerWidth-KA)/window.innerWidth}w.useEffect(()=>{if(t&&o){r.current&&clearTimeout(r.current);const l=document.querySelector("[data-vaul-drawer-wrapper]")||document.querySelector("[vaul-drawer-wrapper]");if(!l)return;zre(n&&!a?GA(document.body,{background:"black"}):Vre,GA(l,{transformOrigin:st(e)?"top":"left",transitionProperty:"transform, border-radius",transitionDuration:`${tt.DURATION}s`,transitionTimingFunction:`cubic-bezier(${tt.EASE.join(",")})`}));const u=GA(l,{borderRadius:`${oV}px`,overflow:"hidden",...st(e)?{transform:`scale(${s()}) translate3d(0, calc(env(safe-area-inset-top) + 14px), 0)`}:{transform:`scale(${s()}) translate3d(calc(env(safe-area-inset-top) + 14px), 0, 0)`}});return()=>{u(),r.current=window.setTimeout(()=>{i?document.body.style.background=i:document.body.style.removeProperty("background")},tt.DURATION*1e3)}}},[t,o,i])}let Yd=null;function Bre({isOpen:e,modal:t,nested:o,hasBeenOpened:n,preventScrollRestoration:a,noBodyStyles:r}){const[i,s]=w.useState(()=>typeof window<"u"?window.location.href:""),l=w.useRef(0),u=w.useCallback(()=>{if(GH()&&Yd===null&&e&&!r){Yd={position:document.body.style.position,top:document.body.style.top,left:document.body.style.left,height:document.body.style.height,right:"unset"};const{scrollX:h,innerHeight:f}=window;document.body.style.setProperty("position","fixed","important"),Object.assign(document.body.style,{top:`${-l.current}px`,left:`${-h}px`,right:"0px",height:"auto"}),window.setTimeout(()=>window.requestAnimationFrame(()=>{const k=f-window.innerHeight;k&&l.current>=f&&(document.body.style.top=`${-(l.current+k)}px`)}),300)}},[e]),y=w.useCallback(()=>{if(GH()&&Yd!==null&&!r){const h=-parseInt(document.body.style.top,10),f=-parseInt(document.body.style.left,10);Object.assign(document.body.style,Yd),window.requestAnimationFrame(()=>{if(a&&i!==window.location.href){s(window.location.href);return}window.scrollTo(f,h)}),Yd=null}},[i]);return w.useEffect(()=>{function h(){l.current=window.scrollY}return h(),window.addEventListener("scroll",h),()=>{window.removeEventListener("scroll",h)}},[]),w.useEffect(()=>{if(t)return()=>{typeof document>"u"||document.querySelector("[data-vaul-drawer]")||y()}},[t,y]),w.useEffect(()=>{o||!n||(e?(!window.matchMedia("(display-mode: standalone)").matches&&u(),t||window.setTimeout(()=>{y()},500)):y())},[e,n,i,t,o,u,y]),{restorePositionSetting:y}}function Wre({open:e,onOpenChange:t,children:o,onDrag:n,onRelease:a,snapPoints:r,shouldScaleBackground:i=!1,setBackgroundColorOnScale:s=!0,closeThreshold:l=Ore,scrollLockTimeout:u=qre,dismissible:y=!0,handleOnly:h=!1,fadeFromIndex:f=r&&r.length-1,activeSnapPoint:k,setActiveSnapPoint:m,fixed:g,modal:_=!0,onClose:v,nested:b,noBodyStyles:M=!1,direction:x="bottom",defaultOpen:N=!1,disablePreventScroll:C=!0,snapToSequentialPoint:$=!1,preventScrollRestoration:L=!1,repositionInputs:A=!0,onAnimationEnd:z,container:E,autoFocus:O=!1}){var T,W;const[R=!1,H]=aV({defaultProp:N,prop:e,onChange:oe=>{t?.(oe),!oe&&!b&&ne(),setTimeout(()=>{z?.(oe)},tt.DURATION*1e3),oe&&!_&&typeof window<"u"&&window.requestAnimationFrame(()=>{document.body.style.pointerEvents="auto"}),oe||(document.body.style.pointerEvents="auto")}}),[Y,j]=w.useState(!1),[U,ce]=w.useState(!1),[le,B]=w.useState(!1),F=w.useRef(null),K=w.useRef(null),G=w.useRef(null),ie=w.useRef(null),V=w.useRef(null),te=w.useRef(!1),fe=w.useRef(null),pe=w.useRef(0),de=w.useRef(!1),ee=w.useRef(!N),_e=w.useRef(0),q=w.useRef(null),ue=w.useRef(((T=q.current)==null?void 0:T.getBoundingClientRect().height)||0),xe=w.useRef(((W=q.current)==null?void 0:W.getBoundingClientRect().width)||0),Ce=w.useRef(0),De=w.useCallback(oe=>{r&&oe===D.length-1&&(K.current=new Date)},[]),{activeSnapPoint:$e,activeSnapPointIndex:Pe,setActiveSnapPoint:P,onRelease:I,snapPointsOffset:D,onDrag:Q,shouldFade:Z,getPercentageDragged:J}=Hre({snapPoints:r,activeSnapPointProp:k,setActiveSnapPointProp:m,drawerRef:q,fadeFromIndex:f,overlayRef:F,onSnapPointChange:De,direction:x,container:E,snapToSequentialPoint:$});Lre({isDisabled:!R||U||!_||le||!Y||!A||!C});const{restorePositionSetting:ne}=Bre({isOpen:R,modal:_,nested:b??!1,hasBeenOpened:Y,preventScrollRestoration:L,noBodyStyles:M});function Ne(){return(window.innerWidth-KA)/window.innerWidth}function Se(oe){var ve,he;!y&&!r||q.current&&!q.current.contains(oe.target)||(ue.current=((ve=q.current)==null?void 0:ve.getBoundingClientRect().height)||0,xe.current=((he=q.current)==null?void 0:he.getBoundingClientRect().width)||0,ce(!0),G.current=new Date,KH()&&window.addEventListener("touchend",()=>te.current=!1,{once:!0}),oe.target.setPointerCapture(oe.pointerId),pe.current=st(x)?oe.pageY:oe.pageX)}function Te(oe,ve){var he;let me=oe;const Le=(he=window.getSelection())==null?void 0:he.toString(),re=q.current?b$(q.current,x):null,Ae=new Date;if(me.tagName==="SELECT"||me.hasAttribute("data-vaul-no-drag")||me.closest("[data-vaul-no-drag]"))return!1;if(x==="right"||x==="left")return!0;if(K.current&&Ae.getTime()-K.current.getTime()<500)return!1;if(re!==null&&(x==="bottom"?re>0:re<0))return!0;if(Le&&Le.length>0)return!1;if(V.current&&Ae.getTime()-V.current.getTime()<u&&re===0||ve)return V.current=Ae,!1;for(;me;){if(me.scrollHeight>me.clientHeight){if(me.scrollTop!==0)return V.current=new Date,!1;if(me.getAttribute("role")==="dialog")return!0}me=me.parentNode}return!0}function dt(oe){if(q.current&&U){const ve=x==="bottom"||x==="right"?1:-1,he=(pe.current-(st(x)?oe.pageY:oe.pageX))*ve,me=he>0,Le=r&&!y&&!me;if(Le&&Pe===0)return;const re=Math.abs(he),Ae=document.querySelector("[data-vaul-drawer-wrapper]"),Oe=x==="bottom"||x==="top"?ue.current:xe.current;let Fe=re/Oe;const kt=J(re,me);if(kt!==null&&(Fe=kt),Le&&Fe>=1||!te.current&&!Te(oe.target,me))return;if(q.current.classList.add(YA),te.current=!0,ut(q.current,{transition:"none"}),ut(F.current,{transition:"none"}),r&&Q({draggedDistance:he}),me&&!r){const ot=Ere(he),Ko=Math.min(ot*-1,0)*ve;ut(q.current,{transform:st(x)?`translate3d(0, ${Ko}px, 0)`:`translate3d(${Ko}px, 0, 0)`});return}const qe=1-Fe;if((Z||f&&Pe===f-1)&&(n?.(oe,Fe),ut(F.current,{opacity:`${qe}`,transition:"none"},!0)),Ae&&F.current&&i){const ot=Math.min(Ne()+Fe*(1-Ne()),1),Ko=8-Fe*8,Lt=Math.max(0,14-Fe*14);ut(Ae,{borderRadius:`${Ko}px`,transform:st(x)?`scale(${ot}) translate3d(0, ${Lt}px, 0)`:`scale(${ot}) translate3d(${Lt}px, 0, 0)`,transition:"none"},!0)}if(!r){const ot=re*ve;ut(q.current,{transform:st(x)?`translate3d(0, ${ot}px, 0)`:`translate3d(${ot}px, 0, 0)`})}}}w.useEffect(()=>{window.requestAnimationFrame(()=>{ee.current=!0})},[]),w.useEffect(()=>{var oe;function ve(){if(!q.current||!A)return;const he=document.activeElement;if(RA(he)||de.current){var me;const Le=((me=window.visualViewport)==null?void 0:me.height)||0,re=window.innerHeight;let Ae=re-Le;const Oe=q.current.getBoundingClientRect().height||0,Fe=Oe>re*.8;Ce.current||(Ce.current=Oe);const kt=q.current.getBoundingClientRect().top;if(Math.abs(_e.current-Ae)>60&&(de.current=!de.current),r&&r.length>0&&D&&Pe){const qe=D[Pe]||0;Ae+=qe}if(_e.current=Ae,Oe>Le||de.current){const qe=q.current.getBoundingClientRect().height;let ot=qe;qe>Le&&(ot=Le-(Fe?kt:KA)),g?q.current.style.height=`${qe-Math.max(Ae,0)}px`:q.current.style.height=`${Math.max(ot,Le-kt)}px`}else Mre()||(q.current.style.height=`${Ce.current}px`);r&&r.length>0&&!de.current?q.current.style.bottom="0px":q.current.style.bottom=`${Math.max(Ae,0)}px`}}return(oe=window.visualViewport)==null||oe.addEventListener("resize",ve),()=>{var he;return(he=window.visualViewport)==null?void 0:he.removeEventListener("resize",ve)}},[Pe,r,D]);function Ve(oe){wt(),v?.(),oe||H(!1),setTimeout(()=>{r&&P(r[0])},tt.DURATION*1e3)}function nt(){if(!q.current)return;const oe=document.querySelector("[data-vaul-drawer-wrapper]"),ve=b$(q.current,x);ut(q.current,{transform:"translate3d(0, 0, 0)",transition:`transform ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`}),ut(F.current,{transition:`opacity ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`,opacity:"1"}),i&&ve&&ve>0&&R&&ut(oe,{borderRadius:`${oV}px`,overflow:"hidden",...st(x)?{transform:`scale(${Ne()}) translate3d(0, calc(env(safe-area-inset-top) + 14px), 0)`,transformOrigin:"top"}:{transform:`scale(${Ne()}) translate3d(calc(env(safe-area-inset-top) + 14px), 0, 0)`,transformOrigin:"left"},transitionProperty:"transform, border-radius",transitionDuration:`${tt.DURATION}s`,transitionTimingFunction:`cubic-bezier(${tt.EASE.join(",")})`},!0)}function wt(){!U||!q.current||(q.current.classList.remove(YA),te.current=!1,ce(!1),ie.current=new Date)}function St(oe){if(!U||!q.current)return;q.current.classList.remove(YA),te.current=!1,ce(!1),ie.current=new Date;const ve=b$(q.current,x);if(!oe||!Te(oe.target,!1)||!ve||Number.isNaN(ve)||G.current===null)return;const he=ie.current.getTime()-G.current.getTime(),me=pe.current-(st(x)?oe.pageY:oe.pageX),Le=Math.abs(me)/he;if(Le>.05&&(B(!0),setTimeout(()=>{B(!1)},200)),r){I({draggedDistance:me*(x==="bottom"||x==="right"?1:-1),closeDrawer:Ve,velocity:Le,dismissible:y}),a?.(oe,!0);return}if(x==="bottom"||x==="right"?me>0:me<0){nt(),a?.(oe,!0);return}if(Le>tV){Ve(),a?.(oe,!1);return}var re;const Ae=Math.min((re=q.current.getBoundingClientRect().height)!=null?re:0,window.innerHeight);var Oe;const Fe=Math.min((Oe=q.current.getBoundingClientRect().width)!=null?Oe:0,window.innerWidth),kt=x==="left"||x==="right";if(Math.abs(ve)>=(kt?Fe:Ae)*l){Ve(),a?.(oe,!1);return}a?.(oe,!0),nt()}w.useEffect(()=>(R&&(ut(document.documentElement,{scrollBehavior:"auto"}),K.current=new Date),()=>{Dre(document.documentElement,"scrollBehavior")}),[R]);function zo(oe){const ve=oe?(window.innerWidth-Dc)/window.innerWidth:1,he=oe?-Dc:0;fe.current&&window.clearTimeout(fe.current),ut(q.current,{transition:`transform ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`,transform:st(x)?`scale(${ve}) translate3d(0, ${he}px, 0)`:`scale(${ve}) translate3d(${he}px, 0, 0)`}),!oe&&q.current&&(fe.current=setTimeout(()=>{const me=b$(q.current,x);ut(q.current,{transition:"none",transform:st(x)?`translate3d(0, ${me}px, 0)`:`translate3d(${me}px, 0, 0)`})},500))}function lo(oe,ve){if(ve<0)return;const he=(window.innerWidth-Dc)/window.innerWidth,me=he+ve*(1-he),Le=-Dc+ve*Dc;ut(q.current,{transform:st(x)?`scale(${me}) translate3d(0, ${Le}px, 0)`:`scale(${me}) translate3d(${Le}px, 0, 0)`,transition:"none"})}function uo(oe,ve){const he=st(x)?window.innerHeight:window.innerWidth,me=ve?(he-Dc)/he:1,Le=ve?-Dc:0;ve&&ut(q.current,{transition:`transform ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`,transform:st(x)?`scale(${me}) translate3d(0, ${Le}px, 0)`:`scale(${me}) translate3d(${Le}px, 0, 0)`})}return w.useEffect(()=>{_||window.requestAnimationFrame(()=>{document.body.style.pointerEvents="auto"})},[_]),w.createElement(cd,{defaultOpen:N,onOpenChange:oe=>{!y&&!oe||(oe?j(!0):Ve(!0),H(oe))},open:R},w.createElement(RH.Provider,{value:{activeSnapPoint:$e,snapPoints:r,setActiveSnapPoint:P,drawerRef:q,overlayRef:F,onOpenChange:t,onPress:Se,onRelease:St,onDrag:dt,dismissible:y,shouldAnimate:ee,handleOnly:h,isOpen:R,isDragging:U,shouldFade:Z,closeDrawer:Ve,onNestedDrag:lo,onNestedOpenChange:zo,onNestedRelease:uo,keyboardIsOpen:de,modal:_,snapPointsOffset:D,activeSnapPointIndex:Pe,direction:x,shouldScaleBackground:i,setBackgroundColorOnScale:s,noBodyStyles:M,container:E,autoFocus:O}},o))}const rV=w.forwardRef(function({...e},t){const{overlayRef:o,snapPoints:n,onRelease:a,shouldFade:r,isOpen:i,modal:s,shouldAnimate:l}=Gd(),u=JH(t,o),y=n&&n.length>0;if(!s)return null;const h=w.useCallback(f=>a(f),[a]);return w.createElement(Cc,{onMouseUp:h,ref:u,"data-vaul-overlay":"","data-vaul-snap-points":i&&y?"true":"false","data-vaul-snap-points-overlay":i&&r?"true":"false","data-vaul-animate":l?.current?"true":"false",...e})});rV.displayName="Drawer.Overlay";const iV=w.forwardRef(function({onPointerDownOutside:e,style:t,onOpenAutoFocus:o,...n},a){const{drawerRef:r,onPress:i,onRelease:s,onDrag:l,keyboardIsOpen:u,snapPointsOffset:y,activeSnapPointIndex:h,modal:f,isOpen:k,direction:m,snapPoints:g,container:_,handleOnly:v,shouldAnimate:b,autoFocus:M}=Gd(),[x,N]=w.useState(!1),C=JH(a,r),$=w.useRef(null),L=w.useRef(null),A=w.useRef(!1),z=g&&g.length>0;Fre();const E=(T,W,R=0)=>{if(A.current)return!0;const H=Math.abs(T.y),Y=Math.abs(T.x),j=Y>H,U=["bottom","right"].includes(W)?1:-1;if(W==="left"||W==="right"){if(!(T.x*U<0)&&Y>=0&&Y<=R)return j}else if(!(T.y*U<0)&&H>=0&&H<=R)return!j;return A.current=!0,!0};w.useEffect(()=>{z&&window.requestAnimationFrame(()=>{N(!0)})},[]);function O(T){$.current=null,A.current=!1,s(T)}return w.createElement($c,{"data-vaul-drawer-direction":m,"data-vaul-drawer":"","data-vaul-delayed-snap-points":x?"true":"false","data-vaul-snap-points":k&&z?"true":"false","data-vaul-custom-container":_?"true":"false","data-vaul-animate":b?.current?"true":"false",...n,ref:C,style:y&&y.length>0?{"--snap-point-height":`${y[h??0]}px`,...t}:t,onPointerDown:T=>{v||(n.onPointerDown==null||n.onPointerDown.call(n,T),$.current={x:T.pageX,y:T.pageY},i(T))},onOpenAutoFocus:T=>{o?.(T),M||T.preventDefault()},onPointerDownOutside:T=>{if(e?.(T),!f||T.defaultPrevented){T.preventDefault();return}u.current&&(u.current=!1)},onFocusOutside:T=>{if(!f){T.preventDefault();return}},onPointerMove:T=>{if(L.current=T,v||(n.onPointerMove==null||n.onPointerMove.call(n,T),!$.current))return;const W=T.pageY-$.current.y,R=T.pageX-$.current.x,H=T.pointerType==="touch"?10:2;E({x:R,y:W},m,H)?l(T):(Math.abs(R)>H||Math.abs(W)>H)&&($.current=null)},onPointerUp:T=>{n.onPointerUp==null||n.onPointerUp.call(n,T),$.current=null,A.current=!1,s(T)},onPointerOut:T=>{n.onPointerOut==null||n.onPointerOut.call(n,T),O(L.current)},onContextMenu:T=>{n.onContextMenu==null||n.onContextMenu.call(n,T),L.current&&O(L.current)}})});iV.displayName="Drawer.Content";const Ure=250,Rre=120,Gre=w.forwardRef(function({preventCycle:e=!1,children:t,...o},n){const{closeDrawer:a,isDragging:r,snapPoints:i,activeSnapPoint:s,setActiveSnapPoint:l,dismissible:u,handleOnly:y,isOpen:h,onPress:f,onDrag:k}=Gd(),m=w.useRef(null),g=w.useRef(!1);function _(){if(g.current){M();return}window.setTimeout(()=>{v()},Rre)}function v(){if(r||e||g.current){M();return}if(M(),!i||i.length===0){u||a();return}if(s===i[i.length-1]&&u){a();return}const N=i.findIndex($=>$===s);if(N===-1)return;const C=i[N+1];l(C)}function b(){m.current=window.setTimeout(()=>{g.current=!0},Ure)}function M(){m.current&&window.clearTimeout(m.current),g.current=!1}return w.createElement("div",{onClick:_,onPointerCancel:M,onPointerDown:x=>{y&&f(x),b()},onPointerMove:x=>{y&&k(x)},ref:n,"data-vaul-drawer-visible":h?"true":"false","data-vaul-handle":"","aria-hidden":"true",...o},w.createElement("span",{"data-vaul-handle-hitarea":"","aria-hidden":"true"},t))});Gre.displayName="Drawer.Handle";function Kre(e){const t=Gd(),{container:o=t.container,...n}=e;return w.createElement(sd,{container:o,...n})}const ro={Root:Wre,Content:iV,Overlay:rV,Trigger:jC,Portal:Kre,Close:dd,Title:rs,Description:is},cV=({shouldScaleBackground:e=!0,...t})=>d.jsx(ro.Root,{shouldScaleBackground:e,...t});cV.displayName="Drawer";const Yre=ro.Trigger,Xre=ro.Portal,Zre=ro.Close,sV=p.forwardRef(({className:e,...t},o)=>d.jsx(ro.Overlay,{ref:o,className:S("fixed inset-0 z-50 bg-black/80",e),...t}));sV.displayName=ro.Overlay.displayName;const dV=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(Xre,{children:[d.jsx(sV,{}),d.jsxs(ro.Content,{ref:n,className:S("fixed inset-x-0 bottom-0 z-50 mt-24 flex h-auto flex-col rounded-t-[10px] border bg-background",e),...o,children:[d.jsx("div",{className:"mx-auto mt-4 h-2 w-[100px] rounded-full bg-muted"}),t]})]}));dV.displayName="DrawerContent";const lV=({className:e,...t})=>d.jsx("div",{className:S("grid gap-1.5 p-4 text-center sm:text-left",e),...t});lV.displayName="DrawerHeader";const uV=({className:e,...t})=>d.jsx("div",{className:S("mt-auto flex flex-col gap-2 p-4",e),...t});uV.displayName="DrawerFooter";const hV=p.forwardRef(({className:e,...t},o)=>d.jsx(ro.Title,{ref:o,className:S("text-lg font-semibold leading-none tracking-tight",e),...t}));hV.displayName=ro.Title.displayName;const pV=p.forwardRef(({className:e,...t},o)=>d.jsx(ro.Description,{ref:o,className:S("text-sm text-muted-foreground",e),...t}));pV.displayName=ro.Description.displayName;var M$="DropdownMenu",[Qre]=Xe(M$,[Fd]),ft=Fd(),[Jre,yV]=Qre(M$),fV=e=>{const{__scopeDropdownMenu:t,children:o,dir:n,open:a,defaultOpen:r,onOpenChange:i,modal:s=!0}=e,l=ft(t),u=p.useRef(null),[y,h]=Ke({prop:a,defaultProp:r??!1,onChange:i,caller:M$});return d.jsx(Jre,{scope:t,triggerId:We(),triggerRef:u,contentId:We(),open:y,onOpenChange:h,onOpenToggle:p.useCallback(()=>h(f=>!f),[h]),modal:s,children:d.jsx(CA,{...l,open:y,onOpenChange:h,dir:n,modal:s,children:o})})};fV.displayName=M$;var mV="DropdownMenuTrigger",kV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,disabled:n=!1,...a}=e,r=yV(mV,o),i=ft(o);return d.jsx($A,{asChild:!0,...i,children:d.jsx(se.button,{type:"button",id:r.triggerId,"aria-haspopup":"menu","aria-expanded":r.open,"aria-controls":r.open?r.contentId:void 0,"data-state":r.open?"open":"closed","data-disabled":n?"":void 0,disabled:n,...a,ref:Xt(t,r.triggerRef),onPointerDown:X(e.onPointerDown,s=>{!n&&s.button===0&&s.ctrlKey===!1&&(r.onOpenToggle(),r.open||s.preventDefault())}),onKeyDown:X(e.onKeyDown,s=>{n||(["Enter"," "].includes(s.key)&&r.onOpenToggle(),s.key==="ArrowDown"&&r.onOpenChange(!0),["Enter"," ","ArrowDown"].includes(s.key)&&s.preventDefault())})})})});kV.displayName=mV;var eie="DropdownMenuPortal",gV=e=>{const{__scopeDropdownMenu:t,...o}=e,n=ft(t);return d.jsx(SA,{...n,...o})};gV.displayName=eie;var vV="DropdownMenuContent",_V=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=yV(vV,o),r=ft(o),i=p.useRef(!1);return d.jsx(LA,{id:a.contentId,"aria-labelledby":a.triggerId,...r,...n,ref:t,onCloseAutoFocus:X(e.onCloseAutoFocus,s=>{i.current||a.triggerRef.current?.focus(),i.current=!1,s.preventDefault()}),onInteractOutside:X(e.onInteractOutside,s=>{const l=s.detail.originalEvent,u=l.button===0&&l.ctrlKey===!0,y=l.button===2||u;(!a.modal||y)&&(i.current=!0)}),style:{...e.style,"--radix-dropdown-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-dropdown-menu-content-available-width":"var(--radix-popper-available-width)","--radix-dropdown-menu-content-available-height":"var(--radix-popper-available-height)","--radix-dropdown-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-dropdown-menu-trigger-height":"var(--radix-popper-anchor-height)"}})});_V.displayName=vV;var tie="DropdownMenuGroup",oie=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(IA,{...a,...n,ref:t})});oie.displayName=tie;var nie="DropdownMenuLabel",bV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(AA,{...a,...n,ref:t})});bV.displayName=nie;var aie="DropdownMenuItem",MV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(PA,{...a,...n,ref:t})});MV.displayName=aie;var rie="DropdownMenuCheckboxItem",wV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(TA,{...a,...n,ref:t})});wV.displayName=rie;var iie="DropdownMenuRadioGroup",cie=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(DA,{...a,...n,ref:t})});cie.displayName=iie;var sie="DropdownMenuRadioItem",xV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(EA,{...a,...n,ref:t})});xV.displayName=sie;var die="DropdownMenuItemIndicator",NV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(zA,{...a,...n,ref:t})});NV.displayName=die;var lie="DropdownMenuSeparator",CV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(OA,{...a,...n,ref:t})});CV.displayName=lie;var uie="DropdownMenuArrow",hie=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(qA,{...a,...n,ref:t})});hie.displayName=uie;var pie=e=>{const{__scopeDropdownMenu:t,children:o,open:n,onOpenChange:a,defaultOpen:r}=e,i=ft(t),[s,l]=Ke({prop:n,defaultProp:r??!1,onChange:a,caller:"DropdownMenuSub"});return d.jsx(jA,{...i,open:s,onOpenChange:l,children:o})},yie="DropdownMenuSubTrigger",$V=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(HA,{...a,...n,ref:t})});$V.displayName=yie;var fie="DropdownMenuSubContent",SV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(VA,{...a,...n,ref:t,style:{...e.style,"--radix-dropdown-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-dropdown-menu-content-available-width":"var(--radix-popper-available-width)","--radix-dropdown-menu-content-available-height":"var(--radix-popper-available-height)","--radix-dropdown-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-dropdown-menu-trigger-height":"var(--radix-popper-anchor-height)"}})});SV.displayName=fie;var mie=fV,kie=kV,gie=gV,LV=_V,IV=bV,AV=MV,PV=wV,TV=xV,DV=NV,EV=CV,vie=pie,zV=$V,OV=SV;const _ie=mie,bie=kie,Mie=vie,qV=p.forwardRef(({className:e,inset:t,children:o,...n},a)=>d.jsxs(zV,{ref:a,className:S("flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent data-[state=open]:bg-accent [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",t&&"pl-8",e),...n,children:[o,d.jsx(Pt,{className:"ml-auto"})]}));qV.displayName=zV.displayName;const jV=p.forwardRef(({className:e,...t},o)=>d.jsx(OV,{ref:o,className:S("z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-dropdown-menu-content-transform-origin]",e),...t}));jV.displayName=OV.displayName;const HV=p.forwardRef(({className:e,sideOffset:t=4,...o},n)=>d.jsx(gie,{children:d.jsx(LV,{ref:n,sideOffset:t,className:S("z-50 max-h-[var(--radix-dropdown-menu-content-available-height)] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-dropdown-menu-content-transform-origin]",e),...o})}));HV.displayName=LV.displayName;const VV=p.forwardRef(({className:e,inset:t,...o},n)=>d.jsx(AV,{ref:n,className:S("relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",t&&"pl-8",e),...o}));VV.displayName=AV.displayName;const wie=p.forwardRef(({className:e,children:t,checked:o,...n},a)=>d.jsxs(PV,{ref:a,className:S("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e),checked:o,...n,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx(DV,{children:d.jsx(po,{className:"h-4 w-4"})})}),t]}));wie.displayName=PV.displayName;const xie=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(TV,{ref:n,className:S("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e),...o,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx(DV,{children:d.jsx(Qo,{className:"h-2 w-2 fill-current"})})}),t]}));xie.displayName=TV.displayName;const XA=p.forwardRef(({className:e,inset:t,...o},n)=>d.jsx(IV,{ref:n,className:S("px-2 py-1.5 text-sm font-semibold",t&&"pl-8",e),...o}));XA.displayName=IV.displayName;const ZA=p.forwardRef(({className:e,...t},o)=>d.jsx(EV,{ref:o,className:S("-mx-1 my-1 h-px bg-muted",e),...t}));ZA.displayName=EV.displayName;var Nie="Label",FV=p.forwardRef((e,t)=>d.jsx(ht.label,{...e,ref:t,onMouseDown:o=>{o.target.closest("button, input, select, textarea")||(e.onMouseDown?.(o),!o.defaultPrevented&&o.detail>1&&o.preventDefault())}}));FV.displayName=Nie;var BV=FV;const Cie=Bo("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"),Wt=p.forwardRef(({className:e,...t},o)=>d.jsx(BV,{ref:o,className:S(Cie(),e),...t}));Wt.displayName=BV.displayName;const $ie=SK,WV=p.createContext(null),Sie=({...e})=>d.jsx(WV.Provider,{value:{name:e.name},children:d.jsx(CK,{...e})}),w$=()=>{const e=p.useContext(WV),t=p.useContext(UV),{getFieldState:o,formState:n}=$K();if(!e)throw new Error("useFormField should be used within <FormField>");if(!t)throw new Error("useFormField should be used within <FormItem>");const a=o(e.name,n),{id:r}=t;return{id:r,name:e.name,formItemId:`${r}-form-item`,formDescriptionId:`${r}-form-item-description`,formMessageId:`${r}-form-item-message`,...a}},UV=p.createContext(null),RV=p.forwardRef(({className:e,...t},o)=>{const n=p.useId();return d.jsx(UV.Provider,{value:{id:n},children:d.jsx("div",{ref:o,className:S("space-y-2",e),...t})})});RV.displayName="FormItem";const GV=p.forwardRef(({className:e,...t},o)=>{const{error:n,formItemId:a}=w$();return d.jsx(Wt,{ref:o,className:S(n&&"text-destructive",e),htmlFor:a,...t})});GV.displayName="FormLabel";const KV=p.forwardRef(({...e},t)=>{const{error:o,formItemId:n,formDescriptionId:a,formMessageId:r}=w$();return d.jsx(Fo,{ref:t,id:n,"aria-describedby":o?`${a} ${r}`:`${a}`,"aria-invalid":!!o,...e})});KV.displayName="FormControl";const YV=p.forwardRef(({className:e,...t},o)=>{const{formDescriptionId:n}=w$();return d.jsx("p",{ref:o,id:n,className:S("text-sm text-muted-foreground",e),...t})});YV.displayName="FormDescription";const XV=p.forwardRef(({className:e,children:t,...o},n)=>{const{error:a,formMessageId:r}=w$(),i=a?String(a?.message??""):t;return i?d.jsx("p",{ref:n,id:r,className:S("text-sm font-medium text-destructive",e),...o,children:i}):null});XV.displayName="FormMessage";var QA,x$="HoverCard",[ZV]=Xe(x$,[Io]),N$=Io(),[Lie,JA]=ZV(x$),QV=e=>{const{__scopeHoverCard:t,children:o,open:n,defaultOpen:a,onOpenChange:r,openDelay:i=700,closeDelay:s=300}=e,l=N$(t),u=p.useRef(0),y=p.useRef(0),h=p.useRef(!1),f=p.useRef(!1),[k,m]=Ke({prop:n,defaultProp:a??!1,onChange:r,caller:x$}),g=p.useCallback(()=>{clearTimeout(y.current),u.current=window.setTimeout(()=>m(!0),i)},[i,m]),_=p.useCallback(()=>{clearTimeout(u.current),!h.current&&!f.current&&(y.current=window.setTimeout(()=>m(!1),s))},[s,m]),v=p.useCallback(()=>m(!1),[m]);return p.useEffect(()=>()=>{clearTimeout(u.current),clearTimeout(y.current)},[]),d.jsx(Lie,{scope:t,open:k,onOpenChange:m,onOpen:g,onClose:_,onDismiss:v,hasSelectionRef:h,isPointerDownOnContentRef:f,children:d.jsx(ws,{...l,children:o})})};QV.displayName=x$;var JV="HoverCardTrigger",eF=p.forwardRef((e,t)=>{const{__scopeHoverCard:o,...n}=e,a=JA(JV,o),r=N$(o);return d.jsx(xs,{asChild:!0,...r,children:d.jsx(se.a,{"data-state":a.open?"open":"closed",...n,ref:t,onPointerEnter:X(e.onPointerEnter,$$(a.onOpen)),onPointerLeave:X(e.onPointerLeave,$$(a.onClose)),onFocus:X(e.onFocus,a.onOpen),onBlur:X(e.onBlur,a.onClose),onTouchStart:X(e.onTouchStart,i=>i.preventDefault())})})});eF.displayName=JV;var Iie="HoverCardPortal",[DTe,Aie]=ZV(Iie,{forceMount:void 0}),C$="HoverCardContent",tF=p.forwardRef((e,t)=>{const o=Aie(C$,e.__scopeHoverCard),{forceMount:n=o.forceMount,...a}=e,r=JA(C$,e.__scopeHoverCard);return d.jsx(Qe,{present:n||r.open,children:d.jsx(Pie,{"data-state":r.open?"open":"closed",...a,onPointerEnter:X(e.onPointerEnter,$$(r.onOpen)),onPointerLeave:X(e.onPointerLeave,$$(r.onClose)),ref:t})})});tF.displayName=C$;var Pie=p.forwardRef((e,t)=>{const{__scopeHoverCard:o,onEscapeKeyDown:n,onPointerDownOutside:a,onFocusOutside:r,onInteractOutside:i,...s}=e,l=JA(C$,o),u=N$(o),y=p.useRef(null),h=be(t,y),[f,k]=p.useState(!1);return p.useEffect(()=>{if(f){const m=document.body;return QA=m.style.userSelect||m.style.webkitUserSelect,m.style.userSelect="none",m.style.webkitUserSelect="none",()=>{m.style.userSelect=QA,m.style.webkitUserSelect=QA}}},[f]),p.useEffect(()=>{if(y.current){const m=()=>{k(!1),l.isPointerDownOnContentRef.current=!1,setTimeout(()=>{document.getSelection()?.toString()!==""&&(l.hasSelectionRef.current=!0)})};return document.addEventListener("pointerup",m),()=>{document.removeEventListener("pointerup",m),l.hasSelectionRef.current=!1,l.isPointerDownOnContentRef.current=!1}}},[l.isPointerDownOnContentRef,l.hasSelectionRef]),p.useEffect(()=>{y.current&&Eie(y.current).forEach(g=>g.setAttribute("tabindex","-1"))}),d.jsx(nn,{asChild:!0,disableOutsidePointerEvents:!1,onInteractOutside:i,onEscapeKeyDown:n,onPointerDownOutside:a,onFocusOutside:X(r,m=>{m.preventDefault()}),onDismiss:l.onDismiss,children:d.jsx(Ed,{...u,...s,onPointerDown:X(s.onPointerDown,m=>{m.currentTarget.contains(m.target)&&k(!0),l.hasSelectionRef.current=!1,l.isPointerDownOnContentRef.current=!0}),ref:h,style:{...s.style,userSelect:f?"text":void 0,WebkitUserSelect:f?"text":void 0,"--radix-hover-card-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-hover-card-content-available-width":"var(--radix-popper-available-width)","--radix-hover-card-content-available-height":"var(--radix-popper-available-height)","--radix-hover-card-trigger-width":"var(--radix-popper-anchor-width)","--radix-hover-card-trigger-height":"var(--radix-popper-anchor-height)"}})})}),Tie="HoverCardArrow",Die=p.forwardRef((e,t)=>{const{__scopeHoverCard:o,...n}=e,a=N$(o);return d.jsx(zd,{...a,...n,ref:t})});Die.displayName=Tie;function $$(e){return t=>t.pointerType==="touch"?void 0:e()}function Eie(e){const t=[],o=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:n=>n.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP});for(;o.nextNode();)t.push(o.currentNode);return t}var zie=QV,Oie=eF,oF=tF;const qie=zie,jie=Oie,nF=p.forwardRef(({className:e,align:t="center",sideOffset:o=4,...n},a)=>d.jsx(oF,{ref:a,align:t,sideOffset:o,className:S("z-50 w-64 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-hover-card-content-transform-origin]",e),...n}));nF.displayName=oF.displayName;var Hie=Object.defineProperty,Vie=Object.defineProperties,Fie=Object.getOwnPropertyDescriptors,S$=Object.getOwnPropertySymbols,aF=Object.prototype.hasOwnProperty,rF=Object.prototype.propertyIsEnumerable,iF=(e,t,o)=>t in e?Hie(e,t,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[t]=o,Bie=(e,t)=>{for(var o in t||(t={}))aF.call(t,o)&&iF(e,o,t[o]);if(S$)for(var o of S$(t))rF.call(t,o)&&iF(e,o,t[o]);return e},Wie=(e,t)=>Vie(e,Fie(t)),Uie=(e,t)=>{var o={};for(var n in e)aF.call(e,n)&&t.indexOf(n)<0&&(o[n]=e[n]);if(e!=null&&S$)for(var n of S$(e))t.indexOf(n)<0&&rF.call(e,n)&&(o[n]=e[n]);return o};function Rie(e){let t=setTimeout(e,0),o=setTimeout(e,10),n=setTimeout(e,50);return[t,o,n]}function Gie(e){let t=p.useRef();return p.useEffect(()=>{t.current=e}),t.current}var Kie=18,cF=40,Yie=`${cF}px`,Xie=["[data-lastpass-icon-root]","com-1password-button","[data-dashlanecreated]",'[style$="2147483647 !important;"]'].join(",");function Zie({containerRef:e,inputRef:t,pushPasswordManagerStrategy:o,isFocused:n}){let[a,r]=p.useState(!1),[i,s]=p.useState(!1),[l,u]=p.useState(!1),y=p.useMemo(()=>o==="none"?!1:(o==="increase-width"||o==="experimental-no-flickering")&&a&&i,[a,i,o]),h=p.useCallback(()=>{let f=e.current,k=t.current;if(!f||!k||l||o==="none")return;let m=f,g=m.getBoundingClientRect().left+m.offsetWidth,_=m.getBoundingClientRect().top+m.offsetHeight/2,v=g-Kie,b=_;document.querySelectorAll(Xie).length===0&&document.elementFromPoint(v,b)===f||(r(!0),u(!0))},[e,t,l,o]);return p.useEffect(()=>{let f=e.current;if(!f||o==="none")return;function k(){let g=window.innerWidth-f.getBoundingClientRect().right;s(g>=cF)}k();let m=setInterval(k,1e3);return()=>{clearInterval(m)}},[e,o]),p.useEffect(()=>{let f=n||document.activeElement===t.current;if(o==="none"||!f)return;let k=setTimeout(h,0),m=setTimeout(h,2e3),g=setTimeout(h,5e3),_=setTimeout(()=>{u(!0)},6e3);return()=>{clearTimeout(k),clearTimeout(m),clearTimeout(g),clearTimeout(_)}},[t,n,o,h]),{hasPWMBadge:a,willPushPWMBadge:y,PWM_BADGE_SPACE_WIDTH:Yie}}var sF=p.createContext({}),dF=p.forwardRef((e,t)=>{var o=e,{value:n,onChange:a,maxLength:r,textAlign:i="left",pattern:s,placeholder:l,inputMode:u="numeric",onComplete:y,pushPasswordManagerStrategy:h="increase-width",pasteTransformer:f,containerClassName:k,noScriptCSSFallback:m=Qie,render:g,children:_}=o,v=Uie(o,["value","onChange","maxLength","textAlign","pattern","placeholder","inputMode","onComplete","pushPasswordManagerStrategy","pasteTransformer","containerClassName","noScriptCSSFallback","render","children"]),b,M,x,N,C;let[$,L]=p.useState(typeof v.defaultValue=="string"?v.defaultValue:""),A=n??$,z=Gie(A),E=p.useCallback(q=>{a?.(q),L(q)},[a]),O=p.useMemo(()=>s?typeof s=="string"?new RegExp(s):s:null,[s]),T=p.useRef(null),W=p.useRef(null),R=p.useRef({value:A,onChange:E,isIOS:typeof window<"u"&&((M=(b=window?.CSS)==null?void 0:b.supports)==null?void 0:M.call(b,"-webkit-touch-callout","none"))}),H=p.useRef({prev:[(x=T.current)==null?void 0:x.selectionStart,(N=T.current)==null?void 0:N.selectionEnd,(C=T.current)==null?void 0:C.selectionDirection]});p.useImperativeHandle(t,()=>T.current,[]),p.useEffect(()=>{let q=T.current,ue=W.current;if(!q||!ue)return;R.current.value!==q.value&&R.current.onChange(q.value),H.current.prev=[q.selectionStart,q.selectionEnd,q.selectionDirection];function xe(){if(document.activeElement!==q){B(null),K(null);return}let $e=q.selectionStart,Pe=q.selectionEnd,P=q.selectionDirection,I=q.maxLength,D=q.value,Q=H.current.prev,Z=-1,J=-1,ne;if(D.length!==0&&$e!==null&&Pe!==null){let dt=$e===Pe,Ve=$e===D.length&&D.length<I;if(dt&&!Ve){let nt=$e;if(nt===0)Z=0,J=1,ne="forward";else if(nt===I)Z=nt-1,J=nt,ne="backward";else if(I>1&&D.length>1){let wt=0;if(Q[0]!==null&&Q[1]!==null){ne=nt<Q[1]?"backward":"forward";let St=Q[0]===Q[1]&&Q[0]<I;ne==="backward"&&!St&&(wt=-1)}Z=wt+nt,J=wt+nt+1}}Z!==-1&&J!==-1&&Z!==J&&T.current.setSelectionRange(Z,J,ne)}let Ne=Z!==-1?Z:$e,Se=J!==-1?J:Pe,Te=ne??P;B(Ne),K(Se),H.current.prev=[Ne,Se,Te]}if(document.addEventListener("selectionchange",xe,{capture:!0}),xe(),document.activeElement===q&&ce(!0),!document.getElementById("input-otp-style")){let $e=document.createElement("style");if($e.id="input-otp-style",document.head.appendChild($e),$e.sheet){let Pe="background: transparent !important; color: transparent !important; border-color: transparent !important; opacity: 0 !important; box-shadow: none !important; -webkit-box-shadow: none !important; -webkit-text-fill-color: transparent !important;";Xd($e.sheet,"[data-input-otp]::selection { background: transparent !important; color: transparent !important; }"),Xd($e.sheet,`[data-input-otp]:autofill { ${Pe} }`),Xd($e.sheet,`[data-input-otp]:-webkit-autofill { ${Pe} }`),Xd($e.sheet,"@supports (-webkit-touch-callout: none) { [data-input-otp] { letter-spacing: -.6em !important; font-weight: 100 !important; font-stretch: ultra-condensed; font-optical-sizing: none !important; left: -1px !important; right: 1px !important; } }"),Xd($e.sheet,"[data-input-otp] + * { pointer-events: all !important; }")}}let Ce=()=>{ue&&ue.style.setProperty("--root-height",`${q.clientHeight}px`)};Ce();let De=new ResizeObserver(Ce);return De.observe(q),()=>{document.removeEventListener("selectionchange",xe,{capture:!0}),De.disconnect()}},[]);let[Y,j]=p.useState(!1),[U,ce]=p.useState(!1),[le,B]=p.useState(null),[F,K]=p.useState(null);p.useEffect(()=>{Rie(()=>{var q,ue,xe,Ce;(q=T.current)==null||q.dispatchEvent(new Event("input"));let De=(ue=T.current)==null?void 0:ue.selectionStart,$e=(xe=T.current)==null?void 0:xe.selectionEnd,Pe=(Ce=T.current)==null?void 0:Ce.selectionDirection;De!==null&&$e!==null&&(B(De),K($e),H.current.prev=[De,$e,Pe])})},[A,U]),p.useEffect(()=>{z!==void 0&&A!==z&&z.length<r&&A.length===r&&y?.(A)},[r,y,z,A]);let G=Zie({containerRef:W,inputRef:T,pushPasswordManagerStrategy:h,isFocused:U}),ie=p.useCallback(q=>{let ue=q.currentTarget.value.slice(0,r);if(ue.length>0&&O&&!O.test(ue)){q.preventDefault();return}typeof z=="string"&&ue.length<z.length&&document.dispatchEvent(new Event("selectionchange")),E(ue)},[r,E,z,O]),V=p.useCallback(()=>{var q;if(T.current){let ue=Math.min(T.current.value.length,r-1),xe=T.current.value.length;(q=T.current)==null||q.setSelectionRange(ue,xe),B(ue),K(xe)}ce(!0)},[r]),te=p.useCallback(q=>{var ue,xe;let Ce=T.current;if(!f&&(!R.current.isIOS||!q.clipboardData||!Ce))return;let De=q.clipboardData.getData("text/plain"),$e=f?f(De):De;q.preventDefault();let Pe=(ue=T.current)==null?void 0:ue.selectionStart,P=(xe=T.current)==null?void 0:xe.selectionEnd,I=(Pe!==P?A.slice(0,Pe)+$e+A.slice(P):A.slice(0,Pe)+$e+A.slice(Pe)).slice(0,r);if(I.length>0&&O&&!O.test(I))return;Ce.value=I,E(I);let D=Math.min(I.length,r-1),Q=I.length;Ce.setSelectionRange(D,Q),B(D),K(Q)},[r,E,O,A]),fe=p.useMemo(()=>({position:"relative",cursor:v.disabled?"default":"text",userSelect:"none",WebkitUserSelect:"none",pointerEvents:"none"}),[v.disabled]),pe=p.useMemo(()=>({position:"absolute",inset:0,width:G.willPushPWMBadge?`calc(100% + ${G.PWM_BADGE_SPACE_WIDTH})`:"100%",clipPath:G.willPushPWMBadge?`inset(0 ${G.PWM_BADGE_SPACE_WIDTH} 0 0)`:void 0,height:"100%",display:"flex",textAlign:i,opacity:"1",color:"transparent",pointerEvents:"all",background:"transparent",caretColor:"transparent",border:"0 solid transparent",outline:"0 solid transparent",boxShadow:"none",lineHeight:"1",letterSpacing:"-.5em",fontSize:"var(--root-height)",fontFamily:"monospace",fontVariantNumeric:"tabular-nums"}),[G.PWM_BADGE_SPACE_WIDTH,G.willPushPWMBadge,i]),de=p.useMemo(()=>p.createElement("input",Wie(Bie({autoComplete:v.autoComplete||"one-time-code"},v),{"data-input-otp":!0,"data-input-otp-placeholder-shown":A.length===0||void 0,"data-input-otp-mss":le,"data-input-otp-mse":F,inputMode:u,pattern:O?.source,"aria-placeholder":l,style:pe,maxLength:r,value:A,ref:T,onPaste:q=>{var ue;te(q),(ue=v.onPaste)==null||ue.call(v,q)},onChange:ie,onMouseOver:q=>{var ue;j(!0),(ue=v.onMouseOver)==null||ue.call(v,q)},onMouseLeave:q=>{var ue;j(!1),(ue=v.onMouseLeave)==null||ue.call(v,q)},onFocus:q=>{var ue;V(),(ue=v.onFocus)==null||ue.call(v,q)},onBlur:q=>{var ue;ce(!1),(ue=v.onBlur)==null||ue.call(v,q)}})),[ie,V,te,u,pe,r,F,le,v,O?.source,A]),ee=p.useMemo(()=>({slots:Array.from({length:r}).map((q,ue)=>{var xe;let Ce=U&&le!==null&&F!==null&&(le===F&&ue===le||ue>=le&&ue<F),De=A[ue]!==void 0?A[ue]:null,$e=A[0]!==void 0?null:(xe=l?.[ue])!=null?xe:null;return{char:De,placeholderChar:$e,isActive:Ce,hasFakeCaret:Ce&&De===null}}),isFocused:U,isHovering:!v.disabled&&Y}),[U,Y,r,F,le,v.disabled,A]),_e=p.useMemo(()=>g?g(ee):p.createElement(sF.Provider,{value:ee},_),[_,ee,g]);return p.createElement(p.Fragment,null,m!==null&&p.createElement("noscript",null,p.createElement("style",null,m)),p.createElement("div",{ref:W,"data-input-otp-container":!0,style:fe,className:k},_e,p.createElement("div",{style:{position:"absolute",inset:0,pointerEvents:"none"}},de)))});dF.displayName="Input";function Xd(e,t){try{e.insertRule(t)}catch{console.error("input-otp could not insert CSS rule:",t)}}var Qie=`
|
|
71
|
+
[data-input-otp] {
|
|
72
|
+
--nojs-bg: white !important;
|
|
73
|
+
--nojs-fg: black !important;
|
|
74
|
+
|
|
75
|
+
background-color: var(--nojs-bg) !important;
|
|
76
|
+
color: var(--nojs-fg) !important;
|
|
77
|
+
caret-color: var(--nojs-fg) !important;
|
|
78
|
+
letter-spacing: .25em !important;
|
|
79
|
+
text-align: center !important;
|
|
80
|
+
border: 1px solid var(--nojs-fg) !important;
|
|
81
|
+
border-radius: 4px !important;
|
|
82
|
+
width: 100% !important;
|
|
83
|
+
}
|
|
84
|
+
@media (prefers-color-scheme: dark) {
|
|
85
|
+
[data-input-otp] {
|
|
86
|
+
--nojs-bg: black !important;
|
|
87
|
+
--nojs-fg: white !important;
|
|
88
|
+
}
|
|
89
|
+
}`;const lF=p.forwardRef(({className:e,containerClassName:t,...o},n)=>d.jsx(dF,{ref:n,containerClassName:S("flex items-center gap-2 has-[:disabled]:opacity-50",t),className:S("disabled:cursor-not-allowed",e),...o}));lF.displayName="InputOTP";const uF=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("flex items-center",e),...t}));uF.displayName="InputOTPGroup";const hF=p.forwardRef(({index:e,className:t,...o},n)=>{const a=p.useContext(sF),{char:r,hasFakeCaret:i,isActive:s}=a.slots[e];return d.jsxs("div",{ref:n,className:S("relative flex h-10 w-10 items-center justify-center border-y border-r border-input text-sm transition-all first:rounded-l-md first:border-l last:rounded-r-md",s&&"z-10 ring-2 ring-ring ring-offset-background",t),...o,children:[r,i&&d.jsx("div",{className:"pointer-events-none absolute inset-0 flex items-center justify-center",children:d.jsx("div",{className:"h-4 w-px animate-caret-blink bg-foreground duration-1000"})})]})});hF.displayName="InputOTPSlot";const Jie=p.forwardRef(({...e},t)=>d.jsx("div",{ref:t,role:"separator",...e,children:d.jsx(Us,{})}));Jie.displayName="InputOTPSeparator";const hn=p.forwardRef(({className:e,type:t,...o},n)=>d.jsx("input",{type:t,className:S("flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-base ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",e),ref:n,...o}));hn.displayName="Input";var Zd="Menubar",[eP,ece,tce]=Xo(Zd),[pF]=Xe(Zd,[tce,Ao]),mt=Fd(),yF=Ao(),[oce,tP]=pF(Zd),fF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,value:n,onValueChange:a,defaultValue:r,loop:i=!0,dir:s,...l}=e,u=Zt(s),y=yF(o),[h,f]=Ke({prop:n,onChange:a,defaultProp:r??"",caller:Zd}),[k,m]=p.useState(null);return d.jsx(oce,{scope:o,value:h,onMenuOpen:p.useCallback(g=>{f(g),m(g)},[f]),onMenuClose:p.useCallback(()=>f(""),[f]),onMenuToggle:p.useCallback(g=>{f(_=>_?"":g),m(g)},[f]),dir:u,loop:i,children:d.jsx(eP.Provider,{scope:o,children:d.jsx(eP.Slot,{scope:o,children:d.jsx(qd,{asChild:!0,...y,orientation:"horizontal",loop:i,dir:u,currentTabStopId:k,onCurrentTabStopIdChange:m,children:d.jsx(se.div,{role:"menubar",...l,ref:t})})})})})});fF.displayName=Zd;var oP="MenubarMenu",[nce,mF]=pF(oP),kF=e=>{const{__scopeMenubar:t,value:o,...n}=e,a=We(),r=o||a||"LEGACY_REACT_AUTO_VALUE",i=tP(oP,t),s=mt(t),l=p.useRef(null),u=p.useRef(!1),y=i.value===r;return p.useEffect(()=>{y||(u.current=!1)},[y]),d.jsx(nce,{scope:t,value:r,triggerId:We(),triggerRef:l,contentId:We(),wasKeyboardTriggerOpenRef:u,children:d.jsx(CA,{...s,open:y,onOpenChange:h=>{h||i.onMenuClose()},modal:!1,dir:i.dir,...n})})};kF.displayName=oP;var nP="MenubarTrigger",gF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,disabled:n=!1,...a}=e,r=yF(o),i=mt(o),s=tP(nP,o),l=mF(nP,o),u=p.useRef(null),y=be(t,u,l.triggerRef),[h,f]=p.useState(!1),k=s.value===l.value;return d.jsx(eP.ItemSlot,{scope:o,value:l.value,disabled:n,children:d.jsx(jd,{asChild:!0,...r,focusable:!n,tabStopId:l.value,children:d.jsx($A,{asChild:!0,...i,children:d.jsx(se.button,{type:"button",role:"menuitem",id:l.triggerId,"aria-haspopup":"menu","aria-expanded":k,"aria-controls":k?l.contentId:void 0,"data-highlighted":h?"":void 0,"data-state":k?"open":"closed","data-disabled":n?"":void 0,disabled:n,...a,ref:y,onPointerDown:X(e.onPointerDown,m=>{!n&&m.button===0&&m.ctrlKey===!1&&(s.onMenuOpen(l.value),k||m.preventDefault())}),onPointerEnter:X(e.onPointerEnter,()=>{s.value&&!k&&(s.onMenuOpen(l.value),u.current?.focus())}),onKeyDown:X(e.onKeyDown,m=>{n||(["Enter"," "].includes(m.key)&&s.onMenuToggle(l.value),m.key==="ArrowDown"&&s.onMenuOpen(l.value),["Enter"," ","ArrowDown"].includes(m.key)&&(l.wasKeyboardTriggerOpenRef.current=!0,m.preventDefault()))}),onFocus:X(e.onFocus,()=>f(!0)),onBlur:X(e.onBlur,()=>f(!1))})})})})});gF.displayName=nP;var ace="MenubarPortal",vF=e=>{const{__scopeMenubar:t,...o}=e,n=mt(t);return d.jsx(SA,{...n,...o})};vF.displayName=ace;var aP="MenubarContent",_F=p.forwardRef((e,t)=>{const{__scopeMenubar:o,align:n="start",...a}=e,r=mt(o),i=tP(aP,o),s=mF(aP,o),l=ece(o),u=p.useRef(!1);return d.jsx(LA,{id:s.contentId,"aria-labelledby":s.triggerId,"data-radix-menubar-content":"",...r,...a,ref:t,align:n,onCloseAutoFocus:X(e.onCloseAutoFocus,y=>{!i.value&&!u.current&&s.triggerRef.current?.focus(),u.current=!1,y.preventDefault()}),onFocusOutside:X(e.onFocusOutside,y=>{const h=y.target;l().some(k=>k.ref.current?.contains(h))&&y.preventDefault()}),onInteractOutside:X(e.onInteractOutside,()=>{u.current=!0}),onEntryFocus:y=>{s.wasKeyboardTriggerOpenRef.current||y.preventDefault()},onKeyDown:X(e.onKeyDown,y=>{if(["ArrowRight","ArrowLeft"].includes(y.key)){const h=y.target,f=h.hasAttribute("data-radix-menubar-subtrigger"),k=h.closest("[data-radix-menubar-content]")!==y.currentTarget,g=(i.dir==="rtl"?"ArrowRight":"ArrowLeft")===y.key;if(!g&&f||k&&g)return;let b=l().filter(N=>!N.disabled).map(N=>N.value);g&&b.reverse();const M=b.indexOf(s.value);b=i.loop?vce(b,M+1):b.slice(M+1);const[x]=b;x&&i.onMenuOpen(x)}},{checkForDefaultPrevented:!1}),style:{...e.style,"--radix-menubar-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-menubar-content-available-width":"var(--radix-popper-available-width)","--radix-menubar-content-available-height":"var(--radix-popper-available-height)","--radix-menubar-trigger-width":"var(--radix-popper-anchor-width)","--radix-menubar-trigger-height":"var(--radix-popper-anchor-height)"}})});_F.displayName=aP;var rce="MenubarGroup",ice=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(IA,{...a,...n,ref:t})});ice.displayName=rce;var cce="MenubarLabel",bF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(AA,{...a,...n,ref:t})});bF.displayName=cce;var sce="MenubarItem",MF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(PA,{...a,...n,ref:t})});MF.displayName=sce;var dce="MenubarCheckboxItem",wF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(TA,{...a,...n,ref:t})});wF.displayName=dce;var lce="MenubarRadioGroup",uce=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(DA,{...a,...n,ref:t})});uce.displayName=lce;var hce="MenubarRadioItem",xF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(EA,{...a,...n,ref:t})});xF.displayName=hce;var pce="MenubarItemIndicator",NF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(zA,{...a,...n,ref:t})});NF.displayName=pce;var yce="MenubarSeparator",CF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(OA,{...a,...n,ref:t})});CF.displayName=yce;var fce="MenubarArrow",mce=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(qA,{...a,...n,ref:t})});mce.displayName=fce;var $F="MenubarSub",SF=e=>{const{__scopeMenubar:t,children:o,open:n,onOpenChange:a,defaultOpen:r}=e,i=mt(t),[s,l]=Ke({prop:n,defaultProp:r??!1,onChange:a,caller:$F});return d.jsx(jA,{...i,open:s,onOpenChange:l,children:o})};SF.displayName=$F;var kce="MenubarSubTrigger",LF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(HA,{"data-radix-menubar-subtrigger":"",...a,...n,ref:t})});LF.displayName=kce;var gce="MenubarSubContent",IF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(VA,{...a,"data-radix-menubar-content":"",...n,ref:t,style:{...e.style,"--radix-menubar-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-menubar-content-available-width":"var(--radix-popper-available-width)","--radix-menubar-content-available-height":"var(--radix-popper-available-height)","--radix-menubar-trigger-width":"var(--radix-popper-anchor-width)","--radix-menubar-trigger-height":"var(--radix-popper-anchor-height)"}})});IF.displayName=gce;function vce(e,t){return e.map((o,n)=>e[(t+n)%e.length])}var AF=fF,_ce=kF,PF=gF,bce=vF,TF=_F,DF=bF,EF=MF,zF=wF,OF=xF,qF=NF,jF=CF,Mce=SF,HF=LF,VF=IF;function wce({...e}){return d.jsx(_ce,{...e})}function xce({...e}){return d.jsx(Mce,{"data-slot":"menubar-sub",...e})}const FF=p.forwardRef(({className:e,...t},o)=>d.jsx(AF,{ref:o,className:S("flex h-10 items-center space-x-1 rounded-md border bg-background p-1",e),...t}));FF.displayName=AF.displayName;const BF=p.forwardRef(({className:e,...t},o)=>d.jsx(PF,{ref:o,className:S("flex cursor-default select-none items-center rounded-sm px-3 py-1.5 text-sm font-medium outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",e),...t}));BF.displayName=PF.displayName;const WF=p.forwardRef(({className:e,inset:t,children:o,...n},a)=>d.jsxs(HF,{ref:a,className:S("flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",t&&"pl-8",e),...n,children:[o,d.jsx(Pt,{className:"ml-auto h-4 w-4"})]}));WF.displayName=HF.displayName;const UF=p.forwardRef(({className:e,...t},o)=>d.jsx(VF,{ref:o,className:S("z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-menubar-content-transform-origin]",e),...t}));UF.displayName=VF.displayName;const RF=p.forwardRef(({className:e,align:t="start",alignOffset:o=-4,sideOffset:n=8,...a},r)=>d.jsx(bce,{children:d.jsx(TF,{ref:r,align:t,alignOffset:o,sideOffset:n,className:S("z-50 min-w-[12rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-menubar-content-transform-origin]",e),...a})}));RF.displayName=TF.displayName;const rP=p.forwardRef(({className:e,inset:t,...o},n)=>d.jsx(EF,{ref:n,className:S("relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",t&&"pl-8",e),...o}));rP.displayName=EF.displayName;const Nce=p.forwardRef(({className:e,children:t,checked:o,...n},a)=>d.jsxs(zF,{ref:a,className:S("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e),checked:o,...n,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx(qF,{children:d.jsx(po,{className:"h-4 w-4"})})}),t]}));Nce.displayName=zF.displayName;const Cce=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(OF,{ref:n,className:S("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e),...o,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx(qF,{children:d.jsx(Qo,{className:"h-2 w-2 fill-current"})})}),t]}));Cce.displayName=OF.displayName;const $ce=p.forwardRef(({className:e,inset:t,...o},n)=>d.jsx(DF,{ref:n,className:S("px-2 py-1.5 text-sm font-semibold",t&&"pl-8",e),...o}));$ce.displayName=DF.displayName;const GF=p.forwardRef(({className:e,...t},o)=>d.jsx(jF,{ref:o,className:S("-mx-1 my-1 h-px bg-muted",e),...t}));GF.displayName=jF.displayName;var KF=Object.freeze({position:"absolute",border:0,width:1,height:1,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",wordWrap:"normal"}),Sce="VisuallyHidden",YF=p.forwardRef((e,t)=>d.jsx(se.span,{...e,ref:t,style:{...KF,...e.style}}));YF.displayName=Sce;var XF=YF,Ec="NavigationMenu",[iP,ZF,Lce]=Xo(Ec),[cP,Ice,Ace]=Xo(Ec),[sP]=Xe(Ec,[Lce,Ace]),[Pce,Ut]=sP(Ec),[Tce,Dce]=sP(Ec),QF=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,value:n,onValueChange:a,defaultValue:r,delayDuration:i=200,skipDelayDuration:s=300,orientation:l="horizontal",dir:u,...y}=e,[h,f]=p.useState(null),k=be(t,A=>f(A)),m=Zt(u),g=p.useRef(0),_=p.useRef(0),v=p.useRef(0),[b,M]=p.useState(!0),[x,N]=Ke({prop:n,onChange:A=>{const z=A!=="",E=s>0;z?(window.clearTimeout(v.current),E&&M(!1)):(window.clearTimeout(v.current),v.current=window.setTimeout(()=>M(!0),s)),a?.(A)},defaultProp:r??"",caller:Ec}),C=p.useCallback(()=>{window.clearTimeout(_.current),_.current=window.setTimeout(()=>N(""),150)},[N]),$=p.useCallback(A=>{window.clearTimeout(_.current),N(A)},[N]),L=p.useCallback(A=>{x===A?window.clearTimeout(_.current):g.current=window.setTimeout(()=>{window.clearTimeout(_.current),N(A)},i)},[x,N,i]);return p.useEffect(()=>()=>{window.clearTimeout(g.current),window.clearTimeout(_.current),window.clearTimeout(v.current)},[]),d.jsx(JF,{scope:o,isRootMenu:!0,value:x,dir:m,orientation:l,rootNavigationMenu:h,onTriggerEnter:A=>{window.clearTimeout(g.current),b?L(A):$(A)},onTriggerLeave:()=>{window.clearTimeout(g.current),C()},onContentEnter:()=>window.clearTimeout(_.current),onContentLeave:C,onItemSelect:A=>{N(z=>z===A?"":A)},onItemDismiss:()=>N(""),children:d.jsx(se.nav,{"aria-label":"Main","data-orientation":l,dir:m,...y,ref:k})})});QF.displayName=Ec;var dP="NavigationMenuSub",Ece=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,value:n,onValueChange:a,defaultValue:r,orientation:i="horizontal",...s}=e,l=Ut(dP,o),[u,y]=Ke({prop:n,onChange:a,defaultProp:r??"",caller:dP});return d.jsx(JF,{scope:o,isRootMenu:!1,value:u,dir:l.dir,orientation:i,rootNavigationMenu:l.rootNavigationMenu,onTriggerEnter:h=>y(h),onItemSelect:h=>y(h),onItemDismiss:()=>y(""),children:d.jsx(se.div,{"data-orientation":i,...s,ref:t})})});Ece.displayName=dP;var JF=e=>{const{scope:t,isRootMenu:o,rootNavigationMenu:n,dir:a,orientation:r,children:i,value:s,onItemSelect:l,onItemDismiss:u,onTriggerEnter:y,onTriggerLeave:h,onContentEnter:f,onContentLeave:k}=e,[m,g]=p.useState(null),[_,v]=p.useState(new Map),[b,M]=p.useState(null);return d.jsx(Pce,{scope:t,isRootMenu:o,rootNavigationMenu:n,value:s,previousValue:ms(s),baseId:We(),dir:a,orientation:r,viewport:m,onViewportChange:g,indicatorTrack:b,onIndicatorTrackChange:M,onTriggerEnter:Ue(y),onTriggerLeave:Ue(h),onContentEnter:Ue(f),onContentLeave:Ue(k),onItemSelect:Ue(l),onItemDismiss:Ue(u),onViewportContentChange:p.useCallback((x,N)=>{v(C=>(C.set(x,N),new Map(C)))},[]),onViewportContentRemove:p.useCallback(x=>{v(N=>N.has(x)?(N.delete(x),new Map(N)):N)},[]),children:d.jsx(iP.Provider,{scope:t,children:d.jsx(Tce,{scope:t,items:_,children:i})})})},eB="NavigationMenuList",tB=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,...n}=e,a=Ut(eB,o),r=d.jsx(se.ul,{"data-orientation":a.orientation,...n,ref:t});return d.jsx(se.div,{style:{position:"relative"},ref:a.onIndicatorTrackChange,children:d.jsx(iP.Slot,{scope:o,children:a.isRootMenu?d.jsx(hB,{asChild:!0,children:r}):r})})});tB.displayName=eB;var oB="NavigationMenuItem",[zce,nB]=sP(oB),aB=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,value:n,...a}=e,r=We(),i=n||r||"LEGACY_REACT_AUTO_VALUE",s=p.useRef(null),l=p.useRef(null),u=p.useRef(null),y=p.useRef(()=>{}),h=p.useRef(!1),f=p.useCallback((m="start")=>{if(s.current){y.current();const g=pP(s.current);g.length&&yP(m==="start"?g:g.reverse())}},[]),k=p.useCallback(()=>{if(s.current){const m=pP(s.current);m.length&&(y.current=Bce(m))}},[]);return d.jsx(zce,{scope:o,value:i,triggerRef:l,contentRef:s,focusProxyRef:u,wasEscapeCloseRef:h,onEntryKeyDown:f,onFocusProxyEnter:f,onRootContentClose:k,onContentFocusOutside:k,children:d.jsx(se.li,{...a,ref:t})})});aB.displayName=oB;var lP="NavigationMenuTrigger",rB=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,disabled:n,...a}=e,r=Ut(lP,e.__scopeNavigationMenu),i=nB(lP,e.__scopeNavigationMenu),s=p.useRef(null),l=be(s,i.triggerRef,t),u=fB(r.baseId,i.value),y=mB(r.baseId,i.value),h=p.useRef(!1),f=p.useRef(!1),k=i.value===r.value;return d.jsxs(d.Fragment,{children:[d.jsx(iP.ItemSlot,{scope:o,value:i.value,children:d.jsx(yB,{asChild:!0,children:d.jsx(se.button,{id:u,disabled:n,"data-disabled":n?"":void 0,"data-state":mP(k),"aria-expanded":k,"aria-controls":y,...a,ref:l,onPointerEnter:X(e.onPointerEnter,()=>{f.current=!1,i.wasEscapeCloseRef.current=!1}),onPointerMove:X(e.onPointerMove,I$(()=>{n||f.current||i.wasEscapeCloseRef.current||h.current||(r.onTriggerEnter(i.value),h.current=!0)})),onPointerLeave:X(e.onPointerLeave,I$(()=>{n||(r.onTriggerLeave(),h.current=!1)})),onClick:X(e.onClick,()=>{r.onItemSelect(i.value),f.current=k}),onKeyDown:X(e.onKeyDown,m=>{const _={horizontal:"ArrowDown",vertical:r.dir==="rtl"?"ArrowLeft":"ArrowRight"}[r.orientation];k&&m.key===_&&(i.onEntryKeyDown(),m.preventDefault())})})})}),k&&d.jsxs(d.Fragment,{children:[d.jsx(XF,{"aria-hidden":!0,tabIndex:0,ref:i.focusProxyRef,onFocus:m=>{const g=i.contentRef.current,_=m.relatedTarget,v=_===s.current,b=g?.contains(_);(v||!b)&&i.onFocusProxyEnter(v?"start":"end")}}),r.viewport&&d.jsx("span",{"aria-owns":y})]})]})});rB.displayName=lP;var Oce="NavigationMenuLink",iB="navigationMenu.linkSelect",cB=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,active:n,onSelect:a,...r}=e;return d.jsx(yB,{asChild:!0,children:d.jsx(se.a,{"data-active":n?"":void 0,"aria-current":n?"page":void 0,...r,ref:t,onClick:X(e.onClick,i=>{const s=i.target,l=new CustomEvent(iB,{bubbles:!0,cancelable:!0});if(s.addEventListener(iB,u=>a?.(u),{once:!0}),g1(s,l),!l.defaultPrevented&&!i.metaKey){const u=new CustomEvent(L$,{bubbles:!0,cancelable:!0});g1(s,u)}},{checkForDefaultPrevented:!1})})})});cB.displayName=Oce;var uP="NavigationMenuIndicator",sB=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,a=Ut(uP,e.__scopeNavigationMenu),r=!!a.value;return a.indicatorTrack?s1.createPortal(d.jsx(Qe,{present:o||r,children:d.jsx(qce,{...n,ref:t})}),a.indicatorTrack):null});sB.displayName=uP;var qce=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,...n}=e,a=Ut(uP,o),r=ZF(o),[i,s]=p.useState(null),[l,u]=p.useState(null),y=a.orientation==="horizontal",h=!!a.value;p.useEffect(()=>{const m=r().find(g=>g.value===a.value)?.ref.current;m&&s(m)},[r,a.value]);const f=()=>{i&&u({size:y?i.offsetWidth:i.offsetHeight,offset:y?i.offsetLeft:i.offsetTop})};return fP(i,f),fP(a.indicatorTrack,f),l?d.jsx(se.div,{"aria-hidden":!0,"data-state":h?"visible":"hidden","data-orientation":a.orientation,...n,ref:t,style:{position:"absolute",...y?{left:0,width:l.size+"px",transform:`translateX(${l.offset}px)`}:{top:0,height:l.size+"px",transform:`translateY(${l.offset}px)`},...n.style}}):null}),Ns="NavigationMenuContent",dB=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,a=Ut(Ns,e.__scopeNavigationMenu),r=nB(Ns,e.__scopeNavigationMenu),i=be(r.contentRef,t),s=r.value===a.value,l={value:r.value,triggerRef:r.triggerRef,focusProxyRef:r.focusProxyRef,wasEscapeCloseRef:r.wasEscapeCloseRef,onContentFocusOutside:r.onContentFocusOutside,onRootContentClose:r.onRootContentClose,...n};return a.viewport?d.jsx(jce,{forceMount:o,...l,ref:i}):d.jsx(Qe,{present:o||s,children:d.jsx(lB,{"data-state":mP(s),...l,ref:i,onPointerEnter:X(e.onPointerEnter,a.onContentEnter),onPointerLeave:X(e.onPointerLeave,I$(a.onContentLeave)),style:{pointerEvents:!s&&a.isRootMenu?"none":void 0,...l.style}})})});dB.displayName=Ns;var jce=p.forwardRef((e,t)=>{const o=Ut(Ns,e.__scopeNavigationMenu),{onViewportContentChange:n,onViewportContentRemove:a}=o;return Ze(()=>{n(e.value,{ref:t,...e})},[e,t,n]),Ze(()=>()=>a(e.value),[e.value,a]),null}),L$="navigationMenu.rootContentDismiss",lB=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,value:n,triggerRef:a,focusProxyRef:r,wasEscapeCloseRef:i,onRootContentClose:s,onContentFocusOutside:l,...u}=e,y=Ut(Ns,o),h=p.useRef(null),f=be(h,t),k=fB(y.baseId,n),m=mB(y.baseId,n),g=ZF(o),_=p.useRef(null),{onItemDismiss:v}=y;p.useEffect(()=>{const M=h.current;if(y.isRootMenu&&M){const x=()=>{v(),s(),M.contains(document.activeElement)&&a.current?.focus()};return M.addEventListener(L$,x),()=>M.removeEventListener(L$,x)}},[y.isRootMenu,e.value,a,v,s]);const b=p.useMemo(()=>{const x=g().map(z=>z.value);y.dir==="rtl"&&x.reverse();const N=x.indexOf(y.value),C=x.indexOf(y.previousValue),$=n===y.value,L=C===x.indexOf(n);if(!$&&!L)return _.current;const A=(()=>{if(N!==C){if($&&C!==-1)return N>C?"from-end":"from-start";if(L&&N!==-1)return N>C?"to-start":"to-end"}return null})();return _.current=A,A},[y.previousValue,y.value,y.dir,g,n]);return d.jsx(hB,{asChild:!0,children:d.jsx(nn,{id:m,"aria-labelledby":k,"data-motion":b,"data-orientation":y.orientation,...u,ref:f,disableOutsidePointerEvents:!1,onDismiss:()=>{const M=new Event(L$,{bubbles:!0,cancelable:!0});h.current?.dispatchEvent(M)},onFocusOutside:X(e.onFocusOutside,M=>{l();const x=M.target;y.rootNavigationMenu?.contains(x)&&M.preventDefault()}),onPointerDownOutside:X(e.onPointerDownOutside,M=>{const x=M.target,N=g().some($=>$.ref.current?.contains(x)),C=y.isRootMenu&&y.viewport?.contains(x);(N||C||!y.isRootMenu)&&M.preventDefault()}),onKeyDown:X(e.onKeyDown,M=>{const x=M.altKey||M.ctrlKey||M.metaKey;if(M.key==="Tab"&&!x){const C=pP(M.currentTarget),$=document.activeElement,L=C.findIndex(E=>E===$),z=M.shiftKey?C.slice(0,L).reverse():C.slice(L+1,C.length);yP(z)?M.preventDefault():r.current?.focus()}}),onEscapeKeyDown:X(e.onEscapeKeyDown,M=>{i.current=!0})})})}),hP="NavigationMenuViewport",uB=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,r=!!Ut(hP,e.__scopeNavigationMenu).value;return d.jsx(Qe,{present:o||r,children:d.jsx(Hce,{...n,ref:t})})});uB.displayName=hP;var Hce=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,children:n,...a}=e,r=Ut(hP,o),i=be(t,r.onViewportChange),s=Dce(Ns,e.__scopeNavigationMenu),[l,u]=p.useState(null),[y,h]=p.useState(null),f=l?l?.width+"px":void 0,k=l?l?.height+"px":void 0,m=!!r.value,g=m?r.value:r.previousValue;return fP(y,()=>{y&&u({width:y.offsetWidth,height:y.offsetHeight})}),d.jsx(se.div,{"data-state":mP(m),"data-orientation":r.orientation,...a,ref:i,style:{pointerEvents:!m&&r.isRootMenu?"none":void 0,"--radix-navigation-menu-viewport-width":f,"--radix-navigation-menu-viewport-height":k,...a.style},onPointerEnter:X(e.onPointerEnter,r.onContentEnter),onPointerLeave:X(e.onPointerLeave,I$(r.onContentLeave)),children:Array.from(s.items).map(([v,{ref:b,forceMount:M,...x}])=>{const N=g===v;return d.jsx(Qe,{present:M||N,children:d.jsx(lB,{...x,ref:Xt(b,C=>{N&&C&&h(C)})})},v)})})}),Vce="FocusGroup",hB=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,...n}=e,a=Ut(Vce,o);return d.jsx(cP.Provider,{scope:o,children:d.jsx(cP.Slot,{scope:o,children:d.jsx(se.div,{dir:a.dir,...n,ref:t})})})}),pB=["ArrowRight","ArrowLeft","ArrowUp","ArrowDown"],Fce="FocusGroupItem",yB=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,...n}=e,a=Ice(o),r=Ut(Fce,o);return d.jsx(cP.ItemSlot,{scope:o,children:d.jsx(se.button,{...n,ref:t,onKeyDown:X(e.onKeyDown,i=>{if(["Home","End",...pB].includes(i.key)){let l=a().map(h=>h.ref.current);if([r.dir==="rtl"?"ArrowRight":"ArrowLeft","ArrowUp","End"].includes(i.key)&&l.reverse(),pB.includes(i.key)){const h=l.indexOf(i.currentTarget);l=l.slice(h+1)}setTimeout(()=>yP(l)),i.preventDefault()}})})})});function pP(e){const t=[],o=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:n=>{const a=n.tagName==="INPUT"&&n.type==="hidden";return n.disabled||n.hidden||a?NodeFilter.FILTER_SKIP:n.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;o.nextNode();)t.push(o.currentNode);return t}function yP(e){const t=document.activeElement;return e.some(o=>o===t?!0:(o.focus(),document.activeElement!==t))}function Bce(e){return e.forEach(t=>{t.dataset.tabindex=t.getAttribute("tabindex")||"",t.setAttribute("tabindex","-1")}),()=>{e.forEach(t=>{const o=t.dataset.tabindex;t.setAttribute("tabindex",o)})}}function fP(e,t){const o=Ue(t);Ze(()=>{let n=0;if(e){const a=new ResizeObserver(()=>{cancelAnimationFrame(n),n=window.requestAnimationFrame(o)});return a.observe(e),()=>{window.cancelAnimationFrame(n),a.unobserve(e)}}},[e,o])}function mP(e){return e?"open":"closed"}function fB(e,t){return`${e}-trigger-${t}`}function mB(e,t){return`${e}-content-${t}`}function I$(e){return t=>t.pointerType==="mouse"?e(t):void 0}var kB=QF,gB=tB,Wce=aB,vB=rB,Uce=cB,_B=sB,bB=dB,MB=uB;const wB=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(kB,{ref:n,className:S("relative z-10 flex max-w-max flex-1 items-center justify-center",e),...o,children:[t,d.jsx(SB,{})]}));wB.displayName=kB.displayName;const xB=p.forwardRef(({className:e,...t},o)=>d.jsx(gB,{ref:o,className:S("group flex flex-1 list-none items-center justify-center space-x-1",e),...t}));xB.displayName=gB.displayName;const Rce=Wce,Gce=Bo("group inline-flex h-10 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[state=open]:text-accent-foreground data-[state=open]:bg-accent/50 data-[state=open]:hover:bg-accent data-[state=open]:focus:bg-accent"),NB=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(vB,{ref:n,className:S(Gce(),"group",e),...o,children:[t," ",d.jsx(Ht,{className:"relative top-[1px] ml-1 h-3 w-3 transition duration-200 group-data-[state=open]:rotate-180","aria-hidden":"true"})]}));NB.displayName=vB.displayName;const CB=p.forwardRef(({className:e,...t},o)=>d.jsx(bB,{ref:o,className:S("left-0 top-0 w-full data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52 data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52 md:absolute md:w-auto ",e),...t}));CB.displayName=bB.displayName;const $B=Uce,SB=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{className:S("absolute left-0 top-full flex justify-center"),children:d.jsx(MB,{className:S("origin-top-center relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 md:w-[var(--radix-navigation-menu-viewport-width)]",e),ref:o,...t})}));SB.displayName=MB.displayName;const Kce=p.forwardRef(({className:e,...t},o)=>d.jsx(_B,{ref:o,className:S("top-full z-[1] flex h-1.5 items-end justify-center overflow-hidden data-[state=visible]:animate-in data-[state=hidden]:animate-out data-[state=hidden]:fade-out data-[state=visible]:fade-in",e),...t,children:d.jsx("div",{className:"relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm bg-border shadow-md"})}));Kce.displayName=_B.displayName;const LB=({className:e,...t})=>d.jsx("nav",{role:"navigation","aria-label":"pagination",className:S("mx-auto flex w-full justify-center",e),...t});LB.displayName="Pagination";const IB=p.forwardRef(({className:e,...t},o)=>d.jsx("ul",{ref:o,className:S("flex flex-row items-center gap-1",e),...t}));IB.displayName="PaginationContent";const A$=p.forwardRef(({className:e,...t},o)=>d.jsx("li",{ref:o,className:S("",e),...t}));A$.displayName="PaginationItem";const P$=({className:e,isActive:t,size:o="icon",...n})=>d.jsx("a",{"aria-current":t?"page":void 0,className:S(ss({variant:t?"outline":"ghost",size:o}),e),...n});P$.displayName="PaginationLink";const AB=({className:e,...t})=>d.jsxs(P$,{"aria-label":"Go to previous page",size:"default",className:S("gap-1 pl-2.5",e),...t,children:[d.jsx(Qn,{className:"h-4 w-4"}),d.jsx("span",{children:"Previous"})]});AB.displayName="PaginationPrevious";const PB=({className:e,...t})=>d.jsxs(P$,{"aria-label":"Go to next page",size:"default",className:S("gap-1 pr-2.5",e),...t,children:[d.jsx("span",{children:"Next"}),d.jsx(Pt,{className:"h-4 w-4"})]});PB.displayName="PaginationNext";const TB=({className:e,...t})=>d.jsxs("span",{"aria-hidden":!0,className:S("flex h-9 w-9 items-center justify-center",e),...t,children:[d.jsx(Ho,{className:"h-4 w-4"}),d.jsx("span",{className:"sr-only",children:"More pages"})]});TB.displayName="PaginationEllipsis";var T$="Popover",[DB]=Xe(T$,[Io]),Qd=Io(),[Yce,pn]=DB(T$),EB=e=>{const{__scopePopover:t,children:o,open:n,defaultOpen:a,onOpenChange:r,modal:i=!1}=e,s=Qd(t),l=p.useRef(null),[u,y]=p.useState(!1),[h,f]=Ke({prop:n,defaultProp:a??!1,onChange:r,caller:T$});return d.jsx(ws,{...s,children:d.jsx(Yce,{scope:t,contentId:We(),triggerRef:l,open:h,onOpenChange:f,onOpenToggle:p.useCallback(()=>f(k=>!k),[f]),hasCustomAnchor:u,onCustomAnchorAdd:p.useCallback(()=>y(!0),[]),onCustomAnchorRemove:p.useCallback(()=>y(!1),[]),modal:i,children:o})})};EB.displayName=T$;var zB="PopoverAnchor",Xce=p.forwardRef((e,t)=>{const{__scopePopover:o,...n}=e,a=pn(zB,o),r=Qd(o),{onCustomAnchorAdd:i,onCustomAnchorRemove:s}=a;return p.useEffect(()=>(i(),()=>s()),[i,s]),d.jsx(xs,{...r,...n,ref:t})});Xce.displayName=zB;var OB="PopoverTrigger",qB=p.forwardRef((e,t)=>{const{__scopePopover:o,...n}=e,a=pn(OB,o),r=Qd(o),i=be(t,a.triggerRef),s=d.jsx(se.button,{type:"button","aria-haspopup":"dialog","aria-expanded":a.open,"aria-controls":a.contentId,"data-state":BB(a.open),...n,ref:i,onClick:X(e.onClick,a.onOpenToggle)});return a.hasCustomAnchor?s:d.jsx(xs,{asChild:!0,...r,children:s})});qB.displayName=OB;var kP="PopoverPortal",[Zce,Qce]=DB(kP,{forceMount:void 0}),jB=e=>{const{__scopePopover:t,forceMount:o,children:n,container:a}=e,r=pn(kP,t);return d.jsx(Zce,{scope:t,forceMount:o,children:d.jsx(Qe,{present:o||r.open,children:d.jsx(rd,{asChild:!0,container:a,children:n})})})};jB.displayName=kP;var Cs="PopoverContent",HB=p.forwardRef((e,t)=>{const o=Qce(Cs,e.__scopePopover),{forceMount:n=o.forceMount,...a}=e,r=pn(Cs,e.__scopePopover);return d.jsx(Qe,{present:n||r.open,children:r.modal?d.jsx(ese,{...a,ref:t}):d.jsx(tse,{...a,ref:t})})});HB.displayName=Cs;var Jce=bn("PopoverContent.RemoveScroll"),ese=p.forwardRef((e,t)=>{const o=pn(Cs,e.__scopePopover),n=p.useRef(null),a=be(t,n),r=p.useRef(!1);return p.useEffect(()=>{const i=n.current;if(i)return zC(i)},[]),d.jsx(id,{as:Jce,allowPinchZoom:!0,children:d.jsx(VB,{...e,ref:a,trapFocus:o.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:X(e.onCloseAutoFocus,i=>{i.preventDefault(),r.current||o.triggerRef.current?.focus()}),onPointerDownOutside:X(e.onPointerDownOutside,i=>{const s=i.detail.originalEvent,l=s.button===0&&s.ctrlKey===!0,u=s.button===2||l;r.current=u},{checkForDefaultPrevented:!1}),onFocusOutside:X(e.onFocusOutside,i=>i.preventDefault(),{checkForDefaultPrevented:!1})})})}),tse=p.forwardRef((e,t)=>{const o=pn(Cs,e.__scopePopover),n=p.useRef(!1),a=p.useRef(!1);return d.jsx(VB,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:r=>{e.onCloseAutoFocus?.(r),r.defaultPrevented||(n.current||o.triggerRef.current?.focus(),r.preventDefault()),n.current=!1,a.current=!1},onInteractOutside:r=>{e.onInteractOutside?.(r),r.defaultPrevented||(n.current=!0,r.detail.originalEvent.type==="pointerdown"&&(a.current=!0));const i=r.target;o.triggerRef.current?.contains(i)&&r.preventDefault(),r.detail.originalEvent.type==="focusin"&&a.current&&r.preventDefault()}})}),VB=p.forwardRef((e,t)=>{const{__scopePopover:o,trapFocus:n,onOpenAutoFocus:a,onCloseAutoFocus:r,disableOutsidePointerEvents:i,onEscapeKeyDown:s,onPointerDownOutside:l,onFocusOutside:u,onInteractOutside:y,...h}=e,f=pn(Cs,o),k=Qd(o);return SC(),d.jsx(ad,{asChild:!0,loop:!0,trapped:n,onMountAutoFocus:a,onUnmountAutoFocus:r,children:d.jsx(nn,{asChild:!0,disableOutsidePointerEvents:i,onInteractOutside:y,onEscapeKeyDown:s,onPointerDownOutside:l,onFocusOutside:u,onDismiss:()=>f.onOpenChange(!1),children:d.jsx(Ed,{"data-state":BB(f.open),role:"dialog",id:f.contentId,...k,...h,ref:t,style:{...h.style,"--radix-popover-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-popover-content-available-width":"var(--radix-popper-available-width)","--radix-popover-content-available-height":"var(--radix-popper-available-height)","--radix-popover-trigger-width":"var(--radix-popper-anchor-width)","--radix-popover-trigger-height":"var(--radix-popper-anchor-height)"}})})})}),FB="PopoverClose",ose=p.forwardRef((e,t)=>{const{__scopePopover:o,...n}=e,a=pn(FB,o);return d.jsx(se.button,{type:"button",...n,ref:t,onClick:X(e.onClick,()=>a.onOpenChange(!1))})});ose.displayName=FB;var nse="PopoverArrow",ase=p.forwardRef((e,t)=>{const{__scopePopover:o,...n}=e,a=Qd(o);return d.jsx(zd,{...a,...n,ref:t})});ase.displayName=nse;function BB(e){return e?"open":"closed"}var rse=EB,ise=qB,cse=jB,WB=HB;const gP=rse,vP=ise,D$=p.forwardRef(({className:e,align:t="center",sideOffset:o=4,...n},a)=>d.jsx(cse,{children:d.jsx(WB,{ref:a,align:t,sideOffset:o,className:S("z-50 w-72 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-popover-content-transform-origin]",e),...n})}));D$.displayName=WB.displayName;var _P="Progress",bP=100,[sse]=UE(_P),[dse,lse]=sse(_P),UB=p.forwardRef((e,t)=>{const{__scopeProgress:o,value:n=null,max:a,getValueLabel:r=use,...i}=e;(a||a===0)&&!YB(a)&&console.error(hse(`${a}`,"Progress"));const s=YB(a)?a:bP;n!==null&&!XB(n,s)&&console.error(pse(`${n}`,"Progress"));const l=XB(n,s)?n:null,u=E$(l)?r(l,s):void 0;return d.jsx(dse,{scope:o,value:l,max:s,children:d.jsx(ht.div,{"aria-valuemax":s,"aria-valuemin":0,"aria-valuenow":E$(l)?l:void 0,"aria-valuetext":u,role:"progressbar","data-state":KB(l,s),"data-value":l??void 0,"data-max":s,...i,ref:t})})});UB.displayName=_P;var RB="ProgressIndicator",GB=p.forwardRef((e,t)=>{const{__scopeProgress:o,...n}=e,a=lse(RB,o);return d.jsx(ht.div,{"data-state":KB(a.value,a.max),"data-value":a.value??void 0,"data-max":a.max,...n,ref:t})});GB.displayName=RB;function use(e,t){return`${Math.round(e/t*100)}%`}function KB(e,t){return e==null?"indeterminate":e===t?"complete":"loading"}function E$(e){return typeof e=="number"}function YB(e){return E$(e)&&!isNaN(e)&&e>0}function XB(e,t){return E$(e)&&!isNaN(e)&&e<=t&&e>=0}function hse(e,t){return`Invalid prop \`max\` of value \`${e}\` supplied to \`${t}\`. Only numbers greater than 0 are valid max values. Defaulting to \`${bP}\`.`}function pse(e,t){return`Invalid prop \`value\` of value \`${e}\` supplied to \`${t}\`. The \`value\` prop must be:
|
|
90
|
+
- a positive number
|
|
91
|
+
- less than the value passed to \`max\` (or ${bP} if no \`max\` prop is set)
|
|
92
|
+
- \`null\` or \`undefined\` if the progress is indeterminate.
|
|
93
|
+
|
|
94
|
+
Defaulting to \`null\`.`}var ZB=UB,yse=GB;const QB=p.forwardRef(({className:e,value:t,...o},n)=>d.jsx(ZB,{ref:n,className:S("relative h-4 w-full overflow-hidden rounded-full bg-secondary",e),...o,children:d.jsx(yse,{className:"h-full w-full flex-1 bg-primary transition-all",style:{transform:`translateX(-${100-(t||0)}%)`}})}));QB.displayName=ZB.displayName;var MP="Radio",[fse,JB]=Xe(MP),[mse,kse]=fse(MP),eW=p.forwardRef((e,t)=>{const{__scopeRadio:o,name:n,checked:a=!1,required:r,disabled:i,value:s="on",onCheck:l,form:u,...y}=e,[h,f]=p.useState(null),k=be(t,_=>f(_)),m=p.useRef(!1),g=h?u||!!h.closest("form"):!0;return d.jsxs(mse,{scope:o,checked:a,disabled:i,children:[d.jsx(se.button,{type:"button",role:"radio","aria-checked":a,"data-state":aW(a),"data-disabled":i?"":void 0,disabled:i,value:s,...y,ref:k,onClick:X(e.onClick,_=>{a||l?.(),g&&(m.current=_.isPropagationStopped(),m.current||_.stopPropagation())})}),g&&d.jsx(nW,{control:h,bubbles:!m.current,name:n,value:s,checked:a,required:r,disabled:i,form:u,style:{transform:"translateX(-100%)"}})]})});eW.displayName=MP;var tW="RadioIndicator",oW=p.forwardRef((e,t)=>{const{__scopeRadio:o,forceMount:n,...a}=e,r=kse(tW,o);return d.jsx(Qe,{present:n||r.checked,children:d.jsx(se.span,{"data-state":aW(r.checked),"data-disabled":r.disabled?"":void 0,...a,ref:t})})});oW.displayName=tW;var gse="RadioBubbleInput",nW=p.forwardRef(({__scopeRadio:e,control:t,checked:o,bubbles:n=!0,...a},r)=>{const i=p.useRef(null),s=be(i,r),l=ms(o),u=Ld(t);return p.useEffect(()=>{const y=i.current;if(!y)return;const h=window.HTMLInputElement.prototype,k=Object.getOwnPropertyDescriptor(h,"checked").set;if(l!==o&&k){const m=new Event("click",{bubbles:n});k.call(y,o),y.dispatchEvent(m)}},[l,o,n]),d.jsx(se.input,{type:"radio","aria-hidden":!0,defaultChecked:o,...a,tabIndex:-1,ref:s,style:{...a.style,...u,position:"absolute",pointerEvents:"none",opacity:0,margin:0}})});nW.displayName=gse;function aW(e){return e?"checked":"unchecked"}var vse=["ArrowUp","ArrowDown","ArrowLeft","ArrowRight"],z$="RadioGroup",[_se]=Xe(z$,[Ao,JB]),rW=Ao(),iW=JB(),[bse,Mse]=_se(z$),cW=p.forwardRef((e,t)=>{const{__scopeRadioGroup:o,name:n,defaultValue:a,value:r,required:i=!1,disabled:s=!1,orientation:l,dir:u,loop:y=!0,onValueChange:h,...f}=e,k=rW(o),m=Zt(u),[g,_]=Ke({prop:r,defaultProp:a??null,onChange:h,caller:z$});return d.jsx(bse,{scope:o,name:n,required:i,disabled:s,value:g,onValueChange:_,children:d.jsx(qd,{asChild:!0,...k,orientation:l,dir:m,loop:y,children:d.jsx(se.div,{role:"radiogroup","aria-required":i,"aria-orientation":l,"data-disabled":s?"":void 0,dir:m,...f,ref:t})})})});cW.displayName=z$;var sW="RadioGroupItem",dW=p.forwardRef((e,t)=>{const{__scopeRadioGroup:o,disabled:n,...a}=e,r=Mse(sW,o),i=r.disabled||n,s=rW(o),l=iW(o),u=p.useRef(null),y=be(t,u),h=r.value===a.value,f=p.useRef(!1);return p.useEffect(()=>{const k=g=>{vse.includes(g.key)&&(f.current=!0)},m=()=>f.current=!1;return document.addEventListener("keydown",k),document.addEventListener("keyup",m),()=>{document.removeEventListener("keydown",k),document.removeEventListener("keyup",m)}},[]),d.jsx(jd,{asChild:!0,...s,focusable:!i,active:h,children:d.jsx(eW,{disabled:i,required:r.required,checked:h,...l,...a,name:r.name,ref:y,onCheck:()=>r.onValueChange(a.value),onKeyDown:X(k=>{k.key==="Enter"&&k.preventDefault()}),onFocus:X(a.onFocus,()=>{f.current&&u.current?.click()})})})});dW.displayName=sW;var wse="RadioGroupIndicator",lW=p.forwardRef((e,t)=>{const{__scopeRadioGroup:o,...n}=e,a=iW(o);return d.jsx(oW,{...a,...n,ref:t})});lW.displayName=wse;var uW=cW,hW=dW,xse=lW;const pW=p.forwardRef(({className:e,...t},o)=>d.jsx(uW,{className:S("grid gap-2",e),...t,ref:o}));pW.displayName=uW.displayName;const yW=p.forwardRef(({className:e,...t},o)=>d.jsx(hW,{ref:o,className:S("aspect-square h-4 w-4 rounded-full border border-primary text-primary ring-offset-background focus:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",e),...t,children:d.jsx(xse,{className:"flex items-center justify-center",children:d.jsx(Qo,{className:"h-2.5 w-2.5 fill-current text-current"})})}));yW.displayName=hW.displayName;function Re(e,t="Assertion error"){if(!e)throw Error(t)}function $s({group:e}){const{orientation:t,panels:o}=e;return o.reduce((n,a)=>(n+=t==="horizontal"?a.element.offsetWidth:a.element.offsetHeight,n),0)}function wP(e,t){return Array.from(t).sort(e==="horizontal"?Nse:Cse)}function Nse(e,t){const o=e.element.offsetLeft-t.element.offsetLeft;return o!==0?o:e.element.offsetWidth-t.element.offsetWidth}function Cse(e,t){const o=e.element.offsetTop-t.element.offsetTop;return o!==0?o:e.element.offsetHeight-t.element.offsetHeight}function fW(e){return e!==null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function mW(e,t){return{x:e.x>=t.left&&e.x<=t.right?0:Math.min(Math.abs(e.x-t.left),Math.abs(e.x-t.right)),y:e.y>=t.top&&e.y<=t.bottom?0:Math.min(Math.abs(e.y-t.top),Math.abs(e.y-t.bottom))}}function $se({orientation:e,rects:t,targetRect:o}){const n={x:o.x+o.width/2,y:o.y+o.height/2};let a,r=Number.MAX_VALUE;for(const i of t){const{x:s,y:l}=mW(n,i),u=e==="horizontal"?s:l;u<r&&(r=u,a=i)}return Re(a,"No rect found"),a}let O$;function Sse(){return O$===void 0&&(typeof matchMedia=="function"?O$=!!matchMedia("(pointer:coarse)").matches:O$=!1),O$}function kW(e){const{element:t,orientation:o,panels:n,separators:a}=e,r=wP(o,Array.from(t.children).filter(fW).map(y=>({element:y}))).map(({element:y})=>y),i=[];let s=!1,l,u=[];for(const y of r)if(y.hasAttribute("data-panel")){const h=n.find(f=>f.element===y);if(h){if(l){const f=l.element.getBoundingClientRect(),k=y.getBoundingClientRect();let m;if(s){const g=o==="horizontal"?new DOMRect(f.right,f.top,0,f.height):new DOMRect(f.left,f.bottom,f.width,0),_=o==="horizontal"?new DOMRect(k.left,k.top,0,k.height):new DOMRect(k.left,k.top,k.width,0);switch(u.length){case 0:{m=[g,_];break}case 1:{const v=u[0],b=$se({orientation:o,rects:[f,k],targetRect:v.element.getBoundingClientRect()});m=[v,b===f?_:g];break}default:{m=u;break}}}else u.length?m=u:m=[o==="horizontal"?new DOMRect(f.right,k.top,k.left-f.right,k.height):new DOMRect(k.left,f.bottom,k.width,k.top-f.bottom)];for(const g of m){let _="width"in g?g:g.element.getBoundingClientRect();const v=Sse()?e.resizeTargetMinimumSize.coarse:e.resizeTargetMinimumSize.fine;if(_.width<v){const b=v-_.width;_=new DOMRect(_.x-b/2,_.y,_.width+b,_.height)}if(_.height<v){const b=v-_.height;_=new DOMRect(_.x,_.y-b/2,_.width,_.height+b)}i.push({group:e,groupSize:$s({group:e}),panels:[l,h],separator:"width"in g?void 0:g,rect:_})}}s=!1,l=h,u=[]}}else if(y.hasAttribute("data-separator")){const h=a.find(f=>f.element===y);h?u.push(h):(l=void 0,u=[])}else s=!0;return i}function Lse(e,t){const o=getComputedStyle(e),n=parseFloat(o.fontSize);return t*n}function Ise(e,t){const o=getComputedStyle(e.ownerDocument.body),n=parseFloat(o.fontSize);return t*n}function Ase(e){return e/100*window.innerHeight}function Pse(e){return e/100*window.innerWidth}function Tse(e){switch(typeof e){case"number":return[e,"px"];case"string":{const t=parseFloat(e);return e.endsWith("%")?[t,"%"]:e.endsWith("px")?[t,"px"]:e.endsWith("rem")?[t,"rem"]:e.endsWith("em")?[t,"em"]:e.endsWith("vh")?[t,"vh"]:e.endsWith("vw")?[t,"vw"]:[t,"%"]}}}function q$({groupSize:e,panelElement:t,styleProp:o}){let n;const[a,r]=Tse(o);switch(r){case"%":{n=a/100*e;break}case"px":{n=a;break}case"rem":{n=Ise(t,a);break}case"em":{n=Lse(t,a);break}case"vh":{n=Ase(a);break}case"vw":{n=Pse(a);break}}return n}function io(e){return parseFloat(e.toFixed(3))}function gW(e){const{panels:t}=e,o=$s({group:e});return o===0?t.map(n=>({collapsedSize:0,collapsible:n.panelConstraints.collapsible===!0,defaultSize:void 0,minSize:0,maxSize:100,panelId:n.id})):t.map(n=>{const{element:a,panelConstraints:r}=n;let i=0;if(r.collapsedSize!==void 0){const y=q$({groupSize:o,panelElement:a,styleProp:r.collapsedSize});i=io(y/o*100)}let s;if(r.defaultSize!==void 0){const y=q$({groupSize:o,panelElement:a,styleProp:r.defaultSize});s=io(y/o*100)}let l=0;if(r.minSize!==void 0){const y=q$({groupSize:o,panelElement:a,styleProp:r.minSize});l=io(y/o*100)}let u=100;if(r.maxSize!==void 0){const y=q$({groupSize:o,panelElement:a,styleProp:r.maxSize});u=io(y/o*100)}return{collapsedSize:i,collapsible:r.collapsible===!0,defaultSize:s,minSize:l,maxSize:u,panelId:n.id}})}class Dse{#e={};addListener(t,o){const n=this.#e[t];return n===void 0?this.#e[t]=[o]:n.includes(o)||n.push(o),()=>{this.removeListener(t,o)}}emit(t,o){const n=this.#e[t];if(n!==void 0)if(n.length===1)n[0].call(null,o);else{let a=!1,r=null;const i=Array.from(n);for(let s=0;s<i.length;s++){const l=i[s];try{l.call(null,o)}catch(u){r===null&&(a=!0,r=u)}}if(a)throw r}}removeAllListeners(){this.#e={}}removeListener(t,o){const n=this.#e[t];if(n!==void 0){const a=n.indexOf(o);a>=0&&n.splice(a,1)}}}function bt(e,t,o=0){return Math.abs(io(e)-io(t))<=o}let Rt={cursorFlags:0,interactionState:{state:"inactive"},mountedGroups:new Map};const zc=new Dse;function Ct(){return Rt}function Mt(e){const t=typeof e=="function"?e(Rt):e;if(Rt===t)return Rt;const o=Rt;return Rt={...Rt,...t},t.cursorFlags!==void 0&&zc.emit("cursorFlagsChange",Rt.cursorFlags),t.interactionState!==void 0&&zc.emit("interactionStateChange",Rt.interactionState),t.mountedGroups!==void 0&&(Rt.mountedGroups.forEach((n,a)=>{n.derivedPanelConstraints.forEach(r=>{if(r.collapsible){const{layout:i}=o.mountedGroups.get(a)??{};if(i){const s=bt(r.collapsedSize,n.layout[r.panelId]),l=bt(r.collapsedSize,i[r.panelId]);s&&!l&&(a.inMemoryLastExpandedPanelSizes[r.panelId]=i[r.panelId])}}})}),zc.emit("mountedGroupsChange",Rt.mountedGroups)),Rt}function Ese(e,t,o){let n,a={x:1/0,y:1/0};for(const r of t){const i=mW(o,r.rect);switch(e){case"horizontal":{i.x<=a.x&&(n=r,a=i);break}case"vertical":{i.y<=a.y&&(n=r,a=i);break}}}return n?{distance:a,hitRegion:n}:void 0}function zse(e){return e!==null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.DOCUMENT_FRAGMENT_NODE}function Ose(e,t){if(e===t)throw new Error("Cannot compare node with itself");const o={a:bW(e),b:bW(t)};let n;for(;o.a.at(-1)===o.b.at(-1);)n=o.a.pop(),o.b.pop();Re(n,"Stacking order can only be calculated for elements with a common ancestor");const a={a:_W(vW(o.a)),b:_W(vW(o.b))};if(a.a===a.b){const r=n.childNodes,i={a:o.a.at(-1),b:o.b.at(-1)};let s=r.length;for(;s--;){const l=r[s];if(l===i.a)return 1;if(l===i.b)return-1}}return Math.sign(a.a-a.b)}const qse=/\b(?:position|zIndex|opacity|transform|webkitTransform|mixBlendMode|filter|webkitFilter|isolation)\b/;function jse(e){const t=getComputedStyle(MW(e)??e).display;return t==="flex"||t==="inline-flex"}function Hse(e){const t=getComputedStyle(e);return!!(t.position==="fixed"||t.zIndex!=="auto"&&(t.position!=="static"||jse(e))||+t.opacity<1||"transform"in t&&t.transform!=="none"||"webkitTransform"in t&&t.webkitTransform!=="none"||"mixBlendMode"in t&&t.mixBlendMode!=="normal"||"filter"in t&&t.filter!=="none"||"webkitFilter"in t&&t.webkitFilter!=="none"||"isolation"in t&&t.isolation==="isolate"||qse.test(t.willChange)||t.webkitOverflowScrolling==="touch")}function vW(e){let t=e.length;for(;t--;){const o=e[t];if(Re(o,"Missing node"),Hse(o))return o}return null}function _W(e){return e&&Number(getComputedStyle(e).zIndex)||0}function bW(e){const t=[];for(;e;)t.push(e),e=MW(e);return t}function MW(e){const{parentNode:t}=e;return zse(t)?t.host:t}function Vse(e,t){return e.x<t.x+t.width&&e.x+e.width>t.x&&e.y<t.y+t.height&&e.y+e.height>t.y}function Fse({groupElement:e,hitRegion:t,pointerEventTarget:o}){if(!fW(o)||o.contains(e)||e.contains(o))return!0;if(Ose(o,e)>0){let n=o;for(;n;){if(n.contains(e))return!0;if(Vse(n.getBoundingClientRect(),t))return!1;n=n.parentElement}}return!0}function xP(e,t){const o=[];return t.forEach((n,a)=>{if(a.disabled)return;const r=kW(a),i=Ese(a.orientation,r,{x:e.clientX,y:e.clientY});i&&i.distance.x<=0&&i.distance.y<=0&&Fse({groupElement:a.element,hitRegion:i.hitRegion.rect,pointerEventTarget:e.target})&&o.push(i.hitRegion)}),o}function Bse(e,t){if(e.length!==t.length)return!1;for(let o=0;o<e.length;o++)if(e[o]!=t[o])return!1;return!0}function Jd(e,t){return bt(e,t)?0:e>t?1:-1}function Ss({panelConstraints:e,size:t}){const{collapsedSize:o=0,collapsible:n,maxSize:a=100,minSize:r=0}=e;if(Jd(t,r)<0)if(n){const i=(o+r)/2;Jd(t,i)<0?t=o:t=r}else t=r;return t=Math.min(a,t),t=io(t),t}function e1({delta:e,initialLayout:t,panelConstraints:o,pivotIndices:n,prevLayout:a,trigger:r}){if(bt(e,0))return t;const i=Object.values(t),s=Object.values(a),l=[...i],[u,y]=n;Re(u!=null,"Invalid first pivot index"),Re(y!=null,"Invalid second pivot index");let h=0;switch(r){case"keyboard":{{const m=e<0?y:u,g=o[m];Re(g,`Panel constraints not found for index ${m}`);const{collapsedSize:_=0,collapsible:v,minSize:b=0}=g;if(v){const M=i[m];if(Re(M!=null,`Previous layout not found for panel index ${m}`),bt(M,_)){const x=b-M;Jd(x,Math.abs(e))>0&&(e=e<0?0-x:x)}}}{const m=e<0?u:y,g=o[m];Re(g,`No panel constraints found for index ${m}`);const{collapsedSize:_=0,collapsible:v,minSize:b=0}=g;if(v){const M=i[m];if(Re(M!=null,`Previous layout not found for panel index ${m}`),bt(M,b)){const x=M-_;Jd(x,Math.abs(e))>0&&(e=e<0?0-x:x)}}}break}}{const m=e<0?1:-1;let g=e<0?y:u,_=0;for(;;){const b=i[g];Re(b!=null,`Previous layout not found for panel index ${g}`);const M=Ss({panelConstraints:o[g],size:100})-b;if(_+=M,g+=m,g<0||g>=o.length)break}const v=Math.min(Math.abs(e),Math.abs(_));e=e<0?0-v:v}{let m=e<0?u:y;for(;m>=0&&m<o.length;){const g=Math.abs(e)-Math.abs(h),_=i[m];Re(_!=null,`Previous layout not found for panel index ${m}`);const v=_-g,b=Ss({panelConstraints:o[m],size:v});if(!bt(_,b)&&(h+=_-b,l[m]=b,h.toFixed(3).localeCompare(Math.abs(e).toFixed(3),void 0,{numeric:!0})>=0))break;e<0?m--:m++}}if(Bse(s,l))return a;{const m=e<0?y:u,g=i[m];Re(g!=null,`Previous layout not found for panel index ${m}`);const _=g+h,v=Ss({panelConstraints:o[m],size:_});if(l[m]=v,!bt(v,_)){let b=_-v,M=e<0?y:u;for(;M>=0&&M<o.length;){const x=l[M];Re(x!=null,`Previous layout not found for panel index ${M}`);const N=x+b,C=Ss({panelConstraints:o[M],size:N});if(bt(x,C)||(b-=C-x,l[M]=C),bt(b,0))break;e>0?M--:M++}}}const f=Object.values(l).reduce((m,g)=>g+m,0);if(!bt(f,100,.1))return a;const k=Object.keys(a);return l.reduce((m,g,_)=>(m[k[_]]=g,m),{})}function Oc(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const o in e)if(t[o]===void 0||Jd(e[o],t[o])!==0)return!1;return!0}function qc({layout:e,panelConstraints:t}){const o=[...Object.values(e)],n=o.reduce((i,s)=>i+s,0);if(o.length!==t.length)throw Error(`Invalid ${t.length} panel layout: ${o.map(i=>`${i}%`).join(", ")}`);if(!bt(n,100)&&o.length>0)for(let i=0;i<t.length;i++){const s=o[i];Re(s!=null,`No layout data found for index ${i}`);const l=100/n*s;o[i]=l}let a=0;for(let i=0;i<t.length;i++){const s=o[i];Re(s!=null,`No layout data found for index ${i}`);const l=Ss({panelConstraints:t[i],size:s});s!=l&&(a+=s-l,o[i]=l)}if(!bt(a,0))for(let i=0;i<t.length;i++){const s=o[i];Re(s!=null,`No layout data found for index ${i}`);const l=s+a,u=Ss({panelConstraints:t[i],size:l});if(s!==u&&(a-=u-s,o[i]=u,bt(a,0)))break}const r=Object.keys(e);return o.reduce((i,s,l)=>(i[r[l]]=s,i),{})}function wW({groupId:e,panelId:t}){const o=()=>{const{mountedGroups:s}=Ct();for(const[l,{defaultLayoutDeferred:u,derivedPanelConstraints:y,layout:h,separatorToPanels:f}]of s)if(l.id===e)return{defaultLayoutDeferred:u,derivedPanelConstraints:y,group:l,layout:h,separatorToPanels:f};throw Error(`Group ${e} not found`)},n=()=>{const s=o().derivedPanelConstraints.find(l=>l.panelId===t);if(s!==void 0)return s;throw Error(`Panel constraints not found for Panel ${t}`)},a=()=>{const s=o().group.panels.find(l=>l.id===t);if(s!==void 0)return s;throw Error(`Layout not found for Panel ${t}`)},r=()=>{const s=o().layout[t];if(s!==void 0)return s;throw Error(`Layout not found for Panel ${t}`)},i=s=>{const l=r();if(s===l)return;const{defaultLayoutDeferred:u,derivedPanelConstraints:y,group:h,layout:f,separatorToPanels:k}=o(),m=h.panels.findIndex(b=>b.id===t),g=m===h.panels.length-1,_=e1({delta:g?l-s:s-l,initialLayout:f,panelConstraints:y,pivotIndices:g?[m-1,m]:[m,m+1],prevLayout:f,trigger:"imperative-api"}),v=qc({layout:_,panelConstraints:y});Oc(f,v)||Mt(b=>({mountedGroups:new Map(b.mountedGroups).set(h,{defaultLayoutDeferred:u,derivedPanelConstraints:y,layout:v,separatorToPanels:k})}))};return{collapse:()=>{const{collapsible:s,collapsedSize:l}=n(),{mutableValues:u}=a(),y=r();s&&y!==l&&(u.expandToSize=y,i(l))},expand:()=>{const{collapsible:s,collapsedSize:l,minSize:u}=n(),{mutableValues:y}=a(),h=r();if(s&&h===l){let f=y.expandToSize??u;f===0&&(f=1),i(f)}},getSize:()=>{const{group:s}=o(),l=r(),{element:u}=a(),y=s.orientation==="horizontal"?u.offsetWidth:u.offsetHeight;return{asPercentage:l,inPixels:y}},isCollapsed:()=>{const{collapsible:s,collapsedSize:l}=n(),u=r();return s&&bt(l,u)},resize:s=>{if(r()!==s){let l;switch(typeof s){case"number":{const{group:u}=o(),y=$s({group:u});l=io(s/y*100);break}case"string":{l=parseFloat(s);break}}i(l)}}}}function xW(e){if(e.defaultPrevented)return;const{mountedGroups:t}=Ct();xP(e,t).forEach(o=>{if(o.separator){const n=o.panels.find(a=>a.panelConstraints.defaultSize!==void 0);if(n){const a=n.panelConstraints.defaultSize,r=wW({groupId:o.group.id,panelId:n.id});r&&a!==void 0&&(r.resize(a),e.preventDefault())}}})}function j$(e){const{mountedGroups:t}=Ct();for(const[o]of t)if(o.separators.some(n=>n.element===e))return o;throw Error("Could not find parent Group for separator element")}function NW({groupId:e}){const t=()=>{const{mountedGroups:o}=Ct();for(const[n,a]of o)if(n.id===e)return{group:n,...a};throw Error(`Could not find Group with id "${e}"`)};return{getLayout(){const{defaultLayoutDeferred:o,layout:n}=t();return o?{}:n},setLayout(o){const{defaultLayoutDeferred:n,derivedPanelConstraints:a,group:r,layout:i,separatorToPanels:s}=t(),l=qc({layout:o,panelConstraints:a});return n?i:(Oc(i,l)||Mt(u=>({mountedGroups:new Map(u.mountedGroups).set(r,{defaultLayoutDeferred:n,derivedPanelConstraints:a,layout:l,separatorToPanels:s})})),l)}}}function CW(e){const{mountedGroups:t}=Ct(),o=t.get(e);return Re(o,`Mounted Group ${e.id} not found`),o}function jc(e,t){const o=j$(e),n=CW(o),a=o.separators.find(y=>y.element===e);Re(a,"Matching separator not found");const r=n.separatorToPanels.get(a);Re(r,"Matching panels not found");const i=r.map(y=>o.panels.indexOf(y)),s=NW({groupId:o.id}).getLayout(),l=e1({delta:t,initialLayout:s,panelConstraints:n.derivedPanelConstraints,pivotIndices:i,prevLayout:s,trigger:"keyboard"}),u=qc({layout:l,panelConstraints:n.derivedPanelConstraints});Oc(s,u)||Mt(y=>({mountedGroups:new Map(y.mountedGroups).set(o,{defaultLayoutDeferred:n.defaultLayoutDeferred,derivedPanelConstraints:n.derivedPanelConstraints,layout:u,separatorToPanels:n.separatorToPanels})}))}function $W(e){if(e.defaultPrevented)return;const t=e.currentTarget,o=j$(t);if(!o.disabled)switch(e.key){case"ArrowDown":{e.preventDefault(),o.orientation==="vertical"&&jc(t,5);break}case"ArrowLeft":{e.preventDefault(),o.orientation==="horizontal"&&jc(t,-5);break}case"ArrowRight":{e.preventDefault(),o.orientation==="horizontal"&&jc(t,5);break}case"ArrowUp":{e.preventDefault(),o.orientation==="vertical"&&jc(t,-5);break}case"End":{e.preventDefault(),jc(t,100);break}case"Enter":{e.preventDefault();const n=j$(t),{derivedPanelConstraints:a,layout:r,separatorToPanels:i}=CW(n),s=n.separators.find(h=>h.element===t);Re(s,"Matching separator not found");const l=i.get(s);Re(l,"Matching panels not found");const u=l[0],y=a.find(h=>h.panelId===u.id);if(Re(y,"Panel metadata not found"),y.collapsible){const h=r[u.id],f=y.collapsedSize===h?n.inMemoryLastExpandedPanelSizes[u.id]??y.minSize:y.collapsedSize;jc(t,f-h)}break}case"F6":{e.preventDefault();const n=j$(t).separators.map(i=>i.element),a=Array.from(n).findIndex(i=>i===e.currentTarget);Re(a!==null,"Index not found");const r=e.shiftKey?a>0?a-1:n.length-1:a+1<n.length?a+1:0;n[r].focus();break}case"Home":{e.preventDefault(),jc(t,-100);break}}}function SW(e){if(e.defaultPrevented||e.pointerType==="mouse"&&e.button>0)return;const{mountedGroups:t}=Ct(),o=xP(e,t),n=new Map;let a=!1;o.forEach(r=>{r.separator&&(a||(a=!0,r.separator.element.focus()));const i=t.get(r.group);i&&n.set(r.group,i.layout)}),Mt({interactionState:{hitRegions:o,initialLayoutMap:n,pointerDownAtPoint:{x:e.clientX,y:e.clientY},state:"active"}}),o.length&&e.preventDefault()}const Wse=e=>e,NP=()=>{},LW=1,IW=2,AW=4,PW=8,TW=3,DW=12;let H$;function EW(){return H$===void 0&&(H$=!1,typeof window<"u"&&(window.navigator.userAgent.includes("Chrome")||window.navigator.userAgent.includes("Firefox"))&&(H$=!0)),H$}function Use({cursorFlags:e,groups:t,state:o}){let n=0,a=0;switch(o){case"active":case"hover":t.forEach(r=>{if(!r.disableCursor)switch(r.orientation){case"horizontal":{n++;break}case"vertical":{a++;break}}})}if(n===0&&a===0)return null;switch(o){case"active":{if(e&&EW()){const r=(e&LW)!==0,i=(e&IW)!==0,s=(e&AW)!==0,l=(e&PW)!==0;if(r)return s?"se-resize":l?"ne-resize":"e-resize";if(i)return s?"sw-resize":l?"nw-resize":"w-resize";if(s)return"s-resize";if(l)return"n-resize"}break}}return EW()?n>0&&a>0?"move":n>0?"ew-resize":"ns-resize":n>0&&a>0?"grab":n>0?"col-resize":"row-resize"}const zW=new WeakMap;function CP(e){if(e.defaultView===null||e.defaultView===void 0)return;let{prevStyle:t,styleSheet:o}=zW.get(e)??{};o===void 0&&(o=new e.defaultView.CSSStyleSheet,e.adoptedStyleSheets.push(o));const{cursorFlags:n,interactionState:a}=Ct();switch(a.state){case"active":case"hover":{const r=Use({cursorFlags:n,groups:a.hitRegions.map(s=>s.group),state:a.state}),i=`*, *:hover {cursor: ${r} !important; ${a.state==="active"?"touch-action: none;":""} }`;if(t===i)return;t=i,r?o.cssRules.length===0?o.insertRule(i):o.replaceSync(i):o.cssRules.length===1&&o.deleteRule(0);break}case"inactive":{t=void 0,o.cssRules.length===1&&o.deleteRule(0);break}}zW.set(e,{prevStyle:t,styleSheet:o})}function OW({document:e,event:t,hitRegions:o,initialLayoutMap:n,mountedGroups:a,pointerDownAtPoint:r,prevCursorFlags:i}){let s=0;const l=new Map(a);o.forEach(y=>{const{group:h,groupSize:f}=y,{disableCursor:k,orientation:m,panels:g}=h;let _=0;r?m==="horizontal"?_=(t.clientX-r.x)/f*100:_=(t.clientY-r.y)/f*100:m==="horizontal"?_=t.clientX<0?-100:100:_=t.clientY<0?-100:100;const v=n.get(h),{defaultLayoutDeferred:b,derivedPanelConstraints:M,layout:x,separatorToPanels:N}=a.get(h)??{defaultLayoutDeferred:!1};if(M&&v&&x&&N){const C=e1({delta:_,initialLayout:v,panelConstraints:M,pivotIndices:y.panels.map($=>g.indexOf($)),prevLayout:x,trigger:"mouse-or-touch"});if(Oc(C,x)){if(_!==0&&!k)switch(m){case"horizontal":{s|=_<0?LW:IW;break}case"vertical":{s|=_<0?AW:PW;break}}}else{l.set(y.group,{defaultLayoutDeferred:b,derivedPanelConstraints:M,layout:C,separatorToPanels:N});const $=y.group.panels.map(({id:L})=>L).join(",");y.group.inMemoryLayouts[$]=C}}});let u=0;t.movementX===0?u|=i&TW:u|=s&TW,t.movementY===0?u|=i&DW:u|=s&DW,Mt({cursorFlags:u,mountedGroups:l}),CP(e)}function qW(e){const{cursorFlags:t,interactionState:o,mountedGroups:n}=Ct();o.state==="active"&&OW({document:e.currentTarget,event:e,hitRegions:o.hitRegions,initialLayoutMap:o.initialLayoutMap,mountedGroups:n,prevCursorFlags:t})}function jW(e){if(e.defaultPrevented)return;const{cursorFlags:t,interactionState:o,mountedGroups:n}=Ct();switch(o.state){case"active":{if(e.buttons===0){Mt(a=>a.interactionState.state==="inactive"?a:{cursorFlags:0,interactionState:{state:"inactive"}}),Mt(a=>({mountedGroups:new Map(a.mountedGroups)}));return}OW({document:e.currentTarget,event:e,hitRegions:o.hitRegions,initialLayoutMap:o.initialLayoutMap,mountedGroups:n,pointerDownAtPoint:o.pointerDownAtPoint,prevCursorFlags:t});break}default:{const a=xP(e,n);a.length===0?o.state!=="inactive"&&Mt({interactionState:{state:"inactive"}}):Mt({interactionState:{hitRegions:a,state:"hover"}}),CP(e.currentTarget);break}}}function HW(e){if(e.relatedTarget instanceof HTMLIFrameElement){const{interactionState:t}=Ct();t.state==="hover"&&Mt({interactionState:{state:"inactive"}})}}function VW(e){if(e.defaultPrevented||e.pointerType==="mouse"&&e.button>0)return;const{interactionState:t}=Ct();t.state==="active"&&(Mt({cursorFlags:0,interactionState:{state:"inactive"}}),t.hitRegions.length>0&&(CP(e.currentTarget),Mt(o=>({mountedGroups:new Map(o.mountedGroups)})),e.preventDefault()))}function FW(e){let t=0,o=0;const n={};for(const r of e)if(r.defaultSize!==void 0){t++;const i=io(r.defaultSize);o+=i,n[r.panelId]=i}else n[r.panelId]=void 0;const a=e.length-t;if(a!==0){const r=io((100-o)/a);for(const i of e)i.defaultSize===void 0&&(n[i.panelId]=r)}return n}function Rse(e,t,o){if(!o[0])return;const n=e.panels.find(l=>l.element===t);if(!n||!n.onResize)return;const a=$s({group:e}),r=e.orientation==="horizontal"?n.element.offsetWidth:n.element.offsetHeight,i=n.mutableValues.prevSize,s={asPercentage:io(r/a*100),inPixels:r};n.mutableValues.prevSize=s,n.onResize(s,n.id,i)}function Gse(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const o in e)if(e[o]!==t[o])return!1;return!0}function Kse(e,t){const o=e.map(a=>a.id),n=Object.keys(t);if(o.length!==n.length)return!1;for(const a of o)if(!n.includes(a))return!1;return!0}const Ls=new Map;function Yse(e){let t=!0;Re(e.element.ownerDocument.defaultView,"Cannot register an unmounted Group");const o=e.element.ownerDocument.defaultView.ResizeObserver,n=new Set,a=new Set,r=new o(m=>{for(const g of m){const{borderBoxSize:_,target:v}=g;if(v===e.element){if(t){if($s({group:e})===0)return;Mt(b=>{const M=b.mountedGroups.get(e);if(M){const x=gW(e),N=M.defaultLayoutDeferred?FW(x):M.layout,C=qc({layout:N,panelConstraints:x});return!M.defaultLayoutDeferred&&Oc(N,C)&&Gse(M.derivedPanelConstraints,x)?b:{mountedGroups:new Map(b.mountedGroups).set(e,{defaultLayoutDeferred:!1,derivedPanelConstraints:x,layout:C,separatorToPanels:M.separatorToPanels})}}return b})}}else Rse(e,v,_)}});r.observe(e.element),e.panels.forEach(m=>{Re(!n.has(m.id),`Panel ids must be unique; id "${m.id}" was used more than once`),n.add(m.id),m.onResize&&r.observe(m.element)});const i=$s({group:e}),s=gW(e),l=e.panels.map(({id:m})=>m).join(",");let u=e.defaultLayout;u&&(Kse(e.panels,u)||(u=void 0));const y=e.inMemoryLayouts[l]??u??FW(s),h=qc({layout:y,panelConstraints:s}),f=kW(e),k=e.element.ownerDocument;return Mt(m=>{const g=new Map;return Ls.set(k,(Ls.get(k)??0)+1),f.forEach(_=>{_.separator&&g.set(_.separator,_.panels)}),{mountedGroups:new Map(m.mountedGroups).set(e,{defaultLayoutDeferred:i===0,derivedPanelConstraints:s,layout:h,separatorToPanels:g})}}),e.separators.forEach(m=>{Re(!a.has(m.id),`Separator ids must be unique; id "${m.id}" was used more than once`),a.add(m.id),m.element.addEventListener("keydown",$W)}),Ls.get(k)===1&&(k.addEventListener("dblclick",xW,!0),k.addEventListener("pointerdown",SW,!0),k.addEventListener("pointerleave",qW),k.addEventListener("pointermove",jW),k.addEventListener("pointerout",HW),k.addEventListener("pointerup",VW,!0)),function(){t=!1,Ls.set(k,Math.max(0,(Ls.get(k)??0)-1)),Mt(m=>{const g=new Map(m.mountedGroups);return g.delete(e),{mountedGroups:g}}),e.separators.forEach(m=>{m.element.removeEventListener("keydown",$W)}),Ls.get(k)||(k.removeEventListener("dblclick",xW,!0),k.removeEventListener("pointerdown",SW,!0),k.removeEventListener("pointerleave",qW),k.removeEventListener("pointermove",jW),k.removeEventListener("pointerout",HW),k.removeEventListener("pointerup",VW,!0)),r.disconnect()}}function BW(){const[e,t]=w.useState({}),o=w.useCallback(()=>t({}),[]);return[e,o]}function $P(e){const t=w.useId();return`${e??t}`}const Hc=typeof window<"u"?w.useLayoutEffect:w.useEffect;function t1(e){const t=w.useRef(e);return Hc(()=>{t.current=e},[e]),w.useCallback((...o)=>t.current?.(...o),[t])}function SP(...e){return t1(t=>{e.forEach(o=>{if(o)switch(typeof o){case"function":{o(t);break}case"object":{o.current=t;break}}})})}function Xse(e){const t=w.useRef({...e});return Hc(()=>{for(const o in e)t.current[o]=e[o]},[e]),t.current}const WW=w.createContext(null);function Zse(e,t){const o=w.useRef({getLayout:()=>({}),setLayout:Wse});w.useImperativeHandle(t,()=>o.current,[]),Hc(()=>{Object.assign(o.current,NW({groupId:e}))})}function UW({children:e,className:t,defaultLayout:o,disableCursor:n,disabled:a,elementRef:r,groupRef:i,id:s,onLayoutChange:l,onLayoutChanged:u,orientation:y="horizontal",resizeTargetMinimumSize:h={coarse:20,fine:10},style:f,...k}){const m=w.useRef({onLayoutChange:{},onLayoutChanged:{}}),g=t1(E=>{Oc(m.current.onLayoutChange,E)||(m.current.onLayoutChange=E,l?.(E))}),_=t1(E=>{Oc(m.current.onLayoutChanged,E)||(m.current.onLayoutChanged=E,u?.(E))}),v=$P(s),b=w.useRef(null),[M,x]=BW(),N=w.useRef({lastExpandedPanelSizes:{},layouts:{},panels:[],resizeTargetMinimumSize:h,separators:[]}),C=SP(b,r);Zse(v,i);const $=t1((E,O)=>{const{interactionState:T,mountedGroups:W}=Ct();for(const R of W.keys())if(R.id===E){const H=W.get(R);if(H){let Y=!1;return T.state==="active"&&(Y=T.hitRegions.some(j=>j.group===R)),{flexGrow:H.layout[O]??1,pointerEvents:Y?"none":void 0}}}return{flexGrow:o?.[O]??1}}),L=w.useMemo(()=>({getPanelStyles:$,id:v,orientation:y,registerPanel:E=>{const O=N.current;return O.panels=wP(y,[...O.panels,E]),x(),()=>{O.panels=O.panels.filter(T=>T!==E),x()}},registerSeparator:E=>{const O=N.current;return O.separators=wP(y,[...O.separators,E]),x(),()=>{O.separators=O.separators.filter(T=>T!==E),x()}}}),[$,v,x,y]),A=Xse({defaultLayout:o,disableCursor:n}),z=w.useRef(null);return Hc(()=>{const E=b.current;if(E===null)return;const O=N.current,T={defaultLayout:A.defaultLayout,disableCursor:!!A.disableCursor,disabled:!!a,element:E,id:v,inMemoryLastExpandedPanelSizes:N.current.lastExpandedPanelSizes,inMemoryLayouts:N.current.layouts,orientation:y,panels:O.panels,resizeTargetMinimumSize:O.resizeTargetMinimumSize,separators:O.separators};z.current=T;const W=Yse(T),R=Ct().mountedGroups.get(T);if(R){const{defaultLayoutDeferred:U,derivedPanelConstraints:ce,layout:le}=R;!U&&ce.length>0&&(g(le),_(le),O.panels.forEach(B=>{B.scheduleUpdate()}))}let H=!1;const Y=zc.addListener("interactionStateChange",U=>{const ce=U.state==="active";H!==ce&&(H=ce,O.panels.forEach(le=>{le.scheduleUpdate()}))}),j=zc.addListener("mountedGroupsChange",U=>{const ce=U.get(T);if(ce){const{defaultLayoutDeferred:le,derivedPanelConstraints:B,layout:F}=ce;if(le||B.length===0)return;const{interactionState:K}=Ct(),G=K.state!=="active";g(F),G&&_(F),O.panels.forEach(ie=>{ie.scheduleUpdate()})}});return()=>{z.current=null,W(),Y(),j()}},[a,v,_,g,y,M,A]),w.useEffect(()=>{const E=z.current;E&&(E.defaultLayout=o,E.disableCursor=!!n)}),d.jsx(WW.Provider,{value:L,children:d.jsx("div",{...k,className:t,"data-group":!0,"data-testid":v,id:v,ref:C,style:{height:"100%",width:"100%",overflow:"hidden",...f,display:"flex",flexDirection:y==="horizontal"?"row":"column",flexWrap:"nowrap"},children:e})})}UW.displayName="Group";function LP(){const e=w.useContext(WW);return Re(e,"Group Context not found; did you render a Panel or Separator outside of a Group?"),e}function Qse(e,t){const{id:o}=LP(),n=w.useRef({collapse:NP,expand:NP,getSize:()=>({asPercentage:0,inPixels:0}),isCollapsed:()=>!1,resize:NP});w.useImperativeHandle(t,()=>n.current,[]),Hc(()=>{Object.assign(n.current,wW({groupId:o,panelId:e}))})}function RW({children:e,className:t,collapsedSize:o="0%",collapsible:n=!1,defaultSize:a,elementRef:r,id:i,maxSize:s="100%",minSize:l="0%",onResize:u,panelRef:y,style:h,...f}){const k=!!i,m=$P(i),g=w.useRef(null),_=SP(g,r),[,v]=BW(),{getPanelStyles:b,id:M,registerPanel:x}=LP(),N=u!==null,C=t1((L,A,z)=>{u?.(L,i,z)});Hc(()=>{const L=g.current;if(L!==null)return x({element:L,id:m,idIsStable:k,mutableValues:{expandToSize:void 0,prevSize:void 0},onResize:N?C:void 0,panelConstraints:{collapsedSize:o,collapsible:n,defaultSize:a,maxSize:s,minSize:l},scheduleUpdate:v})},[o,n,a,v,N,m,k,s,l,C,x]),Qse(m,y);const $=b(M,m);return d.jsx("div",{...f,"data-panel":!0,"data-testid":m,id:m,ref:_,style:{...Jse,display:"flex",flexBasis:0,flexShrink:1,overflow:"hidden",...$},children:d.jsx("div",{className:t,style:{maxHeight:"100%",maxWidth:"100%",flexGrow:1,...h},children:e})})}RW.displayName="Panel";const Jse={minHeight:0,maxHeight:"100%",height:"auto",minWidth:0,maxWidth:"100%",width:"auto",border:"none",borderWidth:0,padding:0,margin:0};function ede({layout:e,panelConstraints:t,panelId:o,panelIndex:n}){let a,r;const i=e[o],s=t.find(l=>l.panelId===o);if(s){const l=s.maxSize,u=s.collapsible?s.collapsedSize:s.minSize,y=[n,n+1];r=qc({layout:e1({delta:u-i,initialLayout:e,panelConstraints:t,pivotIndices:y,prevLayout:e}),panelConstraints:t})[o],a=qc({layout:e1({delta:l-i,initialLayout:e,panelConstraints:t,pivotIndices:y,prevLayout:e}),panelConstraints:t})[o]}return{valueControls:o,valueMax:a,valueMin:r,valueNow:i}}function GW({children:e,className:t,elementRef:o,id:n,style:a,...r}){const i=$P(n),[s,l]=w.useState({}),[u,y]=w.useState("inactive"),h=w.useRef(null),f=SP(h,o),{id:k,orientation:m,registerSeparator:g}=LP(),_=m==="horizontal"?"vertical":"horizontal";return Hc(()=>{const v=h.current;if(v!==null){const b={element:v,id:i},M=g(b),x=zc.addListener("interactionStateChange",C=>{y(C.state!=="inactive"&&C.hitRegions.some($=>$.separator===b)?C.state:"inactive")}),N=zc.addListener("mountedGroupsChange",C=>{C.forEach(({derivedPanelConstraints:$,layout:L,separatorToPanels:A},z)=>{if(z.id===k){const E=A.get(b);if(E){const O=E[0],T=z.panels.indexOf(O);l(ede({layout:L,panelConstraints:$,panelId:O.id,panelIndex:T}))}}})});return()=>{x(),N(),M()}}},[k,i,g]),d.jsx("div",{...r,"aria-controls":s.valueControls,"aria-orientation":_,"aria-valuemax":s.valueMax,"aria-valuemin":s.valueMin,"aria-valuenow":s.valueNow,children:e,className:t,"data-separator":u,"data-testid":i,id:i,ref:f,role:"separator",style:{flexBasis:"auto",...a,flexGrow:0,flexShrink:0},tabIndex:0})}GW.displayName="Separator";const tde=({className:e,...t})=>d.jsx(UW,{className:S("flex h-full w-full data-[panel-group-direction=vertical]:flex-col",e),...t}),ode=RW,nde=({withHandle:e,className:t,...o})=>d.jsx(GW,{className:S("relative flex w-px items-center justify-center bg-border after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring focus-visible:ring-offset-1 data-[panel-group-direction=vertical]:h-px data-[panel-group-direction=vertical]:w-full data-[panel-group-direction=vertical]:after:left-0 data-[panel-group-direction=vertical]:after:h-1 data-[panel-group-direction=vertical]:after:w-full data-[panel-group-direction=vertical]:after:-translate-y-1/2 data-[panel-group-direction=vertical]:after:translate-x-0 [&[data-panel-group-direction=vertical]>div]:rotate-90",t),...o,children:e&&d.jsx("div",{className:"z-10 flex h-4 w-3 items-center justify-center rounded-sm border bg-border",children:d.jsx(es,{className:"h-2.5 w-2.5"})})});function o1(e,[t,o]){return Math.min(o,Math.max(t,e))}function ade(e,t){return p.useReducer((o,n)=>t[o][n]??o,e)}var IP="ScrollArea",[KW]=Xe(IP),[rde,Gt]=KW(IP),YW=p.forwardRef((e,t)=>{const{__scopeScrollArea:o,type:n="hover",dir:a,scrollHideDelay:r=600,...i}=e,[s,l]=p.useState(null),[u,y]=p.useState(null),[h,f]=p.useState(null),[k,m]=p.useState(null),[g,_]=p.useState(null),[v,b]=p.useState(0),[M,x]=p.useState(0),[N,C]=p.useState(!1),[$,L]=p.useState(!1),A=be(t,E=>l(E)),z=Zt(a);return d.jsx(rde,{scope:o,type:n,dir:z,scrollHideDelay:r,scrollArea:s,viewport:u,onViewportChange:y,content:h,onContentChange:f,scrollbarX:k,onScrollbarXChange:m,scrollbarXEnabled:N,onScrollbarXEnabledChange:C,scrollbarY:g,onScrollbarYChange:_,scrollbarYEnabled:$,onScrollbarYEnabledChange:L,onCornerWidthChange:b,onCornerHeightChange:x,children:d.jsx(se.div,{dir:z,...i,ref:A,style:{position:"relative","--radix-scroll-area-corner-width":v+"px","--radix-scroll-area-corner-height":M+"px",...e.style}})})});YW.displayName=IP;var XW="ScrollAreaViewport",ZW=p.forwardRef((e,t)=>{const{__scopeScrollArea:o,children:n,nonce:a,...r}=e,i=Gt(XW,o),s=p.useRef(null),l=be(t,s,i.onViewportChange);return d.jsxs(d.Fragment,{children:[d.jsx("style",{dangerouslySetInnerHTML:{__html:"[data-radix-scroll-area-viewport]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;}[data-radix-scroll-area-viewport]::-webkit-scrollbar{display:none}"},nonce:a}),d.jsx(se.div,{"data-radix-scroll-area-viewport":"",...r,ref:l,style:{overflowX:i.scrollbarXEnabled?"scroll":"hidden",overflowY:i.scrollbarYEnabled?"scroll":"hidden",...e.style},children:d.jsx("div",{ref:i.onContentChange,style:{minWidth:"100%",display:"table"},children:n})})]})});ZW.displayName=XW;var Po="ScrollAreaScrollbar",AP=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,a=Gt(Po,e.__scopeScrollArea),{onScrollbarXEnabledChange:r,onScrollbarYEnabledChange:i}=a,s=e.orientation==="horizontal";return p.useEffect(()=>(s?r(!0):i(!0),()=>{s?r(!1):i(!1)}),[s,r,i]),a.type==="hover"?d.jsx(ide,{...n,ref:t,forceMount:o}):a.type==="scroll"?d.jsx(cde,{...n,ref:t,forceMount:o}):a.type==="auto"?d.jsx(QW,{...n,ref:t,forceMount:o}):a.type==="always"?d.jsx(PP,{...n,ref:t}):null});AP.displayName=Po;var ide=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,a=Gt(Po,e.__scopeScrollArea),[r,i]=p.useState(!1);return p.useEffect(()=>{const s=a.scrollArea;let l=0;if(s){const u=()=>{window.clearTimeout(l),i(!0)},y=()=>{l=window.setTimeout(()=>i(!1),a.scrollHideDelay)};return s.addEventListener("pointerenter",u),s.addEventListener("pointerleave",y),()=>{window.clearTimeout(l),s.removeEventListener("pointerenter",u),s.removeEventListener("pointerleave",y)}}},[a.scrollArea,a.scrollHideDelay]),d.jsx(Qe,{present:o||r,children:d.jsx(QW,{"data-state":r?"visible":"hidden",...n,ref:t})})}),cde=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,a=Gt(Po,e.__scopeScrollArea),r=e.orientation==="horizontal",i=W$(()=>l("SCROLL_END"),100),[s,l]=ade("hidden",{hidden:{SCROLL:"scrolling"},scrolling:{SCROLL_END:"idle",POINTER_ENTER:"interacting"},interacting:{SCROLL:"interacting",POINTER_LEAVE:"idle"},idle:{HIDE:"hidden",SCROLL:"scrolling",POINTER_ENTER:"interacting"}});return p.useEffect(()=>{if(s==="idle"){const u=window.setTimeout(()=>l("HIDE"),a.scrollHideDelay);return()=>window.clearTimeout(u)}},[s,a.scrollHideDelay,l]),p.useEffect(()=>{const u=a.viewport,y=r?"scrollLeft":"scrollTop";if(u){let h=u[y];const f=()=>{const k=u[y];h!==k&&(l("SCROLL"),i()),h=k};return u.addEventListener("scroll",f),()=>u.removeEventListener("scroll",f)}},[a.viewport,r,l,i]),d.jsx(Qe,{present:o||s!=="hidden",children:d.jsx(PP,{"data-state":s==="hidden"?"hidden":"visible",...n,ref:t,onPointerEnter:X(e.onPointerEnter,()=>l("POINTER_ENTER")),onPointerLeave:X(e.onPointerLeave,()=>l("POINTER_LEAVE"))})})}),QW=p.forwardRef((e,t)=>{const o=Gt(Po,e.__scopeScrollArea),{forceMount:n,...a}=e,[r,i]=p.useState(!1),s=e.orientation==="horizontal",l=W$(()=>{if(o.viewport){const u=o.viewport.offsetWidth<o.viewport.scrollWidth,y=o.viewport.offsetHeight<o.viewport.scrollHeight;i(s?u:y)}},10);return Is(o.viewport,l),Is(o.content,l),d.jsx(Qe,{present:n||r,children:d.jsx(PP,{"data-state":r?"visible":"hidden",...a,ref:t})})}),PP=p.forwardRef((e,t)=>{const{orientation:o="vertical",...n}=e,a=Gt(Po,e.__scopeScrollArea),r=p.useRef(null),i=p.useRef(0),[s,l]=p.useState({content:0,viewport:0,scrollbar:{size:0,paddingStart:0,paddingEnd:0}}),u=nU(s.viewport,s.content),y={...n,sizes:s,onSizesChange:l,hasThumb:u>0&&u<1,onThumbChange:f=>r.current=f,onThumbPointerUp:()=>i.current=0,onThumbPointerDown:f=>i.current=f};function h(f,k){return pde(f,i.current,s,k)}return o==="horizontal"?d.jsx(sde,{...y,ref:t,onThumbPositionChange:()=>{if(a.viewport&&r.current){const f=a.viewport.scrollLeft,k=aU(f,s,a.dir);r.current.style.transform=`translate3d(${k}px, 0, 0)`}},onWheelScroll:f=>{a.viewport&&(a.viewport.scrollLeft=f)},onDragScroll:f=>{a.viewport&&(a.viewport.scrollLeft=h(f,a.dir))}}):o==="vertical"?d.jsx(dde,{...y,ref:t,onThumbPositionChange:()=>{if(a.viewport&&r.current){const f=a.viewport.scrollTop,k=aU(f,s);r.current.style.transform=`translate3d(0, ${k}px, 0)`}},onWheelScroll:f=>{a.viewport&&(a.viewport.scrollTop=f)},onDragScroll:f=>{a.viewport&&(a.viewport.scrollTop=h(f))}}):null}),sde=p.forwardRef((e,t)=>{const{sizes:o,onSizesChange:n,...a}=e,r=Gt(Po,e.__scopeScrollArea),[i,s]=p.useState(),l=p.useRef(null),u=be(t,l,r.onScrollbarXChange);return p.useEffect(()=>{l.current&&s(getComputedStyle(l.current))},[l]),d.jsx(eU,{"data-orientation":"horizontal",...a,ref:u,sizes:o,style:{bottom:0,left:r.dir==="rtl"?"var(--radix-scroll-area-corner-width)":0,right:r.dir==="ltr"?"var(--radix-scroll-area-corner-width)":0,"--radix-scroll-area-thumb-width":B$(o)+"px",...e.style},onThumbPointerDown:y=>e.onThumbPointerDown(y.x),onDragScroll:y=>e.onDragScroll(y.x),onWheelScroll:(y,h)=>{if(r.viewport){const f=r.viewport.scrollLeft+y.deltaX;e.onWheelScroll(f),iU(f,h)&&y.preventDefault()}},onResize:()=>{l.current&&r.viewport&&i&&n({content:r.viewport.scrollWidth,viewport:r.viewport.offsetWidth,scrollbar:{size:l.current.clientWidth,paddingStart:F$(i.paddingLeft),paddingEnd:F$(i.paddingRight)}})}})}),dde=p.forwardRef((e,t)=>{const{sizes:o,onSizesChange:n,...a}=e,r=Gt(Po,e.__scopeScrollArea),[i,s]=p.useState(),l=p.useRef(null),u=be(t,l,r.onScrollbarYChange);return p.useEffect(()=>{l.current&&s(getComputedStyle(l.current))},[l]),d.jsx(eU,{"data-orientation":"vertical",...a,ref:u,sizes:o,style:{top:0,right:r.dir==="ltr"?0:void 0,left:r.dir==="rtl"?0:void 0,bottom:"var(--radix-scroll-area-corner-height)","--radix-scroll-area-thumb-height":B$(o)+"px",...e.style},onThumbPointerDown:y=>e.onThumbPointerDown(y.y),onDragScroll:y=>e.onDragScroll(y.y),onWheelScroll:(y,h)=>{if(r.viewport){const f=r.viewport.scrollTop+y.deltaY;e.onWheelScroll(f),iU(f,h)&&y.preventDefault()}},onResize:()=>{l.current&&r.viewport&&i&&n({content:r.viewport.scrollHeight,viewport:r.viewport.offsetHeight,scrollbar:{size:l.current.clientHeight,paddingStart:F$(i.paddingTop),paddingEnd:F$(i.paddingBottom)}})}})}),[lde,JW]=KW(Po),eU=p.forwardRef((e,t)=>{const{__scopeScrollArea:o,sizes:n,hasThumb:a,onThumbChange:r,onThumbPointerUp:i,onThumbPointerDown:s,onThumbPositionChange:l,onDragScroll:u,onWheelScroll:y,onResize:h,...f}=e,k=Gt(Po,o),[m,g]=p.useState(null),_=be(t,A=>g(A)),v=p.useRef(null),b=p.useRef(""),M=k.viewport,x=n.content-n.viewport,N=Ue(y),C=Ue(l),$=W$(h,10);function L(A){if(v.current){const z=A.clientX-v.current.left,E=A.clientY-v.current.top;u({x:z,y:E})}}return p.useEffect(()=>{const A=z=>{const E=z.target;m?.contains(E)&&N(z,x)};return document.addEventListener("wheel",A,{passive:!1}),()=>document.removeEventListener("wheel",A,{passive:!1})},[M,m,x,N]),p.useEffect(C,[n,C]),Is(m,$),Is(k.content,$),d.jsx(lde,{scope:o,scrollbar:m,hasThumb:a,onThumbChange:Ue(r),onThumbPointerUp:Ue(i),onThumbPositionChange:C,onThumbPointerDown:Ue(s),children:d.jsx(se.div,{...f,ref:_,style:{position:"absolute",...f.style},onPointerDown:X(e.onPointerDown,A=>{A.button===0&&(A.target.setPointerCapture(A.pointerId),v.current=m.getBoundingClientRect(),b.current=document.body.style.webkitUserSelect,document.body.style.webkitUserSelect="none",k.viewport&&(k.viewport.style.scrollBehavior="auto"),L(A))}),onPointerMove:X(e.onPointerMove,L),onPointerUp:X(e.onPointerUp,A=>{const z=A.target;z.hasPointerCapture(A.pointerId)&&z.releasePointerCapture(A.pointerId),document.body.style.webkitUserSelect=b.current,k.viewport&&(k.viewport.style.scrollBehavior=""),v.current=null})})})}),V$="ScrollAreaThumb",tU=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,a=JW(V$,e.__scopeScrollArea);return d.jsx(Qe,{present:o||a.hasThumb,children:d.jsx(ude,{ref:t,...n})})}),ude=p.forwardRef((e,t)=>{const{__scopeScrollArea:o,style:n,...a}=e,r=Gt(V$,o),i=JW(V$,o),{onThumbPositionChange:s}=i,l=be(t,h=>i.onThumbChange(h)),u=p.useRef(void 0),y=W$(()=>{u.current&&(u.current(),u.current=void 0)},100);return p.useEffect(()=>{const h=r.viewport;if(h){const f=()=>{if(y(),!u.current){const k=yde(h,s);u.current=k,s()}};return s(),h.addEventListener("scroll",f),()=>h.removeEventListener("scroll",f)}},[r.viewport,y,s]),d.jsx(se.div,{"data-state":i.hasThumb?"visible":"hidden",...a,ref:l,style:{width:"var(--radix-scroll-area-thumb-width)",height:"var(--radix-scroll-area-thumb-height)",...n},onPointerDownCapture:X(e.onPointerDownCapture,h=>{const k=h.target.getBoundingClientRect(),m=h.clientX-k.left,g=h.clientY-k.top;i.onThumbPointerDown({x:m,y:g})}),onPointerUp:X(e.onPointerUp,i.onThumbPointerUp)})});tU.displayName=V$;var TP="ScrollAreaCorner",oU=p.forwardRef((e,t)=>{const o=Gt(TP,e.__scopeScrollArea),n=!!(o.scrollbarX&&o.scrollbarY);return o.type!=="scroll"&&n?d.jsx(hde,{...e,ref:t}):null});oU.displayName=TP;var hde=p.forwardRef((e,t)=>{const{__scopeScrollArea:o,...n}=e,a=Gt(TP,o),[r,i]=p.useState(0),[s,l]=p.useState(0),u=!!(r&&s);return Is(a.scrollbarX,()=>{const y=a.scrollbarX?.offsetHeight||0;a.onCornerHeightChange(y),l(y)}),Is(a.scrollbarY,()=>{const y=a.scrollbarY?.offsetWidth||0;a.onCornerWidthChange(y),i(y)}),u?d.jsx(se.div,{...n,ref:t,style:{width:r,height:s,position:"absolute",right:a.dir==="ltr"?0:void 0,left:a.dir==="rtl"?0:void 0,bottom:0,...e.style}}):null});function F$(e){return e?parseInt(e,10):0}function nU(e,t){const o=e/t;return isNaN(o)?0:o}function B$(e){const t=nU(e.viewport,e.content),o=e.scrollbar.paddingStart+e.scrollbar.paddingEnd,n=(e.scrollbar.size-o)*t;return Math.max(n,18)}function pde(e,t,o,n="ltr"){const a=B$(o),r=a/2,i=t||r,s=a-i,l=o.scrollbar.paddingStart+i,u=o.scrollbar.size-o.scrollbar.paddingEnd-s,y=o.content-o.viewport,h=n==="ltr"?[0,y]:[y*-1,0];return rU([l,u],h)(e)}function aU(e,t,o="ltr"){const n=B$(t),a=t.scrollbar.paddingStart+t.scrollbar.paddingEnd,r=t.scrollbar.size-a,i=t.content-t.viewport,s=r-n,l=o==="ltr"?[0,i]:[i*-1,0],u=o1(e,l);return rU([0,i],[0,s])(u)}function rU(e,t){return o=>{if(e[0]===e[1]||t[0]===t[1])return t[0];const n=(t[1]-t[0])/(e[1]-e[0]);return t[0]+n*(o-e[0])}}function iU(e,t){return e>0&&e<t}var yde=(e,t=()=>{})=>{let o={left:e.scrollLeft,top:e.scrollTop},n=0;return(function a(){const r={left:e.scrollLeft,top:e.scrollTop},i=o.left!==r.left,s=o.top!==r.top;(i||s)&&t(),o=r,n=window.requestAnimationFrame(a)})(),()=>window.cancelAnimationFrame(n)};function W$(e,t){const o=Ue(e),n=p.useRef(0);return p.useEffect(()=>()=>window.clearTimeout(n.current),[]),p.useCallback(()=>{window.clearTimeout(n.current),n.current=window.setTimeout(o,t)},[o,t])}function Is(e,t){const o=Ue(t);Ze(()=>{let n=0;if(e){const a=new ResizeObserver(()=>{cancelAnimationFrame(n),n=window.requestAnimationFrame(o)});return a.observe(e),()=>{window.cancelAnimationFrame(n),a.unobserve(e)}}},[e,o])}var cU=YW,fde=ZW,mde=oU;const sU=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(cU,{ref:n,className:S("relative overflow-hidden",e),...o,children:[d.jsx(fde,{className:"h-full w-full rounded-[inherit]",children:t}),d.jsx(U$,{}),d.jsx(mde,{})]}));sU.displayName=cU.displayName;const U$=p.forwardRef(({className:e,orientation:t="vertical",...o},n)=>d.jsx(AP,{ref:n,orientation:t,className:S("flex touch-none select-none transition-colors",t==="vertical"&&"h-full w-2.5 border-l border-l-transparent p-[1px]",t==="horizontal"&&"h-2.5 flex-col border-t border-t-transparent p-[1px]",e),...o,children:d.jsx(tU,{className:"relative flex-1 rounded-full bg-border"})}));U$.displayName=AP.displayName;var kde=[" ","Enter","ArrowUp","ArrowDown"],gde=[" ","Enter"],Vc="Select",[R$,G$,vde]=Xo(Vc),[As]=Xe(Vc,[vde,Io]),K$=Io(),[_de,yn]=As(Vc),[bde,Mde]=As(Vc),dU=e=>{const{__scopeSelect:t,children:o,open:n,defaultOpen:a,onOpenChange:r,value:i,defaultValue:s,onValueChange:l,dir:u,name:y,autoComplete:h,disabled:f,required:k,form:m}=e,g=K$(t),[_,v]=p.useState(null),[b,M]=p.useState(null),[x,N]=p.useState(!1),C=Zt(u),[$,L]=Ke({prop:n,defaultProp:a??!1,onChange:r,caller:Vc}),[A,z]=Ke({prop:i,defaultProp:s,onChange:l,caller:Vc}),E=p.useRef(null),O=_?m||!!_.closest("form"):!0,[T,W]=p.useState(new Set),R=Array.from(T).map(H=>H.props.value).join(";");return d.jsx(ws,{...g,children:d.jsxs(_de,{required:k,scope:t,trigger:_,onTriggerChange:v,valueNode:b,onValueNodeChange:M,valueNodeHasChildren:x,onValueNodeHasChildrenChange:N,contentId:We(),value:A,onValueChange:z,open:$,onOpenChange:L,dir:C,triggerPointerDownPosRef:E,disabled:f,children:[d.jsx(R$.Provider,{scope:t,children:d.jsx(bde,{scope:e.__scopeSelect,onNativeOptionAdd:p.useCallback(H=>{W(Y=>new Set(Y).add(H))},[]),onNativeOptionRemove:p.useCallback(H=>{W(Y=>{const j=new Set(Y);return j.delete(H),j})},[]),children:o})}),O?d.jsxs(TU,{"aria-hidden":!0,required:k,tabIndex:-1,name:y,autoComplete:h,value:A,onChange:H=>z(H.target.value),disabled:f,form:m,children:[A===void 0?d.jsx("option",{value:""}):null,Array.from(T)]},R):null]})})};dU.displayName=Vc;var lU="SelectTrigger",uU=p.forwardRef((e,t)=>{const{__scopeSelect:o,disabled:n=!1,...a}=e,r=K$(o),i=yn(lU,o),s=i.disabled||n,l=be(t,i.onTriggerChange),u=G$(o),y=p.useRef("touch"),[h,f,k]=EU(g=>{const _=u().filter(M=>!M.disabled),v=_.find(M=>M.value===i.value),b=zU(_,g,v);b!==void 0&&i.onValueChange(b.value)}),m=g=>{s||(i.onOpenChange(!0),k()),g&&(i.triggerPointerDownPosRef.current={x:Math.round(g.pageX),y:Math.round(g.pageY)})};return d.jsx(xs,{asChild:!0,...r,children:d.jsx(se.button,{type:"button",role:"combobox","aria-controls":i.contentId,"aria-expanded":i.open,"aria-required":i.required,"aria-autocomplete":"none",dir:i.dir,"data-state":i.open?"open":"closed",disabled:s,"data-disabled":s?"":void 0,"data-placeholder":DU(i.value)?"":void 0,...a,ref:l,onClick:X(a.onClick,g=>{g.currentTarget.focus(),y.current!=="mouse"&&m(g)}),onPointerDown:X(a.onPointerDown,g=>{y.current=g.pointerType;const _=g.target;_.hasPointerCapture(g.pointerId)&&_.releasePointerCapture(g.pointerId),g.button===0&&g.ctrlKey===!1&&g.pointerType==="mouse"&&(m(g),g.preventDefault())}),onKeyDown:X(a.onKeyDown,g=>{const _=h.current!=="";!(g.ctrlKey||g.altKey||g.metaKey)&&g.key.length===1&&f(g.key),!(_&&g.key===" ")&&kde.includes(g.key)&&(m(),g.preventDefault())})})})});uU.displayName=lU;var hU="SelectValue",pU=p.forwardRef((e,t)=>{const{__scopeSelect:o,className:n,style:a,children:r,placeholder:i="",...s}=e,l=yn(hU,o),{onValueNodeHasChildrenChange:u}=l,y=r!==void 0,h=be(t,l.onValueNodeChange);return Ze(()=>{u(y)},[u,y]),d.jsx(se.span,{...s,ref:h,style:{pointerEvents:"none"},children:DU(l.value)?d.jsx(d.Fragment,{children:i}):r})});pU.displayName=hU;var wde="SelectIcon",yU=p.forwardRef((e,t)=>{const{__scopeSelect:o,children:n,...a}=e;return d.jsx(se.span,{"aria-hidden":!0,...a,ref:t,children:n||"▼"})});yU.displayName=wde;var xde="SelectPortal",fU=e=>d.jsx(rd,{asChild:!0,...e});fU.displayName=xde;var Fc="SelectContent",mU=p.forwardRef((e,t)=>{const o=yn(Fc,e.__scopeSelect),[n,a]=p.useState();if(Ze(()=>{a(new DocumentFragment)},[]),!o.open){const r=n;return r?d1.createPortal(d.jsx(kU,{scope:e.__scopeSelect,children:d.jsx(R$.Slot,{scope:e.__scopeSelect,children:d.jsx("div",{children:e.children})})}),r):null}return d.jsx(gU,{...e,ref:t})});mU.displayName=Fc;var co=10,[kU,fn]=As(Fc),Nde="SelectContentImpl",Cde=bn("SelectContent.RemoveScroll"),gU=p.forwardRef((e,t)=>{const{__scopeSelect:o,position:n="item-aligned",onCloseAutoFocus:a,onEscapeKeyDown:r,onPointerDownOutside:i,side:s,sideOffset:l,align:u,alignOffset:y,arrowPadding:h,collisionBoundary:f,collisionPadding:k,sticky:m,hideWhenDetached:g,avoidCollisions:_,...v}=e,b=yn(Fc,o),[M,x]=p.useState(null),[N,C]=p.useState(null),$=be(t,V=>x(V)),[L,A]=p.useState(null),[z,E]=p.useState(null),O=G$(o),[T,W]=p.useState(!1),R=p.useRef(!1);p.useEffect(()=>{if(M)return zC(M)},[M]),SC();const H=p.useCallback(V=>{const[te,...fe]=O().map(ee=>ee.ref.current),[pe]=fe.slice(-1),de=document.activeElement;for(const ee of V)if(ee===de||(ee?.scrollIntoView({block:"nearest"}),ee===te&&N&&(N.scrollTop=0),ee===pe&&N&&(N.scrollTop=N.scrollHeight),ee?.focus(),document.activeElement!==de))return},[O,N]),Y=p.useCallback(()=>H([L,M]),[H,L,M]);p.useEffect(()=>{T&&Y()},[T,Y]);const{onOpenChange:j,triggerPointerDownPosRef:U}=b;p.useEffect(()=>{if(M){let V={x:0,y:0};const te=pe=>{V={x:Math.abs(Math.round(pe.pageX)-(U.current?.x??0)),y:Math.abs(Math.round(pe.pageY)-(U.current?.y??0))}},fe=pe=>{V.x<=10&&V.y<=10?pe.preventDefault():M.contains(pe.target)||j(!1),document.removeEventListener("pointermove",te),U.current=null};return U.current!==null&&(document.addEventListener("pointermove",te),document.addEventListener("pointerup",fe,{capture:!0,once:!0})),()=>{document.removeEventListener("pointermove",te),document.removeEventListener("pointerup",fe,{capture:!0})}}},[M,j,U]),p.useEffect(()=>{const V=()=>j(!1);return window.addEventListener("blur",V),window.addEventListener("resize",V),()=>{window.removeEventListener("blur",V),window.removeEventListener("resize",V)}},[j]);const[ce,le]=EU(V=>{const te=O().filter(de=>!de.disabled),fe=te.find(de=>de.ref.current===document.activeElement),pe=zU(te,V,fe);pe&&setTimeout(()=>pe.ref.current.focus())}),B=p.useCallback((V,te,fe)=>{const pe=!R.current&&!fe;(b.value!==void 0&&b.value===te||pe)&&(A(V),pe&&(R.current=!0))},[b.value]),F=p.useCallback(()=>M?.focus(),[M]),K=p.useCallback((V,te,fe)=>{const pe=!R.current&&!fe;(b.value!==void 0&&b.value===te||pe)&&E(V)},[b.value]),G=n==="popper"?DP:vU,ie=G===DP?{side:s,sideOffset:l,align:u,alignOffset:y,arrowPadding:h,collisionBoundary:f,collisionPadding:k,sticky:m,hideWhenDetached:g,avoidCollisions:_}:{};return d.jsx(kU,{scope:o,content:M,viewport:N,onViewportChange:C,itemRefCallback:B,selectedItem:L,onItemLeave:F,itemTextRefCallback:K,focusSelectedItem:Y,selectedItemText:z,position:n,isPositioned:T,searchRef:ce,children:d.jsx(id,{as:Cde,allowPinchZoom:!0,children:d.jsx(ad,{asChild:!0,trapped:b.open,onMountAutoFocus:V=>{V.preventDefault()},onUnmountAutoFocus:X(a,V=>{b.trigger?.focus({preventScroll:!0}),V.preventDefault()}),children:d.jsx(nn,{asChild:!0,disableOutsidePointerEvents:!0,onEscapeKeyDown:r,onPointerDownOutside:i,onFocusOutside:V=>V.preventDefault(),onDismiss:()=>b.onOpenChange(!1),children:d.jsx(G,{role:"listbox",id:b.contentId,"data-state":b.open?"open":"closed",dir:b.dir,onContextMenu:V=>V.preventDefault(),...v,...ie,onPlaced:()=>W(!0),ref:$,style:{display:"flex",flexDirection:"column",outline:"none",...v.style},onKeyDown:X(v.onKeyDown,V=>{const te=V.ctrlKey||V.altKey||V.metaKey;if(V.key==="Tab"&&V.preventDefault(),!te&&V.key.length===1&&le(V.key),["ArrowUp","ArrowDown","Home","End"].includes(V.key)){let pe=O().filter(de=>!de.disabled).map(de=>de.ref.current);if(["ArrowUp","End"].includes(V.key)&&(pe=pe.slice().reverse()),["ArrowUp","ArrowDown"].includes(V.key)){const de=V.target,ee=pe.indexOf(de);pe=pe.slice(ee+1)}setTimeout(()=>H(pe)),V.preventDefault()}})})})})})})});gU.displayName=Nde;var $de="SelectItemAlignedPosition",vU=p.forwardRef((e,t)=>{const{__scopeSelect:o,onPlaced:n,...a}=e,r=yn(Fc,o),i=fn(Fc,o),[s,l]=p.useState(null),[u,y]=p.useState(null),h=be(t,$=>y($)),f=G$(o),k=p.useRef(!1),m=p.useRef(!0),{viewport:g,selectedItem:_,selectedItemText:v,focusSelectedItem:b}=i,M=p.useCallback(()=>{if(r.trigger&&r.valueNode&&s&&u&&g&&_&&v){const $=r.trigger.getBoundingClientRect(),L=u.getBoundingClientRect(),A=r.valueNode.getBoundingClientRect(),z=v.getBoundingClientRect();if(r.dir!=="rtl"){const de=z.left-L.left,ee=A.left-de,_e=$.left-ee,q=$.width+_e,ue=Math.max(q,L.width),xe=window.innerWidth-co,Ce=o1(ee,[co,Math.max(co,xe-ue)]);s.style.minWidth=q+"px",s.style.left=Ce+"px"}else{const de=L.right-z.right,ee=window.innerWidth-A.right-de,_e=window.innerWidth-$.right-ee,q=$.width+_e,ue=Math.max(q,L.width),xe=window.innerWidth-co,Ce=o1(ee,[co,Math.max(co,xe-ue)]);s.style.minWidth=q+"px",s.style.right=Ce+"px"}const E=f(),O=window.innerHeight-co*2,T=g.scrollHeight,W=window.getComputedStyle(u),R=parseInt(W.borderTopWidth,10),H=parseInt(W.paddingTop,10),Y=parseInt(W.borderBottomWidth,10),j=parseInt(W.paddingBottom,10),U=R+H+T+j+Y,ce=Math.min(_.offsetHeight*5,U),le=window.getComputedStyle(g),B=parseInt(le.paddingTop,10),F=parseInt(le.paddingBottom,10),K=$.top+$.height/2-co,G=O-K,ie=_.offsetHeight/2,V=_.offsetTop+ie,te=R+H+V,fe=U-te;if(te<=K){const de=E.length>0&&_===E[E.length-1].ref.current;s.style.bottom="0px";const ee=u.clientHeight-g.offsetTop-g.offsetHeight,_e=Math.max(G,ie+(de?F:0)+ee+Y),q=te+_e;s.style.height=q+"px"}else{const de=E.length>0&&_===E[0].ref.current;s.style.top="0px";const _e=Math.max(K,R+g.offsetTop+(de?B:0)+ie)+fe;s.style.height=_e+"px",g.scrollTop=te-K+g.offsetTop}s.style.margin=`${co}px 0`,s.style.minHeight=ce+"px",s.style.maxHeight=O+"px",n?.(),requestAnimationFrame(()=>k.current=!0)}},[f,r.trigger,r.valueNode,s,u,g,_,v,r.dir,n]);Ze(()=>M(),[M]);const[x,N]=p.useState();Ze(()=>{u&&N(window.getComputedStyle(u).zIndex)},[u]);const C=p.useCallback($=>{$&&m.current===!0&&(M(),b?.(),m.current=!1)},[M,b]);return d.jsx(Lde,{scope:o,contentWrapper:s,shouldExpandOnScrollRef:k,onScrollButtonChange:C,children:d.jsx("div",{ref:l,style:{display:"flex",flexDirection:"column",position:"fixed",zIndex:x},children:d.jsx(se.div,{...a,ref:h,style:{boxSizing:"border-box",maxHeight:"100%",...a.style}})})})});vU.displayName=$de;var Sde="SelectPopperPosition",DP=p.forwardRef((e,t)=>{const{__scopeSelect:o,align:n="start",collisionPadding:a=co,...r}=e,i=K$(o);return d.jsx(Ed,{...i,...r,ref:t,align:n,collisionPadding:a,style:{boxSizing:"border-box",...r.style,"--radix-select-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-select-content-available-width":"var(--radix-popper-available-width)","--radix-select-content-available-height":"var(--radix-popper-available-height)","--radix-select-trigger-width":"var(--radix-popper-anchor-width)","--radix-select-trigger-height":"var(--radix-popper-anchor-height)"}})});DP.displayName=Sde;var[Lde,EP]=As(Fc,{}),zP="SelectViewport",_U=p.forwardRef((e,t)=>{const{__scopeSelect:o,nonce:n,...a}=e,r=fn(zP,o),i=EP(zP,o),s=be(t,r.onViewportChange),l=p.useRef(0);return d.jsxs(d.Fragment,{children:[d.jsx("style",{dangerouslySetInnerHTML:{__html:"[data-radix-select-viewport]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;}[data-radix-select-viewport]::-webkit-scrollbar{display:none}"},nonce:n}),d.jsx(R$.Slot,{scope:o,children:d.jsx(se.div,{"data-radix-select-viewport":"",role:"presentation",...a,ref:s,style:{position:"relative",flex:1,overflow:"hidden auto",...a.style},onScroll:X(a.onScroll,u=>{const y=u.currentTarget,{contentWrapper:h,shouldExpandOnScrollRef:f}=i;if(f?.current&&h){const k=Math.abs(l.current-y.scrollTop);if(k>0){const m=window.innerHeight-co*2,g=parseFloat(h.style.minHeight),_=parseFloat(h.style.height),v=Math.max(g,_);if(v<m){const b=v+k,M=Math.min(m,b),x=b-M;h.style.height=M+"px",h.style.bottom==="0px"&&(y.scrollTop=x>0?x:0,h.style.justifyContent="flex-end")}}}l.current=y.scrollTop})})})]})});_U.displayName=zP;var bU="SelectGroup",[Ide,Ade]=As(bU),Pde=p.forwardRef((e,t)=>{const{__scopeSelect:o,...n}=e,a=We();return d.jsx(Ide,{scope:o,id:a,children:d.jsx(se.div,{role:"group","aria-labelledby":a,...n,ref:t})})});Pde.displayName=bU;var MU="SelectLabel",wU=p.forwardRef((e,t)=>{const{__scopeSelect:o,...n}=e,a=Ade(MU,o);return d.jsx(se.div,{id:a.id,...n,ref:t})});wU.displayName=MU;var Y$="SelectItem",[Tde,xU]=As(Y$),NU=p.forwardRef((e,t)=>{const{__scopeSelect:o,value:n,disabled:a=!1,textValue:r,...i}=e,s=yn(Y$,o),l=fn(Y$,o),u=s.value===n,[y,h]=p.useState(r??""),[f,k]=p.useState(!1),m=be(t,b=>l.itemRefCallback?.(b,n,a)),g=We(),_=p.useRef("touch"),v=()=>{a||(s.onValueChange(n),s.onOpenChange(!1))};if(n==="")throw new Error("A <Select.Item /> must have a value prop that is not an empty string. This is because the Select value can be set to an empty string to clear the selection and show the placeholder.");return d.jsx(Tde,{scope:o,value:n,disabled:a,textId:g,isSelected:u,onItemTextChange:p.useCallback(b=>{h(M=>M||(b?.textContent??"").trim())},[]),children:d.jsx(R$.ItemSlot,{scope:o,value:n,disabled:a,textValue:y,children:d.jsx(se.div,{role:"option","aria-labelledby":g,"data-highlighted":f?"":void 0,"aria-selected":u&&f,"data-state":u?"checked":"unchecked","aria-disabled":a||void 0,"data-disabled":a?"":void 0,tabIndex:a?void 0:-1,...i,ref:m,onFocus:X(i.onFocus,()=>k(!0)),onBlur:X(i.onBlur,()=>k(!1)),onClick:X(i.onClick,()=>{_.current!=="mouse"&&v()}),onPointerUp:X(i.onPointerUp,()=>{_.current==="mouse"&&v()}),onPointerDown:X(i.onPointerDown,b=>{_.current=b.pointerType}),onPointerMove:X(i.onPointerMove,b=>{_.current=b.pointerType,a?l.onItemLeave?.():_.current==="mouse"&&b.currentTarget.focus({preventScroll:!0})}),onPointerLeave:X(i.onPointerLeave,b=>{b.currentTarget===document.activeElement&&l.onItemLeave?.()}),onKeyDown:X(i.onKeyDown,b=>{l.searchRef?.current!==""&&b.key===" "||(gde.includes(b.key)&&v(),b.key===" "&&b.preventDefault())})})})})});NU.displayName=Y$;var n1="SelectItemText",CU=p.forwardRef((e,t)=>{const{__scopeSelect:o,className:n,style:a,...r}=e,i=yn(n1,o),s=fn(n1,o),l=xU(n1,o),u=Mde(n1,o),[y,h]=p.useState(null),f=be(t,v=>h(v),l.onItemTextChange,v=>s.itemTextRefCallback?.(v,l.value,l.disabled)),k=y?.textContent,m=p.useMemo(()=>d.jsx("option",{value:l.value,disabled:l.disabled,children:k},l.value),[l.disabled,l.value,k]),{onNativeOptionAdd:g,onNativeOptionRemove:_}=u;return Ze(()=>(g(m),()=>_(m)),[g,_,m]),d.jsxs(d.Fragment,{children:[d.jsx(se.span,{id:l.textId,...r,ref:f}),l.isSelected&&i.valueNode&&!i.valueNodeHasChildren?d1.createPortal(r.children,i.valueNode):null]})});CU.displayName=n1;var $U="SelectItemIndicator",SU=p.forwardRef((e,t)=>{const{__scopeSelect:o,...n}=e;return xU($U,o).isSelected?d.jsx(se.span,{"aria-hidden":!0,...n,ref:t}):null});SU.displayName=$U;var OP="SelectScrollUpButton",LU=p.forwardRef((e,t)=>{const o=fn(OP,e.__scopeSelect),n=EP(OP,e.__scopeSelect),[a,r]=p.useState(!1),i=be(t,n.onScrollButtonChange);return Ze(()=>{if(o.viewport&&o.isPositioned){let s=function(){const u=l.scrollTop>0;r(u)};const l=o.viewport;return s(),l.addEventListener("scroll",s),()=>l.removeEventListener("scroll",s)}},[o.viewport,o.isPositioned]),a?d.jsx(AU,{...e,ref:i,onAutoScroll:()=>{const{viewport:s,selectedItem:l}=o;s&&l&&(s.scrollTop=s.scrollTop-l.offsetHeight)}}):null});LU.displayName=OP;var qP="SelectScrollDownButton",IU=p.forwardRef((e,t)=>{const o=fn(qP,e.__scopeSelect),n=EP(qP,e.__scopeSelect),[a,r]=p.useState(!1),i=be(t,n.onScrollButtonChange);return Ze(()=>{if(o.viewport&&o.isPositioned){let s=function(){const u=l.scrollHeight-l.clientHeight,y=Math.ceil(l.scrollTop)<u;r(y)};const l=o.viewport;return s(),l.addEventListener("scroll",s),()=>l.removeEventListener("scroll",s)}},[o.viewport,o.isPositioned]),a?d.jsx(AU,{...e,ref:i,onAutoScroll:()=>{const{viewport:s,selectedItem:l}=o;s&&l&&(s.scrollTop=s.scrollTop+l.offsetHeight)}}):null});IU.displayName=qP;var AU=p.forwardRef((e,t)=>{const{__scopeSelect:o,onAutoScroll:n,...a}=e,r=fn("SelectScrollButton",o),i=p.useRef(null),s=G$(o),l=p.useCallback(()=>{i.current!==null&&(window.clearInterval(i.current),i.current=null)},[]);return p.useEffect(()=>()=>l(),[l]),Ze(()=>{s().find(y=>y.ref.current===document.activeElement)?.ref.current?.scrollIntoView({block:"nearest"})},[s]),d.jsx(se.div,{"aria-hidden":!0,...a,ref:t,style:{flexShrink:0,...a.style},onPointerDown:X(a.onPointerDown,()=>{i.current===null&&(i.current=window.setInterval(n,50))}),onPointerMove:X(a.onPointerMove,()=>{r.onItemLeave?.(),i.current===null&&(i.current=window.setInterval(n,50))}),onPointerLeave:X(a.onPointerLeave,()=>{l()})})}),Dde="SelectSeparator",PU=p.forwardRef((e,t)=>{const{__scopeSelect:o,...n}=e;return d.jsx(se.div,{"aria-hidden":!0,...n,ref:t})});PU.displayName=Dde;var jP="SelectArrow",Ede=p.forwardRef((e,t)=>{const{__scopeSelect:o,...n}=e,a=K$(o),r=yn(jP,o),i=fn(jP,o);return r.open&&i.position==="popper"?d.jsx(zd,{...a,...n,ref:t}):null});Ede.displayName=jP;var zde="SelectBubbleInput",TU=p.forwardRef(({__scopeSelect:e,value:t,...o},n)=>{const a=p.useRef(null),r=be(n,a),i=ms(t);return p.useEffect(()=>{const s=a.current;if(!s)return;const l=window.HTMLSelectElement.prototype,y=Object.getOwnPropertyDescriptor(l,"value").set;if(i!==t&&y){const h=new Event("change",{bubbles:!0});y.call(s,t),s.dispatchEvent(h)}},[i,t]),d.jsx(se.select,{...o,style:{...KF,...o.style},ref:r,defaultValue:t})});TU.displayName=zde;function DU(e){return e===""||e===void 0}function EU(e){const t=Ue(e),o=p.useRef(""),n=p.useRef(0),a=p.useCallback(i=>{const s=o.current+i;t(s),(function l(u){o.current=u,window.clearTimeout(n.current),u!==""&&(n.current=window.setTimeout(()=>l(""),1e3))})(s)},[t]),r=p.useCallback(()=>{o.current="",window.clearTimeout(n.current)},[]);return p.useEffect(()=>()=>window.clearTimeout(n.current),[]),[o,a,r]}function zU(e,t,o){const a=t.length>1&&Array.from(t).every(u=>u===t[0])?t[0]:t,r=o?e.indexOf(o):-1;let i=Ode(e,Math.max(r,0));a.length===1&&(i=i.filter(u=>u!==o));const l=i.find(u=>u.textValue.toLowerCase().startsWith(a.toLowerCase()));return l!==o?l:void 0}function Ode(e,t){return e.map((o,n)=>e[(t+n)%e.length])}var qde=dU,OU=uU,jde=pU,Hde=yU,Vde=fU,qU=mU,Fde=_U,jU=wU,HU=NU,Bde=CU,Wde=SU,VU=LU,FU=IU,BU=PU;const Bc=qde,Wc=jde,mn=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(OU,{ref:n,className:S("flex h-10 w-full items-center justify-between rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background data-[placeholder]:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",e),...o,children:[t,d.jsx(Hde,{asChild:!0,children:d.jsx(Ht,{className:"h-4 w-4 opacity-50"})})]}));mn.displayName=OU.displayName;const WU=p.forwardRef(({className:e,...t},o)=>d.jsx(VU,{ref:o,className:S("flex cursor-default items-center justify-center py-1",e),...t,children:d.jsx(Qc,{className:"h-4 w-4"})}));WU.displayName=VU.displayName;const UU=p.forwardRef(({className:e,...t},o)=>d.jsx(FU,{ref:o,className:S("flex cursor-default items-center justify-center py-1",e),...t,children:d.jsx(Ht,{className:"h-4 w-4"})}));UU.displayName=FU.displayName;const kn=p.forwardRef(({className:e,children:t,position:o="popper",...n},a)=>d.jsx(Vde,{children:d.jsxs(qU,{ref:a,className:S("relative z-50 max-h-[--radix-select-content-available-height] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-select-content-transform-origin]",o==="popper"&&"data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",e),position:o,...n,children:[d.jsx(WU,{}),d.jsx(Fde,{className:S("p-1",o==="popper"&&"h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)]"),children:t}),d.jsx(UU,{})]})}));kn.displayName=qU.displayName;const Ude=p.forwardRef(({className:e,...t},o)=>d.jsx(jU,{ref:o,className:S("py-1.5 pl-8 pr-2 text-sm font-semibold",e),...t}));Ude.displayName=jU.displayName;const Ot=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(HU,{ref:n,className:S("relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e),...o,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx(Wde,{children:d.jsx(po,{className:"h-4 w-4"})})}),d.jsx(Bde,{children:t})]}));Ot.displayName=HU.displayName;const Rde=p.forwardRef(({className:e,...t},o)=>d.jsx(BU,{ref:o,className:S("-mx-1 my-1 h-px bg-muted",e),...t}));Rde.displayName=BU.displayName;var Gde="Separator",RU="horizontal",Kde=["horizontal","vertical"],GU=p.forwardRef((e,t)=>{const{decorative:o,orientation:n=RU,...a}=e,r=Yde(n)?n:RU,s=o?{role:"none"}:{"aria-orientation":r==="vertical"?r:void 0,role:"separator"};return d.jsx(ht.div,{"data-orientation":r,...s,...a,ref:t})});GU.displayName=Gde;function Yde(e){return Kde.includes(e)}var KU=GU;const X$=p.forwardRef(({className:e,orientation:t="horizontal",decorative:o=!0,...n},a)=>d.jsx(KU,{ref:a,decorative:o,orientation:t,className:S("shrink-0 bg-border",t==="horizontal"?"h-[1px] w-full":"h-full w-[1px]",e),...n}));X$.displayName=KU.displayName;const YU=cd,Xde=jC,Zde=sd,XU=p.forwardRef(({className:e,...t},o)=>d.jsx(Cc,{className:S("fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",e),...t,ref:o}));XU.displayName=Cc.displayName;const Qde=Bo("fixed z-50 gap-4 bg-background p-6 shadow-lg transition ease-in-out data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:duration-300 data-[state=open]:duration-500",{variants:{side:{top:"inset-x-0 top-0 border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top",bottom:"inset-x-0 bottom-0 border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom",left:"inset-y-0 left-0 h-full w-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm",right:"inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm"}},defaultVariants:{side:"right"}}),HP=p.forwardRef(({side:e="right",className:t,children:o,...n},a)=>d.jsxs(Zde,{children:[d.jsx(XU,{}),d.jsxs($c,{ref:a,className:S(Qde({side:e}),t),...n,children:[o,d.jsxs(dd,{className:"absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-secondary",children:[d.jsx(on,{className:"h-4 w-4"}),d.jsx("span",{className:"sr-only",children:"Close"})]})]})]}));HP.displayName=$c.displayName;const VP=({className:e,...t})=>d.jsx("div",{className:S("flex flex-col space-y-2 text-center sm:text-left",e),...t});VP.displayName="SheetHeader";const ZU=({className:e,...t})=>d.jsx("div",{className:S("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",e),...t});ZU.displayName="SheetFooter";const FP=p.forwardRef(({className:e,...t},o)=>d.jsx(rs,{ref:o,className:S("text-lg font-semibold text-foreground",e),...t}));FP.displayName=rs.displayName;const BP=p.forwardRef(({className:e,...t},o)=>d.jsx(is,{ref:o,className:S("text-sm text-muted-foreground",e),...t}));BP.displayName=is.displayName;const WP=768;function Jde(){const[e,t]=p.useState(void 0);return p.useEffect(()=>{const o=window.matchMedia(`(max-width: ${WP-1}px)`),n=()=>{t(window.innerWidth<WP)};return o.addEventListener("change",n),t(window.innerWidth<WP),()=>o.removeEventListener("change",n)},[]),!!e}function Ps({className:e,...t}){return d.jsx("div",{className:S("animate-pulse rounded-md bg-muted",e),...t})}var[Z$]=Xe("Tooltip",[Io]),Q$=Io(),QU="TooltipProvider",e1e=700,UP="tooltip.open",[t1e,RP]=Z$(QU),JU=e=>{const{__scopeTooltip:t,delayDuration:o=e1e,skipDelayDuration:n=300,disableHoverableContent:a=!1,children:r}=e,i=p.useRef(!0),s=p.useRef(!1),l=p.useRef(0);return p.useEffect(()=>{const u=l.current;return()=>window.clearTimeout(u)},[]),d.jsx(t1e,{scope:t,isOpenDelayedRef:i,delayDuration:o,onOpen:p.useCallback(()=>{window.clearTimeout(l.current),i.current=!1},[]),onClose:p.useCallback(()=>{window.clearTimeout(l.current),l.current=window.setTimeout(()=>i.current=!0,n)},[n]),isPointerInTransitRef:s,onPointerInTransitChange:p.useCallback(u=>{s.current=u},[]),disableHoverableContent:a,children:r})};JU.displayName=QU;var a1="Tooltip",[o1e,J$]=Z$(a1),eR=e=>{const{__scopeTooltip:t,children:o,open:n,defaultOpen:a,onOpenChange:r,disableHoverableContent:i,delayDuration:s}=e,l=RP(a1,e.__scopeTooltip),u=Q$(t),[y,h]=p.useState(null),f=We(),k=p.useRef(0),m=i??l.disableHoverableContent,g=s??l.delayDuration,_=p.useRef(!1),[v,b]=Ke({prop:n,defaultProp:a??!1,onChange:$=>{$?(l.onOpen(),document.dispatchEvent(new CustomEvent(UP))):l.onClose(),r?.($)},caller:a1}),M=p.useMemo(()=>v?_.current?"delayed-open":"instant-open":"closed",[v]),x=p.useCallback(()=>{window.clearTimeout(k.current),k.current=0,_.current=!1,b(!0)},[b]),N=p.useCallback(()=>{window.clearTimeout(k.current),k.current=0,b(!1)},[b]),C=p.useCallback(()=>{window.clearTimeout(k.current),k.current=window.setTimeout(()=>{_.current=!0,b(!0),k.current=0},g)},[g,b]);return p.useEffect(()=>()=>{k.current&&(window.clearTimeout(k.current),k.current=0)},[]),d.jsx(ws,{...u,children:d.jsx(o1e,{scope:t,contentId:f,open:v,stateAttribute:M,trigger:y,onTriggerChange:h,onTriggerEnter:p.useCallback(()=>{l.isOpenDelayedRef.current?C():x()},[l.isOpenDelayedRef,C,x]),onTriggerLeave:p.useCallback(()=>{m?N():(window.clearTimeout(k.current),k.current=0)},[N,m]),onOpen:x,onClose:N,disableHoverableContent:m,children:o})})};eR.displayName=a1;var GP="TooltipTrigger",tR=p.forwardRef((e,t)=>{const{__scopeTooltip:o,...n}=e,a=J$(GP,o),r=RP(GP,o),i=Q$(o),s=p.useRef(null),l=be(t,s,a.onTriggerChange),u=p.useRef(!1),y=p.useRef(!1),h=p.useCallback(()=>u.current=!1,[]);return p.useEffect(()=>()=>document.removeEventListener("pointerup",h),[h]),d.jsx(xs,{asChild:!0,...i,children:d.jsx(se.button,{"aria-describedby":a.open?a.contentId:void 0,"data-state":a.stateAttribute,...n,ref:l,onPointerMove:X(e.onPointerMove,f=>{f.pointerType!=="touch"&&!y.current&&!r.isPointerInTransitRef.current&&(a.onTriggerEnter(),y.current=!0)}),onPointerLeave:X(e.onPointerLeave,()=>{a.onTriggerLeave(),y.current=!1}),onPointerDown:X(e.onPointerDown,()=>{a.open&&a.onClose(),u.current=!0,document.addEventListener("pointerup",h,{once:!0})}),onFocus:X(e.onFocus,()=>{u.current||a.onOpen()}),onBlur:X(e.onBlur,a.onClose),onClick:X(e.onClick,a.onClose)})})});tR.displayName=GP;var n1e="TooltipPortal",[ETe,a1e]=Z$(n1e,{forceMount:void 0}),Ts="TooltipContent",oR=p.forwardRef((e,t)=>{const o=a1e(Ts,e.__scopeTooltip),{forceMount:n=o.forceMount,side:a="top",...r}=e,i=J$(Ts,e.__scopeTooltip);return d.jsx(Qe,{present:n||i.open,children:i.disableHoverableContent?d.jsx(nR,{side:a,...r,ref:t}):d.jsx(r1e,{side:a,...r,ref:t})})}),r1e=p.forwardRef((e,t)=>{const o=J$(Ts,e.__scopeTooltip),n=RP(Ts,e.__scopeTooltip),a=p.useRef(null),r=be(t,a),[i,s]=p.useState(null),{trigger:l,onClose:u}=o,y=a.current,{onPointerInTransitChange:h}=n,f=p.useCallback(()=>{s(null),h(!1)},[h]),k=p.useCallback((m,g)=>{const _=m.currentTarget,v={x:m.clientX,y:m.clientY},b=l1e(v,_.getBoundingClientRect()),M=u1e(v,b),x=h1e(g.getBoundingClientRect()),N=y1e([...M,...x]);s(N),h(!0)},[h]);return p.useEffect(()=>()=>f(),[f]),p.useEffect(()=>{if(l&&y){const m=_=>k(_,y),g=_=>k(_,l);return l.addEventListener("pointerleave",m),y.addEventListener("pointerleave",g),()=>{l.removeEventListener("pointerleave",m),y.removeEventListener("pointerleave",g)}}},[l,y,k,f]),p.useEffect(()=>{if(i){const m=g=>{const _=g.target,v={x:g.clientX,y:g.clientY},b=l?.contains(_)||y?.contains(_),M=!p1e(v,i);b?f():M&&(f(),u())};return document.addEventListener("pointermove",m),()=>document.removeEventListener("pointermove",m)}},[l,y,i,u,f]),d.jsx(nR,{...e,ref:r})}),[i1e,c1e]=Z$(a1,{isInside:!1}),s1e=tD("TooltipContent"),nR=p.forwardRef((e,t)=>{const{__scopeTooltip:o,children:n,"aria-label":a,onEscapeKeyDown:r,onPointerDownOutside:i,...s}=e,l=J$(Ts,o),u=Q$(o),{onClose:y}=l;return p.useEffect(()=>(document.addEventListener(UP,y),()=>document.removeEventListener(UP,y)),[y]),p.useEffect(()=>{if(l.trigger){const h=f=>{f.target?.contains(l.trigger)&&y()};return window.addEventListener("scroll",h,{capture:!0}),()=>window.removeEventListener("scroll",h,{capture:!0})}},[l.trigger,y]),d.jsx(nn,{asChild:!0,disableOutsidePointerEvents:!1,onEscapeKeyDown:r,onPointerDownOutside:i,onFocusOutside:h=>h.preventDefault(),onDismiss:y,children:d.jsxs(Ed,{"data-state":l.stateAttribute,...u,...s,ref:t,style:{...s.style,"--radix-tooltip-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-tooltip-content-available-width":"var(--radix-popper-available-width)","--radix-tooltip-content-available-height":"var(--radix-popper-available-height)","--radix-tooltip-trigger-width":"var(--radix-popper-anchor-width)","--radix-tooltip-trigger-height":"var(--radix-popper-anchor-height)"},children:[d.jsx(s1e,{children:n}),d.jsx(i1e,{scope:o,isInside:!0,children:d.jsx(XF,{id:l.contentId,role:"tooltip",children:a||n})})]})})});oR.displayName=Ts;var aR="TooltipArrow",d1e=p.forwardRef((e,t)=>{const{__scopeTooltip:o,...n}=e,a=Q$(o);return c1e(aR,o).isInside?null:d.jsx(zd,{...a,...n,ref:t})});d1e.displayName=aR;function l1e(e,t){const o=Math.abs(t.top-e.y),n=Math.abs(t.bottom-e.y),a=Math.abs(t.right-e.x),r=Math.abs(t.left-e.x);switch(Math.min(o,n,a,r)){case r:return"left";case a:return"right";case o:return"top";case n:return"bottom";default:throw new Error("unreachable")}}function u1e(e,t,o=5){const n=[];switch(t){case"top":n.push({x:e.x-o,y:e.y+o},{x:e.x+o,y:e.y+o});break;case"bottom":n.push({x:e.x-o,y:e.y-o},{x:e.x+o,y:e.y-o});break;case"left":n.push({x:e.x+o,y:e.y-o},{x:e.x+o,y:e.y+o});break;case"right":n.push({x:e.x-o,y:e.y-o},{x:e.x-o,y:e.y+o});break}return n}function h1e(e){const{top:t,right:o,bottom:n,left:a}=e;return[{x:a,y:t},{x:o,y:t},{x:o,y:n},{x:a,y:n}]}function p1e(e,t){const{x:o,y:n}=e;let a=!1;for(let r=0,i=t.length-1;r<t.length;i=r++){const s=t[r],l=t[i],u=s.x,y=s.y,h=l.x,f=l.y;y>n!=f>n&&o<(h-u)*(n-y)/(f-y)+u&&(a=!a)}return a}function y1e(e){const t=e.slice();return t.sort((o,n)=>o.x<n.x?-1:o.x>n.x?1:o.y<n.y?-1:o.y>n.y?1:0),f1e(t)}function f1e(e){if(e.length<=1)return e.slice();const t=[];for(let n=0;n<e.length;n++){const a=e[n];for(;t.length>=2;){const r=t[t.length-1],i=t[t.length-2];if((r.x-i.x)*(a.y-i.y)>=(r.y-i.y)*(a.x-i.x))t.pop();else break}t.push(a)}t.pop();const o=[];for(let n=e.length-1;n>=0;n--){const a=e[n];for(;o.length>=2;){const r=o[o.length-1],i=o[o.length-2];if((r.x-i.x)*(a.y-i.y)>=(r.y-i.y)*(a.x-i.x))o.pop();else break}o.push(a)}return o.pop(),t.length===1&&o.length===1&&t[0].x===o[0].x&&t[0].y===o[0].y?t:t.concat(o)}var m1e=JU,k1e=eR,g1e=tR,rR=oR;const iR=m1e,cR=k1e,sR=g1e,KP=p.forwardRef(({className:e,sideOffset:t=4,...o},n)=>d.jsx(rR,{ref:n,sideOffset:t,className:S("z-50 overflow-hidden rounded-md border bg-popover px-3 py-1.5 text-sm text-popover-foreground shadow-md animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-tooltip-content-transform-origin]",e),...o}));KP.displayName=rR.displayName;const v1e="sidebar_state",_1e=3600*24*7,b1e="16rem",M1e="18rem",w1e="3rem",x1e="b",dR=p.createContext(null);function eS(){const e=p.useContext(dR);if(!e)throw new Error("useSidebar must be used within a SidebarProvider.");return e}const lR=p.forwardRef(({defaultOpen:e=!0,open:t,onOpenChange:o,className:n,style:a,children:r,...i},s)=>{const l=Jde(),[u,y]=p.useState(!1),[h,f]=p.useState(e),k=t??h,m=p.useCallback(b=>{const M=typeof b=="function"?b(k):b;o?o(M):f(M),document.cookie=`${v1e}=${M}; path=/; max-age=${_1e}`},[o,k]),g=p.useCallback(()=>l?y(b=>!b):m(b=>!b),[l,m,y]);p.useEffect(()=>{const b=M=>{M.key===x1e&&(M.metaKey||M.ctrlKey)&&(M.preventDefault(),g())};return window.addEventListener("keydown",b),()=>window.removeEventListener("keydown",b)},[g]);const _=k?"expanded":"collapsed",v=p.useMemo(()=>({state:_,open:k,setOpen:m,isMobile:l,openMobile:u,setOpenMobile:y,toggleSidebar:g}),[_,k,m,l,u,y,g]);return d.jsx(dR.Provider,{value:v,children:d.jsx(iR,{delayDuration:0,children:d.jsx("div",{style:{"--sidebar-width":b1e,"--sidebar-width-icon":w1e,...a},className:S("group/sidebar-wrapper flex min-h-svh w-full has-[[data-variant=inset]]:bg-sidebar",n),ref:s,...i,children:r})})})});lR.displayName="SidebarProvider";const uR=p.forwardRef(({side:e="left",variant:t="sidebar",collapsible:o="offcanvas",className:n,children:a,...r},i)=>{const{isMobile:s,state:l,openMobile:u,setOpenMobile:y}=eS();return o==="none"?d.jsx("div",{className:S("flex h-full w-[var(--sidebar-width)] flex-col bg-sidebar text-sidebar-foreground",n),ref:i,...r,children:a}):s?d.jsx(YU,{open:u,onOpenChange:y,...r,children:d.jsxs(HP,{"data-sidebar":"sidebar","data-mobile":"true",className:"w-[var(--sidebar-width)] bg-sidebar p-0 text-sidebar-foreground [&>button]:hidden",style:{"--sidebar-width":M1e},side:e,children:[d.jsxs(VP,{className:"sr-only",children:[d.jsx(FP,{children:"Sidebar"}),d.jsx(BP,{children:"Displays the mobile sidebar."})]}),d.jsx("div",{className:"flex h-full w-full flex-col",children:a})]})}):d.jsxs("div",{ref:i,className:"group peer hidden text-sidebar-foreground md:block","data-state":l,"data-collapsible":l==="collapsed"?o:"","data-variant":t,"data-side":e,children:[d.jsx("div",{className:S("relative w-[var(--sidebar-width)] bg-transparent transition-[width] duration-200 ease-linear","group-data-[collapsible=offcanvas]:w-0","group-data-[side=right]:rotate-180",t==="floating"||t==="inset"?"group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4))]":"group-data-[collapsible=icon]:w-[var(--sidebar-width-icon)]")}),d.jsx("div",{className:S("fixed inset-y-0 z-10 hidden h-svh w-[var(--sidebar-width)] transition-[left,right,width] duration-200 ease-linear md:flex",e==="left"?"left-0 group-data-[collapsible=offcanvas]:left-[calc(var(--sidebar-width)*-1)]":"right-0 group-data-[collapsible=offcanvas]:right-[calc(var(--sidebar-width)*-1)]",t==="floating"||t==="inset"?"p-2 group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4)_+2px)]":"group-data-[collapsible=icon]:w-[var(--sidebar-width-icon)] group-data-[side=left]:border-r group-data-[side=right]:border-l",n),...r,children:d.jsx("div",{"data-sidebar":"sidebar",className:"flex h-full w-full flex-col bg-sidebar group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:border-sidebar-border group-data-[variant=floating]:shadow",children:a})})]})});uR.displayName="Sidebar";const YP=p.forwardRef(({className:e,onClick:t,...o},n)=>{const{toggleSidebar:a}=eS();return d.jsxs(je,{ref:n,"data-sidebar":"trigger",variant:"ghost",size:"icon",className:S("h-7 w-7",e),onClick:r=>{t?.(r),a()},...o,children:[d.jsx(en,{}),d.jsx("span",{className:"sr-only",children:"Toggle Sidebar"})]})});YP.displayName="SidebarTrigger";const N1e=p.forwardRef(({className:e,...t},o)=>{const{toggleSidebar:n}=eS();return d.jsx("button",{ref:o,"data-sidebar":"rail","aria-label":"Toggle Sidebar",tabIndex:-1,onClick:n,title:"Toggle Sidebar",className:S("absolute inset-y-0 z-20 hidden w-4 -translate-x-1/2 transition-all ease-linear after:absolute after:inset-y-0 after:left-1/2 after:w-[2px] hover:after:bg-sidebar-border group-data-[side=left]:-right-4 group-data-[side=right]:left-0 sm:flex","[[data-side=left]_&]:cursor-w-resize [[data-side=right]_&]:cursor-e-resize","[[data-side=left][data-state=collapsed]_&]:cursor-e-resize [[data-side=right][data-state=collapsed]_&]:cursor-w-resize","group-data-[collapsible=offcanvas]:translate-x-0 group-data-[collapsible=offcanvas]:after:left-full group-data-[collapsible=offcanvas]:hover:bg-sidebar","[[data-side=left][data-collapsible=offcanvas]_&]:-right-2","[[data-side=right][data-collapsible=offcanvas]_&]:-left-2",e),...t})});N1e.displayName="SidebarRail";const hR=p.forwardRef(({className:e,...t},o)=>d.jsx("main",{ref:o,className:S("relative flex w-full flex-1 flex-col bg-background","md:peer-data-[variant=inset]:m-2 md:peer-data-[state=collapsed]:peer-data-[variant=inset]:ml-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow",e),...t}));hR.displayName="SidebarInset";const C1e=p.forwardRef(({className:e,...t},o)=>d.jsx(hn,{ref:o,"data-sidebar":"input",className:S("h-8 w-full bg-background shadow-none focus-visible:ring-2 focus-visible:ring-sidebar-ring",e),...t}));C1e.displayName="SidebarInput";const pR=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,"data-sidebar":"header",className:S("flex flex-col gap-2 p-2",e),...t}));pR.displayName="SidebarHeader";const yR=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,"data-sidebar":"footer",className:S("flex flex-col gap-2 p-2",e),...t}));yR.displayName="SidebarFooter";const $1e=p.forwardRef(({className:e,...t},o)=>d.jsx(X$,{ref:o,"data-sidebar":"separator",className:S("mx-2 w-auto bg-sidebar-border",e),...t}));$1e.displayName="SidebarSeparator";const fR=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,"data-sidebar":"content",className:S("flex min-h-0 flex-1 flex-col gap-2 overflow-auto group-data-[collapsible=icon]:overflow-hidden",e),...t}));fR.displayName="SidebarContent";const mR=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,"data-sidebar":"group",className:S("relative flex w-full min-w-0 flex-col p-2",e),...t}));mR.displayName="SidebarGroup";const kR=p.forwardRef(({className:e,asChild:t=!1,...o},n)=>{const a=t?Fo:"div";return d.jsx(a,{ref:n,"data-sidebar":"group-label",className:S("flex h-8 shrink-0 items-center rounded-md px-2 text-xs font-medium text-sidebar-foreground/70 outline-none ring-sidebar-ring transition-[margin,opacity] duration-200 ease-linear focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0","group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0",e),...o})});kR.displayName="SidebarGroupLabel";const S1e=p.forwardRef(({className:e,asChild:t=!1,...o},n)=>{const a=t?Fo:"button";return d.jsx(a,{ref:n,"data-sidebar":"group-action",className:S("absolute right-3 top-3.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0","after:absolute after:-inset-2 after:md:hidden","group-data-[collapsible=icon]:hidden",e),...o})});S1e.displayName="SidebarGroupAction";const gR=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,"data-sidebar":"group-content",className:S("w-full text-sm",e),...t}));gR.displayName="SidebarGroupContent";const vR=p.forwardRef(({className:e,...t},o)=>d.jsx("ul",{ref:o,"data-sidebar":"menu",className:S("flex w-full min-w-0 flex-col gap-1",e),...t}));vR.displayName="SidebarMenu";const _R=p.forwardRef(({className:e,...t},o)=>d.jsx("li",{ref:o,"data-sidebar":"menu-item",className:S("group/menu-item relative",e),...t}));_R.displayName="SidebarMenuItem";const L1e=Bo("peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md p-2 text-left text-sm outline-none ring-sidebar-ring transition-[width,height,padding] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 group-has-[[data-sidebar=menu-action]]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-sidebar-accent data-[active=true]:font-medium data-[active=true]:text-sidebar-accent-foreground data-[state=open]:hover:bg-sidebar-accent data-[state=open]:hover:text-sidebar-accent-foreground group-data-[collapsible=icon]:!size-8 group-data-[collapsible=icon]:!p-2 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0",{variants:{variant:{default:"hover:bg-sidebar-accent hover:text-sidebar-accent-foreground",outline:"bg-background shadow-[0_0_0_1px_hsl(var(--sidebar-border))] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))]"},size:{default:"h-8 text-sm",sm:"h-7 text-xs",lg:"h-12 text-sm group-data-[collapsible=icon]:!p-0"}},defaultVariants:{variant:"default",size:"default"}}),bR=p.forwardRef(({asChild:e=!1,isActive:t=!1,variant:o="default",size:n="default",tooltip:a,className:r,...i},s)=>{const l=e?Fo:"button",{isMobile:u,state:y}=eS(),h=d.jsx(l,{ref:s,"data-sidebar":"menu-button","data-size":n,"data-active":t,className:S(L1e({variant:o,size:n}),r),...i});return a?(typeof a=="string"&&(a={children:a}),d.jsxs(cR,{children:[d.jsx(sR,{asChild:!0,children:h}),d.jsx(KP,{side:"right",align:"center",hidden:y!=="collapsed"||u,...a})]})):h});bR.displayName="SidebarMenuButton";const I1e=p.forwardRef(({className:e,asChild:t=!1,showOnHover:o=!1,...n},a)=>{const r=t?Fo:"button";return d.jsx(r,{ref:a,"data-sidebar":"menu-action",className:S("absolute right-1 top-1.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 peer-hover/menu-button:text-sidebar-accent-foreground [&>svg]:size-4 [&>svg]:shrink-0","after:absolute after:-inset-2 after:md:hidden","peer-data-[size=sm]/menu-button:top-1","peer-data-[size=default]/menu-button:top-1.5","peer-data-[size=lg]/menu-button:top-2.5","group-data-[collapsible=icon]:hidden",o&&"group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 peer-data-[active=true]/menu-button:text-sidebar-accent-foreground md:opacity-0",e),...n})});I1e.displayName="SidebarMenuAction";const A1e=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,"data-sidebar":"menu-badge",className:S("pointer-events-none absolute right-1 flex h-5 min-w-5 select-none items-center justify-center rounded-md px-1 text-xs font-medium tabular-nums text-sidebar-foreground","peer-hover/menu-button:text-sidebar-accent-foreground peer-data-[active=true]/menu-button:text-sidebar-accent-foreground","peer-data-[size=sm]/menu-button:top-1","peer-data-[size=default]/menu-button:top-1.5","peer-data-[size=lg]/menu-button:top-2.5","group-data-[collapsible=icon]:hidden",e),...t}));A1e.displayName="SidebarMenuBadge";const P1e=p.forwardRef(({className:e,showIcon:t=!1,...o},n)=>{const[a]=p.useState(()=>`${Math.floor(Math.random()*40)+50}%`);return d.jsxs("div",{ref:n,"data-sidebar":"menu-skeleton",className:S("flex h-8 items-center gap-2 rounded-md px-2",e),...o,children:[t&&d.jsx(Ps,{className:"size-4 rounded-md","data-sidebar":"menu-skeleton-icon"}),d.jsx(Ps,{className:"h-4 max-w-[--skeleton-width] flex-1","data-sidebar":"menu-skeleton-text",style:{"--skeleton-width":a}})]})});P1e.displayName="SidebarMenuSkeleton";const T1e=p.forwardRef(({className:e,...t},o)=>d.jsx("ul",{ref:o,"data-sidebar":"menu-sub",className:S("mx-3.5 flex min-w-0 translate-x-px flex-col gap-1 border-l border-sidebar-border px-2.5 py-0.5","group-data-[collapsible=icon]:hidden",e),...t}));T1e.displayName="SidebarMenuSub";const D1e=p.forwardRef(({...e},t)=>d.jsx("li",{ref:t,...e}));D1e.displayName="SidebarMenuSubItem";const E1e=p.forwardRef(({asChild:e=!1,size:t="md",isActive:o,className:n,...a},r)=>{const i=e?Fo:"a";return d.jsx(i,{ref:r,"data-sidebar":"menu-sub-button","data-size":t,"data-active":o,className:S("flex h-7 min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-md px-2 text-sidebar-foreground outline-none ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0 [&>svg]:text-sidebar-accent-foreground","data-[active=true]:bg-sidebar-accent data-[active=true]:text-sidebar-accent-foreground",t==="sm"&&"text-xs",t==="md"&&"text-sm","group-data-[collapsible=icon]:hidden",n),...a})});E1e.displayName="SidebarMenuSubButton";var MR=["PageUp","PageDown"],wR=["ArrowUp","ArrowDown","ArrowLeft","ArrowRight"],xR={"from-left":["Home","PageDown","ArrowDown","ArrowLeft"],"from-right":["Home","PageDown","ArrowDown","ArrowRight"],"from-bottom":["Home","PageDown","ArrowDown","ArrowLeft"],"from-top":["Home","PageDown","ArrowUp","ArrowLeft"]},Ds="Slider",[XP,z1e,O1e]=Xo(Ds),[NR]=Xe(Ds,[O1e]),[q1e,tS]=NR(Ds),CR=p.forwardRef((e,t)=>{const{name:o,min:n=0,max:a=100,step:r=1,orientation:i="horizontal",disabled:s=!1,minStepsBetweenThumbs:l=0,defaultValue:u=[n],value:y,onValueChange:h=()=>{},onValueCommit:f=()=>{},inverted:k=!1,form:m,...g}=e,_=p.useRef(new Set),v=p.useRef(0),M=i==="horizontal"?j1e:H1e,[x=[],N]=Ke({prop:y,defaultProp:u,onChange:E=>{[..._.current][v.current]?.focus(),h(E)}}),C=p.useRef(x);function $(E){const O=U1e(x,E);z(E,O)}function L(E){z(E,v.current)}function A(){const E=C.current[v.current];x[v.current]!==E&&f(x)}function z(E,O,{commit:T}={commit:!1}){const W=Y1e(r),R=X1e(Math.round((E-n)/r)*r+n,W),H=o1(R,[n,a]);N((Y=[])=>{const j=B1e(Y,H,O);if(K1e(j,l*r)){v.current=j.indexOf(H);const U=String(j)!==String(Y);return U&&T&&f(j),U?j:Y}else return Y})}return d.jsx(q1e,{scope:e.__scopeSlider,name:o,disabled:s,min:n,max:a,valueIndexToChangeRef:v,thumbs:_.current,values:x,orientation:i,form:m,children:d.jsx(XP.Provider,{scope:e.__scopeSlider,children:d.jsx(XP.Slot,{scope:e.__scopeSlider,children:d.jsx(M,{"aria-disabled":s,"data-disabled":s?"":void 0,...g,ref:t,onPointerDown:X(g.onPointerDown,()=>{s||(C.current=x)}),min:n,max:a,inverted:k,onSlideStart:s?void 0:$,onSlideMove:s?void 0:L,onSlideEnd:s?void 0:A,onHomeKeyDown:()=>!s&&z(n,0,{commit:!0}),onEndKeyDown:()=>!s&&z(a,x.length-1,{commit:!0}),onStepKeyDown:({event:E,direction:O})=>{if(!s){const R=MR.includes(E.key)||E.shiftKey&&wR.includes(E.key)?10:1,H=v.current,Y=x[H],j=r*R*O;z(Y+j,H,{commit:!0})}}})})})})});CR.displayName=Ds;var[$R,SR]=NR(Ds,{startEdge:"left",endEdge:"right",size:"width",direction:1}),j1e=p.forwardRef((e,t)=>{const{min:o,max:n,dir:a,inverted:r,onSlideStart:i,onSlideMove:s,onSlideEnd:l,onStepKeyDown:u,...y}=e,[h,f]=p.useState(null),k=be(t,M=>f(M)),m=p.useRef(void 0),g=Zt(a),_=g==="ltr",v=_&&!r||!_&&r;function b(M){const x=m.current||h.getBoundingClientRect(),N=[0,x.width],$=JP(N,v?[o,n]:[n,o]);return m.current=x,$(M-x.left)}return d.jsx($R,{scope:e.__scopeSlider,startEdge:v?"left":"right",endEdge:v?"right":"left",direction:v?1:-1,size:"width",children:d.jsx(LR,{dir:g,"data-orientation":"horizontal",...y,ref:k,style:{...y.style,"--radix-slider-thumb-transform":"translateX(-50%)"},onSlideStart:M=>{const x=b(M.clientX);i?.(x)},onSlideMove:M=>{const x=b(M.clientX);s?.(x)},onSlideEnd:()=>{m.current=void 0,l?.()},onStepKeyDown:M=>{const N=xR[v?"from-left":"from-right"].includes(M.key);u?.({event:M,direction:N?-1:1})}})})}),H1e=p.forwardRef((e,t)=>{const{min:o,max:n,inverted:a,onSlideStart:r,onSlideMove:i,onSlideEnd:s,onStepKeyDown:l,...u}=e,y=p.useRef(null),h=be(t,y),f=p.useRef(void 0),k=!a;function m(g){const _=f.current||y.current.getBoundingClientRect(),v=[0,_.height],M=JP(v,k?[n,o]:[o,n]);return f.current=_,M(g-_.top)}return d.jsx($R,{scope:e.__scopeSlider,startEdge:k?"bottom":"top",endEdge:k?"top":"bottom",size:"height",direction:k?1:-1,children:d.jsx(LR,{"data-orientation":"vertical",...u,ref:h,style:{...u.style,"--radix-slider-thumb-transform":"translateY(50%)"},onSlideStart:g=>{const _=m(g.clientY);r?.(_)},onSlideMove:g=>{const _=m(g.clientY);i?.(_)},onSlideEnd:()=>{f.current=void 0,s?.()},onStepKeyDown:g=>{const v=xR[k?"from-bottom":"from-top"].includes(g.key);l?.({event:g,direction:v?-1:1})}})})}),LR=p.forwardRef((e,t)=>{const{__scopeSlider:o,onSlideStart:n,onSlideMove:a,onSlideEnd:r,onHomeKeyDown:i,onEndKeyDown:s,onStepKeyDown:l,...u}=e,y=tS(Ds,o);return d.jsx(se.span,{...u,ref:t,onKeyDown:X(e.onKeyDown,h=>{h.key==="Home"?(i(h),h.preventDefault()):h.key==="End"?(s(h),h.preventDefault()):MR.concat(wR).includes(h.key)&&(l(h),h.preventDefault())}),onPointerDown:X(e.onPointerDown,h=>{const f=h.target;f.setPointerCapture(h.pointerId),h.preventDefault(),y.thumbs.has(f)?f.focus():n(h)}),onPointerMove:X(e.onPointerMove,h=>{h.target.hasPointerCapture(h.pointerId)&&a(h)}),onPointerUp:X(e.onPointerUp,h=>{const f=h.target;f.hasPointerCapture(h.pointerId)&&(f.releasePointerCapture(h.pointerId),r(h))})})}),IR="SliderTrack",AR=p.forwardRef((e,t)=>{const{__scopeSlider:o,...n}=e,a=tS(IR,o);return d.jsx(se.span,{"data-disabled":a.disabled?"":void 0,"data-orientation":a.orientation,...n,ref:t})});AR.displayName=IR;var ZP="SliderRange",PR=p.forwardRef((e,t)=>{const{__scopeSlider:o,...n}=e,a=tS(ZP,o),r=SR(ZP,o),i=p.useRef(null),s=be(t,i),l=a.values.length,u=a.values.map(f=>ER(f,a.min,a.max)),y=l>1?Math.min(...u):0,h=100-Math.max(...u);return d.jsx(se.span,{"data-orientation":a.orientation,"data-disabled":a.disabled?"":void 0,...n,ref:s,style:{...e.style,[r.startEdge]:y+"%",[r.endEdge]:h+"%"}})});PR.displayName=ZP;var QP="SliderThumb",TR=p.forwardRef((e,t)=>{const o=z1e(e.__scopeSlider),[n,a]=p.useState(null),r=be(t,s=>a(s)),i=p.useMemo(()=>n?o().findIndex(s=>s.ref.current===n):-1,[o,n]);return d.jsx(V1e,{...e,ref:r,index:i})}),V1e=p.forwardRef((e,t)=>{const{__scopeSlider:o,index:n,name:a,...r}=e,i=tS(QP,o),s=SR(QP,o),[l,u]=p.useState(null),y=be(t,b=>u(b)),h=l?i.form||!!l.closest("form"):!0,f=Ld(l),k=i.values[n],m=k===void 0?0:ER(k,i.min,i.max),g=W1e(n,i.values.length),_=f?.[s.size],v=_?R1e(_,m,s.direction):0;return p.useEffect(()=>{if(l)return i.thumbs.add(l),()=>{i.thumbs.delete(l)}},[l,i.thumbs]),d.jsxs("span",{style:{transform:"var(--radix-slider-thumb-transform)",position:"absolute",[s.startEdge]:`calc(${m}% + ${v}px)`},children:[d.jsx(XP.ItemSlot,{scope:e.__scopeSlider,children:d.jsx(se.span,{role:"slider","aria-label":e["aria-label"]||g,"aria-valuemin":i.min,"aria-valuenow":k,"aria-valuemax":i.max,"aria-orientation":i.orientation,"data-orientation":i.orientation,"data-disabled":i.disabled?"":void 0,tabIndex:i.disabled?void 0:0,...r,ref:y,style:k===void 0?{display:"none"}:e.style,onFocus:X(e.onFocus,()=>{i.valueIndexToChangeRef.current=n})})}),h&&d.jsx(DR,{name:a??(i.name?i.name+(i.values.length>1?"[]":""):void 0),form:i.form,value:k},n)]})});TR.displayName=QP;var F1e="RadioBubbleInput",DR=p.forwardRef(({__scopeSlider:e,value:t,...o},n)=>{const a=p.useRef(null),r=be(a,n),i=ms(t);return p.useEffect(()=>{const s=a.current;if(!s)return;const l=window.HTMLInputElement.prototype,y=Object.getOwnPropertyDescriptor(l,"value").set;if(i!==t&&y){const h=new Event("input",{bubbles:!0});y.call(s,t),s.dispatchEvent(h)}},[i,t]),d.jsx(se.input,{style:{display:"none"},...o,ref:r,defaultValue:t})});DR.displayName=F1e;function B1e(e=[],t,o){const n=[...e];return n[o]=t,n.sort((a,r)=>a-r)}function ER(e,t,o){const r=100/(o-t)*(e-t);return o1(r,[0,100])}function W1e(e,t){return t>2?`Value ${e+1} of ${t}`:t===2?["Minimum","Maximum"][e]:void 0}function U1e(e,t){if(e.length===1)return 0;const o=e.map(a=>Math.abs(a-t)),n=Math.min(...o);return o.indexOf(n)}function R1e(e,t,o){const n=e/2,r=JP([0,50],[0,n]);return(n-r(t)*o)*o}function G1e(e){return e.slice(0,-1).map((t,o)=>e[o+1]-t)}function K1e(e,t){if(t>0){const o=G1e(e);return Math.min(...o)>=t}return!0}function JP(e,t){return o=>{if(e[0]===e[1]||t[0]===t[1])return t[0];const n=(t[1]-t[0])/(e[1]-e[0]);return t[0]+n*(o-e[0])}}function Y1e(e){return(String(e).split(".")[1]||"").length}function X1e(e,t){const o=Math.pow(10,t);return Math.round(e*o)/o}var zR=CR,Z1e=AR,Q1e=PR,J1e=TR;const OR=p.forwardRef(({className:e,...t},o)=>d.jsxs(zR,{ref:o,className:S("relative flex w-full touch-none select-none items-center",e),...t,children:[d.jsx(Z1e,{className:"relative h-2 w-full grow overflow-hidden rounded-full bg-secondary",children:d.jsx(Q1e,{className:"absolute h-full bg-primary"})}),d.jsx(J1e,{className:"block h-5 w-5 rounded-full border-2 border-primary bg-background ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50"})]}));OR.displayName=zR.displayName;var ele=(e,t,o,n,a,r,i,s)=>{let l=document.documentElement,u=["light","dark"];function y(k){(Array.isArray(e)?e:[e]).forEach(m=>{let g=m==="class",_=g&&r?a.map(v=>r[v]||v):a;g?(l.classList.remove(..._),l.classList.add(r&&r[k]?r[k]:k)):l.setAttribute(m,k)}),h(k)}function h(k){s&&u.includes(k)&&(l.style.colorScheme=k)}function f(){return window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"}if(n)y(n);else try{let k=localStorage.getItem(t)||o,m=i&&k==="system"?f():k;y(m)}catch{}},tle=p.createContext(void 0),ole={setTheme:e=>{},themes:[]},nle=()=>{var e;return(e=p.useContext(tle))!=null?e:ole};p.memo(({forcedTheme:e,storageKey:t,attribute:o,enableSystem:n,enableColorScheme:a,defaultTheme:r,value:i,themes:s,nonce:l,scriptProps:u})=>{let y=JSON.stringify([o,t,r,e,s,i,n,a]).slice(1,-1);return p.createElement("script",{...u,suppressHydrationWarning:!0,nonce:typeof window>"u"?l:"",dangerouslySetInnerHTML:{__html:`(${ele.toString()})(${y})`}})});function ale(e){if(typeof document>"u")return;let t=document.head||document.getElementsByTagName("head")[0],o=document.createElement("style");o.type="text/css",t.appendChild(o),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(document.createTextNode(e))}const rle=e=>{switch(e){case"success":return sle;case"info":return lle;case"warning":return dle;case"error":return ule;default:return null}},ile=Array(12).fill(0),cle=({visible:e,className:t})=>w.createElement("div",{className:["sonner-loading-wrapper",t].filter(Boolean).join(" "),"data-visible":e},w.createElement("div",{className:"sonner-spinner"},ile.map((o,n)=>w.createElement("div",{className:"sonner-loading-bar",key:`spinner-bar-${n}`})))),sle=w.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},w.createElement("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z",clipRule:"evenodd"})),dle=w.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",height:"20",width:"20"},w.createElement("path",{fillRule:"evenodd",d:"M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003zM12 8.25a.75.75 0 01.75.75v3.75a.75.75 0 01-1.5 0V9a.75.75 0 01.75-.75zm0 8.25a.75.75 0 100-1.5.75.75 0 000 1.5z",clipRule:"evenodd"})),lle=w.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},w.createElement("path",{fillRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z",clipRule:"evenodd"})),ule=w.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},w.createElement("path",{fillRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-5a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-4.5A.75.75 0 0110 5zm0 10a1 1 0 100-2 1 1 0 000 2z",clipRule:"evenodd"})),hle=w.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"},w.createElement("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),w.createElement("line",{x1:"6",y1:"6",x2:"18",y2:"18"})),ple=()=>{const[e,t]=w.useState(document.hidden);return w.useEffect(()=>{const o=()=>{t(document.hidden)};return document.addEventListener("visibilitychange",o),()=>window.removeEventListener("visibilitychange",o)},[]),e};let eT=1;class yle{constructor(){this.subscribe=t=>(this.subscribers.push(t),()=>{const o=this.subscribers.indexOf(t);this.subscribers.splice(o,1)}),this.publish=t=>{this.subscribers.forEach(o=>o(t))},this.addToast=t=>{this.publish(t),this.toasts=[...this.toasts,t]},this.create=t=>{var o;const{message:n,...a}=t,r=typeof t?.id=="number"||((o=t.id)==null?void 0:o.length)>0?t.id:eT++,i=this.toasts.find(l=>l.id===r),s=t.dismissible===void 0?!0:t.dismissible;return this.dismissedToasts.has(r)&&this.dismissedToasts.delete(r),i?this.toasts=this.toasts.map(l=>l.id===r?(this.publish({...l,...t,id:r,title:n}),{...l,...t,id:r,dismissible:s,title:n}):l):this.addToast({title:n,...a,dismissible:s,id:r}),r},this.dismiss=t=>(t?(this.dismissedToasts.add(t),requestAnimationFrame(()=>this.subscribers.forEach(o=>o({id:t,dismiss:!0})))):this.toasts.forEach(o=>{this.subscribers.forEach(n=>n({id:o.id,dismiss:!0}))}),t),this.message=(t,o)=>this.create({...o,message:t}),this.error=(t,o)=>this.create({...o,message:t,type:"error"}),this.success=(t,o)=>this.create({...o,type:"success",message:t}),this.info=(t,o)=>this.create({...o,type:"info",message:t}),this.warning=(t,o)=>this.create({...o,type:"warning",message:t}),this.loading=(t,o)=>this.create({...o,type:"loading",message:t}),this.promise=(t,o)=>{if(!o)return;let n;o.loading!==void 0&&(n=this.create({...o,promise:t,type:"loading",message:o.loading,description:typeof o.description!="function"?o.description:void 0}));const a=Promise.resolve(t instanceof Function?t():t);let r=n!==void 0,i;const s=a.then(async u=>{if(i=["resolve",u],w.isValidElement(u))r=!1,this.create({id:n,type:"default",message:u});else if(mle(u)&&!u.ok){r=!1;const h=typeof o.error=="function"?await o.error(`HTTP error! status: ${u.status}`):o.error,f=typeof o.description=="function"?await o.description(`HTTP error! status: ${u.status}`):o.description,m=typeof h=="object"&&!w.isValidElement(h)?h:{message:h};this.create({id:n,type:"error",description:f,...m})}else if(u instanceof Error){r=!1;const h=typeof o.error=="function"?await o.error(u):o.error,f=typeof o.description=="function"?await o.description(u):o.description,m=typeof h=="object"&&!w.isValidElement(h)?h:{message:h};this.create({id:n,type:"error",description:f,...m})}else if(o.success!==void 0){r=!1;const h=typeof o.success=="function"?await o.success(u):o.success,f=typeof o.description=="function"?await o.description(u):o.description,m=typeof h=="object"&&!w.isValidElement(h)?h:{message:h};this.create({id:n,type:"success",description:f,...m})}}).catch(async u=>{if(i=["reject",u],o.error!==void 0){r=!1;const y=typeof o.error=="function"?await o.error(u):o.error,h=typeof o.description=="function"?await o.description(u):o.description,k=typeof y=="object"&&!w.isValidElement(y)?y:{message:y};this.create({id:n,type:"error",description:h,...k})}}).finally(()=>{r&&(this.dismiss(n),n=void 0),o.finally==null||o.finally.call(o)}),l=()=>new Promise((u,y)=>s.then(()=>i[0]==="reject"?y(i[1]):u(i[1])).catch(y));return typeof n!="string"&&typeof n!="number"?{unwrap:l}:Object.assign(n,{unwrap:l})},this.custom=(t,o)=>{const n=o?.id||eT++;return this.create({jsx:t(n),id:n,...o}),n},this.getActiveToasts=()=>this.toasts.filter(t=>!this.dismissedToasts.has(t.id)),this.subscribers=[],this.toasts=[],this.dismissedToasts=new Set}}const $t=new yle,fle=(e,t)=>{const o=t?.id||eT++;return $t.addToast({title:e,...t,id:o}),o},mle=e=>e&&typeof e=="object"&&"ok"in e&&typeof e.ok=="boolean"&&"status"in e&&typeof e.status=="number",kle=fle,gle=()=>$t.toasts,vle=()=>$t.getActiveToasts(),To=Object.assign(kle,{success:$t.success,info:$t.info,warning:$t.warning,error:$t.error,custom:$t.custom,message:$t.message,promise:$t.promise,dismiss:$t.dismiss,loading:$t.loading},{getHistory:gle,getToasts:vle});ale("[data-sonner-toaster][dir=ltr],html[dir=ltr]{--toast-icon-margin-start:-3px;--toast-icon-margin-end:4px;--toast-svg-margin-start:-1px;--toast-svg-margin-end:0px;--toast-button-margin-start:auto;--toast-button-margin-end:0;--toast-close-button-start:0;--toast-close-button-end:unset;--toast-close-button-transform:translate(-35%, -35%)}[data-sonner-toaster][dir=rtl],html[dir=rtl]{--toast-icon-margin-start:4px;--toast-icon-margin-end:-3px;--toast-svg-margin-start:0px;--toast-svg-margin-end:-1px;--toast-button-margin-start:0;--toast-button-margin-end:auto;--toast-close-button-start:unset;--toast-close-button-end:0;--toast-close-button-transform:translate(35%, -35%)}[data-sonner-toaster]{position:fixed;width:var(--width);font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--gray1:hsl(0, 0%, 99%);--gray2:hsl(0, 0%, 97.3%);--gray3:hsl(0, 0%, 95.1%);--gray4:hsl(0, 0%, 93%);--gray5:hsl(0, 0%, 90.9%);--gray6:hsl(0, 0%, 88.7%);--gray7:hsl(0, 0%, 85.8%);--gray8:hsl(0, 0%, 78%);--gray9:hsl(0, 0%, 56.1%);--gray10:hsl(0, 0%, 52.3%);--gray11:hsl(0, 0%, 43.5%);--gray12:hsl(0, 0%, 9%);--border-radius:8px;box-sizing:border-box;padding:0;margin:0;list-style:none;outline:0;z-index:999999999;transition:transform .4s ease}@media (hover:none) and (pointer:coarse){[data-sonner-toaster][data-lifted=true]{transform:none}}[data-sonner-toaster][data-x-position=right]{right:var(--offset-right)}[data-sonner-toaster][data-x-position=left]{left:var(--offset-left)}[data-sonner-toaster][data-x-position=center]{left:50%;transform:translateX(-50%)}[data-sonner-toaster][data-y-position=top]{top:var(--offset-top)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--offset-bottom)}[data-sonner-toast]{--y:translateY(100%);--lift-amount:calc(var(--lift) * var(--gap));z-index:var(--z-index);position:absolute;opacity:0;transform:var(--y);touch-action:none;transition:transform .4s,opacity .4s,height .4s,box-shadow .2s;box-sizing:border-box;outline:0;overflow-wrap:anywhere}[data-sonner-toast][data-styled=true]{padding:16px;background:var(--normal-bg);border:1px solid var(--normal-border);color:var(--normal-text);border-radius:var(--border-radius);box-shadow:0 4px 12px rgba(0,0,0,.1);width:var(--width);font-size:13px;display:flex;align-items:center;gap:6px}[data-sonner-toast]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-y-position=top]{top:0;--y:translateY(-100%);--lift:1;--lift-amount:calc(1 * var(--gap))}[data-sonner-toast][data-y-position=bottom]{bottom:0;--y:translateY(100%);--lift:-1;--lift-amount:calc(var(--lift) * var(--gap))}[data-sonner-toast][data-styled=true] [data-description]{font-weight:400;line-height:1.4;color:#3f3f3f}[data-rich-colors=true][data-sonner-toast][data-styled=true] [data-description]{color:inherit}[data-sonner-toaster][data-sonner-theme=dark] [data-description]{color:#e8e8e8}[data-sonner-toast][data-styled=true] [data-title]{font-weight:500;line-height:1.5;color:inherit}[data-sonner-toast][data-styled=true] [data-icon]{display:flex;height:16px;width:16px;position:relative;justify-content:flex-start;align-items:center;flex-shrink:0;margin-left:var(--toast-icon-margin-start);margin-right:var(--toast-icon-margin-end)}[data-sonner-toast][data-promise=true] [data-icon]>svg{opacity:0;transform:scale(.8);transform-origin:center;animation:sonner-fade-in .3s ease forwards}[data-sonner-toast][data-styled=true] [data-icon]>*{flex-shrink:0}[data-sonner-toast][data-styled=true] [data-icon] svg{margin-left:var(--toast-svg-margin-start);margin-right:var(--toast-svg-margin-end)}[data-sonner-toast][data-styled=true] [data-content]{display:flex;flex-direction:column;gap:2px}[data-sonner-toast][data-styled=true] [data-button]{border-radius:4px;padding-left:8px;padding-right:8px;height:24px;font-size:12px;color:var(--normal-bg);background:var(--normal-text);margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end);border:none;font-weight:500;cursor:pointer;outline:0;display:flex;align-items:center;flex-shrink:0;transition:opacity .4s,box-shadow .2s}[data-sonner-toast][data-styled=true] [data-button]:focus-visible{box-shadow:0 0 0 2px rgba(0,0,0,.4)}[data-sonner-toast][data-styled=true] [data-button]:first-of-type{margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end)}[data-sonner-toast][data-styled=true] [data-cancel]{color:var(--normal-text);background:rgba(0,0,0,.08)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-styled=true] [data-cancel]{background:rgba(255,255,255,.3)}[data-sonner-toast][data-styled=true] [data-close-button]{position:absolute;left:var(--toast-close-button-start);right:var(--toast-close-button-end);top:0;height:20px;width:20px;display:flex;justify-content:center;align-items:center;padding:0;color:var(--gray12);background:var(--normal-bg);border:1px solid var(--gray4);transform:var(--toast-close-button-transform);border-radius:50%;cursor:pointer;z-index:1;transition:opacity .1s,background .2s,border-color .2s}[data-sonner-toast][data-styled=true] [data-close-button]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-styled=true] [data-disabled=true]{cursor:not-allowed}[data-sonner-toast][data-styled=true]:hover [data-close-button]:hover{background:var(--gray2);border-color:var(--gray5)}[data-sonner-toast][data-swiping=true]::before{content:'';position:absolute;left:-100%;right:-100%;height:100%;z-index:-1}[data-sonner-toast][data-y-position=top][data-swiping=true]::before{bottom:50%;transform:scaleY(3) translateY(50%)}[data-sonner-toast][data-y-position=bottom][data-swiping=true]::before{top:50%;transform:scaleY(3) translateY(-50%)}[data-sonner-toast][data-swiping=false][data-removed=true]::before{content:'';position:absolute;inset:0;transform:scaleY(2)}[data-sonner-toast][data-expanded=true]::after{content:'';position:absolute;left:0;height:calc(var(--gap) + 1px);bottom:100%;width:100%}[data-sonner-toast][data-mounted=true]{--y:translateY(0);opacity:1}[data-sonner-toast][data-expanded=false][data-front=false]{--scale:var(--toasts-before) * 0.05 + 1;--y:translateY(calc(var(--lift-amount) * var(--toasts-before))) scale(calc(-1 * var(--scale)));height:var(--front-toast-height)}[data-sonner-toast]>*{transition:opacity .4s}[data-sonner-toast][data-x-position=right]{right:0}[data-sonner-toast][data-x-position=left]{left:0}[data-sonner-toast][data-expanded=false][data-front=false][data-styled=true]>*{opacity:0}[data-sonner-toast][data-visible=false]{opacity:0;pointer-events:none}[data-sonner-toast][data-mounted=true][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset)));height:var(--initial-height)}[data-sonner-toast][data-removed=true][data-front=true][data-swipe-out=false]{--y:translateY(calc(var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset) + var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=false]{--y:translateY(40%);opacity:0;transition:transform .5s,opacity .2s}[data-sonner-toast][data-removed=true][data-front=false]::before{height:calc(var(--initial-height) + 20%)}[data-sonner-toast][data-swiping=true]{transform:var(--y) translateY(var(--swipe-amount-y,0)) translateX(var(--swipe-amount-x,0));transition:none}[data-sonner-toast][data-swiped=true]{user-select:none}[data-sonner-toast][data-swipe-out=true][data-y-position=bottom],[data-sonner-toast][data-swipe-out=true][data-y-position=top]{animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:forwards}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=left]{animation-name:swipe-out-left}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=right]{animation-name:swipe-out-right}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=up]{animation-name:swipe-out-up}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=down]{animation-name:swipe-out-down}@keyframes swipe-out-left{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) - 100%));opacity:0}}@keyframes swipe-out-right{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) + 100%));opacity:0}}@keyframes swipe-out-up{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) - 100%));opacity:0}}@keyframes swipe-out-down{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) + 100%));opacity:0}}@media (max-width:600px){[data-sonner-toaster]{position:fixed;right:var(--mobile-offset-right);left:var(--mobile-offset-left);width:100%}[data-sonner-toaster][dir=rtl]{left:calc(var(--mobile-offset-left) * -1)}[data-sonner-toaster] [data-sonner-toast]{left:0;right:0;width:calc(100% - var(--mobile-offset-left) * 2)}[data-sonner-toaster][data-x-position=left]{left:var(--mobile-offset-left)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--mobile-offset-bottom)}[data-sonner-toaster][data-y-position=top]{top:var(--mobile-offset-top)}[data-sonner-toaster][data-x-position=center]{left:var(--mobile-offset-left);right:var(--mobile-offset-right);transform:none}}[data-sonner-toaster][data-sonner-theme=light]{--normal-bg:#fff;--normal-border:var(--gray4);--normal-text:var(--gray12);--success-bg:hsl(143, 85%, 96%);--success-border:hsl(145, 92%, 87%);--success-text:hsl(140, 100%, 27%);--info-bg:hsl(208, 100%, 97%);--info-border:hsl(221, 91%, 93%);--info-text:hsl(210, 92%, 45%);--warning-bg:hsl(49, 100%, 97%);--warning-border:hsl(49, 91%, 84%);--warning-text:hsl(31, 92%, 45%);--error-bg:hsl(359, 100%, 97%);--error-border:hsl(359, 100%, 94%);--error-text:hsl(360, 100%, 45%)}[data-sonner-toaster][data-sonner-theme=light] [data-sonner-toast][data-invert=true]{--normal-bg:#000;--normal-border:hsl(0, 0%, 20%);--normal-text:var(--gray1)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-invert=true]{--normal-bg:#fff;--normal-border:var(--gray3);--normal-text:var(--gray12)}[data-sonner-toaster][data-sonner-theme=dark]{--normal-bg:#000;--normal-bg-hover:hsl(0, 0%, 12%);--normal-border:hsl(0, 0%, 20%);--normal-border-hover:hsl(0, 0%, 25%);--normal-text:var(--gray1);--success-bg:hsl(150, 100%, 6%);--success-border:hsl(147, 100%, 12%);--success-text:hsl(150, 86%, 65%);--info-bg:hsl(215, 100%, 6%);--info-border:hsl(223, 43%, 17%);--info-text:hsl(216, 87%, 65%);--warning-bg:hsl(64, 100%, 6%);--warning-border:hsl(60, 100%, 9%);--warning-text:hsl(46, 87%, 65%);--error-bg:hsl(358, 76%, 10%);--error-border:hsl(357, 89%, 16%);--error-text:hsl(358, 100%, 81%)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]{background:var(--normal-bg);border-color:var(--normal-border);color:var(--normal-text)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]:hover{background:var(--normal-bg-hover);border-color:var(--normal-border-hover)}[data-rich-colors=true][data-sonner-toast][data-type=success]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=success] [data-close-button]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=info]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=info] [data-close-button]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning] [data-close-button]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=error]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}[data-rich-colors=true][data-sonner-toast][data-type=error] [data-close-button]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}.sonner-loading-wrapper{--size:16px;height:var(--size);width:var(--size);position:absolute;inset:0;z-index:10}.sonner-loading-wrapper[data-visible=false]{transform-origin:center;animation:sonner-fade-out .2s ease forwards}.sonner-spinner{position:relative;top:50%;left:50%;height:var(--size);width:var(--size)}.sonner-loading-bar{animation:sonner-spin 1.2s linear infinite;background:var(--gray11);border-radius:6px;height:8%;left:-10%;position:absolute;top:-3.9%;width:24%}.sonner-loading-bar:first-child{animation-delay:-1.2s;transform:rotate(.0001deg) translate(146%)}.sonner-loading-bar:nth-child(2){animation-delay:-1.1s;transform:rotate(30deg) translate(146%)}.sonner-loading-bar:nth-child(3){animation-delay:-1s;transform:rotate(60deg) translate(146%)}.sonner-loading-bar:nth-child(4){animation-delay:-.9s;transform:rotate(90deg) translate(146%)}.sonner-loading-bar:nth-child(5){animation-delay:-.8s;transform:rotate(120deg) translate(146%)}.sonner-loading-bar:nth-child(6){animation-delay:-.7s;transform:rotate(150deg) translate(146%)}.sonner-loading-bar:nth-child(7){animation-delay:-.6s;transform:rotate(180deg) translate(146%)}.sonner-loading-bar:nth-child(8){animation-delay:-.5s;transform:rotate(210deg) translate(146%)}.sonner-loading-bar:nth-child(9){animation-delay:-.4s;transform:rotate(240deg) translate(146%)}.sonner-loading-bar:nth-child(10){animation-delay:-.3s;transform:rotate(270deg) translate(146%)}.sonner-loading-bar:nth-child(11){animation-delay:-.2s;transform:rotate(300deg) translate(146%)}.sonner-loading-bar:nth-child(12){animation-delay:-.1s;transform:rotate(330deg) translate(146%)}@keyframes sonner-fade-in{0%{opacity:0;transform:scale(.8)}100%{opacity:1;transform:scale(1)}}@keyframes sonner-fade-out{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(.8)}}@keyframes sonner-spin{0%{opacity:1}100%{opacity:.15}}@media (prefers-reduced-motion){.sonner-loading-bar,[data-sonner-toast],[data-sonner-toast]>*{transition:none!important;animation:none!important}}.sonner-loader{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);transform-origin:center;transition:opacity .2s,transform .2s}.sonner-loader[data-visible=false]{opacity:0;transform:scale(.8) translate(-50%,-50%)}");function oS(e){return e.label!==void 0}const _le=3,ble="24px",Mle="16px",qR=4e3,wle=356,xle=14,Nle=45,Cle=200;function Do(...e){return e.filter(Boolean).join(" ")}function $le(e){const[t,o]=e.split("-"),n=[];return t&&n.push(t),o&&n.push(o),n}const Sle=e=>{var t,o,n,a,r,i,s,l,u;const{invert:y,toast:h,unstyled:f,interacting:k,setHeights:m,visibleToasts:g,heights:_,index:v,toasts:b,expanded:M,removeToast:x,defaultRichColors:N,closeButton:C,style:$,cancelButtonStyle:L,actionButtonStyle:A,className:z="",descriptionClassName:E="",duration:O,position:T,gap:W,expandByDefault:R,classNames:H,icons:Y,closeButtonAriaLabel:j="Close toast"}=e,[U,ce]=w.useState(null),[le,B]=w.useState(null),[F,K]=w.useState(!1),[G,ie]=w.useState(!1),[V,te]=w.useState(!1),[fe,pe]=w.useState(!1),[de,ee]=w.useState(!1),[_e,q]=w.useState(0),[ue,xe]=w.useState(0),Ce=w.useRef(h.duration||O||qR),De=w.useRef(null),$e=w.useRef(null),Pe=v===0,P=v+1<=g,I=h.type,D=h.dismissible!==!1,Q=h.className||"",Z=h.descriptionClassName||"",J=w.useMemo(()=>_.findIndex(re=>re.toastId===h.id)||0,[_,h.id]),ne=w.useMemo(()=>{var re;return(re=h.closeButton)!=null?re:C},[h.closeButton,C]),Ne=w.useMemo(()=>h.duration||O||qR,[h.duration,O]),Se=w.useRef(0),Te=w.useRef(0),dt=w.useRef(0),Ve=w.useRef(null),[nt,wt]=T.split("-"),St=w.useMemo(()=>_.reduce((re,Ae,Oe)=>Oe>=J?re:re+Ae.height,0),[_,J]),zo=ple(),lo=h.invert||y,uo=I==="loading";Te.current=w.useMemo(()=>J*W+St,[J,St]),w.useEffect(()=>{Ce.current=Ne},[Ne]),w.useEffect(()=>{K(!0)},[]),w.useEffect(()=>{const re=$e.current;if(re){const Ae=re.getBoundingClientRect().height;return xe(Ae),m(Oe=>[{toastId:h.id,height:Ae,position:h.position},...Oe]),()=>m(Oe=>Oe.filter(Fe=>Fe.toastId!==h.id))}},[m,h.id]),w.useLayoutEffect(()=>{if(!F)return;const re=$e.current,Ae=re.style.height;re.style.height="auto";const Oe=re.getBoundingClientRect().height;re.style.height=Ae,xe(Oe),m(Fe=>Fe.find(qe=>qe.toastId===h.id)?Fe.map(qe=>qe.toastId===h.id?{...qe,height:Oe}:qe):[{toastId:h.id,height:Oe,position:h.position},...Fe])},[F,h.title,h.description,m,h.id,h.jsx,h.action,h.cancel]);const oe=w.useCallback(()=>{ie(!0),q(Te.current),m(re=>re.filter(Ae=>Ae.toastId!==h.id)),setTimeout(()=>{x(h)},Cle)},[h,x,m,Te]);w.useEffect(()=>{if(h.promise&&I==="loading"||h.duration===1/0||h.type==="loading")return;let re;return M||k||zo?(()=>{if(dt.current<Se.current){const Fe=new Date().getTime()-Se.current;Ce.current=Ce.current-Fe}dt.current=new Date().getTime()})():Ce.current!==1/0&&(Se.current=new Date().getTime(),re=setTimeout(()=>{h.onAutoClose==null||h.onAutoClose.call(h,h),oe()},Ce.current)),()=>clearTimeout(re)},[M,k,h,I,zo,oe]),w.useEffect(()=>{h.delete&&(oe(),h.onDismiss==null||h.onDismiss.call(h,h))},[oe,h.delete]);function ve(){var re;if(Y?.loading){var Ae;return w.createElement("div",{className:Do(H?.loader,h==null||(Ae=h.classNames)==null?void 0:Ae.loader,"sonner-loader"),"data-visible":I==="loading"},Y.loading)}return w.createElement(cle,{className:Do(H?.loader,h==null||(re=h.classNames)==null?void 0:re.loader),visible:I==="loading"})}const he=h.icon||Y?.[I]||rle(I);var me,Le;return w.createElement("li",{tabIndex:0,ref:$e,className:Do(z,Q,H?.toast,h==null||(t=h.classNames)==null?void 0:t.toast,H?.default,H?.[I],h==null||(o=h.classNames)==null?void 0:o[I]),"data-sonner-toast":"","data-rich-colors":(me=h.richColors)!=null?me:N,"data-styled":!(h.jsx||h.unstyled||f),"data-mounted":F,"data-promise":!!h.promise,"data-swiped":de,"data-removed":G,"data-visible":P,"data-y-position":nt,"data-x-position":wt,"data-index":v,"data-front":Pe,"data-swiping":V,"data-dismissible":D,"data-type":I,"data-invert":lo,"data-swipe-out":fe,"data-swipe-direction":le,"data-expanded":!!(M||R&&F),"data-testid":h.testId,style:{"--index":v,"--toasts-before":v,"--z-index":b.length-v,"--offset":`${G?_e:Te.current}px`,"--initial-height":R?"auto":`${ue}px`,...$,...h.style},onDragEnd:()=>{te(!1),ce(null),Ve.current=null},onPointerDown:re=>{re.button!==2&&(uo||!D||(De.current=new Date,q(Te.current),re.target.setPointerCapture(re.pointerId),re.target.tagName!=="BUTTON"&&(te(!0),Ve.current={x:re.clientX,y:re.clientY})))},onPointerUp:()=>{var re,Ae,Oe;if(fe||!D)return;Ve.current=null;const Fe=Number(((re=$e.current)==null?void 0:re.style.getPropertyValue("--swipe-amount-x").replace("px",""))||0),kt=Number(((Ae=$e.current)==null?void 0:Ae.style.getPropertyValue("--swipe-amount-y").replace("px",""))||0),qe=new Date().getTime()-((Oe=De.current)==null?void 0:Oe.getTime()),ot=U==="x"?Fe:kt,Ko=Math.abs(ot)/qe;if(Math.abs(ot)>=Nle||Ko>.11){q(Te.current),h.onDismiss==null||h.onDismiss.call(h,h),B(U==="x"?Fe>0?"right":"left":kt>0?"down":"up"),oe(),pe(!0);return}else{var Lt,ho;(Lt=$e.current)==null||Lt.style.setProperty("--swipe-amount-x","0px"),(ho=$e.current)==null||ho.style.setProperty("--swipe-amount-y","0px")}ee(!1),te(!1),ce(null)},onPointerMove:re=>{var Ae,Oe,Fe;if(!Ve.current||!D||((Ae=window.getSelection())==null?void 0:Ae.toString().length)>0)return;const qe=re.clientY-Ve.current.y,ot=re.clientX-Ve.current.x;var Ko;const Lt=(Ko=e.swipeDirections)!=null?Ko:$le(T);!U&&(Math.abs(ot)>1||Math.abs(qe)>1)&&ce(Math.abs(ot)>Math.abs(qe)?"x":"y");let ho={x:0,y:0};const AG=Uc=>1/(1.5+Math.abs(Uc)/20);if(U==="y"){if(Lt.includes("top")||Lt.includes("bottom"))if(Lt.includes("top")&&qe<0||Lt.includes("bottom")&&qe>0)ho.y=qe;else{const Uc=qe*AG(qe);ho.y=Math.abs(Uc)<Math.abs(qe)?Uc:qe}}else if(U==="x"&&(Lt.includes("left")||Lt.includes("right")))if(Lt.includes("left")&&ot<0||Lt.includes("right")&&ot>0)ho.x=ot;else{const Uc=ot*AG(ot);ho.x=Math.abs(Uc)<Math.abs(ot)?Uc:ot}(Math.abs(ho.x)>0||Math.abs(ho.y)>0)&&ee(!0),(Oe=$e.current)==null||Oe.style.setProperty("--swipe-amount-x",`${ho.x}px`),(Fe=$e.current)==null||Fe.style.setProperty("--swipe-amount-y",`${ho.y}px`)}},ne&&!h.jsx&&I!=="loading"?w.createElement("button",{"aria-label":j,"data-disabled":uo,"data-close-button":!0,onClick:uo||!D?()=>{}:()=>{oe(),h.onDismiss==null||h.onDismiss.call(h,h)},className:Do(H?.closeButton,h==null||(n=h.classNames)==null?void 0:n.closeButton)},(Le=Y?.close)!=null?Le:hle):null,(I||h.icon||h.promise)&&h.icon!==null&&(Y?.[I]!==null||h.icon)?w.createElement("div",{"data-icon":"",className:Do(H?.icon,h==null||(a=h.classNames)==null?void 0:a.icon)},h.promise||h.type==="loading"&&!h.icon?h.icon||ve():null,h.type!=="loading"?he:null):null,w.createElement("div",{"data-content":"",className:Do(H?.content,h==null||(r=h.classNames)==null?void 0:r.content)},w.createElement("div",{"data-title":"",className:Do(H?.title,h==null||(i=h.classNames)==null?void 0:i.title)},h.jsx?h.jsx:typeof h.title=="function"?h.title():h.title),h.description?w.createElement("div",{"data-description":"",className:Do(E,Z,H?.description,h==null||(s=h.classNames)==null?void 0:s.description)},typeof h.description=="function"?h.description():h.description):null),w.isValidElement(h.cancel)?h.cancel:h.cancel&&oS(h.cancel)?w.createElement("button",{"data-button":!0,"data-cancel":!0,style:h.cancelButtonStyle||L,onClick:re=>{oS(h.cancel)&&D&&(h.cancel.onClick==null||h.cancel.onClick.call(h.cancel,re),oe())},className:Do(H?.cancelButton,h==null||(l=h.classNames)==null?void 0:l.cancelButton)},h.cancel.label):null,w.isValidElement(h.action)?h.action:h.action&&oS(h.action)?w.createElement("button",{"data-button":!0,"data-action":!0,style:h.actionButtonStyle||A,onClick:re=>{oS(h.action)&&(h.action.onClick==null||h.action.onClick.call(h.action,re),!re.defaultPrevented&&oe())},className:Do(H?.actionButton,h==null||(u=h.classNames)==null?void 0:u.actionButton)},h.action.label):null)};function jR(){if(typeof window>"u"||typeof document>"u")return"ltr";const e=document.documentElement.getAttribute("dir");return e==="auto"||!e?window.getComputedStyle(document.documentElement).direction:e}function Lle(e,t){const o={};return[e,t].forEach((n,a)=>{const r=a===1,i=r?"--mobile-offset":"--offset",s=r?Mle:ble;function l(u){["top","right","bottom","left"].forEach(y=>{o[`${i}-${y}`]=typeof u=="number"?`${u}px`:u})}typeof n=="number"||typeof n=="string"?l(n):typeof n=="object"?["top","right","bottom","left"].forEach(u=>{n[u]===void 0?o[`${i}-${u}`]=s:o[`${i}-${u}`]=typeof n[u]=="number"?`${n[u]}px`:n[u]}):l(s)}),o}const Ile=w.forwardRef(function(t,o){const{id:n,invert:a,position:r="bottom-right",hotkey:i=["altKey","KeyT"],expand:s,closeButton:l,className:u,offset:y,mobileOffset:h,theme:f="light",richColors:k,duration:m,style:g,visibleToasts:_=_le,toastOptions:v,dir:b=jR(),gap:M=xle,icons:x,containerAriaLabel:N="Notifications"}=t,[C,$]=w.useState([]),L=w.useMemo(()=>n?C.filter(F=>F.toasterId===n):C.filter(F=>!F.toasterId),[C,n]),A=w.useMemo(()=>Array.from(new Set([r].concat(L.filter(F=>F.position).map(F=>F.position)))),[L,r]),[z,E]=w.useState([]),[O,T]=w.useState(!1),[W,R]=w.useState(!1),[H,Y]=w.useState(f!=="system"?f:typeof window<"u"&&window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"),j=w.useRef(null),U=i.join("+").replace(/Key/g,"").replace(/Digit/g,""),ce=w.useRef(null),le=w.useRef(!1),B=w.useCallback(F=>{$(K=>{var G;return(G=K.find(ie=>ie.id===F.id))!=null&&G.delete||$t.dismiss(F.id),K.filter(({id:ie})=>ie!==F.id)})},[]);return w.useEffect(()=>$t.subscribe(F=>{if(F.dismiss){requestAnimationFrame(()=>{$(K=>K.map(G=>G.id===F.id?{...G,delete:!0}:G))});return}setTimeout(()=>{s1.flushSync(()=>{$(K=>{const G=K.findIndex(ie=>ie.id===F.id);return G!==-1?[...K.slice(0,G),{...K[G],...F},...K.slice(G+1)]:[F,...K]})})})}),[C]),w.useEffect(()=>{if(f!=="system"){Y(f);return}if(f==="system"&&(window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?Y("dark"):Y("light")),typeof window>"u")return;const F=window.matchMedia("(prefers-color-scheme: dark)");try{F.addEventListener("change",({matches:K})=>{Y(K?"dark":"light")})}catch{F.addListener(({matches:G})=>{try{Y(G?"dark":"light")}catch(ie){console.error(ie)}})}},[f]),w.useEffect(()=>{C.length<=1&&T(!1)},[C]),w.useEffect(()=>{const F=K=>{var G;if(i.every(te=>K[te]||K.code===te)){var V;T(!0),(V=j.current)==null||V.focus()}K.code==="Escape"&&(document.activeElement===j.current||(G=j.current)!=null&&G.contains(document.activeElement))&&T(!1)};return document.addEventListener("keydown",F),()=>document.removeEventListener("keydown",F)},[i]),w.useEffect(()=>{if(j.current)return()=>{ce.current&&(ce.current.focus({preventScroll:!0}),ce.current=null,le.current=!1)}},[j.current]),w.createElement("section",{ref:o,"aria-label":`${N} ${U}`,tabIndex:-1,"aria-live":"polite","aria-relevant":"additions text","aria-atomic":"false",suppressHydrationWarning:!0},A.map((F,K)=>{var G;const[ie,V]=F.split("-");return L.length?w.createElement("ol",{key:F,dir:b==="auto"?jR():b,tabIndex:-1,ref:j,className:u,"data-sonner-toaster":!0,"data-sonner-theme":H,"data-y-position":ie,"data-x-position":V,style:{"--front-toast-height":`${((G=z[0])==null?void 0:G.height)||0}px`,"--width":`${wle}px`,"--gap":`${M}px`,...g,...Lle(y,h)},onBlur:te=>{le.current&&!te.currentTarget.contains(te.relatedTarget)&&(le.current=!1,ce.current&&(ce.current.focus({preventScroll:!0}),ce.current=null))},onFocus:te=>{te.target instanceof HTMLElement&&te.target.dataset.dismissible==="false"||le.current||(le.current=!0,ce.current=te.relatedTarget)},onMouseEnter:()=>T(!0),onMouseMove:()=>T(!0),onMouseLeave:()=>{W||T(!1)},onDragEnd:()=>T(!1),onPointerDown:te=>{te.target instanceof HTMLElement&&te.target.dataset.dismissible==="false"||R(!0)},onPointerUp:()=>R(!1)},L.filter(te=>!te.position&&K===0||te.position===F).map((te,fe)=>{var pe,de;return w.createElement(Sle,{key:te.id,icons:x,index:fe,toast:te,defaultRichColors:k,duration:(pe=v?.duration)!=null?pe:m,className:v?.className,descriptionClassName:v?.descriptionClassName,invert:a,visibleToasts:_,closeButton:(de=v?.closeButton)!=null?de:l,interacting:W,position:F,style:v?.style,unstyled:v?.unstyled,classNames:v?.classNames,cancelButtonStyle:v?.cancelButtonStyle,actionButtonStyle:v?.actionButtonStyle,closeButtonAriaLabel:v?.closeButtonAriaLabel,removeToast:B,toasts:L.filter(ee=>ee.position==te.position),heights:z.filter(ee=>ee.position==te.position),setHeights:E,expandByDefault:s,gap:M,expanded:O,swipeDirections:t.swipeDirections})})):null}))}),Ale=({...e})=>{const{theme:t="system"}=nle();return d.jsx(Ile,{theme:t,className:"toaster group",icons:{success:d.jsx(jo,{className:"h-4 w-4"}),info:d.jsx(Zs,{className:"h-4 w-4"}),warning:d.jsx(tn,{className:"h-4 w-4"}),error:d.jsx(Jo,{className:"h-4 w-4"}),loading:d.jsx(Vt,{className:"h-4 w-4 animate-spin"})},toastOptions:{classNames:{toast:"group toast group-[.toaster]:bg-background group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg",description:"group-[.toast]:text-muted-foreground",actionButton:"group-[.toast]:bg-primary group-[.toast]:text-primary-foreground",cancelButton:"group-[.toast]:bg-muted group-[.toast]:text-muted-foreground"}},...e})};var nS="Switch",[Ple]=Xe(nS),[Tle,Dle]=Ple(nS),HR=p.forwardRef((e,t)=>{const{__scopeSwitch:o,name:n,checked:a,defaultChecked:r,required:i,disabled:s,value:l="on",onCheckedChange:u,form:y,...h}=e,[f,k]=p.useState(null),m=be(t,M=>k(M)),g=p.useRef(!1),_=f?y||!!f.closest("form"):!0,[v,b]=Ke({prop:a,defaultProp:r??!1,onChange:u,caller:nS});return d.jsxs(Tle,{scope:o,checked:v,disabled:s,children:[d.jsx(se.button,{type:"button",role:"switch","aria-checked":v,"aria-required":i,"data-state":WR(v),"data-disabled":s?"":void 0,disabled:s,value:l,...h,ref:m,onClick:X(e.onClick,M=>{b(x=>!x),_&&(g.current=M.isPropagationStopped(),g.current||M.stopPropagation())})}),_&&d.jsx(BR,{control:f,bubbles:!g.current,name:n,value:l,checked:v,required:i,disabled:s,form:y,style:{transform:"translateX(-100%)"}})]})});HR.displayName=nS;var VR="SwitchThumb",FR=p.forwardRef((e,t)=>{const{__scopeSwitch:o,...n}=e,a=Dle(VR,o);return d.jsx(se.span,{"data-state":WR(a.checked),"data-disabled":a.disabled?"":void 0,...n,ref:t})});FR.displayName=VR;var Ele="SwitchBubbleInput",BR=p.forwardRef(({__scopeSwitch:e,control:t,checked:o,bubbles:n=!0,...a},r)=>{const i=p.useRef(null),s=be(i,r),l=ms(o),u=Ld(t);return p.useEffect(()=>{const y=i.current;if(!y)return;const h=window.HTMLInputElement.prototype,k=Object.getOwnPropertyDescriptor(h,"checked").set;if(l!==o&&k){const m=new Event("click",{bubbles:n});k.call(y,o),y.dispatchEvent(m)}},[l,o,n]),d.jsx("input",{type:"checkbox","aria-hidden":!0,defaultChecked:o,...a,tabIndex:-1,ref:s,style:{...a.style,...u,position:"absolute",pointerEvents:"none",opacity:0,margin:0}})});BR.displayName=Ele;function WR(e){return e?"checked":"unchecked"}var UR=HR,zle=FR;const tT=p.forwardRef(({className:e,...t},o)=>d.jsx(UR,{className:S("peer inline-flex h-6 w-11 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input",e),...t,ref:o,children:d.jsx(zle,{className:S("pointer-events-none block h-5 w-5 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-5 data-[state=unchecked]:translate-x-0")})}));tT.displayName=UR.displayName;const aS=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{className:"relative w-full overflow-auto",children:d.jsx("table",{ref:o,className:S("w-full caption-bottom text-sm",e),...t})}));aS.displayName="Table";const rS=p.forwardRef(({className:e,...t},o)=>d.jsx("thead",{ref:o,className:S("[&_tr]:border-b",e),...t}));rS.displayName="TableHeader";const iS=p.forwardRef(({className:e,...t},o)=>d.jsx("tbody",{ref:o,className:S("[&_tr:last-child]:border-0",e),...t}));iS.displayName="TableBody";const RR=p.forwardRef(({className:e,...t},o)=>d.jsx("tfoot",{ref:o,className:S("border-t bg-muted/50 font-medium [&>tr]:last:border-b-0",e),...t}));RR.displayName="TableFooter";const so=p.forwardRef(({className:e,...t},o)=>d.jsx("tr",{ref:o,className:S("border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",e),...t}));so.displayName="TableRow";const Es=p.forwardRef(({className:e,...t},o)=>d.jsx("th",{ref:o,className:S("h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0",e),...t}));Es.displayName="TableHead";const Eo=p.forwardRef(({className:e,...t},o)=>d.jsx("td",{ref:o,className:S("p-4 align-middle [&:has([role=checkbox])]:pr-0",e),...t}));Eo.displayName="TableCell";const oT=p.forwardRef(({className:e,...t},o)=>d.jsx("caption",{ref:o,className:S("mt-4 text-sm text-muted-foreground",e),...t}));oT.displayName="TableCaption";var cS="Tabs",[Ole]=Xe(cS,[Ao]),GR=Ao(),[qle,nT]=Ole(cS),KR=p.forwardRef((e,t)=>{const{__scopeTabs:o,value:n,onValueChange:a,defaultValue:r,orientation:i="horizontal",dir:s,activationMode:l="automatic",...u}=e,y=Zt(s),[h,f]=Ke({prop:n,onChange:a,defaultProp:r??"",caller:cS});return d.jsx(qle,{scope:o,baseId:We(),value:h,onValueChange:f,orientation:i,dir:y,activationMode:l,children:d.jsx(se.div,{dir:y,"data-orientation":i,...u,ref:t})})});KR.displayName=cS;var YR="TabsList",XR=p.forwardRef((e,t)=>{const{__scopeTabs:o,loop:n=!0,...a}=e,r=nT(YR,o),i=GR(o);return d.jsx(qd,{asChild:!0,...i,orientation:r.orientation,dir:r.dir,loop:n,children:d.jsx(se.div,{role:"tablist","aria-orientation":r.orientation,...a,ref:t})})});XR.displayName=YR;var ZR="TabsTrigger",QR=p.forwardRef((e,t)=>{const{__scopeTabs:o,value:n,disabled:a=!1,...r}=e,i=nT(ZR,o),s=GR(o),l=tG(i.baseId,n),u=oG(i.baseId,n),y=n===i.value;return d.jsx(jd,{asChild:!0,...s,focusable:!a,active:y,children:d.jsx(se.button,{type:"button",role:"tab","aria-selected":y,"aria-controls":u,"data-state":y?"active":"inactive","data-disabled":a?"":void 0,disabled:a,id:l,...r,ref:t,onMouseDown:X(e.onMouseDown,h=>{!a&&h.button===0&&h.ctrlKey===!1?i.onValueChange(n):h.preventDefault()}),onKeyDown:X(e.onKeyDown,h=>{[" ","Enter"].includes(h.key)&&i.onValueChange(n)}),onFocus:X(e.onFocus,()=>{const h=i.activationMode!=="manual";!y&&!a&&h&&i.onValueChange(n)})})})});QR.displayName=ZR;var JR="TabsContent",eG=p.forwardRef((e,t)=>{const{__scopeTabs:o,value:n,forceMount:a,children:r,...i}=e,s=nT(JR,o),l=tG(s.baseId,n),u=oG(s.baseId,n),y=n===s.value,h=p.useRef(y);return p.useEffect(()=>{const f=requestAnimationFrame(()=>h.current=!1);return()=>cancelAnimationFrame(f)},[]),d.jsx(Qe,{present:a||y,children:({present:f})=>d.jsx(se.div,{"data-state":y?"active":"inactive","data-orientation":s.orientation,role:"tabpanel","aria-labelledby":l,hidden:!f,id:u,tabIndex:0,...i,ref:t,style:{...e.style,animationDuration:h.current?"0s":void 0},children:f&&r})})});eG.displayName=JR;function tG(e,t){return`${e}-trigger-${t}`}function oG(e,t){return`${e}-content-${t}`}var jle=KR,nG=XR,aG=QR,rG=eG;const iG=jle,aT=p.forwardRef(({className:e,...t},o)=>d.jsx(nG,{ref:o,className:S("inline-flex h-10 items-center justify-center rounded-md bg-muted p-1 text-muted-foreground",e),...t}));aT.displayName=nG.displayName;const rT=p.forwardRef(({className:e,...t},o)=>d.jsx(aG,{ref:o,className:S("inline-flex items-center justify-center whitespace-nowrap rounded-sm px-3 py-1.5 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow-sm",e),...t}));rT.displayName=aG.displayName;const iT=p.forwardRef(({className:e,...t},o)=>d.jsx(rG,{ref:o,className:S("mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",e),...t}));iT.displayName=rG.displayName;const cT=p.forwardRef(({className:e,...t},o)=>d.jsx("textarea",{className:S("flex min-h-[80px] w-full rounded-md border border-input bg-background px-3 py-2 text-base ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",e),ref:o,...t}));cT.displayName="Textarea";var cG="Toggle",sT=p.forwardRef((e,t)=>{const{pressed:o,defaultPressed:n,onPressedChange:a,...r}=e,[i,s]=Ke({prop:o,onChange:a,defaultProp:n??!1,caller:cG});return d.jsx(se.button,{type:"button","aria-pressed":i,"data-state":i?"on":"off","data-disabled":e.disabled?"":void 0,...r,ref:t,onClick:X(e.onClick,()=>{e.disabled||s(!i)})})});sT.displayName=cG;var sG=sT,gn="ToggleGroup",[dG]=Xe(gn,[Ao]),lG=Ao(),dT=w.forwardRef((e,t)=>{const{type:o,...n}=e;if(o==="single"){const a=n;return d.jsx(Hle,{...a,ref:t})}if(o==="multiple"){const a=n;return d.jsx(Vle,{...a,ref:t})}throw new Error(`Missing prop \`type\` expected on \`${gn}\``)});dT.displayName=gn;var[uG,hG]=dG(gn),Hle=w.forwardRef((e,t)=>{const{value:o,defaultValue:n,onValueChange:a=()=>{},...r}=e,[i,s]=Ke({prop:o,defaultProp:n??"",onChange:a,caller:gn});return d.jsx(uG,{scope:e.__scopeToggleGroup,type:"single",value:w.useMemo(()=>i?[i]:[],[i]),onItemActivate:s,onItemDeactivate:w.useCallback(()=>s(""),[s]),children:d.jsx(pG,{...r,ref:t})})}),Vle=w.forwardRef((e,t)=>{const{value:o,defaultValue:n,onValueChange:a=()=>{},...r}=e,[i,s]=Ke({prop:o,defaultProp:n??[],onChange:a,caller:gn}),l=w.useCallback(y=>s((h=[])=>[...h,y]),[s]),u=w.useCallback(y=>s((h=[])=>h.filter(f=>f!==y)),[s]);return d.jsx(uG,{scope:e.__scopeToggleGroup,type:"multiple",value:i,onItemActivate:l,onItemDeactivate:u,children:d.jsx(pG,{...r,ref:t})})});dT.displayName=gn;var[Fle,Ble]=dG(gn),pG=w.forwardRef((e,t)=>{const{__scopeToggleGroup:o,disabled:n=!1,rovingFocus:a=!0,orientation:r,dir:i,loop:s=!0,...l}=e,u=lG(o),y=Zt(i),h={role:"group",dir:y,...l};return d.jsx(Fle,{scope:o,rovingFocus:a,disabled:n,children:a?d.jsx(qd,{asChild:!0,...u,orientation:r,dir:y,loop:s,children:d.jsx(se.div,{...h,ref:t})}):d.jsx(se.div,{...h,ref:t})})}),sS="ToggleGroupItem",yG=w.forwardRef((e,t)=>{const o=hG(sS,e.__scopeToggleGroup),n=Ble(sS,e.__scopeToggleGroup),a=lG(e.__scopeToggleGroup),r=o.value.includes(e.value),i=n.disabled||e.disabled,s={...e,pressed:r,disabled:i},l=w.useRef(null);return n.rovingFocus?d.jsx(jd,{asChild:!0,...a,focusable:!i,active:r,ref:l,children:d.jsx(fG,{...s,ref:t})}):d.jsx(fG,{...s,ref:t})});yG.displayName=sS;var fG=w.forwardRef((e,t)=>{const{__scopeToggleGroup:o,value:n,...a}=e,r=hG(sS,o),i={role:"radio","aria-checked":e.pressed,"aria-pressed":void 0},s=r.type==="single"?i:void 0;return d.jsx(sT,{...s,...a,ref:t,onPressedChange:l=>{l?r.onItemActivate(n):r.onItemDeactivate(n)}})}),mG=dT,kG=yG;const gG=Bo("inline-flex items-center justify-center rounded-md text-sm font-medium ring-offset-background transition-colors hover:bg-muted hover:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0 gap-2",{variants:{variant:{default:"bg-transparent",outline:"border border-input bg-transparent hover:bg-accent hover:text-accent-foreground"},size:{default:"h-10 px-3 min-w-10",sm:"h-9 px-2.5 min-w-9",lg:"h-11 px-5 min-w-11"}},defaultVariants:{variant:"default",size:"default"}}),vG=p.forwardRef(({className:e,variant:t,size:o,...n},a)=>d.jsx(sG,{ref:a,className:S(gG({variant:t,size:o,className:e})),...n}));vG.displayName=sG.displayName;const _G=p.createContext({size:"default",variant:"default"}),bG=p.forwardRef(({className:e,variant:t,size:o,children:n,...a},r)=>d.jsx(mG,{ref:r,className:S("flex items-center justify-center gap-1",e),...a,children:d.jsx(_G.Provider,{value:{variant:t,size:o},children:n})}));bG.displayName=mG.displayName;const MG=p.forwardRef(({className:e,children:t,variant:o,size:n,...a},r)=>{const i=p.useContext(_G);return d.jsx(kG,{ref:r,className:S(gG({variant:i.variant||o,size:i.size||n}),e),...a,children:t})});MG.displayName=kG.displayName;const Wle=p.forwardRef(({className:e,...t},o)=>d.jsx("h1",{ref:o,className:S("scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl",e),...t}));Wle.displayName="TypographyH1";const Ule=p.forwardRef(({className:e,...t},o)=>d.jsx("h2",{ref:o,className:S("scroll-m-20 border-b pb-2 text-3xl font-semibold tracking-tight first:mt-0",e),...t}));Ule.displayName="TypographyH2";const Rle=p.forwardRef(({className:e,...t},o)=>d.jsx("h3",{ref:o,className:S("scroll-m-20 text-2xl font-semibold tracking-tight",e),...t}));Rle.displayName="TypographyH3";const Gle=p.forwardRef(({className:e,...t},o)=>d.jsx("h4",{ref:o,className:S("scroll-m-20 text-xl font-semibold tracking-tight",e),...t}));Gle.displayName="TypographyH4";const Kle=p.forwardRef(({className:e,...t},o)=>d.jsx("p",{ref:o,className:S("leading-7 [&:not(:first-child)]:mt-6",e),...t}));Kle.displayName="TypographyP";const Yle=p.forwardRef(({className:e,...t},o)=>d.jsx("blockquote",{ref:o,className:S("mt-6 border-l-2 pl-6 italic",e),...t}));Yle.displayName="TypographyBlockquote";const Xle=p.forwardRef(({className:e,...t},o)=>d.jsx("ul",{ref:o,className:S("my-6 ml-6 list-disc [&>li]:mt-2",e),...t}));Xle.displayName="TypographyList";const Zle=p.forwardRef(({className:e,...t},o)=>d.jsx("code",{ref:o,className:S("relative rounded bg-muted px-[0.3rem] py-[0.2rem] font-mono text-sm font-semibold",e),...t}));Zle.displayName="TypographyInlineCode";const Qle=p.forwardRef(({className:e,...t},o)=>d.jsx("p",{ref:o,className:S("text-xl text-muted-foreground",e),...t}));Qle.displayName="TypographyLead";const Jle=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("text-lg font-semibold",e),...t}));Jle.displayName="TypographyLarge";const e2e=p.forwardRef(({className:e,...t},o)=>d.jsx("small",{ref:o,className:S("text-sm font-medium leading-none",e),...t}));e2e.displayName="TypographySmall";const t2e=p.forwardRef(({className:e,...t},o)=>d.jsx("p",{ref:o,className:S("text-sm text-muted-foreground",e),...t}));t2e.displayName="TypographyMuted";const o2e=w.forwardRef(({schema:e,className:t,...o},n)=>{const{"data-obj-id":a,"data-obj-type":r,style:i,...s}=o;return d.jsx(X$,{ref:n,orientation:e.orientation,className:t,...s,"data-obj-id":a,"data-obj-type":r,style:i})});ae.register("separator",o2e,{namespace:"ui",label:"Separator",inputs:[{name:"orientation",type:"enum",enum:["horizontal","vertical"],defaultValue:"horizontal",label:"Orientation"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{orientation:"horizontal",className:"my-2 sm:my-4"}}),ae.register("image",({schema:e,className:t,...o})=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...i}=o;return d.jsx("img",{src:e.src,alt:e.alt||"",className:t,...i,"data-obj-id":n,"data-obj-type":a,style:r})},{namespace:"ui",label:"Image",icon:"image",category:"basic",inputs:[{name:"src",type:"string",label:"Source URL"},{name:"alt",type:"string",label:"Alt Text"},{name:"className",type:"string",label:"Classes"}],defaultProps:{className:"max-w-full h-auto"}});function n2e(e){return e.split("-").map(t=>t.charAt(0).toUpperCase()+t.slice(1)).join("")}const a2e={Home:"House"},wG=w.forwardRef(({schema:e,className:t,...o},n)=>{const{"data-obj-id":a,"data-obj-type":r,style:i,...s}=o,l=n2e(e.name),u=a2e[l]||l,y=jS[u];if(!y)return console.warn(`Icon "${e.name}" (lookup: "${l}"${u!==l?` -> "${u}"`:""}) not found in lucide-react`),null;const h=e.size?{width:e.size,height:e.size}:void 0,f=S(e.color,e.className,t);return d.jsx(y,{ref:n,className:f,style:{...h,...i},...s,"data-obj-id":a,"data-obj-type":r})});wG.displayName="IconRenderer",ae.register("icon",wG,{namespace:"ui",label:"Icon",icon:"smile",category:"basic",inputs:[{name:"name",type:"string",label:"Icon Name",defaultValue:"smile"},{name:"size",type:"number",label:"Size (px)"},{name:"color",type:"string",label:"Color Class"},{name:"className",type:"string",label:"CSS Class"}]}),ae.register("html",({schema:e,className:t,...o})=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...i}=o;return d.jsx("div",{className:S("prose prose-sm max-w-none dark:prose-invert",t),dangerouslySetInnerHTML:{__html:e.html},...i,"data-obj-id":n,"data-obj-type":a,style:r})},{namespace:"ui",label:"HTML Content",inputs:[{name:"html",type:"string",label:"HTML",description:"Raw HTML content"}]}),ae.register("button-group",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsx("div",{className:S("flex flex-wrap sm:inline-flex rounded-md shadow-sm",e.className),role:"group",...r,"data-obj-id":o,"data-obj-type":n,style:a,children:e.buttons?.map((i,s)=>d.jsx(je,{variant:i.variant||e.variant,size:i.size||e.size,className:S("rounded-none",s===0&&"rounded-l-md",s===(e.buttons?.length||0)-1&&"rounded-r-md",s>0&&"-ml-px",i.className),children:i.label},s))})},{namespace:"ui",label:"Button Group",inputs:[{name:"variant",type:"enum",enum:["default","destructive","outline","secondary","ghost","link"],defaultValue:"default",label:"Variant"},{name:"size",type:"enum",enum:["default","sm","lg","icon"],defaultValue:"default",label:"Size"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{variant:"default",size:"default",buttons:[{label:"Left"},{label:"Middle"},{label:"Right"}]}}),ae.register("pagination",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,onPageChange:r,...i}=t,s=e.currentPage||e.page||1,l=e.totalPages||1,u=(h,f)=>{f.preventDefault(),h!==s&&(h<1||h>l||r&&r(h))},y=()=>l<=7?Array.from({length:l},(h,f)=>f+1):s<=3?[1,2,3,4,5,-1,l]:s>=l-2?[1,-1,l-4,l-3,l-2,l-1,l]:[1,-1,s-1,s,s+1,-1,l];return d.jsx(LB,{className:e.className,...i,"data-obj-id":o,"data-obj-type":n,style:a,children:d.jsxs(IB,{children:[d.jsx(A$,{children:d.jsx(AB,{href:"#",onClick:h=>u(s-1,h),className:s<=1?"pointer-events-none opacity-50":"cursor-pointer","aria-disabled":s<=1})}),y().map((h,f)=>d.jsx(A$,{children:h===-1?d.jsx(TB,{}):d.jsx(P$,{href:"#",isActive:h===s,onClick:k=>u(h,k),className:"cursor-pointer",children:h})},f)),d.jsx(A$,{children:d.jsx(PB,{href:"#",onClick:h=>u(s+1,h),className:s>=l?"pointer-events-none opacity-50":"cursor-pointer","aria-disabled":s>=l})})]})})},{namespace:"ui",label:"Pagination",inputs:[{name:"currentPage",type:"number",label:"Current Page",defaultValue:1},{name:"totalPages",type:"number",label:"Total Pages",defaultValue:10},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{currentPage:1,totalPages:10}}),ae.register("navigation-menu",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsx(wB,{className:e.className,...r,"data-obj-id":o,"data-obj-type":n,style:a,children:d.jsx(xB,{children:e.items?.map((i,s)=>d.jsx(Rce,{children:i.children?d.jsxs(d.Fragment,{children:[d.jsx(NB,{children:i.label}),d.jsx(CB,{children:d.jsx("ul",{className:"grid w-full gap-3 p-4 sm:w-[400px] md:w-[500px] md:grid-cols-2 lg:w-[600px]",children:i.children.map((l,u)=>d.jsx("li",{children:d.jsx($B,{asChild:!0,children:d.jsxs("a",{className:S("block select-none space-y-1 rounded-md p-3 leading-none no-underline outline-none transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground"),href:l.href,children:[d.jsx("div",{className:"text-sm font-medium leading-none",children:l.label}),l.description&&d.jsx("p",{className:"line-clamp-2 text-sm leading-snug text-muted-foreground",children:l.description})]})})},u))})})]}):d.jsx($B,{href:i.href,children:i.label})},s))})})},{namespace:"ui",label:"Navigation Menu",inputs:[{name:"className",type:"string",label:"CSS Class"}],defaultProps:{items:[{label:"Home",href:"/"},{label:"About",href:"/about"}]}}),ae.register("form",({schema:e,className:t,onAction:o,...n})=>{const{defaultValues:a={},fields:r=[],submitLabel:i="Submit",cancelLabel:s="Cancel",showCancel:l=!1,showSubmit:u=!0,layout:y="vertical",columns:h=1,onSubmit:f,onChange:k,onCancel:m,resetOnSubmit:g=!1,validationMode:_="onSubmit",disabled:v=!1}=e,b=WK({defaultValues:a,mode:_}),[M,x]=w.useState(!1),[N,C]=w.useState(null);w.useEffect(()=>{b.reset(a)},[a]),w.useEffect(()=>{if(o){const K=b.watch(G=>{o({type:"form_change",data:G,formData:G})});return()=>K.unsubscribe()}},[b,o]);const $=b.handleSubmit(async K=>{x(!0),C(null);let G=K;if(K&&(K.nativeEvent||typeof K.preventDefault=="function"||typeof K.stopPropagation=="function"||K.target||K.bubbles))G=b.getValues();else if(!G||Object.keys(G).length===0){const V=b.getValues();V&&Object.keys(V).length>0&&(G=V)}try{if(o){const V=await o({type:"form_submit",data:G,formData:G});if(V?.error){C(V.error);return}}f&&typeof f=="function"&&await f(G),g&&b.reset()}catch(V){const te=V instanceof Error?V.message:typeof V=="string"?V:"An error occurred during submission";C(te),typeof process<"u"&&process.env?.NODE_ENV==="development"&&console.error("Form submission error:",V)}finally{x(!1)}}),L=()=>{b.reset(),m&&typeof m=="function"&&m(),o&&o({type:"form_cancel",data:b.getValues()})},A=h===1?"":h===2?"sm:grid-cols-2":h===3?"sm:grid-cols-2 md:grid-cols-3":"sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4",z=h>1?S("grid gap-4",A):"space-y-4",{"data-obj-id":E,"data-obj-type":O,style:T,onSubmit:W,onChange:R,submitLabel:H,cancelLabel:Y,showSubmit:j,showCancel:U,resetOnSubmit:ce,defaultValues:le,inputType:B,...F}=n;return d.jsx($ie,{...b,children:d.jsxs("form",{onSubmit:$,className:t,...F,"data-obj-id":E,"data-obj-type":O,style:T,children:[N&&d.jsxs(QS,{variant:"destructive",className:"mb-4",children:[d.jsx(Zo,{className:"h-4 w-4"}),d.jsx(JS,{children:N})]}),e.children?d.jsx("div",{className:e.fieldContainerClass||"space-y-4",children:we(e.children)}):d.jsx("div",{className:e.fieldContainerClass||z,children:r.map(K=>{const{name:G,label:ie,description:V,type:te="input",required:fe=!1,disabled:pe=!1,validation:de={},condition:ee,..._e}=K;if(ee){const xe=ee.field,Ce=b.watch(xe),De=Ce!=null;if(ee.equals!==void 0&&Ce!==ee.equals||ee.notEquals!==void 0&&Ce===ee.notEquals||ee.in&&(!De||!ee.in.includes(Ce)))return null}const q={...de};fe&&(q.required=typeof de.required=="string"?de.required:`${ie||G} is required`);const ue=K.id??G;return d.jsx(Sie,{control:b.control,name:G,rules:q,render:({field:xe})=>d.jsxs(RV,{children:[ie&&d.jsxs(GV,{children:[ie,fe&&d.jsx("span",{className:"text-destructive ml-1","aria-label":"required",children:"*"})]}),d.jsx(KV,{children:r2e(te,{..._e,field:K.field||K,...xe,inputType:_e.inputType,options:_e.options,placeholder:_e.placeholder,disabled:v||pe||M})}),V&&d.jsx(YV,{children:V}),d.jsx(XV,{})]})},ue)})}),e.showActions!==!1&&d.jsxs("div",{className:`flex gap-2 ${y==="horizontal"?"justify-end":"justify-start"} mt-6`,children:[l&&d.jsx(je,{type:"button",variant:"outline",onClick:L,disabled:M||v,children:s}),u&&d.jsxs(je,{type:"submit",disabled:M||v,children:[M&&d.jsx(Vt,{className:"mr-2 h-4 w-4 animate-spin"}),i]})]})]})})},{namespace:"ui",label:"Form",inputs:[{name:"fields",type:"array",label:"Fields",description:"Array of field configurations with name, label, type, validation, etc."},{name:"defaultValues",type:"object",label:"Default Values",description:"Object with default values for form fields"},{name:"submitLabel",type:"string",label:"Submit Button Label",defaultValue:"Submit"},{name:"cancelLabel",type:"string",label:"Cancel Button Label",defaultValue:"Cancel"},{name:"showCancel",type:"boolean",label:"Show Cancel Button",defaultValue:!1},{name:"layout",type:"enum",enum:["vertical","horizontal"],label:"Layout",defaultValue:"vertical"},{name:"columns",type:"number",label:"Number of Columns",defaultValue:1,description:"For multi-column layouts (1-4)"},{name:"validationMode",type:"enum",enum:["onSubmit","onBlur","onChange","onTouched","all"],label:"Validation Mode",defaultValue:"onSubmit"},{name:"resetOnSubmit",type:"boolean",label:"Reset After Submit",defaultValue:!1},{name:"disabled",type:"boolean",label:"Disabled",defaultValue:!1},{name:"className",type:"string",label:"CSS Class"},{name:"fieldContainerClass",type:"string",label:"Field Container CSS Class"}],defaultProps:{submitLabel:"Submit",cancelLabel:"Cancel",showCancel:!1,layout:"vertical",columns:1,validationMode:"onSubmit",resetOnSubmit:!1,disabled:!1,fields:[{name:"name",label:"Name",type:"input",required:!0,placeholder:"Enter your name"},{name:"email",label:"Email",type:"input",inputType:"email",required:!0,placeholder:"Enter your email"}]}});function r2e(e,t){const o=ae.get(e);if(o)return d.jsx(o,{schema:t,...t});const{inputType:n,options:a=[],placeholder:r,...i}=t;switch(e){case"input":if(n==="file"){const{value:s,...l}=i;return d.jsx(hn,{type:"file",placeholder:r,...l})}return d.jsx(hn,{type:n||"text",placeholder:r,...i,value:i.value??""});case"textarea":return d.jsx(cT,{placeholder:r,...i,value:i.value??""});case"checkbox":{const{value:s,onChange:l,...u}=i;return d.jsx(Id,{checked:s,onCheckedChange:l,...u})}case"switch":{const{value:s,onChange:l,...u}=i;return d.jsx(tT,{checked:s,onCheckedChange:l,...u})}case"select":{const{value:s,onChange:l,...u}=i;return!a||a.length===0?d.jsx("div",{className:"text-sm text-muted-foreground",children:"No options available"}):d.jsxs(Bc,{value:s,onValueChange:l,...u,children:[d.jsx(mn,{children:d.jsx(Wc,{placeholder:r??"Select an option"})}),d.jsx(kn,{children:a.map(y=>d.jsx(Ot,{value:y.value,children:y.label},y.value))})]})}default:return d.jsx(hn,{type:n||"text",placeholder:r,...i})}}function i2e(e){return e.split("-").map(t=>t.charAt(0).toUpperCase()+t.slice(1)).join("")}const c2e={Home:"House"},xG=w.forwardRef(({schema:e,...t},o)=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...i}=t;let s=null;if(e.icon){const y=i2e(e.icon),h=c2e[y]||y;s=jS[h]}const l=e.loading||t.loading,u=e.disabled||t.disabled||l;return d.jsxs(je,{ref:o,type:e.buttonType||"button",variant:e.variant,size:e.size,className:e.className,disabled:u,...i,"data-obj-id":n,"data-obj-type":a,style:r,children:[l&&d.jsx(Vt,{className:"mr-2 h-4 w-4 animate-spin"}),!l&&s&&e.iconPosition!=="right"&&d.jsx(s,{className:"mr-2 h-4 w-4"}),e.label||we(e.body||e.children),!l&&s&&e.iconPosition==="right"&&d.jsx(s,{className:"ml-2 h-4 w-4"})]})});xG.displayName="ButtonRenderer",ae.register("button",xG,{namespace:"ui",label:"Button",inputs:[{name:"label",type:"string",label:"Label",defaultValue:"Button"},{name:"variant",type:"enum",label:"Variant",enum:["default","secondary","destructive","outline","ghost","link"],defaultValue:"default"},{name:"size",type:"enum",label:"Size",enum:["default","sm","lg","icon"],defaultValue:"default"},{name:"className",type:"string",label:"CSS Class",advanced:!0}],defaultProps:{label:"Button",variant:"default",size:"default"}}),ae.register("label",({schema:e,className:t,...o})=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...i}=o;return d.jsx(Wt,{className:t,...i,"data-obj-id":n,"data-obj-type":a,style:r,children:e.text||e.label||e.content})},{namespace:"ui",label:"Label",inputs:[{name:"text",type:"string",label:"Text",required:!0},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{text:"Label Text"}});const lT=({schema:e,className:t,onChange:o,value:n,...a})=>{const r=y=>{o&&o(y.target.value)},{"data-obj-id":i,"data-obj-type":s,style:l,...u}=a;return d.jsxs("div",{className:S("grid w-full items-center gap-1.5",e.wrapperClass),"data-obj-id":i,"data-obj-type":s,style:l,children:[e.label&&d.jsx(Wt,{htmlFor:e.id,className:S(e.required&&"text-destructive after:content-['*'] after:ml-0.5"),children:e.label}),d.jsx(hn,{type:e.inputType||"text",id:e.id,name:e.name,placeholder:e.placeholder,className:t,required:e.required,disabled:e.disabled,readOnly:e.readOnly,value:n??e.value??"",defaultValue:n===void 0?e.defaultValue:void 0,onChange:r,min:e.min,max:e.max,step:e.step,maxLength:e.maxLength,pattern:e.pattern,...u}),e.description&&d.jsx("p",{className:"text-sm text-muted-foreground",children:e.description}),e.error&&d.jsx("p",{className:"text-sm font-medium text-destructive",children:e.error})]})};ae.register("input",lT,{namespace:"ui",label:"Input Field",inputs:[{name:"label",type:"string",label:"Label"},{name:"name",type:"string",label:"Field Name"},{name:"placeholder",type:"string",label:"Placeholder"},{name:"inputType",type:"enum",label:"Type",enum:["text","email","password","number","tel","url","date","time","datetime-local"],defaultValue:"text"},{name:"required",type:"boolean",label:"Required"},{name:"disabled",type:"boolean",label:"Disabled"},{name:"description",type:"string",label:"Description"}],defaultProps:{inputType:"text"}}),ae.register("email",e=>d.jsx(lT,{...e,schema:{...e.schema,inputType:"email"}}),{namespace:"ui",label:"Email Input",icon:"mail",inputs:[{name:"label",type:"string",label:"Label"},{name:"name",type:"string",label:"Field Name"},{name:"placeholder",type:"string",label:"Placeholder"},{name:"required",type:"boolean",label:"Required"},{name:"disabled",type:"boolean",label:"Disabled"},{name:"description",type:"string",label:"Description"}]}),ae.register("password",e=>d.jsx(lT,{...e,schema:{...e.schema,inputType:"password"}}),{namespace:"ui",label:"Password Input",icon:"lock",inputs:[{name:"label",type:"string",label:"Label"},{name:"name",type:"string",label:"Field Name"},{name:"placeholder",type:"string",label:"Placeholder"},{name:"required",type:"boolean",label:"Required"},{name:"disabled",type:"boolean",label:"Disabled"},{name:"description",type:"string",label:"Description"}]});const s2e=({schema:e,className:t,onChange:o,value:n,...a})=>{const r=y=>{o&&o(y.target.value)},{"data-obj-id":i,"data-obj-type":s,style:l,...u}=a;return d.jsxs("div",{className:S("grid w-full gap-1.5",e.wrapperClass),"data-obj-id":i,"data-obj-type":s,style:l,children:[e.label&&d.jsx(Wt,{htmlFor:e.id,className:S(e.required&&"text-destructive after:content-['*'] after:ml-0.5"),children:e.label}),d.jsx(cT,{id:e.id,name:e.name,placeholder:e.placeholder,className:t,disabled:e.disabled,readOnly:e.readOnly,required:e.required,rows:e.rows,value:n??e.value??"",defaultValue:n===void 0?e.defaultValue:void 0,onChange:r,...u})]})};ae.register("textarea",s2e,{namespace:"ui",label:"Textarea",inputs:[{name:"label",type:"string",label:"Label"},{name:"placeholder",type:"string",label:"Placeholder"},{name:"rows",type:"number",label:"Rows"},{name:"required",type:"boolean",label:"Required"},{name:"disabled",type:"boolean",label:"Disabled"},{name:"id",type:"string",label:"ID",required:!0}],defaultProps:{label:"Textarea label",placeholder:"Enter text here...",rows:3,id:"textarea-field"}});const d2e=({schema:e,className:t,onChange:o,value:n,...a})=>{const{"data-obj-id":r,"data-obj-type":i,style:s,...l}=a,u=y=>{o&&o(y)};return d.jsxs("div",{className:S("flex items-center space-x-2",e.wrapperClass),"data-obj-id":r,"data-obj-type":i,style:s,children:[d.jsx(Id,{id:e.id,className:t,checked:n??e.checked??!1,defaultChecked:n===void 0?e.defaultChecked:void 0,onCheckedChange:u,disabled:e.disabled,required:e.required,name:e.name,...l}),d.jsx(Wt,{htmlFor:e.id,className:S("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",e.required&&"text-destructive after:content-['*'] after:ml-0.5"),children:e.label})]})};ae.register("checkbox",d2e,{namespace:"ui",label:"Checkbox",inputs:[{name:"label",type:"string",label:"Label",required:!0},{name:"id",type:"string",label:"ID",required:!0},{name:"checked",type:"boolean",label:"Checked"},{name:"required",type:"boolean",label:"Required"},{name:"disabled",type:"boolean",label:"Disabled"}],defaultProps:{label:"Checkbox label",id:"checkbox-field"}}),ae.register("switch",({schema:e,className:t,...o})=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...i}=o;return d.jsxs("div",{className:`flex items-center space-x-2 ${e.wrapperClass||""}`,"data-obj-id":n,"data-obj-type":a,style:r,children:[d.jsx(tT,{id:e.id,className:t,...i}),d.jsx(Wt,{htmlFor:e.id,children:e.label})]})},{namespace:"ui",label:"Switch",inputs:[{name:"label",type:"string",label:"Label",required:!0},{name:"id",type:"string",label:"ID",required:!0},{name:"checked",type:"boolean",label:"Checked"}],defaultProps:{label:"Switch label",id:"switch-field"}});const l2e=({schema:e,className:t,onChange:o,value:n,...a})=>{const{"data-obj-id":r,"data-obj-type":i,style:s,...l}=a,u=y=>{o&&o(y)};return d.jsxs("div",{className:S("grid w-full items-center gap-1.5",e.wrapperClass),"data-obj-id":r,"data-obj-type":i,style:s,children:[e.label&&d.jsx(Wt,{className:S(e.required&&"text-destructive after:content-['*'] after:ml-0.5"),children:e.label}),d.jsxs(Bc,{defaultValue:n===void 0?e.defaultValue:void 0,value:n??e.value,onValueChange:u,disabled:e.disabled,required:e.required,name:e.name,...l,children:[d.jsx(mn,{className:t,children:d.jsx(Wc,{placeholder:e.placeholder})}),d.jsx(kn,{children:e.options?.map(y=>d.jsx(Ot,{value:y.value,disabled:y.disabled,children:y.label},y.value))})]})]})};ae.register("select",l2e,{namespace:"ui",label:"Select",inputs:[{name:"label",type:"string",label:"Label"},{name:"placeholder",type:"string",label:"Placeholder"},{name:"defaultValue",type:"string",label:"Default Value"},{name:"required",type:"boolean",label:"Required"},{name:"disabled",type:"boolean",label:"Disabled"},{name:"options",type:"array",label:"Options",description:"Array of {label, value} objects"}],defaultProps:{label:"Select an option",placeholder:"Choose...",options:[{label:"Option 1",value:"option1"},{label:"Option 2",value:"option2"},{label:"Option 3",value:"option3"}]}}),ae.register("radio-group",({schema:e,className:t,...o})=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...i}=o;return d.jsx(pW,{defaultValue:e.defaultValue,className:t,...i,"data-obj-id":n,"data-obj-type":a,style:r,children:e.options?.map(s=>d.jsxs("div",{className:"flex items-center space-x-2",children:[d.jsx(yW,{value:s.value,id:`${e.id}-${s.value}`}),d.jsx(Wt,{htmlFor:`${e.id}-${s.value}`,children:s.label})]},s.value))})},{namespace:"ui",label:"Radio Group",inputs:[{name:"defaultValue",type:"string",label:"Default Value"},{name:"id",type:"string",label:"Group ID",required:!0},{name:"options",type:"array",label:"Options",description:"Array of {label, value} objects"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{id:"radio-group",options:[{label:"Option 1",value:"option1"},{label:"Option 2",value:"option2"},{label:"Option 3",value:"option3"}]}}),ae.register("slider",({schema:e,className:t,...o})=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...i}=o,s=Array.isArray(e.defaultValue)?e.defaultValue:e.defaultValue!==void 0?[e.defaultValue]:void 0;return d.jsx(OR,{defaultValue:s,max:e.max,min:e.min,step:e.step,className:t,...i,"data-obj-id":n,"data-obj-type":a,style:r})},{namespace:"ui",label:"Slider",inputs:[{name:"defaultValue",type:"array",label:"Default Value",defaultValue:[50]},{name:"max",type:"number",label:"Max",defaultValue:100},{name:"min",type:"number",label:"Min",defaultValue:0},{name:"step",type:"number",label:"Step",defaultValue:1},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{defaultValue:[50],max:100,min:0,step:1,className:"w-full"}}),ae.register("toggle",({schema:e,...t})=>d.jsx(vG,{variant:e.variant,size:e.size,pressed:e.pressed,"aria-label":e.ariaLabel,...t,children:e.label||we(e.children)}),{namespace:"ui",label:"Toggle",inputs:[{name:"label",type:"string",label:"Label"},{name:"pressed",type:"boolean",label:"Pressed"},{name:"variant",type:"enum",enum:["default","outline"],defaultValue:"default",label:"Variant"},{name:"size",type:"enum",enum:["default","sm","lg"],defaultValue:"default",label:"Size"},{name:"ariaLabel",type:"string",label:"Aria Label"}],defaultProps:{label:"Toggle",variant:"default",size:"default"}}),ae.register("input-otp",({schema:e,className:t,onChange:o,value:n,...a})=>{const r=e.maxLength||6,i=Array.from({length:r}),s=l=>{o&&o(l)};return d.jsx(lF,{maxLength:r,className:t,value:n??e.value,onChange:s,...a,children:d.jsx(uF,{children:i.map((l,u)=>d.jsx(hF,{index:u},u))})})},{namespace:"ui",label:"Input OTP",inputs:[{name:"maxLength",type:"number",label:"Max Length",defaultValue:6},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{maxLength:6}}),ae.register("calendar",({schema:e,className:t,...o})=>d.jsx(Jz,{mode:e.mode||"single",selected:e.value||e.defaultValue,className:t,...o}),{namespace:"ui",label:"Calendar",inputs:[{name:"mode",type:"enum",enum:["default","single","multiple","range"],defaultValue:"single",label:"Mode"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{mode:"single",className:"rounded-md border"}}),ae.register("date-picker",({schema:e,className:t,value:o,onChange:n,...a})=>{const r=y=>{n&&n(y)},{"data-obj-id":i,"data-obj-type":s,style:l,...u}=a;return d.jsxs("div",{className:`grid w-full max-w-sm items-center gap-1.5 ${e.wrapperClass||""}`,"data-obj-id":i,"data-obj-type":s,style:l,children:[e.label&&d.jsx(Wt,{htmlFor:e.id,children:e.label}),d.jsxs(gP,{children:[d.jsx(vP,{asChild:!0,children:d.jsxs(je,{id:e.id,variant:"outline",className:S("w-full justify-start text-left font-normal",!o&&"text-muted-foreground",t),...u,children:[d.jsx(Fs,{className:"mr-2 h-4 w-4"}),o?ps(o,e.format||"PPP"):d.jsx("span",{children:e.placeholder||"Pick a date"})]})}),d.jsx(D$,{className:"w-auto p-0",children:d.jsx(Jz,{mode:"single",selected:o,onSelect:r,initialFocus:!0})})]})]})},{namespace:"ui",label:"Date Picker",inputs:[{name:"label",type:"string",label:"Label"},{name:"placeholder",type:"string",label:"Placeholder"},{name:"format",type:"string",label:"Date Format",description:'date-fns format string (e.g., "PPP", "yyyy-MM-dd")'},{name:"id",type:"string",label:"ID",required:!0}],defaultProps:{label:"Date",placeholder:"Pick a date",format:"PPP",id:"date-picker-field"}}),ae.register("file-upload",({schema:e,className:t,value:o,onChange:n,...a})=>{const[r,i]=w.useState(o||[]),[s,l]=w.useState(!1),[u,y]=w.useState(0),h=w.useRef(null);w.useEffect(()=>{if(s){const M=setInterval(()=>{y(x=>x>=100?(clearInterval(M),l(!1),0):x+5)},50);return()=>clearInterval(M)}},[s]);const f=M=>{const x=Array.from(M.target.files||[]);if(x.length>0){l(!0),y(0);const N=e.multiple?[...r,...x]:x;setTimeout(()=>{i(N),n&&n(N)},1e3)}},k=M=>{const x=r.filter((N,C)=>C!==M);i(x),n&&n(x)},m=()=>{h.current?.click()},{"data-obj-id":g,"data-obj-type":_,style:v,...b}=a;return d.jsxs("div",{className:`grid w-full max-w-sm items-center gap-2 ${e.wrapperClass||""}`,"data-obj-id":g,"data-obj-type":_,style:v,children:[e.label&&d.jsx(Wt,{htmlFor:e.id,children:e.label}),d.jsxs("div",{className:S("relative flex flex-col gap-3 group/upload",t),children:[d.jsx("input",{ref:h,type:"file",id:e.id,className:"hidden",accept:e.accept,multiple:e.multiple,onChange:f,...b}),d.jsxs("div",{onClick:m,className:S("relative overflow-hidden cursor-pointer rounded-lg border-2 border-dashed transition-all duration-300 min-h-[120px] flex flex-col items-center justify-center p-4 sm:p-6 gap-3",s?"border-cyan-400 bg-cyan-950/30":"border-slate-700 bg-slate-900/50 hover:bg-slate-900 hover:border-cyan-500/50 hover:shadow-[0_0_20px_-5px_rgba(6,182,212,0.3)]"),children:[d.jsx("div",{className:"absolute inset-0 bg-[url('https://grainy-gradients.vercel.app/noise.svg')] opacity-5 pointer-events-none"}),d.jsx("div",{className:"absolute inset-0 bg-[linear-gradient(to_right,#80808012_1px,transparent_1px),linear-gradient(to_bottom,#80808012_1px,transparent_1px)] bg-[size:14px_24px] pointer-events-none"}),d.jsx("div",{className:S("relative z-10 p-3 rounded-full bg-slate-800 border border-slate-700 transition-all duration-500",s?"scale-110 shadow-[0_0_30px_cyan] border-cyan-400 animate-bounce":"group-hover/upload:scale-110 group-hover/upload:shadow-lg group-hover/upload:border-cyan-500"),children:s?d.jsx(ed,{className:"w-8 h-8 text-cyan-300 animate-pulse"}):d.jsx(nd,{className:"w-6 h-6 text-slate-400 group-hover/upload:text-cyan-400"})}),d.jsx("div",{className:"relative z-10 text-center",children:d.jsx("p",{className:S("text-xs font-mono uppercase tracking-widest transition-colors",s?"text-cyan-300":"text-slate-500 group-hover/upload:text-cyan-200"),children:s?"INITIATING LAUNCH SEQUENCE...":e.buttonText||"DROP PAYLOAD OR CLICK TO UPLOAD"})}),s&&d.jsx("div",{className:"absolute bottom-0 left-0 h-1 bg-cyan-500 shadow-[0_0_10px_cyan] transition-all duration-75 ease-out",style:{width:`${u}%`}})]}),r.length>0&&d.jsx("div",{className:"flex flex-col gap-2 mt-1 perspective-1000",children:r.map((M,x)=>d.jsxs("div",{className:"relative group/file overflow-hidden flex items-center justify-between p-3 border border-border bg-card/80 rounded-sm text-sm transition-all hover:border-primary/30 hover:shadow-lg hover:shadow-primary/10 animate-in slide-in-from-bottom-2 fade-in",children:[d.jsx("div",{className:"absolute left-0 top-0 bottom-0 w-[2px] bg-primary/50 group-hover/file:bg-primary group-hover/file:shadow-[0_0_8px_hsl(var(--primary))]"}),d.jsxs("div",{className:"flex items-center gap-3 z-10",children:[d.jsx(jo,{className:"w-4 h-4 text-emerald-500 rounded-full"}),d.jsx("span",{className:"truncate max-w-[150px] sm:max-w-[200px] md:max-w-[300px] text-muted-foreground group-hover/file:text-foreground font-mono text-xs transition-colors",children:M.name})]}),d.jsx(je,{type:"button",variant:"ghost",size:"sm",className:"h-6 w-6 p-0 hover:bg-destructive/10 hover:text-destructive",onClick:()=>k(x),children:d.jsx(on,{className:"h-3 w-3"})}),d.jsx("div",{className:"absolute inset-0 bg-gradient-to-r from-transparent via-primary/5 to-transparent -translate-x-full group-hover/file:animate-[shimmer_1s_infinite] pointer-events-none"})]},x))})]})]})},{namespace:"ui",label:"File Upload",inputs:[{name:"label",type:"string",label:"Label"},{name:"buttonText",type:"string",label:"Button Text"},{name:"accept",type:"string",label:"Accepted File Types",description:'MIME types (e.g., "image/*,application/pdf")'},{name:"multiple",type:"boolean",label:"Allow Multiple Files"},{name:"id",type:"string",label:"ID",required:!0}],defaultProps:{label:"Upload files",buttonText:"Choose files",multiple:!0,id:"file-upload-field"}});function u2e({options:e,value:t,onValueChange:o,placeholder:n="Select option...",searchPlaceholder:a="Search...",emptyText:r="No option found.",className:i,disabled:s}){const[l,u]=p.useState(!1);return d.jsxs(gP,{open:l,onOpenChange:u,children:[d.jsx(vP,{asChild:!0,children:d.jsxs(je,{variant:"outline",role:"combobox","aria-expanded":l,className:S("w-[200px] justify-between",i),disabled:s,children:[t?e.find(y=>y.value===t)?.label:n,d.jsx(Jc,{className:"ml-2 h-4 w-4 shrink-0 opacity-50"})]})}),d.jsx(D$,{className:"w-[200px] p-0",children:d.jsxs(XI,{children:[d.jsx(ZI,{placeholder:a}),d.jsxs(QI,{children:[d.jsx(JI,{children:r}),d.jsx(eA,{children:e.map(y=>d.jsxs(tA,{value:y.value,onSelect:h=>{o?.(h===t?"":h),u(!1)},children:[d.jsx(po,{className:S("mr-2 h-4 w-4",t===y.value?"opacity-100":"opacity-0")}),y.label]},y.value))})]})]})})]})}const h2e=Bo("space-y-2"),p2e=p.forwardRef(({className:e,label:t,description:o,error:n,required:a,htmlFor:r,children:i,...s},l)=>{const u=p.useId(),y=r||u,h=`${y}-description`,f=`${y}-error`;return d.jsxs("div",{ref:l,className:S(h2e(),e),...s,children:[t&&d.jsx(Wt,{htmlFor:y,className:S(n&&"text-destructive",a&&"after:content-['*'] after:ml-0.5 after:text-destructive"),children:t}),d.jsx(Fo,{id:y,"aria-describedby":[o&&h,n&&f].filter(Boolean).join(" ")||void 0,"aria-invalid":!!n,children:i}),o&&!n&&d.jsx("p",{id:h,className:"text-[0.8rem] text-muted-foreground",children:o}),n&&d.jsx("p",{id:f,className:"text-[0.8rem] font-medium text-destructive",children:n})]})});p2e.displayName="Field";const r1=[{value:"equals",label:"Equals"},{value:"notEquals",label:"Does not equal"},{value:"contains",label:"Contains"},{value:"notContains",label:"Does not contain"},{value:"isEmpty",label:"Is empty"},{value:"isNotEmpty",label:"Is not empty"},{value:"greaterThan",label:"Greater than"},{value:"lessThan",label:"Less than"},{value:"greaterOrEqual",label:"Greater than or equal"},{value:"lessOrEqual",label:"Less than or equal"},{value:"before",label:"Before"},{value:"after",label:"After"},{value:"between",label:"Between"},{value:"in",label:"In"},{value:"notIn",label:"Not in"}],y2e=["equals","notEquals","contains","notContains","isEmpty","isNotEmpty"],f2e=["equals","notEquals","greaterThan","lessThan","greaterOrEqual","lessOrEqual","isEmpty","isNotEmpty"],m2e=["equals","notEquals"],k2e=["equals","notEquals","before","after","between","isEmpty","isNotEmpty"],g2e=["equals","notEquals","in","notIn","isEmpty","isNotEmpty"];function NG({fields:e=[],value:t,onChange:o,className:n,showClearAll:a=!0}){const[r,i]=p.useState(t||{id:"root",logic:"and",conditions:[]});p.useEffect(()=>{t&&JSON.stringify(t)!==JSON.stringify(r)&&i(t)},[t]);const s=v=>{i(v),o?.(v)},l=()=>{const v={id:crypto.randomUUID(),field:e[0]?.value||"",operator:"equals",value:""};s({...r,conditions:[...r.conditions,v]})},u=v=>{s({...r,conditions:r.conditions.filter(b=>b.id!==v)})},y=()=>{s({...r,conditions:[]})},h=(v,b)=>{s({...r,conditions:r.conditions.map(M=>M.id===v?{...M,...b}:M)})},f=()=>{s({...r,logic:r.logic==="and"?"or":"and"})},k=v=>{switch(e.find(x=>x.value===v)?.type||"text"){case"number":return r1.filter(x=>f2e.includes(x.value));case"boolean":return r1.filter(x=>m2e.includes(x.value));case"date":return r1.filter(x=>k2e.includes(x.value));case"select":return r1.filter(x=>g2e.includes(x.value));default:return r1.filter(x=>y2e.includes(x.value))}},m=v=>!["isEmpty","isNotEmpty"].includes(v),g=v=>{switch(e.find(x=>x.value===v)?.type||"text"){case"number":return"number";case"date":return"date";default:return"text"}},_=v=>{const b=e.find(C=>C.value===v.field);if(b?.type==="select"&&b.options)return d.jsxs(Bc,{value:String(v.value||""),onValueChange:C=>h(v.id,{value:C}),children:[d.jsx(mn,{className:"h-9 text-sm",children:d.jsx(Wc,{placeholder:"Select value"})}),d.jsx(kn,{children:b.options.map(C=>d.jsx(Ot,{value:C.value,children:C.label},C.value))})]});if(b?.type==="boolean")return d.jsxs(Bc,{value:String(v.value||""),onValueChange:C=>h(v.id,{value:C==="true"}),children:[d.jsx(mn,{className:"h-9 text-sm",children:d.jsx(Wc,{placeholder:"Select value"})}),d.jsxs(kn,{children:[d.jsx(Ot,{value:"true",children:"True"}),d.jsx(Ot,{value:"false",children:"False"})]})]});const M=g(v.field),x=()=>v.value?M==="date"&&typeof v.value=="string"?v.value.split("T")[0]:String(v.value):"",N=C=>{let $=C;b?.type==="number"&&C!==""?$=parseFloat(C)||0:b?.type==="date"&&($=C),h(v.id,{value:$})};return d.jsx(hn,{type:M,className:"h-9 text-sm",placeholder:"Value",value:x(),onChange:C=>N(C.target.value)})};return d.jsxs("div",{className:S("space-y-3",n),children:[d.jsxs("div",{className:"flex items-center justify-between",children:[d.jsxs("div",{className:"flex items-center gap-2",children:[d.jsx("span",{className:"text-sm font-medium",children:"Where"}),r.conditions.length>1&&d.jsx(je,{variant:"outline",size:"sm",onClick:f,className:"h-7 text-xs",children:r.logic.toUpperCase()})]}),a&&r.conditions.length>0&&d.jsxs(je,{variant:"ghost",size:"sm",onClick:y,className:"h-7 text-xs text-muted-foreground hover:text-destructive",children:[d.jsx(lc,{className:"h-3 w-3 mr-1"}),"Clear all"]})]}),d.jsx("div",{className:"space-y-2",children:r.conditions.map(v=>d.jsxs("div",{className:"flex items-start gap-2",children:[d.jsxs("div",{className:"flex-1 grid grid-cols-12 gap-2",children:[d.jsx("div",{className:"col-span-4",children:d.jsxs(Bc,{value:v.field,onValueChange:b=>h(v.id,{field:b}),children:[d.jsx(mn,{className:"h-9 text-sm",children:d.jsx(Wc,{placeholder:"Select field"})}),d.jsx(kn,{children:e.map(b=>d.jsx(Ot,{value:b.value,children:b.label},b.value))})]})}),d.jsx("div",{className:"col-span-4",children:d.jsxs(Bc,{value:v.operator,onValueChange:b=>h(v.id,{operator:b}),children:[d.jsx(mn,{className:"h-9 text-sm",children:d.jsx(Wc,{placeholder:"Operator"})}),d.jsx(kn,{children:k(v.field).map(b=>d.jsx(Ot,{value:b.value,children:b.label},b.value))})]})}),m(v.operator)&&d.jsx("div",{className:"col-span-4",children:_(v)})]}),d.jsxs(je,{variant:"ghost",size:"icon-sm",className:"h-9 w-9 shrink-0",onClick:()=>u(v.id),children:[d.jsx(on,{className:"h-4 w-4"}),d.jsx("span",{className:"sr-only",children:"Remove condition"})]})]},v.id))}),d.jsxs(je,{variant:"outline",size:"sm",onClick:l,className:"h-8",disabled:e.length===0,children:[d.jsx(Js,{className:"h-3 w-3"}),"Add filter"]})]})}NG.displayName="FilterBuilder";const v2e=p.forwardRef(({className:e,startContent:t,endContent:o,children:n,...a},r)=>d.jsxs("div",{ref:r,className:S("flex w-full items-center rounded-md border border-input bg-transparent ring-offset-background focus-within:ring-2 focus-within:ring-ring focus-within:ring-offset-2","has-[[data-invalid]]:border-destructive",e),...a,children:[t&&d.jsx("div",{className:"flex items-center px-3 text-muted-foreground bg-muted/50 border-r h-full self-stretch rounded-l-md",children:t}),d.jsx("div",{className:"flex-1 relative [&_input]:border-0 [&_input]:shadow-none [&_input]:focus-visible:ring-0 [&_input]:bg-transparent",children:n}),o&&d.jsx("div",{className:"flex items-center px-3 text-muted-foreground bg-muted/50 border-l h-full self-stretch rounded-r-md",children:o})]}));v2e.displayName="InputGroup";const _2e=p.forwardRef(({className:e,children:t,...o},n)=>d.jsx("select",{className:S("flex h-10 w-full items-center justify-between rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",e),ref:n,...o,children:t}));_2e.displayName="NativeSelect";function b2e({className:e,...t}){return d.jsx("div",{role:"status","aria-label":"Loading",className:S("flex items-center justify-center",e),...t,children:d.jsx(Vt,{className:"animate-spin text-muted-foreground w-full h-full min-w-4 min-h-4"})})}ae.register("combobox",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsx(u2e,{options:e.options||[],placeholder:e.placeholder,value:e.value,disabled:e.disabled,className:e.className,...r,"data-obj-id":o,"data-obj-type":n,style:a})},{namespace:"ui",label:"Combobox",inputs:[{name:"placeholder",type:"string",label:"Placeholder"},{name:"value",type:"string",label:"Value"},{name:"disabled",type:"boolean",label:"Disabled",defaultValue:!1},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{placeholder:"Select option...",options:[]}}),ae.register("command",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsxs(XI,{className:e.className,...r,"data-obj-id":o,"data-obj-type":n,style:a,children:[d.jsx(ZI,{placeholder:e.placeholder||"Type a command or search..."}),d.jsxs(QI,{children:[d.jsx(JI,{children:e.emptyText||"No results found."}),e.groups?.map((i,s)=>d.jsx(eA,{heading:i.heading,children:i.items?.map((l,u)=>d.jsx(tA,{value:l.value,children:l.label},u))},s))]})]})},{namespace:"ui",label:"Command",inputs:[{name:"placeholder",type:"string",label:"Placeholder"},{name:"emptyText",type:"string",label:"Empty Text"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{placeholder:"Type a command or search...",emptyText:"No results found.",groups:[]}});const M2e=w.forwardRef(({schema:e,className:t,...o},n)=>{const{"data-obj-id":a,"data-obj-type":r,style:i,...s}=o,l=e.clickable||!!o.onClick,u=e.hoverable||l;return d.jsxs(gd,{ref:n,className:S(t,u&&"transition-colors hover:bg-muted/50",l&&"cursor-pointer active:bg-muted"),...s,"data-obj-id":a,"data-obj-type":r,style:i,children:[(e.title||e.description||e.header)&&d.jsxs(vd,{children:[e.title&&d.jsx(_d,{children:e.title}),e.description&&d.jsx(eO,{children:e.description}),e.header&&we(e.header)]}),(e.children||e.body)&&d.jsx(bd,{children:we(e.children||e.body)}),e.footer&&d.jsx(tO,{className:"flex justify-between",children:we(e.footer)})]})});ae.register("card",M2e,{namespace:"ui",label:"Card",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{title:"Card Title",description:"Card description goes here",className:"w-full"},isContainer:!0,resizable:!0,resizeConstraints:{width:!0,height:!0,minWidth:200,minHeight:100}});const w2e=({schema:e,className:t,onChange:o,value:n,...a})=>{const{"data-obj-id":r,"data-obj-type":i,style:s,...l}=a,u=h=>{o&&o(h)},y=e.orientation==="vertical";return d.jsxs(iG,{defaultValue:n===void 0?e.defaultValue:void 0,value:n??e.value,onValueChange:u,orientation:e.orientation||"horizontal",className:S(t,y&&"flex gap-2"),...l,"data-obj-id":r,"data-obj-type":i,style:s,children:[d.jsx(aT,{className:S(y&&"flex-col h-auto items-stretch bg-muted/50 p-1"),children:e.items?.map(h=>d.jsx(rT,{value:h.value,disabled:h.disabled,className:S(y&&"justify-start"),children:h.label},h.value))}),e.items?.map(h=>d.jsx(iT,{value:h.value,className:S("mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",y&&"mt-0 flex-1"),children:we(h.content||h.body)},h.value))]})};ae.register("tabs",w2e,{namespace:"ui",label:"Tabs",inputs:[{name:"defaultValue",type:"string",label:"Default Value",required:!0},{name:"className",type:"string",label:"CSS Class"},{name:"items",type:"array",label:"Items"}],defaultProps:{defaultValue:"tab1",items:[{label:"Tab 1",value:"tab1",body:[{type:"text",content:"Content for Tab 1"}]},{label:"Tab 2",value:"tab2",body:[{type:"text",content:"Content for Tab 2"}]},{label:"Tab 3",value:"tab3",body:[{type:"text",content:"Content for Tab 3"}]}],className:"w-full"}});const x2e={1:"grid-cols-1",2:"grid-cols-2",3:"grid-cols-3",4:"grid-cols-4",5:"grid-cols-5",6:"grid-cols-6",7:"grid-cols-7",8:"grid-cols-8",9:"grid-cols-9",10:"grid-cols-10",11:"grid-cols-11",12:"grid-cols-12"},N2e={1:"sm:grid-cols-1",2:"sm:grid-cols-2",3:"sm:grid-cols-3",4:"sm:grid-cols-4",5:"sm:grid-cols-5",6:"sm:grid-cols-6",7:"sm:grid-cols-7",8:"sm:grid-cols-8",9:"sm:grid-cols-9",10:"sm:grid-cols-10",11:"sm:grid-cols-11",12:"sm:grid-cols-12"},C2e={1:"md:grid-cols-1",2:"md:grid-cols-2",3:"md:grid-cols-3",4:"md:grid-cols-4",5:"md:grid-cols-5",6:"md:grid-cols-6",7:"md:grid-cols-7",8:"md:grid-cols-8",9:"md:grid-cols-9",10:"md:grid-cols-10",11:"md:grid-cols-11",12:"md:grid-cols-12"},$2e={1:"lg:grid-cols-1",2:"lg:grid-cols-2",3:"lg:grid-cols-3",4:"lg:grid-cols-4",5:"lg:grid-cols-5",6:"lg:grid-cols-6",7:"lg:grid-cols-7",8:"lg:grid-cols-8",9:"lg:grid-cols-9",10:"lg:grid-cols-10",11:"lg:grid-cols-11",12:"lg:grid-cols-12"},S2e={1:"xl:grid-cols-1",2:"xl:grid-cols-2",3:"xl:grid-cols-3",4:"xl:grid-cols-4",5:"xl:grid-cols-5",6:"xl:grid-cols-6",7:"xl:grid-cols-7",8:"xl:grid-cols-8",9:"xl:grid-cols-9",10:"xl:grid-cols-10",11:"xl:grid-cols-11",12:"xl:grid-cols-12"},L2e={0:"gap-0",1:"gap-1",2:"gap-2",3:"gap-3",4:"gap-4",5:"gap-5",6:"gap-6",8:"gap-8",10:"gap-10",12:"gap-12"};ae.register("grid",({schema:e,className:t,...o})=>{let n=2,a,r,i,s;typeof e.columns=="number"?n=e.columns:typeof e.columns=="object"&&e.columns!==null&&(n=e.columns.xs??1,a=e.columns.sm,r=e.columns.md,i=e.columns.lg,s=e.columns.xl),e.smColumns&&(a=e.smColumns),e.mdColumns&&(r=e.mdColumns),e.lgColumns&&(i=e.lgColumns),e.xlColumns&&(s=e.xlColumns);const l=e.gap??4,u=S("grid",x2e[n]||"grid-cols-2",a&&N2e[a],r&&C2e[r],i&&$2e[i],s&&S2e[s],L2e[l]||`gap-[${l*.25}rem]`,t),{"data-obj-id":y,"data-obj-type":h,style:f,...k}=o;return d.jsx("div",{className:u,...k,"data-obj-id":y,"data-obj-type":h,style:f,children:e.children&&we(e.children)})},{namespace:"ui",label:"Grid Layout",inputs:[{name:"columns",type:"number",label:"Base Columns (Mobile)",defaultValue:2,description:"Number of columns on mobile devices"},{name:"smColumns",type:"number",label:"SM Columns (Tablet)",description:"Columns at sm breakpoint (>640px)"},{name:"mdColumns",type:"number",label:"MD Columns (Laptop)",description:"Columns at md breakpoint (>768px)"},{name:"lgColumns",type:"number",label:"LG Columns (Desktop)",description:"Columns at lg breakpoint (>1024px)"},{name:"xlColumns",type:"number",label:"XL Columns (Wide)",description:"Columns at xl breakpoint (>1280px)"},{name:"gap",type:"number",label:"Gap",defaultValue:4,description:"Gap between items (0-12)"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{columns:1,mdColumns:2,lgColumns:4,gap:4,children:[{type:"card",title:"Card 1",description:"First card"},{type:"card",title:"Card 2",description:"Second card"},{type:"card",title:"Card 3",description:"Third card"},{type:"card",title:"Card 4",description:"Fourth card"}]},isContainer:!0,resizable:!0,resizeConstraints:{width:!0,height:!0,minWidth:200,minHeight:100}}),ae.register("flex",({schema:e,className:t,...o})=>{const n=e.direction||"row",a=e.justify||"start",r=e.align||"start",i=e.gap||2,s=e.wrap||!1,l=S("flex",n==="row"&&"flex-row",n==="col"&&"flex-col",n==="row-reverse"&&"flex-row-reverse",n==="col-reverse"&&"flex-col-reverse",a==="start"&&"justify-start",a==="end"&&"justify-end",a==="center"&&"justify-center",a==="between"&&"justify-between",a==="around"&&"justify-around",a==="evenly"&&"justify-evenly",r==="start"&&"items-start",r==="end"&&"items-end",r==="center"&&"items-center",r==="baseline"&&"items-baseline",r==="stretch"&&"items-stretch",i===0&&"gap-0",i===1&&"gap-1",i===2&&"gap-1.5 sm:gap-2",i===3&&"gap-2 sm:gap-3",i===4&&"gap-2 sm:gap-3 md:gap-4",i===5&&"gap-3 sm:gap-4 md:gap-5",i===6&&"gap-3 sm:gap-4 md:gap-6",i===7&&"gap-4 sm:gap-5 md:gap-7",i===8&&"gap-4 sm:gap-6 md:gap-8",s&&"flex-wrap",t),{"data-obj-id":u,"data-obj-type":y,style:h,...f}=o;return d.jsx("div",{className:l,...f,"data-obj-id":u,"data-obj-type":y,style:h,children:e.children&&we(e.children)})},{namespace:"ui",label:"Flex Layout",inputs:[{name:"direction",type:"enum",enum:["row","col","row-reverse","col-reverse"],label:"Direction",defaultValue:"row"},{name:"justify",type:"enum",enum:["start","end","center","between","around","evenly"],label:"Justify Content",defaultValue:"start"},{name:"align",type:"enum",enum:["start","end","center","baseline","stretch"],label:"Align Items",defaultValue:"start"},{name:"gap",type:"number",label:"Gap",defaultValue:2,description:"Gap between items (0-8)"},{name:"wrap",type:"boolean",label:"Wrap",defaultValue:!1,description:"Allow flex items to wrap"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{direction:"row",justify:"start",align:"center",gap:2,wrap:!1,children:[{type:"button",label:"Button 1"},{type:"button",label:"Button 2"},{type:"button",label:"Button 3"}]}});const I2e=w.forwardRef(({schema:e,className:t,...o},n)=>{const a=e.direction||"col",r=e.justify||"start",i=e.align||"stretch",s=e.gap??e.spacing??2,l=e.wrap||!1,u=S("flex",a==="row"&&"flex-row",a==="col"&&"flex-col",a==="row-reverse"&&"flex-row-reverse",a==="col-reverse"&&"flex-col-reverse",r==="start"&&"justify-start",r==="end"&&"justify-end",r==="center"&&"justify-center",r==="between"&&"justify-between",r==="around"&&"justify-around",r==="evenly"&&"justify-evenly",i==="start"&&"items-start",i==="end"&&"items-end",i==="center"&&"items-center",i==="baseline"&&"items-baseline",i==="stretch"&&"items-stretch",s===0&&"gap-0",s===1&&"gap-1",s===2&&"gap-1.5 sm:gap-2",s===3&&"gap-2 sm:gap-3",s===4&&"gap-2 sm:gap-3 md:gap-4",s===5&&"gap-3 sm:gap-4 md:gap-5",s===6&&"gap-3 sm:gap-4 md:gap-6",s===8&&"gap-4 sm:gap-6 md:gap-8",s===10&&"gap-5 sm:gap-7 md:gap-10",l&&"flex-wrap",t),{"data-obj-id":y,"data-obj-type":h,style:f,...k}=o;return d.jsx("div",{ref:n,className:u,...k,"data-obj-id":y,"data-obj-type":h,style:f,children:e.children&&we(e.children)})});ae.register("stack",I2e,{namespace:"ui",label:"Stack",inputs:[{name:"direction",type:"enum",label:"Direction",enum:["col","row","col-reverse","row-reverse"],defaultValue:"col"},{name:"gap",type:"number",label:"Gap",defaultValue:2},{name:"align",type:"enum",label:"Align Items",enum:["start","end","center","stretch","baseline"],defaultValue:"stretch"},{name:"justify",type:"enum",label:"Justify Content",enum:["start","end","center","between","around","evenly"],defaultValue:"start"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{direction:"col",gap:2,align:"stretch",children:[]},isContainer:!0,resizable:!0,resizeConstraints:{width:!0,height:!0,minWidth:100,minHeight:50}});const A2e=w.forwardRef(({schema:e,className:t,...o},n)=>{const a=e.maxWidth||"xl",r=e.padding||4,i=e.centered!==!1,s=S("w-full",a==="sm"&&"max-w-sm",a==="md"&&"max-w-md",a==="lg"&&"max-w-lg",a==="xl"&&"max-w-xl",a==="2xl"&&"max-w-2xl",a==="3xl"&&"max-w-3xl",a==="4xl"&&"max-w-4xl",a==="5xl"&&"max-w-5xl",a==="6xl"&&"max-w-6xl",a==="7xl"&&"max-w-7xl",a==="full"&&"max-w-full",a==="screen"&&"max-w-screen-2xl",i&&"mx-auto",r===0&&"p-0",r===1&&"p-0.5 sm:p-1",r===2&&"p-1 sm:p-2",r===3&&"p-2 sm:p-3",r===4&&"p-2 sm:p-3 md:p-4",r===5&&"p-3 sm:p-4 md:p-5",r===6&&"p-3 sm:p-4 md:p-6",r===7&&"p-4 sm:p-5 md:p-7",r===8&&"p-4 sm:p-6 md:p-8",r===10&&"p-5 sm:p-7 md:p-10",r===12&&"p-6 sm:p-8 md:p-12",r===16&&"p-8 sm:p-10 md:p-16",t),{"data-obj-id":l,"data-obj-type":u,style:y,...h}=o;return d.jsx("div",{ref:n,className:s,...h,"data-obj-id":l,"data-obj-type":u,style:y,children:e.children&&we(e.children)})});ae.register("container",A2e,{namespace:"ui",label:"Container",inputs:[{name:"maxWidth",type:"enum",enum:["sm","md","lg","xl","2xl","3xl","4xl","5xl","6xl","7xl","full","screen"],label:"Max Width",defaultValue:"xl"},{name:"padding",type:"number",label:"Padding",defaultValue:4,description:"Padding value (0, 1-8, 10, 12, 16)"},{name:"centered",type:"boolean",label:"Center Horizontally",defaultValue:!0},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{maxWidth:"xl",padding:4,centered:!0,children:[{type:"text",content:"Container content goes here"}]},isContainer:!0,resizable:!0,resizeConstraints:{width:!0,height:!0,minWidth:200,minHeight:100}});const i1=({schema:e,className:t,...o})=>{let n=[];if(e.regions&&e.regions.length>0)n=e.regions.flatMap(l=>l.components||[]);else{const l=e.body||e.children;n=Array.isArray(l)?l:l?[l]:[]}const{"data-obj-id":a,"data-obj-type":r,style:i,...s}=o;return d.jsx("div",{className:S("min-h-full w-full bg-background p-4 md:p-6 lg:p-8",t),...s,"data-obj-id":a,"data-obj-type":r,style:i,children:d.jsxs("div",{className:"mx-auto max-w-7xl space-y-8",children:[(e.title||e.description)&&d.jsxs("div",{className:"space-y-2",children:[e.title&&d.jsx("h1",{className:"text-3xl font-bold tracking-tight text-foreground",children:e.title}),e.description&&d.jsx("p",{className:"text-muted-foreground",children:e.description})]}),d.jsx("div",{className:"space-y-6",children:n.map((l,u)=>d.jsx(jt,{schema:l},l?.id||u))})]})})},c1={namespace:"ui",label:"Page",icon:"Layout",category:"layout",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"body",type:"array",label:"Content",itemType:"component"}]};ae.register("page",i1,c1),ae.register("app",i1,{...c1,label:"App Page"}),ae.register("utility",i1,{...c1,label:"Utility Page"}),ae.register("home",i1,{...c1,label:"Home Page"}),ae.register("record",i1,{...c1,label:"Record Page"}),["aside","main","header","nav","footer","section","article"].forEach(e=>{const t=w.forwardRef(({schema:o,className:n,...a},r)=>{const{"data-obj-id":i,"data-obj-type":s,style:l,...u}=a,y=e;return d.jsx(y,{ref:r,className:n,...u,"data-obj-id":i,"data-obj-type":s,style:l,children:we(o.children||o.body)})});t.displayName=`Semantic${e.charAt(0).toUpperCase()+e.slice(1)}`,ae.register(e,t,{namespace:"ui",label:e.charAt(0).toUpperCase()+e.slice(1),category:"layout",inputs:[{name:"className",type:"string",label:"CSS Class"}]})}),ae.register("aspect-ratio",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsx(yZ,{ratio:e.ratio||16/9,className:e.className,...r,"data-obj-id":o,"data-obj-type":n,style:a,children:e.image?d.jsx("img",{src:e.image,alt:e.alt||"",className:"rounded-md object-cover w-full h-full"}):we(e.children||e.body)})},{namespace:"ui",label:"Aspect Ratio",inputs:[{name:"ratio",type:"number",label:"Ratio",defaultValue:16/9},{name:"image",type:"string",label:"Image URL"},{name:"alt",type:"string",label:"Alt Text"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{ratio:16/9}}),ae.register("sidebar-provider",({schema:e,...t})=>d.jsx(lR,{...t,children:we(e.body)}),{namespace:"ui",label:"Sidebar Provider",inputs:[{name:"defaultOpen",type:"boolean",label:"Default Open",defaultValue:!0}],defaultProps:{defaultOpen:!0},defaultChildren:[{type:"sidebar"},{type:"sidebar-inset"}]}),ae.register("sidebar",({schema:e,...t})=>d.jsx(uR,{...t,children:we(e.body)}),{namespace:"ui",label:"Sidebar",inputs:[{name:"collapsible",type:"enum",enum:["offcanvas","icon","none"],defaultValue:"icon",label:"Collapsible"},{name:"side",type:"enum",enum:["left","right"],defaultValue:"left",label:"Side"},{name:"variant",type:"enum",enum:["sidebar","floating","inset"],defaultValue:"sidebar",label:"Variant"}],defaultProps:{collapsible:"icon",side:"left",variant:"sidebar"},defaultChildren:[{type:"sidebar-header"},{type:"sidebar-content"},{type:"sidebar-footer"}]}),ae.register("sidebar-header",({schema:e,...t})=>d.jsx(pR,{...t,children:we(e.body)}),{label:"Sidebar Header",defaultChildren:[{type:"text",content:"Sidebar Header"}]}),ae.register("sidebar-content",({schema:e,...t})=>d.jsx(fR,{...t,children:we(e.body)}),{label:"Sidebar Content",defaultChildren:[{type:"sidebar-group"}]}),ae.register("sidebar-group",({schema:e,...t})=>d.jsxs(mR,{...t,children:[e.label&&d.jsx(kR,{children:e.label}),d.jsx(gR,{children:we(e.body)})]}),{namespace:"ui",label:"Sidebar Group",inputs:[{name:"label",type:"string",label:"Label"}],defaultProps:{label:"Menu"},defaultChildren:[{type:"sidebar-menu"}]}),ae.register("sidebar-menu",({schema:e,...t})=>d.jsx(vR,{...t,children:we(e.body)}),{label:"Sidebar Menu",defaultChildren:[{type:"sidebar-menu-item"},{type:"sidebar-menu-item"}]}),ae.register("sidebar-menu-item",({schema:e,...t})=>d.jsx(_R,{...t,children:we(e.body)}),{label:"Sidebar Menu Item",defaultChildren:[{type:"sidebar-menu-button"}]}),ae.register("sidebar-menu-button",({schema:e,...t})=>d.jsx(bR,{isActive:e.active,...t,children:we(e.body)}),{namespace:"ui",label:"Sidebar Menu Button",inputs:[{name:"active",type:"boolean",label:"Active",defaultValue:!1},{name:"size",type:"enum",enum:["default","sm","lg"],defaultValue:"default",label:"Size"},{name:"tooltip",type:"string",label:"Tooltip"}],defaultProps:{size:"default"},defaultChildren:[{type:"text",content:"Menu Item"}]}),ae.register("sidebar-footer",({schema:e,...t})=>d.jsx(yR,{...t,children:we(e.body)}),{label:"Sidebar Footer",defaultChildren:[{type:"text",content:"Footer"}]}),ae.register("sidebar-inset",({schema:e,...t})=>d.jsx(hR,{...t,children:we(e.body)}),{label:"Sidebar Inset",defaultChildren:[{type:"div",className:"p-4",body:[{type:"text",content:"Main content area"}]}]}),ae.register("sidebar-trigger",({className:e,...t})=>d.jsx(YP,{className:e,...t}),{namespace:"ui",label:"Sidebar Trigger",inputs:[{name:"className",type:"string",label:"CSS Class"}]}),ae.register("header-bar",({schema:e})=>d.jsxs("header",{className:"flex h-14 sm:h-16 shrink-0 items-center gap-2 border-b px-3 sm:px-4",children:[d.jsx(YP,{}),d.jsx(X$,{orientation:"vertical",className:"mr-2 h-4"}),d.jsx(nL,{children:d.jsx(aL,{children:e.crumbs?.map((t,o)=>d.jsxs(w.Fragment,{children:[d.jsx(rL,{children:o===e.crumbs.length-1?d.jsx(cL,{children:t.label}):d.jsx(iL,{href:t.href||"#",children:t.label})}),o<e.crumbs.length-1&&d.jsx(sL,{})]},o))})})]}),{namespace:"ui",label:"Header Bar",inputs:[{name:"crumbs",type:"array",label:"Breadcrumbs"}],defaultProps:{crumbs:[{label:"Home",href:"#"},{label:"Current Page"}]}}),ae.register("badge",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsx(dz,{variant:e.variant,className:e.className,...r,"data-obj-id":o,"data-obj-type":n,style:a,children:e.label||we(e.body)})},{namespace:"ui",label:"Badge",inputs:[{name:"label",type:"string",label:"Label"},{name:"variant",type:"enum",enum:["default","secondary","destructive","outline"],defaultValue:"default",label:"Variant"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{label:"Badge",variant:"default"}}),ae.register("avatar",({schema:e,className:t,...o})=>d.jsxs(iz,{className:t,...o,children:[d.jsx(cz,{src:e.src,alt:e.alt}),d.jsx(sz,{children:e.fallback})]}),{namespace:"ui",label:"Avatar",inputs:[{name:"src",type:"string",label:"Image URL"},{name:"alt",type:"string",label:"Alt Text"},{name:"fallback",type:"string",label:"Fallback Initials",defaultValue:"CN"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{fallback:"CN",alt:"Avatar"}}),ae.register("alert",({schema:e,className:t,...o})=>d.jsxs(QS,{variant:e.variant,className:t,...o,children:[d.jsx(BE,{children:e.title}),d.jsx(JS,{children:e.description||we(e.body)})]}),{namespace:"ui",label:"Alert",inputs:[{name:"title",type:"string",label:"Title",required:!0},{name:"description",type:"string",label:"Description"},{name:"variant",type:"enum",enum:["default","destructive"],defaultValue:"default",label:"Variant"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{title:"Alert Title",description:"This is an alert message.",variant:"default"}}),ae.register("list",({schema:e,className:t,...o})=>{const a=mS(e.bind)||e.items||[],r=e.ordered?"ol":"ul",i=e.ordered?"list-decimal":"list-disc";return d.jsxs("div",{className:S("space-y-2",e.wrapperClass),children:[e.title&&d.jsx("h3",{className:"text-lg font-semibold tracking-tight",children:e.title}),d.jsx(r,{className:S("ml-6 [&>li]:mt-2",i,t),...o,children:a.map((s,l)=>d.jsx("li",{className:S(typeof s=="object"&&s.className),children:typeof s=="string"?s:s.content||we(s.body)},l))})]})},{namespace:"ui",label:"List",inputs:[{name:"title",type:"string",label:"Title"},{name:"ordered",type:"boolean",label:"Ordered List (numbered)",defaultValue:!1},{name:"items",type:"array",label:"List Items",description:"Array of strings or objects with content/body"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{ordered:!1,items:["First item","Second item","Third item"],className:"text-sm"}});const CG=({node:e,onNodeClick:t})=>{const[o,n]=w.useState(!1),a=e.children&&e.children.length>0,r=s=>{s.stopPropagation(),n(!o)},i=()=>{t&&t(e)};return d.jsxs("div",{className:"relative",children:[d.jsxs("div",{className:S("group flex items-center py-1.5 px-2 rounded-sm cursor-pointer transition-colors","hover:bg-accent hover:text-accent-foreground",o&&a&&"bg-accent/50"),onClick:i,children:[a?d.jsx("button",{onClick:r,className:"mr-2 p-0.5 h-5 w-5 flex items-center justify-center rounded-sm hover:bg-muted text-muted-foreground transition-colors",children:o?d.jsx(Ht,{className:"h-4 w-4"}):d.jsx(Pt,{className:"h-4 w-4"})}):d.jsx("span",{className:"mr-2 w-5 flex justify-center",children:d.jsx("div",{className:"w-1 h-1 rounded-full bg-muted-foreground/50"})}),e.icon==="folder"||a?o?d.jsx(Ks,{className:"h-4 w-4 mr-2 text-primary"}):d.jsx(Ys,{className:"h-4 w-4 mr-2 text-muted-foreground group-hover:text-primary transition-colors"}):d.jsx(Gs,{className:"h-4 w-4 mr-2 text-muted-foreground group-hover:text-primary transition-colors"}),d.jsx("span",{className:S("text-sm transition-colors",o?"font-medium text-foreground":"text-muted-foreground group-hover:text-foreground"),children:e.label})]}),a&&o&&d.jsx("div",{className:"relative ml-[11px] pl-3 border-l border-border animate-in slide-in-from-left-2 fade-in duration-200",children:e.children.map(s=>d.jsx(CG,{node:s,onNodeClick:t},s.id))})]})};ae.register("tree-view",({schema:e,className:t,...o})=>{const n=i=>{e.onNodeClick&&e.onNodeClick(i)},r=mS(e.bind)||e.nodes||e.data||[];return d.jsxs("div",{className:S("relative border rounded-lg p-3 bg-card text-card-foreground",t),...o,children:[e.title&&d.jsx("div",{className:"flex items-center gap-2 mb-3 pb-2 border-b",children:d.jsx("h3",{className:"text-sm font-semibold",children:e.title})}),d.jsx("div",{className:"space-y-1",children:r.map(i=>d.jsx(CG,{node:i,onNodeClick:n},i.id))})]})},{namespace:"ui",label:"Tree View",inputs:[{name:"title",type:"string",label:"Title"},{name:"nodes",type:"array",label:"Tree Nodes",description:"Array of { id, label, icon, children, data }"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{title:"File Explorer",nodes:[{id:"1",label:"Documents",icon:"folder",children:[{id:"1-1",label:"Resume.pdf",icon:"file"},{id:"1-2",label:"Cover Letter.docx",icon:"file"}]},{id:"2",label:"Photos",icon:"folder",children:[{id:"2-1",label:"Vacation",icon:"folder",children:[{id:"2-1-1",label:"Beach.jpg",icon:"file"}]},{id:"2-2",label:"Family.jpg",icon:"file"}]},{id:"3",label:"README.md",icon:"file"}]}});const P2e=e=>{if(!e)return null;const t=e.split("-").map(n=>n.charAt(0).toUpperCase()+n.slice(1)).join("");return MD[t]||MD[e]},T2e=({schema:e})=>{const t=e.icon?P2e(e.icon):null;return d.jsxs("div",{className:S("group relative flex flex-col p-4 sm:p-5 md:p-6 rounded-xl border bg-card text-card-foreground shadow-sm",e.className),children:[d.jsxs("div",{className:"flex items-center justify-between mb-2",children:[e.label&&d.jsx("p",{className:"text-sm font-medium text-muted-foreground",children:e.label}),t&&d.jsx(t,{className:"h-4 w-4 text-muted-foreground"})]}),d.jsx("div",{className:"flex items-baseline gap-2",children:d.jsx("h3",{className:"text-2xl font-bold tracking-tight",children:e.value})}),(e.trend||e.description)&&d.jsxs("div",{className:"mt-1 flex items-center text-xs text-muted-foreground",children:[e.trend==="up"&&d.jsx(od,{className:"mr-1 h-3 w-3 text-emerald-500"}),e.trend==="down"&&d.jsx(td,{className:"mr-1 h-3 w-3 text-rose-500"}),e.trend==="neutral"&&d.jsx(Qs,{className:"mr-1 h-3 w-3"}),d.jsx("span",{className:S(e.trend==="up"&&"text-emerald-500 font-medium",e.trend==="down"&&"text-rose-500 font-medium"),children:e.description})]})]})};ae.register("statistic",T2e,{namespace:"ui",label:"Statistic",category:"data-display",icon:"Activity",inputs:[{name:"label",type:"string",label:"Label"},{name:"value",type:"string",label:"Value"},{name:"description",type:"string",label:"Description"},{name:"trend",type:"enum",enum:[{label:"Up",value:"up"},{label:"Down",value:"down"},{label:"Neutral",value:"neutral"}],label:"Trend"}],defaultProps:{label:"Total Revenue",value:"$45,231.89",trend:"up",description:"+20.1% from last month"}}),ae.register("breadcrumb",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsx(nL,{className:e.className,...r,"data-obj-id":o,"data-obj-type":n,style:a,children:d.jsx(aL,{children:e.items?.map((i,s)=>d.jsxs("div",{className:"flex items-center",children:[d.jsx(rL,{children:s===(e.items?.length||0)-1?d.jsx(cL,{children:i.label}):d.jsx(iL,{href:i.href,children:i.label})}),s<(e.items?.length||0)-1&&d.jsx(sL,{})]},s))})})},{namespace:"ui",label:"Breadcrumb",inputs:[{name:"className",type:"string",label:"CSS Class"}],defaultProps:{items:[{label:"Home",href:"/"},{label:"Products",href:"/products"},{label:"Product"}]}}),ae.register("kbd",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t,i=Array.isArray(e.keys)?e.keys:[e.keys||e.label||"K"];return d.jsx("div",{className:S("inline-flex flex-wrap gap-1",e.className),children:i.map((s,l)=>d.jsx("kbd",{className:"pointer-events-none inline-flex h-5 select-none items-center gap-1 rounded border bg-muted px-1.5 font-mono text-[10px] font-medium text-muted-foreground opacity-100",...r,...l===0?{"data-obj-id":o,"data-obj-type":n,style:a}:{},children:s},l))})},{namespace:"ui",label:"Keyboard Key",inputs:[{name:"label",type:"string",label:"Label"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{label:"K"}});const D2e=({schema:e,className:t})=>{const n=mS(e.bind)||e.data||e.props?.data||[],a=e.columns||e.props?.columns||[];if(n&&!Array.isArray(n))return d.jsx("div",{className:"text-red-500 p-2 border border-red-200 bg-red-50 rounded text-sm",children:"Table data must be an array"});const r=Array.isArray(n)?n:[];return d.jsx("div",{className:S("rounded-md border",t),children:d.jsxs(aS,{children:[d.jsx(rS,{children:d.jsx(so,{children:a.map((i,s)=>d.jsx(Es,{children:i.label||i.header},i.key||i.accessorKey||s))})}),d.jsx(iS,{children:r.length===0?d.jsx(so,{children:d.jsx(Eo,{colSpan:a.length,className:"h-24 text-center",children:"No results."})}):r.map((i,s)=>d.jsx(so,{children:a.map((l,u)=>{const y=l.key||l.accessorKey||"",h=y?i[y]:"";return d.jsx(Eo,{children:h},l.key||l.accessorKey||u)})},i.id||s))})]})})};ae.register("table",D2e,{namespace:"ui"}),ae.register("progress",({schema:e,className:t,...o})=>d.jsx(QB,{value:e.value,className:t,...o}),{namespace:"ui",label:"Progress",inputs:[{name:"value",type:"number",label:"Value",defaultValue:0},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{value:50,className:"w-full"}}),ae.register("skeleton",({schema:e,className:t,...o})=>d.jsx(Ps,{className:t,...o,style:{width:e.width,height:e.height}}),{namespace:"ui",label:"Skeleton",inputs:[{name:"width",type:"string",label:"Width"},{name:"height",type:"string",label:"Height"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{width:"100%",height:"20px",className:"rounded-md"}}),ae.register("toaster",()=>d.jsx(Ale,{}),{namespace:"ui",label:"Toaster",inputs:[],defaultProps:{}}),ae.register("loading",({schema:e,className:t,...o})=>{const n=e.size||"md",a=e.fullscreen||!1,r=d.jsxs("div",{className:S("flex flex-col items-center justify-center gap-2",t),children:[d.jsx(b2e,{className:S(n==="sm"&&"h-4 w-4",n==="md"&&"h-8 w-8",n==="lg"&&"h-12 w-12",n==="xl"&&"h-16 w-16")}),e.text&&d.jsx("p",{className:"text-sm text-muted-foreground",children:e.text})]});return a?d.jsx("div",{className:"fixed inset-0 z-50 flex items-center justify-center bg-background/80 backdrop-blur-sm",...o,children:r}):d.jsx("div",{className:"flex items-center justify-center p-8",...o,children:r})},{namespace:"ui",label:"Loading",inputs:[{name:"text",type:"string",label:"Loading Text"},{name:"size",type:"enum",enum:["sm","md","lg","xl"],label:"Size",defaultValue:"md"},{name:"fullscreen",type:"boolean",label:"Fullscreen Overlay",defaultValue:!1},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{text:"Loading...",size:"md",fullscreen:!1}}),ae.register("toast",({schema:e})=>{const t=()=>{(e.variant==="success"?To.success:e.variant==="error"?To.error:e.variant==="warning"?To.warning:e.variant==="info"?To.info:To)(e.title||"Notification",{description:e.description,duration:e.duration})};return d.jsx(je,{onClick:t,variant:e.buttonVariant,className:e.className,children:e.buttonLabel||"Show Toast"})},{namespace:"ui",label:"Toast",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"variant",type:"enum",enum:["default","success","warning","error","info"],defaultValue:"default",label:"Variant"},{name:"duration",type:"number",label:"Duration (ms)"},{name:"buttonLabel",type:"string",label:"Button Label"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{title:"Notification",buttonLabel:"Show Toast",variant:"default",duration:5e3}}),ae.register("spinner",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t,i={sm:"h-4 w-4",md:"h-6 w-6",lg:"h-8 w-8",xl:"h-12 w-12"};return d.jsx(Vt,{className:S("animate-spin",i[e.size||"md"],e.className),...r,"data-obj-id":o,"data-obj-type":n,style:a})},{namespace:"ui",label:"Spinner",inputs:[{name:"size",type:"enum",enum:["sm","md","lg","xl"],defaultValue:"md",label:"Size"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{size:"md"}}),ae.register("empty",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsxs("div",{className:S("flex flex-col items-center justify-center p-8 text-center",e.className),...r,"data-obj-id":o,"data-obj-type":n,style:a,children:[d.jsx(Xs,{className:"h-12 w-12 text-muted-foreground mb-4"}),d.jsx("h3",{className:"text-lg font-semibold",children:e.title||"No data"}),e.description&&d.jsx("p",{className:"text-sm text-muted-foreground mt-2",children:e.description})]})},{namespace:"ui",label:"Empty",inputs:[{name:"title",type:"string",label:"Title",defaultValue:"No data"},{name:"description",type:"string",label:"Description"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{title:"No data"}}),ae.register("sonner",({schema:e,...t})=>{const o=()=>{(e.variant==="success"?To.success:e.variant==="error"?To.error:e.variant==="warning"?To.warning:e.variant==="info"?To.info:To)(e.message||e.title||"Notification",{description:e.description})};return d.jsx(je,{onClick:o,variant:e.buttonVariant,className:e.className,...t,children:e.buttonLabel||"Show Toast"})},{namespace:"ui",label:"Sonner Toast",inputs:[{name:"message",type:"string",label:"Message"},{name:"description",type:"string",label:"Description"},{name:"variant",type:"enum",enum:["default","success","error","warning","info"],defaultValue:"default",label:"Variant"},{name:"buttonLabel",type:"string",label:"Button Label"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{message:"Notification",buttonLabel:"Show Toast",variant:"default"}}),ae.register("dialog",({schema:e,className:t,...o})=>d.jsxs(Boe,{modal:e.modal,defaultOpen:e.defaultOpen,...o,children:[d.jsx(Woe,{asChild:!0,children:we(e.trigger)}),d.jsxs(ej,{className:t,children:[d.jsxs(tj,{children:[e.title&&d.jsx(nj,{children:e.title}),e.description&&d.jsx(aj,{children:e.description})]}),we(e.content),e.footer&&d.jsx(oj,{children:we(e.footer)})]})]}),{namespace:"ui",label:"Dialog",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"modal",type:"boolean",label:"Modal",defaultValue:!0},{name:"defaultOpen",type:"boolean",label:"Default Open"},{name:"trigger",type:"slot",label:"Trigger",description:"Element that opens the dialog"},{name:"content",type:"slot",label:"Content",description:"Main content of the dialog"},{name:"footer",type:"slot",label:"Footer"},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{title:"Dialog Title",description:"Dialog description goes here",modal:!0,trigger:[{type:"button",label:"Open Dialog"}],content:[{type:"text",content:"Dialog content goes here"}]}}),ae.register("sheet",({schema:e,className:t,...o})=>d.jsxs(YU,{modal:e.modal,defaultOpen:e.defaultOpen,...o,children:[d.jsx(Xde,{asChild:!0,children:we(e.trigger)}),d.jsxs(HP,{side:e.side||"right",className:t,children:[d.jsxs(VP,{children:[e.title&&d.jsx(FP,{children:e.title}),e.description&&d.jsx(BP,{children:e.description})]}),we(e.content),e.footer&&d.jsx(ZU,{children:we(e.footer)})]})]}),{namespace:"ui",label:"Sheet",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"side",type:"enum",enum:["top","right","bottom","left"],defaultValue:"right",label:"Side"},{name:"modal",type:"boolean",label:"Modal",defaultValue:!0},{name:"defaultOpen",type:"boolean",label:"Default Open"},{name:"trigger",type:"slot",label:"Trigger"},{name:"content",type:"slot",label:"Content"},{name:"footer",type:"slot",label:"Footer"},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{title:"Sheet Title",description:"Sheet description",side:"right",modal:!0,trigger:[{type:"button",label:"Open Sheet"}],content:[{type:"text",content:"Sheet content goes here"}]}}),ae.register("popover",({schema:e,className:t,...o})=>d.jsxs(gP,{modal:e.modal,defaultOpen:e.defaultOpen,...o,children:[d.jsx(vP,{asChild:!0,children:we(e.trigger)}),d.jsx(D$,{align:e.align,side:e.side,className:t,children:we(e.content)})]}),{namespace:"ui",label:"Popover",inputs:[{name:"modal",type:"boolean",label:"Modal"},{name:"defaultOpen",type:"boolean",label:"Default Open"},{name:"align",type:"enum",enum:["start","center","end"],label:"Align"},{name:"side",type:"enum",enum:["top","right","bottom","left"],label:"Side"},{name:"trigger",type:"slot",label:"Trigger"},{name:"content",type:"slot",label:"Content"},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{trigger:[{type:"button",label:"Open Popover",variant:"outline"}],content:[{type:"text",content:"Popover content goes here"}],align:"center",side:"bottom"}}),ae.register("tooltip",({schema:e,className:t,...o})=>d.jsx(iR,{delayDuration:e.delayDuration,children:d.jsxs(cR,{...o,children:[d.jsx(sR,{asChild:!0,children:we(e.trigger)}),d.jsx(KP,{side:e.side,align:e.align,className:t,children:e.content||we(e.body)})]})}),{namespace:"ui",label:"Tooltip",inputs:[{name:"delayDuration",type:"number",label:"Delay Duration",defaultValue:700},{name:"side",type:"enum",enum:["top","right","bottom","left"],label:"Side"},{name:"align",type:"enum",enum:["start","center","end"],label:"Align"},{name:"trigger",type:"slot",label:"Trigger"},{name:"content",type:"string",label:"Content Text"},{name:"body",type:"slot",label:"Rich Content"},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{trigger:[{type:"button",label:"Hover me",variant:"outline"}],content:"Tooltip content",delayDuration:700,side:"top"}}),ae.register("alert-dialog",({schema:e,className:t,...o})=>d.jsxs(cZ,{defaultOpen:e.defaultOpen,...o,children:[d.jsx(sZ,{asChild:!0,children:we(e.trigger)}),d.jsxs(zE,{className:t,children:[d.jsxs(OE,{children:[e.title&&d.jsx(jE,{children:e.title}),e.description&&d.jsx(HE,{children:e.description})]}),we(e.content),d.jsxs(qE,{children:[e.cancelText&&d.jsx(FE,{children:e.cancelText}),e.actionText&&d.jsx(VE,{onClick:e.onAction,children:e.actionText})]})]})]}),{namespace:"ui",label:"Alert Dialog",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"cancelText",type:"string",label:"Cancel Text",defaultValue:"Cancel"},{name:"actionText",type:"string",label:"Action Text",defaultValue:"Continue"},{name:"defaultOpen",type:"boolean",label:"Default Open"},{name:"trigger",type:"slot",label:"Trigger"},{name:"content",type:"slot",label:"Content/Body"},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{title:"Are you sure?",description:"This action cannot be undone.",cancelText:"Cancel",actionText:"Continue",trigger:[{type:"button",label:"Open Alert",variant:"destructive"}]}}),ae.register("drawer",({schema:e,className:t,...o})=>d.jsxs(cV,{shouldScaleBackground:e.shouldScaleBackground,defaultOpen:e.defaultOpen,...o,children:[d.jsx(Yre,{asChild:!0,children:we(e.trigger)}),d.jsxs(dV,{className:t,children:[d.jsxs(lV,{children:[e.title&&d.jsx(hV,{children:e.title}),e.description&&d.jsx(pV,{children:e.description})]}),we(e.content),e.footer&&d.jsxs(uV,{children:[we(e.footer),e.showClose&&d.jsx(Zre,{asChild:!0,children:d.jsx("button",{children:"Close"})})]})]})]}),{namespace:"ui",label:"Drawer",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"shouldScaleBackground",type:"boolean",label:"Scale Background"},{name:"defaultOpen",type:"boolean",label:"Default Open"},{name:"showClose",type:"boolean",label:"Show Close Button in Footer"},{name:"trigger",type:"slot",label:"Trigger"},{name:"content",type:"slot",label:"Content"},{name:"footer",type:"slot",label:"Footer"},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{title:"Drawer Title",description:"Drawer description",trigger:[{type:"button",label:"Open Drawer"}],content:[{type:"text",content:"Drawer content goes here"}]}}),ae.register("hover-card",({schema:e,className:t,...o})=>d.jsxs(qie,{openDelay:e.openDelay,closeDelay:e.closeDelay,...o,children:[d.jsx(jie,{asChild:!0,children:we(e.trigger)}),d.jsx(nF,{align:e.align,side:e.side,className:t,children:we(e.content)})]}),{namespace:"ui",label:"Hover Card",inputs:[{name:"openDelay",type:"number",label:"Open Delay"},{name:"closeDelay",type:"number",label:"Close Delay"},{name:"side",type:"enum",enum:["top","right","bottom","left"],label:"Side"},{name:"align",type:"enum",enum:["start","center","end"],label:"Align"},{name:"trigger",type:"slot",label:"Trigger"},{name:"content",type:"slot",label:"Content"},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{trigger:[{type:"button",label:"Hover me",variant:"link"}],content:[{type:"text",content:"Hover card content appears on hover"}],side:"top"}});const $G=e=>e?e.map((t,o)=>t.type==="separator"?d.jsx(ZA,{},o):t.type==="label"?d.jsx(XA,{children:t.label},o):t.children?d.jsxs(Mie,{children:[d.jsxs(qV,{inset:t.inset,children:[t.icon&&d.jsx("span",{className:"mr-2",children:t.icon}),t.label]}),d.jsx(jV,{children:$G(t.children)})]},o):d.jsxs(VV,{disabled:t.disabled,inset:t.inset,onSelect:t.onSelect,children:[t.icon&&d.jsx("span",{className:"mr-2",children:t.icon}),t.label,t.shortcut&&d.jsx("span",{className:"ml-auto text-xs tracking-widest opacity-60",children:t.shortcut})]},o)):null;ae.register("dropdown-menu",({schema:e,className:t,...o})=>d.jsxs(_ie,{modal:e.modal,defaultOpen:e.defaultOpen,...o,children:[d.jsx(bie,{asChild:!0,children:we(e.trigger)}),d.jsxs(HV,{align:e.align,side:e.side,className:t,children:[e.label&&d.jsx(XA,{children:e.label}),e.label&&d.jsx(ZA,{}),$G(e.items)]})]}),{namespace:"ui",label:"Dropdown Menu",inputs:[{name:"label",type:"string",label:"Menu Label"},{name:"side",type:"enum",enum:["top","right","bottom","left"],label:"Side"},{name:"align",type:"enum",enum:["start","center","end"],label:"Align"},{name:"trigger",type:"slot",label:"Trigger"},{name:"items",type:"array",label:"Items",description:'Recursive structure: { type?: "separator"|"label", label, icon, shortcut, disabled, children: [] }'},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{trigger:[{type:"button",label:"Menu",variant:"outline"}],items:[{label:"Item 1"},{label:"Item 2"},{type:"separator"},{label:"Item 3"}],align:"start",side:"bottom"}});const SG=e=>e?e.map((t,o)=>t.type==="separator"?d.jsx(WH,{},o):t.type==="label"?d.jsx(BH,{children:t.label},o):t.children?d.jsxs(gre,{children:[d.jsx(jH,{inset:t.inset,children:t.label}),d.jsx(HH,{children:SG(t.children)})]},o):d.jsxs(FH,{disabled:t.disabled,inset:t.inset,onSelect:t.onSelect,children:[t.label,t.shortcut&&d.jsx(UH,{children:t.shortcut})]},o)):null;ae.register("context-menu",({schema:e,className:t,...o})=>{const n=e.triggerClassName||t||e.className||"h-[120px] w-full sm:h-[150px] sm:w-[300px] border border-dashed text-sm flex items-center justify-center",a=e.contentClassName;return d.jsxs(mre,{modal:e.modal,...o,children:[d.jsx(kre,{asChild:!0,children:d.jsx("div",{className:n,children:we(e.trigger||{type:"text",value:"Right click here"})})}),d.jsx(VH,{className:a,children:SG(e.items)})]})},{namespace:"ui",label:"Context Menu",inputs:[{name:"trigger",type:"slot",label:"Trigger Area"},{name:"triggerClassName",type:"string",label:"Trigger Area Class"},{name:"items",type:"array",label:"Items",description:'Recursive structure: { type?: "separator"|"label", label, shortcut, children }'},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{items:[{label:"Action 1"},{label:"Action 2"},{type:"separator"},{label:"Action 3"}],trigger:[{type:"text",content:"Right click here"}]}}),ae.register("menubar",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsx(FF,{className:e.className,...r,"data-obj-id":o,"data-obj-type":n,style:a,children:e.menus?.map((i,s)=>d.jsxs(wce,{children:[d.jsx(BF,{children:i.label}),d.jsx(RF,{children:i.items?.map((l,u)=>l.separator?d.jsx(GF,{},u):l.children?d.jsxs(xce,{children:[d.jsx(WF,{children:l.label}),d.jsx(UF,{children:l.children.map((y,h)=>d.jsx(rP,{children:y.label},h))})]},u):d.jsx(rP,{disabled:l.disabled,children:l.label},u))})]},s))})},{namespace:"ui",label:"Menubar",inputs:[{name:"className",type:"string",label:"CSS Class"}],defaultProps:{menus:[{label:"File",items:[{label:"New"},{label:"Open"},{separator:!0},{label:"Exit"}]}]}}),ae.register("accordion",({schema:e,className:t,...o})=>d.jsx(IY,{type:e.accordionType||"single",collapsible:e.collapsible,className:t,...o,children:e.items?.map((n,a)=>d.jsxs(wD,{value:n.value||`item-${a}`,children:[d.jsx(xD,{children:n.title}),d.jsx(ND,{children:we(n.content)})]},n.value||a))}),{namespace:"ui",label:"Accordion",inputs:[{name:"accordionType",type:"enum",enum:["single","multiple"],defaultValue:"single",label:"Type"},{name:"collapsible",type:"boolean",label:"Collapsible (for single type)"},{name:"items",type:"array",label:"Items",description:"Array of { trigger, content, value }"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{accordionType:"single",collapsible:!0,items:[{label:"Item 1",value:"item-1",content:[{type:"text",content:"Content for item 1"}]},{label:"Item 2",value:"item-2",content:[{type:"text",content:"Content for item 2"}]},{label:"Item 3",value:"item-3",content:[{type:"text",content:"Content for item 3"}]}],className:"w-full"}}),ae.register("collapsible",({schema:e,className:t,...o})=>d.jsxs(jq,{defaultOpen:e.defaultOpen,disabled:e.disabled,className:t,...o,children:[d.jsx(Hq,{asChild:!0,children:we(e.trigger)}),d.jsx(Vq,{children:we(e.content)})]}),{namespace:"ui",label:"Collapsible",inputs:[{name:"defaultOpen",type:"boolean",label:"Default Open"},{name:"disabled",type:"boolean",label:"Disabled"},{name:"trigger",type:"slot",label:"Trigger"},{name:"content",type:"slot",label:"Content"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{trigger:[{type:"button",label:"Toggle",variant:"outline"}],content:[{type:"text",content:"Collapsible content goes here"}],className:"w-full"}}),ae.register("toggle-group",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,type:r,...i}=t;return d.jsx(bG,{type:e.selectionType||"single",variant:e.variant,size:e.size,value:e.value,className:e.className,...i,"data-obj-id":o,"data-obj-type":n,style:a,children:e.items?.map((s,l)=>d.jsx(MG,{value:s.value,"aria-label":s.label,children:s.label},l))})},{namespace:"ui",label:"Toggle Group",inputs:[{name:"selectionType",type:"enum",enum:["single","multiple"],defaultValue:"single",label:"Selection Type"},{name:"variant",type:"enum",enum:["default","outline"],defaultValue:"default",label:"Variant"},{name:"size",type:"enum",enum:["default","sm","lg"],defaultValue:"default",label:"Size"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{selectionType:"single",variant:"default",size:"default",items:[{value:"bold",label:"Bold"},{value:"italic",label:"Italic"},{value:"underline",label:"Underline"}]}}),ae.register("carousel",({schema:e,className:t,...o})=>d.jsxs(lO,{opts:e.opts,orientation:e.orientation||"horizontal",className:t,...o,children:[d.jsx(uO,{children:e.items?.map((n,a)=>d.jsx(hO,{className:e.itemClassName,children:we(n)},a))}),e.showArrows&&d.jsxs(d.Fragment,{children:[d.jsx(pO,{}),d.jsx(yO,{})]})]}),{namespace:"ui",label:"Carousel",inputs:[{name:"orientation",type:"enum",enum:["horizontal","vertical"],defaultValue:"horizontal",label:"Orientation"},{name:"showArrows",type:"boolean",label:"Show Arrows",defaultValue:!0},{name:"items",type:"array",label:"Items",description:"Array of content schemas"},{name:"itemClassName",type:"string",label:"Item CSS Class"},{name:"className",type:"string",label:"Container CSS Class"}],defaultProps:{orientation:"horizontal",showArrows:!0,items:[[{type:"div",className:"p-4 sm:p-6 md:p-8 border rounded bg-slate-50",body:[{type:"text",content:"Slide 1"}]}],[{type:"div",className:"p-4 sm:p-6 md:p-8 border rounded bg-slate-50",body:[{type:"text",content:"Slide 2"}]}],[{type:"div",className:"p-4 sm:p-6 md:p-8 border rounded bg-slate-50",body:[{type:"text",content:"Slide 3"}]}]],className:"w-full max-w-xs"}}),ae.register("filter-builder",({schema:e,className:t,onChange:o,...n})=>{const a=r=>{o&&o({target:{name:e.name,value:r}})};return d.jsxs("div",{className:e.wrapperClass||"",children:[e.label&&d.jsx("label",{className:"text-sm font-medium mb-2 block",children:e.label}),d.jsx(NG,{fields:e.fields||[],value:e.value||n.value,onChange:a,className:t,...n})]})},{namespace:"ui",label:"Filter Builder",inputs:[{name:"label",type:"string",label:"Label"},{name:"name",type:"string",label:"Name",required:!0},{name:"fields",type:"array",label:"Fields",description:"Array of { value: string, label: string, type?: string } objects",required:!0},{name:"value",type:"object",label:"Initial Value",description:"FilterGroup object with conditions"}],defaultProps:{label:"Filters",name:"filters",fields:[{value:"name",label:"Name",type:"text"},{value:"email",label:"Email",type:"text"},{value:"age",label:"Age",type:"number"},{value:"status",label:"Status",type:"text"}],value:{id:"root",logic:"and",conditions:[]}}}),ae.register("scroll-area",({schema:e,className:t,...o})=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...i}=o,s=e.orientation||"vertical";return d.jsxs(sU,{className:t,style:{height:e.height,width:e.width,...r},...i,"data-obj-id":n,"data-obj-type":a,children:[we(e.children),(s==="horizontal"||s==="both")&&d.jsx(U$,{orientation:"horizontal"}),(s==="vertical"||s==="both")&&d.jsx(U$,{orientation:"vertical"})]})},{namespace:"ui",label:"Scroll Area",inputs:[{name:"height",type:"string",label:"Height (e.g. 200px)"},{name:"width",type:"string",label:"Width"},{name:"orientation",type:"enum",enum:["vertical","horizontal","both"],defaultValue:"vertical",label:"Orientation"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{height:"200px",width:"100%",orientation:"vertical",children:[{type:"div",className:"p-4",body:[{type:"text",content:"Scrollable content goes here. Add more content to see scrolling behavior."}]}],className:"rounded-md border"}}),ae.register("resizable",({schema:e,className:t,...o})=>d.jsx(tde,{orientation:e.direction||"horizontal",className:t,...o,style:{minHeight:e.minHeight||"200px"},children:e.panels?.map((n,a)=>d.jsxs(w.Fragment,{children:[d.jsx(ode,{defaultSize:n.defaultSize,minSize:n.minSize,maxSize:n.maxSize,children:we(n.content)}),a<e.panels.length-1&&d.jsx(nde,{withHandle:e.withHandle})]},a))}),{namespace:"ui",label:"Resizable Panel Group",inputs:[{name:"direction",type:"enum",enum:["horizontal","vertical"],defaultValue:"horizontal",label:"Direction"},{name:"minHeight",type:"string",label:"Min Height"},{name:"withHandle",type:"boolean",label:"Show Handle Icon",defaultValue:!0},{name:"panels",type:"array",label:"Panels",description:"Array of { defaultSize, minSize, maxSize, content }"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{direction:"horizontal",minHeight:"200px",withHandle:!0,panels:[{defaultSize:50,content:[{type:"div",className:"p-4",body:[{type:"text",content:"Panel 1"}]}]},{defaultSize:50,content:[{type:"div",className:"p-4",body:[{type:"text",content:"Panel 2"}]}]}],className:"rounded-lg border"}}),ae.register("table",({schema:e,className:t,...o})=>d.jsxs(aS,{className:t,...o,children:[e.caption&&d.jsx(oT,{children:e.caption}),d.jsx(rS,{children:d.jsx(so,{children:e.columns?.map((n,a)=>d.jsx(Es,{className:n.className,style:{width:n.width},children:n.header||n.label},a))})}),d.jsx(iS,{children:e.data?.map((n,a)=>d.jsx(so,{children:e.columns?.map((r,i)=>d.jsx(Eo,{className:r.cellClassName,children:n[r.accessorKey||r.name]},i))},a))}),e.footer&&d.jsx(RR,{children:d.jsx(so,{children:d.jsx(Eo,{colSpan:e.columns?.length,children:typeof e.footer=="string"?e.footer:we(e.footer)})})})]}),{namespace:"ui",label:"Table",inputs:[{name:"caption",type:"string",label:"Caption"},{name:"footer",type:"string",label:"Footer Content"},{name:"columns",type:"array",label:"Columns",description:"Array of { header, accessorKey, className, width }"},{name:"data",type:"array",label:"Data",description:"Array of objects"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{caption:"Table Caption",columns:[{header:"Column 1",accessorKey:"col1"},{header:"Column 2",accessorKey:"col2"},{header:"Column 3",accessorKey:"col3"}],data:[{col1:"Row 1, Col 1",col2:"Row 1, Col 2",col3:"Row 1, Col 3"},{col1:"Row 2, Col 1",col2:"Row 2, Col 2",col3:"Row 2, Col 3"},{col1:"Row 3, Col 1",col2:"Row 3, Col 2",col3:"Row 3, Col 3"}]}});const E2e=({schema:e})=>{const{caption:t,columns:o=[],data:n=[],pagination:a=!0,pageSize:r=10,searchable:i=!0,selectable:s=!1,sortable:l=!0,exportable:u=!1,rowActions:y=!1,resizableColumns:h=!0,reorderableColumns:f=!0,className:k}=e,m=w.useMemo(()=>o.map(I=>({...I,header:I.header||I.label,accessorKey:I.accessorKey||I.name})),[o]),[g,_]=w.useState(""),[v,b]=w.useState(null),[M,x]=w.useState(null),[N,C]=w.useState(new Set),[$,L]=w.useState(1),[A,z]=w.useState(r),[E,O]=w.useState(m),[T,W]=w.useState({}),[R,H]=w.useState(null),[Y,j]=w.useState(null),U=w.useRef(null),ce=w.useRef(0),le=w.useRef(0);w.useEffect(()=>{O(m)},[m]);const B=w.useMemo(()=>g?n.filter(I=>E.some(D=>I[D.accessorKey]?.toString().toLowerCase().includes(g.toLowerCase()))):n,[n,g,E]),F=w.useMemo(()=>!v||!M?B:[...B].sort((I,D)=>{const Q=I[v],Z=D[v];if(Q===Z)return 0;const J=Q<Z?-1:1;return M==="asc"?J:-J}),[B,v,M]),K=Math.ceil(F.length/A),G=a?F.slice(($-1)*A,$*A):F,ie=(I,D)=>I.id!==void 0?I.id:`row-${D}`,V=I=>{l&&(v===I?M==="asc"?x("desc"):M==="desc"&&(x(null),b(null)):(b(I),x("asc")))},te=I=>{const D=new Set;if(I&&G.forEach((Q,Z)=>{const J=($-1)*A+Z,ne=ie(Q,J);D.add(ne)}),C(D),e.onSelectionChange){const Q=F.filter((Z,J)=>{const ne=ie(Z,J);return D.has(ne)});e.onSelectionChange(Q)}},fe=(I,D)=>{const Q=new Set(N);if(D?Q.add(I):Q.delete(I),C(Q),e.onSelectionChange){const Z=F.filter((J,ne)=>{const Ne=ie(J,ne);return Q.has(Ne)});e.onSelectionChange(Z)}},pe=()=>{const I=[E.map(J=>J.header).join(","),...F.map(J=>E.map(ne=>JSON.stringify(J[ne.accessorKey]||"")).join(","))].join(`
|
|
95
|
+
`),D=new Blob([I],{type:"text/csv"}),Q=window.URL.createObjectURL(D),Z=document.createElement("a");Z.href=Q,Z.download="table-export.csv",Z.click(),window.URL.revokeObjectURL(Q)},de=I=>v!==I?d.jsx(Jc,{className:"h-4 w-4 ml-1 opacity-50"}):M==="asc"?d.jsx(Qc,{className:"h-4 w-4 ml-1"}):d.jsx(Ht,{className:"h-4 w-4 ml-1"}),ee=(I,D)=>{if(!h)return;I.preventDefault(),I.stopPropagation(),U.current=D,ce.current=I.clientX;const Q=I.target.closest("th");Q&&(le.current=Q.offsetWidth),document.addEventListener("mousemove",_e),document.addEventListener("mouseup",q)},_e=I=>{if(!U.current)return;const D=I.clientX-ce.current,Q=Math.max(50,le.current+D);W(Z=>({...Z,[U.current]:Q}))},q=()=>{U.current=null,document.removeEventListener("mousemove",_e),document.removeEventListener("mouseup",q)},ue=(I,D)=>{f&&(H(D),I.dataTransfer.effectAllowed="move")},xe=(I,D)=>{f&&(I.preventDefault(),I.dataTransfer.dropEffect="move",j(D))},Ce=(I,D)=>{if(!f||R===null)return;if(I.preventDefault(),R===D){H(null),j(null);return}const Q=[...E],[Z]=Q.splice(R,1);Q.splice(D,0,Z),O(Q),H(null),j(null),e.onColumnsReorder&&e.onColumnsReorder(Q)},De=()=>{H(null),j(null)};w.useEffect(()=>()=>{document.removeEventListener("mousemove",_e),document.removeEventListener("mouseup",q)},[]);const $e=G.length>0&&G.every((I,D)=>{const Q=($-1)*A+D,Z=ie(I,Q);return N.has(Z)}),Pe=G.some((I,D)=>{const Q=($-1)*A+D,Z=ie(I,Q);return N.has(Z)})&&!$e,P=i||u||s&&N.size>0;return d.jsxs("div",{className:`flex flex-col h-full gap-4 ${k||""}`,children:[P&&d.jsxs("div",{className:"flex items-center justify-between gap-4 flex-none",children:[d.jsx("div",{className:"flex items-center gap-2 flex-1",children:i&&d.jsxs("div",{className:"relative max-w-sm flex-1",children:[d.jsx(Qr,{className:"absolute left-2 top-1/2 transform -translate-y-1/2 h-4 w-4 text-muted-foreground"}),d.jsx(hn,{placeholder:"Search...",value:g,onChange:I=>{_(I.target.value),L(1)},className:"pl-8"})]})}),d.jsxs("div",{className:"flex items-center gap-2",children:[u&&d.jsxs(je,{variant:"outline",size:"sm",onClick:pe,disabled:F.length===0,children:[d.jsx(Rs,{className:"h-4 w-4 mr-2"}),"Export CSV"]}),s&&N.size>0&&d.jsxs("div",{className:"text-sm text-muted-foreground",children:[N.size," selected"]})]})]}),d.jsx("div",{className:"rounded-md border flex-1 min-h-0 overflow-auto relative bg-background",children:d.jsxs(aS,{children:[t&&d.jsx(oT,{children:t}),d.jsx(rS,{className:"sticky top-0 bg-background z-10 shadow-sm",children:d.jsxs(so,{children:[s&&d.jsx(Es,{className:"w-12 bg-background",children:d.jsx(Id,{checked:$e?!0:Pe?"indeterminate":!1,onCheckedChange:te})}),E.map((I,D)=>{const Q=T[I.accessorKey]||I.width,Z=R===D,J=Y===D;return d.jsx(Es,{className:`${I.className||""} ${l&&I.sortable!==!1?"cursor-pointer select-none":""} ${Z?"opacity-50":""} ${J?"border-l-2 border-primary":""} relative group bg-background`,style:{width:Q,minWidth:Q},draggable:f,onDragStart:ne=>ue(ne,D),onDragOver:ne=>xe(ne,D),onDrop:ne=>Ce(ne,D),onDragEnd:De,onClick:()=>l&&I.sortable!==!1&&V(I.accessorKey),children:d.jsxs("div",{className:"flex items-center justify-between",children:[d.jsxs("div",{className:"flex items-center gap-1",children:[f&&d.jsx(es,{className:"h-4 w-4 opacity-0 group-hover:opacity-50 cursor-grab active:cursor-grabbing flex-shrink-0"}),d.jsx("span",{children:I.header}),l&&I.sortable!==!1&&de(I.accessorKey)]}),h&&I.resizable!==!1&&d.jsx("div",{className:"absolute right-0 top-0 h-full w-1 cursor-col-resize hover:bg-primary opacity-0 hover:opacity-100 transition-opacity",onMouseDown:ne=>ee(ne,I.accessorKey),onClick:ne=>ne.stopPropagation()})]})},I.accessorKey)}),y&&d.jsx(Es,{className:"w-24 text-right bg-background",children:"Actions"})]})}),d.jsx(iS,{children:G.length===0?d.jsx(so,{children:d.jsx(Eo,{colSpan:E.length+(s?1:0)+(y?1:0),className:"h-96 text-center text-muted-foreground",children:d.jsxs("div",{className:"flex flex-col items-center justify-center gap-2",children:[d.jsx(Qr,{className:"h-8 w-8 text-muted-foreground/50"}),d.jsx("p",{children:"No results found"}),d.jsx("p",{className:"text-xs text-muted-foreground/50",children:"Try adjusting your filters or search query."})]})})}):d.jsxs(d.Fragment,{children:[G.map((I,D)=>{const Q=($-1)*A+D,Z=ie(I,Q),J=N.has(Z);return d.jsxs(so,{"data-state":J?"selected":void 0,className:S(e.onRowClick&&"cursor-pointer"),onClick:ne=>{if(e.onRowClick&&!ne.defaultPrevented){const Ne=ne.target;if(Ne.closest("button")||Ne.closest('[role="checkbox"]')||Ne.closest("a"))return;e.onRowClick(I)}},children:[s&&d.jsx(Eo,{children:d.jsx(Id,{checked:J,onCheckedChange:ne=>fe(Z,ne)})}),E.map((ne,Ne)=>{const Se=T[ne.accessorKey]||ne.width;return d.jsx(Eo,{className:ne.cellClassName,style:{width:Se,minWidth:Se,maxWidth:Se},children:I[ne.accessorKey]},Ne)}),y&&d.jsx(Eo,{className:"text-right",children:d.jsxs("div",{className:"flex items-center justify-end gap-1",children:[d.jsx(je,{variant:"ghost",size:"icon-sm",onClick:()=>e.onRowEdit?.(I),children:d.jsx(_t,{className:"h-4 w-4"})}),d.jsx(je,{variant:"ghost",size:"icon-sm",onClick:()=>e.onRowDelete?.(I),children:d.jsx(lc,{className:"h-4 w-4 text-destructive"})})]})})]},Z)}),G.length>0&&Array.from({length:Math.max(0,A-G.length)}).map((I,D)=>d.jsx(so,{className:"hover:bg-transparent",children:d.jsx(Eo,{colSpan:E.length+(s?1:0)+(y?1:0),className:"h-[52px] p-0"})},`empty-${D}`))]})})]})}),a&&F.length>0&&d.jsxs("div",{className:"flex items-center justify-between",children:[d.jsxs("div",{className:"flex items-center gap-2",children:[d.jsx("span",{className:"text-sm text-muted-foreground",children:"Rows per page:"}),d.jsxs(Bc,{value:A.toString(),onValueChange:I=>{z(Number(I)),L(1)},children:[d.jsx(mn,{className:"w-20",children:d.jsx(Wc,{})}),d.jsxs(kn,{children:[d.jsx(Ot,{value:"5",children:"5"}),d.jsx(Ot,{value:"10",children:"10"}),d.jsx(Ot,{value:"20",children:"20"}),d.jsx(Ot,{value:"50",children:"50"}),d.jsx(Ot,{value:"100",children:"100"})]})]})]}),d.jsxs("div",{className:"flex items-center gap-2",children:[d.jsxs("span",{className:"text-sm text-muted-foreground",children:["Page ",$," of ",K," (",F.length," total)"]}),d.jsxs("div",{className:"flex items-center gap-1",children:[d.jsx(je,{variant:"outline",size:"icon-sm",onClick:()=>L(1),disabled:$===1,children:d.jsx(Bs,{className:"h-4 w-4"})}),d.jsx(je,{variant:"outline",size:"icon-sm",onClick:()=>L(Math.max(1,$-1)),disabled:$===1,children:d.jsx(Qn,{className:"h-4 w-4"})}),d.jsx(je,{variant:"outline",size:"icon-sm",onClick:()=>L(Math.min(K,$+1)),disabled:$===K,children:d.jsx(Pt,{className:"h-4 w-4"})}),d.jsx(je,{variant:"outline",size:"icon-sm",onClick:()=>L(K),disabled:$===K,children:d.jsx(Ws,{className:"h-4 w-4"})})]})]})]})]})};ae.register("data-table",E2e,{namespace:"ui",label:"Data Table",icon:"table",inputs:[{name:"caption",type:"string",label:"Caption"},{name:"columns",type:"array",label:"Columns",description:"Array of { header, accessorKey, className, width, sortable, filterable, resizable }",required:!0},{name:"data",type:"array",label:"Data",description:"Array of data objects",required:!0},{name:"pagination",type:"boolean",label:"Enable Pagination",defaultValue:!0},{name:"pageSize",type:"number",label:"Page Size",defaultValue:10},{name:"searchable",type:"boolean",label:"Enable Search",defaultValue:!0},{name:"selectable",type:"boolean",label:"Enable Row Selection",defaultValue:!1},{name:"sortable",type:"boolean",label:"Enable Sorting",defaultValue:!0},{name:"exportable",type:"boolean",label:"Enable Export",defaultValue:!1},{name:"rowActions",type:"boolean",label:"Show Row Actions",defaultValue:!1},{name:"resizableColumns",type:"boolean",label:"Enable Column Resizing",defaultValue:!0},{name:"reorderableColumns",type:"boolean",label:"Enable Column Reordering",defaultValue:!0},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{caption:"Enterprise Data Table",pagination:!0,pageSize:10,searchable:!0,selectable:!0,sortable:!0,exportable:!0,rowActions:!0,resizableColumns:!0,reorderableColumns:!0,columns:[{header:"ID",accessorKey:"id",width:"80px"},{header:"Name",accessorKey:"name"},{header:"Email",accessorKey:"email"},{header:"Status",accessorKey:"status"},{header:"Role",accessorKey:"role"}],data:[{id:1,name:"John Doe",email:"john@example.com",status:"Active",role:"Admin"},{id:2,name:"Jane Smith",email:"jane@example.com",status:"Active",role:"User"},{id:3,name:"Bob Johnson",email:"bob@example.com",status:"Inactive",role:"User"},{id:4,name:"Alice Williams",email:"alice@example.com",status:"Active",role:"Manager"},{id:5,name:"Charlie Brown",email:"charlie@example.com",status:"Active",role:"User"},{id:6,name:"Diana Prince",email:"diana@example.com",status:"Active",role:"Admin"},{id:7,name:"Ethan Hunt",email:"ethan@example.com",status:"Inactive",role:"User"},{id:8,name:"Fiona Gallagher",email:"fiona@example.com",status:"Active",role:"User"},{id:9,name:"George Wilson",email:"george@example.com",status:"Active",role:"Manager"},{id:10,name:"Hannah Montana",email:"hannah@example.com",status:"Active",role:"User"},{id:11,name:"Ivan Drago",email:"ivan@example.com",status:"Inactive",role:"User"},{id:12,name:"Julia Roberts",email:"julia@example.com",status:"Active",role:"Admin"}]}});const dS=({section:e,data:t,className:o})=>{const[n,a]=p.useState(e.defaultCollapsed??!1),r=s=>{const l=t?.[s.name]??s.value;if(s.render)return d.jsx(jt,{schema:s.render,data:{...t,value:l}});const u=s.span===1?"col-span-1":s.span===2?"col-span-2":s.span===3?"col-span-3":s.span===4?"col-span-4":s.span===5?"col-span-5":s.span===6?"col-span-6":"";return d.jsxs("div",{className:S("space-y-1",u),children:[d.jsx("div",{className:"text-sm font-medium text-muted-foreground",children:s.label||s.name}),d.jsx("div",{className:"text-sm",children:l!=null?String(l):"-"})]},s.name)},i=d.jsx("div",{className:S("grid gap-4",e.columns===1?"grid-cols-1":e.columns===2?"grid-cols-2":e.columns===3?"grid-cols-3":"grid-cols-2 md:grid-cols-3"),children:e.fields.map(r)});return e.collapsible?d.jsx(jq,{open:!n,onOpenChange:s=>a(!s),className:o,children:d.jsxs(gd,{children:[d.jsx(Hq,{asChild:!0,children:d.jsxs(vd,{className:"cursor-pointer hover:bg-muted/50 transition-colors",children:[d.jsxs(_d,{className:"flex items-center justify-between",children:[d.jsxs("div",{className:"flex items-center gap-2",children:[e.icon&&d.jsx("span",{className:"text-muted-foreground",children:e.icon}),d.jsx("span",{children:e.title})]}),n?d.jsx(Pt,{className:"h-4 w-4"}):d.jsx(Ht,{className:"h-4 w-4"})]}),e.description&&!n&&d.jsx("p",{className:"text-sm text-muted-foreground mt-1",children:e.description})]})}),d.jsx(Vq,{children:d.jsx(bd,{children:i})})]})}):d.jsxs(gd,{className:o,children:[e.title&&d.jsxs(vd,{children:[d.jsxs(_d,{className:"flex items-center gap-2",children:[e.icon&&d.jsx("span",{className:"text-muted-foreground",children:e.icon}),d.jsx("span",{children:e.title})]}),e.description&&d.jsx("p",{className:"text-sm text-muted-foreground mt-1",children:e.description})]}),d.jsx(bd,{children:i})]})},LG=({tabs:e,data:t,className:o})=>{const[n,a]=p.useState(e[0]?.key),r=e.filter(i=>typeof i.visible=="boolean"?i.visible:(typeof i.visible=="string",!0));return d.jsxs(iG,{value:n,onValueChange:a,className:o,children:[d.jsx(aT,{className:"w-full justify-start border-b rounded-none bg-transparent p-0",children:r.map(i=>d.jsx(rT,{value:i.key,className:"relative rounded-none border-b-2 border-transparent data-[state=active]:border-primary data-[state=active]:bg-transparent",children:d.jsxs("div",{className:"flex items-center gap-2",children:[i.icon&&d.jsx("span",{children:i.icon}),d.jsx("span",{children:i.label}),i.badge&&d.jsx(dz,{variant:"secondary",className:"ml-1",children:i.badge})]})},i.key))}),r.map(i=>d.jsx(iT,{value:i.key,className:"mt-4",children:Array.isArray(i.content)?d.jsx("div",{className:"space-y-4",children:i.content.map((s,l)=>d.jsx(jt,{schema:s,data:t},l))}):d.jsx(jt,{schema:i.content,data:t})},i.key))]})},uT=({title:e,type:t,api:o,data:n=[],schema:a,columns:r,className:i})=>{const[s]=p.useState(n),[l,u]=p.useState(!1);p.useEffect(()=>{o&&!n.length&&(u(!0),u(!1))},[o,n]);const y=p.useMemo(()=>{if(a)return a;switch(t){case"grid":case"table":return{type:"data-table",data:s,columns:r||[],pagination:s.length>10,pageSize:10};case"list":return{type:"data-list",data:s};default:return{type:"div",children:"No view configured"}}},[t,s,r,a]);return d.jsxs(gd,{className:i,children:[d.jsx(vd,{children:d.jsxs(_d,{className:"flex items-center justify-between",children:[d.jsx("span",{children:e}),d.jsxs("span",{className:"text-sm font-normal text-muted-foreground",children:[s.length," record",s.length!==1?"s":""]})]})}),d.jsx(bd,{children:l?d.jsx("div",{className:"flex items-center justify-center py-8 text-muted-foreground",children:"Loading..."}):s.length===0?d.jsx("div",{className:"flex items-center justify-center py-8 text-muted-foreground text-sm",children:"No related records found"}):d.jsx(jt,{schema:y})})]})},IG=({schema:e,dataSource:t,className:o,onEdit:n,onDelete:a,onBack:r})=>{const[i,s]=p.useState(e.data),[l,u]=p.useState(!e.data&&!!(e.api&&e.resourceId||t&&e.objectName&&e.resourceId));p.useEffect(()=>{if(e.data){s(e.data),u(!1);return}t&&e.objectName&&e.resourceId?(u(!0),t.findOne(e.objectName,e.resourceId).then(k=>{s(k),u(!1)}).catch(k=>{console.error("Failed to fetch detail data:",k),u(!1)})):e.api&&e.resourceId&&(u(!0),setTimeout(()=>{u(!1)},500))},[e.api,e.resourceId]);const y=p.useCallback(()=>{r?r():e.backUrl?window.location.href=e.backUrl:window.history.back()},[r,e.backUrl]),h=p.useCallback(()=>{n?n():e.editUrl&&(window.location.href=e.editUrl)},[n,e.editUrl]),f=p.useCallback(()=>{const k=e.deleteConfirmation||"Are you sure you want to delete this record?";window.confirm(k)&&a?.()},[a,e.deleteConfirmation]);return l||e.loading?d.jsxs("div",{className:S("space-y-4",o),children:[d.jsx(Ps,{className:"h-10 w-full"}),d.jsx(Ps,{className:"h-64 w-full"}),d.jsx(Ps,{className:"h-48 w-full"})]}):d.jsxs("div",{className:S("space-y-6",o),children:[d.jsxs("div",{className:"flex items-center justify-between",children:[d.jsxs("div",{className:"flex items-center gap-4",children:[(e.showBack??!0)&&d.jsx(je,{variant:"ghost",size:"icon",onClick:y,children:d.jsx(Zc,{className:"h-4 w-4"})}),d.jsxs("div",{children:[d.jsx("h1",{className:"text-2xl font-bold",children:e.title||"Details"}),e.objectName&&d.jsxs("p",{className:"text-sm text-muted-foreground mt-1",children:[e.objectName," #",e.resourceId]})]})]}),d.jsxs("div",{className:"flex items-center gap-2",children:[e.actions?.map((k,m)=>d.jsx(jt,{schema:k,data:i},m)),e.showEdit&&d.jsxs(je,{variant:"outline",onClick:h,children:[d.jsx(_t,{className:"h-4 w-4 mr-2"}),"Edit"]}),e.showDelete&&d.jsxs(je,{variant:"destructive",onClick:f,children:[d.jsx(lc,{className:"h-4 w-4 mr-2"}),"Delete"]}),d.jsx(je,{variant:"ghost",size:"icon",children:d.jsx(Ho,{className:"h-4 w-4"})})]})]}),e.header&&d.jsx("div",{children:d.jsx(jt,{schema:e.header,data:i})}),e.sections&&e.sections.length>0&&d.jsx("div",{className:"space-y-4",children:e.sections.map((k,m)=>d.jsx(dS,{section:k,data:i},m))}),e.fields&&e.fields.length>0&&!e.sections?.length&&d.jsx(dS,{section:{fields:e.fields,columns:e.columns||2},data:i}),e.tabs&&e.tabs.length>0&&d.jsx(LG,{tabs:e.tabs,data:i}),e.related&&e.related.length>0&&d.jsxs("div",{className:"space-y-4",children:[d.jsx("h2",{className:"text-xl font-semibold",children:"Related"}),e.related.map((k,m)=>d.jsx(uT,{title:k.title,type:k.type,api:k.api,data:k.data,columns:k.columns},m))]}),e.footer&&d.jsx("div",{children:d.jsx(jt,{schema:e.footer,data:i})})]})};ae.register("detail-view",IG,{namespace:"plugin-detail",label:"Detail View",category:"Views",icon:"FileText",inputs:[{name:"title",type:"string",label:"Title"},{name:"objectName",type:"string",label:"Object Name"},{name:"resourceId",type:"string",label:"Resource ID"},{name:"api",type:"string",label:"API Endpoint"},{name:"data",type:"object",label:"Data"},{name:"sections",type:"array",label:"Sections"},{name:"fields",type:"array",label:"Fields"},{name:"tabs",type:"array",label:"Tabs"},{name:"related",type:"array",label:"Related Lists"},{name:"actions",type:"array",label:"Actions"},{name:"showBack",type:"boolean",label:"Show Back Button",defaultValue:!0},{name:"showEdit",type:"boolean",label:"Show Edit Button",defaultValue:!1},{name:"showDelete",type:"boolean",label:"Show Delete Button",defaultValue:!1}],defaultProps:{title:"Detail View",showBack:!0,showEdit:!1,showDelete:!1,sections:[],fields:[],tabs:[],related:[]}}),ae.register("detail-section",dS,{namespace:"plugin-detail",label:"Detail Section",category:"Detail Components",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"fields",type:"array",label:"Fields",required:!0},{name:"collapsible",type:"boolean",label:"Collapsible",defaultValue:!1},{name:"defaultCollapsed",type:"boolean",label:"Default Collapsed",defaultValue:!1},{name:"columns",type:"number",label:"Columns",defaultValue:2}]}),ae.register("related-list",uT,{namespace:"plugin-detail",label:"Related List",category:"Detail Components",inputs:[{name:"title",type:"string",label:"Title",required:!0},{name:"type",type:"enum",label:"Type",enum:[{label:"List",value:"list"},{label:"Grid",value:"grid"},{label:"Table",value:"table"}],defaultValue:"table"},{name:"api",type:"string",label:"API Endpoint"},{name:"data",type:"array",label:"Data"},{name:"columns",type:"array",label:"Columns"}]}),qt.DetailSection=dS,qt.DetailTabs=LG,qt.DetailView=IG,qt.RelatedList=uT,Object.defineProperty(qt,Symbol.toStringTag,{value:"Module"})}));
|