@noobsociety/nsds 0.3.1 → 0.4.1
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/CHANGELOG.md +34 -1
- package/CONTRIBUTING.md +43 -2
- package/README.md +87 -36
- package/SECURITY.md +38 -4
- package/dist/client/index.cjs +1 -0
- package/dist/client/index.d.cts +6 -0
- package/dist/client/index.d.ts +6 -0
- package/dist/client/index.js +5 -0
- package/dist/components/_card-base.css +99 -0
- package/dist/components/hud/HUDBar.d.ts +16 -3
- package/dist/components/hud/HUDChat.d.ts +26 -0
- package/dist/components/hud/HUDJoystick.d.ts +21 -0
- package/dist/components/hud/HUDMinimap.d.ts +14 -0
- package/dist/components/hud/HUDPanel.d.ts +25 -0
- package/dist/components/hud/HUDTabWindow.d.ts +37 -0
- package/dist/components/hud-editor.css +197 -0
- package/dist/components/icons/RPGIcon.d.ts +15 -11
- package/dist/components/icons/registry.d.ts +37 -0
- package/dist/components/primitives.css +50 -20
- package/dist/components/react/index.d.ts +12 -2
- package/dist/components/scene-builder.css +740 -0
- package/dist/components/scene-builder.js +3039 -0
- package/dist/components/shared/constants.d.ts +41 -0
- package/dist/components/shared/styles.d.ts +1 -42
- package/dist/index.cjs +1 -1
- package/dist/index.js +6173 -1821
- package/dist/registry-BizUEm6W.js +136 -0
- package/dist/registry-Cyq-qspU.cjs +1 -0
- package/dist/styles.css +1 -0
- package/dist/tokens/base.css +17 -4
- package/dist/tokens/colors.css +57 -53
- package/dist/tokens/hud.css +119 -78
- package/dist/tokens/motion.css +57 -23
- package/dist/tokens/spacing.css +39 -39
- package/dist/tokens/typography.css +20 -20
- package/package.json +37 -8
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export declare const nsTokens: {
|
|
2
|
+
readonly gold: "var(--ns-gold)";
|
|
3
|
+
readonly pink: "var(--ns-pink)";
|
|
4
|
+
readonly purple: "var(--ns-purple)";
|
|
5
|
+
readonly cyan: "var(--ns-cyan)";
|
|
6
|
+
readonly green: "var(--ns-green)";
|
|
7
|
+
readonly orange: "var(--ns-orange)";
|
|
8
|
+
readonly later: "var(--ns-ink-faint)";
|
|
9
|
+
};
|
|
10
|
+
/** @deprecated Use nsTokens */
|
|
11
|
+
export declare const NS: {
|
|
12
|
+
readonly gold: "var(--ns-gold)";
|
|
13
|
+
readonly pink: "var(--ns-pink)";
|
|
14
|
+
readonly purple: "var(--ns-purple)";
|
|
15
|
+
readonly cyan: "var(--ns-cyan)";
|
|
16
|
+
readonly green: "var(--ns-green)";
|
|
17
|
+
readonly orange: "var(--ns-orange)";
|
|
18
|
+
readonly later: "var(--ns-ink-faint)";
|
|
19
|
+
};
|
|
20
|
+
export declare const questStatus: {
|
|
21
|
+
readonly done: {
|
|
22
|
+
readonly className: "ns-quest-card--done";
|
|
23
|
+
readonly label: "HOLDS";
|
|
24
|
+
readonly icon: "✓";
|
|
25
|
+
};
|
|
26
|
+
readonly active: {
|
|
27
|
+
readonly className: "ns-quest-card--active";
|
|
28
|
+
readonly label: "BUILDING";
|
|
29
|
+
readonly icon: "▶";
|
|
30
|
+
};
|
|
31
|
+
readonly planned: {
|
|
32
|
+
readonly className: "ns-quest-card--planned";
|
|
33
|
+
readonly label: "PLANNED";
|
|
34
|
+
readonly icon: "◌";
|
|
35
|
+
};
|
|
36
|
+
readonly locked: {
|
|
37
|
+
readonly className: "ns-quest-card--locked";
|
|
38
|
+
readonly label: "LATER";
|
|
39
|
+
readonly icon: "✦";
|
|
40
|
+
};
|
|
41
|
+
};
|
|
@@ -3,45 +3,4 @@ export type NSStyle = CSSProperties & Record<`--${string}`, string | number | un
|
|
|
3
3
|
export type ClassValue = string | false | null | undefined;
|
|
4
4
|
export declare const cx: (...parts: ClassValue[]) => string;
|
|
5
5
|
export declare function mergeStyles(base: NSStyle, override?: NSStyle): NSStyle;
|
|
6
|
-
|
|
7
|
-
export declare const nsTokens: {
|
|
8
|
-
readonly gold: "var(--ns-gold)";
|
|
9
|
-
readonly pink: "var(--ns-pink)";
|
|
10
|
-
readonly purple: "var(--ns-purple)";
|
|
11
|
-
readonly cyan: "var(--ns-cyan)";
|
|
12
|
-
readonly green: "var(--ns-green)";
|
|
13
|
-
readonly orange: "var(--ns-orange)";
|
|
14
|
-
readonly later: "var(--ns-ink-faint)";
|
|
15
|
-
};
|
|
16
|
-
/** @deprecated Use nsTokens */
|
|
17
|
-
export declare const NS: {
|
|
18
|
-
readonly gold: "var(--ns-gold)";
|
|
19
|
-
readonly pink: "var(--ns-pink)";
|
|
20
|
-
readonly purple: "var(--ns-purple)";
|
|
21
|
-
readonly cyan: "var(--ns-cyan)";
|
|
22
|
-
readonly green: "var(--ns-green)";
|
|
23
|
-
readonly orange: "var(--ns-orange)";
|
|
24
|
-
readonly later: "var(--ns-ink-faint)";
|
|
25
|
-
};
|
|
26
|
-
export declare const questStatus: {
|
|
27
|
-
readonly done: {
|
|
28
|
-
readonly className: "ns-quest-card--done";
|
|
29
|
-
readonly label: "HOLDS";
|
|
30
|
-
readonly icon: "✓";
|
|
31
|
-
};
|
|
32
|
-
readonly active: {
|
|
33
|
-
readonly className: "ns-quest-card--active";
|
|
34
|
-
readonly label: "BUILDING";
|
|
35
|
-
readonly icon: "▶";
|
|
36
|
-
};
|
|
37
|
-
readonly planned: {
|
|
38
|
-
readonly className: "ns-quest-card--planned";
|
|
39
|
-
readonly label: "PLANNED";
|
|
40
|
-
readonly icon: "◌";
|
|
41
|
-
};
|
|
42
|
-
readonly locked: {
|
|
43
|
-
readonly className: "ns-quest-card--locked";
|
|
44
|
-
readonly label: "LATER";
|
|
45
|
-
readonly icon: "✦";
|
|
46
|
-
};
|
|
47
|
-
};
|
|
6
|
+
export { NS, nsTokens, questStatus } from './constants.js';
|
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});let e=require("react/jsx-runtime");var t=(...e)=>e.filter(Boolean).join(` `);function n(e,t){return t?{...e,...t}:e}var r={gold:`var(--ns-gold)`,pink:`var(--ns-pink)`,purple:`var(--ns-purple)`,cyan:`var(--ns-cyan)`,green:`var(--ns-green)`,orange:`var(--ns-orange)`,later:`var(--ns-ink-faint)`},i={done:{className:`ns-quest-card--done`,label:`HOLDS`,icon:`✓`},active:{className:`ns-quest-card--active`,label:`BUILDING`,icon:`▶`},planned:{className:`ns-quest-card--planned`,label:`PLANNED`,icon:`◌`},locked:{className:`ns-quest-card--locked`,label:`LATER`,icon:`✦`}},a=new Set([`play`,`ghost`]),o=new Set([`sm`,`md`,`lg`]);function s({variant:n=`play`,size:r=`md`,href:i,onClick:s,children:c,disabled:l=!1,className:u,type:d=`button`,...f}){let p=a.has(n)?n:`play`,m=o.has(r)?r:`md`,h=t(`ns-button`,`ns-button--${p}`,`ns-button--${m}`,u),g={...f,className:h,onClick:l?void 0:s};return i?(0,e.jsx)(`a`,{...g,href:l?void 0:i,"aria-disabled":l||void 0,tabIndex:l?-1:f.tabIndex,children:c}):(0,e.jsx)(`button`,{...g,type:d,disabled:l,children:c})}function c({icon:i,title:a,body:o,tag:s,iconColor:c=r.gold,className:l,style:u,...d}){return(0,e.jsxs)(`li`,{...d,className:t(`ns-card ns-feature-card`,l),style:n({"--ns-feature-accent":c},u),children:[(0,e.jsx)(`span`,{className:`ns-icon-slot ns-feature-card__icon`,"aria-hidden":`true`,children:i}),(0,e.jsxs)(`div`,{children:[(0,e.jsx)(`h3`,{className:`ns-feature-card__title`,children:a}),(0,e.jsx)(`p`,{className:`ns-feature-card__body`,children:o})]}),s&&(0,e.jsx)(`span`,{className:`ns-tag ns-feature-card__tag`,children:s})]})}function l({gate:n,title:r,body:a,status:o=`locked`,className:s,...c}){let l=i[o]||i.locked;return(0,e.jsxs)(`li`,{...c,className:t(`ns-quest-card`,l.className,s),children:[(0,e.jsx)(`span`,{className:`ns-quest-card__icon`,"aria-hidden":`true`,children:l.icon}),(0,e.jsxs)(`div`,{className:`ns-quest-card__body`,children:[(0,e.jsx)(`p`,{className:`ns-quest-card__title`,children:`Gate ${n} · ${r}`}),(0,e.jsx)(`p`,{className:`ns-quest-card__desc`,children:a}),(0,e.jsx)(`span`,{className:`ns-status-pill`,children:l.label})]})]})}var u=`var(--ns-font-pixel, "Press Start 2P", monospace)`;function d({value:t=40,max:n=40,fillColor:r=`var(--hud-hp-fill, #4caf73)`,trackColor:i=`var(--hud-track, rgba(255, 255, 255, 0.10))`,height:a=14,style:o,role:s=`meter`,...c}){let l=n>0?Math.max(0,Math.min(100,t/n*100)):0;return(0,e.jsxs)(`div`,{...c,role:s,"aria-valuemin":0,"aria-valuemax":n,"aria-valuenow":Math.max(0,Math.min(t,n)),style:{position:`relative`,background:i,height:a,overflow:`hidden`,fontFamily:u,...o},children:[(0,e.jsx)(`div`,{style:{position:`absolute`,inset:0,width:`${l}%`,background:r,transition:`width .35s ease-out`}}),(0,e.jsxs)(`span`,{style:{position:`absolute`,inset:0,display:`flex`,alignItems:`center`,paddingLeft:4,fontSize:4,color:`#fff`,pointerEvents:`none`},children:[t,` / `,n]})]})}function f({direction:t=`vertical`,color:n=`var(--ns-line)`,style:r,role:i=`separator`,...a}){let o=t===`vertical`;return(0,e.jsx)(`div`,{...a,role:i,"aria-orientation":t,style:{width:o?`1px`:`100%`,height:o?`100%`:`1px`,background:n,flexShrink:0,alignSelf:`stretch`,...r}})}var p=`var(--ns-font-pixel, "Press Start 2P", monospace)`,m={left:`flex-start`,center:`center`,right:`flex-end`};function h({text:t=`Label`,align:n=`left`,scale:r=1,color:i=`var(--ns-ink)`,fontSize:a=5,style:o,...s}){return(0,e.jsx)(`div`,{...s,style:{display:`flex`,alignItems:`center`,justifyContent:m[n]||m.left,paddingLeft:n===`right`?0:3,paddingRight:n===`left`?0:3,fontFamily:p,fontSize:a*r,color:i,whiteSpace:`nowrap`,overflow:`hidden`,width:`100%`,height:`100%`,...o},children:t})}function g(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`line`,{x1:`13`,y1:`2`,x2:`4`,y2:`11`,stroke:`#cfd8e2`,strokeWidth:`2`,strokeLinecap:`square`}),(0,e.jsx)(`line`,{x1:`6`,y1:`5`,x2:`10`,y2:`9`,stroke:`#e6db74`,strokeWidth:`2`,strokeLinecap:`square`}),(0,e.jsx)(`line`,{x1:`4`,y1:`10`,x2:`2`,y2:`13`,stroke:`#b07040`,strokeWidth:`1.5`,strokeLinecap:`square`})]})}function _(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`3`,y:`1`,width:`3`,height:`2`,fill:`#8a6540`}),(0,e.jsx)(`rect`,{x:`2`,y:`3`,width:`2`,height:`10`,fill:`#8a6540`}),(0,e.jsx)(`rect`,{x:`3`,y:`13`,width:`3`,height:`2`,fill:`#8a6540`}),(0,e.jsx)(`rect`,{x:`6`,y:`2`,width:`1`,height:`1`,fill:`#cfd8e2`}),(0,e.jsx)(`rect`,{x:`7`,y:`3`,width:`1`,height:`10`,fill:`#cfd8e2`}),(0,e.jsx)(`rect`,{x:`6`,y:`13`,width:`1`,height:`1`,fill:`#cfd8e2`}),(0,e.jsx)(`rect`,{x:`7`,y:`7`,width:`7`,height:`2`,fill:`#c8a878`}),(0,e.jsx)(`rect`,{x:`13`,y:`6`,width:`2`,height:`1`,fill:`#cfd8e2`}),(0,e.jsx)(`rect`,{x:`14`,y:`7`,width:`2`,height:`2`,fill:`#cfd8e2`}),(0,e.jsx)(`rect`,{x:`13`,y:`9`,width:`2`,height:`1`,fill:`#cfd8e2`}),(0,e.jsx)(`rect`,{x:`7`,y:`5`,width:`2`,height:`2`,fill:`#ae81ff`}),(0,e.jsx)(`rect`,{x:`7`,y:`9`,width:`2`,height:`2`,fill:`#ae81ff`})]})}function v(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#c8a8ff`}),(0,e.jsx)(`rect`,{x:`4`,y:`2`,width:`8`,height:`4`,fill:`#ae81ff`}),(0,e.jsx)(`rect`,{x:`5`,y:`6`,width:`6`,height:`1`,fill:`#c8a8ff`}),(0,e.jsx)(`rect`,{x:`6`,y:`3`,width:`4`,height:`2`,fill:`#d4b8ff`}),(0,e.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`8`,fill:`#8a6540`}),(0,e.jsx)(`rect`,{x:`6`,y:`10`,width:`4`,height:`1`,fill:`#b07040`})]})}function y(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`2`,y:`1`,width:`2`,height:`8`,fill:`#cfd8e2`}),(0,e.jsx)(`rect`,{x:`2`,y:`9`,width:`2`,height:`3`,fill:`#a8b0bc`}),(0,e.jsx)(`rect`,{x:`12`,y:`1`,width:`2`,height:`8`,fill:`#cfd8e2`}),(0,e.jsx)(`rect`,{x:`12`,y:`9`,width:`2`,height:`3`,fill:`#a8b0bc`}),(0,e.jsx)(`rect`,{x:`2`,y:`8`,width:`12`,height:`2`,fill:`#e6db74`}),(0,e.jsx)(`rect`,{x:`6`,y:`10`,width:`4`,height:`5`,fill:`#8a6540`}),(0,e.jsx)(`rect`,{x:`3`,y:`0`,width:`1`,height:`1`,fill:`#eef0f4`}),(0,e.jsx)(`rect`,{x:`12`,y:`0`,width:`1`,height:`1`,fill:`#eef0f4`})]})}function b(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`2`,y:`2`,width:`2`,height:`12`,fill:`#6a4a6a`}),(0,e.jsx)(`rect`,{x:`4`,y:`2`,width:`10`,height:`12`,fill:`#8855aa`}),(0,e.jsx)(`rect`,{x:`13`,y:`3`,width:`1`,height:`10`,fill:`#f4f0e8`}),(0,e.jsx)(`rect`,{x:`7`,y:`4`,width:`2`,height:`1`,fill:`#c8a8ff`}),(0,e.jsx)(`rect`,{x:`6`,y:`5`,width:`4`,height:`1`,fill:`#c8a8ff`}),(0,e.jsx)(`rect`,{x:`7`,y:`6`,width:`2`,height:`1`,fill:`#c8a8ff`}),(0,e.jsx)(`rect`,{x:`6`,y:`8`,width:`4`,height:`1`,fill:`#e6db74`}),(0,e.jsx)(`rect`,{x:`7`,y:`9`,width:`2`,height:`2`,fill:`#e6db74`})]})}function x(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`4`,y:`1`,width:`8`,height:`1`,fill:`#a8b0bc`}),(0,e.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`5`,fill:`#a8b0bc`}),(0,e.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`#cfd8e2`}),(0,e.jsx)(`rect`,{x:`3`,y:`3`,width:`1`,height:`3`,fill:`#cfd8e2`}),(0,e.jsx)(`rect`,{x:`3`,y:`7`,width:`10`,height:`1`,fill:`#5a6570`}),(0,e.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`8`,fill:`#8a6540`}),(0,e.jsx)(`rect`,{x:`6`,y:`10`,width:`4`,height:`1`,fill:`#b07040`})]})}function S(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`2`,y:`6`,width:`12`,height:`4`,fill:`#7a7a8a`}),(0,e.jsx)(`rect`,{x:`6`,y:`2`,width:`4`,height:`12`,fill:`#7a7a8a`}),(0,e.jsx)(`rect`,{x:`3`,y:`3`,width:`2`,height:`2`,fill:`#7a7a8a`}),(0,e.jsx)(`rect`,{x:`11`,y:`3`,width:`2`,height:`2`,fill:`#7a7a8a`}),(0,e.jsx)(`rect`,{x:`3`,y:`11`,width:`2`,height:`2`,fill:`#7a7a8a`}),(0,e.jsx)(`rect`,{x:`11`,y:`11`,width:`2`,height:`2`,fill:`#7a7a8a`}),(0,e.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`2`,fill:`#b0b0c0`}),(0,e.jsx)(`rect`,{x:`7`,y:`4`,width:`2`,height:`1`,fill:`#b0b0c0`}),(0,e.jsx)(`rect`,{x:`7`,y:`11`,width:`2`,height:`1`,fill:`#b0b0c0`}),(0,e.jsx)(`rect`,{x:`4`,y:`7`,width:`1`,height:`2`,fill:`#b0b0c0`}),(0,e.jsx)(`rect`,{x:`11`,y:`7`,width:`1`,height:`2`,fill:`#b0b0c0`})]})}function C(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`7`,y:`2`,width:`2`,height:`2`,fill:`#c8a050`}),(0,e.jsx)(`rect`,{x:`6`,y:`4`,width:`4`,height:`2`,fill:`#c8a050`}),(0,e.jsx)(`rect`,{x:`5`,y:`6`,width:`6`,height:`2`,fill:`#8b6914`}),(0,e.jsx)(`rect`,{x:`4`,y:`8`,width:`8`,height:`2`,fill:`#8b6914`}),(0,e.jsx)(`rect`,{x:`3`,y:`10`,width:`10`,height:`2`,fill:`#6a5010`}),(0,e.jsx)(`rect`,{x:`1`,y:`12`,width:`14`,height:`3`,fill:`#5a4008`}),(0,e.jsx)(`rect`,{x:`7`,y:`2`,width:`2`,height:`1`,fill:`#f0ece0`}),(0,e.jsx)(`rect`,{x:`6`,y:`3`,width:`4`,height:`1`,fill:`#f0ece0`}),(0,e.jsx)(`rect`,{x:`5`,y:`8`,width:`1`,height:`1`,fill:`#a07820`}),(0,e.jsx)(`rect`,{x:`10`,y:`9`,width:`1`,height:`1`,fill:`#a07820`})]})}function w(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`2`,y:`4`,width:`10`,height:`1`,fill:`#5dcaa5`}),(0,e.jsx)(`rect`,{x:`3`,y:`5`,width:`2`,height:`1`,fill:`#5dcaa5`}),(0,e.jsx)(`rect`,{x:`12`,y:`3`,width:`2`,height:`2`,fill:`#5dcaa5`}),(0,e.jsx)(`rect`,{x:`13`,y:`5`,width:`1`,height:`1`,fill:`#5dcaa5`}),(0,e.jsx)(`rect`,{x:`1`,y:`7`,width:`11`,height:`2`,fill:`#5dcaa5`}),(0,e.jsx)(`rect`,{x:`12`,y:`6`,width:`2`,height:`4`,fill:`#5dcaa5`}),(0,e.jsx)(`rect`,{x:`11`,y:`10`,width:`2`,height:`1`,fill:`#5dcaa5`}),(0,e.jsx)(`rect`,{x:`2`,y:`12`,width:`9`,height:`1`,fill:`#5dcaa5`}),(0,e.jsx)(`rect`,{x:`2`,y:`11`,width:`2`,height:`1`,fill:`#5dcaa5`}),(0,e.jsx)(`rect`,{x:`11`,y:`12`,width:`2`,height:`2`,fill:`#5dcaa5`}),(0,e.jsx)(`rect`,{x:`10`,y:`14`,width:`2`,height:`1`,fill:`#5dcaa5`}),(0,e.jsx)(`rect`,{x:`2`,y:`3`,width:`8`,height:`1`,fill:`#90e8cc`}),(0,e.jsx)(`rect`,{x:`2`,y:`8`,width:`9`,height:`1`,fill:`#90e8cc`})]})}function T(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`6`,y:`1`,width:`4`,height:`1`,fill:`#378add`}),(0,e.jsx)(`rect`,{x:`5`,y:`2`,width:`6`,height:`2`,fill:`#378add`}),(0,e.jsx)(`rect`,{x:`4`,y:`4`,width:`8`,height:`6`,fill:`#378add`}),(0,e.jsx)(`rect`,{x:`5`,y:`10`,width:`6`,height:`2`,fill:`#378add`}),(0,e.jsx)(`rect`,{x:`6`,y:`12`,width:`4`,height:`2`,fill:`#378add`}),(0,e.jsx)(`rect`,{x:`7`,y:`14`,width:`2`,height:`1`,fill:`#378add`}),(0,e.jsx)(`rect`,{x:`6`,y:`4`,width:`3`,height:`4`,fill:`#70b8f0`}),(0,e.jsx)(`rect`,{x:`7`,y:`3`,width:`2`,height:`1`,fill:`#70b8f0`}),(0,e.jsx)(`rect`,{x:`5`,y:`7`,width:`2`,height:`1`,fill:`#1a5a9a`}),(0,e.jsx)(`rect`,{x:`9`,y:`8`,width:`2`,height:`1`,fill:`#1a5a9a`})]})}function E(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`4`,y:`11`,width:`8`,height:`4`,fill:`#ba7517`}),(0,e.jsx)(`rect`,{x:`3`,y:`8`,width:`10`,height:`3`,fill:`#ba7517`}),(0,e.jsx)(`rect`,{x:`4`,y:`5`,width:`8`,height:`3`,fill:`#ba7517`}),(0,e.jsx)(`rect`,{x:`5`,y:`3`,width:`6`,height:`2`,fill:`#ba7517`}),(0,e.jsx)(`rect`,{x:`6`,y:`1`,width:`4`,height:`2`,fill:`#ba7517`}),(0,e.jsx)(`rect`,{x:`5`,y:`9`,width:`6`,height:`5`,fill:`#e8882a`}),(0,e.jsx)(`rect`,{x:`6`,y:`7`,width:`4`,height:`2`,fill:`#e8882a`}),(0,e.jsx)(`rect`,{x:`6`,y:`10`,width:`4`,height:`3`,fill:`#e6db74`}),(0,e.jsx)(`rect`,{x:`7`,y:`9`,width:`2`,height:`1`,fill:`#e6db74`})]})}function D(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`5`,y:`2`,width:`6`,height:`2`,fill:`#888780`}),(0,e.jsx)(`rect`,{x:`3`,y:`4`,width:`8`,height:`8`,fill:`#888780`}),(0,e.jsx)(`rect`,{x:`5`,y:`12`,width:`6`,height:`2`,fill:`#888780`}),(0,e.jsx)(`rect`,{x:`4`,y:`3`,width:`1`,height:`10`,fill:`#888780`}),(0,e.jsx)(`rect`,{x:`8`,y:`4`,width:`4`,height:`8`,fill:`#1a1a20`}),(0,e.jsx)(`rect`,{x:`7`,y:`5`,width:`5`,height:`6`,fill:`#1a1a20`}),(0,e.jsx)(`rect`,{x:`11`,y:`2`,width:`1`,height:`1`,fill:`#c8c8d0`}),(0,e.jsx)(`rect`,{x:`13`,y:`5`,width:`1`,height:`1`,fill:`#c8c8d0`}),(0,e.jsx)(`rect`,{x:`12`,y:`9`,width:`1`,height:`1`,fill:`#c8c8d0`})]})}function O(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`5`,y:`5`,width:`6`,height:`6`,fill:`#fac775`}),(0,e.jsx)(`rect`,{x:`6`,y:`4`,width:`4`,height:`1`,fill:`#fac775`}),(0,e.jsx)(`rect`,{x:`6`,y:`11`,width:`4`,height:`1`,fill:`#fac775`}),(0,e.jsx)(`rect`,{x:`4`,y:`6`,width:`1`,height:`4`,fill:`#fac775`}),(0,e.jsx)(`rect`,{x:`11`,y:`6`,width:`1`,height:`4`,fill:`#fac775`}),(0,e.jsx)(`rect`,{x:`7`,y:`1`,width:`2`,height:`3`,fill:`#fac775`}),(0,e.jsx)(`rect`,{x:`7`,y:`12`,width:`2`,height:`3`,fill:`#fac775`}),(0,e.jsx)(`rect`,{x:`1`,y:`7`,width:`3`,height:`2`,fill:`#fac775`}),(0,e.jsx)(`rect`,{x:`12`,y:`7`,width:`3`,height:`2`,fill:`#fac775`}),(0,e.jsx)(`rect`,{x:`3`,y:`3`,width:`2`,height:`2`,fill:`#fac775`}),(0,e.jsx)(`rect`,{x:`11`,y:`3`,width:`2`,height:`2`,fill:`#fac775`}),(0,e.jsx)(`rect`,{x:`3`,y:`11`,width:`2`,height:`2`,fill:`#fac775`}),(0,e.jsx)(`rect`,{x:`11`,y:`11`,width:`2`,height:`2`,fill:`#fac775`}),(0,e.jsx)(`rect`,{x:`6`,y:`6`,width:`4`,height:`4`,fill:`#fff8e0`})]})}function k(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`2`,fill:`#7f77dd`}),(0,e.jsx)(`rect`,{x:`3`,y:`3`,width:`10`,height:`2`,fill:`#7f77dd`}),(0,e.jsx)(`rect`,{x:`2`,y:`5`,width:`12`,height:`6`,fill:`#7f77dd`}),(0,e.jsx)(`rect`,{x:`3`,y:`11`,width:`10`,height:`2`,fill:`#7f77dd`}),(0,e.jsx)(`rect`,{x:`5`,y:`13`,width:`6`,height:`2`,fill:`#7f77dd`}),(0,e.jsx)(`rect`,{x:`4`,y:`4`,width:`8`,height:`8`,fill:`#1a1828`}),(0,e.jsx)(`rect`,{x:`5`,y:`3`,width:`6`,height:`1`,fill:`#1a1828`}),(0,e.jsx)(`rect`,{x:`5`,y:`12`,width:`6`,height:`1`,fill:`#1a1828`}),(0,e.jsx)(`rect`,{x:`3`,y:`5`,width:`1`,height:`6`,fill:`#1a1828`}),(0,e.jsx)(`rect`,{x:`12`,y:`5`,width:`1`,height:`6`,fill:`#1a1828`}),(0,e.jsx)(`rect`,{x:`6`,y:`6`,width:`4`,height:`4`,fill:`#4a44aa`}),(0,e.jsx)(`rect`,{x:`7`,y:`5`,width:`2`,height:`1`,fill:`#4a44aa`}),(0,e.jsx)(`rect`,{x:`7`,y:`10`,width:`2`,height:`1`,fill:`#4a44aa`}),(0,e.jsx)(`rect`,{x:`5`,y:`7`,width:`1`,height:`2`,fill:`#4a44aa`}),(0,e.jsx)(`rect`,{x:`10`,y:`7`,width:`1`,height:`2`,fill:`#4a44aa`}),(0,e.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`2`,fill:`#c8c0ff`})]})}function A(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`5`,fill:`#e8c87a`}),(0,e.jsx)(`rect`,{x:`7`,y:`6`,width:`2`,height:`1`,fill:`#d4a85a`}),(0,e.jsx)(`rect`,{x:`3`,y:`7`,width:`10`,height:`5`,fill:`#c8873a`}),(0,e.jsx)(`rect`,{x:`1`,y:`7`,width:`2`,height:`4`,fill:`#c8873a`}),(0,e.jsx)(`rect`,{x:`13`,y:`7`,width:`2`,height:`4`,fill:`#c8873a`}),(0,e.jsx)(`rect`,{x:`4`,y:`12`,width:`3`,height:`3`,fill:`#8a5c2a`}),(0,e.jsx)(`rect`,{x:`9`,y:`12`,width:`3`,height:`3`,fill:`#8a5c2a`})]})}function j(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`2`,y:`1`,width:`3`,height:`4`,fill:`#c8a060`}),(0,e.jsx)(`rect`,{x:`11`,y:`1`,width:`3`,height:`4`,fill:`#c8a060`}),(0,e.jsx)(`rect`,{x:`3`,y:`2`,width:`1`,height:`2`,fill:`#e8886a`}),(0,e.jsx)(`rect`,{x:`12`,y:`2`,width:`1`,height:`2`,fill:`#e8886a`}),(0,e.jsx)(`rect`,{x:`3`,y:`4`,width:`10`,height:`6`,fill:`#c8a060`}),(0,e.jsx)(`rect`,{x:`5`,y:`8`,width:`6`,height:`3`,fill:`#d4b070`}),(0,e.jsx)(`rect`,{x:`7`,y:`8`,width:`2`,height:`1`,fill:`#5a3020`}),(0,e.jsx)(`rect`,{x:`4`,y:`6`,width:`3`,height:`2`,fill:`#e8a020`}),(0,e.jsx)(`rect`,{x:`9`,y:`6`,width:`3`,height:`2`,fill:`#e8a020`}),(0,e.jsx)(`rect`,{x:`5`,y:`6`,width:`1`,height:`2`,fill:`#1a1008`}),(0,e.jsx)(`rect`,{x:`10`,y:`6`,width:`1`,height:`2`,fill:`#1a1008`}),(0,e.jsx)(`rect`,{x:`3`,y:`11`,width:`10`,height:`4`,fill:`#a87840`}),(0,e.jsx)(`rect`,{x:`1`,y:`11`,width:`2`,height:`3`,fill:`#a87840`}),(0,e.jsx)(`rect`,{x:`13`,y:`11`,width:`2`,height:`3`,fill:`#a87840`})]})}function M(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`3`,y:`1`,width:`2`,height:`5`,fill:`#cc3030`}),(0,e.jsx)(`rect`,{x:`11`,y:`1`,width:`2`,height:`5`,fill:`#cc3030`}),(0,e.jsx)(`rect`,{x:`2`,y:`1`,width:`2`,height:`2`,fill:`#cc3030`}),(0,e.jsx)(`rect`,{x:`12`,y:`1`,width:`2`,height:`2`,fill:`#cc3030`}),(0,e.jsx)(`rect`,{x:`3`,y:`5`,width:`10`,height:`6`,fill:`#7a2a2a`}),(0,e.jsx)(`rect`,{x:`4`,y:`7`,width:`3`,height:`2`,fill:`#ff2020`}),(0,e.jsx)(`rect`,{x:`9`,y:`7`,width:`3`,height:`2`,fill:`#ff2020`}),(0,e.jsx)(`rect`,{x:`5`,y:`7`,width:`1`,height:`2`,fill:`#ff8080`}),(0,e.jsx)(`rect`,{x:`10`,y:`7`,width:`1`,height:`2`,fill:`#ff8080`}),(0,e.jsx)(`rect`,{x:`6`,y:`11`,width:`1`,height:`2`,fill:`#f0e8d0`}),(0,e.jsx)(`rect`,{x:`9`,y:`11`,width:`1`,height:`2`,fill:`#f0e8d0`}),(0,e.jsx)(`rect`,{x:`2`,y:`12`,width:`12`,height:`4`,fill:`#5a1a1a`}),(0,e.jsx)(`rect`,{x:`1`,y:`12`,width:`2`,height:`3`,fill:`#5a1a1a`}),(0,e.jsx)(`rect`,{x:`13`,y:`12`,width:`2`,height:`3`,fill:`#5a1a1a`})]})}function N(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`4`,y:`1`,width:`8`,height:`1`,fill:`#e6db74`}),(0,e.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`#e6db74`}),(0,e.jsx)(`rect`,{x:`3`,y:`3`,width:`2`,height:`1`,fill:`#e6db74`}),(0,e.jsx)(`rect`,{x:`11`,y:`3`,width:`2`,height:`1`,fill:`#e6db74`}),(0,e.jsx)(`rect`,{x:`5`,y:`4`,width:`6`,height:`5`,fill:`#f4e4c0`}),(0,e.jsx)(`rect`,{x:`6`,y:`6`,width:`2`,height:`1`,fill:`#6090e0`}),(0,e.jsx)(`rect`,{x:`10`,y:`6`,width:`2`,height:`1`,fill:`#6090e0`}),(0,e.jsx)(`rect`,{x:`1`,y:`9`,width:`4`,height:`5`,fill:`#f0f0f8`}),(0,e.jsx)(`rect`,{x:`11`,y:`9`,width:`4`,height:`5`,fill:`#f0f0f8`}),(0,e.jsx)(`rect`,{x:`1`,y:`9`,width:`2`,height:`3`,fill:`#ffffff`}),(0,e.jsx)(`rect`,{x:`13`,y:`9`,width:`2`,height:`3`,fill:`#ffffff`}),(0,e.jsx)(`rect`,{x:`5`,y:`9`,width:`6`,height:`6`,fill:`#d4c8f0`}),(0,e.jsx)(`rect`,{x:`4`,y:`10`,width:`1`,height:`4`,fill:`#d4c8f0`}),(0,e.jsx)(`rect`,{x:`11`,y:`10`,width:`1`,height:`4`,fill:`#d4c8f0`})]})}function P(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`6`,y:`1`,width:`4`,height:`2`,fill:`#66d9e8`}),(0,e.jsx)(`rect`,{x:`5`,y:`3`,width:`6`,height:`4`,fill:`#66d9e8`}),(0,e.jsx)(`rect`,{x:`4`,y:`7`,width:`8`,height:`4`,fill:`#66d9e8`}),(0,e.jsx)(`rect`,{x:`5`,y:`11`,width:`6`,height:`2`,fill:`#66d9e8`}),(0,e.jsx)(`rect`,{x:`4`,y:`13`,width:`2`,height:`2`,fill:`#66d9e8`}),(0,e.jsx)(`rect`,{x:`7`,y:`13`,width:`2`,height:`2`,fill:`#66d9e8`}),(0,e.jsx)(`rect`,{x:`10`,y:`13`,width:`2`,height:`2`,fill:`#66d9e8`}),(0,e.jsx)(`rect`,{x:`6`,y:`4`,width:`4`,height:`3`,fill:`#b0eff6`}),(0,e.jsx)(`rect`,{x:`7`,y:`3`,width:`2`,height:`1`,fill:`#b0eff6`}),(0,e.jsx)(`rect`,{x:`6`,y:`7`,width:`2`,height:`2`,fill:`#ffffff`}),(0,e.jsx)(`rect`,{x:`9`,y:`7`,width:`2`,height:`2`,fill:`#ffffff`}),(0,e.jsx)(`rect`,{x:`7`,y:`8`,width:`1`,height:`1`,fill:`#66d9e8`}),(0,e.jsx)(`rect`,{x:`10`,y:`8`,width:`1`,height:`1`,fill:`#66d9e8`})]})}function F(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`1`,y:`11`,width:`3`,height:`4`,fill:`#cfd8e2`}),(0,e.jsx)(`rect`,{x:`6`,y:`7`,width:`4`,height:`8`,fill:`#4a4a5a`}),(0,e.jsx)(`rect`,{x:`12`,y:`4`,width:`3`,height:`11`,fill:`#4a4a5a`}),(0,e.jsx)(`rect`,{x:`1`,y:`15`,width:`14`,height:`1`,fill:`#5a5a6a`}),(0,e.jsx)(`rect`,{x:`1`,y:`8`,width:`1`,height:`2`,fill:`#e6db74`}),(0,e.jsx)(`rect`,{x:`3`,y:`10`,width:`1`,height:`2`,fill:`#e6db74`}),(0,e.jsx)(`rect`,{x:`2`,y:`10`,width:`1`,height:`1`,fill:`#e6db74`})]})}function I(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`1`,y:`11`,width:`3`,height:`4`,fill:`#4a4a5a`}),(0,e.jsx)(`rect`,{x:`6`,y:`7`,width:`4`,height:`8`,fill:`#cfd8e2`}),(0,e.jsx)(`rect`,{x:`12`,y:`4`,width:`3`,height:`11`,fill:`#4a4a5a`}),(0,e.jsx)(`rect`,{x:`1`,y:`15`,width:`14`,height:`1`,fill:`#5a5a6a`}),(0,e.jsx)(`rect`,{x:`6`,y:`4`,width:`1`,height:`2`,fill:`#e6db74`}),(0,e.jsx)(`rect`,{x:`9`,y:`4`,width:`1`,height:`2`,fill:`#e6db74`}),(0,e.jsx)(`rect`,{x:`7`,y:`5`,width:`2`,height:`1`,fill:`#e6db74`})]})}function L(){return(0,e.jsxs)(`svg`,{viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,e.jsx)(`rect`,{x:`1`,y:`11`,width:`3`,height:`4`,fill:`#4a4a5a`}),(0,e.jsx)(`rect`,{x:`6`,y:`7`,width:`4`,height:`8`,fill:`#4a4a5a`}),(0,e.jsx)(`rect`,{x:`12`,y:`4`,width:`3`,height:`11`,fill:`#cfd8e2`}),(0,e.jsx)(`rect`,{x:`1`,y:`15`,width:`14`,height:`1`,fill:`#5a5a6a`}),(0,e.jsx)(`rect`,{x:`13`,y:`1`,width:`1`,height:`2`,fill:`#e6db74`}),(0,e.jsx)(`rect`,{x:`14`,y:`1`,width:`1`,height:`3`,fill:`#e6db74`}),(0,e.jsx)(`rect`,{x:`13`,y:`3`,width:`1`,height:`1`,fill:`#e6db74`})]})}var R={sword:g,staff:v,bow:_,katar:y,book:b,hammer:x,neutral:S,earth:C,wind:w,water:T,fire:E,light:O,dark:D,void:k,human:A,beast:j,demon:M,angel:N,spirit:P,small:F,medium:I,large:L},z=Object.keys(R),B=Object.assign(function({name:t=`sword`,size:n=22,style:r}){let i=R[t]||g;return(0,e.jsx)(`span`,{style:{display:`inline-flex`,alignItems:`center`,justifyContent:`center`,width:n,height:n,imageRendering:`pixelated`,flexShrink:0,...r},children:(0,e.jsx)(i,{})})},{icons:z}),V=B;function H(){return(0,e.jsx)(`svg`,{viewBox:`0 0 12 8`,width:12,height:12,"aria-hidden":`true`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,children:(0,e.jsx)(`polyline`,{points:`1,1.5 6,6.5 11,1.5`})})}function U({href:n,label:r,className:i,children:a,...o}){return(0,e.jsx)(`a`,{...o,href:n,"aria-label":r,className:t(`ns-section-arrow`,i),children:a||(0,e.jsx)(H,{})})}exports.Button=s,exports.FeatureCard=c,exports.HUDBar=d,exports.HUDDivider=f,exports.HUDIcon=V,exports.HUDLabel=h,exports.QuestCard=l,exports.RPGIcon=B,exports.SectionArrow=U,exports.icons=z;
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require("./registry-Cyq-qspU.cjs");let t=require("react/jsx-runtime"),n=require("react");var r=(...e)=>e.filter(Boolean).join(` `);function i(e,t){return t?{...e,...t}:e}var a=new Set([`play`,`ghost`]),o=new Set([`sm`,`md`,`lg`]);function s({variant:e=`play`,size:n=`md`,href:i,onClick:s,children:c,disabled:l=!1,className:u,type:d=`button`,...f}){let p=a.has(e)?e:`play`,m=o.has(n)?n:`md`,h=r(`ns-button`,`ns-button--${p}`,`ns-button--${m}`,u),g={...f,className:h,onClick:l?void 0:s};return i?(0,t.jsx)(`a`,{...g,href:l?void 0:i,"aria-disabled":l||void 0,tabIndex:l?-1:f.tabIndex,children:c}):(0,t.jsx)(`button`,{...g,type:d,disabled:l,children:c})}function c({icon:n,title:a,body:o,tag:s,iconColor:c=e.m.gold,className:l,style:u,...d}){return(0,t.jsxs)(`li`,{...d,className:r(`ns-card ns-feature-card`,l),style:i({"--ns-feature-accent":c},u),children:[(0,t.jsx)(`span`,{className:`ns-icon-slot ns-feature-card__icon`,"aria-hidden":`true`,children:n}),(0,t.jsxs)(`div`,{children:[(0,t.jsx)(`h3`,{className:`ns-feature-card__title`,children:a}),(0,t.jsx)(`p`,{className:`ns-feature-card__body`,children:o})]}),s&&(0,t.jsx)(`span`,{className:`ns-tag ns-feature-card__tag`,children:s})]})}function l({gate:n,title:i,body:a,status:o=`locked`,className:s,...c}){let l=e.h[o]||e.h.locked;return(0,t.jsxs)(`li`,{...c,className:r(`ns-quest-card`,l.className,s),"data-quest-status":o,children:[(0,t.jsxs)(`div`,{className:`ns-quest-card__header`,children:[(0,t.jsx)(`span`,{className:`ns-quest-card__icon`,"aria-hidden":`true`,children:l.icon}),(0,t.jsxs)(`div`,{children:[(0,t.jsx)(`p`,{className:`ns-quest-card__gate`,children:`Gate ${n}`}),(0,t.jsxs)(`p`,{className:`ns-quest-card__name`,children:[(0,t.jsx)(`svg`,{width:`5`,height:`7`,viewBox:`0 0 5 7`,"aria-hidden":`true`,fill:`currentColor`,style:{marginRight:4,verticalAlign:`middle`},children:(0,t.jsx)(`polygon`,{points:`0,0 5,3.5 0,7`})}),i]})]})]}),(0,t.jsxs)(`div`,{className:`ns-quest-card__body`,children:[(0,t.jsx)(`p`,{className:`ns-quest-card__desc`,children:a}),(0,t.jsx)(`span`,{className:`ns-status-pill`,children:l.label})]})]})}var u=`var(--ns-font-pixel, "Press Start 2P", monospace)`,d={hp:{fill:`var(--hud-hp-fill, #4caf73)`,labelColor:`var(--hud-hp-label, #88ee88)`,segmented:!1},mp:{fill:`var(--hud-mp-fill, #5b9bd5)`,labelColor:`var(--hud-mp-label, #8888ee)`,segmented:!1},xp:{fill:`var(--hud-xp-base, #4488cc)`,labelColor:`var(--hud-xp-base-label, #88aaee)`,segmented:!1},stamina:{fill:`var(--hud-stamina-fill, #5dcaa5)`,labelColor:`var(--hud-stamina-label, #8fe6cc)`,segmented:!0}};function f({variant:e=`hp`,value:n=40,max:r=40,label:i,segmented:a,segmentSize:o=8,fillColor:s,trackColor:c=`var(--hud-track, rgba(255, 255, 255, 0.10))`,height:l=14,style:f,role:p=`meter`,...m}){let h=d[e]??d.hp,g=s??h.fill,_=a??h.segmented,v=r>0?Math.max(0,Math.min(100,n/r*100)):0,y=i===void 0?`${n} / ${r}`:i;return(0,t.jsxs)(`div`,{...m,role:p,"aria-valuemin":0,"aria-valuemax":r,"aria-valuenow":Math.max(0,Math.min(n,r)),style:{position:`relative`,background:c,height:l,overflow:`hidden`,fontFamily:u,...f},children:[(0,t.jsx)(`div`,{style:{position:`absolute`,inset:0,width:`${v}%`,background:g,transition:`width .35s ease-out`}}),_&&(0,t.jsx)(`div`,{"aria-hidden":!0,style:{position:`absolute`,inset:0,pointerEvents:`none`,background:`repeating-linear-gradient(90deg, transparent 0, transparent ${o-1}px, rgba(0,0,0,0.5) ${o-1}px, rgba(0,0,0,0.5) ${o}px)`}}),y!==!1&&y!==``&&(0,t.jsx)(`span`,{style:{position:`absolute`,inset:0,display:`flex`,alignItems:`center`,paddingLeft:4,fontSize:4,color:h.labelColor,pointerEvents:`none`,whiteSpace:`nowrap`},children:y})]})}var p=`var(--ns-font-body, Inter, system-ui, sans-serif)`,m=[{sender:`Aria`,color:`var(--ns-purple)`,text:`nice combo earlier!`},{sender:`Zeph`,color:`var(--hud-el-light)`,text:`ty! push mid now`},{sender:`Kira`,color:`var(--ns-green)`,text:`incoming top lane`},{sender:`Aria`,color:`var(--ns-purple)`,text:`on my way`}];function h({messages:e=m,height:n=80,fontSize:r=4,style:i,...a}){return(0,t.jsx)(`div`,{...a,style:{display:`flex`,flexDirection:`column`,gap:1,padding:`2px 3px`,height:n,overflow:`hidden`,...i},children:e.map((e,n)=>(0,t.jsxs)(`div`,{style:{display:`flex`,gap:2,fontFamily:p,fontSize:r,lineHeight:1.4,overflow:`hidden`,flexShrink:0},children:[(0,t.jsxs)(`span`,{style:{color:e.color??`var(--ns-ink)`,whiteSpace:`nowrap`,flexShrink:0},children:[e.sender,`:`]}),(0,t.jsx)(`span`,{style:{color:`rgba(255,255,255,0.6)`,overflow:`hidden`,textOverflow:`ellipsis`,whiteSpace:`nowrap`},children:e.text})]},n))})}function g({direction:e=`vertical`,color:n=`var(--ns-line)`,style:r,role:i=`separator`,...a}){let o=e===`vertical`;return(0,t.jsx)(`div`,{...a,role:i,"aria-orientation":e,style:{width:o?`1px`:`100%`,height:o?`100%`:`1px`,background:n,flexShrink:0,alignSelf:`stretch`,...r}})}function _({size:e=80,thumbSize:r=.32,onChange:i,style:a,...o}){let[s,c]=(0,n.useState)({x:0,y:0}),l=(0,n.useRef)(!1),u=(0,n.useRef)(null),d=e*.35,f=Math.round(e*r),p=(0,n.useCallback)(e=>{e.preventDefault(),l.current=!0},[]);return(0,n.useEffect)(()=>{let e=e=>{if(!l.current||!u.current)return;let t=u.current.getBoundingClientRect(),n=e.clientX-(t.left+t.width/2),r=e.clientY-(t.top+t.height/2),a=Math.sqrt(n*n+r*r);a>d&&(n=n/a*d,r=r/a*d);let o=n/d,s=r/d;c({x:o,y:s}),i?.(o,s)},t=()=>{l.current&&(l.current=!1,c({x:0,y:0}),i?.(0,0))};return document.addEventListener(`mousemove`,e),document.addEventListener(`mouseup`,t),()=>{document.removeEventListener(`mousemove`,e),document.removeEventListener(`mouseup`,t)}},[d,i]),(0,t.jsx)(`div`,{...o,style:{display:`flex`,alignItems:`center`,justifyContent:`center`,width:e,height:e,...a},children:(0,t.jsxs)(`div`,{ref:u,onMouseDown:p,style:{position:`relative`,width:`100%`,height:`100%`,borderRadius:`50%`,border:`1.5px solid rgba(255,255,255,0.18)`,background:`rgba(0,0,0,0.38)`,cursor:`grab`,userSelect:`none`},children:[(0,t.jsx)(`div`,{style:{position:`absolute`,top:`50%`,left:0,right:0,height:1,background:`rgba(255,255,255,0.07)`,transform:`translateY(-50%)`,pointerEvents:`none`}}),(0,t.jsx)(`div`,{style:{position:`absolute`,left:`50%`,top:0,bottom:0,width:1,background:`rgba(255,255,255,0.07)`,transform:`translateX(-50%)`,pointerEvents:`none`}}),(0,t.jsx)(`div`,{style:{position:`absolute`,width:f,height:f,borderRadius:`50%`,background:`rgba(190,190,210,0.72)`,border:`1px solid rgba(255,255,255,0.35)`,top:`calc(50% + ${s.y*d}px - ${f/2}px)`,left:`calc(50% + ${s.x*d}px - ${f/2}px)`,pointerEvents:`none`,transition:l.current?`none`:`top 0.12s, left 0.12s`}})]})})}var v=`var(--ns-font-pixel, "Press Start 2P", monospace)`,y={left:`flex-start`,center:`center`,right:`flex-end`};function ee({text:e=`Label`,align:n=`left`,scale:r=1,color:i=`var(--ns-ink)`,fontSize:a=5,style:o,...s}){return(0,t.jsx)(`div`,{...s,style:{display:`flex`,alignItems:`center`,justifyContent:y[n]||y.left,paddingLeft:n===`right`?0:3,paddingRight:n===`left`?0:3,fontFamily:v,fontSize:a*r,color:i,whiteSpace:`nowrap`,overflow:`hidden`,width:`100%`,height:`100%`,...o},children:e})}function b({mapColor:e=`var(--hud-minimap-bg)`,markerColor:n=`var(--hud-minimap-player)`,accentColor:r=`var(--hud-minimap-path, var(--hud-gold))`,framed:i=!0,style:a,...o}){return(0,t.jsx)(`div`,{...o,style:{position:`relative`,background:e,border:i?`1px solid ${r}`:`none`,overflow:`hidden`,width:`100%`,height:`100%`,boxSizing:`border-box`,...a},children:(0,t.jsxs)(`svg`,{width:`100%`,height:`100%`,viewBox:`0 0 60 40`,preserveAspectRatio:`none`,style:{position:`absolute`,inset:0},children:[(0,t.jsx)(`polyline`,{points:`4,20 12,14 22,18 30,10 42,16 52,12`,fill:`none`,stroke:r,strokeWidth:`0.8`,opacity:`0.5`}),(0,t.jsx)(`polyline`,{points:`10,30 18,24 28,26 38,20 48,22`,fill:`none`,stroke:r,strokeWidth:`0.5`,opacity:`0.35`,strokeDasharray:`2 2`}),(0,t.jsx)(`rect`,{x:`28`,y:`8`,width:`3`,height:`3`,fill:r,opacity:`0.6`}),(0,t.jsx)(`polygon`,{points:`30,22 28,26 30,25 32,26`,fill:n})]})})}var x={dark:{background:`rgba(12,16,22,0.72)`,border:`1px solid rgba(255,255,255,0.10)`},light:{background:`rgba(255,255,255,0.05)`,border:`1px solid rgba(255,255,255,0.14)`},clear:{background:`transparent`,border:`1px solid rgba(255,255,255,0.08)`}};function te({variant:e=`dark`,radius:n=0,style:r,children:i,...a}){let o=x[e]??x.dark;return(0,t.jsx)(`div`,{...a,style:{position:`relative`,background:o.background,border:o.border,borderRadius:n,overflow:`hidden`,width:`100%`,height:`100%`,boxSizing:`border-box`,...r},children:i})}var ne=`var(--ns-font-pixel, "Press Start 2P", monospace)`,re=[{id:`stats`,label:`STATS`},{id:`equip`,label:`EQUIP`},{id:`map`,label:`MAP`}];function S({tabs:e=re,defaultTab:r,tabHeight:i=14,tabMinWidth:a=48,tabFontSize:o=3.5,tabAlign:s=`left`,style:c}){let[l,u]=(0,n.useState)(r??e[0]?.id??``),d=e.find(e=>e.id===l)??e[0],f=s===`center`?`center`:s===`right`?`flex-end`:`flex-start`;return(0,t.jsxs)(`div`,{style:{display:`flex`,flexDirection:`column`,overflow:`hidden`,width:`100%`,height:`100%`,...c},children:[(0,t.jsx)(`div`,{style:{display:`flex`,justifyContent:f,flexShrink:0,height:i,borderBottom:`1px solid rgba(255,255,255,0.12)`},children:e.map(e=>{let n=e.id===l;return(0,t.jsx)(`button`,{onClick:()=>u(e.id),style:{minWidth:a,height:`100%`,padding:`0 6px`,background:n?`rgba(230,219,116,0.09)`:`transparent`,border:`none`,borderRight:`1px solid rgba(255,255,255,0.08)`,color:n?`var(--hud-gold, #e6db74)`:`rgba(255,255,255,0.38)`,fontFamily:ne,fontSize:o,cursor:`pointer`,letterSpacing:`0.04em`,flexShrink:0,userSelect:`none`},children:e.label},e.id)})}),(0,t.jsx)(`div`,{style:{flex:1,overflow:`hidden`,position:`relative`},children:d?.content??null})]})}function C(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`line`,{x1:`14`,y1:`2`,x2:`6`,y2:`10`,stroke:`#cfd8e2`,strokeWidth:`2`,strokeLinecap:`square`}),(0,t.jsx)(`line`,{x1:`13`,y1:`2`,x2:`14`,y2:`3`,stroke:`#eef0f4`,strokeWidth:`1`,strokeLinecap:`square`}),(0,t.jsx)(`line`,{x1:`4`,y1:`9`,x2:`8`,y2:`13`,stroke:`#e6db74`,strokeWidth:`2`,strokeLinecap:`square`}),(0,t.jsx)(`line`,{x1:`6`,y1:`11`,x2:`3`,y2:`14`,stroke:`#b07040`,strokeWidth:`2`,strokeLinecap:`square`})]})})}function w(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`3`,y:`1`,width:`3`,height:`2`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`2`,y:`3`,width:`2`,height:`10`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`3`,y:`13`,width:`3`,height:`2`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`6`,y:`2`,width:`1`,height:`1`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`7`,y:`3`,width:`1`,height:`10`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`6`,y:`13`,width:`1`,height:`1`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`7`,y:`7`,width:`7`,height:`2`,fill:`#c8a878`}),(0,t.jsx)(`rect`,{x:`13`,y:`6`,width:`2`,height:`1`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`14`,y:`7`,width:`2`,height:`2`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`13`,y:`9`,width:`2`,height:`1`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`7`,y:`5`,width:`2`,height:`2`,fill:`var(--ns-purple)`}),(0,t.jsx)(`rect`,{x:`7`,y:`9`,width:`2`,height:`2`,fill:`var(--ns-purple)`})]})})}function T(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#c8a8ff`}),(0,t.jsx)(`rect`,{x:`4`,y:`2`,width:`8`,height:`4`,fill:`var(--ns-purple)`}),(0,t.jsx)(`rect`,{x:`5`,y:`6`,width:`6`,height:`1`,fill:`#c8a8ff`}),(0,t.jsx)(`rect`,{x:`6`,y:`3`,width:`4`,height:`2`,fill:`#d4b8ff`}),(0,t.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`8`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`6`,y:`10`,width:`4`,height:`1`,fill:`#b07040`})]})})}function E(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`2`,y:`1`,width:`2`,height:`8`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`2`,y:`9`,width:`2`,height:`3`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`12`,y:`1`,width:`2`,height:`8`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`12`,y:`9`,width:`2`,height:`3`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`2`,y:`8`,width:`12`,height:`2`,fill:`var(--hud-gold)`}),(0,t.jsx)(`rect`,{x:`6`,y:`10`,width:`4`,height:`5`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`3`,y:`0`,width:`1`,height:`1`,fill:`#eef0f4`}),(0,t.jsx)(`rect`,{x:`12`,y:`0`,width:`1`,height:`1`,fill:`#eef0f4`})]})})}function D(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`2`,y:`2`,width:`2`,height:`12`,fill:`#6a4a6a`}),(0,t.jsx)(`rect`,{x:`4`,y:`2`,width:`10`,height:`12`,fill:`#8855aa`}),(0,t.jsx)(`rect`,{x:`13`,y:`3`,width:`1`,height:`10`,fill:`#f4f0e8`}),(0,t.jsx)(`rect`,{x:`7`,y:`4`,width:`2`,height:`1`,fill:`#c8a8ff`}),(0,t.jsx)(`rect`,{x:`6`,y:`5`,width:`4`,height:`1`,fill:`#c8a8ff`}),(0,t.jsx)(`rect`,{x:`7`,y:`6`,width:`2`,height:`1`,fill:`#c8a8ff`}),(0,t.jsx)(`rect`,{x:`6`,y:`8`,width:`4`,height:`1`,fill:`var(--hud-gold)`}),(0,t.jsx)(`rect`,{x:`7`,y:`9`,width:`2`,height:`2`,fill:`var(--hud-gold)`})]})})}function O(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`4`,y:`1`,width:`8`,height:`1`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`5`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`3`,y:`3`,width:`1`,height:`3`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`3`,y:`7`,width:`10`,height:`1`,fill:`#5a6570`}),(0,t.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`8`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`6`,y:`10`,width:`4`,height:`1`,fill:`#b07040`})]})})}function k(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`2`,y:`6`,width:`12`,height:`4`,fill:`#7a7a8a`}),(0,t.jsx)(`rect`,{x:`6`,y:`2`,width:`4`,height:`12`,fill:`#7a7a8a`}),(0,t.jsx)(`rect`,{x:`3`,y:`3`,width:`2`,height:`2`,fill:`#7a7a8a`}),(0,t.jsx)(`rect`,{x:`11`,y:`3`,width:`2`,height:`2`,fill:`#7a7a8a`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`2`,height:`2`,fill:`#7a7a8a`}),(0,t.jsx)(`rect`,{x:`11`,y:`11`,width:`2`,height:`2`,fill:`#7a7a8a`}),(0,t.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`2`,fill:`#b0b0c0`}),(0,t.jsx)(`rect`,{x:`7`,y:`4`,width:`2`,height:`1`,fill:`#b0b0c0`}),(0,t.jsx)(`rect`,{x:`7`,y:`11`,width:`2`,height:`1`,fill:`#b0b0c0`}),(0,t.jsx)(`rect`,{x:`4`,y:`7`,width:`1`,height:`2`,fill:`#b0b0c0`}),(0,t.jsx)(`rect`,{x:`11`,y:`7`,width:`1`,height:`2`,fill:`#b0b0c0`})]})})}function A(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`7`,y:`2`,width:`2`,height:`2`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`6`,y:`4`,width:`4`,height:`2`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`5`,y:`6`,width:`6`,height:`2`,fill:`#8b6914`}),(0,t.jsx)(`rect`,{x:`4`,y:`8`,width:`8`,height:`2`,fill:`#8b6914`}),(0,t.jsx)(`rect`,{x:`3`,y:`10`,width:`10`,height:`2`,fill:`#6a5010`}),(0,t.jsx)(`rect`,{x:`1`,y:`12`,width:`14`,height:`3`,fill:`#5a4008`}),(0,t.jsx)(`rect`,{x:`7`,y:`2`,width:`2`,height:`1`,fill:`#f0ece0`}),(0,t.jsx)(`rect`,{x:`6`,y:`3`,width:`4`,height:`1`,fill:`#f0ece0`}),(0,t.jsx)(`rect`,{x:`5`,y:`8`,width:`1`,height:`1`,fill:`#a07820`}),(0,t.jsx)(`rect`,{x:`10`,y:`9`,width:`1`,height:`1`,fill:`#a07820`})]})})}function j(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`2`,y:`4`,width:`10`,height:`1`,fill:`var(--hud-el-wind)`}),(0,t.jsx)(`rect`,{x:`3`,y:`5`,width:`2`,height:`1`,fill:`var(--hud-el-wind)`}),(0,t.jsx)(`rect`,{x:`12`,y:`3`,width:`2`,height:`2`,fill:`var(--hud-el-wind)`}),(0,t.jsx)(`rect`,{x:`13`,y:`5`,width:`1`,height:`1`,fill:`var(--hud-el-wind)`}),(0,t.jsx)(`rect`,{x:`1`,y:`7`,width:`11`,height:`2`,fill:`var(--hud-el-wind)`}),(0,t.jsx)(`rect`,{x:`12`,y:`6`,width:`2`,height:`4`,fill:`var(--hud-el-wind)`}),(0,t.jsx)(`rect`,{x:`11`,y:`10`,width:`2`,height:`1`,fill:`var(--hud-el-wind)`}),(0,t.jsx)(`rect`,{x:`2`,y:`12`,width:`9`,height:`1`,fill:`var(--hud-el-wind)`}),(0,t.jsx)(`rect`,{x:`2`,y:`11`,width:`2`,height:`1`,fill:`var(--hud-el-wind)`}),(0,t.jsx)(`rect`,{x:`11`,y:`12`,width:`2`,height:`2`,fill:`var(--hud-el-wind)`}),(0,t.jsx)(`rect`,{x:`10`,y:`14`,width:`2`,height:`1`,fill:`var(--hud-el-wind)`}),(0,t.jsx)(`rect`,{x:`2`,y:`3`,width:`8`,height:`1`,fill:`#90e8cc`}),(0,t.jsx)(`rect`,{x:`2`,y:`8`,width:`9`,height:`1`,fill:`#90e8cc`})]})})}function M(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`6`,y:`1`,width:`4`,height:`1`,fill:`var(--hud-el-water)`}),(0,t.jsx)(`rect`,{x:`5`,y:`2`,width:`6`,height:`2`,fill:`var(--hud-el-water)`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`8`,height:`6`,fill:`var(--hud-el-water)`}),(0,t.jsx)(`rect`,{x:`5`,y:`10`,width:`6`,height:`2`,fill:`var(--hud-el-water)`}),(0,t.jsx)(`rect`,{x:`6`,y:`12`,width:`4`,height:`2`,fill:`var(--hud-el-water)`}),(0,t.jsx)(`rect`,{x:`7`,y:`14`,width:`2`,height:`1`,fill:`var(--hud-el-water)`}),(0,t.jsx)(`rect`,{x:`6`,y:`4`,width:`3`,height:`4`,fill:`#70b8f0`}),(0,t.jsx)(`rect`,{x:`7`,y:`3`,width:`2`,height:`1`,fill:`#70b8f0`}),(0,t.jsx)(`rect`,{x:`5`,y:`7`,width:`2`,height:`1`,fill:`#1a5a9a`}),(0,t.jsx)(`rect`,{x:`9`,y:`8`,width:`2`,height:`1`,fill:`#1a5a9a`})]})})}function N(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`4`,y:`11`,width:`8`,height:`4`,fill:`var(--hud-el-fire)`}),(0,t.jsx)(`rect`,{x:`3`,y:`8`,width:`10`,height:`3`,fill:`var(--hud-el-fire)`}),(0,t.jsx)(`rect`,{x:`4`,y:`5`,width:`8`,height:`3`,fill:`var(--hud-el-fire)`}),(0,t.jsx)(`rect`,{x:`5`,y:`3`,width:`6`,height:`2`,fill:`var(--hud-el-fire)`}),(0,t.jsx)(`rect`,{x:`6`,y:`1`,width:`4`,height:`2`,fill:`var(--hud-el-fire)`}),(0,t.jsx)(`rect`,{x:`5`,y:`9`,width:`6`,height:`5`,fill:`#e8882a`}),(0,t.jsx)(`rect`,{x:`6`,y:`7`,width:`4`,height:`2`,fill:`#e8882a`}),(0,t.jsx)(`rect`,{x:`6`,y:`10`,width:`4`,height:`3`,fill:`var(--hud-gold)`}),(0,t.jsx)(`rect`,{x:`7`,y:`9`,width:`2`,height:`1`,fill:`var(--hud-gold)`})]})})}function P(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`2`,width:`6`,height:`2`,fill:`var(--hud-el-neutral)`}),(0,t.jsx)(`rect`,{x:`3`,y:`4`,width:`8`,height:`8`,fill:`var(--hud-el-neutral)`}),(0,t.jsx)(`rect`,{x:`5`,y:`12`,width:`6`,height:`2`,fill:`var(--hud-el-neutral)`}),(0,t.jsx)(`rect`,{x:`4`,y:`3`,width:`1`,height:`10`,fill:`var(--hud-el-neutral)`}),(0,t.jsx)(`rect`,{x:`8`,y:`4`,width:`4`,height:`8`,fill:`#1a1a20`}),(0,t.jsx)(`rect`,{x:`7`,y:`5`,width:`5`,height:`6`,fill:`#1a1a20`}),(0,t.jsx)(`rect`,{x:`11`,y:`2`,width:`1`,height:`1`,fill:`#c8c8d0`}),(0,t.jsx)(`rect`,{x:`13`,y:`5`,width:`1`,height:`1`,fill:`#c8c8d0`}),(0,t.jsx)(`rect`,{x:`12`,y:`9`,width:`1`,height:`1`,fill:`#c8c8d0`})]})})}function F(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`5`,width:`6`,height:`6`,fill:`var(--hud-el-light)`}),(0,t.jsx)(`rect`,{x:`6`,y:`4`,width:`4`,height:`1`,fill:`var(--hud-el-light)`}),(0,t.jsx)(`rect`,{x:`6`,y:`11`,width:`4`,height:`1`,fill:`var(--hud-el-light)`}),(0,t.jsx)(`rect`,{x:`4`,y:`6`,width:`1`,height:`4`,fill:`var(--hud-el-light)`}),(0,t.jsx)(`rect`,{x:`11`,y:`6`,width:`1`,height:`4`,fill:`var(--hud-el-light)`}),(0,t.jsx)(`rect`,{x:`7`,y:`1`,width:`2`,height:`3`,fill:`var(--hud-el-light)`}),(0,t.jsx)(`rect`,{x:`7`,y:`12`,width:`2`,height:`3`,fill:`var(--hud-el-light)`}),(0,t.jsx)(`rect`,{x:`1`,y:`7`,width:`3`,height:`2`,fill:`var(--hud-el-light)`}),(0,t.jsx)(`rect`,{x:`12`,y:`7`,width:`3`,height:`2`,fill:`var(--hud-el-light)`}),(0,t.jsx)(`rect`,{x:`3`,y:`3`,width:`2`,height:`2`,fill:`var(--hud-el-light)`}),(0,t.jsx)(`rect`,{x:`11`,y:`3`,width:`2`,height:`2`,fill:`var(--hud-el-light)`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`2`,height:`2`,fill:`var(--hud-el-light)`}),(0,t.jsx)(`rect`,{x:`11`,y:`11`,width:`2`,height:`2`,fill:`var(--hud-el-light)`}),(0,t.jsx)(`rect`,{x:`6`,y:`6`,width:`4`,height:`4`,fill:`#fff8e0`})]})})}function I(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`2`,fill:`var(--hud-el-void)`}),(0,t.jsx)(`rect`,{x:`3`,y:`3`,width:`10`,height:`2`,fill:`var(--hud-el-void)`}),(0,t.jsx)(`rect`,{x:`2`,y:`5`,width:`12`,height:`6`,fill:`var(--hud-el-void)`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`10`,height:`2`,fill:`var(--hud-el-void)`}),(0,t.jsx)(`rect`,{x:`5`,y:`13`,width:`6`,height:`2`,fill:`var(--hud-el-void)`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`8`,height:`8`,fill:`#1a1828`}),(0,t.jsx)(`rect`,{x:`5`,y:`3`,width:`6`,height:`1`,fill:`#1a1828`}),(0,t.jsx)(`rect`,{x:`5`,y:`12`,width:`6`,height:`1`,fill:`#1a1828`}),(0,t.jsx)(`rect`,{x:`3`,y:`5`,width:`1`,height:`6`,fill:`#1a1828`}),(0,t.jsx)(`rect`,{x:`12`,y:`5`,width:`1`,height:`6`,fill:`#1a1828`}),(0,t.jsx)(`rect`,{x:`6`,y:`6`,width:`4`,height:`4`,fill:`#4a44aa`}),(0,t.jsx)(`rect`,{x:`7`,y:`5`,width:`2`,height:`1`,fill:`#4a44aa`}),(0,t.jsx)(`rect`,{x:`7`,y:`10`,width:`2`,height:`1`,fill:`#4a44aa`}),(0,t.jsx)(`rect`,{x:`5`,y:`7`,width:`1`,height:`2`,fill:`#4a44aa`}),(0,t.jsx)(`rect`,{x:`10`,y:`7`,width:`1`,height:`2`,fill:`#4a44aa`}),(0,t.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`2`,fill:`#c8c0ff`})]})})}function L(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`5`,fill:`#e8c87a`}),(0,t.jsx)(`rect`,{x:`7`,y:`6`,width:`2`,height:`1`,fill:`#d4a85a`}),(0,t.jsx)(`rect`,{x:`3`,y:`7`,width:`10`,height:`5`,fill:`#c8873a`}),(0,t.jsx)(`rect`,{x:`1`,y:`7`,width:`2`,height:`4`,fill:`#c8873a`}),(0,t.jsx)(`rect`,{x:`13`,y:`7`,width:`2`,height:`4`,fill:`#c8873a`}),(0,t.jsx)(`rect`,{x:`4`,y:`12`,width:`3`,height:`3`,fill:`#8a5c2a`}),(0,t.jsx)(`rect`,{x:`9`,y:`12`,width:`3`,height:`3`,fill:`#8a5c2a`})]})})}function R(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`2`,y:`1`,width:`3`,height:`4`,fill:`#c8a060`}),(0,t.jsx)(`rect`,{x:`11`,y:`1`,width:`3`,height:`4`,fill:`#c8a060`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`1`,height:`2`,fill:`#e8886a`}),(0,t.jsx)(`rect`,{x:`12`,y:`2`,width:`1`,height:`2`,fill:`#e8886a`}),(0,t.jsx)(`rect`,{x:`3`,y:`4`,width:`10`,height:`6`,fill:`#c8a060`}),(0,t.jsx)(`rect`,{x:`5`,y:`8`,width:`6`,height:`3`,fill:`#d4b070`}),(0,t.jsx)(`rect`,{x:`7`,y:`8`,width:`2`,height:`1`,fill:`#5a3020`}),(0,t.jsx)(`rect`,{x:`4`,y:`6`,width:`3`,height:`2`,fill:`#e8a020`}),(0,t.jsx)(`rect`,{x:`9`,y:`6`,width:`3`,height:`2`,fill:`#e8a020`}),(0,t.jsx)(`rect`,{x:`5`,y:`6`,width:`1`,height:`2`,fill:`#1a1008`}),(0,t.jsx)(`rect`,{x:`10`,y:`6`,width:`1`,height:`2`,fill:`#1a1008`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`10`,height:`4`,fill:`#a87840`}),(0,t.jsx)(`rect`,{x:`1`,y:`11`,width:`2`,height:`3`,fill:`#a87840`}),(0,t.jsx)(`rect`,{x:`13`,y:`11`,width:`2`,height:`3`,fill:`#a87840`})]})})}function z(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`3`,y:`1`,width:`2`,height:`5`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`11`,y:`1`,width:`2`,height:`5`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`2`,y:`1`,width:`2`,height:`2`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`12`,y:`1`,width:`2`,height:`2`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`3`,y:`5`,width:`10`,height:`6`,fill:`#7a2a2a`}),(0,t.jsx)(`rect`,{x:`4`,y:`7`,width:`3`,height:`2`,fill:`#ff2020`}),(0,t.jsx)(`rect`,{x:`9`,y:`7`,width:`3`,height:`2`,fill:`#ff2020`}),(0,t.jsx)(`rect`,{x:`5`,y:`7`,width:`1`,height:`2`,fill:`#ff8080`}),(0,t.jsx)(`rect`,{x:`10`,y:`7`,width:`1`,height:`2`,fill:`#ff8080`}),(0,t.jsx)(`rect`,{x:`6`,y:`11`,width:`1`,height:`2`,fill:`#f0e8d0`}),(0,t.jsx)(`rect`,{x:`9`,y:`11`,width:`1`,height:`2`,fill:`#f0e8d0`}),(0,t.jsx)(`rect`,{x:`2`,y:`12`,width:`12`,height:`4`,fill:`#5a1a1a`}),(0,t.jsx)(`rect`,{x:`1`,y:`12`,width:`2`,height:`3`,fill:`#5a1a1a`}),(0,t.jsx)(`rect`,{x:`13`,y:`12`,width:`2`,height:`3`,fill:`#5a1a1a`})]})})}function B(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`4`,y:`1`,width:`8`,height:`1`,fill:`var(--hud-gold)`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`var(--hud-gold)`}),(0,t.jsx)(`rect`,{x:`3`,y:`3`,width:`2`,height:`1`,fill:`var(--hud-gold)`}),(0,t.jsx)(`rect`,{x:`11`,y:`3`,width:`2`,height:`1`,fill:`var(--hud-gold)`}),(0,t.jsx)(`rect`,{x:`5`,y:`4`,width:`6`,height:`5`,fill:`#f4e4c0`}),(0,t.jsx)(`rect`,{x:`6`,y:`6`,width:`2`,height:`1`,fill:`#6090e0`}),(0,t.jsx)(`rect`,{x:`10`,y:`6`,width:`2`,height:`1`,fill:`#6090e0`}),(0,t.jsx)(`rect`,{x:`1`,y:`9`,width:`4`,height:`5`,fill:`#f0f0f8`}),(0,t.jsx)(`rect`,{x:`11`,y:`9`,width:`4`,height:`5`,fill:`#f0f0f8`}),(0,t.jsx)(`rect`,{x:`1`,y:`9`,width:`2`,height:`3`,fill:`#ffffff`}),(0,t.jsx)(`rect`,{x:`13`,y:`9`,width:`2`,height:`3`,fill:`#ffffff`}),(0,t.jsx)(`rect`,{x:`5`,y:`9`,width:`6`,height:`6`,fill:`#d4c8f0`}),(0,t.jsx)(`rect`,{x:`4`,y:`10`,width:`1`,height:`4`,fill:`#d4c8f0`}),(0,t.jsx)(`rect`,{x:`11`,y:`10`,width:`1`,height:`4`,fill:`#d4c8f0`})]})})}function V(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`6`,y:`1`,width:`4`,height:`2`,fill:`var(--ns-cyan)`}),(0,t.jsx)(`rect`,{x:`5`,y:`3`,width:`6`,height:`4`,fill:`var(--ns-cyan)`}),(0,t.jsx)(`rect`,{x:`4`,y:`7`,width:`8`,height:`4`,fill:`var(--ns-cyan)`}),(0,t.jsx)(`rect`,{x:`5`,y:`11`,width:`6`,height:`2`,fill:`var(--ns-cyan)`}),(0,t.jsx)(`rect`,{x:`4`,y:`13`,width:`2`,height:`2`,fill:`var(--ns-cyan)`}),(0,t.jsx)(`rect`,{x:`7`,y:`13`,width:`2`,height:`2`,fill:`var(--ns-cyan)`}),(0,t.jsx)(`rect`,{x:`10`,y:`13`,width:`2`,height:`2`,fill:`var(--ns-cyan)`}),(0,t.jsx)(`rect`,{x:`6`,y:`4`,width:`4`,height:`3`,fill:`#b0eff6`}),(0,t.jsx)(`rect`,{x:`7`,y:`3`,width:`2`,height:`1`,fill:`#b0eff6`}),(0,t.jsx)(`rect`,{x:`6`,y:`7`,width:`2`,height:`2`,fill:`#ffffff`}),(0,t.jsx)(`rect`,{x:`9`,y:`7`,width:`2`,height:`2`,fill:`#ffffff`}),(0,t.jsx)(`rect`,{x:`7`,y:`8`,width:`1`,height:`1`,fill:`var(--ns-cyan)`}),(0,t.jsx)(`rect`,{x:`10`,y:`8`,width:`1`,height:`1`,fill:`var(--ns-cyan)`})]})})}function H(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`1`,y:`11`,width:`3`,height:`4`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`6`,y:`7`,width:`4`,height:`8`,fill:`#4a4a5a`}),(0,t.jsx)(`rect`,{x:`12`,y:`4`,width:`3`,height:`11`,fill:`#4a4a5a`}),(0,t.jsx)(`rect`,{x:`1`,y:`15`,width:`14`,height:`1`,fill:`#5a5a6a`}),(0,t.jsx)(`rect`,{x:`1`,y:`8`,width:`1`,height:`2`,fill:`var(--hud-gold)`}),(0,t.jsx)(`rect`,{x:`3`,y:`10`,width:`1`,height:`2`,fill:`var(--hud-gold)`}),(0,t.jsx)(`rect`,{x:`2`,y:`10`,width:`1`,height:`1`,fill:`var(--hud-gold)`})]})})}function U(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`1`,y:`11`,width:`3`,height:`4`,fill:`#4a4a5a`}),(0,t.jsx)(`rect`,{x:`6`,y:`7`,width:`4`,height:`8`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`12`,y:`4`,width:`3`,height:`11`,fill:`#4a4a5a`}),(0,t.jsx)(`rect`,{x:`1`,y:`15`,width:`14`,height:`1`,fill:`#5a5a6a`}),(0,t.jsx)(`rect`,{x:`6`,y:`4`,width:`1`,height:`2`,fill:`var(--hud-gold)`}),(0,t.jsx)(`rect`,{x:`9`,y:`4`,width:`1`,height:`2`,fill:`var(--hud-gold)`}),(0,t.jsx)(`rect`,{x:`7`,y:`5`,width:`2`,height:`1`,fill:`var(--hud-gold)`})]})})}function W(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`1`,y:`11`,width:`3`,height:`4`,fill:`#4a4a5a`}),(0,t.jsx)(`rect`,{x:`6`,y:`7`,width:`4`,height:`8`,fill:`#4a4a5a`}),(0,t.jsx)(`rect`,{x:`12`,y:`4`,width:`3`,height:`11`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`1`,y:`15`,width:`14`,height:`1`,fill:`#5a5a6a`}),(0,t.jsx)(`rect`,{x:`13`,y:`1`,width:`1`,height:`2`,fill:`var(--hud-gold)`}),(0,t.jsx)(`rect`,{x:`14`,y:`1`,width:`1`,height:`3`,fill:`var(--hud-gold)`}),(0,t.jsx)(`rect`,{x:`13`,y:`3`,width:`1`,height:`1`,fill:`var(--hud-gold)`})]})})}function G(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`line`,{x1:`14`,y1:`2`,x2:`6`,y2:`10`,stroke:`#c0c8d0`,strokeWidth:`2`,strokeLinecap:`square`}),(0,t.jsx)(`line`,{x1:`13`,y1:`2`,x2:`14`,y2:`3`,stroke:`#e8ecf0`,strokeWidth:`1`,strokeLinecap:`square`}),(0,t.jsx)(`line`,{x1:`4`,y1:`9`,x2:`8`,y2:`13`,stroke:`#8a9098`,strokeWidth:`2`,strokeLinecap:`square`}),(0,t.jsx)(`line`,{x1:`6`,y1:`11`,x2:`3`,y2:`14`,stroke:`#5a6268`,strokeWidth:`2`,strokeLinecap:`square`})]})})}function K(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`3`,y:`1`,width:`3`,height:`2`,fill:`#6a7278`}),(0,t.jsx)(`rect`,{x:`2`,y:`3`,width:`2`,height:`10`,fill:`#6a7278`}),(0,t.jsx)(`rect`,{x:`3`,y:`13`,width:`3`,height:`2`,fill:`#6a7278`}),(0,t.jsx)(`rect`,{x:`6`,y:`2`,width:`1`,height:`1`,fill:`#c0c8d0`}),(0,t.jsx)(`rect`,{x:`7`,y:`3`,width:`1`,height:`10`,fill:`#c0c8d0`}),(0,t.jsx)(`rect`,{x:`6`,y:`13`,width:`1`,height:`1`,fill:`#c0c8d0`}),(0,t.jsx)(`rect`,{x:`7`,y:`7`,width:`7`,height:`2`,fill:`#9aa2aa`}),(0,t.jsx)(`rect`,{x:`13`,y:`6`,width:`2`,height:`1`,fill:`#c0c8d0`}),(0,t.jsx)(`rect`,{x:`14`,y:`7`,width:`2`,height:`2`,fill:`#c0c8d0`}),(0,t.jsx)(`rect`,{x:`13`,y:`9`,width:`2`,height:`1`,fill:`#c0c8d0`}),(0,t.jsx)(`rect`,{x:`7`,y:`5`,width:`2`,height:`2`,fill:`#8a9098`}),(0,t.jsx)(`rect`,{x:`7`,y:`9`,width:`2`,height:`2`,fill:`#8a9098`})]})})}function q(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#9aa2aa`}),(0,t.jsx)(`rect`,{x:`4`,y:`2`,width:`8`,height:`4`,fill:`#8a9098`}),(0,t.jsx)(`rect`,{x:`5`,y:`6`,width:`6`,height:`1`,fill:`#9aa2aa`}),(0,t.jsx)(`rect`,{x:`6`,y:`3`,width:`4`,height:`2`,fill:`#b0b8c0`}),(0,t.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`8`,fill:`#6a7278`}),(0,t.jsx)(`rect`,{x:`6`,y:`10`,width:`4`,height:`1`,fill:`#7a8290`})]})})}function J(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`2`,y:`1`,width:`2`,height:`8`,fill:`#c0c8d0`}),(0,t.jsx)(`rect`,{x:`2`,y:`9`,width:`2`,height:`3`,fill:`#9aa2aa`}),(0,t.jsx)(`rect`,{x:`12`,y:`1`,width:`2`,height:`8`,fill:`#c0c8d0`}),(0,t.jsx)(`rect`,{x:`12`,y:`9`,width:`2`,height:`3`,fill:`#9aa2aa`}),(0,t.jsx)(`rect`,{x:`2`,y:`8`,width:`12`,height:`2`,fill:`#8a9098`}),(0,t.jsx)(`rect`,{x:`6`,y:`10`,width:`4`,height:`5`,fill:`#6a7278`}),(0,t.jsx)(`rect`,{x:`3`,y:`0`,width:`1`,height:`1`,fill:`#e8ecf0`}),(0,t.jsx)(`rect`,{x:`12`,y:`0`,width:`1`,height:`1`,fill:`#e8ecf0`})]})})}function Y(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`2`,y:`2`,width:`2`,height:`12`,fill:`#5a6268`}),(0,t.jsx)(`rect`,{x:`4`,y:`2`,width:`10`,height:`12`,fill:`#7a8290`}),(0,t.jsx)(`rect`,{x:`13`,y:`3`,width:`1`,height:`10`,fill:`#e8ecf0`}),(0,t.jsx)(`rect`,{x:`7`,y:`4`,width:`2`,height:`1`,fill:`#9aa2aa`}),(0,t.jsx)(`rect`,{x:`6`,y:`5`,width:`4`,height:`1`,fill:`#9aa2aa`}),(0,t.jsx)(`rect`,{x:`7`,y:`6`,width:`2`,height:`1`,fill:`#9aa2aa`}),(0,t.jsx)(`rect`,{x:`6`,y:`8`,width:`4`,height:`1`,fill:`#a0a8b0`}),(0,t.jsx)(`rect`,{x:`7`,y:`9`,width:`2`,height:`2`,fill:`#a0a8b0`})]})})}function X(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`4`,y:`1`,width:`8`,height:`1`,fill:`#9aa2aa`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`5`,fill:`#9aa2aa`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`#c0c8d0`}),(0,t.jsx)(`rect`,{x:`3`,y:`3`,width:`1`,height:`3`,fill:`#c0c8d0`}),(0,t.jsx)(`rect`,{x:`3`,y:`7`,width:`10`,height:`1`,fill:`#5a6268`}),(0,t.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`8`,fill:`#6a7278`}),(0,t.jsx)(`rect`,{x:`6`,y:`10`,width:`4`,height:`1`,fill:`#7a8290`})]})})}function ie(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#5a6a7a`}),(0,t.jsx)(`rect`,{x:`4`,y:`2`,width:`8`,height:`8`,fill:`#4a5a6a`}),(0,t.jsx)(`rect`,{x:`5`,y:`10`,width:`6`,height:`2`,fill:`#4a5a6a`}),(0,t.jsx)(`rect`,{x:`6`,y:`12`,width:`4`,height:`2`,fill:`#4a5a6a`}),(0,t.jsx)(`rect`,{x:`7`,y:`14`,width:`2`,height:`1`,fill:`#4a5a6a`}),(0,t.jsx)(`rect`,{x:`6`,y:`4`,width:`4`,height:`4`,fill:`#5dcaa5`}),(0,t.jsx)(`rect`,{x:`7`,y:`3`,width:`2`,height:`1`,fill:`#5dcaa5`}),(0,t.jsx)(`rect`,{x:`5`,y:`5`,width:`1`,height:`2`,fill:`#5dcaa5`}),(0,t.jsx)(`rect`,{x:`10`,y:`5`,width:`1`,height:`2`,fill:`#5dcaa5`}),(0,t.jsx)(`rect`,{x:`7`,y:`8`,width:`2`,height:`1`,fill:`#5dcaa5`})]})})}function ae(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`7`,y:`1`,width:`2`,height:`3`,fill:`#fac775`}),(0,t.jsx)(`rect`,{x:`7`,y:`12`,width:`2`,height:`3`,fill:`#fac775`}),(0,t.jsx)(`rect`,{x:`1`,y:`7`,width:`3`,height:`2`,fill:`#fac775`}),(0,t.jsx)(`rect`,{x:`12`,y:`7`,width:`3`,height:`2`,fill:`#fac775`}),(0,t.jsx)(`rect`,{x:`3`,y:`3`,width:`2`,height:`2`,fill:`#fac775`}),(0,t.jsx)(`rect`,{x:`11`,y:`3`,width:`2`,height:`2`,fill:`#fac775`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`2`,height:`2`,fill:`#fac775`}),(0,t.jsx)(`rect`,{x:`11`,y:`11`,width:`2`,height:`2`,fill:`#fac775`}),(0,t.jsx)(`rect`,{x:`5`,y:`5`,width:`6`,height:`6`,fill:`#ff9040`}),(0,t.jsx)(`rect`,{x:`6`,y:`6`,width:`4`,height:`4`,fill:`#ffdd80`}),(0,t.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`2`,fill:`#ffffff`})]})})}function oe(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`2`,y:`6`,width:`3`,height:`4`,fill:`#ae81ff`}),(0,t.jsx)(`rect`,{x:`7`,y:`4`,width:`3`,height:`4`,fill:`#ae81ff`}),(0,t.jsx)(`rect`,{x:`12`,y:`6`,width:`3`,height:`4`,fill:`#ae81ff`}),(0,t.jsx)(`rect`,{x:`5`,y:`7`,width:`2`,height:`2`,fill:`#7f77dd`}),(0,t.jsx)(`rect`,{x:`10`,y:`7`,width:`2`,height:`2`,fill:`#7f77dd`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`2`,height:`1`,fill:`#c8a8ff`}),(0,t.jsx)(`rect`,{x:`8`,y:`9`,width:`2`,height:`1`,fill:`#c8a8ff`}),(0,t.jsx)(`rect`,{x:`13`,y:`11`,width:`2`,height:`1`,fill:`#c8a8ff`})]})})}function se(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`7`,y:`1`,width:`2`,height:`2`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`6`,y:`3`,width:`4`,height:`4`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`3`,y:`4`,width:`3`,height:`2`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`10`,y:`3`,width:`3`,height:`2`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`12`,y:`2`,width:`2`,height:`2`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`5`,y:`7`,width:`2`,height:`4`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`9`,y:`7`,width:`2`,height:`4`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`4`,y:`11`,width:`2`,height:`3`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`10`,y:`11`,width:`2`,height:`3`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`7`,y:`3`,width:`2`,height:`1`,fill:`#eef0f4`})]})})}function ce(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`7`,y:`1`,width:`2`,height:`1`,fill:`#5dcaa5`}),(0,t.jsx)(`rect`,{x:`6`,y:`2`,width:`4`,height:`2`,fill:`#5dcaa5`}),(0,t.jsx)(`rect`,{x:`5`,y:`4`,width:`6`,height:`2`,fill:`#5dcaa5`}),(0,t.jsx)(`rect`,{x:`7`,y:`6`,width:`2`,height:`9`,fill:`#5dcaa5`}),(0,t.jsx)(`rect`,{x:`6`,y:`3`,width:`1`,height:`1`,fill:`#90e8cc`}),(0,t.jsx)(`rect`,{x:`9`,y:`3`,width:`1`,height:`1`,fill:`#90e8cc`}),(0,t.jsx)(`rect`,{x:`5`,y:`5`,width:`1`,height:`1`,fill:`#90e8cc`}),(0,t.jsx)(`rect`,{x:`10`,y:`5`,width:`1`,height:`1`,fill:`#90e8cc`})]})})}function le(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`7`,y:`5`,width:`2`,height:`9`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`5`,y:`10`,width:`6`,height:`2`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`6`,y:`12`,width:`4`,height:`2`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`7`,y:`14`,width:`2`,height:`1`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`5`,y:`11`,width:`1`,height:`1`,fill:`#ff8080`}),(0,t.jsx)(`rect`,{x:`10`,y:`11`,width:`1`,height:`1`,fill:`#ff8080`}),(0,t.jsx)(`rect`,{x:`6`,y:`13`,width:`1`,height:`1`,fill:`#ff8080`}),(0,t.jsx)(`rect`,{x:`9`,y:`13`,width:`1`,height:`1`,fill:`#ff8080`})]})})}function ue(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`7`,y:`1`,width:`2`,height:`2`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`6`,y:`3`,width:`4`,height:`1`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`5`,y:`4`,width:`6`,height:`10`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`4`,y:`6`,width:`8`,height:`7`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`5`,y:`7`,width:`6`,height:`6`,fill:`#ff4080`}),(0,t.jsx)(`rect`,{x:`4`,y:`9`,width:`8`,height:`4`,fill:`#ff4080`}),(0,t.jsx)(`rect`,{x:`5`,y:`5`,width:`2`,height:`3`,fill:`#eef0f4`}),(0,t.jsx)(`rect`,{x:`5`,y:`14`,width:`6`,height:`1`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`4`,y:`13`,width:`8`,height:`1`,fill:`#a8b0bc`})]})})}function de(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`7`,y:`1`,width:`2`,height:`3`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`6`,y:`3`,width:`4`,height:`1`,fill:`#5dcaa5`}),(0,t.jsx)(`rect`,{x:`5`,y:`4`,width:`6`,height:`9`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`4`,y:`6`,width:`8`,height:`6`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`5`,y:`6`,width:`6`,height:`6`,fill:`#66d9e8`}),(0,t.jsx)(`rect`,{x:`4`,y:`8`,width:`8`,height:`3`,fill:`#66d9e8`}),(0,t.jsx)(`rect`,{x:`6`,y:`7`,width:`2`,height:`3`,fill:`#b0eff6`}),(0,t.jsx)(`rect`,{x:`5`,y:`13`,width:`6`,height:`1`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`4`,y:`12`,width:`8`,height:`1`,fill:`#a8b0bc`})]})})}function fe(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`1`,y:`4`,width:`3`,height:`8`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`2`,y:`3`,width:`2`,height:`10`,fill:`#d4b060`}),(0,t.jsx)(`rect`,{x:`12`,y:`4`,width:`3`,height:`8`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`12`,y:`3`,width:`2`,height:`10`,fill:`#d4b060`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`12`,fill:`#f0e8c0`}),(0,t.jsx)(`rect`,{x:`2`,y:`4`,width:`12`,height:`8`,fill:`#f0e8c0`}),(0,t.jsx)(`rect`,{x:`5`,y:`5`,width:`6`,height:`1`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`5`,y:`7`,width:`6`,height:`1`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`5`,y:`9`,width:`4`,height:`1`,fill:`#c8a050`})]})})}function pe(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`6`,y:`1`,width:`4`,height:`1`,fill:`#b0eff6`}),(0,t.jsx)(`rect`,{x:`5`,y:`2`,width:`6`,height:`2`,fill:`#66d9e8`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`8`,height:`1`,fill:`#b0eff6`}),(0,t.jsx)(`rect`,{x:`3`,y:`5`,width:`10`,height:`4`,fill:`#378add`}),(0,t.jsx)(`rect`,{x:`4`,y:`5`,width:`4`,height:`3`,fill:`#66d9e8`}),(0,t.jsx)(`rect`,{x:`4`,y:`9`,width:`8`,height:`2`,fill:`#1a5a9a`}),(0,t.jsx)(`rect`,{x:`5`,y:`11`,width:`6`,height:`2`,fill:`#1a5a9a`}),(0,t.jsx)(`rect`,{x:`6`,y:`13`,width:`4`,height:`1`,fill:`#1a5a9a`}),(0,t.jsx)(`rect`,{x:`7`,y:`14`,width:`2`,height:`1`,fill:`#1a5a9a`})]})})}function me(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`2`,height:`2`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`11`,y:`2`,width:`2`,height:`2`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`8`,height:`10`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`3`,y:`6`,width:`10`,height:`6`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`6`,y:`6`,width:`4`,height:`6`,fill:`#ae81ff`}),(0,t.jsx)(`rect`,{x:`5`,y:`7`,width:`6`,height:`4`,fill:`#ae81ff`}),(0,t.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`4`,fill:`#c8a8ff`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`2`,height:`2`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`10`,y:`4`,width:`2`,height:`2`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`4`,y:`12`,width:`2`,height:`2`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`10`,y:`12`,width:`2`,height:`2`,fill:`#c8a050`})]})})}function he(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`4`,y:`2`,width:`8`,height:`5`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`4`,y:`2`,width:`2`,height:`5`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`5`,y:`3`,width:`6`,height:`3`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`6`,y:`4`,width:`4`,height:`1`,fill:`#1a1a20`}),(0,t.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`8`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`9`,y:`10`,width:`3`,height:`1`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`9`,y:`12`,width:`2`,height:`1`,fill:`#e6db74`})]})})}function ge(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`4`,y:`2`,width:`8`,height:`2`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`3`,y:`4`,width:`10`,height:`4`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`3`,y:`4`,width:`10`,height:`1`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`3`,y:`5`,width:`1`,height:`3`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`4`,y:`6`,width:`8`,height:`2`,fill:`#1a2a38`}),(0,t.jsx)(`rect`,{x:`2`,y:`8`,width:`12`,height:`4`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`2`,y:`8`,width:`12`,height:`1`,fill:`#7a8290`}),(0,t.jsx)(`rect`,{x:`5`,y:`10`,width:`6`,height:`1`,fill:`#7a8290`})]})})}function _e(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`1`,y:`2`,width:`4`,height:`5`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`11`,y:`2`,width:`4`,height:`5`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`3`,y:`4`,width:`10`,height:`10`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`4`,y:`3`,width:`8`,height:`11`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`4`,height:`8`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`7`,y:`3`,width:`2`,height:`11`,fill:`#5a6570`}),(0,t.jsx)(`rect`,{x:`4`,y:`14`,width:`8`,height:`1`,fill:`#7a8290`}),(0,t.jsx)(`rect`,{x:`6`,y:`1`,width:`4`,height:`3`,fill:`#8a9290`})]})})}function ve(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`6`,y:`1`,width:`4`,height:`2`,fill:`#7a6aaa`}),(0,t.jsx)(`rect`,{x:`5`,y:`3`,width:`6`,height:`2`,fill:`#7a6aaa`}),(0,t.jsx)(`rect`,{x:`3`,y:`5`,width:`10`,height:`8`,fill:`#5a4a8a`}),(0,t.jsx)(`rect`,{x:`2`,y:`7`,width:`12`,height:`5`,fill:`#5a4a8a`}),(0,t.jsx)(`rect`,{x:`3`,y:`5`,width:`2`,height:`8`,fill:`#7a6aaa`}),(0,t.jsx)(`rect`,{x:`11`,y:`5`,width:`2`,height:`8`,fill:`#7a6aaa`}),(0,t.jsx)(`rect`,{x:`4`,y:`13`,width:`2`,height:`2`,fill:`#5a4a8a`}),(0,t.jsx)(`rect`,{x:`10`,y:`13`,width:`2`,height:`2`,fill:`#5a4a8a`}),(0,t.jsx)(`rect`,{x:`7`,y:`2`,width:`2`,height:`1`,fill:`#c8a8ff`})]})})}function ye(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`4`,y:`1`,width:`8`,height:`1`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`7`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`3`,y:`3`,width:`1`,height:`6`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`4`,y:`9`,width:`8`,height:`3`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`5`,y:`12`,width:`6`,height:`2`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`6`,y:`14`,width:`4`,height:`1`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`7`,y:`4`,width:`2`,height:`5`,fill:`#378add`}),(0,t.jsx)(`rect`,{x:`5`,y:`6`,width:`6`,height:`2`,fill:`#378add`})]})})}function be(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`6`,y:`2`,width:`4`,height:`1`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`4`,y:`3`,width:`2`,height:`2`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`10`,y:`3`,width:`2`,height:`2`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`3`,y:`5`,width:`2`,height:`4`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`11`,y:`5`,width:`2`,height:`4`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`4`,y:`9`,width:`2`,height:`2`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`10`,y:`9`,width:`2`,height:`2`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`6`,y:`11`,width:`4`,height:`1`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`6`,y:`4`,width:`4`,height:`5`,fill:`#ae81ff`}),(0,t.jsx)(`rect`,{x:`7`,y:`5`,width:`2`,height:`3`,fill:`#c8a8ff`})]})})}function xe(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`3`,y:`1`,width:`4`,height:`7`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`9`,y:`1`,width:`4`,height:`7`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`3`,y:`1`,width:`4`,height:`1`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`9`,y:`1`,width:`4`,height:`1`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`3`,y:`3`,width:`1`,height:`4`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`9`,y:`3`,width:`1`,height:`4`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`2`,y:`8`,width:`5`,height:`4`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`9`,y:`8`,width:`5`,height:`4`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`1`,y:`12`,width:`7`,height:`3`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`8`,y:`12`,width:`7`,height:`3`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`1`,y:`12`,width:`7`,height:`1`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`8`,y:`12`,width:`7`,height:`1`,fill:`#cfd8e2`})]})})}function Se(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`1`,y:`9`,width:`14`,height:`2`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`2`,y:`8`,width:`12`,height:`1`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`8`,height:`5`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`5`,y:`3`,width:`6`,height:`1`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`6`,y:`2`,width:`4`,height:`1`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`1`,y:`9`,width:`14`,height:`1`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`4`,y:`8`,width:`8`,height:`1`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`6`,y:`5`,width:`4`,height:`2`,fill:`#c8a878`})]})})}function Ce(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`4`,y:`1`,width:`8`,height:`1`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`7`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`4`,y:`9`,width:`8`,height:`3`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`5`,y:`12`,width:`6`,height:`2`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`7`,y:`14`,width:`2`,height:`1`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`5`,y:`3`,width:`6`,height:`6`,fill:`#ae81ff`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`8`,height:`4`,fill:`#ae81ff`}),(0,t.jsx)(`rect`,{x:`7`,y:`4`,width:`2`,height:`5`,fill:`#c8a8ff`}),(0,t.jsx)(`rect`,{x:`5`,y:`6`,width:`6`,height:`2`,fill:`#c8a8ff`})]})})}function we(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`6`,y:`1`,width:`4`,height:`1`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`5`,y:`2`,width:`6`,height:`2`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`8`,height:`5`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`3`,y:`6`,width:`10`,height:`4`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`3`,y:`10`,width:`4`,height:`5`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`9`,y:`10`,width:`4`,height:`5`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`5`,y:`5`,width:`2`,height:`8`,fill:`#e84040`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`1`,height:`6`,fill:`#e84040`})]})})}function Te(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`7`,y:`1`,width:`2`,height:`2`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`7`,y:`13`,width:`2`,height:`2`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`1`,y:`7`,width:`2`,height:`2`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`13`,y:`7`,width:`2`,height:`2`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`4`,y:`3`,width:`2`,height:`2`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`10`,y:`3`,width:`2`,height:`2`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`4`,y:`11`,width:`2`,height:`2`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`10`,y:`11`,width:`2`,height:`2`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`5`,y:`5`,width:`6`,height:`6`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`6`,y:`6`,width:`4`,height:`4`,fill:`#5dcaa5`}),(0,t.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`2`,fill:`#90e8cc`})]})})}function Ee(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`4`,y:`1`,width:`3`,height:`9`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`9`,y:`1`,width:`3`,height:`9`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`4`,y:`1`,width:`3`,height:`1`,fill:`#c8a878`}),(0,t.jsx)(`rect`,{x:`9`,y:`1`,width:`3`,height:`1`,fill:`#c8a878`}),(0,t.jsx)(`rect`,{x:`3`,y:`10`,width:`4`,height:`4`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`9`,y:`10`,width:`4`,height:`4`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`2`,y:`13`,width:`6`,height:`2`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`9`,y:`13`,width:`6`,height:`2`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`2`,y:`13`,width:`6`,height:`1`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`9`,y:`13`,width:`6`,height:`1`,fill:`#c8a050`})]})})}function De(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`2`,y:`4`,width:`12`,height:`2`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`2`,y:`7`,width:`12`,height:`2`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`2`,y:`10`,width:`12`,height:`2`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`2`,y:`4`,width:`12`,height:`1`,fill:`#eef0f4`}),(0,t.jsx)(`rect`,{x:`2`,y:`7`,width:`12`,height:`1`,fill:`#eef0f4`}),(0,t.jsx)(`rect`,{x:`2`,y:`10`,width:`12`,height:`1`,fill:`#eef0f4`})]})})}function Oe(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`2`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`4`,y:`3`,width:`8`,height:`11`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`3`,y:`5`,width:`10`,height:`8`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`4`,y:`3`,width:`8`,height:`1`,fill:`#c8a878`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`1`,height:`8`,fill:`#c8a878`}),(0,t.jsx)(`rect`,{x:`6`,y:`8`,width:`4`,height:`3`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`7`,y:`9`,width:`2`,height:`1`,fill:`#e6db74`})]})})}function ke(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`3`,y:`1`,width:`3`,height:`3`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`2`,y:`4`,width:`5`,height:`4`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`2`,y:`8`,width:`2`,height:`4`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`5`,y:`8`,width:`2`,height:`4`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`10`,y:`1`,width:`3`,height:`3`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`9`,y:`4`,width:`5`,height:`4`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`9`,y:`8`,width:`2`,height:`4`,fill:`#cfd8e2`}),(0,t.jsx)(`rect`,{x:`12`,y:`8`,width:`2`,height:`4`,fill:`#cfd8e2`})]})})}function Ae(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`4`,y:`2`,width:`8`,height:`12`,fill:`#f0e8c0`}),(0,t.jsx)(`rect`,{x:`3`,y:`3`,width:`10`,height:`9`,fill:`#f0e8c0`}),(0,t.jsx)(`rect`,{x:`5`,y:`13`,width:`6`,height:`1`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`7`,y:`4`,width:`2`,height:`6`,fill:`#cc3030`}),(0,t.jsx)(`rect`,{x:`7`,y:`11`,width:`2`,height:`2`,fill:`#cc3030`})]})})}function je(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`2`,y:`2`,width:`4`,height:`12`,fill:`#f0e8c0`}),(0,t.jsx)(`rect`,{x:`6`,y:`2`,width:`4`,height:`12`,fill:`#e8e0b8`}),(0,t.jsx)(`rect`,{x:`10`,y:`2`,width:`4`,height:`12`,fill:`#f0e8c0`}),(0,t.jsx)(`rect`,{x:`2`,y:`2`,width:`12`,height:`1`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`2`,y:`13`,width:`12`,height:`1`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`3`,y:`5`,width:`3`,height:`1`,fill:`#5dcaa5`}),(0,t.jsx)(`rect`,{x:`6`,y:`6`,width:`1`,height:`2`,fill:`#5dcaa5`}),(0,t.jsx)(`rect`,{x:`7`,y:`8`,width:`4`,height:`1`,fill:`#5dcaa5`}),(0,t.jsx)(`rect`,{x:`10`,y:`9`,width:`1`,height:`2`,fill:`#5dcaa5`}),(0,t.jsx)(`rect`,{x:`11`,y:`10`,width:`2`,height:`2`,fill:`#ff6060`})]})})}function Me(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`6`,y:`1`,width:`4`,height:`2`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`5`,y:`3`,width:`6`,height:`1`,fill:`#8a6540`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`8`,height:`9`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`3`,y:`6`,width:`10`,height:`6`,fill:`#e6db74`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`8`,height:`1`,fill:`#fac775`}),(0,t.jsx)(`rect`,{x:`4`,y:`5`,width:`1`,height:`8`,fill:`#fac775`}),(0,t.jsx)(`rect`,{x:`6`,y:`7`,width:`4`,height:`4`,fill:`#c8a050`}),(0,t.jsx)(`rect`,{x:`7`,y:`8`,width:`2`,height:`2`,fill:`#fac775`}),(0,t.jsx)(`rect`,{x:`4`,y:`13`,width:`8`,height:`1`,fill:`#c8a050`})]})})}function Ne(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`7`,y:`1`,width:`2`,height:`2`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`7`,y:`13`,width:`2`,height:`2`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`1`,y:`7`,width:`2`,height:`2`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`13`,y:`7`,width:`2`,height:`2`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`3`,y:`3`,width:`2`,height:`2`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`11`,y:`3`,width:`2`,height:`2`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`2`,height:`2`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`11`,y:`11`,width:`2`,height:`2`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`8`,height:`8`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`3`,y:`5`,width:`10`,height:`6`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`5`,y:`3`,width:`6`,height:`10`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`6`,y:`6`,width:`4`,height:`4`,fill:`#1a1a20`}),(0,t.jsx)(`rect`,{x:`7`,y:`7`,width:`2`,height:`2`,fill:`#2a2a30`})]})})}function Pe(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`2`,y:`1`,width:`12`,height:`13`,fill:`#3a4a5a`}),(0,t.jsx)(`rect`,{x:`3`,y:`1`,width:`8`,height:`5`,fill:`#a8b0bc`}),(0,t.jsx)(`rect`,{x:`2`,y:`1`,width:`12`,height:`1`,fill:`#5a6a7a`}),(0,t.jsx)(`rect`,{x:`2`,y:`2`,width:`1`,height:`12`,fill:`#5a6a7a`}),(0,t.jsx)(`rect`,{x:`4`,y:`9`,width:`8`,height:`4`,fill:`#4a5a6a`}),(0,t.jsx)(`rect`,{x:`5`,y:`10`,width:`6`,height:`2`,fill:`#3a4a5a`}),(0,t.jsx)(`rect`,{x:`9`,y:`2`,width:`2`,height:`3`,fill:`#7a8290`})]})})}function Fe(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`2`,y:`3`,width:`12`,height:`8`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`10`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`4`,y:`12`,width:`8`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`5`,y:`13`,width:`6`,height:`1`,fill:`#c9aa3e`}),(0,t.jsx)(`rect`,{x:`4`,y:`6`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`5`,y:`5`,width:`2`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`7`,y:`6`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`8`,y:`6`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`9`,y:`5`,width:`2`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`11`,y:`6`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`6`,y:`9`,width:`4`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`5`,y:`8`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`10`,y:`8`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`3`,y:`8`,width:`1`,height:`1`,fill:`#f0a070`}),(0,t.jsx)(`rect`,{x:`12`,y:`8`,width:`1`,height:`1`,fill:`#f0a070`})]})})}function Ie(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`2`,y:`3`,width:`12`,height:`8`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`10`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`4`,y:`12`,width:`8`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`5`,y:`13`,width:`6`,height:`1`,fill:`#c9aa3e`}),(0,t.jsx)(`rect`,{x:`6`,y:`3`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`5`,y:`4`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`4`,y:`5`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`9`,y:`3`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`10`,y:`4`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`11`,y:`5`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`5`,y:`6`,width:`1`,height:`2`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`10`,y:`6`,width:`1`,height:`2`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`6`,y:`10`,width:`4`,height:`2`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`7`,y:`11`,width:`2`,height:`1`,fill:`#c0432f`}),(0,t.jsx)(`rect`,{x:`12`,y:`2`,width:`1`,height:`1`,fill:`#5aa9e6`}),(0,t.jsx)(`rect`,{x:`11`,y:`3`,width:`3`,height:`2`,fill:`#5aa9e6`}),(0,t.jsx)(`rect`,{x:`12`,y:`5`,width:`1`,height:`1`,fill:`#5aa9e6`}),(0,t.jsx)(`rect`,{x:`12`,y:`3`,width:`1`,height:`1`,fill:`#add6f5`})]})})}function Z(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`2`,y:`3`,width:`12`,height:`8`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`10`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`4`,y:`12`,width:`8`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`5`,y:`13`,width:`6`,height:`1`,fill:`#c9aa3e`}),(0,t.jsx)(`rect`,{x:`4`,y:`6`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`5`,y:`5`,width:`2`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`7`,y:`6`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`8`,y:`6`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`9`,y:`5`,width:`2`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`11`,y:`6`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`5`,y:`9`,width:`6`,height:`3`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`6`,y:`9`,width:`4`,height:`1`,fill:`#ffffff`}),(0,t.jsx)(`rect`,{x:`6`,y:`11`,width:`4`,height:`1`,fill:`#c0432f`}),(0,t.jsx)(`rect`,{x:`3`,y:`7`,width:`1`,height:`2`,fill:`#5aa9e6`}),(0,t.jsx)(`rect`,{x:`12`,y:`7`,width:`1`,height:`2`,fill:`#5aa9e6`})]})})}function Le(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`2`,y:`3`,width:`12`,height:`8`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`10`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`4`,y:`12`,width:`8`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`5`,y:`13`,width:`6`,height:`1`,fill:`#c9aa3e`}),(0,t.jsx)(`rect`,{x:`5`,y:`6`,width:`2`,height:`2`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`9`,y:`6`,width:`3`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`5`,y:`9`,width:`6`,height:`2`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`6`,y:`9`,width:`4`,height:`1`,fill:`#ffffff`}),(0,t.jsx)(`rect`,{x:`4`,y:`8`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`11`,y:`8`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`12`,y:`2`,width:`1`,height:`3`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`11`,y:`3`,width:`3`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`12`,y:`3`,width:`1`,height:`1`,fill:`#fff8e0`})]})})}function Re(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`2`,y:`3`,width:`12`,height:`8`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`10`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`4`,y:`12`,width:`8`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`5`,y:`13`,width:`6`,height:`1`,fill:`#c9aa3e`}),(0,t.jsx)(`rect`,{x:`5`,y:`4`,width:`1`,height:`3`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`4`,y:`5`,width:`3`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`10`,y:`4`,width:`1`,height:`3`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`9`,y:`5`,width:`3`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`5`,y:`9`,width:`6`,height:`3`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`6`,y:`9`,width:`4`,height:`1`,fill:`#ffffff`}),(0,t.jsx)(`rect`,{x:`6`,y:`11`,width:`4`,height:`1`,fill:`#c0432f`}),(0,t.jsx)(`rect`,{x:`4`,y:`8`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`11`,y:`8`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`13`,y:`1`,width:`1`,height:`3`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`13`,y:`5`,width:`1`,height:`1`,fill:`#f6d860`})]})})}function ze(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`2`,y:`3`,width:`12`,height:`8`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`10`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`4`,y:`12`,width:`8`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`5`,y:`13`,width:`6`,height:`1`,fill:`#c9aa3e`}),(0,t.jsx)(`rect`,{x:`4`,y:`6`,width:`3`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`9`,y:`6`,width:`3`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`6`,y:`11`,width:`4`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`5`,y:`10`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`10`,y:`10`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`12`,y:`2`,width:`1`,height:`1`,fill:`#5aa9e6`}),(0,t.jsx)(`rect`,{x:`11`,y:`3`,width:`3`,height:`2`,fill:`#5aa9e6`}),(0,t.jsx)(`rect`,{x:`12`,y:`5`,width:`1`,height:`1`,fill:`#5aa9e6`}),(0,t.jsx)(`rect`,{x:`12`,y:`3`,width:`1`,height:`1`,fill:`#add6f5`})]})})}function Be(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`2`,y:`3`,width:`12`,height:`8`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`10`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`4`,y:`12`,width:`8`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`5`,y:`13`,width:`6`,height:`1`,fill:`#c9aa3e`}),(0,t.jsx)(`rect`,{x:`4`,y:`5`,width:`2`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`10`,y:`5`,width:`2`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`5`,y:`6`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`10`,y:`6`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`6`,y:`10`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`7`,y:`11`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`8`,y:`10`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`9`,y:`11`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`4`,y:`2`,width:`1`,height:`1`,fill:`#5aa9e6`}),(0,t.jsx)(`rect`,{x:`3`,y:`3`,width:`3`,height:`1`,fill:`#5aa9e6`}),(0,t.jsx)(`rect`,{x:`4`,y:`4`,width:`1`,height:`1`,fill:`#5aa9e6`}),(0,t.jsx)(`rect`,{x:`4`,y:`3`,width:`1`,height:`1`,fill:`#add6f5`})]})})}function Ve(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`2`,y:`3`,width:`12`,height:`8`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`10`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`4`,y:`12`,width:`8`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`5`,y:`13`,width:`6`,height:`1`,fill:`#c9aa3e`}),(0,t.jsx)(`rect`,{x:`4`,y:`3`,width:`2`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`9`,y:`3`,width:`2`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`4`,y:`5`,width:`3`,height:`3`,fill:`#ffffff`}),(0,t.jsx)(`rect`,{x:`9`,y:`5`,width:`3`,height:`3`,fill:`#ffffff`}),(0,t.jsx)(`rect`,{x:`5`,y:`6`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`10`,y:`6`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`6`,y:`9`,width:`4`,height:`3`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`7`,y:`10`,width:`2`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`11`,y:`1`,width:`2`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`13`,y:`2`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`12`,y:`3`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`12`,y:`5`,width:`1`,height:`1`,fill:`#3a2e1a`})]})})}function He(){return(0,t.jsx)(`svg`,{viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,children:(0,t.jsxs)(`g`,{transform:`scale(1.5)`,children:[(0,t.jsx)(`rect`,{x:`5`,y:`1`,width:`6`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`2`,width:`10`,height:`1`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`2`,y:`3`,width:`12`,height:`8`,fill:`#f6d860`}),(0,t.jsx)(`rect`,{x:`3`,y:`11`,width:`10`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`4`,y:`12`,width:`8`,height:`1`,fill:`#e3c24f`}),(0,t.jsx)(`rect`,{x:`5`,y:`13`,width:`6`,height:`1`,fill:`#c9aa3e`}),(0,t.jsx)(`rect`,{x:`4`,y:`5`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`5`,y:`6`,width:`2`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`9`,y:`6`,width:`2`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`11`,y:`5`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`5`,y:`7`,width:`2`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`9`,y:`7`,width:`2`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`6`,y:`10`,width:`4`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`5`,y:`11`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`10`,y:`11`,width:`1`,height:`1`,fill:`#3a2e1a`}),(0,t.jsx)(`rect`,{x:`12`,y:`1`,width:`1`,height:`3`,fill:`#e23b3b`}),(0,t.jsx)(`rect`,{x:`11`,y:`2`,width:`3`,height:`1`,fill:`#e23b3b`}),(0,t.jsx)(`rect`,{x:`3`,y:`8`,width:`1`,height:`1`,fill:`#e87a5a`}),(0,t.jsx)(`rect`,{x:`12`,y:`8`,width:`1`,height:`1`,fill:`#e87a5a`})]})})}var Ue={sword:C,bow:w,staff:T,katar:E,book:D,hammer:O,neutral:k,fire:N,earth:A,wind:j,water:M,light:F,dark:P,void:I,human:L,beast:R,demon:z,angel:B,spirit:V,small:H,medium:U,large:W,"attack-sword":G,"attack-bow":K,"attack-staff":q,"attack-katar":J,"attack-book":Y,"attack-hammer":X,passive:ie,active:ae,combo:oe,stance:se,buff:ce,debuff:le,potion:ue,ether:de,scroll:fe,gem:pe,relic:me,key:he,helm:ge,armor:_e,cloak:ve,shield:ye,ring:be,greaves:xe,hat:Se,emblem:Ce,cape:we,badge:Te,boots:Ee,menu:De,inventory:Oe,party:ke,quest:Ae,map:je,shop:Me,settings:Ne,save:Pe,"emote-tysm":Fe,"emote-sos":Ie,"emote-lol":Z,"emote-win":Le,"emote-lgo":Re,"emote-ugh":ze,"emote-myb":Be,"emote-wut":Ve,"emote-grr":He},Q=[...e.c],We={staff:45,katar:45,hammer:45,book:45,bow:-45,"attack-staff":45,"attack-katar":45,"attack-hammer":45,"attack-book":45,"attack-bow":-45},$=Object.assign(function({name:e=`sword`,size:n=22,style:r}){let i=Ue[e]||C,a=We[e];return(0,t.jsx)(`span`,{style:{display:`inline-flex`,alignItems:`center`,justifyContent:`center`,width:n,height:n,imageRendering:`pixelated`,flexShrink:0,overflow:`visible`,...r},children:(0,t.jsx)(`span`,{style:{display:`inline-flex`,width:`100%`,height:`100%`,transform:a?`rotate(${a}deg) scale(0.82)`:void 0,transformOrigin:`center`},children:(0,t.jsx)(i,{})})})},{icons:Q}),Ge=$;function Ke(){return(0,t.jsx)(`svg`,{viewBox:`0 0 12 8`,width:12,height:12,"aria-hidden":`true`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,children:(0,t.jsx)(`polyline`,{points:`1,1.5 6,6.5 11,1.5`})})}function qe({href:e,label:n,className:i,children:a,...o}){return(0,t.jsx)(`a`,{...o,href:e,"aria-label":n,className:r(`ns-section-arrow`,i),children:a||(0,t.jsx)(Ke,{})})}exports.Button=s,exports.FeatureCard=c,exports.HUDBar=f,exports.HUDChat=h,exports.HUDDivider=g,exports.HUDIcon=Ge,exports.HUDJoystick=_,exports.HUDLabel=ee,exports.HUDMinimap=b,exports.HUDPanel=te,exports.HUDTabWindow=S,exports.QuestCard=l,exports.RPGIcon=$,exports.SectionArrow=qe,exports.icons=Q;
|