@indxsearch/systm 2.8.0 → 2.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/dist/components/Alert/Alert.d.ts +24 -0
- package/dist/components/Button/Button.d.ts +4 -0
- package/dist/components/Chat/AnswerActions.d.ts +10 -0
- package/dist/components/Chat/ChatPanel.d.ts +24 -0
- package/dist/components/Chat/Citation.d.ts +33 -0
- package/dist/components/Chat/Composer.d.ts +26 -0
- package/dist/components/Chat/Message.d.ts +18 -0
- package/dist/components/Chat/StreamStatus.d.ts +7 -0
- package/dist/components/Chat/Suggestions.d.ts +9 -0
- package/dist/components/Chat/index.d.ts +7 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +1696 -1386
- package/dist/systm.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,29 @@ All notable changes to @indxsearch/systm will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.10.0] - 2026-09-15
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Chat family, promoted from the components-gallery mockup: `ChatPanel` (header /
|
|
13
|
+
scrolling thread / composer / hints frame, with `Kbd` and `defaultChatHints`),
|
|
14
|
+
`UserMessage` and `AssistantMessage`, `Composer` (Enter sends, Shift+Enter breaks
|
|
15
|
+
the line, grows to `maxLines`, Send becomes Stop while `streaming`), `CitationRef`
|
|
16
|
+
(inline numbered mark) and `CitationList` (numbered chips with a source-type icon),
|
|
17
|
+
`StreamStatus`, `Suggestions` and `AnswerActions` (Copy + Ask a follow-up). First
|
|
18
|
+
used by the docs assistant in indx-docs. Not yet in Blazor.
|
|
19
|
+
|
|
20
|
+
## [2.9.0] - 2026-09-12
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- `Alert`, `AlertTitle`, `AlertDescription`: an in-page callout with variants
|
|
25
|
+
`default` / `info` / `success` / `warning` / `destructive`, a default icon per
|
|
26
|
+
variant (`icon` overrides, `null` suppresses), and `role="alert"` for
|
|
27
|
+
warning/destructive. No shadow; the variant colours the icon, title and a 2px
|
|
28
|
+
start edge. Ported to Blazor.
|
|
29
|
+
- Tokens `--CLightBlue` and `--CWarning` in globals.css, matching the Blazor side.
|
|
30
|
+
|
|
8
31
|
## [2.8.0] - 2026-09-11
|
|
9
32
|
|
|
10
33
|
### Added
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export type AlertVariant = 'default' | 'info' | 'success' | 'warning' | 'destructive';
|
|
3
|
+
export interface AlertProps {
|
|
4
|
+
/** Tone. `destructive` for errors and irreversible outcomes, `warning` for things that need
|
|
5
|
+
* attention, `success` for a completed action, `info` for neutral notices. */
|
|
6
|
+
variant?: AlertVariant;
|
|
7
|
+
/** Leading icon; defaults per variant (none for `default` and `info`). Pass `null` to suppress. */
|
|
8
|
+
icon?: React.ReactNode;
|
|
9
|
+
className?: string;
|
|
10
|
+
/** Use `AlertTitle` and `AlertDescription` for the standard layout; any content works. */
|
|
11
|
+
children: React.ReactNode;
|
|
12
|
+
role?: 'alert' | 'status';
|
|
13
|
+
}
|
|
14
|
+
/** A callout that stays in the flow of the page — for outcomes and conditions the reader must
|
|
15
|
+
* not miss, not for transient toasts. Title and description are optional; an alert can be one line. */
|
|
16
|
+
export declare const Alert: React.FC<AlertProps>;
|
|
17
|
+
export declare const AlertTitle: React.FC<{
|
|
18
|
+
children: React.ReactNode;
|
|
19
|
+
className?: string;
|
|
20
|
+
}>;
|
|
21
|
+
export declare const AlertDescription: React.FC<{
|
|
22
|
+
children: React.ReactNode;
|
|
23
|
+
className?: string;
|
|
24
|
+
}>;
|
|
@@ -7,6 +7,10 @@ type ButtonBaseProps = {
|
|
|
7
7
|
size?: 'micro' | 'default' | 'large';
|
|
8
8
|
variant?: 'primary' | 'secondary' | 'ghost';
|
|
9
9
|
disabled?: boolean;
|
|
10
|
+
/** The action behind this button is in progress: a Spinner takes the left-icon slot and the
|
|
11
|
+
* button is disabled until it clears. Set it on every button that starts work the user has
|
|
12
|
+
* to wait for, so a slow operation never reads as a dead click. */
|
|
13
|
+
loading?: boolean;
|
|
10
14
|
iconLeft?: React.ReactElement<IconProps>;
|
|
11
15
|
iconRight?: React.ReactElement<IconProps>;
|
|
12
16
|
className?: string;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface AnswerActionsProps {
|
|
2
|
+
onCopy?: () => void;
|
|
3
|
+
/** Flip briefly after `onCopy` to acknowledge the copy. */
|
|
4
|
+
copied?: boolean;
|
|
5
|
+
onFollowUp?: () => void;
|
|
6
|
+
followUpLabel?: string;
|
|
7
|
+
className?: string;
|
|
8
|
+
}
|
|
9
|
+
/** The row under a finished answer: Copy on the left, the follow-up prompt on the right. */
|
|
10
|
+
export declare function AnswerActions({ onCopy, copied, onFollowUp, followUpLabel, className }: AnswerActionsProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface ChatPanelProps {
|
|
3
|
+
/** Rendered above the thread — typically a mode `Tabs`. */
|
|
4
|
+
header?: React.ReactNode;
|
|
5
|
+
/** The conversation: messages, status lines, suggestions. Scrolls independently. */
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
/** Rendered below the thread — typically a `Composer`. */
|
|
8
|
+
composer?: React.ReactNode;
|
|
9
|
+
/** Keyboard hints under the composer; `false` hides the row. */
|
|
10
|
+
hints?: React.ReactNode | false;
|
|
11
|
+
className?: string;
|
|
12
|
+
/** Ref to the scrolling thread, so a caller can keep the newest message in view. */
|
|
13
|
+
threadRef?: React.Ref<HTMLDivElement>;
|
|
14
|
+
'aria-label'?: string;
|
|
15
|
+
}
|
|
16
|
+
/** Keyboard hint pill for the hints row. */
|
|
17
|
+
export declare function Kbd({ children }: {
|
|
18
|
+
children: React.ReactNode;
|
|
19
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
/** Default hints: Enter sends, Shift+Enter breaks a line, Escape closes. */
|
|
21
|
+
export declare const defaultChatHints: import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
/** The frame of a conversation: optional header, a scrolling thread, the composer and a hints row.
|
|
23
|
+
* Sized by its container — give it a height (or let a modal/dialog do so) and the thread scrolls. */
|
|
24
|
+
export declare function ChatPanel({ header, children, composer, hints, className, threadRef, 'aria-label': ariaLabel }: ChatPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
interface IconProps {
|
|
3
|
+
size?: string | number;
|
|
4
|
+
color?: string;
|
|
5
|
+
}
|
|
6
|
+
export interface CitationRefProps {
|
|
7
|
+
/** The number the source list shows for this citation. */
|
|
8
|
+
n: number;
|
|
9
|
+
/** Where the source lives; rendered as a link when given. */
|
|
10
|
+
href?: string;
|
|
11
|
+
onClick?: (e: React.MouseEvent) => void;
|
|
12
|
+
title?: string;
|
|
13
|
+
className?: string;
|
|
14
|
+
}
|
|
15
|
+
/** Numbered inline mark that sits in the running text and points at an entry in `CitationList`. */
|
|
16
|
+
export declare function CitationRef({ n, href, onClick, title, className }: CitationRefProps): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export interface CitationItem {
|
|
18
|
+
n: number;
|
|
19
|
+
title: string;
|
|
20
|
+
href?: string;
|
|
21
|
+
/** Icon of the source type — a pixl icon element. */
|
|
22
|
+
icon?: React.ReactElement<IconProps>;
|
|
23
|
+
onClick?: (e: React.MouseEvent) => void;
|
|
24
|
+
}
|
|
25
|
+
export interface CitationListProps {
|
|
26
|
+
items: CitationItem[];
|
|
27
|
+
/** Heading over the list. */
|
|
28
|
+
label?: string;
|
|
29
|
+
className?: string;
|
|
30
|
+
}
|
|
31
|
+
/** The sources an answer drew on, as a row of numbered chips. */
|
|
32
|
+
export declare function CitationList({ items, label, className }: CitationListProps): import("react/jsx-runtime").JSX.Element | null;
|
|
33
|
+
export {};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface ComposerProps {
|
|
3
|
+
value: string;
|
|
4
|
+
onChange: (value: string) => void;
|
|
5
|
+
/** Called with the trimmed text on Enter or the send button. Not called while `streaming`. */
|
|
6
|
+
onSend: (text: string) => void;
|
|
7
|
+
/** Called by the Stop button, which replaces Send while `streaming`. */
|
|
8
|
+
onStop?: () => void;
|
|
9
|
+
/** An answer is in flight: the send button becomes Stop and Enter does nothing. */
|
|
10
|
+
streaming?: boolean;
|
|
11
|
+
placeholder?: string;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
autoFocus?: boolean;
|
|
14
|
+
/** Leading icon; defaults to the pixl AI agent. `null` hides it. */
|
|
15
|
+
icon?: React.ReactNode;
|
|
16
|
+
/** Tallest the field grows before it scrolls, in lines. */
|
|
17
|
+
maxLines?: number;
|
|
18
|
+
className?: string;
|
|
19
|
+
'aria-label'?: string;
|
|
20
|
+
}
|
|
21
|
+
export interface ComposerHandle {
|
|
22
|
+
focus: () => void;
|
|
23
|
+
}
|
|
24
|
+
/** The message field. Enter sends, Shift+Enter breaks the line; the field grows with its text up
|
|
25
|
+
* to `maxLines`. Send becomes Stop while an answer streams. */
|
|
26
|
+
export declare const Composer: React.ForwardRefExoticComponent<ComposerProps & React.RefAttributes<ComposerHandle>>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface UserMessageProps {
|
|
3
|
+
children: React.ReactNode;
|
|
4
|
+
className?: string;
|
|
5
|
+
}
|
|
6
|
+
/** What the person typed: right-aligned, on a raised tone. Line breaks are kept. */
|
|
7
|
+
export declare function UserMessage({ children, className }: UserMessageProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export interface AssistantMessageProps {
|
|
9
|
+
/** Name shown above the answer. */
|
|
10
|
+
label?: string;
|
|
11
|
+
/** Icon before the name; defaults to the pixl AI agent. */
|
|
12
|
+
icon?: React.ReactNode;
|
|
13
|
+
/** The answer and anything under it — `StreamStatus`, `CitationList`, `AnswerActions`. */
|
|
14
|
+
children: React.ReactNode;
|
|
15
|
+
className?: string;
|
|
16
|
+
}
|
|
17
|
+
/** The assistant's turn: a small labelled head, then whatever the answer is made of. */
|
|
18
|
+
export declare function AssistantMessage({ label, icon, children, className }: AssistantMessageProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface StreamStatusProps {
|
|
3
|
+
children: React.ReactNode;
|
|
4
|
+
className?: string;
|
|
5
|
+
}
|
|
6
|
+
/** One quiet line saying what the assistant is doing right now — "Searching the docs…", "Writing…". */
|
|
7
|
+
export declare function StreamStatus({ children, className }: StreamStatusProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface SuggestionsProps {
|
|
2
|
+
items: string[];
|
|
3
|
+
onPick: (text: string) => void;
|
|
4
|
+
/** Heading over the row. */
|
|
5
|
+
label?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
/** Questions to start from, shown while the thread is empty. */
|
|
9
|
+
export declare function Suggestions({ items, onPick, label, className }: SuggestionsProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { ChatPanel, Kbd, defaultChatHints, type ChatPanelProps } from './ChatPanel';
|
|
2
|
+
export { UserMessage, AssistantMessage, type UserMessageProps, type AssistantMessageProps } from './Message';
|
|
3
|
+
export { Composer, type ComposerProps, type ComposerHandle } from './Composer';
|
|
4
|
+
export { CitationRef, CitationList, type CitationRefProps, type CitationItem, type CitationListProps } from './Citation';
|
|
5
|
+
export { StreamStatus, type StreamStatusProps } from './StreamStatus';
|
|
6
|
+
export { Suggestions, type SuggestionsProps } from './Suggestions';
|
|
7
|
+
export { AnswerActions, type AnswerActionsProps } from './AnswerActions';
|
package/dist/index.cjs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;l<u;l++)d=c[l],!a.call(e,d)&&d!==o&&t(e,d,{get:(e=>i[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},s=(n,r,a)=>(a=n==null?{}:e(i(n)),o(r||!n||!n.__esModule?t(a,`default`,{value:n,enumerable:!0}):a,n));let c=require("react");c=s(c,1);let l=require("react/jsx-runtime"),u=require("@indxsearch/pixl"),d=require("react-range"),f=require("@radix-ui/react-select");f=s(f,1);let p=require("@radix-ui/react-popover");p=s(p,1);let m=require("@radix-ui/react-tooltip");m=s(m,1);let h=require("@radix-ui/react-dialog");h=s(h,1);let g=require("@radix-ui/react-navigation-menu");g=s(g,1);var _={button:`_button_1sns4_1`,micro:`_micro_1sns4_22`,default:`_default_1sns4_30`,large:`_large_1sns4_38`,primary:`_primary_1sns4_47`,secondary:`_secondary_1sns4_57`,ghost:`_ghost_1sns4_67`};function v(e){let{size:t=`default`,variant:n=`primary`,iconLeft:r,iconRight:i,className:a,children:o,disabled:s=!1,...u}=e,{href:d}=u,f=t===`micro`?`14px`:t===`large`?`21px`:`14px`,p=[_.button,_[t],_[n],s?`cursor-not-allowed`:`cursor-pointer`,a].filter(Boolean).join(` `),m=(0,l.jsxs)(l.Fragment,{children:[r&&c.default.cloneElement(r,{size:f,color:`currentColor`}),o,i&&c.default.cloneElement(i,{size:f,color:`currentColor`})]});if(d){let{type:e,href:t,onClick:n,tabIndex:r,...i}=u;return s?(0,l.jsx)(`a`,{className:p,...i,"aria-disabled":`true`,tabIndex:-1,onClick:e=>{e.preventDefault(),e.stopPropagation()},children:m}):(0,l.jsx)(`a`,{className:p,href:d,...i,tabIndex:r,onClick:n,children:m})}let{type:h=`button`,href:g,...v}=u;return(0,l.jsx)(`button`,{className:p,type:h,disabled:s,...v,children:m})}var y={checkboxWrapper:`_checkboxWrapper_1vygn_1`,checkbox:`_checkbox_1vygn_1`,label:`_label_1vygn_44`,score:`_score_1vygn_48`,disabled:`_disabled_1vygn_55`},b=({label:e,score:t,className:n=``,id:r,"aria-label":i,...a})=>{let o=c.default.useId(),s=r||o,u=t?`${s}-score`:void 0,d=a.disabled;return e||t?(0,l.jsxs)(`label`,{htmlFor:s,className:`${y.checkboxWrapper} ${n} ${d?y.disabled:``} ${d?`cursor-not-allowed`:`cursor-pointer`}`,children:[(0,l.jsx)(`input`,{id:s,type:`checkbox`,className:y.checkbox,"aria-describedby":u,"aria-label":i,...a}),e&&(0,l.jsx)(`span`,{className:y.label,children:e}),t&&(0,l.jsx)(`span`,{id:u,className:y.score,children:t})]}):(0,l.jsx)(`input`,{id:s,type:`checkbox`,className:`${y.checkbox} ${n}`,"aria-label":i,disabled:d,...a})},x={container:`_container_dlzj1_1`,default:`_default_dlzj1_5`};function S({children:e,className:t}){return(0,l.jsx)(`div`,{className:`${x.container} ${x.default} ${t||``}`,children:e})}var C={container:`_container_10bfq_1`,header:`_header_10bfq_11`,title:`_title_10bfq_31`,toggleButton:`_toggleButton_10bfq_38`,body:`_body_10bfq_49`};function w({title:e,children:t,className:n=``,collapsible:r=!0,collapsed:i=!1}){let[a,o]=(0,c.useState)(()=>!i),s=c.default.useId();return(0,c.useEffect)(()=>{r&&o(!i)},[i,r]),(0,l.jsxs)(`div`,{className:`${C.container} ${n}`,children:[e&&(r?(0,l.jsxs)(`button`,{type:`button`,className:C.header,onClick:()=>{r&&o(e=>!e)},"aria-label":`${e}: ${a?`Collapse panel`:`Expand panel`}`,"aria-expanded":a,"aria-controls":s,children:[(0,l.jsx)(`div`,{className:C.title,children:e}),(0,l.jsx)(`span`,{"aria-hidden":`true`,children:a?(0,l.jsx)(u.Minus,{color:`var(--lv5)`,size:14}):(0,l.jsx)(u.Plus,{color:`var(--lv5)`,size:14})})]}):(0,l.jsx)(`div`,{className:C.header,children:(0,l.jsx)(`div`,{className:C.title,children:e})})),(!r||a)&&(0,l.jsx)(`div`,{id:s,className:C.body,role:`region`,"aria-label":e||`Filter panel content`,children:t})]})}var T={wrapper:`_wrapper_tf1yl_1`,label:`_label_tf1yl_7`,inputContainer:`_inputContainer_tf1yl_12`,input:`_input_tf1yl_12`,focus:`_focus_tf1yl_35`,searchIcon:`_searchIcon_tf1yl_52`,rightContent:`_rightContent_tf1yl_67`,sizeMicro:`_sizeMicro_tf1yl_78`,sizeDefault:`_sizeDefault_tf1yl_87`,error:`_error_tf1yl_110`,errorText:`_errorText_tf1yl_114`},E={micro:14,default:21};function D({label:e,error:t,className:n=``,showSearchIcon:r=!0,searchIcon:i,searchIconColor:a,inputSize:o=`default`,showFocusBorder:s=!1,children:d,id:f,type:p=`search`,...m}){let h=(0,c.useRef)(null),g=c.default.useId(),_=f||g,v=`${_}-error`,y=E[o],b={};a&&(b[`--search-icon-color`]=a);let x=i??(0,l.jsx)(u.Search,{}),S=o===`micro`?T.sizeMicro:T.sizeDefault;return(0,l.jsxs)(`div`,{className:`${T.wrapper} ${n}`,children:[e&&(0,l.jsx)(`label`,{htmlFor:_,className:T.label,children:e}),(0,l.jsxs)(`div`,{className:`${T.inputContainer} ${S}`,children:[r&&(0,l.jsx)(`span`,{className:T.searchIcon,"aria-hidden":`true`,children:c.default.cloneElement(x,{size:y,color:a??`var(--search-icon-color)`})}),(0,l.jsx)(`input`,{ref:h,id:_,type:p,className:`${T.input} ${s?T.focus:``} ${t?T.error:``}`,style:b,"aria-invalid":t?`true`:`false`,"aria-describedby":t?v:void 0,...m}),d&&(0,l.jsx)(`div`,{className:T.rightContent,children:d})]}),t&&(0,l.jsx)(`span`,{id:v,className:T.errorText,role:`alert`,children:t})]})}var O={wrapper:`_wrapper_su5p5_1`,label:`_label_su5p5_7`,input:`_input_su5p5_12`,error:`_error_su5p5_61`,errorText:`_errorText_su5p5_69`,borderBottom:`_borderBottom_su5p5_75`};function k({label:e,error:t,className:n=``,isValid:r=!0,variant:i=`default`,id:a,...o}){let s=c.default.useId(),u=a||s,d=`${u}-error`,f=t||!r;return(0,l.jsxs)(`div`,{className:`${O.wrapper} ${n}`,children:[e&&(0,l.jsxs)(`label`,{htmlFor:u,className:O.label,children:[e,o.required&&(0,l.jsx)(`span`,{"aria-label":`required`,children:` *`})]}),(0,l.jsx)(`input`,{id:u,className:`${O.input} ${i===`borderBottom`?O.borderBottom:``} ${f?O.error:``}`,"aria-invalid":f?`true`:`false`,"aria-describedby":t?d:void 0,...o}),t&&(0,l.jsx)(`span`,{id:d,className:O.errorText,role:`alert`,children:t})]})}var A={radioWrapper:`_radioWrapper_1faq0_1`,radioInput:`_radioInput_1faq0_9`,customRadio:`_customRadio_1faq0_23`,labelText:`_labelText_1faq0_57`,disabled:`_disabled_1faq0_63`},j=({id:e,name:t,value:n,label:r,checked:i=!1,onChange:a,disabled:o=!1,"aria-label":s})=>(0,l.jsxs)(`label`,{htmlFor:e,className:`${A.radioWrapper} ${o?A.disabled:``} ${o?`cursor-not-allowed`:`cursor-pointer`}`,children:[(0,l.jsx)(`input`,{id:e,type:`radio`,name:t,value:n,checked:i,onChange:a,disabled:o,"aria-label":s,className:A.radioInput}),(0,l.jsx)(`span`,{className:A.customRadio}),(0,l.jsx)(`span`,{className:A.labelText,children:r})]}),M={switch:`_switch_1xsea_1`,slider:`_slider_1xsea_23`,label:`_label_1xsea_28`,disabled:`_disabled_1xsea_43`},N=({id:e,checked:t,onChange:n,disabled:r=!1,label:i,"aria-label":a})=>{let o=c.default.useId(),s=e||o;return(0,l.jsxs)(`label`,{htmlFor:s,className:`${M.switch} ${r?M.disabled:``} ${r?`cursor-not-allowed`:`cursor-pointer`}`,children:[(0,l.jsx)(`input`,{id:s,type:`checkbox`,role:`switch`,"aria-checked":t,"aria-label":a,checked:t,onChange:e=>n(e.target.checked),disabled:r}),(0,l.jsx)(`span`,{className:M.slider,"aria-hidden":`true`}),i&&(0,l.jsx)(`span`,{className:M.label,children:i})]})},P={label:`_label_12as9_1`,basetrack:`_basetrack_12as9_8`,selectedtrack:`_selectedtrack_12as9_36`,livetrack:`_livetrack_12as9_43`,livetrackFaceted:`_livetrackFaceted_12as9_49`,livetrackDefault:`_livetrackDefault_12as9_52`,thumbs:`_thumbs_12as9_55`,disabled:`_disabled_12as9_89`},ee=e=>{let{min:t,max:n,step:r=1,disabled:i=!1,className:a,activeMin:o,activeMax:s,isFaceted:u=!1,highlightFaceted:f=!0,onChange:p,onFinalChange:m,label:h,"aria-label":g,id:_}=e,v=c.default.useId(),y=_||v;if(!(Number.isFinite(t)&&Number.isFinite(n)&&n>t))return(0,l.jsxs)(`div`,{className:a,children:[h&&(0,l.jsx)(`span`,{className:P.label,children:h}),(0,l.jsx)(`div`,{className:`${P.basetrack} ${P.disabled}`,"aria-hidden":`true`})]});if(`isRange`in e&&e.isRange){let c=e.value,[f,_]=c;return(0,l.jsxs)(`div`,{className:a,children:[h&&(0,l.jsx)(`label`,{htmlFor:y,className:P.label,children:h}),(0,l.jsx)(d.Range,{step:r,min:t,max:n,values:c,onChange:e=>p(e),onFinalChange:e=>m?.(e),disabled:i,renderTrack:({props:e,children:r})=>{let{key:i,...a}=e,c=n-t,d=(f-t)/c*100,p=(_-f)/c*100,m=0,h=0,g=typeof o==`number`&&typeof s==`number`&&s>o&&(o>t||s<n);return g&&(m=(o-t)/c*100,h=(s-o)/c*100),(0,l.jsxs)(`div`,{...a,className:P.basetrack,style:{...a.style},children:[!g&&(0,l.jsx)(`div`,{className:P.selectedtrack,style:{left:`${d}%`,width:`${p}%`,zIndex:`1`}}),g&&(0,l.jsx)(`div`,{className:`${P.livetrack} ${u?P.livetrackFaceted:P.livetrackDefault}`,style:{left:`${m}%`,width:`${h}%`,zIndex:`2`}}),r]},i)},renderThumb:({props:e,index:r})=>{let{key:a,...o}=e,s=r===0?f:_;return(0,l.jsx)(`div`,{...o,id:r===0?y:void 0,className:`${P.thumbs} ${i?P.disabled:``} ${i?`cursor-not-allowed`:`cursor-resize-col`}`,style:{...o.style,zIndex:`3`},"aria-label":g||(r===0?`Minimum value`:`Maximum value`),"aria-valuemin":t,"aria-valuemax":n,"aria-valuenow":s},a)}})]})}else{let c=e.value;return(0,l.jsxs)(`div`,{className:a,children:[h&&(0,l.jsx)(`label`,{htmlFor:y,className:P.label,children:h}),(0,l.jsx)(d.Range,{step:r,min:t,max:n,values:[c],onChange:e=>p(e[0]),onFinalChange:e=>m?.(e[0]),disabled:i,renderTrack:({props:e,children:r})=>{let{key:i,...a}=e,d=n-t,f=(c-t)/d*100,p=0,m=0,h=typeof o==`number`&&typeof s==`number`&&s>o&&(o>t||s<n);return h&&(p=(o-t)/d*100,m=(s-o)/d*100),(0,l.jsxs)(`div`,{...a,className:P.basetrack,style:{...a.style},children:[!h&&(0,l.jsx)(`div`,{className:P.selectedtrack,style:{left:`0%`,width:`${f}%`,zIndex:`1`}}),h&&(0,l.jsx)(`div`,{className:`${P.livetrack} ${u?P.livetrackFaceted:P.livetrackDefault}`,style:{left:`${p}%`,width:`${m}%`,zIndex:`2`}}),r]},i)},renderThumb:({props:e})=>{let{key:r,...a}=e;return(0,l.jsx)(`div`,{...a,id:y,className:`${P.thumbs} ${i?P.disabled:``} ${i?`cursor-not-allowed`:`cursor-resize-col`}`,style:{...a.style,zIndex:`3`},"aria-label":g,"aria-valuemin":t,"aria-valuemax":n,"aria-valuenow":c},r)}})]})}},F={wrapper:`_wrapper_15fsv_1`,label:`_label_15fsv_7`,trigger:`_trigger_15fsv_12`,micro:`_micro_15fsv_28`,default:`_default_15fsv_34`,large:`_large_15fsv_40`,icon:`_icon_15fsv_60`,content:`_content_15fsv_68`,viewport:`_viewport_15fsv_76`,item:`_item_15fsv_82`,itemIndicator:`_itemIndicator_15fsv_105`},te=({value:e,onValueChange:t,options:n,placeholder:r=`Select...`,className:i=``,disabled:a=!1,label:o,size:s=`default`,"aria-label":d,id:p})=>{let m=c.default.useId(),h=p||m,g=`${h}-label`,_=n.find(t=>t.value===e),v=(0,l.jsxs)(f.Root,{value:e,onValueChange:t,disabled:a,children:[(0,l.jsxs)(f.Trigger,{id:h,className:`${F.trigger} ${F[s]} ${i} cursor-pointer`,...o?{"aria-labelledby":g}:d?{"aria-label":d}:{},children:[(0,l.jsxs)(`span`,{style:{display:`inline-flex`,alignItems:`center`,gap:6},children:[_?.icon,(0,l.jsx)(f.Value,{placeholder:r})]}),(0,l.jsx)(f.Icon,{className:F.icon,"aria-hidden":`true`,children:(0,l.jsx)(u.Chevron_down,{size:s===`large`?21:14,color:`currentColor`})})]}),(0,l.jsx)(f.Portal,{children:(0,l.jsx)(f.Content,{className:F.content,position:`popper`,side:`bottom`,align:`start`,sideOffset:4,children:(0,l.jsx)(f.Viewport,{className:F.viewport,children:n.map(e=>(0,l.jsxs)(f.Item,{value:e.value,className:F.item,children:[(0,l.jsxs)(`span`,{style:{display:`inline-flex`,alignItems:`center`,gap:6},children:[e.icon,(0,l.jsx)(f.ItemText,{children:e.label})]}),(0,l.jsx)(f.ItemIndicator,{className:F.itemIndicator,children:(0,l.jsx)(u.Check,{size:12,color:`currentColor`})})]},e.value))})})})]});return o?(0,l.jsxs)(`div`,{className:F.wrapper,children:[(0,l.jsx)(`label`,{id:g,htmlFor:h,className:F.label,children:o}),v]}):v},ne={content:`_content_1qahr_1`},re=({trigger:e,children:t,open:n,onOpenChange:r,align:i=`end`,side:a=`bottom`,sideOffset:o=5,className:s=``,"aria-label":c,"aria-describedby":u})=>(0,l.jsxs)(p.Root,{open:n,onOpenChange:r,children:[(0,l.jsx)(p.Trigger,{asChild:!0,children:e}),(0,l.jsx)(p.Portal,{children:(0,l.jsx)(p.Content,{className:`${ne.content} ${s}`,align:i,side:a,sideOffset:o,"aria-label":c,"aria-describedby":u,children:t})})]}),I={table:`_table_1b0iq_1`,caption:`_caption_1b0iq_8`,headerRow:`_headerRow_1b0iq_25`,dataRow:`_dataRow_1b0iq_33`,cellInner:`_cellInner_1b0iq_41`,cellLabel:`_cellLabel_1b0iq_47`,cellContent:`_cellContent_1b0iq_52`,value:`_value_1b0iq_58`,icon:`_icon_1b0iq_64`};function ie({children:e,caption:t,"aria-label":n}){return(0,l.jsxs)(`table`,{className:I.table,"aria-label":n,children:[t&&(0,l.jsx)(`caption`,{className:I.caption,children:t}),e]})}function ae({children:e}){let t=c.default.Children.map(e,e=>c.default.isValidElement(e)&&e.type===`td`?(0,l.jsx)(`th`,{scope:`col`,...e.props}):e);return(0,l.jsx)(`thead`,{children:(0,l.jsx)(`tr`,{className:I.headerRow,children:t})})}function oe({children:e}){return(0,l.jsx)(`tr`,{className:I.dataRow,children:e})}function se({label:e,children:t,isHeader:n=!1,scope:r}){let i=n?`th`:`td`,a=n&&r?{scope:r}:{};return e||t?(0,l.jsx)(i,{...a,children:(0,l.jsxs)(`div`,{className:I.cellInner,children:[e&&(0,l.jsx)(`span`,{className:I.cellLabel,children:e}),t&&(0,l.jsx)(`div`,{className:I.cellContent,children:t})]})}):(0,l.jsx)(i,{...a,children:t})}function ce({children:e}){return(0,l.jsx)(`span`,{className:I.value,children:e})}function le({children:e,"aria-label":t}){let n=!t;return(0,l.jsx)(`span`,{className:I.icon,"aria-hidden":n?`true`:void 0,"aria-label":t,children:c.default.cloneElement(e,{size:`14px`,color:`currentColor`})})}var L={tabs:`_tabs_11q71_1`,scrollable:`_scrollable_11q71_11`,tab:`_tab_11q71_1`,active:`_active_11q71_54`,micro:`_micro_11q71_60`,default:`_default_11q71_67`,large:`_large_11q71_74`};function ue({items:e,value:t,onValueChange:n,size:r=`default`,scrollable:i=!1,getPanelId:a}){let o=(0,c.useRef)(null),s=(0,c.useRef)(new Map),u=(0,c.useId)(),[d,f]=(0,c.useState)({start:!1,end:!1}),p=Math.max(e.findIndex(e=>e.value===t),0),m=t=>{let r=e[t];if(!r)return;n(r.value);let a=s.current.get(r.value);a?.focus({preventScroll:!0}),i&&a?.scrollIntoView({block:`nearest`,inline:`nearest`})},h=(t,n)=>{if(e.length===0)return;let r;switch(t.key){case`ArrowLeft`:r=(n-1+e.length)%e.length;break;case`ArrowRight`:r=(n+1)%e.length;break;case`Home`:r=0;break;case`End`:r=e.length-1;break;default:return}t.preventDefault(),m(r)};return(0,c.useEffect)(()=>{let e=o.current;if(!i||!e)return;let t=()=>{let t=e.scrollLeft>1,n=Math.ceil(e.scrollLeft+e.clientWidth)<e.scrollWidth-1;f(e=>e.start===t&&e.end===n?e:{start:t,end:n})};t(),e.addEventListener(`scroll`,t,{passive:!0});let n=new ResizeObserver(t);return n.observe(e),()=>{e.removeEventListener(`scroll`,t),n.disconnect()}},[i,e.length]),(0,l.jsx)(`div`,{ref:o,className:`${L.tabs} ${i?L.scrollable:``}`,"data-overflow-start":i&&d.start?``:void 0,"data-overflow-end":i&&d.end?``:void 0,role:`tablist`,children:e.map((e,t)=>{let i=t===p;return(0,l.jsx)(`button`,{ref:t=>{t?s.current.set(e.value,t):s.current.delete(e.value)},id:`${u}-tab-${e.value}`,role:`tab`,type:`button`,"aria-selected":i,"aria-controls":a?.(e),tabIndex:i?0:-1,className:`${L.tab} ${L[r]} ${i?L.active:``}`,onClick:()=>n(e.value),onKeyDown:e=>h(e,t),children:e.label},e.value)})})}var R={root:`_root_1vvif_1`,micro:`_micro_1vvif_2`,default:`_default_1vvif_3`,list:`_list_1vvif_4`,item:`_item_1vvif_5`,separator:`_separator_1vvif_6`,step:`_step_1vvif_7`,switchable:`_switchable_1vvif_8`,label:`_label_1vvif_8`,text:`_text_1vvif_11`,trigger:`_trigger_1vvif_12`,icon:`_icon_1vvif_16`,option:`_option_1vvif_17`,menu:`_menu_1vvif_18`,menuDivider:`_menuDivider_1vvif_19`};function de(e){return c.default.isValidElement(e)?c.default.cloneElement(e,{size:`14px`,color:`currentColor`}):e}var z=`\0action`,fe=({items:e,size:t=`default`,className:n=``,separator:r=(0,l.jsx)(u.Chevron_right,{size:14,color:`currentColor`}),renderLink:i,"aria-label":a=`Breadcrumb`})=>(0,l.jsx)(`nav`,{"aria-label":a,className:`${R.root} ${R[t]} ${n}`,children:(0,l.jsx)(`ol`,{className:R.list,children:e.map((t,n)=>(0,l.jsxs)(`li`,{className:R.item,children:[n>0&&(0,l.jsx)(`span`,{className:R.separator,"aria-hidden":`true`,children:r}),(0,l.jsxs)(`div`,{className:`${R.step} ${t.switcher?R.switchable:``}`,children:[t.href?(()=>{let r={className:R.label,href:t.href,onClick:t.onClick,"aria-current":n===e.length-1?`page`:void 0,children:(0,l.jsxs)(l.Fragment,{children:[t.icon&&(0,l.jsx)(`span`,{className:R.icon,"aria-hidden":`true`,children:de(t.icon)}),(0,l.jsx)(`span`,{className:R.text,children:t.label})]})};return i?i(t,r):(0,l.jsx)(`a`,{...r})})():(0,l.jsxs)(`span`,{className:R.label,"aria-current":n===e.length-1?`page`:void 0,children:[t.icon&&(0,l.jsx)(`span`,{className:R.icon,"aria-hidden":`true`,children:de(t.icon)}),(0,l.jsx)(`span`,{className:R.text,children:t.label})]}),t.switcher&&(0,l.jsxs)(f.Root,{value:t.switcher.value,onValueChange:e=>e===z?t.switcher.action?.onSelect():t.switcher.onValueChange(e),disabled:t.switcher.disabled||t.switcher.options.length===0&&!t.switcher.action,children:[(0,l.jsx)(f.Trigger,{className:R.trigger,"aria-label":`${t.switcher.label}: ${t.label}`,children:(0,l.jsx)(f.Icon,{"aria-hidden":`true`,className:R.icon,children:(0,l.jsx)(u.Dropdown,{size:14,color:`currentColor`})})}),(0,l.jsx)(f.Portal,{children:(0,l.jsx)(f.Content,{className:`${F.content} ${R.menu}`,position:`popper`,align:`end`,sideOffset:4,collisionPadding:8,children:(0,l.jsxs)(f.Viewport,{className:F.viewport,children:[t.switcher.options.map(e=>(0,l.jsxs)(f.Item,{value:e.value,className:F.item,textValue:e.label,children:[(0,l.jsxs)(`span`,{className:R.option,children:[e.icon&&(0,l.jsx)(`span`,{className:R.icon,"aria-hidden":`true`,children:e.icon}),(0,l.jsx)(f.ItemText,{children:e.label})]}),(0,l.jsx)(f.ItemIndicator,{className:F.itemIndicator,children:(0,l.jsx)(u.Check,{size:12,color:`currentColor`})})]},e.value)),t.switcher.action&&(0,l.jsxs)(l.Fragment,{children:[(0,l.jsx)(f.Separator,{className:R.menuDivider}),(0,l.jsx)(f.Item,{value:z,className:F.item,textValue:t.switcher.action.label,children:(0,l.jsxs)(`span`,{className:R.option,children:[(0,l.jsx)(`span`,{className:R.icon,"aria-hidden":`true`,children:(0,l.jsx)(u.Plus,{size:14,color:`currentColor`})}),(0,l.jsx)(f.ItemText,{children:t.switcher.action.label})]})})]})]})})})]})]})]},t.id))})}),B={wrapper:`_wrapper_1a9jo_1`,track:`_track_1a9jo_8`,fill:`_fill_1a9jo_36`,label:`_label_1a9jo_46`};function pe({value:e,showLabel:t=!1,fulfilledColor:n=!1,className:r=``}){let i=Math.min(100,Math.max(0,e)),a=`${Math.round(i)}%`,o=n&&i>=100?`var(--CPureBlue)`:void 0;return(0,l.jsxs)(`div`,{className:`${B.wrapper} ${r}`,role:`progressbar`,"aria-valuenow":i,"aria-valuemin":0,"aria-valuemax":100,children:[(0,l.jsx)(`div`,{className:B.track,children:(0,l.jsx)(`div`,{className:B.fill,style:{width:`${i}%`,backgroundColor:o}})}),t&&(0,l.jsx)(`span`,{className:B.label,"aria-hidden":`true`,children:a})]})}var V={chip:`_chip_iaxe0_1`,large:`_large_iaxe0_14`};function me({children:e,color:t,textColor:n,className:r,icon:i,size:a=`default`}){let o={};return t&&(o.backgroundColor=t),n&&(o.color=n),(0,l.jsxs)(`span`,{className:[V.chip,a===`large`&&V.large,r].filter(Boolean).join(` `),style:o,children:[i&&c.default.cloneElement(i,{size:14,color:`currentColor`}),e]})}var H={tooltip:`_tooltip_1de7z_1`,arrow:`_arrow_1de7z_13`};function he({content:e,position:t=`top`,children:n,className:r}){return(0,l.jsx)(m.Provider,{delayDuration:80,children:(0,l.jsxs)(m.Root,{children:[(0,l.jsx)(m.Trigger,{asChild:!0,children:n}),(0,l.jsx)(m.Portal,{children:(0,l.jsxs)(m.Content,{side:t,sideOffset:7,className:[H.tooltip,r].filter(Boolean).join(` `),children:[e,(0,l.jsx)(m.Arrow,{className:H.arrow})]})})]})})}var U={wrapper:`_wrapper_1w5vh_1`,chart:`_chart_1w5vh_8`,svg:`_svg_1w5vh_33`,tooltip:`_tooltip_1w5vh_39`,tooltipLabel:`_tooltipLabel_1w5vh_49`,tooltipRow:`_tooltipRow_1w5vh_57`,tooltipDot:`_tooltipDot_1w5vh_64`,tooltipName:`_tooltipName_1w5vh_70`,tooltipValue:`_tooltipValue_1w5vh_76`,legend:`_legend_1w5vh_83`,legendItem:`_legendItem_1w5vh_90`,legendMark:`_legendMark_1w5vh_96`,legendLabel:`_legendLabel_1w5vh_102`},W=`var(--lv4)`,G=12,ge=20,_e=8,ve=28,K=20;function ye(e){return Number.isInteger(e)?String(e):e.toLocaleString(void 0,{maximumFractionDigits:2})}function be({series:e,labels:t,type:n=`line`,height:r=200,showLegend:i=!0,className:a}){let o=(0,c.useRef)(null),[s,u]=(0,c.useState)(0),[d,f]=(0,c.useState)(null);(0,c.useEffect)(()=>{let e=o.current;if(!e)return;let t=new ResizeObserver(([e])=>u(e.contentRect.width));return t.observe(e),u(e.clientWidth),()=>t.disconnect()},[]);let p=t?.length?ve:_e,m=Math.max(s-K-ge,0),h=Math.max(r-G-p,0),g=e.flatMap(e=>e.data.filter(Number.isFinite)),_=g.length?Math.max(...g,0):1,v=n===`bar`?0:Math.min(...g,0),y=_-v||1,b=Math.max(...e.map(e=>e.data.length),0),x=e=>G+(1-(e-v)/y)*h,S=e=>b<=1?K+m/2:K+e/(b-1)*m,C=(0,c.useCallback)(e=>{if(b===0)return;let t=e.currentTarget.getBoundingClientRect(),r=e.clientX-t.left,i=e.clientY-t.top;if(n===`line`){let e=Math.round((r-K)/m*(b-1));f({index:Math.max(0,Math.min(b-1,e)),x:r,y:i})}else{let e=m/b,t=Math.floor((r-K)/e);f({index:Math.max(0,Math.min(b-1,t)),x:r,y:i})}},[n,b,m]),w=(0,c.useCallback)(()=>f(null),[]),T=(0,l.jsx)(`line`,{x1:K,y1:G+h*.5,x2:K+m,y2:G+h*.5,stroke:`var(--chart-midline)`,strokeWidth:`0.5`}),E=(0,l.jsx)(`line`,{x1:K,y1:G+h,x2:K+m,y2:G+h,stroke:`var(--chart-baseline)`,strokeWidth:`1`}),D=d&&n===`bar`?(()=>{let e=m/b;return(0,l.jsx)(`rect`,{x:K+d.index*e,y:G,width:e,height:h,fill:`var(--chart-column-hover)`})})():null,O=()=>e.map((e,t)=>{if(!e.data.length)return null;let n=e.color??W;return(0,l.jsxs)(`g`,{children:[(0,l.jsx)(`polyline`,{points:e.data.map((e,t)=>`${S(t).toFixed(2)},${x(e).toFixed(2)}`).join(` `),fill:`none`,stroke:n,strokeWidth:`1`,strokeLinejoin:`round`,strokeLinecap:`round`}),e.data.map((e,t)=>{let r=d?.index===t?10:5,i=r/2;return(0,l.jsx)(`rect`,{x:S(t)-i,y:x(e)-i,width:r,height:r,fill:n},t)})]},t)}),k=()=>{if(!b)return null;let t=e.length,n=m/b,r=Math.max((n-2*(t+1))/t,2),i=G+h;return e.map((e,t)=>e.data.map((a,o)=>{let s=K+o*n+2+t*(r+2),c=x(a);return(0,l.jsx)(`rect`,{x:s,y:c,width:r,height:Math.max(i-c,0),fill:e.color??`var(--chart-bar)`},`${t}-${o}`)}))},A=()=>{if(!t?.length)return null;let e=G+h+18;return t.map((t,r)=>(0,l.jsx)(`text`,{x:n===`line`?S(r):K+(r+.5)*(m/b),y:e,textAnchor:`middle`,fill:`var(--lv4)`,style:{font:`var(--text-2xs)`},children:t},r))},j=d&&n===`line`?(0,l.jsx)(`line`,{x1:S(d.index),y1:G,x2:S(d.index),y2:G+h,stroke:`var(--chart-crosshair)`,strokeWidth:`1`,strokeDasharray:`3 3`}):null,M=d?(()=>{let n=t?.[d.index]??String(d.index+1),r=Math.min(Math.max(d.x,60),s-60);return(0,l.jsxs)(`div`,{className:U.tooltip,style:d.y<80?{left:r,top:d.y+12,transform:`translate(-50%, 0)`}:{left:r,top:d.y-8,transform:`translate(-50%, -100%)`},children:[(0,l.jsx)(`div`,{className:U.tooltipLabel,children:n}),e.map((e,t)=>(0,l.jsxs)(`div`,{className:U.tooltipRow,children:[(0,l.jsx)(`span`,{className:U.tooltipDot,style:{background:e.color??W}}),(0,l.jsx)(`span`,{className:U.tooltipName,children:e.label}),(0,l.jsx)(`span`,{className:U.tooltipValue,children:ye(e.data[d.index]??0)})]},t))]})})():null;return(0,l.jsxs)(`div`,{className:[U.wrapper,a].filter(Boolean).join(` `),children:[(0,l.jsxs)(`div`,{ref:o,className:U.chart,style:{height:r},children:[s>0&&(0,l.jsxs)(`svg`,{width:s,height:r,className:U.svg,onMouseMove:C,onMouseLeave:w,children:[T,E,D,j,n===`line`?O():k(),A()]}),M]}),i&&e.length>1&&(0,l.jsx)(`div`,{className:U.legend,children:e.map((e,t)=>(0,l.jsxs)(`div`,{className:U.legendItem,children:[(0,l.jsx)(`div`,{className:U.legendMark,style:{background:e.color??W}}),(0,l.jsx)(`span`,{className:U.legendLabel,children:e.label})]},t))})]})}var q={wrapper:`_wrapper_17ws4_1`,label:`_label_17ws4_7`,textarea:`_textarea_17ws4_12`,error:`_error_17ws4_48`,errorText:`_errorText_17ws4_56`};function xe({label:e,error:t,className:n=``,isValid:r=!0,id:i,rows:a=4,...o}){let s=c.default.useId(),u=i||s,d=`${u}-error`,f=t||!r;return(0,l.jsxs)(`div`,{className:`${q.wrapper} ${n}`,children:[e&&(0,l.jsxs)(`label`,{htmlFor:u,className:q.label,children:[e,o.required&&(0,l.jsx)(`span`,{"aria-label":`required`,children:` *`})]}),(0,l.jsx)(`textarea`,{id:u,rows:a,className:`${q.textarea} ${f?q.error:``}`,"aria-invalid":f?`true`:`false`,"aria-describedby":t?d:void 0,...o}),t&&(0,l.jsx)(`span`,{id:d,className:q.errorText,role:`alert`,children:t})]})}var J={overlay:`_overlay_xud7c_1`,content:`_content_xud7c_8`,title:`_title_xud7c_26`,description:`_description_xud7c_34`,close:`_close_xud7c_40`,srOnly:`_srOnly_xud7c_62`},Se=({trigger:e,children:t,open:n,onOpenChange:r,title:i,description:a,className:o=``,showClose:s=!0})=>(0,l.jsxs)(h.Root,{open:n,onOpenChange:r,children:[e&&(0,l.jsx)(h.Trigger,{asChild:!0,children:e}),(0,l.jsxs)(h.Portal,{children:[(0,l.jsx)(h.Overlay,{className:J.overlay}),(0,l.jsxs)(h.Content,{className:`${J.content} ${o}`,children:[(0,l.jsx)(h.Title,{className:i?J.title:J.srOnly,children:i||`Dialog`}),a&&(0,l.jsx)(h.Description,{className:J.description,children:a}),s&&(0,l.jsx)(h.Close,{className:J.close,"aria-label":`Close`,children:(0,l.jsx)(u.X_or_error,{size:16,color:`currentColor`})}),t]})]})]}),Y={wrapper:`_wrapper_aimna_1`,label:`_label_aimna_7`,trigger:`_trigger_aimna_12`,error:`_error_aimna_43`,placeholder:`_placeholder_aimna_47`,valueText:`_valueText_aimna_51`,calendar:`_calendar_aimna_55`,header:`_header_aimna_65`,monthLabel:`_monthLabel_aimna_71`,navButton:`_navButton_aimna_77`,weekdays:`_weekdays_aimna_95`,grid:`_grid_aimna_96`,weekday:`_weekday_aimna_95`,day:`_day_aimna_109`,outside:`_outside_aimna_127`,today:`_today_aimna_131`,selected:`_selected_aimna_136`,errorText:`_errorText_aimna_142`},Ce=[`Mo`,`Tu`,`We`,`Th`,`Fr`,`Sa`,`Su`],we=[`January`,`February`,`March`,`April`,`May`,`June`,`July`,`August`,`September`,`October`,`November`,`December`];function X(e){let t=String(e.getMonth()+1).padStart(2,`0`),n=String(e.getDate()).padStart(2,`0`);return`${e.getFullYear()}-${t}-${n}`}function Z(e,t){return!!e&&!!t&&e.getFullYear()===t.getFullYear()&&e.getMonth()===t.getMonth()&&e.getDate()===t.getDate()}function Te(e,t){let n=(new Date(e,t,1).getDay()+6)%7,r=[];for(let i=0;i<42;i++)r.push(new Date(e,t,1-n+i));return r}var Ee=({value:e,onChange:t,label:n,placeholder:r=`Select a date`,error:i,isValid:a=!0,disabled:o=!1,className:s=``,formatDate:d=X})=>{let f=c.default.useId(),m=`${f}-error`,h=!!i||!a,[g,_]=(0,c.useState)(!1),v=new Date,y=e??v,[b,x]=(0,c.useState)(y.getFullYear()),[S,C]=(0,c.useState)(y.getMonth()),[w,T]=(0,c.useState)(y),E=c.default.useRef(new Map),D=c.default.useRef(!1),O=t=>{if(t){let t=e??new Date;T(t),x(t.getFullYear()),C(t.getMonth())}_(t)};c.default.useEffect(()=>{D.current&&=(E.current.get(X(w))?.focus(),!1)},[w]);let k=(e,t)=>{let n=new Date(t),r={ArrowLeft:-1,ArrowRight:1,ArrowUp:-7,ArrowDown:7}[e.key];if(r!==void 0)n.setDate(n.getDate()+r);else if(e.key===`Home`)n.setDate(n.getDate()-(n.getDay()+6)%7);else if(e.key===`End`)n.setDate(n.getDate()+6-(n.getDay()+6)%7);else if(e.key===`PageUp`||e.key===`PageDown`){let t=n.getDate();n.setDate(1),n.setMonth(n.getMonth()+(e.key===`PageUp`?-1:1)*(e.shiftKey?12:1)),n.setDate(Math.min(t,new Date(n.getFullYear(),n.getMonth()+1,0).getDate()))}else return;e.preventDefault(),D.current=!0,T(n),x(n.getFullYear()),C(n.getMonth())};c.default.useEffect(()=>{g&&e&&(x(e.getFullYear()),C(e.getMonth()))},[g]);let A=()=>{S===0?(C(11),x(b-1)):C(S-1)},j=()=>{S===11?(C(0),x(b+1)):C(S+1)},M=e=>{t?.(e),_(!1)},N=Te(b,S);return(0,l.jsxs)(`div`,{className:`${Y.wrapper} ${s}`,children:[n&&(0,l.jsx)(`span`,{id:`${f}-label`,className:Y.label,children:n}),(0,l.jsxs)(p.Root,{open:g,onOpenChange:O,children:[(0,l.jsx)(p.Trigger,{asChild:!0,children:(0,l.jsxs)(`button`,{type:`button`,className:`${Y.trigger} ${h?Y.error:``}`,disabled:o,"aria-labelledby":n?`${f}-label ${f}-value`:void 0,"aria-invalid":h?`true`:`false`,"aria-describedby":i?m:void 0,children:[(0,l.jsx)(`span`,{id:`${f}-value`,className:e?Y.valueText:Y.placeholder,children:e?d(e):r}),(0,l.jsx)(u.Chevron_down,{size:14,color:`currentColor`})]})}),(0,l.jsx)(p.Portal,{children:(0,l.jsxs)(p.Content,{className:Y.calendar,align:`start`,sideOffset:5,"aria-label":n?`${n} calendar`:`Choose a date`,onOpenAutoFocus:e=>{e.preventDefault(),E.current.get(X(w))?.focus()},children:[(0,l.jsxs)(`div`,{className:Y.header,children:[(0,l.jsx)(`button`,{type:`button`,className:Y.navButton,onClick:A,"aria-label":`Previous month`,children:(0,l.jsx)(u.Chevron_left,{size:14,color:`currentColor`})}),(0,l.jsxs)(`span`,{className:Y.monthLabel,children:[we[S],` `,b]}),(0,l.jsx)(`button`,{type:`button`,className:Y.navButton,onClick:j,"aria-label":`Next month`,children:(0,l.jsx)(u.Chevron_right,{size:14,color:`currentColor`})})]}),(0,l.jsx)(`div`,{className:Y.weekdays,children:Ce.map(e=>(0,l.jsx)(`span`,{className:Y.weekday,children:e},e))}),(0,l.jsx)(`div`,{className:Y.grid,children:N.map(t=>{let n=t.getMonth()!==S,r=Z(t,e),i=Z(t,v);return(0,l.jsx)(`button`,{type:`button`,className:[Y.day,n?Y.outside:``,r?Y.selected:``,i&&!r?Y.today:``].filter(Boolean).join(` `),onClick:()=>M(t),ref:e=>{e?E.current.set(X(t),e):E.current.delete(X(t))},"aria-label":t.toLocaleDateString(void 0,{weekday:`long`,year:`numeric`,month:`long`,day:`numeric`}),"aria-pressed":r,"aria-current":i?`date`:void 0,tabIndex:Z(t,w)||w.getMonth()!==S&&t.getDate()===1&&!n?0:-1,onKeyDown:e=>k(e,t),children:t.getDate()},t.toISOString())})})]})})]}),i&&(0,l.jsx)(`span`,{id:m,className:Y.errorText,role:`alert`,children:i})]})},De={spinner:`_spinner_wspyi_1`,frame:`_frame_wspyi_8`},Oe={accelerate:{viewBox:`0 0 7 5`,delay:50,frames:[`M0 2H1V3H0V2Z`,`M0 2H1V3H0V2Z`,`M0 2H1V3H0V2Z`,`M1 2H2V3H1V2Z M2 2H3V3H2V2Z`,`M1 2H2V3H1V2Z M2 2H3V3H2V2Z`,`M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z`,`M4 2H5V3H4V2Z M5 2H6V3H5V2Z`,`M4 2H5V3H4V2Z M5 2H6V3H5V2Z`,`M6 2H7V3H6V2Z`,`M6 2H7V3H6V2Z`,`M6 2H7V3H6V2Z`,`M6 2H7V3H6V2Z`,`M6 2H7V3H6V2Z`,`M4 2H5V3H4V2Z M5 2H6V3H5V2Z`,`M4 2H5V3H4V2Z M5 2H6V3H5V2Z`,`M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z`,`M1 2H2V3H1V2Z M2 2H3V3H2V2Z`,`M1 2H2V3H1V2Z M2 2H3V3H2V2Z`,`M0 2H1V3H0V2Z`,`M0 2H1V3H0V2Z`]},accordion:{viewBox:`0 0 7 5`,delay:100,frames:[`M0 2H1V3H0V2Z`,`M1 2H2V3H1V2Z`,`M2 2H3V3H2V2Z`,`M3 2H4V3H3V2Z`,`M4 2H5V3H4V2Z`,`M5 2H6V3H5V2Z`,`M6 2H7V3H6V2Z`,`M5 2H6V3H5V2Z`,`M4 2H5V3H4V2Z`,`M3 2H4V3H3V2Z`,`M2 2H3V3H2V2Z`,`M1 2H2V3H1V2Z`]},analytics:{viewBox:`0 0 8 5`,delay:250,frames:[`M0 2H1V5H0V2Z M2 0H3V5H2V0Z M4 3H5V5H4V3Z M6 1H7V5H6V1Z`,`M7 2H8V5H7V2Z M1 0H2V5H1V0Z M3 3H4V5H3V3Z M5 1H6V5H5V1Z`,`M6 2H7V5H6V2Z M0 0H1V5H0V0Z M2 3H3V5H2V3Z M4 1H5V5H4V1Z`,`M5 2H6V5H5V2Z M7 0H8V5H7V0Z M1 3H2V5H1V3Z M3 1H4V5H3V1Z`,`M4 2H5V5H4V2Z M6 0H7V5H6V0Z M0 3H1V5H0V3Z M2 1H3V5H2V1Z`,`M3 2H4V5H3V2Z M5 0H6V5H5V0Z M7 3H8V5H7V3Z M1 1H2V5H1V1Z`,`M2 2H3V5H2V2Z M4 0H5V5H4V0Z M6 3H7V5H6V3Z M0 1H1V5H0V1Z`,`M1 2H2V5H1V2Z M3 0H4V5H3V0Z M5 3H6V5H5V3Z M7 1H8V5H7V1Z`]},"circle-open-close":{viewBox:`0 0 7 5`,delay:100,frames:[`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M4 1H5V2H4V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M4 3H5V4H4V3Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M4 3H5V4H4V3Z M3 3H4V4H3V3Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M4 3H5V4H4V3Z M3 3H4V4H3V3Z M2 3H3V4H2V3Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M4 3H5V4H4V3Z M3 3H4V4H3V3Z M2 3H3V4H2V3Z M2 2H3V3H2V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`]},"circle-rotate":{viewBox:`0 0 7 5`,delay:100,frames:[`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M4 1H5V2H4V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 2H5V3H4V2Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M4 3H5V4H4V3Z M4 2H5V3H4V2Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M4 2H5V3H4V2Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 3H3V4H2V3Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M4 2H5V3H4V2Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`]},clock:{viewBox:`0 0 7 5`,delay:250,frames:[`M3 2H4V3H3V2Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 0H3V1H2V0Z M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z`,`M3 2H4V3H3V2Z M4 2H5V3H4V2Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 0H3V1H2V0Z M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z`,`M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 0H3V1H2V0Z M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z`,`M3 2H4V3H3V2Z M2 2H3V3H2V2Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 0H3V1H2V0Z M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z`]},coffee:{viewBox:`0 0 7 5`,delay:250,frames:[`M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z`,`M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 3H6V4H3V3Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z`,`M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 2H6V4H3V2Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z`,`M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 1H6V4H3V1Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z`,`M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 2H6V4H3V2Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z`,`M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 3H6V4H3V3Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z`]},flag:{viewBox:`0 0 7 5`,delay:250,frames:[`M5 3H6V4H5V3Z M3 3H4V4H3V3Z M2 2H3V3H2V2Z M1 2H2V3H1V2Z M0 2H1V3H0V2Z M0 3H1V4H0V3Z M0 4H1V5H0V4Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z M2 0H3V1H2V0Z M1 0H2V1H1V0Z M3 0H4V1H3V0Z M4 1H5V2H4V1Z M4 3H5V4H4V3Z M5 2H6V3H5V2Z M5 1H6V2H5V1Z`,`M5 3H6V4H5V3Z M3 2H4V3H3V2Z M2 2H3V3H2V2Z M1 2H2V3H1V2Z M0 2H1V3H0V2Z M0 3H1V4H0V3Z M0 4H1V5H0V4Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z M2 0H3V1H2V0Z M1 0H2V1H1V0Z M3 0H4V1H3V0Z M4 1H5V2H4V1Z M4 3H5V4H4V3Z M5 2H6V3H5V2Z M5 1H6V2H5V1Z`,`M5 2H6V3H5V2Z M3 2H4V3H3V2Z M2 2H3V3H2V2Z M1 2H2V3H1V2Z M0 2H1V3H0V2Z M0 3H1V4H0V3Z M0 4H1V5H0V4Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z M2 0H3V1H2V0Z M1 0H2V1H1V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M4 2H5V3H4V2Z M5 1H6V2H5V1Z M5 0H6V1H5V0Z`]},grow:{viewBox:`0 0 7 5`,delay:250,frames:[`M3 2H4V3H3V2Z`,`M4 5H3V4H4V5ZM2 3H1L1 2L2 2L2 3ZM4 3H3V2L4 2V3ZM6 3H5V2L6 2V3ZM4 1L3 1V0L4 0V1Z`,`M2 5H1L1 4H2L2 5ZM4 5H3V4H4V5ZM6 5H5V4H6V5ZM2 3H1L1 2L2 2L2 3ZM4 3H3V2L4 2V3ZM6 3H5V2L6 2V3ZM2 1L1 1L1 0L2 0V1ZM4 1L3 1V0L4 0V1ZM6 1L5 1V0L6 0V1Z`,`M1 0H6V5H1V0Z`,`M2 5H1L1 4H2L2 5ZM4 5H3V4H4V5ZM6 5H5V4H6V5ZM2 3H1L1 2L2 2L2 3ZM4 3H3V2L4 2V3ZM6 3H5V2L6 2V3ZM2 1L1 1L1 0L2 0V1ZM4 1L3 1V0L4 0V1ZM6 1L5 1V0L6 0V1Z`,`M4 5H3V4H4V5ZM2 3H1L1 2L2 2L2 3ZM4 3H3V2L4 2V3ZM6 3H5V2L6 2V3ZM4 1L3 1V0L4 0V1Z`]},hourglass:{viewBox:`0 0 7 5`,delay:500,frames:[`M4 1H5V2H4V1Z M5 0H6V1H5V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M2 1H3V2H2V1Z M3 2H4V3H3V2Z M4 3H5V4H4V3Z M5 4H6V5H5V4Z M2 3H3V4H2V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M3 3H4V4H3V3Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M4 1H5V2H4V1Z M5 0H6V1H5V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M2 1H3V2H2V1Z M3 2H4V3H3V2Z M4 3H5V4H4V3Z M5 4H6V5H5V4Z M2 3H3V4H2V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M3 2H4V3H3V2Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M3 1H4V2H3V1Z M3 3H4V4H3V3Z`,`M4 1H5V2H4V1Z M5 0H6V1H5V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M2 1H3V2H2V1Z M3 2H4V3H3V2Z M4 3H5V4H4V3Z M5 4H6V5H5V4Z M2 3H3V4H2V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M3 1H4V2H3V1Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M3 3L3 4L2 4L2 5L1 5L1 -2.18557e-07L2 -1.74846e-07L2 1L3 1L3 2L4 2L4 3L3 3ZM5 5L5 4L4 4L4 3L5 3L5 2L4 2L4 1L5 1L5 -4.37114e-08L6 0L6 5L5 5Z`]},loop:{viewBox:`0 0 7 5`,delay:100,frames:`M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 3H1V4H0V3Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z`.split(`.`)},pacman:{viewBox:`0 0 7 5`,delay:250,frames:[`M1 1H2V2H1V1Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M5 2H6V3H5V2Z M3 1H4V2H3V1Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M3 3H4V4H3V3Z`,`M0 1H1V2H0V1Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M2 2H3V3H2V2Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M3 0H4V1H3V0Z M0 2H1V3H0V2Z M1 2H2V3H1V2Z M0 3H1V4H0V3Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 3H5V4H4V3Z M3 3H4V4H3V3Z M6 2H7V3H6V2Z`]},pong:{viewBox:`0 0 7 5`,delay:250,frames:[`M0 2H1V3H0V2Z M6 4H7V5H6V4Z M0 1H1V2H0V1Z M6 3H7V4H6V3Z M1 2H2V3H1V2Z M0 0H1V1H0V0Z M6 2H7V3H6V2Z`,`M0 3H1V4H0V3Z M6 3H7V4H6V3Z M0 2H1V3H0V2Z M6 2H7V3H6V2Z M3 2H4V3H3V2Z M0 1H1V2H0V1Z M6 1H7V2H6V1Z`,`M0 4H1V5H0V4Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M6 1H7V2H6V1Z M5 2H6V3H5V2Z M0 2H1V3H0V2Z M6 0H7V1H6V0Z`,`M0 3H1V4H0V3Z M6 3H7V4H6V3Z M0 2H1V3H0V2Z M6 2H7V3H6V2Z M3 2H4V3H3V2Z M0 1H1V2H0V1Z M6 1H7V2H6V1Z`]},pulse:{viewBox:`0 0 7 5`,delay:250,frames:[`M3 2H4V3H3V2Z`,`M2 2H3V3H2V2Z M3 1H4V2H3V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z`,`M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 3H6V4H5V3Z M5 2H6V3H5V2Z M5 1H6V2H5V1Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z M2 0H3V1H2V0Z`]},rotate:{viewBox:`0 0 7 5`,delay:250,frames:[`M1 0H2V1H1V0Z`,`M5 0H6V1H5V0Z`,`M5 4H6V5H5V4Z`,`M1 4H2V5H1V4Z`]},rowing:{viewBox:`0 0 7 5`,delay:250,frames:[`M4 2H7V5H1V4H2V3H1V4H0V2H3V1H4V2ZM5 1H4V0H5V1ZM3 4H6V3H3V4Z`,`M4 2H7V5H1V4H3V3H1V4H0V2H3V1H4V2ZM4 4H6V3H4V4ZM3 1H2V0H3V1Z`,`M4 2H7V5H1V4H4V3H1V4H0V2H3V1H4V2ZM5 4H6V3H5V4ZM3 1H2V0H3V1Z`,`M4 2H7V5H1V4H6V3H1V4H0V2H3V0H4V2Z`]},sliders:{viewBox:`0 0 7 5`,delay:250,frames:[`M0 0H1V1H0V0Z M4 3H5V4H4V3Z M0 2H1V3H0V2Z M4 1H5V2H4V1Z M2 2H3V3H2V2Z M6 1H7V2H6V1Z M2 0H3V1H2V0Z M6 3H7V4H6V3Z M1 0H2V1H1V0Z M5 3H6V4H5V3Z M2 1H3V2H2V1Z M6 2H7V3H6V2Z M1 2H2V3H1V2Z M5 1H6V2H5V1Z M1 3H2V4H1V3Z M1 4H2V5H1V4Z M5 0H6V1H5V0Z M5 4H6V5H5V4Z M0 1H1V2H0V1Z M4 2H5V3H4V2Z`,`M0 1H1V2H0V1Z M4 2H5V3H4V2Z M0 3H1V4H0V3Z M4 0H5V1H4V0Z M2 3H3V4H2V3Z M6 0H7V1H6V0Z M2 1H3V2H2V1Z M6 2H7V3H6V2Z M1 1H2V2H1V1Z M5 2H6V3H5V2Z M2 2H3V3H2V2Z M6 1H7V2H6V1Z M1 3H2V4H1V3Z M5 0H6V1H5V0Z M1 4H2V5H1V4Z M1 0H2V1H1V0Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M0 2H1V3H0V2Z M4 1H5V2H4V1Z`,`M0 2H1V3H0V2Z M4 3H5V4H4V3Z M0 4H1V5H0V4Z M4 1H5V2H4V1Z M2 4H3V5H2V4Z M6 1H7V2H6V1Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M1 2H2V3H1V2Z M5 3H6V4H5V3Z M2 3H3V4H2V3Z M6 2H7V3H6V2Z M1 4H2V5H1V4Z M5 1H6V2H5V1Z M1 1H2V2H1V1Z M1 0H2V1H1V0Z M5 0H6V1H5V0Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M4 2H5V3H4V2Z`,`M0 1H1V2H0V1Z M4 4H5V5H4V4Z M0 3H1V4H0V3Z M4 2H5V3H4V2Z M2 3H3V4H2V3Z M6 2H7V3H6V2Z M2 1H3V2H2V1Z M6 4H7V5H6V4Z M1 1H2V2H1V1Z M5 4H6V5H5V4Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M1 3H2V4H1V3Z M5 2H6V3H5V2Z M1 4H2V5H1V4Z M1 0H2V1H1V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M0 2H1V3H0V2Z M4 3H5V4H4V3Z`]},"smile-wink":{viewBox:`0 0 7 5`,delay:500,frames:[`M5 5H2V4H5V5ZM2 4H1V3H2V4ZM6 4H5V3H6V4ZM1 2H0V1H1V2ZM3 2H2V1H3V2ZM5 2H4V1H5V2ZM7 2H6V1H7V2ZM2 1H1V0H2V1ZM6 1H5V0H6V1Z`,`M5 5H2V4H5V5ZM2 4H1V3H2V4ZM6 4H5V3H6V4ZM1 2H0V1H1V2ZM3 2H2V1H3V2ZM7 2H4V1H7V2ZM2 1H1V0H2V1Z`]},snake:{viewBox:`0 0 7 5`,delay:100,frames:`M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M3 4H4V5H3V4Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 1H3V2H2V1Z.M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z.M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z.M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z.M5 0H6V1H5V0Z M6 0H7V1H6V0Z.M6 0H7V1H6V0Z.M1 2H2V3H1V2Z M2 1H3V2H2V1Z M2 3H3V4H2V3Z M3 2H4V3H3V2Z.M1 2H2V3H1V2Z M2 1H3V2H2V1Z M2 3H3V4H2V3Z M3 2H4V3H3V2Z.M1 2H2V3H1V2Z M2 1H3V2H2V1Z M2 3H3V4H2V3Z M3 2H4V3H3V2Z.M2 2H3V3H2V2Z.M2 2H3V3H2V2Z`.split(`.`)},"snake-eight":{viewBox:`0 0 7 5`,delay:100,frames:`M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z.M0 1H1V2H0V1Z M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z.M0 2H1V3H0V2Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z.M0 3H1V4H0V3Z M0 2H1V3H0V2Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z M1 0H2V1H1V0Z.M0 4H1V5H0V4Z M0 3H1V4H0V3Z M0 2H1V3H0V2Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z.M1 4H2V5H1V4Z M0 4H1V5H0V4Z M0 3H1V4H0V3Z M0 2H1V3H0V2Z M0 1H1V2H0V1Z.M2 4H3V5H2V4Z M1 4H2V5H1V4Z M0 4H1V5H0V4Z M0 3H1V4H0V3Z M0 2H1V3H0V2Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M1 4H2V5H1V4Z M0 4H1V5H0V4Z M0 3H1V4H0V3Z.M3 3H4V4H3V3Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M1 4H2V5H1V4Z M0 4H1V5H0V4Z.M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M1 4H2V5H1V4Z.M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z.M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z.M4 0H5V1H4V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z.M5 0H6V1H5V0Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z.M6 0H7V1H6V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z.M6 1H7V2H6V1Z M6 0H7V1H6V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z.M6 2H7V3H6V2Z M6 1H7V2H6V1Z M6 0H7V1H6V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z.M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z M6 0H7V1H6V0Z M5 0H6V1H5V0Z.M6 4H7V5H6V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z M6 0H7V1H6V0Z.M5 4H6V5H5V4Z M6 4H7V5H6V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z.M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 4H7V5H6V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z.M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 4H7V5H6V4Z M6 3H7V4H6V3Z.M3 3H4V4H3V3Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 4H7V5H6V4Z.M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z.M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z.M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z.M2 0H3V1H2V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z.M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z`.split(`.`)},spark:{viewBox:`0 0 7 5`,delay:250,frames:[`M1 0H2V1H1V0Z M3 1H4V2H3V1Z M5 0H6V1H5V0Z M0 2H1V3H0V2Z M6 2H7V3H6V2Z M3 3H4V4H3V3Z M1 4H2V5H1V4Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M5 4H6V5H5V4Z`,`M0 1H1V2H0V1Z M3 1H4V2H3V1Z M6 1H7V2H6V1Z M6 3H7V4H6V3Z M3 3H4V4H3V3Z M0 3H1V4H0V3Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z`]},spectrum:{viewBox:`0 0 7 5`,delay:250,frames:[`M0 1H1V4H0V1Z M2 0H3V5H2V0Z M4 2H5V3H4V2Z M6 1H7V4H6V1Z`,`M0 2H1V3H0V2Z M2 1H3V4H2V1Z M4 1H5V4H4V1Z M6 0H7V5H6V0Z`,`M0 1H1V4H0V1Z M2 2H3V3H2V2Z M4 0H5V5H4V0Z M6 1H7V4H6V1Z`,`M0 0H1V5H0V0Z M2 1H3V4H2V1Z M4 1H5V4H4V1Z M6 2H7V3H6V2Z`]},speedometer:{viewBox:`0 0 7 5`,delay:250,frames:[`M1 4H2V5H1V4Z M0 2H1V3H0V2Z M1 1H2V2H1V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M6 2H7V3H6V2Z M6 3H7V4H6V3Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M3 3H4V4H3V3Z M2 2H3V3H2V2Z M4 0H5V1H4V0Z M5 1H6V2H5V1Z`,`M1 4H2V5H1V4Z M0 2H1V3H0V2Z M1 1H2V2H1V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M6 2H7V3H6V2Z M6 3H7V4H6V3Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M3 3H4V4H3V3Z M3 2H4V3H3V2Z M3 1H4V2H3V1Z M4 0H5V1H4V0Z M5 1H6V2H5V1Z`,`M1 4H2V5H1V4Z M0 2H1V3H0V2Z M1 1H2V2H1V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M6 2H7V3H6V2Z M6 3H7V4H6V3Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M3 3H4V4H3V3Z M4 2H5V3H4V2Z M4 0H5V1H4V0Z M5 1H6V2H5V1Z`,`M1 4H2V5H1V4Z M0 2H1V3H0V2Z M1 1H2V2H1V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M6 2H7V3H6V2Z M6 3H7V4H6V3Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M3 3H4V4H3V3Z M3 2H4V3H3V2Z M3 1H4V2H3V1Z M4 0H5V1H4V0Z M5 1H6V2H5V1Z`]},terminal:{viewBox:`0 0 7 5`,delay:500,frames:[`M1 2H2V3H1V2Z M1 0H2V1H1V0Z M1 4H2V5H1V4Z M2 3H3V4H2V3Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V5H3V0Z M4 0H5V3H4V0Z M4 4H5V5H4V4Z M5 0H6V3H5V0Z M5 4H6V5H5V4Z M6 0H7V5H6V0Z M2 4H3V5H2V4Z M0 0H1V5H0V0Z`,`M1 2H2V3H1V2Z M1 0H2V1H1V0Z M1 4H2V5H1V4Z M2 3H3V4H2V3Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V5H3V0Z M4 0H6V5H4V0Z M6 0H7V5H6V0Z M2 4H3V5H2V4Z M0 0H1V5H0V0Z`]},"wi-fi":{viewBox:`0 0 7 5`,delay:250,frames:[`M3 4H4V5H3V4Z`,`M3 4H4V5H3V4Z M5 3H6V4H5V3Z M1 3H2V4H1V3Z M2 2H5V3H2V2Z`,`M3 4H4V5H3V4Z M5 3H6V4H5V3Z M6 1H7V2H6V1Z M1 3H2V4H1V3Z M0 1H1V2H0V1Z M2 2H5V3H2V2Z M1 0H6V1H1V0Z`]}},Q=Object.keys(Oe);function ke({name:e=Q[0],size:t=21,color:n=`currentColor`,delay:r,className:i=``,"aria-label":a=`Loading`}){let o=Oe[e],[,,s,c]=o.viewBox.split(` `).map(Number),u=c/s,d=typeof t==`number`?t*u:`calc(${t} * ${u})`,f=r??o.delay,p=o.frames.length,m=p*f;return(0,l.jsx)(`svg`,{className:`${De.spinner} ${i}`,width:t,height:d,viewBox:o.viewBox,fill:`none`,role:`status`,"aria-label":a,xmlns:`http://www.w3.org/2000/svg`,children:o.frames.map((e,t)=>e?(0,l.jsx)(`path`,{className:De.frame,d:e,fill:n,style:{animation:`indx-spinner-${p} ${m}ms step-end infinite`,animationDelay:`${t*f-m}ms`}},t):null)})}var $={root:`_root_bfuyc_1`,micro:`_micro_bfuyc_7`,default:`_default_bfuyc_8`,list:`_list_bfuyc_10`,control:`_control_bfuyc_22`,link:`_link_bfuyc_45`,icon:`_icon_bfuyc_46`,caret:`_caret_bfuyc_46`,viewportPosition:`_viewportPosition_bfuyc_49`,viewport:`_viewport_bfuyc_49`,content:`_content_bfuyc_73`},Ae=c.default.forwardRef(({size:e=`default`,className:t=``,children:n,"aria-label":r=`Main navigation`,...i},a)=>(0,l.jsxs)(g.Root,{...i,ref:a,"aria-label":r,className:`${$.root} ${$[e]} ${t}`,children:[n,(0,l.jsx)(`div`,{className:$.viewportPosition,children:(0,l.jsx)(g.Viewport,{className:$.viewport})})]}));Ae.displayName=`NavigationMenu`;var je=c.default.forwardRef(({className:e=``,...t},n)=>(0,l.jsx)(g.List,{...t,ref:n,className:`${$.list} ${e}`}));je.displayName=`NavigationMenuList`;var Me=g.Item,Ne=c.default.forwardRef(({className:e=``,icon:t,children:n,...r},i)=>(0,l.jsxs)(g.Trigger,{...r,ref:i,className:`${$.control} ${e}`,children:[t&&(0,l.jsx)(`span`,{className:$.icon,"aria-hidden":`true`,children:c.default.cloneElement(t,{size:14,color:`currentColor`})}),n,(0,l.jsx)(`span`,{className:$.caret,"aria-hidden":`true`,children:(0,l.jsx)(u.Chevron_down,{size:14,color:`currentColor`})})]}));Ne.displayName=`NavigationMenuTrigger`;var Pe=c.default.forwardRef(({className:e=``,...t},n)=>(0,l.jsx)(g.Content,{...t,ref:n,className:`${$.content} ${e}`}));Pe.displayName=`NavigationMenuContent`;var Fe=c.default.forwardRef(({variant:e=`panel`,className:t=``,...n},r)=>(0,l.jsx)(g.Link,{...n,ref:r,className:`${e===`navigation`?$.control:$.link} ${t}`}));Fe.displayName=`NavigationMenuLink`,exports.Base=S,exports.Breadcrumbs=fe,exports.Button=v,exports.Chart=be,exports.Checkbox=b,exports.Chip=me,exports.DatePicker=Ee,exports.FilterPanelBase=w,exports.InputField=k,exports.Modal=Se,exports.NavigationMenu=Ae,exports.NavigationMenuContent=Pe,exports.NavigationMenuItem=Me,exports.NavigationMenuLink=Fe,exports.NavigationMenuList=je,exports.NavigationMenuTrigger=Ne,exports.Popover=re,exports.ProgressBar=pe,exports.RadioButton=j,exports.SearchField=D,exports.Select=te,exports.Slider=ee,exports.Spinner=ke,exports.Table=ie,exports.TableCell=se,exports.TableHeader=ae,exports.TableIcon=le,exports.TableRow=oe,exports.TableValue=ce,exports.Tabs=ue,exports.Textarea=xe,exports.ToggleSwitch=N,exports.Tooltip=he,exports.spinnerNames=Q;
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;l<u;l++)d=c[l],!a.call(e,d)&&d!==o&&t(e,d,{get:(e=>i[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},s=(n,r,a)=>(a=n==null?{}:e(i(n)),o(r||!n||!n.__esModule?t(a,`default`,{value:n,enumerable:!0}):a,n));let c=require("react");c=s(c,1);let l=require("react/jsx-runtime"),u=require("@indxsearch/pixl"),d=require("react-range"),f=require("@radix-ui/react-select");f=s(f,1);let p=require("@radix-ui/react-popover");p=s(p,1);let m=require("@radix-ui/react-tooltip");m=s(m,1);let h=require("@radix-ui/react-dialog");h=s(h,1);let g=require("@radix-ui/react-navigation-menu");g=s(g,1);var _={button:`_button_15lsu_1`,micro:`_micro_15lsu_29`,default:`_default_15lsu_37`,large:`_large_15lsu_45`,primary:`_primary_15lsu_54`,secondary:`_secondary_15lsu_64`,ghost:`_ghost_15lsu_74`},v={spinner:`_spinner_wspyi_1`,frame:`_frame_wspyi_8`},y={accelerate:{viewBox:`0 0 7 5`,delay:50,frames:[`M0 2H1V3H0V2Z`,`M0 2H1V3H0V2Z`,`M0 2H1V3H0V2Z`,`M1 2H2V3H1V2Z M2 2H3V3H2V2Z`,`M1 2H2V3H1V2Z M2 2H3V3H2V2Z`,`M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z`,`M4 2H5V3H4V2Z M5 2H6V3H5V2Z`,`M4 2H5V3H4V2Z M5 2H6V3H5V2Z`,`M6 2H7V3H6V2Z`,`M6 2H7V3H6V2Z`,`M6 2H7V3H6V2Z`,`M6 2H7V3H6V2Z`,`M6 2H7V3H6V2Z`,`M4 2H5V3H4V2Z M5 2H6V3H5V2Z`,`M4 2H5V3H4V2Z M5 2H6V3H5V2Z`,`M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z`,`M1 2H2V3H1V2Z M2 2H3V3H2V2Z`,`M1 2H2V3H1V2Z M2 2H3V3H2V2Z`,`M0 2H1V3H0V2Z`,`M0 2H1V3H0V2Z`]},accordion:{viewBox:`0 0 7 5`,delay:100,frames:[`M0 2H1V3H0V2Z`,`M1 2H2V3H1V2Z`,`M2 2H3V3H2V2Z`,`M3 2H4V3H3V2Z`,`M4 2H5V3H4V2Z`,`M5 2H6V3H5V2Z`,`M6 2H7V3H6V2Z`,`M5 2H6V3H5V2Z`,`M4 2H5V3H4V2Z`,`M3 2H4V3H3V2Z`,`M2 2H3V3H2V2Z`,`M1 2H2V3H1V2Z`]},analytics:{viewBox:`0 0 8 5`,delay:250,frames:[`M0 2H1V5H0V2Z M2 0H3V5H2V0Z M4 3H5V5H4V3Z M6 1H7V5H6V1Z`,`M7 2H8V5H7V2Z M1 0H2V5H1V0Z M3 3H4V5H3V3Z M5 1H6V5H5V1Z`,`M6 2H7V5H6V2Z M0 0H1V5H0V0Z M2 3H3V5H2V3Z M4 1H5V5H4V1Z`,`M5 2H6V5H5V2Z M7 0H8V5H7V0Z M1 3H2V5H1V3Z M3 1H4V5H3V1Z`,`M4 2H5V5H4V2Z M6 0H7V5H6V0Z M0 3H1V5H0V3Z M2 1H3V5H2V1Z`,`M3 2H4V5H3V2Z M5 0H6V5H5V0Z M7 3H8V5H7V3Z M1 1H2V5H1V1Z`,`M2 2H3V5H2V2Z M4 0H5V5H4V0Z M6 3H7V5H6V3Z M0 1H1V5H0V1Z`,`M1 2H2V5H1V2Z M3 0H4V5H3V0Z M5 3H6V5H5V3Z M7 1H8V5H7V1Z`]},"circle-open-close":{viewBox:`0 0 7 5`,delay:100,frames:[`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M4 1H5V2H4V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M4 3H5V4H4V3Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M4 3H5V4H4V3Z M3 3H4V4H3V3Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M4 3H5V4H4V3Z M3 3H4V4H3V3Z M2 3H3V4H2V3Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M4 3H5V4H4V3Z M3 3H4V4H3V3Z M2 3H3V4H2V3Z M2 2H3V3H2V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`]},"circle-rotate":{viewBox:`0 0 7 5`,delay:100,frames:[`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M4 1H5V2H4V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 2H5V3H4V2Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M4 3H5V4H4V3Z M4 2H5V3H4V2Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M4 2H5V3H4V2Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 3H3V4H2V3Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M4 2H5V3H4V2Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`]},clock:{viewBox:`0 0 7 5`,delay:250,frames:[`M3 2H4V3H3V2Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 0H3V1H2V0Z M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z`,`M3 2H4V3H3V2Z M4 2H5V3H4V2Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 0H3V1H2V0Z M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z`,`M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 0H3V1H2V0Z M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z`,`M3 2H4V3H3V2Z M2 2H3V3H2V2Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 0H3V1H2V0Z M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z`]},coffee:{viewBox:`0 0 7 5`,delay:250,frames:[`M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z`,`M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 3H6V4H3V3Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z`,`M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 2H6V4H3V2Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z`,`M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 1H6V4H3V1Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z`,`M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 2H6V4H3V2Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z`,`M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 3H6V4H3V3Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z`]},flag:{viewBox:`0 0 7 5`,delay:250,frames:[`M5 3H6V4H5V3Z M3 3H4V4H3V3Z M2 2H3V3H2V2Z M1 2H2V3H1V2Z M0 2H1V3H0V2Z M0 3H1V4H0V3Z M0 4H1V5H0V4Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z M2 0H3V1H2V0Z M1 0H2V1H1V0Z M3 0H4V1H3V0Z M4 1H5V2H4V1Z M4 3H5V4H4V3Z M5 2H6V3H5V2Z M5 1H6V2H5V1Z`,`M5 3H6V4H5V3Z M3 2H4V3H3V2Z M2 2H3V3H2V2Z M1 2H2V3H1V2Z M0 2H1V3H0V2Z M0 3H1V4H0V3Z M0 4H1V5H0V4Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z M2 0H3V1H2V0Z M1 0H2V1H1V0Z M3 0H4V1H3V0Z M4 1H5V2H4V1Z M4 3H5V4H4V3Z M5 2H6V3H5V2Z M5 1H6V2H5V1Z`,`M5 2H6V3H5V2Z M3 2H4V3H3V2Z M2 2H3V3H2V2Z M1 2H2V3H1V2Z M0 2H1V3H0V2Z M0 3H1V4H0V3Z M0 4H1V5H0V4Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z M2 0H3V1H2V0Z M1 0H2V1H1V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M4 2H5V3H4V2Z M5 1H6V2H5V1Z M5 0H6V1H5V0Z`]},grow:{viewBox:`0 0 7 5`,delay:250,frames:[`M3 2H4V3H3V2Z`,`M4 5H3V4H4V5ZM2 3H1L1 2L2 2L2 3ZM4 3H3V2L4 2V3ZM6 3H5V2L6 2V3ZM4 1L3 1V0L4 0V1Z`,`M2 5H1L1 4H2L2 5ZM4 5H3V4H4V5ZM6 5H5V4H6V5ZM2 3H1L1 2L2 2L2 3ZM4 3H3V2L4 2V3ZM6 3H5V2L6 2V3ZM2 1L1 1L1 0L2 0V1ZM4 1L3 1V0L4 0V1ZM6 1L5 1V0L6 0V1Z`,`M1 0H6V5H1V0Z`,`M2 5H1L1 4H2L2 5ZM4 5H3V4H4V5ZM6 5H5V4H6V5ZM2 3H1L1 2L2 2L2 3ZM4 3H3V2L4 2V3ZM6 3H5V2L6 2V3ZM2 1L1 1L1 0L2 0V1ZM4 1L3 1V0L4 0V1ZM6 1L5 1V0L6 0V1Z`,`M4 5H3V4H4V5ZM2 3H1L1 2L2 2L2 3ZM4 3H3V2L4 2V3ZM6 3H5V2L6 2V3ZM4 1L3 1V0L4 0V1Z`]},hourglass:{viewBox:`0 0 7 5`,delay:500,frames:[`M4 1H5V2H4V1Z M5 0H6V1H5V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M2 1H3V2H2V1Z M3 2H4V3H3V2Z M4 3H5V4H4V3Z M5 4H6V5H5V4Z M2 3H3V4H2V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M3 3H4V4H3V3Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M4 1H5V2H4V1Z M5 0H6V1H5V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M2 1H3V2H2V1Z M3 2H4V3H3V2Z M4 3H5V4H4V3Z M5 4H6V5H5V4Z M2 3H3V4H2V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M3 2H4V3H3V2Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M3 1H4V2H3V1Z M3 3H4V4H3V3Z`,`M4 1H5V2H4V1Z M5 0H6V1H5V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M2 1H3V2H2V1Z M3 2H4V3H3V2Z M4 3H5V4H4V3Z M5 4H6V5H5V4Z M2 3H3V4H2V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M3 1H4V2H3V1Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z`,`M3 3L3 4L2 4L2 5L1 5L1 -2.18557e-07L2 -1.74846e-07L2 1L3 1L3 2L4 2L4 3L3 3ZM5 5L5 4L4 4L4 3L5 3L5 2L4 2L4 1L5 1L5 -4.37114e-08L6 0L6 5L5 5Z`]},loop:{viewBox:`0 0 7 5`,delay:100,frames:`M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 3H1V4H0V3Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z`.split(`.`)},pacman:{viewBox:`0 0 7 5`,delay:250,frames:[`M1 1H2V2H1V1Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M5 2H6V3H5V2Z M3 1H4V2H3V1Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M3 3H4V4H3V3Z`,`M0 1H1V2H0V1Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M2 2H3V3H2V2Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M3 0H4V1H3V0Z M0 2H1V3H0V2Z M1 2H2V3H1V2Z M0 3H1V4H0V3Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 3H5V4H4V3Z M3 3H4V4H3V3Z M6 2H7V3H6V2Z`]},pong:{viewBox:`0 0 7 5`,delay:250,frames:[`M0 2H1V3H0V2Z M6 4H7V5H6V4Z M0 1H1V2H0V1Z M6 3H7V4H6V3Z M1 2H2V3H1V2Z M0 0H1V1H0V0Z M6 2H7V3H6V2Z`,`M0 3H1V4H0V3Z M6 3H7V4H6V3Z M0 2H1V3H0V2Z M6 2H7V3H6V2Z M3 2H4V3H3V2Z M0 1H1V2H0V1Z M6 1H7V2H6V1Z`,`M0 4H1V5H0V4Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M6 1H7V2H6V1Z M5 2H6V3H5V2Z M0 2H1V3H0V2Z M6 0H7V1H6V0Z`,`M0 3H1V4H0V3Z M6 3H7V4H6V3Z M0 2H1V3H0V2Z M6 2H7V3H6V2Z M3 2H4V3H3V2Z M0 1H1V2H0V1Z M6 1H7V2H6V1Z`]},pulse:{viewBox:`0 0 7 5`,delay:250,frames:[`M3 2H4V3H3V2Z`,`M2 2H3V3H2V2Z M3 1H4V2H3V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z`,`M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 3H6V4H5V3Z M5 2H6V3H5V2Z M5 1H6V2H5V1Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z M2 0H3V1H2V0Z`]},rotate:{viewBox:`0 0 7 5`,delay:250,frames:[`M1 0H2V1H1V0Z`,`M5 0H6V1H5V0Z`,`M5 4H6V5H5V4Z`,`M1 4H2V5H1V4Z`]},rowing:{viewBox:`0 0 7 5`,delay:250,frames:[`M4 2H7V5H1V4H2V3H1V4H0V2H3V1H4V2ZM5 1H4V0H5V1ZM3 4H6V3H3V4Z`,`M4 2H7V5H1V4H3V3H1V4H0V2H3V1H4V2ZM4 4H6V3H4V4ZM3 1H2V0H3V1Z`,`M4 2H7V5H1V4H4V3H1V4H0V2H3V1H4V2ZM5 4H6V3H5V4ZM3 1H2V0H3V1Z`,`M4 2H7V5H1V4H6V3H1V4H0V2H3V0H4V2Z`]},sliders:{viewBox:`0 0 7 5`,delay:250,frames:[`M0 0H1V1H0V0Z M4 3H5V4H4V3Z M0 2H1V3H0V2Z M4 1H5V2H4V1Z M2 2H3V3H2V2Z M6 1H7V2H6V1Z M2 0H3V1H2V0Z M6 3H7V4H6V3Z M1 0H2V1H1V0Z M5 3H6V4H5V3Z M2 1H3V2H2V1Z M6 2H7V3H6V2Z M1 2H2V3H1V2Z M5 1H6V2H5V1Z M1 3H2V4H1V3Z M1 4H2V5H1V4Z M5 0H6V1H5V0Z M5 4H6V5H5V4Z M0 1H1V2H0V1Z M4 2H5V3H4V2Z`,`M0 1H1V2H0V1Z M4 2H5V3H4V2Z M0 3H1V4H0V3Z M4 0H5V1H4V0Z M2 3H3V4H2V3Z M6 0H7V1H6V0Z M2 1H3V2H2V1Z M6 2H7V3H6V2Z M1 1H2V2H1V1Z M5 2H6V3H5V2Z M2 2H3V3H2V2Z M6 1H7V2H6V1Z M1 3H2V4H1V3Z M5 0H6V1H5V0Z M1 4H2V5H1V4Z M1 0H2V1H1V0Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M0 2H1V3H0V2Z M4 1H5V2H4V1Z`,`M0 2H1V3H0V2Z M4 3H5V4H4V3Z M0 4H1V5H0V4Z M4 1H5V2H4V1Z M2 4H3V5H2V4Z M6 1H7V2H6V1Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M1 2H2V3H1V2Z M5 3H6V4H5V3Z M2 3H3V4H2V3Z M6 2H7V3H6V2Z M1 4H2V5H1V4Z M5 1H6V2H5V1Z M1 1H2V2H1V1Z M1 0H2V1H1V0Z M5 0H6V1H5V0Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M4 2H5V3H4V2Z`,`M0 1H1V2H0V1Z M4 4H5V5H4V4Z M0 3H1V4H0V3Z M4 2H5V3H4V2Z M2 3H3V4H2V3Z M6 2H7V3H6V2Z M2 1H3V2H2V1Z M6 4H7V5H6V4Z M1 1H2V2H1V1Z M5 4H6V5H5V4Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M1 3H2V4H1V3Z M5 2H6V3H5V2Z M1 4H2V5H1V4Z M1 0H2V1H1V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M0 2H1V3H0V2Z M4 3H5V4H4V3Z`]},"smile-wink":{viewBox:`0 0 7 5`,delay:500,frames:[`M5 5H2V4H5V5ZM2 4H1V3H2V4ZM6 4H5V3H6V4ZM1 2H0V1H1V2ZM3 2H2V1H3V2ZM5 2H4V1H5V2ZM7 2H6V1H7V2ZM2 1H1V0H2V1ZM6 1H5V0H6V1Z`,`M5 5H2V4H5V5ZM2 4H1V3H2V4ZM6 4H5V3H6V4ZM1 2H0V1H1V2ZM3 2H2V1H3V2ZM7 2H4V1H7V2ZM2 1H1V0H2V1Z`]},snake:{viewBox:`0 0 7 5`,delay:100,frames:`M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M3 4H4V5H3V4Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 1H3V2H2V1Z.M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z.M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z.M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z.M5 0H6V1H5V0Z M6 0H7V1H6V0Z.M6 0H7V1H6V0Z.M1 2H2V3H1V2Z M2 1H3V2H2V1Z M2 3H3V4H2V3Z M3 2H4V3H3V2Z.M1 2H2V3H1V2Z M2 1H3V2H2V1Z M2 3H3V4H2V3Z M3 2H4V3H3V2Z.M1 2H2V3H1V2Z M2 1H3V2H2V1Z M2 3H3V4H2V3Z M3 2H4V3H3V2Z.M2 2H3V3H2V2Z.M2 2H3V3H2V2Z`.split(`.`)},"snake-eight":{viewBox:`0 0 7 5`,delay:100,frames:`M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z.M0 1H1V2H0V1Z M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z.M0 2H1V3H0V2Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z.M0 3H1V4H0V3Z M0 2H1V3H0V2Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z M1 0H2V1H1V0Z.M0 4H1V5H0V4Z M0 3H1V4H0V3Z M0 2H1V3H0V2Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z.M1 4H2V5H1V4Z M0 4H1V5H0V4Z M0 3H1V4H0V3Z M0 2H1V3H0V2Z M0 1H1V2H0V1Z.M2 4H3V5H2V4Z M1 4H2V5H1V4Z M0 4H1V5H0V4Z M0 3H1V4H0V3Z M0 2H1V3H0V2Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M1 4H2V5H1V4Z M0 4H1V5H0V4Z M0 3H1V4H0V3Z.M3 3H4V4H3V3Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M1 4H2V5H1V4Z M0 4H1V5H0V4Z.M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M1 4H2V5H1V4Z.M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z.M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z.M4 0H5V1H4V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z.M5 0H6V1H5V0Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z.M6 0H7V1H6V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z.M6 1H7V2H6V1Z M6 0H7V1H6V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z.M6 2H7V3H6V2Z M6 1H7V2H6V1Z M6 0H7V1H6V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z.M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z M6 0H7V1H6V0Z M5 0H6V1H5V0Z.M6 4H7V5H6V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z M6 0H7V1H6V0Z.M5 4H6V5H5V4Z M6 4H7V5H6V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z.M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 4H7V5H6V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z.M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 4H7V5H6V4Z M6 3H7V4H6V3Z.M3 3H4V4H3V3Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 4H7V5H6V4Z.M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z.M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z.M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z.M2 0H3V1H2V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z.M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z`.split(`.`)},spark:{viewBox:`0 0 7 5`,delay:250,frames:[`M1 0H2V1H1V0Z M3 1H4V2H3V1Z M5 0H6V1H5V0Z M0 2H1V3H0V2Z M6 2H7V3H6V2Z M3 3H4V4H3V3Z M1 4H2V5H1V4Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M5 4H6V5H5V4Z`,`M0 1H1V2H0V1Z M3 1H4V2H3V1Z M6 1H7V2H6V1Z M6 3H7V4H6V3Z M3 3H4V4H3V3Z M0 3H1V4H0V3Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z`]},spectrum:{viewBox:`0 0 7 5`,delay:250,frames:[`M0 1H1V4H0V1Z M2 0H3V5H2V0Z M4 2H5V3H4V2Z M6 1H7V4H6V1Z`,`M0 2H1V3H0V2Z M2 1H3V4H2V1Z M4 1H5V4H4V1Z M6 0H7V5H6V0Z`,`M0 1H1V4H0V1Z M2 2H3V3H2V2Z M4 0H5V5H4V0Z M6 1H7V4H6V1Z`,`M0 0H1V5H0V0Z M2 1H3V4H2V1Z M4 1H5V4H4V1Z M6 2H7V3H6V2Z`]},speedometer:{viewBox:`0 0 7 5`,delay:250,frames:[`M1 4H2V5H1V4Z M0 2H1V3H0V2Z M1 1H2V2H1V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M6 2H7V3H6V2Z M6 3H7V4H6V3Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M3 3H4V4H3V3Z M2 2H3V3H2V2Z M4 0H5V1H4V0Z M5 1H6V2H5V1Z`,`M1 4H2V5H1V4Z M0 2H1V3H0V2Z M1 1H2V2H1V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M6 2H7V3H6V2Z M6 3H7V4H6V3Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M3 3H4V4H3V3Z M3 2H4V3H3V2Z M3 1H4V2H3V1Z M4 0H5V1H4V0Z M5 1H6V2H5V1Z`,`M1 4H2V5H1V4Z M0 2H1V3H0V2Z M1 1H2V2H1V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M6 2H7V3H6V2Z M6 3H7V4H6V3Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M3 3H4V4H3V3Z M4 2H5V3H4V2Z M4 0H5V1H4V0Z M5 1H6V2H5V1Z`,`M1 4H2V5H1V4Z M0 2H1V3H0V2Z M1 1H2V2H1V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M6 2H7V3H6V2Z M6 3H7V4H6V3Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M3 3H4V4H3V3Z M3 2H4V3H3V2Z M3 1H4V2H3V1Z M4 0H5V1H4V0Z M5 1H6V2H5V1Z`]},terminal:{viewBox:`0 0 7 5`,delay:500,frames:[`M1 2H2V3H1V2Z M1 0H2V1H1V0Z M1 4H2V5H1V4Z M2 3H3V4H2V3Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V5H3V0Z M4 0H5V3H4V0Z M4 4H5V5H4V4Z M5 0H6V3H5V0Z M5 4H6V5H5V4Z M6 0H7V5H6V0Z M2 4H3V5H2V4Z M0 0H1V5H0V0Z`,`M1 2H2V3H1V2Z M1 0H2V1H1V0Z M1 4H2V5H1V4Z M2 3H3V4H2V3Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V5H3V0Z M4 0H6V5H4V0Z M6 0H7V5H6V0Z M2 4H3V5H2V4Z M0 0H1V5H0V0Z`]},"wi-fi":{viewBox:`0 0 7 5`,delay:250,frames:[`M3 4H4V5H3V4Z`,`M3 4H4V5H3V4Z M5 3H6V4H5V3Z M1 3H2V4H1V3Z M2 2H5V3H2V2Z`,`M3 4H4V5H3V4Z M5 3H6V4H5V3Z M6 1H7V2H6V1Z M1 3H2V4H1V3Z M0 1H1V2H0V1Z M2 2H5V3H2V2Z M1 0H6V1H1V0Z`]}},b=Object.keys(y);function x({name:e=b[0],size:t=21,color:n=`currentColor`,delay:r,className:i=``,"aria-label":a=`Loading`}){let o=y[e],[,,s,c]=o.viewBox.split(` `).map(Number),u=c/s,d=typeof t==`number`?t*u:`calc(${t} * ${u})`,f=r??o.delay,p=o.frames.length,m=p*f;return(0,l.jsx)(`svg`,{className:`${v.spinner} ${i}`,width:t,height:d,viewBox:o.viewBox,fill:`none`,role:`status`,"aria-label":a,xmlns:`http://www.w3.org/2000/svg`,children:o.frames.map((e,t)=>e?(0,l.jsx)(`path`,{className:v.frame,d:e,fill:n,style:{animation:`indx-spinner-${p} ${m}ms step-end infinite`,animationDelay:`${t*f-m}ms`}},t):null)})}function S(e){let{size:t=`default`,variant:n=`primary`,iconLeft:r,iconRight:i,className:a,children:o,loading:s=!1,...u}=e,d=e.disabled||s,{href:f}=u,p=t===`micro`?`14px`:t===`large`?`21px`:`14px`,m=t===`large`?21:14,h=[_.button,_[t],_[n],d?`cursor-not-allowed`:`cursor-pointer`,a].filter(Boolean).join(` `),g=(0,l.jsxs)(l.Fragment,{children:[s?(0,l.jsx)(x,{size:m}):r&&c.default.cloneElement(r,{size:p,color:`currentColor`}),o,i&&c.default.cloneElement(i,{size:p,color:`currentColor`})]});if(f){let{type:e,href:t,onClick:n,tabIndex:r,disabled:i,...a}=u;return d?(0,l.jsx)(`a`,{className:h,...a,"aria-disabled":`true`,"aria-busy":s||void 0,tabIndex:-1,onClick:e=>{e.preventDefault(),e.stopPropagation()},children:g}):(0,l.jsx)(`a`,{className:h,href:f,...a,tabIndex:r,onClick:n,children:g})}let{type:v=`button`,href:y,disabled:b,...S}=u;return(0,l.jsx)(`button`,{className:h,type:v,disabled:d,"aria-busy":s||void 0,...S,children:g})}var C={checkboxWrapper:`_checkboxWrapper_1vygn_1`,checkbox:`_checkbox_1vygn_1`,label:`_label_1vygn_44`,score:`_score_1vygn_48`,disabled:`_disabled_1vygn_55`},w=({label:e,score:t,className:n=``,id:r,"aria-label":i,...a})=>{let o=c.default.useId(),s=r||o,u=t?`${s}-score`:void 0,d=a.disabled;return e||t?(0,l.jsxs)(`label`,{htmlFor:s,className:`${C.checkboxWrapper} ${n} ${d?C.disabled:``} ${d?`cursor-not-allowed`:`cursor-pointer`}`,children:[(0,l.jsx)(`input`,{id:s,type:`checkbox`,className:C.checkbox,"aria-describedby":u,"aria-label":i,...a}),e&&(0,l.jsx)(`span`,{className:C.label,children:e}),t&&(0,l.jsx)(`span`,{id:u,className:C.score,children:t})]}):(0,l.jsx)(`input`,{id:s,type:`checkbox`,className:`${C.checkbox} ${n}`,"aria-label":i,disabled:d,...a})},T={container:`_container_dlzj1_1`,default:`_default_dlzj1_5`};function E({children:e,className:t}){return(0,l.jsx)(`div`,{className:`${T.container} ${T.default} ${t||``}`,children:e})}var D={container:`_container_10bfq_1`,header:`_header_10bfq_11`,title:`_title_10bfq_31`,toggleButton:`_toggleButton_10bfq_38`,body:`_body_10bfq_49`};function O({title:e,children:t,className:n=``,collapsible:r=!0,collapsed:i=!1}){let[a,o]=(0,c.useState)(()=>!i),s=c.default.useId();return(0,c.useEffect)(()=>{r&&o(!i)},[i,r]),(0,l.jsxs)(`div`,{className:`${D.container} ${n}`,children:[e&&(r?(0,l.jsxs)(`button`,{type:`button`,className:D.header,onClick:()=>{r&&o(e=>!e)},"aria-label":`${e}: ${a?`Collapse panel`:`Expand panel`}`,"aria-expanded":a,"aria-controls":s,children:[(0,l.jsx)(`div`,{className:D.title,children:e}),(0,l.jsx)(`span`,{"aria-hidden":`true`,children:a?(0,l.jsx)(u.Minus,{color:`var(--lv5)`,size:14}):(0,l.jsx)(u.Plus,{color:`var(--lv5)`,size:14})})]}):(0,l.jsx)(`div`,{className:D.header,children:(0,l.jsx)(`div`,{className:D.title,children:e})})),(!r||a)&&(0,l.jsx)(`div`,{id:s,className:D.body,role:`region`,"aria-label":e||`Filter panel content`,children:t})]})}var k={wrapper:`_wrapper_tf1yl_1`,label:`_label_tf1yl_7`,inputContainer:`_inputContainer_tf1yl_12`,input:`_input_tf1yl_12`,focus:`_focus_tf1yl_35`,searchIcon:`_searchIcon_tf1yl_52`,rightContent:`_rightContent_tf1yl_67`,sizeMicro:`_sizeMicro_tf1yl_78`,sizeDefault:`_sizeDefault_tf1yl_87`,error:`_error_tf1yl_110`,errorText:`_errorText_tf1yl_114`},A={micro:14,default:21};function j({label:e,error:t,className:n=``,showSearchIcon:r=!0,searchIcon:i,searchIconColor:a,inputSize:o=`default`,showFocusBorder:s=!1,children:d,id:f,type:p=`search`,...m}){let h=(0,c.useRef)(null),g=c.default.useId(),_=f||g,v=`${_}-error`,y=A[o],b={};a&&(b[`--search-icon-color`]=a);let x=i??(0,l.jsx)(u.Search,{}),S=o===`micro`?k.sizeMicro:k.sizeDefault;return(0,l.jsxs)(`div`,{className:`${k.wrapper} ${n}`,children:[e&&(0,l.jsx)(`label`,{htmlFor:_,className:k.label,children:e}),(0,l.jsxs)(`div`,{className:`${k.inputContainer} ${S}`,children:[r&&(0,l.jsx)(`span`,{className:k.searchIcon,"aria-hidden":`true`,children:c.default.cloneElement(x,{size:y,color:a??`var(--search-icon-color)`})}),(0,l.jsx)(`input`,{ref:h,id:_,type:p,className:`${k.input} ${s?k.focus:``} ${t?k.error:``}`,style:b,"aria-invalid":t?`true`:`false`,"aria-describedby":t?v:void 0,...m}),d&&(0,l.jsx)(`div`,{className:k.rightContent,children:d})]}),t&&(0,l.jsx)(`span`,{id:v,className:k.errorText,role:`alert`,children:t})]})}var M={wrapper:`_wrapper_su5p5_1`,label:`_label_su5p5_7`,input:`_input_su5p5_12`,error:`_error_su5p5_61`,errorText:`_errorText_su5p5_69`,borderBottom:`_borderBottom_su5p5_75`};function ee({label:e,error:t,className:n=``,isValid:r=!0,variant:i=`default`,id:a,...o}){let s=c.default.useId(),u=a||s,d=`${u}-error`,f=t||!r;return(0,l.jsxs)(`div`,{className:`${M.wrapper} ${n}`,children:[e&&(0,l.jsxs)(`label`,{htmlFor:u,className:M.label,children:[e,o.required&&(0,l.jsx)(`span`,{"aria-label":`required`,children:` *`})]}),(0,l.jsx)(`input`,{id:u,className:`${M.input} ${i===`borderBottom`?M.borderBottom:``} ${f?M.error:``}`,"aria-invalid":f?`true`:`false`,"aria-describedby":t?d:void 0,...o}),t&&(0,l.jsx)(`span`,{id:d,className:M.errorText,role:`alert`,children:t})]})}var N={radioWrapper:`_radioWrapper_1faq0_1`,radioInput:`_radioInput_1faq0_9`,customRadio:`_customRadio_1faq0_23`,labelText:`_labelText_1faq0_57`,disabled:`_disabled_1faq0_63`},te=({id:e,name:t,value:n,label:r,checked:i=!1,onChange:a,disabled:o=!1,"aria-label":s})=>(0,l.jsxs)(`label`,{htmlFor:e,className:`${N.radioWrapper} ${o?N.disabled:``} ${o?`cursor-not-allowed`:`cursor-pointer`}`,children:[(0,l.jsx)(`input`,{id:e,type:`radio`,name:t,value:n,checked:i,onChange:a,disabled:o,"aria-label":s,className:N.radioInput}),(0,l.jsx)(`span`,{className:N.customRadio}),(0,l.jsx)(`span`,{className:N.labelText,children:r})]}),P={switch:`_switch_1xsea_1`,slider:`_slider_1xsea_23`,label:`_label_1xsea_28`,disabled:`_disabled_1xsea_43`},ne=({id:e,checked:t,onChange:n,disabled:r=!1,label:i,"aria-label":a})=>{let o=c.default.useId(),s=e||o;return(0,l.jsxs)(`label`,{htmlFor:s,className:`${P.switch} ${r?P.disabled:``} ${r?`cursor-not-allowed`:`cursor-pointer`}`,children:[(0,l.jsx)(`input`,{id:s,type:`checkbox`,role:`switch`,"aria-checked":t,"aria-label":a,checked:t,onChange:e=>n(e.target.checked),disabled:r}),(0,l.jsx)(`span`,{className:P.slider,"aria-hidden":`true`}),i&&(0,l.jsx)(`span`,{className:P.label,children:i})]})},F={label:`_label_12as9_1`,basetrack:`_basetrack_12as9_8`,selectedtrack:`_selectedtrack_12as9_36`,livetrack:`_livetrack_12as9_43`,livetrackFaceted:`_livetrackFaceted_12as9_49`,livetrackDefault:`_livetrackDefault_12as9_52`,thumbs:`_thumbs_12as9_55`,disabled:`_disabled_12as9_89`},re=e=>{let{min:t,max:n,step:r=1,disabled:i=!1,className:a,activeMin:o,activeMax:s,isFaceted:u=!1,highlightFaceted:f=!0,onChange:p,onFinalChange:m,label:h,"aria-label":g,id:_}=e,v=c.default.useId(),y=_||v;if(!(Number.isFinite(t)&&Number.isFinite(n)&&n>t))return(0,l.jsxs)(`div`,{className:a,children:[h&&(0,l.jsx)(`span`,{className:F.label,children:h}),(0,l.jsx)(`div`,{className:`${F.basetrack} ${F.disabled}`,"aria-hidden":`true`})]});if(`isRange`in e&&e.isRange){let c=e.value,[f,_]=c;return(0,l.jsxs)(`div`,{className:a,children:[h&&(0,l.jsx)(`label`,{htmlFor:y,className:F.label,children:h}),(0,l.jsx)(d.Range,{step:r,min:t,max:n,values:c,onChange:e=>p(e),onFinalChange:e=>m?.(e),disabled:i,renderTrack:({props:e,children:r})=>{let{key:i,...a}=e,c=n-t,d=(f-t)/c*100,p=(_-f)/c*100,m=0,h=0,g=typeof o==`number`&&typeof s==`number`&&s>o&&(o>t||s<n);return g&&(m=(o-t)/c*100,h=(s-o)/c*100),(0,l.jsxs)(`div`,{...a,className:F.basetrack,style:{...a.style},children:[!g&&(0,l.jsx)(`div`,{className:F.selectedtrack,style:{left:`${d}%`,width:`${p}%`,zIndex:`1`}}),g&&(0,l.jsx)(`div`,{className:`${F.livetrack} ${u?F.livetrackFaceted:F.livetrackDefault}`,style:{left:`${m}%`,width:`${h}%`,zIndex:`2`}}),r]},i)},renderThumb:({props:e,index:r})=>{let{key:a,...o}=e,s=r===0?f:_;return(0,l.jsx)(`div`,{...o,id:r===0?y:void 0,className:`${F.thumbs} ${i?F.disabled:``} ${i?`cursor-not-allowed`:`cursor-resize-col`}`,style:{...o.style,zIndex:`3`},"aria-label":g||(r===0?`Minimum value`:`Maximum value`),"aria-valuemin":t,"aria-valuemax":n,"aria-valuenow":s},a)}})]})}else{let c=e.value;return(0,l.jsxs)(`div`,{className:a,children:[h&&(0,l.jsx)(`label`,{htmlFor:y,className:F.label,children:h}),(0,l.jsx)(d.Range,{step:r,min:t,max:n,values:[c],onChange:e=>p(e[0]),onFinalChange:e=>m?.(e[0]),disabled:i,renderTrack:({props:e,children:r})=>{let{key:i,...a}=e,d=n-t,f=(c-t)/d*100,p=0,m=0,h=typeof o==`number`&&typeof s==`number`&&s>o&&(o>t||s<n);return h&&(p=(o-t)/d*100,m=(s-o)/d*100),(0,l.jsxs)(`div`,{...a,className:F.basetrack,style:{...a.style},children:[!h&&(0,l.jsx)(`div`,{className:F.selectedtrack,style:{left:`0%`,width:`${f}%`,zIndex:`1`}}),h&&(0,l.jsx)(`div`,{className:`${F.livetrack} ${u?F.livetrackFaceted:F.livetrackDefault}`,style:{left:`${p}%`,width:`${m}%`,zIndex:`2`}}),r]},i)},renderThumb:({props:e})=>{let{key:r,...a}=e;return(0,l.jsx)(`div`,{...a,id:y,className:`${F.thumbs} ${i?F.disabled:``} ${i?`cursor-not-allowed`:`cursor-resize-col`}`,style:{...a.style,zIndex:`3`},"aria-label":g,"aria-valuemin":t,"aria-valuemax":n,"aria-valuenow":c},r)}})]})}},I={wrapper:`_wrapper_15fsv_1`,label:`_label_15fsv_7`,trigger:`_trigger_15fsv_12`,micro:`_micro_15fsv_28`,default:`_default_15fsv_34`,large:`_large_15fsv_40`,icon:`_icon_15fsv_60`,content:`_content_15fsv_68`,viewport:`_viewport_15fsv_76`,item:`_item_15fsv_82`,itemIndicator:`_itemIndicator_15fsv_105`},ie=({value:e,onValueChange:t,options:n,placeholder:r=`Select...`,className:i=``,disabled:a=!1,label:o,size:s=`default`,"aria-label":d,id:p})=>{let m=c.default.useId(),h=p||m,g=`${h}-label`,_=n.find(t=>t.value===e),v=(0,l.jsxs)(f.Root,{value:e,onValueChange:t,disabled:a,children:[(0,l.jsxs)(f.Trigger,{id:h,className:`${I.trigger} ${I[s]} ${i} cursor-pointer`,...o?{"aria-labelledby":g}:d?{"aria-label":d}:{},children:[(0,l.jsxs)(`span`,{style:{display:`inline-flex`,alignItems:`center`,gap:6},children:[_?.icon,(0,l.jsx)(f.Value,{placeholder:r})]}),(0,l.jsx)(f.Icon,{className:I.icon,"aria-hidden":`true`,children:(0,l.jsx)(u.Chevron_down,{size:s===`large`?21:14,color:`currentColor`})})]}),(0,l.jsx)(f.Portal,{children:(0,l.jsx)(f.Content,{className:I.content,position:`popper`,side:`bottom`,align:`start`,sideOffset:4,children:(0,l.jsx)(f.Viewport,{className:I.viewport,children:n.map(e=>(0,l.jsxs)(f.Item,{value:e.value,className:I.item,children:[(0,l.jsxs)(`span`,{style:{display:`inline-flex`,alignItems:`center`,gap:6},children:[e.icon,(0,l.jsx)(f.ItemText,{children:e.label})]}),(0,l.jsx)(f.ItemIndicator,{className:I.itemIndicator,children:(0,l.jsx)(u.Check,{size:12,color:`currentColor`})})]},e.value))})})})]});return o?(0,l.jsxs)(`div`,{className:I.wrapper,children:[(0,l.jsx)(`label`,{id:g,htmlFor:h,className:I.label,children:o}),v]}):v},ae={content:`_content_1qahr_1`},oe=({trigger:e,children:t,open:n,onOpenChange:r,align:i=`end`,side:a=`bottom`,sideOffset:o=5,className:s=``,"aria-label":c,"aria-describedby":u})=>(0,l.jsxs)(p.Root,{open:n,onOpenChange:r,children:[(0,l.jsx)(p.Trigger,{asChild:!0,children:e}),(0,l.jsx)(p.Portal,{children:(0,l.jsx)(p.Content,{className:`${ae.content} ${s}`,align:i,side:a,sideOffset:o,"aria-label":c,"aria-describedby":u,children:t})})]}),L={table:`_table_1b0iq_1`,caption:`_caption_1b0iq_8`,headerRow:`_headerRow_1b0iq_25`,dataRow:`_dataRow_1b0iq_33`,cellInner:`_cellInner_1b0iq_41`,cellLabel:`_cellLabel_1b0iq_47`,cellContent:`_cellContent_1b0iq_52`,value:`_value_1b0iq_58`,icon:`_icon_1b0iq_64`};function se({children:e,caption:t,"aria-label":n}){return(0,l.jsxs)(`table`,{className:L.table,"aria-label":n,children:[t&&(0,l.jsx)(`caption`,{className:L.caption,children:t}),e]})}function ce({children:e}){let t=c.default.Children.map(e,e=>c.default.isValidElement(e)&&e.type===`td`?(0,l.jsx)(`th`,{scope:`col`,...e.props}):e);return(0,l.jsx)(`thead`,{children:(0,l.jsx)(`tr`,{className:L.headerRow,children:t})})}function le({children:e}){return(0,l.jsx)(`tr`,{className:L.dataRow,children:e})}function ue({label:e,children:t,isHeader:n=!1,scope:r}){let i=n?`th`:`td`,a=n&&r?{scope:r}:{};return e||t?(0,l.jsx)(i,{...a,children:(0,l.jsxs)(`div`,{className:L.cellInner,children:[e&&(0,l.jsx)(`span`,{className:L.cellLabel,children:e}),t&&(0,l.jsx)(`div`,{className:L.cellContent,children:t})]})}):(0,l.jsx)(i,{...a,children:t})}function de({children:e}){return(0,l.jsx)(`span`,{className:L.value,children:e})}function fe({children:e,"aria-label":t}){let n=!t;return(0,l.jsx)(`span`,{className:L.icon,"aria-hidden":n?`true`:void 0,"aria-label":t,children:c.default.cloneElement(e,{size:`14px`,color:`currentColor`})})}var R={tabs:`_tabs_11q71_1`,scrollable:`_scrollable_11q71_11`,tab:`_tab_11q71_1`,active:`_active_11q71_54`,micro:`_micro_11q71_60`,default:`_default_11q71_67`,large:`_large_11q71_74`};function pe({items:e,value:t,onValueChange:n,size:r=`default`,scrollable:i=!1,getPanelId:a}){let o=(0,c.useRef)(null),s=(0,c.useRef)(new Map),u=(0,c.useId)(),[d,f]=(0,c.useState)({start:!1,end:!1}),p=Math.max(e.findIndex(e=>e.value===t),0),m=t=>{let r=e[t];if(!r)return;n(r.value);let a=s.current.get(r.value);a?.focus({preventScroll:!0}),i&&a?.scrollIntoView({block:`nearest`,inline:`nearest`})},h=(t,n)=>{if(e.length===0)return;let r;switch(t.key){case`ArrowLeft`:r=(n-1+e.length)%e.length;break;case`ArrowRight`:r=(n+1)%e.length;break;case`Home`:r=0;break;case`End`:r=e.length-1;break;default:return}t.preventDefault(),m(r)};return(0,c.useEffect)(()=>{let e=o.current;if(!i||!e)return;let t=()=>{let t=e.scrollLeft>1,n=Math.ceil(e.scrollLeft+e.clientWidth)<e.scrollWidth-1;f(e=>e.start===t&&e.end===n?e:{start:t,end:n})};t(),e.addEventListener(`scroll`,t,{passive:!0});let n=new ResizeObserver(t);return n.observe(e),()=>{e.removeEventListener(`scroll`,t),n.disconnect()}},[i,e.length]),(0,l.jsx)(`div`,{ref:o,className:`${R.tabs} ${i?R.scrollable:``}`,"data-overflow-start":i&&d.start?``:void 0,"data-overflow-end":i&&d.end?``:void 0,role:`tablist`,children:e.map((e,t)=>{let i=t===p;return(0,l.jsx)(`button`,{ref:t=>{t?s.current.set(e.value,t):s.current.delete(e.value)},id:`${u}-tab-${e.value}`,role:`tab`,type:`button`,"aria-selected":i,"aria-controls":a?.(e),tabIndex:i?0:-1,className:`${R.tab} ${R[r]} ${i?R.active:``}`,onClick:()=>n(e.value),onKeyDown:e=>h(e,t),children:e.label},e.value)})})}var z={root:`_root_1vvif_1`,micro:`_micro_1vvif_2`,default:`_default_1vvif_3`,list:`_list_1vvif_4`,item:`_item_1vvif_5`,separator:`_separator_1vvif_6`,step:`_step_1vvif_7`,switchable:`_switchable_1vvif_8`,label:`_label_1vvif_8`,text:`_text_1vvif_11`,trigger:`_trigger_1vvif_12`,icon:`_icon_1vvif_16`,option:`_option_1vvif_17`,menu:`_menu_1vvif_18`,menuDivider:`_menuDivider_1vvif_19`};function me(e){return c.default.isValidElement(e)?c.default.cloneElement(e,{size:`14px`,color:`currentColor`}):e}var he=`\0action`,ge=({items:e,size:t=`default`,className:n=``,separator:r=(0,l.jsx)(u.Chevron_right,{size:14,color:`currentColor`}),renderLink:i,"aria-label":a=`Breadcrumb`})=>(0,l.jsx)(`nav`,{"aria-label":a,className:`${z.root} ${z[t]} ${n}`,children:(0,l.jsx)(`ol`,{className:z.list,children:e.map((t,n)=>(0,l.jsxs)(`li`,{className:z.item,children:[n>0&&(0,l.jsx)(`span`,{className:z.separator,"aria-hidden":`true`,children:r}),(0,l.jsxs)(`div`,{className:`${z.step} ${t.switcher?z.switchable:``}`,children:[t.href?(()=>{let r={className:z.label,href:t.href,onClick:t.onClick,"aria-current":n===e.length-1?`page`:void 0,children:(0,l.jsxs)(l.Fragment,{children:[t.icon&&(0,l.jsx)(`span`,{className:z.icon,"aria-hidden":`true`,children:me(t.icon)}),(0,l.jsx)(`span`,{className:z.text,children:t.label})]})};return i?i(t,r):(0,l.jsx)(`a`,{...r})})():(0,l.jsxs)(`span`,{className:z.label,"aria-current":n===e.length-1?`page`:void 0,children:[t.icon&&(0,l.jsx)(`span`,{className:z.icon,"aria-hidden":`true`,children:me(t.icon)}),(0,l.jsx)(`span`,{className:z.text,children:t.label})]}),t.switcher&&(0,l.jsxs)(f.Root,{value:t.switcher.value,onValueChange:e=>e===he?t.switcher.action?.onSelect():t.switcher.onValueChange(e),disabled:t.switcher.disabled||t.switcher.options.length===0&&!t.switcher.action,children:[(0,l.jsx)(f.Trigger,{className:z.trigger,"aria-label":`${t.switcher.label}: ${t.label}`,children:(0,l.jsx)(f.Icon,{"aria-hidden":`true`,className:z.icon,children:(0,l.jsx)(u.Dropdown,{size:14,color:`currentColor`})})}),(0,l.jsx)(f.Portal,{children:(0,l.jsx)(f.Content,{className:`${I.content} ${z.menu}`,position:`popper`,align:`end`,sideOffset:4,collisionPadding:8,children:(0,l.jsxs)(f.Viewport,{className:I.viewport,children:[t.switcher.options.map(e=>(0,l.jsxs)(f.Item,{value:e.value,className:I.item,textValue:e.label,children:[(0,l.jsxs)(`span`,{className:z.option,children:[e.icon&&(0,l.jsx)(`span`,{className:z.icon,"aria-hidden":`true`,children:e.icon}),(0,l.jsx)(f.ItemText,{children:e.label})]}),(0,l.jsx)(f.ItemIndicator,{className:I.itemIndicator,children:(0,l.jsx)(u.Check,{size:12,color:`currentColor`})})]},e.value)),t.switcher.action&&(0,l.jsxs)(l.Fragment,{children:[(0,l.jsx)(f.Separator,{className:z.menuDivider}),(0,l.jsx)(f.Item,{value:he,className:I.item,textValue:t.switcher.action.label,children:(0,l.jsxs)(`span`,{className:z.option,children:[(0,l.jsx)(`span`,{className:z.icon,"aria-hidden":`true`,children:(0,l.jsx)(u.Plus,{size:14,color:`currentColor`})}),(0,l.jsx)(f.ItemText,{children:t.switcher.action.label})]})})]})]})})})]})]})]},t.id))})}),B={wrapper:`_wrapper_1a9jo_1`,track:`_track_1a9jo_8`,fill:`_fill_1a9jo_36`,label:`_label_1a9jo_46`};function _e({value:e,showLabel:t=!1,fulfilledColor:n=!1,className:r=``}){let i=Math.min(100,Math.max(0,e)),a=`${Math.round(i)}%`,o=n&&i>=100?`var(--CPureBlue)`:void 0;return(0,l.jsxs)(`div`,{className:`${B.wrapper} ${r}`,role:`progressbar`,"aria-valuenow":i,"aria-valuemin":0,"aria-valuemax":100,children:[(0,l.jsx)(`div`,{className:B.track,children:(0,l.jsx)(`div`,{className:B.fill,style:{width:`${i}%`,backgroundColor:o}})}),t&&(0,l.jsx)(`span`,{className:B.label,"aria-hidden":`true`,children:a})]})}var ve={chip:`_chip_iaxe0_1`,large:`_large_iaxe0_14`};function ye({children:e,color:t,textColor:n,className:r,icon:i,size:a=`default`}){let o={};return t&&(o.backgroundColor=t),n&&(o.color=n),(0,l.jsxs)(`span`,{className:[ve.chip,a===`large`&&ve.large,r].filter(Boolean).join(` `),style:o,children:[i&&c.default.cloneElement(i,{size:14,color:`currentColor`}),e]})}var V={root:`_root_ok48u_3`,icon:`_icon_ok48u_16`,body:`_body_ok48u_17`,title:`_title_ok48u_18`,description:`_description_ok48u_19`,default:`_default_ok48u_22`,info:`_info_ok48u_23`,success:`_success_ok48u_24`,warning:`_warning_ok48u_25`,destructive:`_destructive_ok48u_26`},be={success:(0,l.jsx)(u.Check,{}),warning:(0,l.jsx)(u.Warning,{}),destructive:(0,l.jsx)(u.Warning,{})};function xe(e){return c.default.isValidElement(e)?c.default.cloneElement(e,{size:16,color:`currentColor`}):e}var Se=({variant:e=`default`,icon:t,className:n=``,children:r,role:i})=>{let a=t===void 0?be[e]:t;return(0,l.jsxs)(`div`,{role:i??(e===`destructive`||e===`warning`?`alert`:`status`),className:`${V.root} ${V[e]} ${n}`,children:[a&&(0,l.jsx)(`span`,{className:V.icon,"aria-hidden":`true`,children:xe(a)}),(0,l.jsx)(`div`,{className:V.body,children:r})]})},Ce=({children:e,className:t=``})=>(0,l.jsx)(`div`,{className:`${V.title} ${t}`,children:e}),we=({children:e,className:t=``})=>(0,l.jsx)(`div`,{className:`${V.description} ${t}`,children:e}),Te={tooltip:`_tooltip_1de7z_1`,arrow:`_arrow_1de7z_13`};function Ee({content:e,position:t=`top`,children:n,className:r}){return(0,l.jsx)(m.Provider,{delayDuration:80,children:(0,l.jsxs)(m.Root,{children:[(0,l.jsx)(m.Trigger,{asChild:!0,children:n}),(0,l.jsx)(m.Portal,{children:(0,l.jsxs)(m.Content,{side:t,sideOffset:7,className:[Te.tooltip,r].filter(Boolean).join(` `),children:[e,(0,l.jsx)(m.Arrow,{className:Te.arrow})]})})]})})}var H={wrapper:`_wrapper_1w5vh_1`,chart:`_chart_1w5vh_8`,svg:`_svg_1w5vh_33`,tooltip:`_tooltip_1w5vh_39`,tooltipLabel:`_tooltipLabel_1w5vh_49`,tooltipRow:`_tooltipRow_1w5vh_57`,tooltipDot:`_tooltipDot_1w5vh_64`,tooltipName:`_tooltipName_1w5vh_70`,tooltipValue:`_tooltipValue_1w5vh_76`,legend:`_legend_1w5vh_83`,legendItem:`_legendItem_1w5vh_90`,legendMark:`_legendMark_1w5vh_96`,legendLabel:`_legendLabel_1w5vh_102`},U=`var(--lv4)`,W=12,De=20,Oe=8,ke=28,G=20;function Ae(e){return Number.isInteger(e)?String(e):e.toLocaleString(void 0,{maximumFractionDigits:2})}function je({series:e,labels:t,type:n=`line`,height:r=200,showLegend:i=!0,className:a}){let o=(0,c.useRef)(null),[s,u]=(0,c.useState)(0),[d,f]=(0,c.useState)(null);(0,c.useEffect)(()=>{let e=o.current;if(!e)return;let t=new ResizeObserver(([e])=>u(e.contentRect.width));return t.observe(e),u(e.clientWidth),()=>t.disconnect()},[]);let p=t?.length?ke:Oe,m=Math.max(s-G-De,0),h=Math.max(r-W-p,0),g=e.flatMap(e=>e.data.filter(Number.isFinite)),_=g.length?Math.max(...g,0):1,v=n===`bar`?0:Math.min(...g,0),y=_-v||1,b=Math.max(...e.map(e=>e.data.length),0),x=e=>W+(1-(e-v)/y)*h,S=e=>b<=1?G+m/2:G+e/(b-1)*m,C=(0,c.useCallback)(e=>{if(b===0)return;let t=e.currentTarget.getBoundingClientRect(),r=e.clientX-t.left,i=e.clientY-t.top;if(n===`line`){let e=Math.round((r-G)/m*(b-1));f({index:Math.max(0,Math.min(b-1,e)),x:r,y:i})}else{let e=m/b,t=Math.floor((r-G)/e);f({index:Math.max(0,Math.min(b-1,t)),x:r,y:i})}},[n,b,m]),w=(0,c.useCallback)(()=>f(null),[]),T=(0,l.jsx)(`line`,{x1:G,y1:W+h*.5,x2:G+m,y2:W+h*.5,stroke:`var(--chart-midline)`,strokeWidth:`0.5`}),E=(0,l.jsx)(`line`,{x1:G,y1:W+h,x2:G+m,y2:W+h,stroke:`var(--chart-baseline)`,strokeWidth:`1`}),D=d&&n===`bar`?(()=>{let e=m/b;return(0,l.jsx)(`rect`,{x:G+d.index*e,y:W,width:e,height:h,fill:`var(--chart-column-hover)`})})():null,O=()=>e.map((e,t)=>{if(!e.data.length)return null;let n=e.color??U;return(0,l.jsxs)(`g`,{children:[(0,l.jsx)(`polyline`,{points:e.data.map((e,t)=>`${S(t).toFixed(2)},${x(e).toFixed(2)}`).join(` `),fill:`none`,stroke:n,strokeWidth:`1`,strokeLinejoin:`round`,strokeLinecap:`round`}),e.data.map((e,t)=>{let r=d?.index===t?10:5,i=r/2;return(0,l.jsx)(`rect`,{x:S(t)-i,y:x(e)-i,width:r,height:r,fill:n},t)})]},t)}),k=()=>{if(!b)return null;let t=e.length,n=m/b,r=Math.max((n-2*(t+1))/t,2),i=W+h;return e.map((e,t)=>e.data.map((a,o)=>{let s=G+o*n+2+t*(r+2),c=x(a);return(0,l.jsx)(`rect`,{x:s,y:c,width:r,height:Math.max(i-c,0),fill:e.color??`var(--chart-bar)`},`${t}-${o}`)}))},A=()=>{if(!t?.length)return null;let e=W+h+18;return t.map((t,r)=>(0,l.jsx)(`text`,{x:n===`line`?S(r):G+(r+.5)*(m/b),y:e,textAnchor:`middle`,fill:`var(--lv4)`,style:{font:`var(--text-2xs)`},children:t},r))},j=d&&n===`line`?(0,l.jsx)(`line`,{x1:S(d.index),y1:W,x2:S(d.index),y2:W+h,stroke:`var(--chart-crosshair)`,strokeWidth:`1`,strokeDasharray:`3 3`}):null,M=d?(()=>{let n=t?.[d.index]??String(d.index+1),r=Math.min(Math.max(d.x,60),s-60);return(0,l.jsxs)(`div`,{className:H.tooltip,style:d.y<80?{left:r,top:d.y+12,transform:`translate(-50%, 0)`}:{left:r,top:d.y-8,transform:`translate(-50%, -100%)`},children:[(0,l.jsx)(`div`,{className:H.tooltipLabel,children:n}),e.map((e,t)=>(0,l.jsxs)(`div`,{className:H.tooltipRow,children:[(0,l.jsx)(`span`,{className:H.tooltipDot,style:{background:e.color??U}}),(0,l.jsx)(`span`,{className:H.tooltipName,children:e.label}),(0,l.jsx)(`span`,{className:H.tooltipValue,children:Ae(e.data[d.index]??0)})]},t))]})})():null;return(0,l.jsxs)(`div`,{className:[H.wrapper,a].filter(Boolean).join(` `),children:[(0,l.jsxs)(`div`,{ref:o,className:H.chart,style:{height:r},children:[s>0&&(0,l.jsxs)(`svg`,{width:s,height:r,className:H.svg,onMouseMove:C,onMouseLeave:w,children:[T,E,D,j,n===`line`?O():k(),A()]}),M]}),i&&e.length>1&&(0,l.jsx)(`div`,{className:H.legend,children:e.map((e,t)=>(0,l.jsxs)(`div`,{className:H.legendItem,children:[(0,l.jsx)(`div`,{className:H.legendMark,style:{background:e.color??U}}),(0,l.jsx)(`span`,{className:H.legendLabel,children:e.label})]},t))})]})}var K={wrapper:`_wrapper_17ws4_1`,label:`_label_17ws4_7`,textarea:`_textarea_17ws4_12`,error:`_error_17ws4_48`,errorText:`_errorText_17ws4_56`};function Me({label:e,error:t,className:n=``,isValid:r=!0,id:i,rows:a=4,...o}){let s=c.default.useId(),u=i||s,d=`${u}-error`,f=t||!r;return(0,l.jsxs)(`div`,{className:`${K.wrapper} ${n}`,children:[e&&(0,l.jsxs)(`label`,{htmlFor:u,className:K.label,children:[e,o.required&&(0,l.jsx)(`span`,{"aria-label":`required`,children:` *`})]}),(0,l.jsx)(`textarea`,{id:u,rows:a,className:`${K.textarea} ${f?K.error:``}`,"aria-invalid":f?`true`:`false`,"aria-describedby":t?d:void 0,...o}),t&&(0,l.jsx)(`span`,{id:d,className:K.errorText,role:`alert`,children:t})]})}var q={overlay:`_overlay_xud7c_1`,content:`_content_xud7c_8`,title:`_title_xud7c_26`,description:`_description_xud7c_34`,close:`_close_xud7c_40`,srOnly:`_srOnly_xud7c_62`},Ne=({trigger:e,children:t,open:n,onOpenChange:r,title:i,description:a,className:o=``,showClose:s=!0})=>(0,l.jsxs)(h.Root,{open:n,onOpenChange:r,children:[e&&(0,l.jsx)(h.Trigger,{asChild:!0,children:e}),(0,l.jsxs)(h.Portal,{children:[(0,l.jsx)(h.Overlay,{className:q.overlay}),(0,l.jsxs)(h.Content,{className:`${q.content} ${o}`,children:[(0,l.jsx)(h.Title,{className:i?q.title:q.srOnly,children:i||`Dialog`}),a&&(0,l.jsx)(h.Description,{className:q.description,children:a}),s&&(0,l.jsx)(h.Close,{className:q.close,"aria-label":`Close`,children:(0,l.jsx)(u.X_or_error,{size:16,color:`currentColor`})}),t]})]})]}),J={wrapper:`_wrapper_aimna_1`,label:`_label_aimna_7`,trigger:`_trigger_aimna_12`,error:`_error_aimna_43`,placeholder:`_placeholder_aimna_47`,valueText:`_valueText_aimna_51`,calendar:`_calendar_aimna_55`,header:`_header_aimna_65`,monthLabel:`_monthLabel_aimna_71`,navButton:`_navButton_aimna_77`,weekdays:`_weekdays_aimna_95`,grid:`_grid_aimna_96`,weekday:`_weekday_aimna_95`,day:`_day_aimna_109`,outside:`_outside_aimna_127`,today:`_today_aimna_131`,selected:`_selected_aimna_136`,errorText:`_errorText_aimna_142`},Pe=[`Mo`,`Tu`,`We`,`Th`,`Fr`,`Sa`,`Su`],Fe=[`January`,`February`,`March`,`April`,`May`,`June`,`July`,`August`,`September`,`October`,`November`,`December`];function Y(e){let t=String(e.getMonth()+1).padStart(2,`0`),n=String(e.getDate()).padStart(2,`0`);return`${e.getFullYear()}-${t}-${n}`}function X(e,t){return!!e&&!!t&&e.getFullYear()===t.getFullYear()&&e.getMonth()===t.getMonth()&&e.getDate()===t.getDate()}function Ie(e,t){let n=(new Date(e,t,1).getDay()+6)%7,r=[];for(let i=0;i<42;i++)r.push(new Date(e,t,1-n+i));return r}var Le=({value:e,onChange:t,label:n,placeholder:r=`Select a date`,error:i,isValid:a=!0,disabled:o=!1,className:s=``,formatDate:d=Y})=>{let f=c.default.useId(),m=`${f}-error`,h=!!i||!a,[g,_]=(0,c.useState)(!1),v=new Date,y=e??v,[b,x]=(0,c.useState)(y.getFullYear()),[S,C]=(0,c.useState)(y.getMonth()),[w,T]=(0,c.useState)(y),E=c.default.useRef(new Map),D=c.default.useRef(!1),O=t=>{if(t){let t=e??new Date;T(t),x(t.getFullYear()),C(t.getMonth())}_(t)};c.default.useEffect(()=>{D.current&&=(E.current.get(Y(w))?.focus(),!1)},[w]);let k=(e,t)=>{let n=new Date(t),r={ArrowLeft:-1,ArrowRight:1,ArrowUp:-7,ArrowDown:7}[e.key];if(r!==void 0)n.setDate(n.getDate()+r);else if(e.key===`Home`)n.setDate(n.getDate()-(n.getDay()+6)%7);else if(e.key===`End`)n.setDate(n.getDate()+6-(n.getDay()+6)%7);else if(e.key===`PageUp`||e.key===`PageDown`){let t=n.getDate();n.setDate(1),n.setMonth(n.getMonth()+(e.key===`PageUp`?-1:1)*(e.shiftKey?12:1)),n.setDate(Math.min(t,new Date(n.getFullYear(),n.getMonth()+1,0).getDate()))}else return;e.preventDefault(),D.current=!0,T(n),x(n.getFullYear()),C(n.getMonth())};c.default.useEffect(()=>{g&&e&&(x(e.getFullYear()),C(e.getMonth()))},[g]);let A=()=>{S===0?(C(11),x(b-1)):C(S-1)},j=()=>{S===11?(C(0),x(b+1)):C(S+1)},M=e=>{t?.(e),_(!1)},ee=Ie(b,S);return(0,l.jsxs)(`div`,{className:`${J.wrapper} ${s}`,children:[n&&(0,l.jsx)(`span`,{id:`${f}-label`,className:J.label,children:n}),(0,l.jsxs)(p.Root,{open:g,onOpenChange:O,children:[(0,l.jsx)(p.Trigger,{asChild:!0,children:(0,l.jsxs)(`button`,{type:`button`,className:`${J.trigger} ${h?J.error:``}`,disabled:o,"aria-labelledby":n?`${f}-label ${f}-value`:void 0,"aria-invalid":h?`true`:`false`,"aria-describedby":i?m:void 0,children:[(0,l.jsx)(`span`,{id:`${f}-value`,className:e?J.valueText:J.placeholder,children:e?d(e):r}),(0,l.jsx)(u.Chevron_down,{size:14,color:`currentColor`})]})}),(0,l.jsx)(p.Portal,{children:(0,l.jsxs)(p.Content,{className:J.calendar,align:`start`,sideOffset:5,"aria-label":n?`${n} calendar`:`Choose a date`,onOpenAutoFocus:e=>{e.preventDefault(),E.current.get(Y(w))?.focus()},children:[(0,l.jsxs)(`div`,{className:J.header,children:[(0,l.jsx)(`button`,{type:`button`,className:J.navButton,onClick:A,"aria-label":`Previous month`,children:(0,l.jsx)(u.Chevron_left,{size:14,color:`currentColor`})}),(0,l.jsxs)(`span`,{className:J.monthLabel,children:[Fe[S],` `,b]}),(0,l.jsx)(`button`,{type:`button`,className:J.navButton,onClick:j,"aria-label":`Next month`,children:(0,l.jsx)(u.Chevron_right,{size:14,color:`currentColor`})})]}),(0,l.jsx)(`div`,{className:J.weekdays,children:Pe.map(e=>(0,l.jsx)(`span`,{className:J.weekday,children:e},e))}),(0,l.jsx)(`div`,{className:J.grid,children:ee.map(t=>{let n=t.getMonth()!==S,r=X(t,e),i=X(t,v);return(0,l.jsx)(`button`,{type:`button`,className:[J.day,n?J.outside:``,r?J.selected:``,i&&!r?J.today:``].filter(Boolean).join(` `),onClick:()=>M(t),ref:e=>{e?E.current.set(Y(t),e):E.current.delete(Y(t))},"aria-label":t.toLocaleDateString(void 0,{weekday:`long`,year:`numeric`,month:`long`,day:`numeric`}),"aria-pressed":r,"aria-current":i?`date`:void 0,tabIndex:X(t,w)||w.getMonth()!==S&&t.getDate()===1&&!n?0:-1,onKeyDown:e=>k(e,t),children:t.getDate()},t.toISOString())})})]})})]}),i&&(0,l.jsx)(`span`,{id:m,className:J.errorText,role:`alert`,children:i})]})},Z={root:`_root_bfuyc_1`,micro:`_micro_bfuyc_7`,default:`_default_bfuyc_8`,list:`_list_bfuyc_10`,control:`_control_bfuyc_22`,link:`_link_bfuyc_45`,icon:`_icon_bfuyc_46`,caret:`_caret_bfuyc_46`,viewportPosition:`_viewportPosition_bfuyc_49`,viewport:`_viewport_bfuyc_49`,content:`_content_bfuyc_73`},Re=c.default.forwardRef(({size:e=`default`,className:t=``,children:n,"aria-label":r=`Main navigation`,...i},a)=>(0,l.jsxs)(g.Root,{...i,ref:a,"aria-label":r,className:`${Z.root} ${Z[e]} ${t}`,children:[n,(0,l.jsx)(`div`,{className:Z.viewportPosition,children:(0,l.jsx)(g.Viewport,{className:Z.viewport})})]}));Re.displayName=`NavigationMenu`;var ze=c.default.forwardRef(({className:e=``,...t},n)=>(0,l.jsx)(g.List,{...t,ref:n,className:`${Z.list} ${e}`}));ze.displayName=`NavigationMenuList`;var Be=g.Item,Ve=c.default.forwardRef(({className:e=``,icon:t,children:n,...r},i)=>(0,l.jsxs)(g.Trigger,{...r,ref:i,className:`${Z.control} ${e}`,children:[t&&(0,l.jsx)(`span`,{className:Z.icon,"aria-hidden":`true`,children:c.default.cloneElement(t,{size:14,color:`currentColor`})}),n,(0,l.jsx)(`span`,{className:Z.caret,"aria-hidden":`true`,children:(0,l.jsx)(u.Chevron_down,{size:14,color:`currentColor`})})]}));Ve.displayName=`NavigationMenuTrigger`;var He=c.default.forwardRef(({className:e=``,...t},n)=>(0,l.jsx)(g.Content,{...t,ref:n,className:`${Z.content} ${e}`}));He.displayName=`NavigationMenuContent`;var Ue=c.default.forwardRef(({variant:e=`panel`,className:t=``,...n},r)=>(0,l.jsx)(g.Link,{...n,ref:r,className:`${e===`navigation`?Z.control:Z.link} ${t}`}));Ue.displayName=`NavigationMenuLink`;var Q={panel:`_panel_1yqcd_5`,header:`_header_1yqcd_14`,thread:`_thread_1yqcd_15`,footer:`_footer_1yqcd_24`,hints:`_hints_1yqcd_25`,kbd:`_kbd_1yqcd_34`,userRow:`_userRow_1yqcd_48`,userMsg:`_userMsg_1yqcd_49`,assistant:`_assistant_1yqcd_60`,assistantHead:`_assistantHead_1yqcd_61`,assistantBody:`_assistantBody_1yqcd_69`,composer:`_composer_1yqcd_73`,composerField:`_composerField_1yqcd_80`,composerIcon:`_composerIcon_1yqcd_87`,composerInput:`_composerInput_1yqcd_96`,composerButton:`_composerButton_1yqcd_116`,ref:`_ref_1yqcd_119`,citationLink:`_citationLink_1yqcd_139`,citationNumber:`_citationNumber_1yqcd_143`,label:`_label_1yqcd_146`,stack:`_stack_1yqcd_147`,wrap:`_wrap_1yqcd_148`,status:`_status_1yqcd_149`,statusSpinner:`_statusSpinner_1yqcd_150`,suggestions:`_suggestions_1yqcd_151`,actions:`_actions_1yqcd_152`,actionsSpacer:`_actionsSpacer_1yqcd_153`};function $({children:e}){return(0,l.jsx)(`kbd`,{className:Q.kbd,children:e})}var We=(0,l.jsxs)(l.Fragment,{children:[(0,l.jsxs)(`span`,{children:[(0,l.jsx)($,{children:`↵`}),` send`]}),(0,l.jsxs)(`span`,{children:[(0,l.jsx)($,{children:`⇧↵`}),` new line`]}),(0,l.jsxs)(`span`,{children:[(0,l.jsx)($,{children:`esc`}),` close`]})]});function Ge({header:e,children:t,composer:n,hints:r=We,className:i=``,threadRef:a,"aria-label":o}){return(0,l.jsxs)(`div`,{className:`${Q.panel} ${i}`,"aria-label":o,children:[e&&(0,l.jsx)(`div`,{className:Q.header,children:e}),(0,l.jsx)(`div`,{className:Q.thread,ref:a,role:`log`,"aria-live":`polite`,children:t}),n&&(0,l.jsx)(`div`,{className:Q.footer,children:n}),r!==!1&&r&&(0,l.jsx)(`div`,{className:Q.hints,children:r})]})}function Ke({children:e,className:t=``}){return(0,l.jsx)(`div`,{className:Q.userRow,children:(0,l.jsx)(`div`,{className:`${Q.userMsg} ${t}`,children:e})})}function qe({label:e=`Assistant`,icon:t,children:n,className:r=``}){return(0,l.jsxs)(`div`,{className:`${Q.assistant} ${r}`,children:[(0,l.jsxs)(`div`,{className:Q.assistantHead,children:[t===void 0?(0,l.jsx)(u.Ai_agent,{color:`currentColor`,size:14}):t,(0,l.jsx)(`span`,{children:e})]}),(0,l.jsx)(`div`,{className:Q.assistantBody,children:n})]})}var Je=18,Ye=c.default.forwardRef(function({value:e,onChange:t,onSend:n,onStop:r,streaming:i=!1,placeholder:a=`Ask a question…`,disabled:o=!1,autoFocus:s=!1,icon:d,maxLines:f=6,className:p=``,"aria-label":m=`Message`},h){let g=(0,c.useRef)(null);(0,c.useImperativeHandle)(h,()=>({focus:()=>g.current?.focus()}),[]),(0,c.useEffect)(()=>{let e=g.current;if(!e)return;e.style.height=`auto`;let t=Je*f+12;e.style.height=`${Math.min(e.scrollHeight,t)}px`},[e,f]);let _=!i&&!o&&e.trim().length>0,v=(0,c.useCallback)(()=>{_&&n(e.trim())},[_,n,e]);return(0,l.jsxs)(`div`,{className:`${Q.composer} ${p}`,children:[(0,l.jsxs)(`div`,{className:Q.composerField,children:[d!==null&&(0,l.jsx)(`span`,{className:Q.composerIcon,"aria-hidden":`true`,children:d===void 0?(0,l.jsx)(u.Ai_agent,{color:`currentColor`,size:21}):d}),(0,l.jsx)(`textarea`,{ref:g,className:Q.composerInput,rows:1,value:e,placeholder:a,disabled:o,autoFocus:s,"aria-label":m,onChange:e=>t(e.target.value),onKeyDown:e=>{e.key===`Enter`&&!e.shiftKey&&!e.nativeEvent.isComposing&&(e.preventDefault(),v())}})]}),(0,l.jsx)(`div`,{className:Q.composerButton,children:i?(0,l.jsx)(S,{variant:`secondary`,size:`micro`,"aria-label":`Stop`,iconLeft:(0,l.jsx)(u.Stop,{}),onClick:r}):(0,l.jsx)(S,{variant:`primary`,size:`micro`,"aria-label":`Send`,iconLeft:(0,l.jsx)(u.ArrowUp,{}),disabled:!_,onClick:v})})]})});function Xe({n:e,href:t,onClick:n,title:r,className:i=``}){let a=`${Q.ref} ${i}`;return t?(0,l.jsx)(`a`,{href:t,className:a,onClick:n,title:r,"aria-label":`Source ${e}${r?`: ${r}`:``}`,children:e}):(0,l.jsx)(`button`,{type:`button`,className:a,onClick:n,title:r,"aria-label":`Source ${e}${r?`: ${r}`:``}`,children:e})}function Ze({items:e,label:t=`Sources`,className:n=``}){return e.length===0?null:(0,l.jsxs)(`div`,{className:`${Q.stack} ${n}`,children:[(0,l.jsx)(`div`,{className:Q.label,children:t}),(0,l.jsx)(`div`,{className:Q.wrap,children:e.map(e=>{let t=(0,l.jsxs)(ye,{icon:e.icon,children:[(0,l.jsx)(`span`,{className:Q.citationNumber,children:e.n}),` `,e.title]});return e.href?(0,l.jsx)(`a`,{href:e.href,className:Q.citationLink,onClick:e.onClick,children:t},e.n):(0,l.jsx)(`button`,{type:`button`,className:Q.citationLink,onClick:e.onClick,children:t},e.n)})})]})}function Qe({children:e,className:t=``}){return(0,l.jsxs)(`div`,{className:`${Q.status} ${t}`,role:`status`,children:[(0,l.jsx)(`span`,{className:Q.statusSpinner,children:(0,l.jsx)(x,{size:14})}),(0,l.jsx)(`span`,{children:e})]})}function $e({items:e,onPick:t,label:n=`Try asking`,className:r=``}){return(0,l.jsxs)(`div`,{className:`${Q.suggestions} ${r}`,children:[(0,l.jsx)(`div`,{className:Q.label,children:n}),(0,l.jsx)(`div`,{className:Q.wrap,children:e.map(e=>(0,l.jsx)(S,{variant:`secondary`,size:`micro`,onClick:()=>t(e),children:e},e))})]})}function et({onCopy:e,copied:t=!1,onFollowUp:n,followUpLabel:r=`Ask a follow-up`,className:i=``}){return(0,l.jsxs)(`div`,{className:`${Q.actions} ${i}`,children:[e&&(0,l.jsx)(S,{variant:`ghost`,size:`micro`,iconLeft:t?(0,l.jsx)(u.Check,{}):(0,l.jsx)(u.Copy,{}),onClick:e,children:t?`Copied`:`Copy`}),(0,l.jsx)(`span`,{className:Q.actionsSpacer}),n&&(0,l.jsx)(S,{variant:`ghost`,size:`micro`,iconRight:(0,l.jsx)(u.Chevron_right,{}),onClick:n,children:r})]})}exports.Alert=Se,exports.AlertDescription=we,exports.AlertTitle=Ce,exports.AnswerActions=et,exports.AssistantMessage=qe,exports.Base=E,exports.Breadcrumbs=ge,exports.Button=S,exports.Chart=je,exports.ChatPanel=Ge,exports.Checkbox=w,exports.Chip=ye,exports.CitationList=Ze,exports.CitationRef=Xe,exports.Composer=Ye,exports.DatePicker=Le,exports.FilterPanelBase=O,exports.InputField=ee,exports.Kbd=$,exports.Modal=Ne,exports.NavigationMenu=Re,exports.NavigationMenuContent=He,exports.NavigationMenuItem=Be,exports.NavigationMenuLink=Ue,exports.NavigationMenuList=ze,exports.NavigationMenuTrigger=Ve,exports.Popover=oe,exports.ProgressBar=_e,exports.RadioButton=te,exports.SearchField=j,exports.Select=ie,exports.Slider=re,exports.Spinner=x,exports.StreamStatus=Qe,exports.Suggestions=$e,exports.Table=se,exports.TableCell=ue,exports.TableHeader=ce,exports.TableIcon=fe,exports.TableRow=le,exports.TableValue=de,exports.Tabs=pe,exports.Textarea=Me,exports.ToggleSwitch=ne,exports.Tooltip=Ee,exports.UserMessage=Ke,exports.defaultChatHints=We,exports.spinnerNames=b;
|
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export { Tabs, type TabItem, type TabsProps } from './components/Tabs/Tabs';
|
|
|
15
15
|
export { Breadcrumbs, type BreadcrumbItem, type BreadcrumbsProps } from './components/Breadcrumbs/Breadcrumbs';
|
|
16
16
|
export { ProgressBar, type ProgressBarProps } from './components/ProgressBar/ProgressBar';
|
|
17
17
|
export { Chip, type ChipProps } from './components/Chip/Chip';
|
|
18
|
+
export { Alert, AlertTitle, AlertDescription, type AlertProps, type AlertVariant } from './components/Alert/Alert';
|
|
18
19
|
export { Tooltip, type TooltipProps, type TooltipPosition } from './components/Tooltip/Tooltip';
|
|
19
20
|
export { Chart, type ChartProps, type ChartSeries } from './components/Chart/Chart';
|
|
20
21
|
export { Textarea, type TextareaProps } from './components/Textarea/Textarea';
|
|
@@ -23,3 +24,4 @@ export { DatePicker, type DatePickerProps } from './components/DatePicker/DatePi
|
|
|
23
24
|
export { Spinner, type SpinnerProps } from './components/Spinner/Spinner';
|
|
24
25
|
export { spinnerNames, type SpinnerName } from './components/Spinner/spinners.generated';
|
|
25
26
|
export { NavigationMenu, NavigationMenuList, NavigationMenuItem, NavigationMenuTrigger, NavigationMenuContent, NavigationMenuLink, type NavigationMenuProps, type NavigationMenuTriggerProps, type NavigationMenuLinkProps } from './components/NavigationMenu/NavigationMenu';
|
|
27
|
+
export { ChatPanel, Kbd, defaultChatHints, UserMessage, AssistantMessage, Composer, CitationRef, CitationList, StreamStatus, Suggestions, AnswerActions, type ChatPanelProps, type UserMessageProps, type AssistantMessageProps, type ComposerProps, type ComposerHandle, type CitationRefProps, type CitationItem, type CitationListProps, type StreamStatusProps, type SuggestionsProps, type AnswerActionsProps, } from './components/Chat';
|