From af18c28de1bf8fea2142e52d2f71022309ceda58 Mon Sep 17 00:00:00 2001 From: HenriqueLimas Date: Thu, 20 Aug 2026 17:43:38 -0700 Subject: [PATCH 01/11] feat(evo-react): add tooltip --- .changeset/add-evo-tooltip.md | 5 + .claude/skills/evo-app-migrate-react/SKILL.md | 1 + .../components/evo-tooltip.md | 95 ++++++++ ...08-20-align-evo-react-icon-story-layout.md | 12 + ...0-ebay-accordion-snapshot-build-failure.md | 12 + ...8-20-react-children-deprecation-wording.md | 12 + packages/evo-marko/.storybook/preview.ts | 2 - .../evo-react/src/infotip/infotip.stories.tsx | 12 +- packages/evo-react/src/tooltip/README.md | 5 + packages/evo-react/src/tooltip/context.tsx | 64 +++++ packages/evo-react/src/tooltip/index.ts | 11 + .../test/__snapshots__/test.server.tsx.snap | 31 +++ .../src/tooltip/test/test.browser.tsx | 215 +++++++++++++++++ .../src/tooltip/test/test.server.tsx | 84 +++++++ .../evo-react/src/tooltip/tooltip-content.tsx | 41 ++++ .../evo-react/src/tooltip/tooltip-heading.tsx | 18 ++ .../evo-react/src/tooltip/tooltip-host.tsx | 29 +++ .../evo-react/src/tooltip/tooltip.stories.tsx | 228 ++++++++++++++++++ packages/evo-react/src/tooltip/tooltip.tsx | 150 ++++++++++++ packages/evo-react/src/tooltip/types.ts | 79 ++++++ packages/evo-react/src/utils/use-ref-tee.ts | 28 ++- packages/evo-storybook-addon-theme/README.md | 2 +- .../src/layout.scss} | 28 +-- .../evo-storybook-addon-theme/src/preview.tsx | 2 + 24 files changed, 1129 insertions(+), 37 deletions(-) create mode 100644 .changeset/add-evo-tooltip.md create mode 100644 .claude/skills/evo-app-migrate-react/components/evo-tooltip.md create mode 100644 agent-feedback/items/2026-08-20-align-evo-react-icon-story-layout.md create mode 100644 agent-feedback/items/2026-08-20-ebay-accordion-snapshot-build-failure.md create mode 100644 agent-feedback/items/2026-08-20-react-children-deprecation-wording.md create mode 100644 packages/evo-react/src/tooltip/README.md create mode 100644 packages/evo-react/src/tooltip/context.tsx create mode 100644 packages/evo-react/src/tooltip/index.ts create mode 100644 packages/evo-react/src/tooltip/test/__snapshots__/test.server.tsx.snap create mode 100644 packages/evo-react/src/tooltip/test/test.browser.tsx create mode 100644 packages/evo-react/src/tooltip/test/test.server.tsx create mode 100644 packages/evo-react/src/tooltip/tooltip-content.tsx create mode 100644 packages/evo-react/src/tooltip/tooltip-heading.tsx create mode 100644 packages/evo-react/src/tooltip/tooltip-host.tsx create mode 100644 packages/evo-react/src/tooltip/tooltip.stories.tsx create mode 100644 packages/evo-react/src/tooltip/tooltip.tsx create mode 100644 packages/evo-react/src/tooltip/types.ts rename packages/{evo-marko/.storybook/custom-styles.css => evo-storybook-addon-theme/src/layout.scss} (83%) diff --git a/.changeset/add-evo-tooltip.md b/.changeset/add-evo-tooltip.md new file mode 100644 index 00000000000..6979ed66a22 --- /dev/null +++ b/.changeset/add-evo-tooltip.md @@ -0,0 +1,5 @@ +--- +"@evo-web/react": patch +--- + +Add EvoTooltip component. diff --git a/.claude/skills/evo-app-migrate-react/SKILL.md b/.claude/skills/evo-app-migrate-react/SKILL.md index 45d87254716..9bd152aa1e1 100644 --- a/.claude/skills/evo-app-migrate-react/SKILL.md +++ b/.claude/skills/evo-app-migrate-react/SKILL.md @@ -86,6 +86,7 @@ When migrating a listed component, read the linked file completely and apply the - `ebay-radio`: [evo-radio.md](components/evo-radio.md) - `ebay-tabs`: [evo-tabs.md](components/evo-tabs.md) - `ebay-textbox`: [evo-input.md](components/evo-input.md) / [evo-textarea.md](components/evo-textarea.md) +- `ebay-tooltip`: [evo-tooltip.md](components/evo-tooltip.md) --- diff --git a/.claude/skills/evo-app-migrate-react/components/evo-tooltip.md b/.claude/skills/evo-app-migrate-react/components/evo-tooltip.md new file mode 100644 index 00000000000..8416670b038 --- /dev/null +++ b/.claude/skills/evo-app-migrate-react/components/evo-tooltip.md @@ -0,0 +1,95 @@ +# ebay-tooltip → evo-tooltip + +## Composition + +`EvoTooltipHost` renders its host through `as` instead of cloning a child. Move the old host element's props and content onto `EvoTooltipHost`. + +```diff + +- +- Information +- ++ ++ Information ++ + Additional information + +``` + +The selected component must pass all received attributes and its React 19 `ref` to the underlying DOM element. If the selected component already uses `as`, wrap that configuration in a custom component: + +```tsx +import { Link } from "react-router"; +import { EvoButton, type AnchorButtonProps } from "@evo-web/react/button"; +import { + EvoTooltip, + EvoTooltipContent, + EvoTooltipHost, +} from "@evo-web/react/tooltip"; + +type CustomEvoButtonProps = Omit; + +function CustomEvoButton({ ref, href, ...rest }: CustomEvoButtonProps) { + return ( + ( + + )} + /> + ); +} + + + + Edit + + Edit this item +; +``` + +`EvoTooltipHeading` is a new optional sub-component and supports an `as` prop. + +## Prop changes + +- `onExpand` and `onCollapse` → `onOpenChange(open)`. +- `pointer` → `placement`. `pointer` described the arrow side, while `placement` describes the overlay side, so the primary direction is inverted: + - `top` → `bottom`, `right` → `left`, `bottom` → `top`, `left` → `right`. + - `*-left` / `*-top` → `*-start` after inverting the primary direction. + - `*-right` / `*-bottom` → `*-end` after inverting the primary direction. +- `noFlip` → `flip` with inverted meaning. +- `noShift` → `shift` with inverted meaning. +- `notInline` → `inline` with inverted meaning. +- `overlayStyle` is removed; positioning is managed by Floating UI. +- `defaultOpen` is added for uncontrolled initial state. +- The default placement is now `bottom`, matching evo-marko. The legacy default pointer placed the overlay on top. +- The default `offset` changes from `6` to `8`, matching evo-marko. +- `EvoTooltipContent` generates the tooltip ID; its `id` prop is removed. +- Tooltip-only content no longer supports `showCloseButton`, `a11yCloseText`, `ariaLabelledBy`, or `onClose`. Use an infotip or popover for interactive content. + +```diff +- ++ { ++ if (open) handleExpand(); ++ else handleCollapse(); ++ }} ++ > +``` + +## Removed exports + +The low-level `Tooltip`, `TooltipFooter`, `PointerDirection`, `DEFAULT_POINTER_DIRECTION`, and `POINTER_STYLES` exports are removed. Use the exported Evo Tooltip components and `TooltipPlacement` type. diff --git a/agent-feedback/items/2026-08-20-align-evo-react-icon-story-layout.md b/agent-feedback/items/2026-08-20-align-evo-react-icon-story-layout.md new file mode 100644 index 00000000000..aa0731d2268 --- /dev/null +++ b/agent-feedback/items/2026-08-20-align-evo-react-icon-story-layout.md @@ -0,0 +1,12 @@ +--- +type: cleanup +impact: low +effort: med +site: packages/evo-react/scripts/import-svg.ts › saveIconComponents +--- + +# Align the generated Evo React icon gallery with the shared icon layout + +The Evo React icon generator emits the `AllIcons` story as a table, while Evo Marko renders its gallery with the shared `icon-examples` class now styled by `@evo-web/storybook-addon-theme`. Update the React generator template to emit equivalent `icon-examples` markup, then regenerate `packages/evo-react/src/icon/icon.stories.tsx`; do not edit the generated story directly. This will keep the icon gallery layout consistent across both framework Storybooks. + +Check: Run `rg -n '(|icon-examples)' packages/evo-react/scripts/import-svg.ts packages/evo-marko/src/tags/evo-icon/examples/all.marko` and compare the generated React structure with the Marko example. diff --git a/agent-feedback/items/2026-08-20-ebay-accordion-snapshot-build-failure.md b/agent-feedback/items/2026-08-20-ebay-accordion-snapshot-build-failure.md new file mode 100644 index 00000000000..9eed61d37eb --- /dev/null +++ b/agent-feedback/items/2026-08-20-ebay-accordion-snapshot-build-failure.md @@ -0,0 +1,12 @@ +--- +type: dx +impact: med +effort: low +site: packages/ebayui-core/src/components/ebay-accordion/test/test.browser.js › should open the clicked section +--- + +# Refresh or stabilize the accordion browser snapshot + +The required root `npm run build` fails after Skin builds because the accordion browser snapshot expects older computed icon styles and animation declarations. The rendered accordion uses the current Skin output, including the open-chevron rotation and current-color fill, so the stale snapshot prevents unrelated component work from completing root verification. Confirm the current visual behavior, then refresh the snapshot or make its assertions target stable semantics rather than generated computed CSS. + +Check: Run `npm run build`; the `should open the clicked section` snapshot in the ebay-accordion browser test mismatches on chevron transform, animation, and fill styles. diff --git a/agent-feedback/items/2026-08-20-react-children-deprecation-wording.md b/agent-feedback/items/2026-08-20-react-children-deprecation-wording.md new file mode 100644 index 00000000000..7a0eea7d009 --- /dev/null +++ b/agent-feedback/items/2026-08-20-react-children-deprecation-wording.md @@ -0,0 +1,12 @@ +--- +type: unclear +impact: low +effort: low +site: docs/adr/0005-evo-react-child-component-composition.md › Context +--- + +# Correct the claim that React child composition APIs are deprecated + +The ADR says React child-scanning APIs are deprecated by React, but React 19 still supports both `Children` and `cloneElement`. React documents them as legacy APIs that are uncommon, fragile, and discouraged for new code rather than deprecated or removed. Replace the deprecation claim with that narrower rationale so future API decisions do not rely on an incorrect compatibility constraint. + +Check: Run `rg -n "deprecated by React" docs/adr/0005-evo-react-child-component-composition.md`, then compare the claim with https://react.dev/reference/react/Children, https://react.dev/reference/react/cloneElement, and https://react.dev/reference/react/legacy. diff --git a/packages/evo-marko/.storybook/preview.ts b/packages/evo-marko/.storybook/preview.ts index a67de02d348..e977beae029 100644 --- a/packages/evo-marko/.storybook/preview.ts +++ b/packages/evo-marko/.storybook/preview.ts @@ -1,4 +1,3 @@ -import "./custom-styles.css"; import "@ebay/skin/dist/global/global.css"; import "@ebay/skin/dist/utility/utility.css"; import "@ebay/skin/marketsans"; @@ -8,7 +7,6 @@ import type { Preview } from "@storybook/marko"; export default { tags: ["autodocs"], parameters: { - layout: "centered", controls: { expanded: true, sort: "requiredFirst" }, docs: { controls: { sort: "requiredFirst" } }, options: { diff --git a/packages/evo-react/src/infotip/infotip.stories.tsx b/packages/evo-react/src/infotip/infotip.stories.tsx index f81753542a9..79d1b426781 100644 --- a/packages/evo-react/src/infotip/infotip.stories.tsx +++ b/packages/evo-react/src/infotip/infotip.stories.tsx @@ -92,18 +92,16 @@ type Story = StoryObj; export const Default: Story = { render: (args) => ( -
- - Heading -

Content

-
-
+ + Heading +

Content

+
), }; export const WrappedParagraph: Story = { render: (args) => ( -
+

This paragraph wraps around the infotip button{" "} diff --git a/packages/evo-react/src/tooltip/README.md b/packages/evo-react/src/tooltip/README.md new file mode 100644 index 00000000000..7b3e75557c0 --- /dev/null +++ b/packages/evo-react/src/tooltip/README.md @@ -0,0 +1,5 @@ +# EvoTooltip + +## Documentation + +[Storybook](https://opensource.ebay.com/evo-web/react/?path=/docs/notices-tips-evo-tooltip--documentation) diff --git a/packages/evo-react/src/tooltip/context.tsx b/packages/evo-react/src/tooltip/context.tsx new file mode 100644 index 00000000000..ee4232e4bbf --- /dev/null +++ b/packages/evo-react/src/tooltip/context.tsx @@ -0,0 +1,64 @@ +import { createContext, use, useMemo } from "react"; +import type { CSSProperties, ReactNode, RefObject } from "react"; + +export type TooltipContextValue = { + open: boolean; + tooltipId: string; + setReference: (node: Element | null) => void; + setFloating: (node: HTMLElement | null) => void; + arrowRef: RefObject; + floatingStyles: CSSProperties; + arrowStyles: CSSProperties; +}; + +const TooltipContext = createContext(null); + +export function useTooltipContext() { + const value = use(TooltipContext); + + if (!value) { + throw new Error( + "EvoTooltip sub-components must be used within an EvoTooltip component", + ); + } + + return value; +} + +type TooltipProviderProps = TooltipContextValue & { + children: ReactNode; +}; + +export function TooltipProvider({ + open, + tooltipId, + setReference, + setFloating, + arrowRef, + floatingStyles, + arrowStyles, + children, +}: TooltipProviderProps) { + const value = useMemo( + () => ({ + open, + tooltipId, + setReference, + setFloating, + arrowRef, + floatingStyles, + arrowStyles, + }), + [ + open, + tooltipId, + setReference, + setFloating, + arrowRef, + floatingStyles, + arrowStyles, + ], + ); + + return {children}; +} diff --git a/packages/evo-react/src/tooltip/index.ts b/packages/evo-react/src/tooltip/index.ts new file mode 100644 index 00000000000..a78e2e0e1d7 --- /dev/null +++ b/packages/evo-react/src/tooltip/index.ts @@ -0,0 +1,11 @@ +export { EvoTooltip } from "./tooltip"; +export { EvoTooltipHost } from "./tooltip-host"; +export { EvoTooltipContent } from "./tooltip-content"; +export { EvoTooltipHeading } from "./tooltip-heading"; +export type { + EvoTooltipProps, + EvoTooltipHostProps, + EvoTooltipContentProps, + EvoTooltipHeadingProps, + TooltipPlacement, +} from "./types"; diff --git a/packages/evo-react/src/tooltip/test/__snapshots__/test.server.tsx.snap b/packages/evo-react/src/tooltip/test/__snapshots__/test.server.tsx.snap new file mode 100644 index 00000000000..59f5db4a1a0 --- /dev/null +++ b/packages/evo-react/src/tooltip/test/__snapshots__/test.server.tsx.snap @@ -0,0 +1,31 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`EvoTooltip SSR > renders a controlled open state 1`] = `""`; + +exports[`EvoTooltip SSR > renders an uncontrolled initially open state 1`] = `""`; + +exports[`EvoTooltip SSR > renders the default closed state 1`] = `"Additional information"`; + +exports[`EvoTooltip SSR > renders with placement=bottom 1`] = `"Available options"`; + +exports[`EvoTooltip SSR > renders with placement=bottom-end 1`] = `"Available options"`; + +exports[`EvoTooltip SSR > renders with placement=bottom-start 1`] = `"Available options"`; + +exports[`EvoTooltip SSR > renders with placement=left 1`] = `"Available options"`; + +exports[`EvoTooltip SSR > renders with placement=left-end 1`] = `"Available options"`; + +exports[`EvoTooltip SSR > renders with placement=left-start 1`] = `"Available options"`; + +exports[`EvoTooltip SSR > renders with placement=right 1`] = `"Available options"`; + +exports[`EvoTooltip SSR > renders with placement=right-end 1`] = `"Available options"`; + +exports[`EvoTooltip SSR > renders with placement=right-start 1`] = `"Available options"`; + +exports[`EvoTooltip SSR > renders with placement=top 1`] = `"Available options"`; + +exports[`EvoTooltip SSR > renders with placement=top-end 1`] = `"Available options"`; + +exports[`EvoTooltip SSR > renders with placement=top-start 1`] = `"Available options"`; diff --git a/packages/evo-react/src/tooltip/test/test.browser.tsx b/packages/evo-react/src/tooltip/test/test.browser.tsx new file mode 100644 index 00000000000..cad68c19c3b --- /dev/null +++ b/packages/evo-react/src/tooltip/test/test.browser.tsx @@ -0,0 +1,215 @@ +import { useState } from "react"; +import type { ComponentProps } from "react"; +import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; +import { userEvent } from "vitest/browser"; +import { render } from "vitest-browser-react"; +import { EvoButton } from "../../button/button"; +import type { AnchorButtonProps } from "../../button/types"; +import { EvoInput } from "../../input"; +import { EvoTooltip } from "../tooltip"; +import { EvoTooltipContent } from "../tooltip-content"; +import { EvoTooltipHeading } from "../tooltip-heading"; +import { EvoTooltipHost } from "../tooltip-host"; + +function DefaultTooltip({ noHover = false }: { noHover?: boolean }) { + return ( + + Information + Additional information + + ); +} + +describe("evo-tooltip", () => { + let user: ReturnType; + + beforeEach(() => { + user = userEvent.setup(); + }); + + afterEach(() => { + user.cleanup(); + }); + + it("renders an accessible host and tooltip relationship", async () => { + const screen = await render(); + const host = screen.getByRole("button", { name: "Information" }); + + await expect.element(host).toHaveClass("tooltip__host"); + await expect.element(host).toHaveAttribute("aria-expanded", "false"); + + await user.hover(host); + + const tooltip = screen.getByRole("tooltip"); + await expect.element(tooltip).toHaveTextContent("Additional information"); + await expect + .element(host) + .toHaveAttribute("aria-describedby", tooltip.element().id); + expect(host.element().closest(".tooltip")).not.toBeNull(); + }); + + it("opens on hover and closes after the hover delay", async () => { + const screen = await render(); + const host = screen.getByRole("button", { name: "Information" }); + + await user.hover(host); + await expect.element(host).toHaveAttribute("aria-expanded", "true"); + + await user.unhover(host); + await vi.waitFor(async () => { + await expect.element(host).toHaveAttribute("aria-expanded", "false"); + }); + }); + + it("disables hover behavior without disabling focus behavior", async () => { + const screen = await render(); + const host = screen.getByRole("button", { name: "Information" }); + + await user.hover(host); + await expect.element(host).toHaveAttribute("aria-expanded", "false"); + + await user.tab(); + await expect.element(host).toHaveFocus(); + await expect.element(host).toHaveAttribute("aria-expanded", "true"); + }); + + it("supports no-hover behavior with an input host", async () => { + const screen = await render( + + + + Please choose the email address you use the most. + + , + ); + const host = screen.getByPlaceholder("Email address"); + const tooltip = + screen.container.querySelector('[role="tooltip"]')!; + + await user.hover(host); + await expect.element(host).toHaveAttribute("aria-expanded", "false"); + expect(getComputedStyle(tooltip).display).toBe("none"); + + await user.click(host); + await expect.element(host).toHaveAttribute("aria-expanded", "true"); + expect(getComputedStyle(tooltip).display).not.toBe("none"); + }); + + it("closes a hover-opened tooltip when Escape is pressed", async () => { + const screen = await render(); + const host = screen.getByRole("button", { name: "Information" }); + + await user.hover(host); + await expect.element(host).toHaveAttribute("aria-expanded", "true"); + + await user.keyboard("{Escape}"); + await expect.element(host).toHaveAttribute("aria-expanded", "false"); + }); + + it("closes a focus-opened tooltip when Escape is pressed", async () => { + const screen = await render(); + const host = screen.getByRole("button", { name: "Information" }); + + await user.tab(); + await expect.element(host).toHaveAttribute("aria-expanded", "true"); + + await user.keyboard("{Escape}"); + await expect.element(host).toHaveAttribute("aria-expanded", "false"); + }); + + it("supports a controlled open state", async () => { + const onOpenChange = vi.fn(); + + function ControlledTooltip() { + const [open, setOpen] = useState(false); + return ( + { + onOpenChange(nextOpen); + setOpen(nextOpen); + }} + > + Information + Additional information + + ); + } + + const screen = await render(); + const host = screen.getByRole("button", { name: "Information" }); + + await user.tab(); + await expect.element(host).toHaveAttribute("aria-expanded", "true"); + expect(onOpenChange).toHaveBeenLastCalledWith(true); + + await user.tab(); + await expect.element(host).toHaveAttribute("aria-expanded", "false"); + expect(onOpenChange).toHaveBeenLastCalledWith(false); + }); + + it("supports a custom host that configures its own as prop", async () => { + type CustomLinkProps = ComponentProps<"a"> & { to: string }; + + function CustomLink({ to, ref, children, ...rest }: CustomLinkProps) { + return ( + + {children} + + ); + } + + type CustomEvoButtonProps = Omit; + + function CustomEvoButton({ ref, href, ...rest }: CustomEvoButtonProps) { + return ( + ( + + )} + /> + ); + } + + const screen = await render( + + + View options + + Available options + , + ); + const host = screen.getByRole("link", { name: "View options" }); + + await expect.element(host).toHaveAttribute("data-custom-link", "true"); + await expect.element(host).toHaveClass("fake-btn"); + await expect.element(host).toHaveClass("tooltip__host"); + }); + + it("renders a custom heading element", async () => { + const screen = await render( + + Information + + Shipping information + Ships tomorrow + + , + ); + + await expect + .element(screen.getByRole("heading", { level: 2 })) + .toHaveClass("tooltip__heading"); + }); +}); diff --git a/packages/evo-react/src/tooltip/test/test.server.tsx b/packages/evo-react/src/tooltip/test/test.server.tsx new file mode 100644 index 00000000000..1869eeb25e5 --- /dev/null +++ b/packages/evo-react/src/tooltip/test/test.server.tsx @@ -0,0 +1,84 @@ +import { describe, expect, it } from "vitest"; +import { renderToString } from "react-dom/server"; +import { EvoTooltip } from "../tooltip"; +import { EvoTooltipContent } from "../tooltip-content"; +import { EvoTooltipHeading } from "../tooltip-heading"; +import { EvoTooltipHost } from "../tooltip-host"; +import type { TooltipPlacement } from "../types"; + +function DefaultTooltip({ + open, + defaultOpen, +}: { + open?: boolean; + defaultOpen?: boolean; +}) { + return ( + + Information + Additional information + + ); +} + +describe("EvoTooltip SSR", () => { + it("renders the default closed state", () => { + expect(renderToString()).toMatchSnapshot(); + }); + + it("renders a controlled open state", () => { + expect(renderToString()).toMatchSnapshot(); + }); + + it("renders an uncontrolled initially open state", () => { + expect(renderToString()).toMatchSnapshot(); + }); + + it.each([ + "top", + "top-start", + "top-end", + "right", + "right-start", + "right-end", + "bottom", + "bottom-start", + "bottom-end", + "left", + "left-start", + "left-end", + ])("renders with placement=%s", (placement) => { + expect( + renderToString( + + + View options + + Available options + , + ), + ).toMatchSnapshot(); + }); + + it("renders custom root, host, content, and heading attributes", () => { + const html = renderToString( + + + Information + + + + Heading + + Content + + , + ); + + expect(html).toContain('class="tooltip custom-tooltip"'); + expect(html).toContain('data-testid="tooltip-root"'); + expect(html).toContain('class="tooltip__host custom-host"'); + expect(html).toContain('class="tooltip__overlay custom-content"'); + expect(html).toContain('class="tooltip__heading custom-heading"'); + }); +}); diff --git a/packages/evo-react/src/tooltip/tooltip-content.tsx b/packages/evo-react/src/tooltip/tooltip-content.tsx new file mode 100644 index 00000000000..324184b9e10 --- /dev/null +++ b/packages/evo-react/src/tooltip/tooltip-content.tsx @@ -0,0 +1,41 @@ +import classNames from "classnames"; +import { useTooltipContext } from "./context"; +import type { EvoTooltipContentProps } from "./types"; +import { useRefTee } from "../utils/use-ref-tee"; + +export function EvoTooltipContent({ + className, + style, + ref, + children, + ...rest +}: EvoTooltipContentProps) { + const { + open, + tooltipId, + setFloating, + arrowRef, + floatingStyles, + arrowStyles, + } = useTooltipContext(); + const [floatingRef] = useRefTee([setFloating, ref], null); + + return ( + + + + + {children} + + + + ); +} diff --git a/packages/evo-react/src/tooltip/tooltip-heading.tsx b/packages/evo-react/src/tooltip/tooltip-heading.tsx new file mode 100644 index 00000000000..cb7f2271be9 --- /dev/null +++ b/packages/evo-react/src/tooltip/tooltip-heading.tsx @@ -0,0 +1,18 @@ +import classNames from "classnames"; +import type { ElementType } from "react"; +import type { EvoTooltipHeadingProps } from "./types"; + +export function EvoTooltipHeading({ + as, + className, + children, + ...rest +}: EvoTooltipHeadingProps) { + const Component = (as ?? "span") as ElementType; + + return ( + + {children} + + ); +} diff --git a/packages/evo-react/src/tooltip/tooltip-host.tsx b/packages/evo-react/src/tooltip/tooltip-host.tsx new file mode 100644 index 00000000000..e7eb397740e --- /dev/null +++ b/packages/evo-react/src/tooltip/tooltip-host.tsx @@ -0,0 +1,29 @@ +import classNames from "classnames"; +import type { ElementType } from "react"; +import { useTooltipContext } from "./context"; +import type { EvoTooltipHostProps } from "./types"; +import { useRefTee } from "../utils/use-ref-tee"; + +export function EvoTooltipHost({ + as, + children, + className, + ref, + ...rest +}: EvoTooltipHostProps) { + const { open, tooltipId, setReference } = useTooltipContext(); + const [referenceRef] = useRefTee([setReference, ref], null); + const Component = (as ?? "span") as ElementType; + + return ( + + {children} + + ); +} diff --git a/packages/evo-react/src/tooltip/tooltip.stories.tsx b/packages/evo-react/src/tooltip/tooltip.stories.tsx new file mode 100644 index 00000000000..2dcdbdf17e9 --- /dev/null +++ b/packages/evo-react/src/tooltip/tooltip.stories.tsx @@ -0,0 +1,228 @@ +import type { ComponentProps } from "react"; +import type { Meta, StoryObj } from "@storybook/react-vite"; +import { EvoButton } from "../button/button"; +import type { AnchorButtonProps } from "../button/types"; +import { EvoIconButton } from "../icon-button"; +import { EvoIconSettings24 } from "../icon/icons/settings-24"; +import { EvoInput } from "../input"; +import { EvoTooltip } from "./tooltip"; +import { EvoTooltipContent } from "./tooltip-content"; +import { EvoTooltipHeading } from "./tooltip-heading"; +import { EvoTooltipHost } from "./tooltip-host"; +import type { TooltipPlacement } from "./types"; + +const meta: Meta = { + title: "notices & tips/evo-tooltip", + component: EvoTooltip, + subcomponents: { + EvoTooltipHost, + EvoTooltipContent, + EvoTooltipHeading, + }, + tags: ["autodocs"], + parameters: { + docs: { + description: { + component: ` +A tooltip provides brief, supplementary information when its host is hovered or focused. + +## Usage + +\`\`\`tsx +import { + EvoTooltip, + EvoTooltipContent, + EvoTooltipHost, +} from "@evo-web/react/tooltip"; +\`\`\` + `, + }, + }, + }, + argTypes: { + open: { + control: "boolean", + }, + defaultOpen: { + control: "boolean", + table: { defaultValue: { summary: "false" } }, + }, + onOpenChange: { + action: "onOpenChange", + table: { category: "Events" }, + }, + placement: { + control: "select", + options: [ + "top", + "top-start", + "top-end", + "right", + "right-start", + "right-end", + "bottom", + "bottom-start", + "bottom-end", + "left", + "left-start", + "left-end", + ], + table: { defaultValue: { summary: "bottom" } }, + }, + offset: { + control: "number", + table: { defaultValue: { summary: "8" } }, + }, + flip: { + control: "boolean", + table: { defaultValue: { summary: "true" } }, + }, + shift: { + control: "boolean", + table: { defaultValue: { summary: "true" } }, + }, + inline: { + control: "boolean", + table: { defaultValue: { summary: "true" } }, + }, + noHover: { + control: "boolean", + table: { defaultValue: { summary: "false" } }, + }, + }, +}; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { + render: (args) => ( + + View options + + Use Access Key 'S' to display settings. + + + ), +}; + +export const NoHover: Story = { + render: (args) => ( + + + + Please choose the email address you use the most. + + + ), +}; + +export const IconButtonHost: Story = { + render: (args) => ( + + + + + Configure your settings + + ), +}; + +const placements: TooltipPlacement[] = [ + "top-start", + "top", + "top-end", + "right-start", + "right", + "right-end", + "bottom-start", + "bottom", + "bottom-end", + "left-start", + "left", + "left-end", +]; + +export const Placements: Story = { + render: (args) => ( +

+ {placements.map((placement) => ( + + + {placement} + + + + Tooltip content for {placement} + + + Here we explicitly set flip=false for demonstration. + By default, the tooltip will not extend outside the window. + + + + ))} +
+ ), +}; + +type CustomLinkProps = ComponentProps<"a"> & { + to: string; +}; + +function CustomLink({ to, ref, children, ...rest }: CustomLinkProps) { + return ( + + {children} + + ); +} + +type CustomEvoButtonProps = Omit; + +function CustomEvoButton({ ref, href, ...rest }: CustomEvoButtonProps) { + return ( + ( + + )} + /> + ); +} + +export const CustomHost: Story = { + render: (args) => ( + + + View options + + + Available options + Use this link to view available options. + + + ), +}; diff --git a/packages/evo-react/src/tooltip/tooltip.tsx b/packages/evo-react/src/tooltip/tooltip.tsx new file mode 100644 index 00000000000..b6c942cb56e --- /dev/null +++ b/packages/evo-react/src/tooltip/tooltip.tsx @@ -0,0 +1,150 @@ +import { useCallback, useId, useRef } from "react"; +import type { FocusEvent, MouseEvent } from "react"; +import classNames from "classnames"; +import { TooltipProvider } from "./context"; +import type { EvoTooltipProps } from "./types"; +import { useExpander } from "../utils/use-expander"; +import { useRefTee } from "../utils/use-ref-tee"; +import "@ebay/skin/tooltip.mjs"; + +export function EvoTooltip({ + open, + defaultOpen = false, + onOpenChange, + placement = "bottom", + offset = 8, + flip = true, + shift = true, + inline = true, + noHover = false, + className, + children, + onMouseEnter, + onMouseLeave, + onFocus, + onBlur, + ref, + ...rest +}: EvoTooltipProps) { + const tooltipId = useId(); + const hoverTimeoutRef = useRef | null>(null); + const expander = useExpander({ + open, + defaultOpen, + onOpenChange, + placement, + strategy: "absolute", + offset, + flip, + shift, + inline, + }); + + const clearHoverTimeout = useCallback(() => { + if (hoverTimeoutRef.current !== null) { + clearTimeout(hoverTimeoutRef.current); + hoverTimeoutRef.current = null; + } + }, []); + + const handleMouseEnter = useCallback( + (event: MouseEvent) => { + onMouseEnter?.(event); + if (!noHover) { + clearHoverTimeout(); + expander.setOpen(true); + } + }, + [clearHoverTimeout, expander.setOpen, noHover, onMouseEnter], + ); + + const handleMouseLeave = useCallback( + (event: MouseEvent) => { + onMouseLeave?.(event); + if (!noHover) { + clearHoverTimeout(); + hoverTimeoutRef.current = setTimeout(() => { + expander.setOpen(false); + }, 300); + } + }, + [clearHoverTimeout, expander.setOpen, noHover, onMouseLeave], + ); + + const handleFocus = useCallback( + (event: FocusEvent) => { + onFocus?.(event); + clearHoverTimeout(); + expander.setOpen(true); + }, + [clearHoverTimeout, expander.setOpen, onFocus], + ); + + const handleBlur = useCallback( + (event: FocusEvent) => { + onBlur?.(event); + if (!event.currentTarget.contains(event.relatedTarget)) { + clearHoverTimeout(); + expander.setOpen(false); + } + }, + [clearHoverTimeout, expander.setOpen, onBlur], + ); + + const [rootRef] = useRefTee(ref, null); + const lifecycleRef = useCallback( + (root: HTMLSpanElement | null) => { + rootRef(root); + if (!root) { + return; + } + + const ownerDocument = root.ownerDocument; + const handleKeyDown = (event: KeyboardEvent) => { + if (event.key === "Escape" || event.key === "Esc") { + clearHoverTimeout(); + expander.setOpen(false); + } + }; + + if (expander.open) { + ownerDocument.addEventListener("keydown", handleKeyDown); + } + + return () => { + ownerDocument.removeEventListener("keydown", handleKeyDown); + clearHoverTimeout(); + rootRef(null); + }; + }, + [clearHoverTimeout, expander.open, expander.setOpen, rootRef], + ); + + return ( + + + {children} + + + ); +} diff --git a/packages/evo-react/src/tooltip/types.ts b/packages/evo-react/src/tooltip/types.ts new file mode 100644 index 00000000000..ea3c91dc30c --- /dev/null +++ b/packages/evo-react/src/tooltip/types.ts @@ -0,0 +1,79 @@ +import type { + ComponentProps, + ComponentPropsWithRef, + ElementType, + ReactNode, +} from "react"; + +export type TooltipPlacement = + | "top" + | "top-start" + | "top-end" + | "right" + | "right-start" + | "right-end" + | "bottom" + | "bottom-start" + | "bottom-end" + | "left" + | "left-start" + | "left-end"; + +export type EvoTooltipProps = ComponentProps<"span"> & { + /** Controlled open state. When provided, the consumer manages it via `onOpenChange`. */ + open?: boolean; + /** Initial open state for uncontrolled usage. Ignored when `open` is provided. */ + defaultOpen?: boolean; + /** Callback fired when the tooltip requests to change its open state. */ + onOpenChange?: (open: boolean) => void; + /** Position of the overlay relative to the host. Defaults to `bottom`. */ + placement?: TooltipPlacement; + /** Distance between the host and overlay in pixels. Defaults to `8`. */ + offset?: number; + /** Flips the tooltip when there is insufficient space. Defaults to `true`. */ + flip?: boolean; + /** Shifts the tooltip to keep it within the viewport. Defaults to `true`. */ + shift?: boolean; + /** Uses inline positioning for hosts that wrap across multiple lines. Defaults to `true`. */ + inline?: boolean; + /** Disables hover behavior while preserving focus behavior. Defaults to `false`. */ + noHover?: boolean; +}; + +type TooltipHostOwnProps = { + /** Element or component rendered as the tooltip host. Defaults to `span`. */ + as?: T; + /** Content rendered inside the tooltip host. */ + children?: ReactNode; + /** Additional class name merged with the Skin host class. */ + className?: string; + /** Ref forwarded to the rendered host. Custom components must pass it to their DOM element. */ + ref?: ComponentPropsWithRef["ref"]; +}; + +export type EvoTooltipHostProps = + TooltipHostOwnProps & + Omit< + ComponentPropsWithRef, + keyof TooltipHostOwnProps | "aria-describedby" | "aria-expanded" + >; + +export type EvoTooltipContentProps = Omit< + ComponentProps<"span">, + "id" | "role" | "tabIndex" +>; + +type TooltipHeadingOwnProps = { + /** Element or component used for the heading. Defaults to `span`. */ + as?: T; + /** Content rendered inside the tooltip heading. */ + children?: ReactNode; + /** Additional class name merged with the Skin heading class. */ + className?: string; + /** Ref forwarded to the rendered heading. */ + ref?: ComponentPropsWithRef["ref"]; +}; + +export type EvoTooltipHeadingProps = + TooltipHeadingOwnProps & + Omit, keyof TooltipHeadingOwnProps>; diff --git a/packages/evo-react/src/utils/use-ref-tee.ts b/packages/evo-react/src/utils/use-ref-tee.ts index 36956fae62e..520357ce722 100644 --- a/packages/evo-react/src/utils/use-ref-tee.ts +++ b/packages/evo-react/src/utils/use-ref-tee.ts @@ -1,23 +1,25 @@ import { useCallback, useRef } from "react"; import type { Ref } from "react"; -export function useRefTee(ref?: Ref, initialValue?: T) { +type RefTeeInput = Ref | readonly (Ref | undefined)[]; + +export function useRefTee(ref?: RefTeeInput, initialValue?: T) { const internalRef = useRef(initialValue); + const refs: readonly (Ref | undefined)[] = Array.isArray(ref) + ? ref + : [ref as Ref | undefined]; - const teeRef = useCallback( - (node: T) => { - internalRef.current = node; + const teeRef = useCallback((node: T) => { + internalRef.current = node; - if (ref) { - if (typeof ref === "function") { - ref(node); - } else { - ref.current = node; - } + refs.forEach((currentRef) => { + if (typeof currentRef === "function") { + currentRef(node); + } else if (currentRef) { + currentRef.current = node; } - }, - [ref], - ); + }); + }, refs); return [teeRef, internalRef] as const; } diff --git a/packages/evo-storybook-addon-theme/README.md b/packages/evo-storybook-addon-theme/README.md index f141363fba5..994a2e9ab83 100644 --- a/packages/evo-storybook-addon-theme/README.md +++ b/packages/evo-storybook-addon-theme/README.md @@ -10,4 +10,4 @@ export default { }; ``` -The addon provides the Evo Web manager theme and logo, the color-scheme toolbar, Evo token overrides for explicit selections, and live system-theme updates. +The addon provides the Evo Web manager theme and logo, the color-scheme toolbar, Evo token overrides for explicit selections, live system-theme updates, and the shared preview layout. Stories are vertically centered by default while retaining their natural horizontal alignment; individual stories can override Storybook's `layout` parameter when needed. diff --git a/packages/evo-marko/.storybook/custom-styles.css b/packages/evo-storybook-addon-theme/src/layout.scss similarity index 83% rename from packages/evo-marko/.storybook/custom-styles.css rename to packages/evo-storybook-addon-theme/src/layout.scss index 3ebc9fa5d0e..1d72b32c4e9 100644 --- a/packages/evo-marko/.storybook/custom-styles.css +++ b/packages/evo-storybook-addon-theme/src/layout.scss @@ -1,8 +1,7 @@ -/* -A couple of modules need to have a fixed with otherwise they will not work well -*/ -.docs-story div[scale="1"], -#storybook-root { +// Storybook's centered layout vertically aligns the story root. Keeping the +// root full-width preserves each story's natural horizontal alignment. +#storybook-root, +.docs-story div[scale="1"] { width: 100%; } @@ -12,41 +11,42 @@ A couple of modules need to have a fixed with otherwise they will not work well .icon-examples { display: grid; - grid-template-columns: 1fr 1fr; gap: 10px; + grid-template-columns: 1fr 1fr; } .icon-examples > div { + align-items: center; + border: 1px solid black; display: flex; flex-direction: column; - align-items: center; - width: 150px; justify-content: center; - border: 1px solid black; padding: 5px; + width: 150px; } .icon-examples > div > span.icon { - display: flex; - justify-content: center; align-items: center; - width: 100%; + display: flex; height: 64px; + justify-content: center; margin: 15px 0; + width: 100%; } + .icon-examples > div > span.text { color: var(--color-yellow-6); text-align: center; } .icon-examples > div > span.text::before { - content: "<"; color: var(--color-blue-5); + content: "<"; } .icon-examples > div > span.text::after { - content: "/>"; color: var(--color-blue-5); + content: "/>"; } @media (min-width: 601px) { diff --git a/packages/evo-storybook-addon-theme/src/preview.tsx b/packages/evo-storybook-addon-theme/src/preview.tsx index 9d1fe704668..55a742b98e3 100644 --- a/packages/evo-storybook-addon-theme/src/preview.tsx +++ b/packages/evo-storybook-addon-theme/src/preview.tsx @@ -2,6 +2,7 @@ import "@ebay/skin/dist/tokens/evo-core.css"; import "@ebay/skin/dist/tokens/evo-light.css"; import "@ebay/skin/dist/tokens/evo-dark.css"; import "./color-scheme.scss"; +import "./layout.scss"; import ThemedDocsContainer from "./docs-container"; export default { @@ -31,6 +32,7 @@ export default { }, ], parameters: { + layout: "centered", docs: { container: ThemedDocsContainer, }, From 343ab58aa88ae91513ba570a8f34ce27b7af2396 Mon Sep 17 00:00:00 2001 From: HenriqueLimas Date: Thu, 20 Aug 2026 17:45:39 -0700 Subject: [PATCH 02/11] chore: remove resolved build feedback --- ...26-08-20-ebay-accordion-snapshot-build-failure.md | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 agent-feedback/items/2026-08-20-ebay-accordion-snapshot-build-failure.md diff --git a/agent-feedback/items/2026-08-20-ebay-accordion-snapshot-build-failure.md b/agent-feedback/items/2026-08-20-ebay-accordion-snapshot-build-failure.md deleted file mode 100644 index 9eed61d37eb..00000000000 --- a/agent-feedback/items/2026-08-20-ebay-accordion-snapshot-build-failure.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -type: dx -impact: med -effort: low -site: packages/ebayui-core/src/components/ebay-accordion/test/test.browser.js › should open the clicked section ---- - -# Refresh or stabilize the accordion browser snapshot - -The required root `npm run build` fails after Skin builds because the accordion browser snapshot expects older computed icon styles and animation declarations. The rendered accordion uses the current Skin output, including the open-chevron rotation and current-color fill, so the stale snapshot prevents unrelated component work from completing root verification. Confirm the current visual behavior, then refresh the snapshot or make its assertions target stable semantics rather than generated computed CSS. - -Check: Run `npm run build`; the `should open the clicked section` snapshot in the ebay-accordion browser test mismatches on chevron transform, animation, and fill styles. From b3cfdc5ce5fe0cb9b5eab3d1ddeccf6c13bbd254 Mon Sep 17 00:00:00 2001 From: HenriqueLimas Date: Fri, 21 Aug 2026 10:17:59 -0700 Subject: [PATCH 03/11] test(evo-react): stabilize tooltip accessibility test --- packages/evo-react/src/tooltip/test/test.browser.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/evo-react/src/tooltip/test/test.browser.tsx b/packages/evo-react/src/tooltip/test/test.browser.tsx index cad68c19c3b..2243eda6f21 100644 --- a/packages/evo-react/src/tooltip/test/test.browser.tsx +++ b/packages/evo-react/src/tooltip/test/test.browser.tsx @@ -32,13 +32,14 @@ describe("evo-tooltip", () => { }); it("renders an accessible host and tooltip relationship", async () => { - const screen = await render(); + const screen = await render(); const host = screen.getByRole("button", { name: "Information" }); await expect.element(host).toHaveClass("tooltip__host"); await expect.element(host).toHaveAttribute("aria-expanded", "false"); - await user.hover(host); + await user.tab(); + await expect.element(host).toHaveAttribute("aria-expanded", "true"); const tooltip = screen.getByRole("tooltip"); await expect.element(tooltip).toHaveTextContent("Additional information"); From c317cb8f40e850729c02bb717a7a297da5fec3fb Mon Sep 17 00:00:00 2001 From: HenriqueLimas Date: Mon, 24 Aug 2026 09:50:55 -0700 Subject: [PATCH 04/11] fix(evo-react): refine tooltip host behavior --- .changeset/add-evo-tooltip.md | 2 +- .../components/evo-tooltip.md | 4 +- .../test/__snapshots__/test.server.tsx.snap | 4 +- packages/evo-react/src/button/button.tsx | 1 + .../test/__snapshots__/test.server.tsx.snap | 76 +++++++++---------- .../src/button/test/test.browser.tsx | 16 ++++ .../test/__snapshots__/test.server.tsx.snap | 4 +- .../test/__snapshots__/test.server.tsx.snap | 2 +- .../test/__snapshots__/test.server.tsx.snap | 2 +- .../test/__snapshots__/test.server.tsx.snap | 6 +- .../src/tooltip/test/test.browser.tsx | 38 ++++++++-- .../src/tooltip/test/test.server.tsx | 6 +- .../evo-react/src/tooltip/tooltip-host.tsx | 5 +- .../evo-react/src/tooltip/tooltip.stories.tsx | 6 +- packages/evo-react/src/tooltip/tooltip.tsx | 32 ++++++-- packages/evo-react/src/tooltip/types.ts | 7 +- 16 files changed, 133 insertions(+), 78 deletions(-) diff --git a/.changeset/add-evo-tooltip.md b/.changeset/add-evo-tooltip.md index 6979ed66a22..d9175cb042a 100644 --- a/.changeset/add-evo-tooltip.md +++ b/.changeset/add-evo-tooltip.md @@ -2,4 +2,4 @@ "@evo-web/react": patch --- -Add EvoTooltip component. +Add EvoTooltip component with an EvoButton host by default, and default EvoButton to `type="button"`. diff --git a/.claude/skills/evo-app-migrate-react/components/evo-tooltip.md b/.claude/skills/evo-app-migrate-react/components/evo-tooltip.md index 8416670b038..d06e8eae5d4 100644 --- a/.claude/skills/evo-app-migrate-react/components/evo-tooltip.md +++ b/.claude/skills/evo-app-migrate-react/components/evo-tooltip.md @@ -2,14 +2,14 @@ ## Composition -`EvoTooltipHost` renders its host through `as` instead of cloning a child. Move the old host element's props and content onto `EvoTooltipHost`. +`EvoTooltipHost` renders its host through `as` instead of cloning a child. It defaults to `EvoButton`, which renders `
"`; +exports[`EvoAlertDialog SSR > renders default (closed) controlled state 1`] = `"

Alert!

You must acknowledge this alert to continue.

"`; -exports[`EvoAlertDialog SSR > renders open controlled state 1`] = `"

Alert!

You must acknowledge this alert to continue.

"`; +exports[`EvoAlertDialog SSR > renders open controlled state 1`] = `"

Alert!

You must acknowledge this alert to continue.

"`; diff --git a/packages/evo-react/src/button/button.tsx b/packages/evo-react/src/button/button.tsx index d7972450157..78757257c83 100644 --- a/packages/evo-react/src/button/button.tsx +++ b/packages/evo-react/src/button/button.tsx @@ -125,6 +125,7 @@ export function EvoButton({ return ( "`; +exports[`EvoButton SSR > should render button with bodyState=expand 1`] = `""`; -exports[`EvoButton SSR > should render button with bodyState=loading 1`] = `""`; +exports[`EvoButton SSR > should render button with bodyState=loading 1`] = `""`; -exports[`EvoButton SSR > should render button with borderless=false 1`] = `""`; +exports[`EvoButton SSR > should render button with borderless=false 1`] = `""`; -exports[`EvoButton SSR > should render button with borderless=true 1`] = `""`; +exports[`EvoButton SSR > should render button with borderless=true 1`] = `""`; -exports[`EvoButton SSR > should render button with disabled=false 1`] = `""`; +exports[`EvoButton SSR > should render button with disabled=false 1`] = `""`; -exports[`EvoButton SSR > should render button with disabled=true 1`] = `""`; +exports[`EvoButton SSR > should render button with disabled=true 1`] = `""`; -exports[`EvoButton SSR > should render button with fixedHeight=false 1`] = `""`; +exports[`EvoButton SSR > should render button with fixedHeight=false 1`] = `""`; -exports[`EvoButton SSR > should render button with fixedHeight=true 1`] = `""`; +exports[`EvoButton SSR > should render button with fixedHeight=true 1`] = `""`; -exports[`EvoButton SSR > should render button with fluid=false 1`] = `""`; +exports[`EvoButton SSR > should render button with fluid=false 1`] = `""`; -exports[`EvoButton SSR > should render button with fluid=true 1`] = `""`; +exports[`EvoButton SSR > should render button with fluid=true 1`] = `""`; -exports[`EvoButton SSR > should render button with partiallyDisabled=false 1`] = `""`; +exports[`EvoButton SSR > should render button with partiallyDisabled=false 1`] = `""`; -exports[`EvoButton SSR > should render button with partiallyDisabled=true 1`] = `""`; +exports[`EvoButton SSR > should render button with partiallyDisabled=true 1`] = `""`; -exports[`EvoButton SSR > should render button with priority=none 1`] = `""`; +exports[`EvoButton SSR > should render button with priority=none 1`] = `""`; -exports[`EvoButton SSR > should render button with priority=primary 1`] = `""`; +exports[`EvoButton SSR > should render button with priority=primary 1`] = `""`; -exports[`EvoButton SSR > should render button with priority=secondary 1`] = `""`; +exports[`EvoButton SSR > should render button with priority=secondary 1`] = `""`; -exports[`EvoButton SSR > should render button with priority=tertiary 1`] = `""`; +exports[`EvoButton SSR > should render button with priority=tertiary 1`] = `""`; -exports[`EvoButton SSR > should render button with size=large 1`] = `""`; +exports[`EvoButton SSR > should render button with size=large 1`] = `""`; -exports[`EvoButton SSR > should render button with size=small 1`] = `""`; +exports[`EvoButton SSR > should render button with size=small 1`] = `""`; -exports[`EvoButton SSR > should render button with split=end 1`] = `""`; +exports[`EvoButton SSR > should render button with split=end 1`] = `""`; -exports[`EvoButton SSR > should render button with split=start 1`] = `""`; +exports[`EvoButton SSR > should render button with split=start 1`] = `""`; -exports[`EvoButton SSR > should render button with transparent=false 1`] = `""`; +exports[`EvoButton SSR > should render button with transparent=false 1`] = `""`; -exports[`EvoButton SSR > should render button with transparent=true 1`] = `""`; +exports[`EvoButton SSR > should render button with transparent=true 1`] = `""`; -exports[`EvoButton SSR > should render button with truncate=false 1`] = `""`; +exports[`EvoButton SSR > should render button with truncate=false 1`] = `""`; -exports[`EvoButton SSR > should render button with truncate=true 1`] = `""`; +exports[`EvoButton SSR > should render button with truncate=true 1`] = `""`; -exports[`EvoButton SSR > should render button with variant=destructive 1`] = `""`; +exports[`EvoButton SSR > should render button with variant=destructive 1`] = `""`; -exports[`EvoButton SSR > should render button with variant=form 1`] = `""`; +exports[`EvoButton SSR > should render button with variant=form 1`] = `""`; -exports[`EvoButton SSR > should render button with variant=standard 1`] = `""`; +exports[`EvoButton SSR > should render button with variant=standard 1`] = `""`; -exports[`EvoButton SSR > should render combined: primary large fluid 1`] = `""`; +exports[`EvoButton SSR > should render combined: primary large fluid 1`] = `""`; -exports[`EvoButton SSR > should render defaults 1`] = `""`; +exports[`EvoButton SSR > should render defaults 1`] = `""`; -exports[`EvoButton SSR > should render destructive primary large 1`] = `""`; +exports[`EvoButton SSR > should render destructive primary large 1`] = `""`; exports[`EvoButton SSR > should render disabled link without href 1`] = `"Disabled Link"`; exports[`EvoButton SSR > should render fake version (anchor) 1`] = `"Link Button"`; -exports[`EvoButton SSR > should render form variant with expand 1`] = `""`; +exports[`EvoButton SSR > should render form variant with expand 1`] = `""`; -exports[`EvoButton SSR > should render large fixed-height button 1`] = `""`; +exports[`EvoButton SSR > should render large fixed-height button 1`] = `""`; -exports[`EvoButton SSR > should render large truncated button 1`] = `""`; +exports[`EvoButton SSR > should render large truncated button 1`] = `""`; -exports[`EvoButton SSR > should render with ButtonCell 1`] = `""`; +exports[`EvoButton SSR > should render with ButtonCell 1`] = `""`; -exports[`EvoButton SSR > should render with aria-label 1`] = `""`; +exports[`EvoButton SSR > should render with aria-label 1`] = `""`; exports[`EvoButton SSR > should render with custom \`as\` component 1`] = `"Custom Link"`; -exports[`EvoButton SSR > should render with custom className 1`] = `""`; +exports[`EvoButton SSR > should render with custom className 1`] = `""`; -exports[`EvoButton SSR > should render with data attributes 1`] = `""`; +exports[`EvoButton SSR > should render with data attributes 1`] = `""`; -exports[`EvoButton SSR > should render with id override 1`] = `""`; +exports[`EvoButton SSR > should render with id override 1`] = `""`; exports[`EvoButton SSR > should render with type override 1`] = `""`; diff --git a/packages/evo-react/src/button/test/test.browser.tsx b/packages/evo-react/src/button/test/test.browser.tsx index a3f5d5fd18b..f0f388a59ff 100644 --- a/packages/evo-react/src/button/test/test.browser.tsx +++ b/packages/evo-react/src/button/test/test.browser.tsx @@ -17,6 +17,22 @@ describe("evo-button", () => { }); describe("given button is enabled", () => { + it("defaults to type=button", async () => { + const screen = await render(Button); + + await expect + .element(screen.getByRole("button")) + .toHaveAttribute("type", "button"); + }); + + it("supports an explicit button type", async () => { + const screen = await render(Submit); + + await expect + .element(screen.getByRole("button")) + .toHaveAttribute("type", "submit"); + }); + it("emits click event when clicked", async () => { const onClick = vi.fn(); const screen = await render( diff --git a/packages/evo-react/src/confirm-dialog/test/__snapshots__/test.server.tsx.snap b/packages/evo-react/src/confirm-dialog/test/__snapshots__/test.server.tsx.snap index 1333073bce5..b542ba17f74 100644 --- a/packages/evo-react/src/confirm-dialog/test/__snapshots__/test.server.tsx.snap +++ b/packages/evo-react/src/confirm-dialog/test/__snapshots__/test.server.tsx.snap @@ -1,5 +1,5 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`EvoConfirmDialog SSR > renders default (closed) controlled state 1`] = `"

Delete Address?

You will permanently lose this address.

"`; +exports[`EvoConfirmDialog SSR > renders default (closed) controlled state 1`] = `"

Delete Address?

You will permanently lose this address.

"`; -exports[`EvoConfirmDialog SSR > renders open controlled state 1`] = `"

Delete Address?

You will permanently lose this address.

"`; +exports[`EvoConfirmDialog SSR > renders open controlled state 1`] = `"

Delete Address?

You will permanently lose this address.

"`; diff --git a/packages/evo-react/src/dialog/test/__snapshots__/test.server.tsx.snap b/packages/evo-react/src/dialog/test/__snapshots__/test.server.tsx.snap index e72fea0c01b..99af598f20f 100644 --- a/packages/evo-react/src/dialog/test/__snapshots__/test.server.tsx.snap +++ b/packages/evo-react/src/dialog/test/__snapshots__/test.server.tsx.snap @@ -8,6 +8,6 @@ exports[`EvoDialog SSR > renders size=wide 1`] = `" renders the default controlled state 1`] = `"

Dialog Title

Dialog content

"`; -exports[`EvoDialog SSR > renders the expressive composition 1`] = `"

Dialog Title

Dialog content
"`; +exports[`EvoDialog SSR > renders the expressive composition 1`] = `"

Dialog Title

Dialog content
"`; exports[`EvoDialog SSR > renders the open controlled state 1`] = `"

Dialog Title

Dialog content

"`; diff --git a/packages/evo-react/src/menu/test/__snapshots__/test.server.tsx.snap b/packages/evo-react/src/menu/test/__snapshots__/test.server.tsx.snap index 173544787a3..70fa580cea8 100644 --- a/packages/evo-react/src/menu/test/__snapshots__/test.server.tsx.snap +++ b/packages/evo-react/src/menu/test/__snapshots__/test.server.tsx.snap @@ -2,7 +2,7 @@ exports[`EvoMenu SSR > applies prefixed menu classes 1`] = `""`; -exports[`EvoMenu SSR > renders command items, a badge, a separator, and a footer 1`] = `""`; +exports[`EvoMenu SSR > renders command items, a badge, a separator, and a footer 1`] = `""`; exports[`EvoMenu SSR > renders selected radio and checkbox items 1`] = `""`; diff --git a/packages/evo-react/src/tooltip/test/__snapshots__/test.server.tsx.snap b/packages/evo-react/src/tooltip/test/__snapshots__/test.server.tsx.snap index 59f5db4a1a0..f751e96dbb2 100644 --- a/packages/evo-react/src/tooltip/test/__snapshots__/test.server.tsx.snap +++ b/packages/evo-react/src/tooltip/test/__snapshots__/test.server.tsx.snap @@ -1,10 +1,10 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`EvoTooltip SSR > renders a controlled open state 1`] = `""`; +exports[`EvoTooltip SSR > renders a controlled open state 1`] = `""`; -exports[`EvoTooltip SSR > renders an uncontrolled initially open state 1`] = `""`; +exports[`EvoTooltip SSR > renders an uncontrolled initially open state 1`] = `""`; -exports[`EvoTooltip SSR > renders the default closed state 1`] = `"Additional information"`; +exports[`EvoTooltip SSR > renders the default closed state 1`] = `"Additional information"`; exports[`EvoTooltip SSR > renders with placement=bottom 1`] = `"Available options"`; diff --git a/packages/evo-react/src/tooltip/test/test.browser.tsx b/packages/evo-react/src/tooltip/test/test.browser.tsx index 2243eda6f21..d37353a30c4 100644 --- a/packages/evo-react/src/tooltip/test/test.browser.tsx +++ b/packages/evo-react/src/tooltip/test/test.browser.tsx @@ -11,10 +11,16 @@ import { EvoTooltipContent } from "../tooltip-content"; import { EvoTooltipHeading } from "../tooltip-heading"; import { EvoTooltipHost } from "../tooltip-host"; -function DefaultTooltip({ noHover = false }: { noHover?: boolean }) { +function DefaultTooltip({ + noHover = false, + defaultOpen, +}: { + noHover?: boolean; + defaultOpen?: boolean; +}) { return ( - - Information + + Information Additional information ); @@ -36,6 +42,7 @@ describe("evo-tooltip", () => { const host = screen.getByRole("button", { name: "Information" }); await expect.element(host).toHaveClass("tooltip__host"); + await expect.element(host).toHaveAttribute("type", "button"); await expect.element(host).toHaveAttribute("aria-expanded", "false"); await user.tab(); @@ -62,7 +69,7 @@ describe("evo-tooltip", () => { }); }); - it("disables hover behavior without disabling focus behavior", async () => { + it("opens a no-hover tooltip only for keyboard-visible focus", async () => { const screen = await render(); const host = screen.getByRole("button", { name: "Information" }); @@ -74,7 +81,7 @@ describe("evo-tooltip", () => { await expect.element(host).toHaveAttribute("aria-expanded", "true"); }); - it("supports no-hover behavior with an input host", async () => { + it("does not open a no-hover tooltip when an input is clicked", async () => { const screen = await render( { expect(getComputedStyle(tooltip).display).toBe("none"); await user.click(host); + await expect.element(host).toHaveFocus(); + await expect.element(host).toHaveAttribute("aria-expanded", "false"); + expect(getComputedStyle(tooltip).display).toBe("none"); + }); + + it("closes a no-hover tooltip on touch pointer down", async () => { + const screen = await render(); + const host = screen.getByRole("button", { name: "Information" }); + await expect.element(host).toHaveAttribute("aria-expanded", "true"); - expect(getComputedStyle(tooltip).display).not.toBe("none"); + host.element().dispatchEvent( + new PointerEvent("pointerdown", { + bubbles: true, + pointerType: "touch", + }), + ); + await expect.element(host).toHaveAttribute("aria-expanded", "false"); }); it("closes a hover-opened tooltip when Escape is pressed", async () => { @@ -135,7 +157,7 @@ describe("evo-tooltip", () => { setOpen(nextOpen); }} > - Information + Information Additional information ); @@ -201,7 +223,7 @@ describe("evo-tooltip", () => { it("renders a custom heading element", async () => { const screen = await render( - Information + Information Shipping information Ships tomorrow diff --git a/packages/evo-react/src/tooltip/test/test.server.tsx b/packages/evo-react/src/tooltip/test/test.server.tsx index 1869eeb25e5..0ac1b1bd1ff 100644 --- a/packages/evo-react/src/tooltip/test/test.server.tsx +++ b/packages/evo-react/src/tooltip/test/test.server.tsx @@ -15,7 +15,7 @@ function DefaultTooltip({ }) { return ( - Information + Information Additional information ); @@ -63,7 +63,7 @@ describe("EvoTooltip SSR", () => { it("renders custom root, host, content, and heading attributes", () => { const html = renderToString( - + Information @@ -77,7 +77,7 @@ describe("EvoTooltip SSR", () => { expect(html).toContain('class="tooltip custom-tooltip"'); expect(html).toContain('data-testid="tooltip-root"'); - expect(html).toContain('class="tooltip__host custom-host"'); + expect(html).toContain("tooltip__host custom-host"); expect(html).toContain('class="tooltip__overlay custom-content"'); expect(html).toContain('class="tooltip__heading custom-heading"'); }); diff --git a/packages/evo-react/src/tooltip/tooltip-host.tsx b/packages/evo-react/src/tooltip/tooltip-host.tsx index e7eb397740e..d9e2edbdd68 100644 --- a/packages/evo-react/src/tooltip/tooltip-host.tsx +++ b/packages/evo-react/src/tooltip/tooltip-host.tsx @@ -1,10 +1,11 @@ import classNames from "classnames"; import type { ElementType } from "react"; import { useTooltipContext } from "./context"; +import { EvoButton } from "../button"; import type { EvoTooltipHostProps } from "./types"; import { useRefTee } from "../utils/use-ref-tee"; -export function EvoTooltipHost({ +export function EvoTooltipHost({ as, children, className, @@ -13,7 +14,7 @@ export function EvoTooltipHost({ }: EvoTooltipHostProps) { const { open, tooltipId, setReference } = useTooltipContext(); const [referenceRef] = useRefTee([setReference, ref], null); - const Component = (as ?? "span") as ElementType; + const Component = (as ?? EvoButton) as ElementType; return ( ; export const Default: Story = { render: (args) => ( - View options + View options Use Access Key 'S' to display settings. @@ -164,9 +164,7 @@ export const Placements: Story = { placement={placement} flip={false} > - - {placement} - + {placement} Tooltip content for {placement} diff --git a/packages/evo-react/src/tooltip/tooltip.tsx b/packages/evo-react/src/tooltip/tooltip.tsx index b6c942cb56e..81af4bf46ea 100644 --- a/packages/evo-react/src/tooltip/tooltip.tsx +++ b/packages/evo-react/src/tooltip/tooltip.tsx @@ -1,5 +1,5 @@ import { useCallback, useId, useRef } from "react"; -import type { FocusEvent, MouseEvent } from "react"; +import type { FocusEvent, MouseEvent, PointerEvent } from "react"; import classNames from "classnames"; import { TooltipProvider } from "./context"; import type { EvoTooltipProps } from "./types"; @@ -23,11 +23,13 @@ export function EvoTooltip({ onMouseLeave, onFocus, onBlur, + onPointerDown, ref, ...rest }: EvoTooltipProps) { const tooltipId = useId(); const hoverTimeoutRef = useRef | null>(null); + const modalityRef = useRef<"keyboard" | "pointer" | null>(null); const expander = useExpander({ open, defaultOpen, @@ -74,10 +76,12 @@ export function EvoTooltip({ const handleFocus = useCallback( (event: FocusEvent) => { onFocus?.(event); - clearHoverTimeout(); - expander.setOpen(true); + if (!noHover || modalityRef.current !== "pointer") { + clearHoverTimeout(); + expander.setOpen(true); + } }, - [clearHoverTimeout, expander.setOpen, onFocus], + [clearHoverTimeout, expander.setOpen, noHover, onFocus], ); const handleBlur = useCallback( @@ -91,6 +95,18 @@ export function EvoTooltip({ [clearHoverTimeout, expander.setOpen, onBlur], ); + const handlePointerDown = useCallback( + (event: PointerEvent) => { + onPointerDown?.(event); + modalityRef.current = "pointer"; + if (noHover) { + clearHoverTimeout(); + expander.setOpen(false); + } + }, + [clearHoverTimeout, expander.setOpen, noHover, onPointerDown], + ); + const [rootRef] = useRefTee(ref, null); const lifecycleRef = useCallback( (root: HTMLSpanElement | null) => { @@ -101,15 +117,14 @@ export function EvoTooltip({ const ownerDocument = root.ownerDocument; const handleKeyDown = (event: KeyboardEvent) => { - if (event.key === "Escape" || event.key === "Esc") { + modalityRef.current = "keyboard"; + if (expander.open && (event.key === "Escape" || event.key === "Esc")) { clearHoverTimeout(); expander.setOpen(false); } }; - if (expander.open) { - ownerDocument.addEventListener("keydown", handleKeyDown); - } + ownerDocument.addEventListener("keydown", handleKeyDown); return () => { ownerDocument.removeEventListener("keydown", handleKeyDown); @@ -142,6 +157,7 @@ export function EvoTooltip({ onMouseLeave={handleMouseLeave} onFocus={handleFocus} onBlur={handleBlur} + onPointerDown={handlePointerDown} > {children} diff --git a/packages/evo-react/src/tooltip/types.ts b/packages/evo-react/src/tooltip/types.ts index ea3c91dc30c..98aec3be7d2 100644 --- a/packages/evo-react/src/tooltip/types.ts +++ b/packages/evo-react/src/tooltip/types.ts @@ -4,6 +4,7 @@ import type { ElementType, ReactNode, } from "react"; +import type { EvoButton } from "../button"; export type TooltipPlacement = | "top" @@ -36,12 +37,12 @@ export type EvoTooltipProps = ComponentProps<"span"> & { shift?: boolean; /** Uses inline positioning for hosts that wrap across multiple lines. Defaults to `true`. */ inline?: boolean; - /** Disables hover behavior while preserving focus behavior. Defaults to `false`. */ + /** Disables hover and opens only for keyboard-visible focus. Defaults to `false`. */ noHover?: boolean; }; type TooltipHostOwnProps = { - /** Element or component rendered as the tooltip host. Defaults to `span`. */ + /** Element or component rendered as the tooltip host. Defaults to `EvoButton`. */ as?: T; /** Content rendered inside the tooltip host. */ children?: ReactNode; @@ -51,7 +52,7 @@ type TooltipHostOwnProps = { ref?: ComponentPropsWithRef["ref"]; }; -export type EvoTooltipHostProps = +export type EvoTooltipHostProps = TooltipHostOwnProps & Omit< ComponentPropsWithRef, From 31bf9e4487037cb220feb8c9932ae6e9188f5a93 Mon Sep 17 00:00:00 2001 From: HenriqueLimas Date: Thu, 3 Sep 2026 13:23:25 -0700 Subject: [PATCH 05/11] feat(evo-tooltip): use a single hover-and-focus trigger Remove noHover so React and Marko tooltips always open on hover and focus. Co-authored-by: Cursor --- .changeset/add-evo-tooltip.md | 3 +- .../components/evo-tooltip.md | 1 + ...2026-09-03-gitignore-vitest-attachments.md | 12 ++++ ...3-tooltip-host-aria-expanded-on-textbox.md | 12 ++++ docs/adr/0007-tooltip-trigger-behavior.md | 34 ++++++++++++ .../tags/evo-tooltip/examples/no-hover.marko | 6 -- .../src/tags/evo-tooltip/index.marko | 12 ++-- .../src/tags/evo-tooltip/tooltip.stories.ts | 13 ----- .../src/tooltip/test/test.browser.tsx | 55 ++++++------------- .../evo-react/src/tooltip/tooltip.stories.tsx | 20 ------- packages/evo-react/src/tooltip/tooltip.tsx | 47 ++++------------ packages/evo-react/src/tooltip/types.ts | 2 - 12 files changed, 93 insertions(+), 124 deletions(-) create mode 100644 agent-feedback/items/2026-09-03-gitignore-vitest-attachments.md create mode 100644 agent-feedback/items/2026-09-03-tooltip-host-aria-expanded-on-textbox.md create mode 100644 docs/adr/0007-tooltip-trigger-behavior.md delete mode 100644 packages/evo-marko/src/tags/evo-tooltip/examples/no-hover.marko diff --git a/.changeset/add-evo-tooltip.md b/.changeset/add-evo-tooltip.md index d9175cb042a..8c681518fd5 100644 --- a/.changeset/add-evo-tooltip.md +++ b/.changeset/add-evo-tooltip.md @@ -1,5 +1,6 @@ --- "@evo-web/react": patch +"@evo-web/marko": patch --- -Add EvoTooltip component with an EvoButton host by default, and default EvoButton to `type="button"`. +Add EvoTooltip component with an EvoButton host by default, and default EvoButton to `type="button"`. Evo Tooltip now uses one hover-and-focus trigger model in both experimental packages, so the `noHover` option is removed. diff --git a/.claude/skills/evo-app-migrate-react/components/evo-tooltip.md b/.claude/skills/evo-app-migrate-react/components/evo-tooltip.md index d06e8eae5d4..6011daacdc4 100644 --- a/.claude/skills/evo-app-migrate-react/components/evo-tooltip.md +++ b/.claude/skills/evo-app-migrate-react/components/evo-tooltip.md @@ -62,6 +62,7 @@ function CustomEvoButton({ ref, href, ...rest }: CustomEvoButtonProps) { - `noFlip` → `flip` with inverted meaning. - `noShift` → `shift` with inverted meaning. - `notInline` → `inline` with inverted meaning. +- `noHover` is removed. `EvoTooltip` always opens on hover and on focus. Use `EvoInfotip` for content that should open on click instead. - `overlayStyle` is removed; positioning is managed by Floating UI. - `defaultOpen` is added for uncontrolled initial state. - The default placement is now `bottom`, matching evo-marko. The legacy default pointer placed the overlay on top. diff --git a/agent-feedback/items/2026-09-03-gitignore-vitest-attachments.md b/agent-feedback/items/2026-09-03-gitignore-vitest-attachments.md new file mode 100644 index 00000000000..535ff1a4acd --- /dev/null +++ b/agent-feedback/items/2026-09-03-gitignore-vitest-attachments.md @@ -0,0 +1,12 @@ +--- +type: dx +impact: low +effort: low +site: packages/evo-react/.gitignore +--- + +# Ignore vitest browser failure attachments + +Vitest browser mode writes failure screenshots to `packages/evo-react/.vitest-attachments/`, which no `.gitignore` covers, so every failing browser test leaves untracked binaries that are easy to commit by accident. The same `.gitignore` already lists `__screenshots__`, so the attachments directory looks like an oversight rather than a deliberate choice. Add `.vitest-attachments` next to `__screenshots__`, and check the other packages that run `vitest --browser` for the same gap. + +Check: run `npx vitest run --browser.headless src/tooltip` from `packages/evo-react` with a deliberately failing assertion, then `git status --short`. The attachments directory is listed as untracked. diff --git a/agent-feedback/items/2026-09-03-tooltip-host-aria-expanded-on-textbox.md b/agent-feedback/items/2026-09-03-tooltip-host-aria-expanded-on-textbox.md new file mode 100644 index 00000000000..70c75ce31ad --- /dev/null +++ b/agent-feedback/items/2026-09-03-tooltip-host-aria-expanded-on-textbox.md @@ -0,0 +1,12 @@ +--- +type: a11y +impact: med +effort: med +site: packages/evo-react/src/tooltip/tooltip-host.tsx › EvoTooltipHost +--- + +# Reconsider `aria-expanded` on non-button tooltip hosts + +`EvoTooltipHost` always sets `aria-expanded` on the component passed to `as`. With `as={EvoInput}` that attribute lands on the inner ``, because `EvoInput` forwards unknown props to the control while keeping `className` on the `.textbox` wrapper. A plain textbox announcing collapsed/expanded implies a combobox that does not exist, and ARIA 1.2 moved `aria-expanded` off `textbox` to `combobox`. The split also means `.tooltip__host` and the ARIA state end up on different elements for input hosts, which is easy to misread when writing tests. Decide whether a tooltip host needs `aria-expanded` at all, given the tooltip is described through `aria-describedby`, and scope the attribute to hosts where it is valid. Checked in `evo-react` only; `evo-marko`'s `` puts `aria-expanded` on the `<@host>` tag it renders, so confirm that case separately. + +Check: `npx vitest run --browser.headless src/tooltip/test/test.browser.tsx` from `packages/evo-react` and read the "opens when a nested input host receives focus" test. Asserting `aria-expanded` on `.tooltip__host` fails, while asserting it on the element returned by `getByPlaceholder("Email address")` passes. diff --git a/docs/adr/0007-tooltip-trigger-behavior.md b/docs/adr/0007-tooltip-trigger-behavior.md new file mode 100644 index 00000000000..13bdb489dda --- /dev/null +++ b/docs/adr/0007-tooltip-trigger-behavior.md @@ -0,0 +1,34 @@ +# 7. Tooltip Trigger Behavior + +**Date:** 2026-09-03 + +## Status + +Accepted + +## Context + +ARIA and MIND define a tooltip as content that appears when its host receives hover or focus. + +The `noHover` option added a focus-only mode. That mode treated pointer-induced focus inconsistently across host types and browsers. Click history is not relevant to tooltip visibility. The relevant conditions are whether the pointer is over the host or the host has focus. + +## Decision + +Remove `noHover` from `@evo-web/react` and `@evo-web/marko`. + +Evo Tooltip supports one trigger model: + +- Hover opens the tooltip. +- Focus opens the tooltip. +- Mouse leave or blur closes the tooltip. +- Escape closes the tooltip. + +The tooltip does not distinguish between keyboard focus and pointer-induced focus. Click has no separate tooltip behavior. + +Use Evo Infotip when content should open through an explicit click rather than hover or focus. + +## Consequences + +Consumers have one tooltip behavior across React and Marko. Existing `noHover` usages must remove the prop. Click-triggered disclosure should use Evo Infotip. + +Keyboard users still get tooltip content through focus. Pointer users get it through hover. diff --git a/packages/evo-marko/src/tags/evo-tooltip/examples/no-hover.marko b/packages/evo-marko/src/tags/evo-tooltip/examples/no-hover.marko deleted file mode 100644 index 2886d5f064b..00000000000 --- a/packages/evo-marko/src/tags/evo-tooltip/examples/no-hover.marko +++ /dev/null @@ -1,6 +0,0 @@ - - <@host> - - - Please choose the email address you use the most. - diff --git a/packages/evo-marko/src/tags/evo-tooltip/index.marko b/packages/evo-marko/src/tags/evo-tooltip/index.marko index c472d37363e..900a162c9d3 100644 --- a/packages/evo-marko/src/tags/evo-tooltip/index.marko +++ b/packages/evo-marko/src/tags/evo-tooltip/index.marko @@ -7,7 +7,6 @@ export interface Input extends Marko.HTML.Span { flip?: boolean; shift?: boolean; inline?: boolean; - noHover?: boolean; host: Marko.AttrTag< Marko.HTML.Span & { as?: Marko.Renderable; @@ -27,7 +26,6 @@ export interface Input extends Marko.HTML.Span { flip, shift, inline, - noHover, open: inputOpen, openChange, host, @@ -73,20 +71,18 @@ export interface Input extends Marko.HTML.Span { { + onMouseEnter(e, el) { clearTimeout(hoverTimeout); open = true; onMouseEnter && onMouseEnter(e, el); - }) - onMouseLeave=noHover ? onMouseLeave : - ((e, el) => { + } + onMouseLeave(e, el) { clearTimeout(hoverTimeout); hoverTimeout = setTimeout(() => { open = false; }, 300); onMouseLeave && onMouseLeave(e, el); - }) + } onFocusIn(e, el) { open = true; onFocusIn && onFocusIn(e, el); diff --git a/packages/evo-marko/src/tags/evo-tooltip/tooltip.stories.ts b/packages/evo-marko/src/tags/evo-tooltip/tooltip.stories.ts index 55482d4c9c4..6d94530a16b 100644 --- a/packages/evo-marko/src/tags/evo-tooltip/tooltip.stories.ts +++ b/packages/evo-marko/src/tags/evo-tooltip/tooltip.stories.ts @@ -3,8 +3,6 @@ import { type Meta } from "@storybook/marko"; import Tooltip, { type Input } from "./index.marko"; import DefaultTemplate from "./examples/default.marko"; import DefaultTemplateCode from "./examples/default.marko?raw"; -import NoHoverTemplate from "./examples/no-hover.marko"; -import NoHoverTemplateCode from "./examples/no-hover.marko?raw"; import PlacementsTemplate from "./examples/placements.marko"; import PlacementsTemplateCode from "./examples/placements.marko?raw"; import IconButtonHostTemplate from "./examples/icon-button-host.marko"; @@ -73,12 +71,6 @@ export default { description: "Enable inline positioning middleware", table: { defaultValue: { summary: "true" } }, }, - noHover: { - type: "boolean", - control: "boolean", - description: "Disable hover behavior (only focus will open the tooltip)", - table: { defaultValue: { summary: "false" } }, - }, host: { type: { name: "object", value: {}, required: true }, description: "The host element that triggers the tooltip.", @@ -125,11 +117,6 @@ export const Default = buildExtensionTemplate( DefaultTemplateCode, ); -export const NoHover = buildExtensionTemplate( - NoHoverTemplate, - NoHoverTemplateCode, -); - export const IconButtonHost = buildExtensionTemplate( IconButtonHostTemplate, IconButtonHostTemplateCode, diff --git a/packages/evo-react/src/tooltip/test/test.browser.tsx b/packages/evo-react/src/tooltip/test/test.browser.tsx index d37353a30c4..58d69f3bed2 100644 --- a/packages/evo-react/src/tooltip/test/test.browser.tsx +++ b/packages/evo-react/src/tooltip/test/test.browser.tsx @@ -11,15 +11,9 @@ import { EvoTooltipContent } from "../tooltip-content"; import { EvoTooltipHeading } from "../tooltip-heading"; import { EvoTooltipHost } from "../tooltip-host"; -function DefaultTooltip({ - noHover = false, - defaultOpen, -}: { - noHover?: boolean; - defaultOpen?: boolean; -}) { +function DefaultTooltip() { return ( - + Information Additional information @@ -38,12 +32,11 @@ describe("evo-tooltip", () => { }); it("renders an accessible host and tooltip relationship", async () => { - const screen = await render(); + const screen = await render(); const host = screen.getByRole("button", { name: "Information" }); await expect.element(host).toHaveClass("tooltip__host"); await expect.element(host).toHaveAttribute("type", "button"); - await expect.element(host).toHaveAttribute("aria-expanded", "false"); await user.tab(); await expect.element(host).toHaveAttribute("aria-expanded", "true"); @@ -69,21 +62,22 @@ describe("evo-tooltip", () => { }); }); - it("opens a no-hover tooltip only for keyboard-visible focus", async () => { - const screen = await render(); + it("opens on focus and closes when focus leaves", async () => { + const screen = await render(); const host = screen.getByRole("button", { name: "Information" }); - await user.hover(host); - await expect.element(host).toHaveAttribute("aria-expanded", "false"); - await user.tab(); await expect.element(host).toHaveFocus(); await expect.element(host).toHaveAttribute("aria-expanded", "true"); + + await user.tab(); + await expect.element(host).not.toHaveFocus(); + await expect.element(host).toHaveAttribute("aria-expanded", "false"); }); - it("does not open a no-hover tooltip when an input is clicked", async () => { + it("opens when a nested input host receives focus", async () => { const screen = await render( - + { , ); - const host = screen.getByPlaceholder("Email address"); + const input = screen.getByPlaceholder("Email address"); const tooltip = screen.container.querySelector('[role="tooltip"]')!; - await user.hover(host); - await expect.element(host).toHaveAttribute("aria-expanded", "false"); - expect(getComputedStyle(tooltip).display).toBe("none"); - - await user.click(host); - await expect.element(host).toHaveFocus(); - await expect.element(host).toHaveAttribute("aria-expanded", "false"); - expect(getComputedStyle(tooltip).display).toBe("none"); - }); + input.element().focus(); - it("closes a no-hover tooltip on touch pointer down", async () => { - const screen = await render(); - const host = screen.getByRole("button", { name: "Information" }); - - await expect.element(host).toHaveAttribute("aria-expanded", "true"); - host.element().dispatchEvent( - new PointerEvent("pointerdown", { - bubbles: true, - pointerType: "touch", - }), - ); - await expect.element(host).toHaveAttribute("aria-expanded", "false"); + await expect.element(input).toHaveFocus(); + await expect.element(input).toHaveAttribute("aria-expanded", "true"); + expect(getComputedStyle(tooltip).display).not.toBe("none"); }); it("closes a hover-opened tooltip when Escape is pressed", async () => { diff --git a/packages/evo-react/src/tooltip/tooltip.stories.tsx b/packages/evo-react/src/tooltip/tooltip.stories.tsx index 0ab34d6045f..a501d1a6130 100644 --- a/packages/evo-react/src/tooltip/tooltip.stories.tsx +++ b/packages/evo-react/src/tooltip/tooltip.stories.tsx @@ -4,7 +4,6 @@ import { EvoButton } from "../button/button"; import type { AnchorButtonProps } from "../button/types"; import { EvoIconButton } from "../icon-button"; import { EvoIconSettings24 } from "../icon/icons/settings-24"; -import { EvoInput } from "../input"; import { EvoTooltip } from "./tooltip"; import { EvoTooltipContent } from "./tooltip-content"; import { EvoTooltipHeading } from "./tooltip-heading"; @@ -85,10 +84,6 @@ import { control: "boolean", table: { defaultValue: { summary: "true" } }, }, - noHover: { - control: "boolean", - table: { defaultValue: { summary: "false" } }, - }, }, }; @@ -106,21 +101,6 @@ export const Default: Story = { ), }; -export const NoHover: Story = { - render: (args) => ( - - - - Please choose the email address you use the most. - - - ), -}; - export const IconButtonHost: Story = { render: (args) => ( diff --git a/packages/evo-react/src/tooltip/tooltip.tsx b/packages/evo-react/src/tooltip/tooltip.tsx index 81af4bf46ea..ec553a3f213 100644 --- a/packages/evo-react/src/tooltip/tooltip.tsx +++ b/packages/evo-react/src/tooltip/tooltip.tsx @@ -1,5 +1,5 @@ import { useCallback, useId, useRef } from "react"; -import type { FocusEvent, MouseEvent, PointerEvent } from "react"; +import type { FocusEvent, MouseEvent } from "react"; import classNames from "classnames"; import { TooltipProvider } from "./context"; import type { EvoTooltipProps } from "./types"; @@ -16,20 +16,17 @@ export function EvoTooltip({ flip = true, shift = true, inline = true, - noHover = false, className, children, onMouseEnter, onMouseLeave, onFocus, onBlur, - onPointerDown, ref, ...rest }: EvoTooltipProps) { const tooltipId = useId(); const hoverTimeoutRef = useRef | null>(null); - const modalityRef = useRef<"keyboard" | "pointer" | null>(null); const expander = useExpander({ open, defaultOpen, @@ -52,36 +49,30 @@ export function EvoTooltip({ const handleMouseEnter = useCallback( (event: MouseEvent) => { onMouseEnter?.(event); - if (!noHover) { - clearHoverTimeout(); - expander.setOpen(true); - } + clearHoverTimeout(); + expander.setOpen(true); }, - [clearHoverTimeout, expander.setOpen, noHover, onMouseEnter], + [clearHoverTimeout, expander.setOpen, onMouseEnter], ); const handleMouseLeave = useCallback( (event: MouseEvent) => { onMouseLeave?.(event); - if (!noHover) { - clearHoverTimeout(); - hoverTimeoutRef.current = setTimeout(() => { - expander.setOpen(false); - }, 300); - } + clearHoverTimeout(); + hoverTimeoutRef.current = setTimeout(() => { + expander.setOpen(false); + }, 300); }, - [clearHoverTimeout, expander.setOpen, noHover, onMouseLeave], + [clearHoverTimeout, expander.setOpen, onMouseLeave], ); const handleFocus = useCallback( (event: FocusEvent) => { onFocus?.(event); - if (!noHover || modalityRef.current !== "pointer") { - clearHoverTimeout(); - expander.setOpen(true); - } + clearHoverTimeout(); + expander.setOpen(true); }, - [clearHoverTimeout, expander.setOpen, noHover, onFocus], + [clearHoverTimeout, expander.setOpen, onFocus], ); const handleBlur = useCallback( @@ -95,18 +86,6 @@ export function EvoTooltip({ [clearHoverTimeout, expander.setOpen, onBlur], ); - const handlePointerDown = useCallback( - (event: PointerEvent) => { - onPointerDown?.(event); - modalityRef.current = "pointer"; - if (noHover) { - clearHoverTimeout(); - expander.setOpen(false); - } - }, - [clearHoverTimeout, expander.setOpen, noHover, onPointerDown], - ); - const [rootRef] = useRefTee(ref, null); const lifecycleRef = useCallback( (root: HTMLSpanElement | null) => { @@ -117,7 +96,6 @@ export function EvoTooltip({ const ownerDocument = root.ownerDocument; const handleKeyDown = (event: KeyboardEvent) => { - modalityRef.current = "keyboard"; if (expander.open && (event.key === "Escape" || event.key === "Esc")) { clearHoverTimeout(); expander.setOpen(false); @@ -157,7 +135,6 @@ export function EvoTooltip({ onMouseLeave={handleMouseLeave} onFocus={handleFocus} onBlur={handleBlur} - onPointerDown={handlePointerDown} > {children} diff --git a/packages/evo-react/src/tooltip/types.ts b/packages/evo-react/src/tooltip/types.ts index 98aec3be7d2..f4796b4fda9 100644 --- a/packages/evo-react/src/tooltip/types.ts +++ b/packages/evo-react/src/tooltip/types.ts @@ -37,8 +37,6 @@ export type EvoTooltipProps = ComponentProps<"span"> & { shift?: boolean; /** Uses inline positioning for hosts that wrap across multiple lines. Defaults to `true`. */ inline?: boolean; - /** Disables hover and opens only for keyboard-visible focus. Defaults to `false`. */ - noHover?: boolean; }; type TooltipHostOwnProps = { From 334acbeaad9a190365caf19df36e09db9423b835 Mon Sep 17 00:00:00 2001 From: HenriqueLimas Date: Thu, 3 Sep 2026 15:37:12 -0700 Subject: [PATCH 06/11] chore: keep generated icon sprite prettier-stable for pre-push The merge build rewrites src/tags/master-icons.marko. Commit that output so husky can push. Co-authored-by: Cursor --- .../2026-09-03-eslint-lints-local-storybook-site.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 agent-feedback/items/2026-09-03-eslint-lints-local-storybook-site.md diff --git a/agent-feedback/items/2026-09-03-eslint-lints-local-storybook-site.md b/agent-feedback/items/2026-09-03-eslint-lints-local-storybook-site.md new file mode 100644 index 00000000000..eab8ce7a110 --- /dev/null +++ b/agent-feedback/items/2026-09-03-eslint-lints-local-storybook-site.md @@ -0,0 +1,12 @@ +--- +type: dx +impact: med +effort: low +site: packages/evo-marko/eslint.config.mjs › globalIgnores +--- + +# Ignore local Storybook `_site` in ESLint + +`packages/evo-marko` gitignores `_site`, but `eslint.config.mjs` `globalIgnores` does not list it. After `npm run build:storybook` in that package, `eslint .` (via `npm run lint` / the husky pre-push `npm run build`) lints generated `sb-manager` files and fails on missing plugin rules. The same `_site` output exists for other Storybook packages. Add `_site` to ESLint ignores next to `dist` and `node_modules`. + +Check: from `packages/evo-marko`, run `npm run build:storybook`, then `npx eslint packages/evo-marko/_site/sb-manager/runtime.js` from the package directory (or `npm run lint -w @evo-web/marko`). Lint reports missing-rule errors on the generated file. After adding `_site` to `globalIgnores`, the same command ignores it. From 312844395bd499139fca46e188cb09a8f5c05fbf Mon Sep 17 00:00:00 2001 From: HenriqueLimas Date: Thu, 3 Sep 2026 15:40:44 -0700 Subject: [PATCH 07/11] chore: stop Prettier rewriting the generated icon sprite The Skin build copies icons.svg into master-icons.marko. Prettier then compact-formats that copy, so the next build dirties the tree and pre-push fails. Co-authored-by: Cursor --- .prettierignore | 3 + src/tags/master-icons.marko | 8019 +++++++++++++++++++++++------------ 2 files changed, 5376 insertions(+), 2646 deletions(-) diff --git a/.prettierignore b/.prettierignore index 8d35d1f9eec..b236e9b007a 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,2 +1,5 @@ # Generated changelogs are managed by Changesets packages/*/CHANGELOG.md + +# Copied from packages/skin/src/svg/icons.svg by the Skin build +src/tags/master-icons.marko diff --git a/src/tags/master-icons.marko b/src/tags/master-icons.marko index dba71089016..c106dc4f631 100644 --- a/src/tags/master-icons.marko +++ b/src/tags/master-icons.marko @@ -3,89 +3,115 @@ + d="M6.75 1.75a.75.75 0 0 0-1.5 0v3.5h-3.5a.75.75 0 0 0 0 1.5h3.5v3.5a.75.75 0 0 0 1.5 0v-3.5h3.5a.75.75 0 0 0 0-1.5h-3.5v-3.5Z" + /> - + - + - + - + clip-rule="evenodd" + /> + - + - + - + - + - + - + clip-rule="evenodd" + /> + + clip-rule="evenodd" + /> - + - + clip-rule="evenodd" + /> + + clip-rule="evenodd" + /> - + - + clip-rule="evenodd" + /> + + clip-rule="evenodd" + /> - + - + clip-rule="evenodd" + /> + + clip-rule="evenodd" + /> + rx="1.5" + /> - + clip-rule="evenodd" + /> + + clip-rule="evenodd" + /> + rx="1.5" + /> - + clip-rule="evenodd" + /> + + clip-rule="evenodd" + /> + rx="1.5" + /> - + clip-rule="evenodd" + /> + + clip-rule="evenodd" + /> + rx="1.5" + /> - + clip-rule="evenodd" + /> + + clip-rule="evenodd" + /> + stroke-width="1" + /> + fill="#000" + /> + stroke-width="1" + /> + fill="#000" + /> + stroke-width="1" + /> + fill="#000" + /> + stroke-width="1" + /> + fill="#000" + /> - + + d="M54.813 8.631c-.231.226.063.781-.239.948-.118.066-.199.046-.313-.007-.129-.06-.717-.394-.783-.48-.126-.163-.062-.613-.006-.811.244-.866 1.259-1.344 2.082-.96 1.016.613 2.119 1.148 3.12 1.778 1.027.646 1.114 1.894.133 2.623-1.069.54-2.11 1.311-3.18 1.828-.992.48-2.131-.159-2.214-1.257-.025-.328.084-.695-.43-.603l-2.856 1.651a.3.3 0 0 0 .02.454L53 15.43c.586.13.352-.51.423-.817.041-.18.234-.251.398-.2.118.037.587.32.71.401.128.087.175.122.19.29.114 1.288-1.132 2.099-2.28 1.518-1.104-.56-2.195-1.298-3.274-1.91-.733-.647-.69-1.818.115-2.39.973-.69 2.228-1.195 3.232-1.864.95-.48 2.119.163 2.205 1.227.017.208-.066.452.12.599.106.083.212.085.33.026l2.794-1.606c.21-.163.172-.41-.053-.533l-2.783-1.594a.324.324 0 0 0-.313.056Zm-38.634-.214c.011-.121.076-.347.126-.461.343-.773 1.377-.65 2.073-.66l.022.969c.003.018-.022.054-.033.054h-.48c-.009 0-.158.05-.178.06-.1.053-.224.255-.224.365v.664h1.677V8.145h1.274l.032.033v1.23h.795c.01 0 .036.036.033.054v1.046c.003.018-.022.054-.033.054h-.795v2.472c0 .044.057.197.087.24.045.063.198.163.272.163h.436l.032.033v1.11c-.019.031-.043.03-.075.034-.358.042-1.159-.011-1.477-.179-.328-.172-.581-.643-.581-1.009v-2.864h-1.677v4.018l-.033.033H16.18v-4.05h-.708c-.01 0-.036-.037-.033-.055V9.462c-.003-.018.022-.054.033-.054h.708c.022-.319-.03-.677 0-.99Zm16.439 5.586v2.69l-.033.033h-1.263V9.408h1.252v.653c1.158-1.285 3.199-.795 3.88.726.498 1.112.26 2.498-.667 3.304-.895.777-2.354.835-3.17-.088Zm1.17-3.457c-1.605.181-1.572 2.79.039 2.934 2.09.188 2.07-3.171-.038-2.934Zm-20.189 4.067c-.062-.019-.011-.134-.01-.184.005-.156-.005-.313-.001-.47-.026-.028-.26.233-.295.261-.644.535-1.596.587-2.348.26-1.487-.648-1.904-2.625-1.09-3.96.71-1.162 2.356-1.634 3.46-.72.032.027.247.268.273.24-.004-.15.005-.3 0-.448 0-.037-.048-.184.01-.184h1.253v5.205h-1.252Zm-1.649-4.066c-1.606.192-1.572 2.813.08 2.934 2.07.152 2.021-3.187-.08-2.934Zm29.367 4.066c-.061-.019-.011-.134-.01-.184.005-.156-.005-.313 0-.47-.072-.005-.093.085-.131.12-1.11 1.047-2.895.674-3.632-.614-.526-.92-.502-2.12.074-3.01.728-1.127 2.35-1.543 3.427-.644.031.025.235.258.261.228-.004-.148.006-.298.002-.447-.002-.037-.05-.184.01-.184h1.252v5.205h-1.252Zm-1.648-4.066c-1.591.19-1.569 2.787.06 2.933 2.083.188 2.06-3.188-.06-2.934Zm-12.582 1.802h-3.963c.099 1.349 1.89 1.614 2.559.522H27c-.6 2.293-4.14 2.453-5.034.276-.825-2.012.684-4.075 2.865-3.801 1.497.188 2.442 1.529 2.256 3.003Z" + /> + fill="#B2FCE5" + /> + d="m44.562 9.408 1.35 3.027 1.48-3.027h1.415l-3.527 7.318h-1.426l.068-.204 1.228-2.543-2.058-4.57h1.47ZM30.68 9.43v1.329c-.407-.204-.944-.386-1.328-.033-.16.146-.304.504-.304.719v3.169H27.74V9.409h1.263v.5c.378-.542 1.063-.721 1.677-.479Z" + /> + d="M6.682 4.104a3.358 3.358 0 0 1-2.578 2.578l-2.467.53c-.85.182-.85 1.394 0 1.576l2.467.53a3.358 3.358 0 0 1 2.578 2.578l.53 2.467c.182.85 1.394.85 1.576 0l.53-2.467a3.358 3.358 0 0 1 2.578-2.578l2.467-.53c.85-.182.85-1.394 0-1.576l-2.467-.53a3.358 3.358 0 0 1-2.578-2.578l-.53-2.467c-.182-.85-1.394-.85-1.576 0l-.53 2.467ZM8 6.145A5.364 5.364 0 0 1 6.145 8 5.364 5.364 0 0 1 8 9.855 5.364 5.364 0 0 1 9.855 8 5.364 5.364 0 0 1 8 6.145Z" + /> + d="M10 6.303A6.32 6.32 0 0 1 6.303 10 6.32 6.32 0 0 1 10 13.697 6.32 6.32 0 0 1 13.697 10 6.32 6.32 0 0 1 10 6.303Zm1.013-4.484c-.234-1.092-1.792-1.092-2.026 0L8.306 4.99A4.317 4.317 0 0 1 4.99 8.306l-3.172.681c-1.092.234-1.092 1.792 0 2.026l3.172.681a4.317 4.317 0 0 1 3.315 3.315l.681 3.172c.234 1.092 1.792 1.092 2.026 0l.681-3.172a4.317 4.317 0 0 1 3.315-3.315l3.172-.681c1.092-.234 1.092-1.792 0-2.026l-3.172-.681a4.317 4.317 0 0 1-3.315-3.315l-.681-3.172Z" + /> + d="m12 5.76-.115.538a7.276 7.276 0 0 1-5.587 5.587L5.76 12l.537.115a7.276 7.276 0 0 1 5.587 5.587l.115.537.115-.537a7.276 7.276 0 0 1 5.587-5.587L18.24 12l-.537-.115a7.276 7.276 0 0 1-5.587-5.587L12 5.76ZM13.238 2c-.286-1.334-2.19-1.333-2.476 0l-.833 3.878a5.277 5.277 0 0 1-4.051 4.051L2 10.762c-1.335.286-1.334 2.19 0 2.476l3.877.833a5.277 5.277 0 0 1 4.051 4.051L10.762 22c.286 1.334 2.19 1.334 2.476 0l.833-3.878a5.277 5.277 0 0 1 4.051-4.051L22 13.238c1.334-.286 1.334-2.19 0-2.476l-3.878-.833a5.277 5.277 0 0 1-4.051-4.051L13.238 2Z" + /> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + fill="url(#ref-ai-spectrum-16-colored)" + /> - - - - - + gradientUnits="userSpaceOnUse" + > + + + + + @@ -331,7 +417,8 @@ fill-rule="evenodd" clip-rule="evenodd" d="M10 6.303A6.32 6.32 0 0 1 6.303 10 6.32 6.32 0 0 1 10 13.697 6.32 6.32 0 0 1 13.697 10 6.32 6.32 0 0 1 10 6.303Zm1.013-4.484c-.234-1.092-1.792-1.092-2.026 0L8.306 4.99A4.317 4.317 0 0 1 4.99 8.306l-3.172.681c-1.092.234-1.092 1.792 0 2.026l3.172.681a4.317 4.317 0 0 1 3.315 3.315l.681 3.172c.234 1.092 1.792 1.092 2.026 0l.681-3.172a4.317 4.317 0 0 1 3.315-3.315l3.172-.681c1.092-.234 1.092-1.792 0-2.026l-3.172-.681a4.317 4.317 0 0 1-3.315-3.315l-.681-3.172Z" - fill="url(#ref-ai-spectrum-20-colored)"/> + fill="url(#ref-ai-spectrum-20-colored)" + /> - - - - - + gradientUnits="userSpaceOnUse" + > + + + + + @@ -352,7 +440,8 @@ fill-rule="evenodd" clip-rule="evenodd" d="m12 5.76-.115.538a7.276 7.276 0 0 1-5.587 5.587L5.76 12l.537.115a7.276 7.276 0 0 1 5.587 5.587l.115.537.115-.537a7.276 7.276 0 0 1 5.587-5.587L18.24 12l-.537-.115a7.276 7.276 0 0 1-5.587-5.587L12 5.76ZM13.238 2c-.286-1.334-2.19-1.333-2.476 0l-.833 3.878a5.277 5.277 0 0 1-4.051 4.051L2 10.762c-1.335.286-1.334 2.19 0 2.476l3.877.833a5.277 5.277 0 0 1 4.051 4.051L10.762 22c.286 1.334 2.19 1.334 2.476 0l.833-3.878a5.277 5.277 0 0 1 4.051-4.051L22 13.238c1.334-.286 1.334-2.19 0-2.476l-3.878-.833a5.277 5.277 0 0 1-4.051-4.051L13.238 2Z" - fill="url(#ref-ai-spectrum-24-colored)"/> + fill="url(#ref-ai-spectrum-24-colored)" + /> - - - - - + gradientUnits="userSpaceOnUse" + > + + + + + + fill="url(#ref-ai-spectrum-filled-16-colored)" + /> - - - - - + gradientUnits="userSpaceOnUse" + > + + + + + + fill="url(#ref-ai-spectrum-filled-20-colored)" + /> - - - - - + gradientUnits="userSpaceOnUse" + > + + + + + + fill="url(#ref-ai-spectrum-filled-24-colored)" + /> - - - - - + gradientUnits="userSpaceOnUse" + > + + + + + @@ -430,7 +526,8 @@ fill-rule="evenodd" clip-rule="evenodd" d="M8 4.959A4.86 4.86 0 0 1 4.959 8 4.859 4.859 0 0 1 8 11.041 4.859 4.859 0 0 1 11.041 8 4.859 4.859 0 0 1 8 4.959Zm.788-3.322c-.182-.85-1.394-.85-1.576 0l-.53 2.467a3.358 3.358 0 0 1-2.578 2.578l-2.467.53c-.85.182-.85 1.394 0 1.576l2.467.53a3.358 3.358 0 0 1 2.578 2.578l.53 2.467c.182.85 1.394.85 1.576 0l.53-2.467a3.358 3.358 0 0 1 2.578-2.578l2.467-.53c.85-.182.85-1.394 0-1.576l-2.467-.53a3.358 3.358 0 0 1-2.578-2.578l-.53-2.467Z" - fill="url(#ref-ai-spectrum-thin-16-colored)"/> + fill="url(#ref-ai-spectrum-thin-16-colored)" + /> - - - - - + gradientUnits="userSpaceOnUse" + > + + + + + - + - + - + + d="M8 4.959A4.859 4.859 0 0 1 4.959 8 4.859 4.859 0 0 1 8 11.041 4.859 4.859 0 0 1 11.041 8 4.859 4.859 0 0 1 8 4.959Zm.788-3.322c-.182-.85-1.394-.85-1.576 0l-.53 2.467a3.358 3.358 0 0 1-2.578 2.578l-2.467.53c-.85.182-.85 1.394 0 1.576l2.467.53a3.358 3.358 0 0 1 2.578 2.578l.53 2.467c.182.85 1.394.85 1.576 0l.53-2.467a3.358 3.358 0 0 1 2.578-2.578l2.467-.53c.85-.182.85-1.394 0-1.576l-2.467-.53a3.358 3.358 0 0 1-2.578-2.578l-.53-2.467Z" + /> + d="M2.75 4.125a1.375 1.375 0 1 1 2.75 0 1.375 1.375 0 0 1-2.75 0ZM4.125.75a3.375 3.375 0 1 0 0 6.75 3.375 3.375 0 0 0 0-6.75Zm4.625 2c0-.966.784-1.75 1.75-1.75h2.75c.966 0 1.75.784 1.75 1.75V5.5a1.75 1.75 0 0 1-1.75 1.75H10.5A1.75 1.75 0 0 1 8.75 5.5V2.75ZM13 3h-2.25v2.25H13V3Zm-1.993 7.012.246-1.146c.141-.657 1.08-.657 1.22 0l.246 1.146a1.31 1.31 0 0 0 1.006 1.005l1.145.246c.658.141.658 1.08 0 1.22l-1.145.246a1.31 1.31 0 0 0-1.005 1.005l-.247 1.146c-.14.657-1.079.657-1.22 0l-.246-1.146a1.309 1.309 0 0 0-1.005-1.005l-1.146-.246c-.657-.14-.657-1.079 0-1.22l1.146-.246a1.309 1.309 0 0 0 1.005-1.005ZM2.75 8.75A1.75 1.75 0 0 0 1 10.5v2.75c0 .966.784 1.75 1.75 1.75H5.5a1.75 1.75 0 0 0 1.75-1.75V10.5A1.75 1.75 0 0 0 5.5 8.75H2.75ZM3 13v-2.25h2.25V13H3Z" + /> + d="M2.5 5a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0ZM5 .5a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9ZM11 3a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V3Zm6 0h-4v4h4V3Zm-3.095 9.7.303-1.41c.183-.853 1.402-.853 1.585 0l.303 1.41c.13.604.6 1.076 1.204 1.205l1.41.303c.854.183.854 1.402 0 1.585l-1.41.303a1.569 1.569 0 0 0-1.204 1.204l-.303 1.41c-.183.854-1.402.854-1.585 0l-.303-1.41a1.569 1.569 0 0 0-1.204-1.204l-1.41-.303c-.854-.183-.854-1.402 0-1.585l1.41-.303a1.569 1.569 0 0 0 1.204-1.204ZM3 11a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2H3Zm0 6v-4h4v4H3Z" + /> + d="M3.5 6.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-5a5 5 0 1 0 0 10 5 5 0 0 0 0-10Zm9.811 13.422.34-1.586c.197-.914 1.502-.914 1.698 0l.34 1.586c.15.696.694 1.24 1.39 1.39l1.586.34c.914.196.914 1.5 0 1.697l-1.587.34a1.81 1.81 0 0 0-1.388 1.39l-.34 1.586c-.197.914-1.502.914-1.698 0l-.34-1.587a1.809 1.809 0 0 0-1.39-1.388l-1.586-.34c-.914-.197-.914-1.502 0-1.698l1.586-.34a1.809 1.809 0 0 0 1.39-1.39ZM2 15.25A2.25 2.25 0 0 1 4.25 13h4.5A2.25 2.25 0 0 1 11 15.25v4.5A2.25 2.25 0 0 1 8.75 22h-4.5A2.25 2.25 0 0 1 2 19.75v-4.5ZM4.25 15a.25.25 0 0 0-.25.25v4.5c0 .138.112.25.25.25h4.5a.25.25 0 0 0 .25-.25v-4.5a.25.25 0 0 0-.25-.25h-4.5Zm11-13A2.25 2.25 0 0 0 13 4.25v4.5A2.25 2.25 0 0 0 15.25 11h4.5A2.25 2.25 0 0 0 22 8.75v-4.5A2.25 2.25 0 0 0 19.75 2h-4.5ZM15 4.25a.25.25 0 0 1 .25-.25h4.5a.25.25 0 0 1 .25.25v4.5a.25.25 0 0 1-.25.25h-4.5a.25.25 0 0 1-.25-.25v-4.5Z" + /> + stroke-width="1" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#1677FF" + /> + stroke-width="1" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#1677FF" + /> + stroke-width="1" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#1677FF" + /> + stroke-width="1" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#3F3B3A" + /> + fill="#1677FF" + /> + stroke-width="1" + /> + fill="#363533" + /> + fill="#00AEEF" + /> + stroke-width="1" + /> + fill="#363533" + /> + fill="#00AEEF" + /> + stroke-width="1" + /> + fill="#363533" + /> + fill="#00AEEF" + /> + stroke-width="1" + /> + fill="#363533" + /> + fill="#00AEEF" + /> - - + + + fill="#fff" + /> - - + + + fill="#fff" + /> - - + + + fill="#fff" + /> - - + + + fill="#fff" + /> - + + fill="url(#ref-apple-music-24-colored)" + /> + fill="#fff" + /> - - + gradientUnits="userSpaceOnUse" + > + + @@ -770,10 +931,12 @@ rx="1.5" fill="#fff" stroke="#000" - stroke-width="1"/> + stroke-width="1" + /> + fill="#000" + /> + stroke-width="1" + /> + fill="#000" + /> + stroke-width="1" + /> + fill="#000" + /> + stroke-width="1" + /> + fill="#000" + /> + clip-rule="evenodd" + /> - + + clip-rule="evenodd" + /> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + clip-rule="evenodd" + /> - + - + + fill="#191919" + /> + d="M1 14a1 1 0 0 0 1 1h4a1 1 0 1 0 0-2H4.414l2.793-2.793a1 1 0 0 0-1.414-1.414L3 11.586V10a1 1 0 0 0-2 0v4Zm7.793-6.793a1 1 0 0 0 1.414 0L13 4.414V6a1 1 0 1 0 2 0V2a1 1 0 0 0-1-1h-4a1 1 0 1 0 0 2h1.586L8.793 5.793a1 1 0 0 0 0 1.414Z" + /> + d="M1 22a1 1 0 0 0 1 1h7a1 1 0 1 0 0-2H4.414l6.293-6.293a1 1 0 0 0-1.414-1.414L3 19.586V15a1 1 0 1 0-2 0v7Zm12.293-11.293a1 1 0 0 0 1.414 0L21 4.414V9a1 1 0 1 0 2 0V2a1 1 0 0 0-1-1h-7a1 1 0 1 0 0 2h4.586l-6.293 6.293a1 1 0 0 0 0 1.414Z" + /> - + + clip-rule="evenodd" + /> - + + clip-rule="evenodd" + /> - - + + - + - + + clip-rule="evenodd" + /> - + - + - + - + - + - + - + + d="M2 1a1 1 0 0 1 1-1h1.586A2 2 0 0 1 6 .586L7.414 2h1.172L10 .586A2 2 0 0 1 11.414 0H13a1 1 0 1 1 0 2h-1.586l-.957.957.73 1.043h1.195a2 2 0 0 1 1.789 1.106l.715 1.43c.34.648-.166 1.482-.91 1.464-.975 0-1.905.083-2.796.528l-.295.148-.303 1.511.52.39A2.251 2.251 0 0 1 13.25 9h.5A2.25 2.25 0 0 1 16 11.25v2.5A2.25 2.25 0 0 1 13.75 16h-.5A2.25 2.25 0 0 1 11 13.75V13l-.856-.642a2.22 2.22 0 0 1-4.287 0L5 13v.75A2.25 2.25 0 0 1 2.75 16h-.5A2.25 2.25 0 0 1 0 13.75v-2.5A2.25 2.25 0 0 1 2.25 9h.5c1.008 0 1.861.663 2.148 1.577l.52-.39-.303-1.511-.295-.148C3.93 8.083 2.999 8 2.024 8c-.747.018-1.26-.812-.905-1.473l.71-1.421A2 2 0 0 1 3.62 4h1.36l.662-.945L4.586 2H3a1 1 0 0 1-1-1Zm1 11.5v-1.25a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25V12.5Zm10-1.25a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25v2.5a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25v-2.5Zm-.582-5.178L12.382 6h-1.715a1 1 0 0 1-.82-.426l-1.105-1.58L7.421 4 6.319 5.574A1 1 0 0 1 5.5 6H3.62l-.037.072a7 7 0 0 1 2.132.667l.296.148a2 2 0 0 1 1.067 1.396l.708 3.54a.22.22 0 0 0 .43 0l.709-3.54A2 2 0 0 1 9.99 6.888l.296-.148a7 7 0 0 1 2.132-.667Z" + /> - + + d="M4 1a1 1 0 0 0 0 2h2.379a.5.5 0 0 1 .353.146l1.981 1.982L7.465 7H5.618A2 2 0 0 0 3.83 8.106l-.71 1.42a1.03 1.03 0 0 0 .067 1.055c.188.263.515.427.837.419a7.472 7.472 0 0 1 3.319.789c.383.191.741.401.804.873l.268 2.013L7 15.382V14.5A2.5 2.5 0 0 0 4.5 12h-1A2.5 2.5 0 0 0 1 14.5v6A2.5 2.5 0 0 0 3.5 23h1A2.5 2.5 0 0 0 7 20.5v-2.882l1.694-.847.083.625A3 3 0 0 0 11.751 20h.498a3 3 0 0 0 2.974-2.604l.083-.625 1.694.847V20.5a2.5 2.5 0 0 0 2.5 2.5h1a2.5 2.5 0 0 0 2.5-2.5v-6a2.5 2.5 0 0 0-2.5-2.5h-1a2.5 2.5 0 0 0-2.5 2.5v.882l-1.415-.707.269-2.013c.063-.472.421-.682.804-.873A7.471 7.471 0 0 1 19.977 11c.379.01.74-.206.913-.543a1.03 1.03 0 0 0-.003-.92l-.716-1.431A2 2 0 0 0 18.382 7h-1.847l-1.248-1.873 1.98-1.98A.5.5 0 0 1 17.622 3H20a1 1 0 1 0 0-2h-2.379a2.5 2.5 0 0 0-1.767.732l-2.122 2.122A.5.5 0 0 1 13.38 4h-2.76a.5.5 0 0 1-.353-.146L8.146 1.732A2.5 2.5 0 0 0 6.38 1H4Zm1.554 8.128L5.618 9H8a1 1 0 0 0 .832-.445l1.704-2.556h2.928l1.704 2.556A1 1 0 0 0 16 9h2.382l.064.128c-1.045.174-2.02.541-2.964 1.013a2.961 2.961 0 0 0-1.61 2.257l-.632 4.734a1 1 0 0 1-.991.868h-.498a1 1 0 0 1-.991-.868l-.631-4.734a2.961 2.961 0 0 0-1.611-2.257c-.944-.472-1.919-.839-2.964-1.013ZM5 14.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-6Zm14 6v-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5Z" + /> - + - + d="M6.4 2.125a1.1 1.1 0 0 1 1.6.98v9.794a1.1 1.1 0 0 1-1.6.98L2.326 11.8a4.265 4.265 0 0 1 .002-7.598L6.4 2.125ZM6 4.574 3.237 5.983a2.265 2.265 0 0 0-.002 4.035L6 11.43V4.574Z" + /> + + d="M12.073 2.206a1 1 0 0 1 1.302-.552 9.003 9.003 0 0 1 0 16.691 1 1 0 0 1-.75-1.854 7.002 7.002 0 0 0 0-12.983 1 1 0 0 1-.552-1.302Zm.177 10.962c0 .395.408.65.725.416 1.083-.8 1.775-2.123 1.775-3.585 0-1.461-.692-2.785-1.775-3.585-.317-.234-.725.021-.725.416v6.339ZM13.084 10v.045-.09V10Zm-8.86-2.24L8 5.332v9.337l-3.777-2.428a2.663 2.663 0 0 1 0-4.48ZM10 3.72a1.12 1.12 0 0 0-1.726-.942l-5.132 3.3a4.663 4.663 0 0 0 0 7.845l5.132 3.3A1.12 1.12 0 0 0 10 16.28V3.72Z" + /> + d="M15.063 2.65a1 1 0 0 1 1.287-.587C20.254 3.52 23 7.465 23 12c0 4.535-2.746 8.48-6.65 9.937a1 1 0 0 1-.7-1.874C18.737 18.912 21 15.738 21 12c0-3.738-2.263-6.911-5.35-8.063a1 1 0 0 1-.587-1.286ZM15 15.804c0 .474.49.78.87.499C17.17 15.342 18 13.754 18 12c0-1.753-.831-3.342-2.13-4.301-.38-.282-.87.025-.87.498v7.606ZM4.655 9.05 10 5.783v12.434l-5.345-3.266a3.458 3.458 0 0 1 0-5.901ZM12 4.258c0-.894-.979-1.443-1.741-.977L3.612 7.343a5.458 5.458 0 0 0 0 9.314l6.647 4.062A1.144 1.144 0 0 0 12 19.743V4.258Z" + /> - + d="M8 3.103a1.1 1.1 0 0 0-1.6-.98L2.327 4.201a4.265 4.265 0 0 0 0 7.599L6.4 13.877a1.1 1.1 0 0 0 1.6-.98V3.103Zm-4.764 2.88L6 4.572v6.855l-2.764-1.41a2.265 2.265 0 0 1 0-4.036Z" + /> + - + + d="M1.746 1.884a1 1 0 0 1 1.41-.097l2.856 2.486L8.274 2.82A1.12 1.12 0 0 1 10 3.76v3.986l2.25 1.96V6.87c0-.394.408-.65.725-.415 1.083.8 1.775 2.123 1.775 3.585 0 .559-.101 1.098-.287 1.595l1.79 1.558a7.003 7.003 0 0 0-3.627-9.644 1 1 0 1 1 .75-1.854 9.003 9.003 0 0 1 4.421 12.843l.86.749a1 1 0 0 1-1.314 1.508l-15.5-13.5a1 1 0 0 1-.097-1.41Zm13.073 14.621a1 1 0 0 1-.375 1.364c-.343.195-.7.368-1.069.517a1 1 0 0 1-.75-1.854c.286-.116.564-.25.83-.402a1 1 0 0 1 1.364.375ZM2.275 6.836a1 1 0 1 1 1.453 1.375 2.663 2.663 0 0 0 .495 4.07L8 14.71V12.8a1 1 0 0 1 2 0v3.522a1.12 1.12 0 0 1-1.726.942l-5.132-3.3a4.663 4.663 0 0 1-.867-7.127Z" + /> + d="M16.35 2.063a1 1 0 0 0-.7 1.874C18.737 5.09 21 8.262 21 12c0 1.462-.347 2.84-.956 4.046l-2.423-2.04c.245-.622.379-1.3.379-2.006 0-1.753-.831-3.342-2.13-4.301-.38-.282-.87.025-.87.498V11.8l-3-2.527V4.257c0-.893-.978-1.442-1.74-.976l.518.85-.519-.85-3.114 1.903-3.5-2.949a1 1 0 0 0-1.29 1.53l19 16a1 1 0 1 0 1.29-1.53l-1.037-.872A10.942 10.942 0 0 0 23 12c0-4.535-2.746-8.48-6.65-9.937ZM4.248 8.001a1 1 0 0 1-.085 1.412 3.458 3.458 0 0 0 .492 5.537L10 18.217V15a1 1 0 1 1 2 0v4.742c0 .894-.979 1.443-1.741.977l-6.647-4.063a5.458 5.458 0 0 1-.775-8.74 1 1 0 0 1 1.411.085Zm14.104 11.744a1 1 0 0 1-.329 1.375 9.642 9.642 0 0 1-1.673.818 1 1 0 0 1-.7-1.874 7.64 7.64 0 0 0 1.327-.648 1 1 0 0 1 1.375.329Z" + /> - + + clip-rule="evenodd" + /> + d="M2.067 6.647a3.756 3.756 0 0 1-.875 2.113A4.98 4.98 0 0 0 0 12a4.98 4.98 0 0 0 1.191 3.24 3.75 3.75 0 0 1 .876 2.113 4.98 4.98 0 0 0 1.448 3.132 4.98 4.98 0 0 0 3.133 1.449c.77.061 1.524.374 2.113.875A4.98 4.98 0 0 0 12 24a4.98 4.98 0 0 0 3.24-1.191 3.756 3.756 0 0 1 2.113-.875 4.98 4.98 0 0 0 3.133-1.449 4.98 4.98 0 0 0 1.448-3.133 3.76 3.76 0 0 1 .875-2.113A4.98 4.98 0 0 0 24 12a4.98 4.98 0 0 0-1.19-3.239 3.756 3.756 0 0 1-.876-2.113 4.98 4.98 0 0 0-1.448-3.133 4.98 4.98 0 0 0-3.133-1.449 3.756 3.756 0 0 1-2.114-.875A4.98 4.98 0 0 0 12 0a4.98 4.98 0 0 0-3.24 1.191 3.756 3.756 0 0 1-2.112.875 4.98 4.98 0 0 0-3.133 1.449 4.98 4.98 0 0 0-1.448 3.132ZM4.93 4.929a2.98 2.98 0 0 0-.87 1.878 5.756 5.756 0 0 1-1.346 3.25A2.98 2.98 0 0 0 2 12c0 .743.268 1.419.714 1.943a5.756 5.756 0 0 1 1.346 3.25 2.98 2.98 0 0 0 .87 1.878 2.98 2.98 0 0 0 1.878.869 5.76 5.76 0 0 1 3.25 1.346A2.98 2.98 0 0 0 12 22a2.98 2.98 0 0 0 1.943-.714 5.756 5.756 0 0 1 3.25-1.346 2.98 2.98 0 0 0 1.879-.869 2.98 2.98 0 0 0 .869-1.879 5.756 5.756 0 0 1 1.345-3.25A2.98 2.98 0 0 0 22 12a2.98 2.98 0 0 0-.714-1.943 5.756 5.756 0 0 1-1.346-3.25 2.98 2.98 0 0 0-.869-1.878 2.98 2.98 0 0 0-1.878-.869 5.756 5.756 0 0 1-3.25-1.346A2.98 2.98 0 0 0 12 2a2.98 2.98 0 0 0-1.943.714A5.756 5.756 0 0 1 6.808 4.06a2.98 2.98 0 0 0-1.878.869Zm11.781 5.106a1 1 0 0 0-1.414-1.414l-4.632 4.631-1.962-1.962a1 1 0 0 0-1.414 1.415l2.67 2.669a1 1 0 0 0 1.414 0l5.338-5.339Z" + /> + fill="var(--color-background-accent, #0968f6)" + /> + fill="var(--color-foreground-on-accent, #ffffff)" + /> + id="icon-authenticity-guarantee-filled-16-colored" + > + fill="#0968F6" + /> + fill="#fff" + /> + fill="var(--color-background-accent, #0968f6)" + /> + fill="var(--color-foreground-on-accent, #ffffff)" + /> + id="icon-authenticity-guarantee-filled-24-colored" + > + fill="#0968F6" + /> + fill="#fff" + /> - + - + + fill="var(--color-background-secondary, #F7F7F7)" + /> + fill="var(--color-foreground-secondary, #707070)" + /> + fill="var(--color-foreground-secondary, #707070)" + /> + d="M0 3.5A2.5 2.5 0 0 1 2.5 1h11A2.5 2.5 0 0 1 16 3.5v9a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5v-9ZM2.5 3a.5.5 0 0 0-.5.5v1.844L4.77 3H2.5Zm5.366 0L2 7.964v3.803l3.194-2.703a3 3 0 0 1 4.32-3.655L12.36 3H7.866ZM14 4.233l-3.194 2.703a3 3 0 0 1-4.32 3.655L3.64 13h4.495L14 8.036V4.233ZM8.024 9a1 1 0 1 0-.048 0h.048Zm5.476 4h-2.27L14 10.656V12.5a.5.5 0 0 1-.5.5Z" + /> + d="M10.505 2H20a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h6.505ZM3 10.951v7.711l4.673-4.154a5 5 0 0 1 7.324-6.51L19.495 4h-8.617L3 10.951ZM7.855 4 3 8.284V5a1 1 0 0 1 1-1h3.855Zm8.471 5.492L21 5.338v7.71L13.122 20H4.505l4.498-3.998a5 5 0 0 0 7.324-6.51ZM20 20h-3.855L21 15.716V19a1 1 0 0 1-1 1ZM9 12a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z" + /> + stroke-width="1" + /> + fill="#1E3764" + /> + fill="url(#ref-bancontact-12-colored-a)" + /> + fill="url(#ref-bancontact-12-colored-b)" + /> - - + gradientUnits="userSpaceOnUse" + > + + - - + gradientUnits="userSpaceOnUse" + > + + @@ -1149,16 +1430,20 @@ rx="1.5" fill="#fff" stroke="#191919" - stroke-width="1"/> + stroke-width="1" + /> + fill="#1E3764" + /> + fill="url(#ref-bancontact-18-colored-a)" + /> + fill="url(#ref-bancontact-18-colored-b)" + /> - - + gradientUnits="userSpaceOnUse" + > + + - - + gradientUnits="userSpaceOnUse" + > + + @@ -1190,16 +1477,20 @@ rx="1.5" fill="#fff" stroke="#191919" - stroke-width="1"/> + stroke-width="1" + /> + fill="#1E3764" + /> + fill="url(#ref-bancontact-24-colored-a)" + /> + fill="url(#ref-bancontact-24-colored-b)" + /> - - + gradientUnits="userSpaceOnUse" + > + + - - + gradientUnits="userSpaceOnUse" + > + + @@ -1231,16 +1524,20 @@ rx="1.5" fill="#fff" stroke="#191919" - stroke-width="1"/> + stroke-width="1" + /> + fill="#1E3764" + /> + fill="url(#ref-bancontact-32-colored-a)" + /> + fill="url(#ref-bancontact-32-colored-b)" + /> - - + gradientUnits="userSpaceOnUse" + > + + - - + gradientUnits="userSpaceOnUse" + > + + + d="M8.555.168a1 1 0 0 0-1.11 0l-6 4A1 1 0 0 0 2 6h12a1 1 0 0 0 .555-1.832l-6-4ZM8 2.202 10.697 4H5.303L8 2.202ZM4 7a1 1 0 0 1 1 1v3a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Zm11 7a1 1 0 0 1-1 1H2a1 1 0 1 1 0-2h12a1 1 0 0 1 1 1ZM9 8a1 1 0 0 0-2 0v3a1 1 0 1 0 2 0V8Zm3-1a1 1 0 0 1 1 1v3a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Z" + /> - + + d="M12.53 1.152a1 1 0 0 0-1.06 0l-8 5A1 1 0 0 0 4 8h16a1 1 0 0 0 .53-1.848l-8-5ZM12 3.179 16.513 6H7.487L12 3.18ZM19 10a1 1 0 1 0-2 0v6a1 1 0 1 0 2 0v-6Zm2 9a1 1 0 0 1-1 1H4a1 1 0 1 1 0-2h16a1 1 0 0 1 1 1Zm2 3a1 1 0 0 1-1 1H2a1 1 0 1 1 0-2h20a1 1 0 0 1 1 1ZM14 9a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0v-6a1 1 0 0 1 1-1Zm-3 1a1 1 0 1 0-2 0v6a1 1 0 1 0 2 0v-6ZM6 9a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0v-6a1 1 0 0 1 1-1Z" + /> + d="M33.182 3.297a2.5 2.5 0 0 0-2.364 0l-20.5 11A2.5 2.5 0 0 0 11.5 19h41a2.5 2.5 0 0 0 1.182-4.703l-20.5-11ZM32 8.337 42.553 14H21.447L32 8.337ZM51 24.5a2.5 2.5 0 0 0-5 0v18a2.5 2.5 0 0 0 5 0v-18Zm-42 26a2.5 2.5 0 0 1 2.5-2.5h41a2.5 2.5 0 0 1 0 5h-41A2.5 2.5 0 0 1 9 50.5Zm-6 8A2.5 2.5 0 0 1 5.5 56h53a2.5 2.5 0 0 1 0 5h-53A2.5 2.5 0 0 1 3 58.5ZM37.5 22a2.5 2.5 0 0 1 2.5 2.5v18a2.5 2.5 0 0 1-5 0v-18a2.5 2.5 0 0 1 2.5-2.5ZM29 24.5a2.5 2.5 0 0 0-5 0v18a2.5 2.5 0 0 0 5 0v-18ZM15.5 22a2.5 2.5 0 0 1 2.5 2.5v18a2.5 2.5 0 0 1-5 0v-18a2.5 2.5 0 0 1 2.5-2.5Z" + /> + stroke-width="1" + /> + fill="#000" + /> + stroke-width="1" + /> + fill="#000" + /> + stroke-width="1" + /> + fill="#000" + /> + stroke-width="1" + /> + fill="#000" + /> + fill="#E5E5E5" + /> + fill="#112231" + /> + fill="#FF4F40" + /> + fill="#BBF42E" + /> + fill="#0088A6" + /> + fill="#48D3B2" + /> + fill="#400755" + /> + fill="#CF002C" + /> + fill="#DD3E56" + /> + fill="#CF002C" + /> + fill="#DD3E56" + /> - + fill="#DB0011" + /> + + fill="#fff" + /> + fill="#00AFE9" + /> + fill="#fff" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#E31D34" + /> + fill="#1E2C69" + /> + fill="#E31D34" + /> + fill="#1E2C69" + /> + fill="#E31D34" + /> + stroke-width="1" + /> + fill="#E31D34" + /> + fill="#1E2C69" + /> + fill="#E31D34" + /> + fill="#1E2C69" + /> + fill="#E31D34" + /> + stroke-width="1" + /> + fill="#E31D34" + /> + fill="#1E2C69" + /> + fill="#E31D34" + /> + fill="#1E2C69" + /> + fill="#E31D34" + /> + stroke-width="1" + /> + fill="#E31D34" + /> + fill="#1E2C69" + /> + fill="#E31D34" + /> + fill="#1E2C69" + /> + fill="#E31D34" + /> + d="M15 14a1 1 0 1 1-2 0V5a1 1 0 1 1 2 0v9Zm-8 0a1 1 0 1 1-2 0V8a1 1 0 1 1 2 0v6Zm3 1a1 1 0 0 0 1-1V1a1 1 0 1 0-2 0v13a1 1 0 0 0 1 1Zm-7-1a1 1 0 1 1-2 0V5a1 1 0 1 1 2 0v9Z" + /> + d="M3 21a1 1 0 1 0 2 0V8a1 1 0 1 0-2 0v13Zm5.333 0a1 1 0 1 0 2 0v-9a1 1 0 1 0-2 0v9ZM20 22a1 1 0 0 1-1-1V8a1 1 0 1 1 2 0v13a1 1 0 0 1-1 1Zm-6.334-1a1 1 0 1 0 2 0V2a1 1 0 1 0-2 0v19Z" + /> - + - + + d="M1.738 8.933a2.5 2.5 0 0 1 0-3.536L6.403.732a2.5 2.5 0 0 1 3.535 0l.676.676.676.677a2.5 2.5 0 0 1 0 3.535l-.563.563 4.54 4.54a2.502 2.502 0 1 1-3.54 3.539l-4.539-4.54-.562.563a2.5 2.5 0 0 1-3.536 0L1.738 8.933Zm6.864-.625.711-.71 4.54 4.539a.503.503 0 1 1-.711.71l-4.54-4.539Zm-5.45-1.497a.5.5 0 0 0 0 .707l1.352 1.353a.5.5 0 0 0 .707 0l4.665-4.665a.5.5 0 0 0 0-.707L9.2 2.823l-.676-.677a.5.5 0 0 0-.707 0L3.152 6.811Zm-1.148 6.19a1 1 0 1 0 0 2h5a1 1 0 0 0 0-2h-5Z" + /> + d="M1.88 14.591a3 3 0 0 1 0-4.242l8.47-8.47a3 3 0 0 1 4.243 0l1.265 1.265 1.265 1.265a3 3 0 0 1 0 4.243l-2.028 2.028 6.988 6.988a3.123 3.123 0 0 1-4.416 4.416l-6.988-6.988-2.026 2.026a3 3 0 0 1-4.242 0l-2.531-2.53Zm10.213-.909 1.588-1.588 6.988 6.988a1.123 1.123 0 1 1-1.588 1.587l-6.988-6.987Zm-8.799-1.919a1 1 0 0 0 0 1.414l2.53 2.53a1 1 0 0 0 1.415 0l8.47-8.47a1 1 0 0 0 0-1.413l-1.265-1.266-1.266-1.265a1 1 0 0 0-1.414 0l-8.47 8.47ZM2 21a1 1 0 1 0 0 2h10a1 1 0 1 0 0-2H2Z" + /> + d="M5.197 38.257a7.5 7.5 0 0 1 0-10.606L27.653 5.197a7.5 7.5 0 0 1 10.608 0l3.61 3.61 3.61 3.61a7.5 7.5 0 0 1 0 10.606l-5.46 5.459L58.61 47.068a8.162 8.162 0 0 1-11.542 11.54L28.48 40.023l-5.455 5.454a7.5 7.5 0 0 1-10.607 0l-7.22-7.22Zm26.819-1.77 4.47-4.47 18.588 18.586a3.16 3.16 0 1 1-4.47 4.47L32.015 36.487ZM8.733 31.186a2.5 2.5 0 0 0 0 3.535l7.22 7.22a2.5 2.5 0 0 0 3.537 0l22.456-22.454a2.5 2.5 0 0 0 0-3.535l-3.61-3.61-3.611-3.61a2.5 2.5 0 0 0-3.536 0L8.733 31.186ZM5.5 55.998a2.5 2.5 0 0 0 0 5h27.002a2.5 2.5 0 0 0 0-5H5.5Z" + /> + d="m2.107 5.448.639-2.554A2.5 2.5 0 0 1 5.17 1h5.658a2.5 2.5 0 0 1 2.425 1.894l.639 2.554a16.62 16.62 0 0 1 1.532.646 1 1 0 0 1 .562 1.07c-.08.483-.303 1.232-.79 2.333-1.2 2.707-3.65 4.402-6.362 5.362a2.5 2.5 0 0 1-1.67 0c-2.712-.96-5.161-2.655-6.36-5.362C.322 8.412.1 7.67.016 7.187a1.007 1.007 0 0 1 .555-1.09c.4-.2.925-.423 1.535-.649Zm2.58-2.07A.5.5 0 0 1 5.17 3h5.658a.5.5 0 0 1 .485.379l.336 1.345a25.326 25.326 0 0 0-3.33-.706 2.378 2.378 0 0 0-.64 0 25.27 25.27 0 0 0-3.33.706l.336-1.345ZM7 6.155a26.27 26.27 0 0 0-4.814 1.41c.169.495.366.988.605 1.455L7 7.756V6.154Zm0 6.512c-1.128-.46-2.145-1.113-2.957-1.935L7 9.844v2.822Zm2-2.822v2.822c1.128-.46 2.145-1.113 2.957-1.934L9 9.844Zm4.209-.825c.24-.467.437-.96.605-1.456A26.378 26.378 0 0 0 9 6.153v1.603l4.209 1.263Z" + /> + d="m3.08 9.089 1.53-4.971A3 3 0 0 1 7.476 2h9.046a3 3 0 0 1 2.867 2.118l1.53 4.97c1.03.355 1.907.707 2.527 1.017.409.204.62.65.535 1.084-.136.783-.63 1.952-1.546 3.71-2.007 3.854-5.612 5.763-9.612 6.906a3.002 3.002 0 0 1-1.649 0c-4-1.143-7.604-3.052-9.611-6.906C.644 13.135.15 11.964.016 11.181a.996.996 0 0 1 .537-1.076c.62-.31 1.496-.662 2.527-1.016Zm3.441-4.383A1 1 0 0 1 7.477 4h9.046a1 1 0 0 1 .955.706l1.125 3.657c-1.99-.568-4.219-1.074-6.223-1.342a2.857 2.857 0 0 0-.76 0c-2.004.268-4.233.774-6.224 1.342L6.52 4.706ZM11 9.135c-3.218.526-6.809 1.59-8.798 2.418.375.99.851 1.965 1.388 2.878L11 12.252V9.135Zm-6.148 7.01L11 14.337v5.337c-2.337-.667-4.487-1.697-6.148-3.53ZM13 14.337v5.337c2.337-.667 4.486-1.697 6.148-3.53L13 14.338Zm7.41.094a19.039 19.039 0 0 0 1.388-2.878c-1.989-.827-5.58-1.892-8.798-2.418v3.117l7.41 2.18Z" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + d="M5.5 3a.5.5 0 0 0-.5.5v8.086l2.293-2.293a1 1 0 0 1 1.414 0L11 11.586V3.5a.5.5 0 0 0-.5-.5h-5ZM3 3.5A2.5 2.5 0 0 1 5.5 1h5A2.5 2.5 0 0 1 13 3.5V14a1 1 0 0 1-1.707.707L8 11.414l-3.293 3.293A1 1 0 0 1 3 14V3.5Z" + /> + d="M7 3a1 1 0 0 0-1 1v15.586l5.293-5.293a1 1 0 0 1 1.414 0L18 19.586V4a1 1 0 0 0-1-1H7ZM4 4a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v18a1 1 0 0 1-1.707.707L12 16.414l-6.293 6.293A1 1 0 0 1 4 22V4Z" + /> + d="M3 3.5A2.5 2.5 0 0 1 5.5 1h5A2.5 2.5 0 0 1 13 3.5V14a1 1 0 0 1-1.707.707L8 11.414l-3.293 3.293A1 1 0 0 1 3 14V3.5Z" + /> + d="M4 4a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v18a1 1 0 0 1-1.707.707L12 16.414l-6.293 6.293A1 1 0 0 1 4 22V4Z" + /> - + + clip-rule="evenodd" + /> + d="M2.067 6.647a3.756 3.756 0 0 1-.875 2.113A4.98 4.98 0 0 0 0 12a4.98 4.98 0 0 0 1.191 3.24 3.75 3.75 0 0 1 .876 2.113 4.98 4.98 0 0 0 1.448 3.132 4.98 4.98 0 0 0 3.133 1.449c.77.061 1.524.374 2.113.875A4.98 4.98 0 0 0 12 24a4.98 4.98 0 0 0 3.24-1.191 3.756 3.756 0 0 1 2.113-.875 4.98 4.98 0 0 0 3.133-1.449 4.98 4.98 0 0 0 1.448-3.133 3.76 3.76 0 0 1 .875-2.113A4.98 4.98 0 0 0 24 12a4.98 4.98 0 0 0-1.19-3.239 3.756 3.756 0 0 1-.876-2.113 4.98 4.98 0 0 0-1.448-3.133 4.98 4.98 0 0 0-3.133-1.449 3.756 3.756 0 0 1-2.114-.875A4.98 4.98 0 0 0 12 0a4.98 4.98 0 0 0-3.24 1.191 3.756 3.756 0 0 1-2.112.875 4.98 4.98 0 0 0-3.133 1.449 4.98 4.98 0 0 0-1.448 3.132ZM4.93 4.929a2.98 2.98 0 0 0-.87 1.878 5.756 5.756 0 0 1-1.346 3.25A2.98 2.98 0 0 0 2 12c0 .743.268 1.419.714 1.943a5.756 5.756 0 0 1 1.346 3.25 2.98 2.98 0 0 0 .87 1.878 2.98 2.98 0 0 0 1.878.869 5.76 5.76 0 0 1 3.25 1.346A2.98 2.98 0 0 0 12 22a2.98 2.98 0 0 0 1.943-.714 5.756 5.756 0 0 1 3.25-1.346 2.98 2.98 0 0 0 1.879-.869 2.98 2.98 0 0 0 .869-1.879 5.756 5.756 0 0 1 1.345-3.25A2.98 2.98 0 0 0 22 12a2.98 2.98 0 0 0-.714-1.943 5.756 5.756 0 0 1-1.346-3.25 2.98 2.98 0 0 0-.869-1.878 2.98 2.98 0 0 0-1.878-.869 5.756 5.756 0 0 1-3.25-1.346A2.98 2.98 0 0 0 12 2a2.98 2.98 0 0 0-1.943.714A5.756 5.756 0 0 1 6.808 4.06a2.98 2.98 0 0 0-1.878.869Zm11.781 5.106a1 1 0 0 0-1.414-1.414l-4.632 4.631-1.962-1.962a1 1 0 0 0-1.414 1.415l2.67 2.669a1 1 0 0 0 1.414 0l5.338-5.339Z" + /> + d="M8 0a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0V1a1 1 0 0 1 1-1Zm4.95 4.464.707-.707a1 1 0 0 0-1.414-1.414l-.707.707a1 1 0 0 0 1.414 1.414Zm-9.9 0-.707-.706a1 1 0 0 1 1.414-1.414l.707.707A1 1 0 1 1 3.05 4.465ZM3 8a1 1 0 0 1-1 1H1a1 1 0 0 1 0-2h1a1 1 0 0 1 1 1Zm.757 5.656.707-.707a1 1 0 1 0-1.414-1.414l-.707.707a1 1 0 1 0 1.414 1.414ZM8 13a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm3.536-.05.707.707a1 1 0 0 0 1.414-1.414l-.707-.707a1 1 0 0 0-1.414 1.414ZM16 8a1 1 0 0 1-1 1h-1a1 1 0 1 1 0-2h1a1 1 0 0 1 1 1Zm-6 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm2 0a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z" + /> + d="M10 0a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0V1a1 1 0 0 1 1-1ZM3.636 5.05l-.707-.707a1 1 0 0 1 1.414-1.414l.707.707A1 1 0 0 1 3.636 5.05ZM3 10a1 1 0 0 1-1 1H1a1 1 0 1 1 0-2h1a1 1 0 0 1 1 1Zm1.343 7.071.707-.707a1 1 0 1 0-1.414-1.414l-.707.707a1 1 0 1 0 1.414 1.414ZM10 17a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm4.95-.637.707.707a1 1 0 0 0 1.414-1.414l-.707-.707a1 1 0 1 0-1.414 1.414ZM20 10a1 1 0 0 1-1 1h-1a1 1 0 1 1 0-2h1a1 1 0 0 1 1 1Zm-3.636-4.95.707-.707a1 1 0 0 0-1.414-1.414l-.707.707a1 1 0 1 0 1.414 1.414ZM7 10a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-5a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z" + /> - + + d="M12 1a1 1 0 0 1 1 1v1.05a2.5 2.5 0 0 1 2 2.45v7a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 12.5v-7a2.5 2.5 0 0 1 2-2.45V2a1 1 0 0 1 2 0v1h6V2a1 1 0 0 1 1-1ZM4 5h-.5a.5.5 0 0 0-.5.5V6h10v-.5a.5.5 0 0 0-.5-.5H4ZM3 8v4.5a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5V8H3Zm1 2a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1Z" + /> + d="M18 1a1 1 0 0 1 1 1v1h1a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h1V2a1 1 0 0 1 2 0v1h10V2a1 1 0 0 1 1-1ZM6 5H4a1 1 0 0 0-1 1v1h18V6a1 1 0 0 0-1-1H6ZM3 9v11a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V9H3Zm12 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-2Zm-4-1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-2Zm-6 1a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-2Z" + /> + d="M47.5 3A2.5 2.5 0 0 1 50 5.5V9h3.5a7.5 7.5 0 0 1 7.5 7.5v37a7.5 7.5 0 0 1-7.5 7.5h-43A7.5 7.5 0 0 1 3 53.5v-37A7.5 7.5 0 0 1 10.5 9H14V5.5a2.5 2.5 0 0 1 5 0V9h26V5.5A2.5 2.5 0 0 1 47.5 3Zm-37 11A2.5 2.5 0 0 0 8 16.5V19h48v-2.5a2.5 2.5 0 0 0-2.5-2.5h-43ZM56 24H8v29.5a2.5 2.5 0 0 0 2.5 2.5h43a2.5 2.5 0 0 0 2.5-2.5V24Zm-15 7a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2v-6Zm-12-2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2h-6Zm-16 2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2v-6Z" + /> + d="M8 5.5a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-1 3a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z" + /> + d="M6.427 1a2.5 2.5 0 0 0-2.236 1.382L3.882 3H2.5A2.5 2.5 0 0 0 0 5.5v7A2.5 2.5 0 0 0 2.5 15h11a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 13.5 3h-1.382l-.309-.618A2.5 2.5 0 0 0 9.573 1H6.427ZM5.98 3.276A.5.5 0 0 1 6.427 3h3.146a.5.5 0 0 1 .447.276l.586 1.171A1 1 0 0 0 11.5 5h2a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-7a.5.5 0 0 1 .5-.5h2a1 1 0 0 0 .894-.553l.586-1.17Z" + /> + d="M12 8a5 5 0 1 0 0 10 5 5 0 0 0 0-10Zm-3 5a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z" + /> + d="M9.442 2a3 3 0 0 0-2.847 2.051L6.28 5H3a3 3 0 0 0-3 3v11a3 3 0 0 0 3 3h18a3 3 0 0 0 3-3V8a3 3 0 0 0-3-3h-3.28l-.316-.949A3 3 0 0 0 14.56 2H9.442Zm-.95 2.684A1 1 0 0 1 9.443 4h5.117a1 1 0 0 1 .948.684l.544 1.632A1 1 0 0 0 17 7h4a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h4a1 1 0 0 0 .949-.684l.544-1.632Z" + /> + d="M32 22c-7.18 0-13 5.82-13 13s5.82 13 13 13 13-5.82 13-13-5.82-13-13-13Zm-8 13a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z" + /> + d="M25.604 5a7.5 7.5 0 0 0-7.115 5.128L17.199 14H8.5A7.5 7.5 0 0 0 1 21.5v29A7.5 7.5 0 0 0 8.5 58h47a7.5 7.5 0 0 0 7.5-7.5v-29a7.5 7.5 0 0 0-7.5-7.5h-8.698l-1.29-3.872A7.5 7.5 0 0 0 38.395 5H25.604Zm-2.372 6.71A2.5 2.5 0 0 1 25.604 10h12.792a2.5 2.5 0 0 1 2.372 1.71l1.86 5.58A2.5 2.5 0 0 0 45 19h10.5a2.5 2.5 0 0 1 2.5 2.5v29a2.5 2.5 0 0 1-2.5 2.5h-47A2.5 2.5 0 0 1 6 50.5v-29A2.5 2.5 0 0 1 8.5 19H19a2.5 2.5 0 0 0 2.372-1.71l1.86-5.58Z" + /> + stroke-width="1" + /> + fill="#CC2427" + /> + fill="#013D5B" + /> + fill="#013D5B" + /> + stroke-width="1" + /> + fill="#CC2427" + /> + fill="#013D5B" + /> + fill="#013D5B" + /> + stroke-width="1" + /> + fill="#CC2427" + /> + fill="#013D5B" + /> + fill="#013D5B" + /> + stroke-width="1" + /> + fill="#CC2427" + /> + fill="#013D5B" + /> + fill="#013D5B" + /> - + + clip-rule="evenodd" + /> - + + clip-rule="evenodd" + /> + d="M7 2.08C4.598 2.657 2.657 4.598 2.08 7h2.142A4.608 4.608 0 0 1 7 4.223V2.08ZM7.03.03C8.146-.166 9 .744 9 1.721v.298A6.5 6.5 0 1 1 2.02 9h-.298C.744 9-.166 8.145.03 7.031c.624-3.53 3.47-6.376 7-7ZM9 4.351v-.324A4.5 4.5 0 1 1 4.028 9h.321c.904 0 1.526-.657 1.75-1.305a2.607 2.607 0 0 1 1.596-1.596C8.343 5.875 9 5.254 9 4.35ZM8.5 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" + /> + d="M14 2.42c0-1.342-1.12-2.588-2.622-2.4C5.484.763.763 5.484.021 11.378-.168 12.881 1.078 14 2.42 14h.63c.501 5.053 4.765 9 9.95 9 5.523 0 10-4.477 10-10 0-5.185-3.947-9.449-9-9.95v-.63Zm0 2.642V5.5c0 1.424-1.142 2.375-2.238 2.654a5.01 5.01 0 0 0-3.608 3.608C7.875 12.858 6.924 14 5.5 14h-.438A8.001 8.001 0 0 0 21 13a8.001 8.001 0 0 0-7-7.938Zm-2.372-3.056a.279.279 0 0 1 .239.082.46.46 0 0 1 .133.332V5.5c0 .233-.222.586-.732.716a7.01 7.01 0 0 0-5.052 5.052c-.13.51-.483.732-.716.732H2.42a.46.46 0 0 1-.332-.133.278.278 0 0 1-.082-.24c.627-4.987 4.634-8.994 9.622-9.621ZM13 12a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-3 1a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z" + /> + d="m41.832 15.44-2.005-7a7.5 7.5 0 0 0-9.275-5.146L8.437 9.626A7.5 7.5 0 0 0 3.292 18.9l7.71 26.918a7.503 7.503 0 0 0 6.351 5.388 7.47 7.47 0 0 0 4.255 3.17l22.114 6.334a7.5 7.5 0 0 0 9.276-5.146l7.71-26.918a7.5 7.5 0 0 0-5.145-9.274l-13.73-3.932Zm-5.666-1.622L35.02 9.816A2.5 2.5 0 0 0 31.928 8.1L9.814 14.433a2.5 2.5 0 0 0-1.715 3.091l7.709 26.918c.111.389.308.729.565 1.007a7.81 7.81 0 0 1 .09-.346l7.71-26.918a7.5 7.5 0 0 1 9.275-5.145l2.718.778Zm-7.186 5.744a2.5 2.5 0 0 1 3.091-1.715l22.115 6.332a2.5 2.5 0 0 1 1.715 3.092l-7.71 26.918a2.5 2.5 0 0 1-3.092 1.715L22.985 49.57a2.5 2.5 0 0 1-1.715-3.091l7.71-26.918Z" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> + d="M9.5 4a.5.5 0 0 0-.5.5V5h6v-.5a.5.5 0 0 0-.5-.5h-5ZM7 4.5v.55A2.5 2.5 0 0 0 5 7.5v10c0 .818.393 1.544 1 2v.5a1 1 0 1 0 2 0h8a1 1 0 1 0 2 0v-.5c.607-.456 1-1.182 1-2v-10a2.5 2.5 0 0 0-2-2.45V4.5A2.5 2.5 0 0 0 14.5 2h-5A2.5 2.5 0 0 0 7 4.5ZM7.5 7a.5.5 0 0 0-.5.5V11h10V7.5a.5.5 0 0 0-.5-.5h-9Zm9.5 6H7v4.5a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5V13Z" + /> - + d="M2.22 3H1a1 1 0 0 1 0-2h2c.474 0 .876.334.976.78L4.53 4H13c.621 0 1.102.587.98 1.196l-.758 3.795A2.5 2.5 0 0 1 10.77 11H6.171a2.5 2.5 0 0 1-2.425-1.894L2.219 3Zm3.466 5.622L5.031 6h6.75l-.52 2.598a.5.5 0 0 1-.49.402h-4.6a.5.5 0 0 1-.485-.378Z" + /> + - + d="M2.236 4H1a1 1 0 1 1 0-2h1.97c.458-.014.884.296 1 .755L4.855 6H17c.654 0 1.141.646.962 1.274l-1.586 5.55A3 3 0 0 1 13.491 15H7.528a3 3 0 0 1-2.895-2.21L2.236 4Zm4.327 8.263L5.4 8h10.274l-1.221 4.274a1 1 0 0 1-.962.726H7.528a1 1 0 0 1-.965-.737Z" + /> + - + d="M1 2a1 1 0 0 0 0 2h2.204l2.464 10.675A3 3 0 0 0 8.59 17h8.805a3 3 0 0 0 2.928-2.349l1.652-7.434A1.01 1.01 0 0 0 21 6H5.719l-.74-3.202A.999.999 0 0 0 4 2H1Zm6.617 12.225L6.18 8h13.573l-1.381 6.217a1 1 0 0 1-.976.783H8.59a1 1 0 0 1-.974-.775Z" + /> + - + d="M8.52 11H2.5a2.5 2.5 0 0 1 0-5h7.953a2.481 2.481 0 0 1 1.606.546 2.49 2.49 0 0 1 .886 1.429L14.833 16h40.618a2.482 2.482 0 0 1 1.995.931 2.491 2.491 0 0 1 .492 2.126L53.777 39.03A7.5 7.5 0 0 1 46.434 45H22.46a7.5 7.5 0 0 1-7.3-5.782L8.52 11Zm43.906 10H16.01l4.017 17.073a2.5 2.5 0 0 0 2.433 1.928h23.974a2.5 2.5 0 0 0 2.448-1.99L52.426 21Z" + /> + - + - + - + - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> + d="M7 4a3 3 0 1 1-6 0 3 3 0 0 1 6 0ZM5 4a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm10 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-2 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-2a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-5-1a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-2 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" + /> - + - + + fill="#fff" + /> - - - - - - - - - + gradientUnits="userSpaceOnUse" + > + + + + + + + + + - + + fill="#fff" + /> - - - - - - - - - + gradientUnits="userSpaceOnUse" + > + + + + + + + + + - + + fill="#fff" + /> - - - - - - - - - + gradientUnits="userSpaceOnUse" + > + + + + + + + + + - + + fill="#fff" + /> - - - - - - - - - + gradientUnits="userSpaceOnUse" + > + + + + + + + + + + d="M0 0h58v78H0V0Zm1 1v76h56V1H1Zm7 28.75c0-.966.784-1.75 1.75-1.75H15V18h5V8h4v10h10V8h4v10h5v10h5.25c.967 0 1.75.784 1.75 1.75v38.5A1.75 1.75 0 0 1 48.25 70H9.75A1.75 1.75 0 0 1 8 68.25v-38.5ZM23 18V9h-2v9h2Zm14 0h-2V9h2v9Zm5 10v-9H16v9h26ZM9.75 29a.75.75 0 0 0-.75.75v38.5c0 .414.336.75.75.75h38.5a.75.75 0 0 0 .75-.75v-38.5a.75.75 0 0 0-.75-.75H9.75Z" + /> + d="M.5 0H0v78h58V0H.5ZM1 2.686V77h54.758l-5.914-8.026A1.75 1.75 0 0 1 48.25 70H9.75A1.75 1.75 0 0 1 8 68.25v-38.5c0-.966.784-1.75 1.75-1.75H15v-6.314l-14-19Zm15 20.357V28h3.653L16 23.043ZM22.137 28 16 19.671V19h26v9H22.137Zm-1.748 1H9.75a.75.75 0 0 0-.75.75v38.5c0 .414.336.75.75.75h38.5a.75.75 0 0 0 .75-.75v-.421L20.39 29ZM49 64.457 22.874 29H48.25a.75.75 0 0 1 .75.75v34.707Zm1 1.357V29.75A1.75 1.75 0 0 0 48.25 28H43V18h-5V8h-4v10H24V8h-4v10h-5v.314L2.242 1H57v74.314l-7-9.5ZM37 9v9h-2V9h2Zm-16 9h2V9h-2v9Z" + /> - - - + + + - + + d="m20.086 12.23.885-3.484a1 1 0 1 0-1.938-.492l-.266 1.044-3.43-6.228C13.8.278 9.774.32 8.293 3.142L6.51 6.537a1 1 0 0 0 1.77.93l1.783-3.397c.74-1.412 2.754-1.432 3.523-.036l3.507 6.37-1.323-.368a1 1 0 1 0-.536 1.926l3.61 1.004a1 1 0 0 0 1.242-.737Zm1.234 2.775a1 1 0 0 0-.876 1.483l.301.547c.734 1.333-.23 2.965-1.752 2.965H5.014c-1.505.001-2.47-1.596-1.772-2.928l1.827-3.48.38 1.21a1 1 0 1 0 1.908-.6l-1.1-3.5a1 1 0 0 0-1.253-.654l-.022.007-3.27.99a1 1 0 0 0 .58 1.915l1.01-.306-1.83 3.488c-1.398 2.664.534 5.86 3.541 5.859h13.982c3.043 0 4.971-3.265 3.503-5.93l-.301-.548a1 1 0 0 0-.876-.518Z" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + d="M0 4a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3v1.99a.998.998 0 0 1-1.515.868L6.723 13H3a3 3 0 0 1-3-3V4Zm13 7h-2v2.234l-3.464-2.079A.995.995 0 0 0 7 11H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1Z" + /> - - + + - - + + + d="M8 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1H8ZM6 4a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3 3 3 0 0 1 3 3v12a3.001 3.001 0 0 1-2 2.83V22a1 1 0 1 1-2 0H7a1 1 0 1 1-2 0v-.17A3.001 3.001 0 0 1 3 19V7a3 3 0 0 1 3-3ZM5 7a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v1H5V7Zm0 3v6h14v-6H5Zm0 9v-1h14v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1Z" + /> - + + d="M4 0a4 4 0 0 0-4 4v16a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V4a4 4 0 0 0-4-4H4Zm6.71 16.71a1 1 0 0 1-1.41 0l-4-4a1 1 0 0 1 1.41-1.41L10 14.59l7.29-7.29a1 1 0 0 1 1.41 1.41h.01l-8 8Z" + /> + d="M4 0a4 4 0 0 0-4 4v10a4 4 0 0 0 4 4h10a4 4 0 0 0 4-4V4a4 4 0 0 0-4-4H4Zm1 8a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H5Z" + /> + d="M4 0a4 4 0 0 0-4 4v16a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V4a4 4 0 0 0-4-4H4Zm1 11a1 1 0 1 0 0 2h14a1 1 0 1 0 0-2H5Z" + /> - + - + + clip-rule="evenodd" + /> + d="M1.808 4.188a.625.625 0 0 1 .884 0L6 7.495l3.308-3.307a.625.625 0 1 1 .884.885l-3.75 3.749a.625.625 0 0 1-.884 0l-3.75-3.749a.626.626 0 0 1 0-.885Z" + /> - + - + - + + d="M7.812 10.192a.625.625 0 0 0 0-.884L4.508 6l3.304-3.308a.625.625 0 1 0-.884-.884l-3.745 3.75a.625.625 0 0 0 0 .884l3.745 3.75c.244.244.64.244.884 0Z" + /> - + - + - + + d="M4.183 10.192a.625.625 0 0 1 0-.884L7.487 6 4.183 2.692a.625.625 0 0 1 .884-.884l3.745 3.75a.625.625 0 0 1 0 .884l-3.745 3.75a.625.625 0 0 1-.884 0Z" + /> - + - + - + + d="M1.808 7.816c.244.245.64.245.884.001L6 4.51l3.308 3.307a.625.625 0 1 0 .884-.885l-3.75-3.75a.625.625 0 0 0-.884.001l-3.75 3.749a.626.626 0 0 0 0 .884Z" + /> - + - + - + + d="M14 8A6 6 0 1 1 2 8a6 6 0 0 1 12 0Zm2 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0ZM5 6.5A1.5 1.5 0 0 1 6.5 5h3A1.5 1.5 0 0 1 11 6.5v3A1.5 1.5 0 0 1 9.5 11h-3A1.5 1.5 0 0 1 5 9.5v-3ZM7 9V7h2v2H7Z" + /> + d="M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm2 0c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12ZM7 9a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V9Zm2 0h6v6H9V9Z" + /> - + + fill="#fff" + /> + fill="#ED1B2E" + /> + fill="#fff" + /> - + + fill="#fff" + /> + fill="#ED1B2E" + /> + fill="#fff" + /> - + + fill="#fff" + /> + fill="#ED1B2E" + /> + fill="#fff" + /> - + + fill="#fff" + /> + fill="#ED1B2E" + /> + fill="#fff" + /> - + + d="M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10Zm4.707-14.707a1 1 0 0 0-1.414 0L10 8.586 6.707 5.293a1 1 0 0 0-1.414 1.414L8.586 10l-3.293 3.293a1 1 0 1 0 1.414 1.414L10 11.414l3.293 3.293a1 1 0 0 0 1.414-1.414L11.414 10l3.293-3.293a1 1 0 0 0 0-1.414Z" + /> - + - + + d="M6.647 3.32a1 1 0 0 0-1.425-.044L3.129 5.277c-.112.107-.134.211-.128.268.266 2.877 2.541 6.609 5.689 9.76 3.147 3.15 6.875 5.428 9.75 5.695.058.005.162-.017.269-.128l2.013-2.1a1 1 0 0 0-.044-1.427l-3.28-3.024-2.929 1.555a1 1 0 0 1-1.176-.176l-4.999-4.998a1 1 0 0 1-.176-1.175l1.556-2.928L6.647 3.32ZM3.84 1.833a3 3 0 0 1 4.277.133l3.026 3.277c.577.625.695 1.544.297 2.294l-1.209 2.275 3.953 3.953 2.276-1.209a2 2 0 0 1 2.294.296l3.28 3.025a2.998 2.998 0 0 1 .132 4.279l-2.014 2.1c-.458.479-1.138.806-1.896.736-3.574-.332-7.719-3.008-10.981-6.274C4.012 13.451 1.34 9.302 1.009 5.73c-.07-.758.258-1.439.738-1.898l2.093-2Z" + /> - - + + - - + + - + + d="M7 32C7 18.193 18.193 7 32 7s25 11.193 25 25-11.193 25-25 25S7 45.807 7 32ZM32 2C15.431 2 2 15.431 2 32c0 16.569 13.431 30 30 30 16.569 0 30-13.431 30-30C62 15.431 48.569 2 32 2Zm2.5 14.5a2.5 2.5 0 0 0-5 0V32a2.5 2.5 0 0 0 .732 1.768l8.5 8.5a2.5 2.5 0 1 0 3.536-3.536L34.5 30.965V16.5Z" + /> + d="M6.5 3.67a5 5 0 1 1 0 8.663 1 1 0 1 0-1 1.73 7 7 0 1 0 0-12.126 1 1 0 0 0 1 1.732ZM10 6a1 1 0 1 0-2 0v2a1 1 0 0 0 .293.707l1.5 1.5a1 1 0 0 0 1.414-1.414L10 7.587V6ZM0 6a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1Zm2 3a1 1 0 0 0 0 2h2a1 1 0 1 0 0-2H2Z" + /> + d="M9.534 7.626a7 7 0 1 1 0 8.749 1 1 0 0 0-1.56 1.251 9 9 0 1 0 0-11.25 1 1 0 1 0 1.56 1.25ZM16 9.001a1 1 0 1 0-2 0v3a1 1 0 0 0 .293.707l2 2a1 1 0 0 0 1.414-1.414L16 11.587V9Zm-16 1a1 1 0 0 1 1-1h5a1 1 0 0 1 0 2H1a1 1 0 0 1-1-1Zm3 3a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2H3Z" + /> - + - + + clip-rule="evenodd" + /> - + - + - + - + - + + clip-rule="evenodd" + /> + d="M44.499 37.075 27.508 6.077c-1.518-2.77-5.497-2.77-7.015 0L3.5 37.075c-1.461 2.666.468 5.923 3.508 5.923H40.99c3.04 0 4.97-3.257 3.508-5.923ZM29.262 5.116c-2.278-4.155-8.246-4.155-10.523 0L1.747 36.114c-2.192 3.998.702 8.884 5.262 8.884H40.99c4.56 0 7.454-4.886 5.262-8.884L29.262 5.116ZM13.999 30.998c0-.748.712-1.751 2.636-2.626 1.833-.833 4.436-1.374 7.365-1.374 2.928 0 5.531.541 7.364 1.374C33.288 29.247 34 30.25 34 30.998c0 .747-.712 1.75-2.636 2.625-1.833.833-4.436 1.375-7.364 1.375-2.929 0-5.532-.542-7.365-1.375-1.924-.874-2.636-1.878-2.636-2.625ZM34 34.394a9.836 9.836 0 0 1-1.808 1.05c-2.148.976-5.045 1.554-8.192 1.554-3.147 0-6.045-.578-8.193-1.554A9.836 9.836 0 0 1 14 34.394v.604c0 .747.712 1.75 2.636 2.625 1.833.833 4.436 1.375 7.365 1.375 2.928 0 5.531-.542 7.364-1.375C33.288 36.749 34 35.745 34 34.998v-.604Zm2 .604v-4c0-2.014-1.75-3.511-3.808-4.446-2.148-.977-5.045-1.554-8.192-1.554-3.147 0-6.045.577-8.193 1.554C13.75 27.487 12 28.984 12 30.998v4c0 2.014 1.75 3.51 3.808 4.446 2.148.976 5.046 1.554 8.193 1.554 3.147 0 6.044-.578 8.192-1.554C34.25 38.508 36 37.011 36 34.998Zm-17-4a1 1 0 0 1 1-1h3v-1a1 1 0 1 1 2 0v1h3a1 1 0 1 1 0 2h-3v1a1 1 0 1 1-2 0v-1h-3a1 1 0 0 1-1-1Zm5-22.5a1 1 0 0 1 1 1v7.5a1 1 0 1 1-2 0v-7.5a1 1 0 0 1 1-1Zm1.25 12.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Z" + /> - + + clip-rule="evenodd" + /> - + - + + d="M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8Zm6-8a8 8 0 1 0 0 16A8 8 0 0 0 8 0Zm3.207 7.207a1 1 0 0 0-1.414-1.414L7 8.586l-.793-.793a1 1 0 0 0-1.414 1.414l1.5 1.5a1 1 0 0 0 1.414 0l3.5-3.5Z" + /> + d="M19.07 4.929h.001A9.996 9.996 0 0 1 22 12c0 5.522-4.478 10-10 10S2 17.522 2 12 6.478 2 12 2a9.996 9.996 0 0 1 7.07 2.929ZM0 12C0 5.373 5.373 0 12 0c3.183 0 6.235 1.264 8.485 3.515A11.996 11.996 0 0 1 24 12c0 6.627-5.373 12-12 12S0 18.627 0 12Zm16.715-1.965A1 1 0 0 0 15.3 8.621l-4.632 4.631-1.962-1.962a1 1 0 0 0-1.414 1.415l2.67 2.669a1 1 0 0 0 1.413 0l5.339-5.339Z" + /> + d="m49.676 14.322.002.002A24.99 24.99 0 0 1 57 32c0 13.806-11.194 25-25 25S7 45.806 7 32 18.194 7 32 7a24.99 24.99 0 0 1 17.676 7.322ZM32 2a29.99 29.99 0 0 1 21.212 8.787A29.99 29.99 0 0 1 62 32c0 16.568-13.432 30-30 30C15.432 62 2 48.568 2 32 2 15.432 15.432 2 32 2Zm12.268 24.768a2.5 2.5 0 0 0-3.536-3.536L28.5 35.465l-5.232-5.233a2.5 2.5 0 1 0-3.536 3.536l7 7a2.5 2.5 0 0 0 3.536 0l14-14Z" + /> + d="M0 6a6 6 0 1 1 12 0A6 6 0 0 1 0 6Zm8.757-.94a.825.825 0 0 0-1.168-1.166L5.132 6.356l-.722-.721a.825.825 0 0 0-1.166 1.167L4.55 8.107a.825.825 0 0 0 1.167 0l3.04-3.048Z" + /> + d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm11.207-.793a1 1 0 0 0-1.414-1.414L7 8.586l-.793-.793a1 1 0 0 0-1.414 1.414l1.5 1.5a1 1 0 0 0 1.414 0l3.5-3.5Z" + /> + d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12c0-3.183-1.264-6.235-3.515-8.485A11.996 11.996 0 0 0 12 0Zm4.715 10.035A1 1 0 0 0 15.3 8.621l-4.632 4.631-1.962-1.962a1 1 0 0 0-1.414 1.415l2.67 2.669a1 1 0 0 0 1.413 0l5.339-5.339Z" + /> - + - + + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + d="M2.5 2A2.5 2.5 0 0 0 0 4.5V6a1 1 0 0 0 1 1 1 1 0 1 1 0 2 1 1 0 0 0-1 1v1.5A2.5 2.5 0 0 0 2.5 14h11a2.5 2.5 0 0 0 2.5-2.5V10a1 1 0 0 0-1-1 1 1 0 1 1 0-2 1 1 0 0 0 1-1V4.5A2.5 2.5 0 0 0 13.5 2h-11ZM6 4v.5a1 1 0 0 0 2 0V4h5.5a.5.5 0 0 1 .5.5v.67a3.001 3.001 0 0 0 0 5.66v.67a.5.5 0 0 1-.5.5H8.052l.023-.454a1 1 0 1 0-1.998-.101L6.05 12H2.5a.5.5 0 0 1-.5-.5v-.67a3.001 3.001 0 0 0 0-5.66V4.5a.5.5 0 0 1 .5-.5H6Zm1 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" + /> - + + d="M4 4a3 3 0 0 0-3 3v1.9c0 .618.497 1.082 1.067 1.101a2 2 0 0 1 0 3.998A1.103 1.103 0 0 0 1 15.1V17a3 3 0 0 0 3 3h16a3 3 0 0 0 3-3v-1.9c0-.618-.497-1.082-1.067-1.101a2 2 0 0 1 0-3.998A1.103 1.103 0 0 0 23 8.9V7a3 3 0 0 0-3-3H4Zm7 13v1h9a1 1 0 0 0 1-1v-1.126a4.001 4.001 0 0 1 0-7.748V7a1 1 0 0 0-1-1h-9v1a1 1 0 1 1-2 0V6H4a1 1 0 0 0-1 1v1.126a4.001 4.001 0 0 1 0 7.748V17a1 1 0 0 0 1 1h5v-1a1 1 0 1 1 2 0Zm0-6a1 1 0 1 0-2 0v2a1 1 0 1 0 2 0v-2Z" + /> + d="M2 4.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 .5.5V5H2v-.5ZM0 6V4.5A2.5 2.5 0 0 1 2.5 2h11A2.5 2.5 0 0 1 16 4.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 11.5V6Zm14 1v4.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V7h12Z" + /> - + - + + d="M8 16.5a2.5 2.5 0 0 1 2.5-2.5h43a2.5 2.5 0 0 1 2.5 2.5V20H8v-3.5ZM8 32v15.5a2.5 2.5 0 0 0 2.5 2.5h43a2.5 2.5 0 0 0 2.5-2.5V32H8Zm2.5-23A7.5 7.5 0 0 0 3 16.5v31a7.5 7.5 0 0 0 7.5 7.5h43a7.5 7.5 0 0 0 7.5-7.5v-31A7.5 7.5 0 0 0 53.5 9h-43Z" + /> - + - + - + - + - + - + - + + d="m4.22 4 .526-2.106A2.5 2.5 0 0 1 7.171 0H8.83a2.5 2.5 0 0 1 2.425 1.894L11.781 4H15a1 1 0 1 1 0 2h-1.095l-.775 7.749A2.5 2.5 0 0 1 10.643 16H5.358a2.5 2.5 0 0 1-2.488-2.25L2.095 6H1a1 1 0 0 1 0-2h3.22Zm2.466-1.621A.5.5 0 0 1 7.171 2H8.83a.5.5 0 0 1 .485.379L9.72 4H6.281l.405-1.621ZM4.98 6h6.915l-.755 7.55a.5.5 0 0 1-.497.45H5.358a.5.5 0 0 1-.498-.45L4.105 6h.874Z" + /> - + + d="m5.603 5 .52-1.824A3 3 0 0 1 9.009 1h1.983a3 3 0 0 1 2.885 2.176L14.396 5H18a1 1 0 1 1 0 2h-1.08l-.77 9.25A3 3 0 0 1 13.16 19H6.84a3 3 0 0 1-2.99-2.75L3.08 7H2a1 1 0 0 1 0-2h3.603Zm2.444-1.275A1 1 0 0 1 9.008 3h1.983a1 1 0 0 1 .962.725L12.317 5H7.683l.364-1.275ZM5.087 7h9.826l-.757 9.083a1 1 0 0 1-.996.917H6.84a1 1 0 0 1-.996-.917L5.087 7Z" + /> - + + d="m7.22 5 .431-1.728A3 3 0 0 1 10.561 1h2.878a3 3 0 0 1 2.91 2.272L16.781 5H22a1 1 0 1 1 0 2h-1.59l-1.244 13.28A3 3 0 0 1 16.179 23H7.82a3 3 0 0 1-2.987-2.72L3.59 7H2a1 1 0 0 1 0-2h5.22Zm2.372-1.243a1 1 0 0 1 .97-.757h2.877a1 1 0 0 1 .97.757L14.719 5H9.282l.31-1.243ZM7.979 7h10.422l-1.227 13.093a1 1 0 0 1-.995.907H7.82a1 1 0 0 1-.995-.907L5.598 7H7.98Z" + /> + d="M1.8 1.5a.8.8 0 0 0-.8.8v1.4a.8.8 0 0 0 .8.8h1.4a.8.8 0 0 0 .8-.8V2.3a.8.8 0 0 0-.8-.8H1.8ZM7 2a1 1 0 0 0 0 2h7a1 1 0 1 0 0-2H7Zm0 5a1 1 0 0 0 0 2h7a1 1 0 1 0 0-2H7Zm-1 6a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1ZM1 7.3a.8.8 0 0 1 .8-.8h1.4a.8.8 0 0 1 .8.8v1.4a.8.8 0 0 1-.8.8H1.8a.8.8 0 0 1-.8-.8V7.3Zm.8 4.2a.8.8 0 0 0-.8.8v1.4a.8.8 0 0 0 .8.8h1.4a.8.8 0 0 0 .8-.8v-1.4a.8.8 0 0 0-.8-.8H1.8Z" + /> + d="M1 3.5A1.5 1.5 0 0 1 2.5 2h2A1.5 1.5 0 0 1 6 3.5v2A1.5 1.5 0 0 1 4.5 7h-2A1.5 1.5 0 0 1 1 5.5v-2Zm1.5 6A1.5 1.5 0 0 0 1 11v2a1.5 1.5 0 0 0 1.5 1.5h2A1.5 1.5 0 0 0 6 13v-2a1.5 1.5 0 0 0-1.5-1.5h-2Zm0 7.5A1.5 1.5 0 0 0 1 18.5v2A1.5 1.5 0 0 0 2.5 22h2A1.5 1.5 0 0 0 6 20.5v-2A1.5 1.5 0 0 0 4.5 17h-2ZM10 3.5a1 1 0 1 0 0 2h12a1 1 0 1 0 0-2H10ZM9 12a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H10a1 1 0 0 1-1-1Zm1 6.5a1 1 0 1 0 0 2h12a1 1 0 1 0 0-2H10Z" + /> + d="M1 4.8a.8.8 0 0 1 .8-.8h1.4a.8.8 0 0 1 .8.8v1.4a.8.8 0 0 1-.8.8H1.8a.8.8 0 0 1-.8-.8V4.8Zm6-.3a1 1 0 0 0 0 2h7a1 1 0 1 0 0-2H7Zm0 5a1 1 0 1 0 0 2h7a1 1 0 1 0 0-2H7ZM1.8 9a.8.8 0 0 0-.8.8v1.4a.8.8 0 0 0 .8.8h1.4a.8.8 0 0 0 .8-.8V9.8a.8.8 0 0 0-.8-.8H1.8Z" + /> + d="M2.5 5.75A1.5 1.5 0 0 0 1 7.25v2a1.5 1.5 0 0 0 1.5 1.5h2A1.5 1.5 0 0 0 6 9.25v-2a1.5 1.5 0 0 0-1.5-1.5h-2Zm0 7.5a1.5 1.5 0 0 0-1.5 1.5v2a1.5 1.5 0 0 0 1.5 1.5h2a1.5 1.5 0 0 0 1.5-1.5v-2a1.5 1.5 0 0 0-1.5-1.5h-2Zm6.5-5a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H10a1 1 0 0 1-1-1Zm1 6.5a1 1 0 1 0 0 2h12a1 1 0 1 0 0-2H10Z" + /> + d="M1.8 6.5a.8.8 0 0 0-.8.8v1.4a.8.8 0 0 0 .8.8h1.4a.8.8 0 0 0 .8-.8V7.3a.8.8 0 0 0-.8-.8H1.8ZM7 7a1 1 0 0 0 0 2h7a1 1 0 1 0 0-2H7Z" + /> + d="M2.5 9.5A1.5 1.5 0 0 0 1 11v2a1.5 1.5 0 0 0 1.5 1.5h2A1.5 1.5 0 0 0 6 13v-2a1.5 1.5 0 0 0-1.5-1.5h-2ZM10 11a1 1 0 1 0 0 2h12a1 1 0 1 0 0-2H10Z" + /> - + - + - + - + - + - + - + + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + stroke-width="1" + /> + fill="#004A98" + /> + stroke-width="1" + /> + fill="#004A98" + /> + stroke-width="1" + /> + fill="#004A98" + /> + stroke-width="1" + /> + fill="#004A98" + /> + stroke-width="1" + /> + fill="#0054A5" + /> + fill="#FEC10E" + /> + fill="#0054A5" + /> + stroke-width="1" + /> + fill="#0054A5" + /> + fill="#FEC10E" + /> + fill="#0054A5" + /> + stroke-width="1" + /> + fill="#0054A5" + /> + fill="#FEC10E" + /> + fill="#0054A5" + /> + stroke-width="1" + /> + fill="#0054A5" + /> + fill="#FEC10E" + /> + fill="#0054A5" + /> - + + clip-rule="evenodd" + /> + d="M2.067 6.647a3.756 3.756 0 0 1-.875 2.113A4.98 4.98 0 0 0 0 12a4.98 4.98 0 0 0 1.191 3.24 3.75 3.75 0 0 1 .876 2.113 4.98 4.98 0 0 0 1.448 3.132 4.98 4.98 0 0 0 3.133 1.449c.77.061 1.524.374 2.113.875A4.98 4.98 0 0 0 12 24a4.98 4.98 0 0 0 3.24-1.191 3.756 3.756 0 0 1 2.113-.875 4.98 4.98 0 0 0 3.133-1.449 4.98 4.98 0 0 0 1.448-3.133 3.76 3.76 0 0 1 .875-2.113A4.98 4.98 0 0 0 24 12a4.98 4.98 0 0 0-1.19-3.239 3.756 3.756 0 0 1-.876-2.113 4.98 4.98 0 0 0-1.448-3.133 4.98 4.98 0 0 0-3.133-1.449 3.756 3.756 0 0 1-2.114-.875A4.98 4.98 0 0 0 12 0a4.98 4.98 0 0 0-3.24 1.191 3.756 3.756 0 0 1-2.112.875 4.98 4.98 0 0 0-3.133 1.449 4.98 4.98 0 0 0-1.448 3.132ZM4.93 4.929a2.98 2.98 0 0 0-.87 1.878 5.756 5.756 0 0 1-1.346 3.25A2.98 2.98 0 0 0 2 12c0 .743.268 1.419.714 1.943a5.756 5.756 0 0 1 1.346 3.25 2.98 2.98 0 0 0 .87 1.878 2.98 2.98 0 0 0 1.878.869 5.76 5.76 0 0 1 3.25 1.346A2.98 2.98 0 0 0 12 22a2.98 2.98 0 0 0 1.943-.714 5.756 5.756 0 0 1 3.25-1.346 2.98 2.98 0 0 0 1.879-.869 2.98 2.98 0 0 0 .869-1.879 5.756 5.756 0 0 1 1.345-3.25A2.98 2.98 0 0 0 22 12a2.98 2.98 0 0 0-.714-1.943 5.756 5.756 0 0 1-1.346-3.25 2.98 2.98 0 0 0-.869-1.878 2.98 2.98 0 0 0-1.878-.869 5.756 5.756 0 0 1-3.25-1.346A2.98 2.98 0 0 0 12 2a2.98 2.98 0 0 0-1.943.714A5.756 5.756 0 0 1 6.808 4.06a2.98 2.98 0 0 0-1.878.869Zm11.781 5.106a1 1 0 0 0-1.414-1.414l-4.632 4.631-1.962-1.962a1 1 0 0 0-1.414 1.415l2.67 2.669a1 1 0 0 0 1.414 0l5.338-5.339Z" + /> - + + d="M6.895 3.497 8 2.255l1.104 1.242a1.5 1.5 0 0 0 1.12.504h1.777v1.775c0 .428.184.837.504 1.121l1.241 1.104-1.241 1.103A1.5 1.5 0 0 0 12 10.225v1.776h-1.776a1.5 1.5 0 0 0-1.121.503L8 13.746l-1.105-1.242A1.5 1.5 0 0 0 5.775 12H3.997v-1.776a1.5 1.5 0 0 0-.504-1.121L2.253 8l1.241-1.104a1.5 1.5 0 0 0 .504-1.121V4h1.776a1.5 1.5 0 0 0 1.121-.504ZM9.121.507a1.5 1.5 0 0 0-2.242 0L5.55 2H3.498a1.5 1.5 0 0 0-1.5 1.5v2.05L.504 6.88a1.5 1.5 0 0 0 0 2.243l1.494 1.328v2.05a1.5 1.5 0 0 0 1.5 1.5H5.55l1.329 1.495a1.5 1.5 0 0 0 2.242 0L10.449 14h2.052a1.5 1.5 0 0 0 1.5-1.5v-2.05l1.495-1.328a1.5 1.5 0 0 0 0-2.243L14 5.551v-2.05a1.5 1.5 0 0 0-1.5-1.5h-2.05L9.121.506Zm1.41 6.024A.75.75 0 1 0 9.47 5.47l-4.001 4a.75.75 0 0 0 1.06 1.06l4.002-4ZM6.998 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM10 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" + /> + d="M13.391.563a2 2 0 0 0-2.783 0L8.095 2.998H5a2 2 0 0 0-2 2v3.536L.708 10.47a2 2 0 0 0 0 3.055L3 15.462v3.536a2 2 0 0 0 2 2h3.095l2.513 2.434a2 2 0 0 0 2.783 0l2.514-2.434H19a2 2 0 0 0 2-2v-3.536l2.291-1.937a2 2 0 0 0 0-3.055L21 8.534V4.998a2 2 0 0 0-2-2h-3.095L13.39.563ZM12 2l2.513 2.435a2 2 0 0 0 1.392.563H19v3.536a2 2 0 0 0 .709 1.527L22 11.998l-2.291 1.937a2 2 0 0 0-.71 1.527v3.536h-3.094a2 2 0 0 0-1.392.563L12 21.995l-2.514-2.434a2 2 0 0 0-1.391-.563H5v-3.536a2 2 0 0 0-.71-1.527L2 11.998l2.292-1.937A2 2 0 0 0 5 8.534V4.998h3.095a2 2 0 0 0 1.391-.563L12 2Zm3.707 7.705a1 1 0 0 0-1.415-1.415l-6 6a1 1 0 1 0 1.415 1.415l6-6Zm-5.208-.458a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Zm4.25 6.75a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z" + /> + d="M8.085 3C5.263 3 3 5.252 3 8s2.263 5 5.085 5a5.1 5.1 0 0 0 4.409-2.506 1 1 0 0 1 1.725 1.012A7.099 7.099 0 0 1 8.085 15C4.185 15 1 11.88 1 8s3.185-7 7.085-7C10.632 1 12.661 2.372 14 4.132V4a1 1 0 1 1 2 0v3a1 1 0 0 1-1 1h-2.5a1 1 0 1 1 0-2h.355c-1.041-1.727-2.735-3-4.77-3ZM6.53 10.53l4-4a.75.75 0 1 0-1.06-1.06l-4 4a.75.75 0 1 0 1.06 1.06ZM7 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm3 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" + /> + d="M12.128 4C7.626 4 4 7.595 4 12c0 4.405 3.626 8 8.128 8 3.546 0 6.554-2.234 7.667-5.337a1 1 0 0 1 1.882.674C20.284 19.225 16.53 22 12.127 22 6.548 22 2 17.536 2 12S6.548 2 12.128 2c4.07 0 7.025 2.46 8.872 5.417V6.5a1 1 0 1 1 2 0V10a1 1 0 0 1-1 1h-3.5a1 1 0 1 1 0-2h1.115c-1.6-2.847-4.129-5-7.487-5Zm-2.42 11.707 6-6a1 1 0 0 0-1.415-1.414l-6 6a1 1 0 1 0 1.414 1.414ZM10.5 9.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM14.75 16a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z" + /> + stroke-width="1" + /> + fill="#2F292B" + /> + fill="#F99528" + /> + fill="#001E2D" + /> + fill="#2F292B" + /> + fill="#2F292B" + /> + fill="#001E2D" + /> + fill="#F89833" + /> + fill="#F89D3D" + /> + fill="#F9A247" + /> + fill="#F9A751" + /> + fill="#FAAC5B" + /> + fill="#FAB165" + /> + fill="#FAB165" + /> + fill="#FAB670" + /> + fill="#FBBC7B" + /> + fill="#FBC186" + /> + fill="#FCC791" + /> + fill="#FCCC9C" + /> + fill="#FCCC9C" + /> + fill="#FDD1A6" + /> + fill="#FDD6B0" + /> + fill="#FEDBBA" + /> + fill="#FEE0C4" + /> + fill="#FEE0C4" + /> + fill="#FFE6D0" + /> + fill="#FFECDC" + /> + fill="#FFECDC" + /> + fill="#FFF0E5" + /> + stroke-width="1" + /> + fill="#2F292B" + /> + fill="#F99528" + /> + fill="#001E2D" + /> + fill="#2F292B" + /> + fill="#2F292B" + /> + fill="#001E2D" + /> + fill="#F89833" + /> + fill="#F89D3D" + /> + fill="#F9A247" + /> + fill="#F9A751" + /> + fill="#FAAC5B" + /> + fill="#FAB165" + /> + fill="#FAB165" + /> + fill="#FAB670" + /> + fill="#FBBC7B" + /> + fill="#FBC186" + /> + fill="#FCC791" + /> + fill="#FCCC9C" + /> + fill="#FCCC9C" + /> + fill="#FDD1A6" + /> + fill="#FDD6B0" + /> + fill="#FEDBBA" + /> + fill="#FEE0C4" + /> + fill="#FEE0C4" + /> + fill="#FFE6D0" + /> + fill="#FFECDC" + /> + fill="#FFECDC" + /> + fill="#FFF0E5" + /> + stroke-width="1" + /> + fill="#2F292B" + /> + fill="#F99528" + /> + fill="#001E2D" + /> + fill="#2F292B" + /> + fill="#2F292B" + /> + fill="#001E2D" + /> + fill="#F89833" + /> + fill="#F89D3D" + /> + fill="#F9A247" + /> + fill="#F9A751" + /> + fill="#FAAC5B" + /> + fill="#FAB165" + /> + fill="#FAB165" + /> + fill="#FAB670" + /> + fill="#FBBC7B" + /> + fill="#FBC186" + /> + fill="#FCC791" + /> + fill="#FCCC9C" + /> + fill="#FCCC9C" + /> + fill="#FDD1A6" + /> + fill="#FDD6B0" + /> + fill="#FEDBBA" + /> + fill="#FEE0C4" + /> + fill="#FEE0C4" + /> + fill="#FFE6D0" + /> + fill="#FFECDC" + /> + fill="#FFECDC" + /> + fill="#FFF0E5" + /> + stroke-width="1" + /> + fill="#2F292B" + /> + fill="#F99528" + /> + fill="#001E2D" + /> + fill="#2F292B" + /> + fill="#2F292B" + /> + fill="#001E2D" + /> + fill="#F89833" + /> + fill="#F89D3D" + /> + fill="#F9A247" + /> + fill="#F9A751" + /> + fill="#FAAC5B" + /> + fill="#FAB165" + /> + fill="#FAB165" + /> + fill="#FAB670" + /> + fill="#FBBC7B" + /> + fill="#FBC186" + /> + fill="#FCC791" + /> + fill="#FCCC9C" + /> + fill="#FCCC9C" + /> + fill="#FDD1A6" + /> + fill="#FDD6B0" + /> + fill="#FEDBBA" + /> + fill="#FEE0C4" + /> + fill="#FEE0C4" + /> + fill="#FFE6D0" + /> + fill="#FFECDC" + /> + fill="#FFECDC" + /> + fill="#FFF0E5" + /> - + - + + d="M13 1a1 1 0 1 0-2 0v2.048c-1.142.125-2.275.5-3.185 1.194C6.716 5.08 6 6.347 6 8c0 1.664.709 2.809 1.818 3.555.556.374 1.2.639 1.864.84L6.47 15.252a1 1 0 0 0-1.954.418c.063.367.168.715.308 1.044l-2.487 2.211a1 1 0 0 0 1.328 1.495l18-16a1 1 0 0 0-1.328-1.495l-2.915 2.59c-.482-.728-1.18-1.287-1.946-1.683A7.604 7.604 0 0 0 13 3.074V1Zm2.896 5.872-4.401 3.912c-1.085-.224-1.953-.48-2.56-.889C8.368 9.515 8 8.986 8 8c0-1.008.409-1.696 1.028-2.168.653-.499 1.592-.79 2.633-.828 1.036-.037 2.08.183 2.895.604.655.339 1.105.774 1.34 1.264ZM13 21.038a8.796 8.796 0 0 0 2.408-.446C17.348 19.927 19 18.432 19 16c0-.843-.18-1.582-.54-2.214-.36-.63-.866-1.099-1.431-1.451a5.28 5.28 0 0 0-.181-.108 1 1 0 1 0-.99 1.737l.112.068c.343.214.588.457.751.744.163.286.279.672.279 1.224 0 1.308-.82 2.214-2.241 2.702-1.449.496-3.341.463-4.927-.095a7.001 7.001 0 0 1-.22-.082 1 1 0 1 0-.728 1.863A9.837 9.837 0 0 0 11 20.94V23a1 1 0 1 0 2 0v-1.962Z" + /> - + + clip-rule="evenodd" + /> + d="M11 2a1 1 0 1 0-2 0v9.586L5.707 8.293a1 1 0 0 0-1.414 1.414l5 5a1 1 0 0 0 1.414 0l5-5a1 1 0 0 0-1.414-1.414L11 11.586V2ZM2 17a1 1 0 1 0 0 2h16a1 1 0 1 0 0-2H2Z" + /> + d="M12 1a1 1 0 0 1 1 1v12.586l5.293-5.293a1 1 0 1 1 1.414 1.414l-7 7a1 1 0 0 1-1.414 0l-7-7a1 1 0 0 1 1.414-1.414L11 14.586V2a1 1 0 0 1 1-1ZM2 21a1 1 0 1 0 0 2h20a1 1 0 1 0 0-2H2Z" + /> + d="M5 4a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm6 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM7 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 2a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm-4 4a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 2a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" + /> + d="M7.5 6a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm9 0a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM10 12a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm6.5 2.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm-6.5 6a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm6.5 2.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z" + /> + stroke-width="1" + /> + fill="#FFBD14" + /> + fill="#F02D2D" + /> + fill="#0968F6" + /> + fill="#92C821" + /> + stroke-width="1" + /> + fill="#FFBD14" + /> + fill="#F02D2D" + /> + fill="#0968F6" + /> + fill="#92C821" + /> + stroke-width="1" + /> + fill="#FFBD14" + /> + fill="#F02D2D" + /> + fill="#0968F6" + /> + fill="#92C821" + /> + stroke-width="1" + /> + fill="#FFBD14" + /> + fill="#F02D2D" + /> + fill="#0968F6" + /> + fill="#92C821" + /> + fill="#4D8312" + /> + fill="#fff" + /> + fill="url(#ref-ebay-credit-card-black-12-colored)" + /> + fill="#fff" + /> - - + gradientUnits="userSpaceOnUse" + > + + @@ -3265,10 +4086,12 @@ width="30" height="18" rx="2" - fill="url(#ref-ebay-credit-card-black-18-colored)"/> + fill="url(#ref-ebay-credit-card-black-18-colored)" + /> + fill="#fff" + /> - - + gradientUnits="userSpaceOnUse" + > + + @@ -3286,10 +4110,12 @@ width="38" height="24" rx="2" - fill="url(#ref-ebay-credit-card-black-24-colored)"/> + fill="url(#ref-ebay-credit-card-black-24-colored)" + /> + fill="#fff" + /> - - + gradientUnits="userSpaceOnUse" + > + + @@ -3307,10 +4134,12 @@ width="50" height="32" rx="2" - fill="url(#ref-ebay-credit-card-black-32-colored)"/> + fill="url(#ref-ebay-credit-card-black-32-colored)" + /> + fill="#fff" + /> - - + gradientUnits="userSpaceOnUse" + > + + @@ -3328,10 +4158,12 @@ width="20" height="12" rx="2" - fill="url(#ref-ebay-credit-card-purple-12-colored)"/> + fill="url(#ref-ebay-credit-card-purple-12-colored)" + /> + fill="#fff" + /> - - - - + gradientUnits="userSpaceOnUse" + > + + + + @@ -3351,10 +4184,12 @@ width="30" height="18" rx="2" - fill="url(#ref-ebay-credit-card-purple-18-colored)"/> + fill="url(#ref-ebay-credit-card-purple-18-colored)" + /> + fill="#fff" + /> - - - - + gradientUnits="userSpaceOnUse" + > + + + + @@ -3374,10 +4210,12 @@ width="38" height="24" rx="2" - fill="url(#ref-ebay-credit-card-purple-24-colored)"/> + fill="url(#ref-ebay-credit-card-purple-24-colored)" + /> + fill="#fff" + /> - - - - + gradientUnits="userSpaceOnUse" + > + + + + @@ -3397,10 +4236,12 @@ width="50" height="32" rx="2" - fill="url(#ref-ebay-credit-card-purple-32-colored)"/> + fill="url(#ref-ebay-credit-card-purple-32-colored)" + /> + fill="#fff" + /> - - - - + gradientTransform="matrix(-.6479 65.23918 -50.08203 -.49738 48.148 30.261)" + > + + + + @@ -3420,10 +4262,12 @@ width="20" height="12" rx="2" - fill="url(#ref-ebay-credit-card-white-12-colored)"/> + fill="url(#ref-ebay-credit-card-white-12-colored)" + /> + fill="#363636" + /> - - + gradientUnits="userSpaceOnUse" + > + + @@ -3441,10 +4286,12 @@ width="30" height="18" rx="2" - fill="url(#ref-ebay-credit-card-white-18-colored)"/> + fill="url(#ref-ebay-credit-card-white-18-colored)" + /> + fill="#363636" + /> - - + gradientUnits="userSpaceOnUse" + > + + @@ -3462,10 +4310,12 @@ width="38" height="24" rx="2" - fill="url(#ref-ebay-credit-card-white-24-colored)"/> + fill="url(#ref-ebay-credit-card-white-24-colored)" + /> + fill="#363636" + /> - - + gradientUnits="userSpaceOnUse" + > + + @@ -3483,10 +4334,12 @@ width="50" height="32" rx="2" - fill="url(#ref-ebay-credit-card-white-32-colored)"/> + fill="url(#ref-ebay-credit-card-white-32-colored)" + /> + fill="#363636" + /> - - + gradientUnits="userSpaceOnUse" + > + + + d="M11.608 8.585c.348-.493.64-.93.808-1.23l.006-.011.005-.01c.37-.7.573-1.498.573-2.334A5 5 0 0 0 3 5c0 .806.192 1.644.586 2.35.157.282.443.713.808 1.231-1.05 1.26-2.102 2.52-3.158 3.774a1 1 0 0 0 .268 1.513l3.5 2a1 1 0 0 0 1.283-.25A388.7 388.7 0 0 0 8 13.407c.568.739 1.14 1.475 1.713 2.209a1 1 0 0 0 1.283.251l3.5-2a1 1 0 0 0 .268-1.513 875.93 875.93 0 0 1-3.156-3.77ZM5.351 3.591C5.127 4.011 5 4.491 5 5c0 .502.123.973.339 1.387.379.673 1.823 2.625 3.247 4.496.721.941 1.442 1.883 2.17 2.819l1.707-.976c-.447-.533-1.05-1.25-1.693-2.023-1.318-1.58-2.83-3.405-3.557-4.338C6.375 5.292 5.724 4.38 5.35 3.591Zm1.62-1.41c.013.11.058.278.177.533.17.365.449.811.852 1.373.44-.614.729-1.086.89-1.459.09-.208.128-.35.139-.447a2.994 2.994 0 0 0-2.058 0Zm3.313 4.803c-.376-.457-.723-.883-1.015-1.246.6-.8 1.078-1.51 1.38-2.147.224.42.351.9.351 1.409 0 .506-.122.98-.336 1.39a9.388 9.388 0 0 1-.38.594Zm-3.541 4.779c-.38-.5-.767-1.015-1.137-1.512-.688.826-1.377 1.652-2.07 2.475l1.709.976c.501-.645.999-1.292 1.498-1.94Z" + /> + d="m16.497 12.753 1.358-1.916.023-.034A7 7 0 1 0 5 7a6.97 6.97 0 0 0 1.12 3.803l.011.018 1.38 1.945-5.292 6.609a1 1 0 0 0 .267 1.483l5 3a1 1 0 0 0 1.33-.28L12 19.092l3.184 4.488a1 1 0 0 0 1.33.279l5-3a1 1 0 0 0 .268-1.482l-5.285-6.623Zm-8.32-8.975A4.98 4.98 0 0 0 7 7c0 .997.288 1.922.787 2.698l8.493 11.968 3.226-1.936-8.257-10.349a.986.986 0 0 1-.023-.03c-1.57-2.13-2.646-3.657-3.05-5.573ZM10.01 2.41c.083 1.599.678 2.75 2.005 4.623 1.322-1.865 1.917-3.02 2.004-4.61A4.982 4.982 0 0 0 12 2c-.707 0-1.38.147-1.99.411Zm5.188 8.715-1.925-2.414c1.308-1.8 2.209-3.198 2.575-4.904A4.98 4.98 0 0 1 17 7c0 .996-.29 1.92-.79 2.698l-1.01 1.428Zm-4.425 6.237-2.058-2.9-4.22 5.269 3.224 1.934 3.054-4.303Z" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + d="M20.214 37.666A74.415 74.415 0 0 1 20 32c0-2.04.081-4.032.237-5.957-4.345-.76-8.139-1.946-11.402-3.46a24.929 24.929 0 0 0-1.811 10.513c3.164 1.67 7.873 3.414 13.19 4.57Zm.601 5.226c-4.803-.918-9.24-2.312-12.798-3.811a25.055 25.055 0 0 0 16.749 16.856c-1.758-3.324-3.137-7.83-3.95-13.045Zm5.204.779C27.995 43.883 30 44 32 44c2.002 0 4.006-.117 5.98-.33-.542 2.935-1.276 5.534-2.137 7.686-.946 2.366-1.948 3.945-2.805 4.85-.58.614-.928.76-1.038.79-.11-.03-.458-.176-1.038-.79-.857-.905-1.859-2.484-2.805-4.85-.86-2.152-1.595-4.75-2.137-7.685Zm12.673-5.119c-2.2.285-4.45.448-6.692.448s-4.491-.163-6.692-.448A68.667 68.667 0 0 1 25 32c0-1.825.07-3.597.2-5.302 2.152.198 4.417.302 6.8.302s4.648-.104 6.8-.302c.13 1.705.2 3.477.2 5.302 0 2.276-.108 4.47-.308 6.552Zm4.493 4.34c-.814 5.215-2.193 9.72-3.95 13.045a25.055 25.055 0 0 0 16.748-16.856c-3.558 1.5-7.995 2.893-12.798 3.811Zm13.791-9.796c-3.164 1.67-7.873 3.414-13.19 4.57.14-1.835.214-3.729.214-5.666 0-2.04-.081-4.032-.237-5.957 4.345-.76 8.139-1.946 11.402-3.46a24.927 24.927 0 0 1 1.811 10.513ZM32 22c2.196 0 4.268-.093 6.221-.27-.557-3.511-1.383-6.598-2.378-9.086-.946-2.366-1.948-3.945-2.805-4.85-.58-.614-.928-.76-1.038-.79-.11.03-.458.176-1.038.79-.857.905-1.859 2.484-2.805 4.85-.995 2.488-1.821 5.575-2.378 9.087 1.953.175 4.026.269 6.221.269Zm11.178-.932c3.73-.673 6.931-1.68 9.643-2.911A25.054 25.054 0 0 0 39.234 8.063c1.753 3.316 3.13 7.807 3.944 13.005ZM11.18 18.157c2.712 1.232 5.912 2.238 9.643 2.911.814-5.198 2.19-9.69 3.944-13.005A25.054 25.054 0 0 0 11.18 18.157ZM32 62c16.569 0 30-13.431 30-30C62 15.431 48.569 2 32 2 15.431 2 2 15.431 2 32c0 16.569 13.431 30 30 30Z" + /> - - - + + + - - - + + + + fill="#92C821" + /> + fill="#FFBD14" + /> + fill="#0968F6" + /> + fill="#F02D2D" + /> - + - - - - - - - - - - - - - - - + fill="#264186" + /> + + + + + + + + + + + + + + + + fill="#CF4C3C" + /> + fill="#EDB837" + /> + fill="#D5D0C7" + /> + fill="#968A81" + /> + fill="#B4C5A5" + /> + fill="#83FFEC" + /> + fill="#83FFEC" + /> + fill="#83FFEC" + /> + fill="#83FFEC" + /> - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + fill="#CF4C3C" + /> + fill="#EDB837" + /> + fill="#D5D0C7" + /> + fill="#968A81" + /> + fill="#B4C5A5" + /> + fill="#83FFEC" + /> + fill="#83FFEC" + /> + fill="#83FFEC" + /> + fill="#83FFEC" + /> - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + fill="#CF4C3C" + /> + fill="#EDB837" + /> + fill="#D5D0C7" + /> + fill="#968A81" + /> + fill="#B4C5A5" + /> + fill="#83FFEC" + /> + fill="#83FFEC" + /> + fill="#83FFEC" + /> + fill="#83FFEC" + /> - + - - - - - - - - - - - - - - - - + fill="#264186" + /> + + + + + + + + + + + + + + + + + fill="#CF4C3C" + /> + fill="#EDB837" + /> + fill="#D5D0C7" + /> + fill="#968A81" + /> + fill="#B4C5A5" + /> + fill="#83FFEC" + /> + fill="#83FFEC" + /> + fill="#83FFEC" + /> + fill="#83FFEC" + /> + id="icon-ebay-money-back-guarantee-logo-16-colored" + > + fill="#92C821" + /> + fill="#191919" + /> + fill="#796E65" + /> + fill="#0968F6" + /> + fill="#FFBD14" + /> + fill="#F02D2D" + /> + d="M8 1a1 1 0 0 1 1 1v2.5a1 1 0 0 1-2 0V2a1 1 0 0 1 1-1Zm2.5 7a1 1 0 0 1 1-1H14a1 1 0 1 1 0 2h-2.5a1 1 0 0 1-1-1ZM2 7a1 1 0 0 0 0 2h4.5a.5.5 0 0 1 .5.5V14a1 1 0 1 0 2 0V9.5A2.5 2.5 0 0 0 6.5 7H2Z" + /> + d="M12 1a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V2a1 1 0 0 1 1-1ZM1 12a1 1 0 0 1 1-1h8a3 3 0 0 1 3 3v8a1 1 0 1 1-2 0v-8a1 1 0 0 0-1-1H2a1 1 0 0 1-1-1Zm15-1a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-6Z" + /> + fill="#23804F" + /> + fill="#231F20" + /> + fill="#D5FBD1" + /> + fill="#fff" + /> + d="M10.094 3.225c-.343.18-.779.517-1.317 1.155a1.002 1.002 0 0 1-1.54.015C6.16 3.17 5.473 3 5 3c-.772 0-1.238.294-1.53.65C3.153 4.037 3 4.555 3 5c0 1.433 1.163 2.276 2.54 3.158a1 1 0 1 1-1.08 1.684l-.075-.048C3.174 9.019 1 7.629 1 5c0-.845.276-1.827.923-2.617C2.596 1.56 3.63 1 5 1c.995 0 1.963.377 2.988 1.307a5.473 5.473 0 0 1 1.176-.853A3.852 3.852 0 0 1 11 1c1.371 0 2.406.563 3.078 1.385.647.79.922 1.772.922 2.615 0 1.372-.761 2.615-1.718 3.652-.975 1.055-2.275 2.029-3.626 2.874-2.699 1.689-5.784 2.98-7.381 3.435a1 1 0 1 1-.55-1.922c1.404-.401 4.318-1.611 6.87-3.208 1.274-.797 2.41-1.663 3.217-2.536C12.637 6.402 13 5.628 13 5c0-.443-.152-.96-.47-1.349C12.238 3.294 11.772 3 11 3c-.288 0-.575.05-.906.225Zm1.46 10.67a1 1 0 1 1 .893-1.79l2 1a1 1 0 0 1-.894 1.79l-2-1Z" + /> - + - + + clip-rule="evenodd" + /> + d="M2.067 6.647a3.756 3.756 0 0 1-.875 2.113A4.98 4.98 0 0 0 0 12a4.98 4.98 0 0 0 1.191 3.24 3.75 3.75 0 0 1 .876 2.113 4.98 4.98 0 0 0 1.448 3.132 4.98 4.98 0 0 0 3.133 1.449c.77.061 1.524.374 2.113.875A4.98 4.98 0 0 0 12 24a4.98 4.98 0 0 0 3.24-1.191 3.756 3.756 0 0 1 2.113-.875 4.98 4.98 0 0 0 3.133-1.449 4.98 4.98 0 0 0 1.448-3.133 3.76 3.76 0 0 1 .875-2.113A4.98 4.98 0 0 0 24 12a4.98 4.98 0 0 0-1.19-3.239 3.756 3.756 0 0 1-.876-2.113 4.98 4.98 0 0 0-1.448-3.133 4.98 4.98 0 0 0-3.133-1.449 3.756 3.756 0 0 1-2.114-.875A4.98 4.98 0 0 0 12 0a4.98 4.98 0 0 0-3.24 1.191 3.756 3.756 0 0 1-2.112.875 4.98 4.98 0 0 0-3.133 1.449 4.98 4.98 0 0 0-1.448 3.132ZM4.93 4.929a2.98 2.98 0 0 0-.87 1.878 5.756 5.756 0 0 1-1.346 3.25A2.98 2.98 0 0 0 2 12c0 .743.268 1.419.714 1.943a5.756 5.756 0 0 1 1.346 3.25 2.98 2.98 0 0 0 .87 1.878 2.98 2.98 0 0 0 1.878.869 5.76 5.76 0 0 1 3.25 1.346A2.98 2.98 0 0 0 12 22a2.98 2.98 0 0 0 1.943-.714 5.756 5.756 0 0 1 3.25-1.346 2.98 2.98 0 0 0 1.879-.869 2.98 2.98 0 0 0 .869-1.879 5.756 5.756 0 0 1 1.345-3.25A2.98 2.98 0 0 0 22 12a2.98 2.98 0 0 0-.714-1.943 5.756 5.756 0 0 1-1.346-3.25 2.98 2.98 0 0 0-.869-1.878 2.98 2.98 0 0 0-1.878-.869 5.756 5.756 0 0 1-3.25-1.346A2.98 2.98 0 0 0 12 2a2.98 2.98 0 0 0-1.943.714A5.756 5.756 0 0 1 6.808 4.06a2.98 2.98 0 0 0-1.878.869Zm11.781 5.106a1 1 0 0 0-1.414-1.414l-4.632 4.631-1.962-1.962a1 1 0 0 0-1.414 1.415l2.67 2.669a1 1 0 0 0 1.414 0l5.338-5.339Z" + /> + stroke-width="1" + /> + fill="black" + /> + stroke-width="1" + /> + fill="url(#ref-eftpos-12-colored)" + /> + fill="#E50056" + /> + fill="#1F0038" + /> - - + gradientUnits="userSpaceOnUse" + > + + @@ -3869,16 +4809,20 @@ rx="1.5" fill="#fff" stroke="#191919" - stroke-width="1"/> + stroke-width="1" + /> + fill="url(#ref-eftpos-18-colored)" + /> + fill="#E50056" + /> + fill="#1F0038" + /> - - + gradientUnits="userSpaceOnUse" + > + + @@ -3900,16 +4845,20 @@ rx="1.5" fill="#fff" stroke="#191919" - stroke-width="1"/> + stroke-width="1" + /> + fill="url(#ref-eftpos-24-colored)" + /> + fill="#E50056" + /> + fill="#1F0038" + /> - - + gradientUnits="userSpaceOnUse" + > + + @@ -3931,16 +4881,20 @@ rx="1.5" fill="#fff" stroke="#191919" - stroke-width="1"/> + stroke-width="1" + /> + fill="url(#ref-eftpos-32-colored)" + /> + fill="#E50056" + /> + fill="#1F0038" + /> - - + gradientUnits="userSpaceOnUse" + > + + @@ -3962,17 +4917,23 @@ rx="1.5" fill="#fff" stroke="#191919" - stroke-width="1"/> + stroke-width="1" + /> + fill="#F7CB46" + /> + fill="#48A0DA" + /> - + fill="#DB5033" + /> + + stroke-width="1" + /> + fill="#F7CB46" + /> + fill="#48A0DA" + /> - + fill="#DB5033" + /> + + stroke-width="1" + /> + fill="#F7CB46" + /> + fill="#48A0DA" + /> - + fill="#DB5033" + /> + + stroke-width="1" + /> + fill="#F7CB46" + /> + fill="#48A0DA" + /> - + fill="#DB5033" + /> + + stroke-width="1" + /> + fill="#3CB95D" + /> + fill="#00416A" + /> + stroke-width="1" + /> + fill="#3CB95D" + /> + fill="#00416A" + /> + stroke-width="1" + /> + fill="#3CB95D" + /> + fill="#00416A" + /> + stroke-width="1" + /> + fill="#3CB95D" + /> + fill="#00416A" + /> - + - + - + + d="M4.523 3.11a6 6 0 0 1 8.367 8.367L4.524 3.108ZM3.11 4.522a6 6 0 0 0 8.367 8.367L3.11 4.524ZM8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0Z" + /> + d="M5.671 4.257A9.959 9.959 0 0 1 12 2c5.523 0 10 4.477 10 10a9.958 9.958 0 0 1-2.257 6.329L5.67 4.257ZM4.257 5.671A9.959 9.959 0 0 0 2 12c0 5.523 4.477 10 10 10a9.958 9.958 0 0 0 6.329-2.257L4.257 5.67ZM12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0Z" + /> + d="M16.308 12.537A24.895 24.895 0 0 1 32 7c13.807 0 25 11.193 25 25a24.895 24.895 0 0 1-5.537 15.692L16.308 12.537Zm-3.771 3.771A24.895 24.895 0 0 0 7 32c0 13.807 11.193 25 25 25a24.895 24.895 0 0 0 15.692-5.537L12.537 16.308ZM32 2C15.431 2 2 15.431 2 32c0 16.569 13.431 30 30 30 16.569 0 30-13.431 30-30C62 15.431 48.569 2 32 2Z" + /> - + + d="M4 2.586 2.586 4 4 5.414 5.414 4 4 2.586ZM4.884.642a1.25 1.25 0 0 0-1.768 0L.64 3.116a1.25 1.25 0 0 0 0 1.768L3.116 7.36a1.25 1.25 0 0 0 1.768 0l2.475-2.475a1.25 1.25 0 0 0 0-1.768L4.884.642ZM3 13v-2h2v2H3Zm-2-2.75C1 9.56 1.56 9 2.25 9h3.5C6.44 9 7 9.56 7 10.25v3.5C7 14.44 6.44 15 5.75 15h-3.5C1.56 15 1 14.44 1 13.75v-3.5ZM13 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm2 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-4-7V3h2v2h-2ZM9 2.25C9 1.56 9.56 1 10.25 1h3.5c.69 0 1.25.56 1.25 1.25v3.5C15 6.44 14.44 7 13.75 7h-3.5C9.56 7 9 6.44 9 5.75v-3.5Z" + /> + d="M6.5 9.807 3.193 6.5 6.5 3.193 9.807 6.5 6.5 9.807ZM1.45 7.585a1.534 1.534 0 0 1 0-2.17L5.414 1.45a1.534 1.534 0 0 1 2.17 0l3.966 3.966c.599.6.599 1.57 0 2.17L7.585 11.55c-.6.6-1.57.6-2.17 0L1.45 7.585ZM20 4h-5v5h5V4Zm-5.5-2A1.5 1.5 0 0 0 13 3.5v6a1.5 1.5 0 0 0 1.5 1.5h6A1.5 1.5 0 0 0 22 9.5v-6A1.5 1.5 0 0 0 20.5 2h-6ZM20 17.5a2.5 2.5 0 1 1-5.001-.001 2.5 2.5 0 0 1 5 0Zm2 0a4.501 4.501 0 0 1-8.658 1.721 4.501 4.501 0 0 1 7.34-4.904A4.5 4.5 0 0 1 22 17.5ZM4 20v-5h5v5H4Zm-2-5.5A1.5 1.5 0 0 1 3.5 13h6a1.5 1.5 0 0 1 1.5 1.5v6A1.5 1.5 0 0 1 9.5 22h-6A1.5 1.5 0 0 1 2 20.5v-6Z" + /> + d="M11.586 3 7.293 7.293a1 1 0 0 0 1.414 1.414L13 4.414V6a1 1 0 1 0 2 0V1.997A.997.997 0 0 0 14 1h-4a1 1 0 1 0 0 2h1.586ZM1 5.5A2.5 2.5 0 0 1 3.5 3H6a1 1 0 0 1 0 2H3.5a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5V10a1 1 0 1 1 2 0v2.5a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 1 12.5v-7Z" + /> + d="M12 2a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V4.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L15.586 3H13a1 1 0 0 1-1-1ZM5 3a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h9a3 3 0 0 0 3-3v-4a1 1 0 1 0-2 0v4a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h4a1 1 0 0 0 0-2H5Z" + /> + d="M21 2a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V5.414l-8.293 8.293a1 1 0 0 1-1.414-1.414L18.586 4H16a1 1 0 1 1 0-2h5ZM5 6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-6a1 1 0 1 1 2 0v6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h7a1 1 0 1 1 0 2H5Z" + /> - + - + - - - + + + + d="M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8Zm6-8a8 8 0 1 0 0 16A8 8 0 0 0 8 0ZM6.125 7a1.125 1.125 0 1 0 0-2.25 1.125 1.125 0 0 0 0 2.25ZM11 5.875a1.125 1.125 0 1 1-2.25 0 1.125 1.125 0 0 1 2.25 0Zm.412 2.213a1 1 0 0 0-1.323.499c-.428.945-1.131 1.412-2.09 1.412L7.962 10c-.938-.012-1.628-.48-2.05-1.412a1 1 0 0 0-1.822.825C4.813 11.013 6.192 12 7.999 12h.051c1.784-.018 3.143-1.002 3.861-2.587a1 1 0 0 0-.498-1.324Z" + /> - + + d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0ZM2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Z" + /> - + + d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0ZM2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Z" + /> - + + d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0ZM2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Z" + /> - + d="M17 18a1 1 0 0 0 1-1 6 6 0 0 0-12 0 1 1 0 0 0 1 1h10Zm-5-5a4.002 4.002 0 0 1 3.874 3H8.126c.444-1.725 2.01-3 3.874-3Z" + /> + + d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0ZM2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Z" + /> - + - + + d="M6.962 3.277c.147-.432.328-.781.527-1.007C7.67 2.065 7.826 2 8 2s.33.065.51.27c.2.226.38.575.528 1.007.147.43.55.723 1.01.723h1.671l-.668 2.675A1.067 1.067 0 0 0 12.085 8h1.683c-.66 2.003-2.489 3.564-4.768 3.922V8.333a1 1 0 1 0-2 0v3.59C4.721 11.563 2.892 10.002 2.232 8h1.683c.694 0 1.203-.652 1.035-1.325L4.28 4h1.672c.46 0 .863-.294 1.01-.723ZM.002 7.052c0 .022.002.045.005.067C.388 10.706 3.35 13.503 7 13.94V15a1 1 0 1 0 2 0v-1.06c3.65-.437 6.612-3.234 6.993-6.821a.995.995 0 0 0-.612-1.044.995.995 0 0 0-.395-.075h-1.705l.456-1.826A1.75 1.75 0 0 0 12.04 2h-1.36a4.349 4.349 0 0 0-.67-1.054C9.545.419 8.877 0 8 0c-.877 0-1.545.42-2.01.946-.281.319-.5.687-.67 1.054H3.96a1.75 1.75 0 0 0-1.697 2.174L2.719 6H1.014a1.006 1.006 0 0 0-.757.33.998.998 0 0 0-.256.722Z" + /> + d="M9.97 5.25c.253-.755.574-1.64.993-2.328.451-.74.81-.922 1.037-.922.227 0 .586.182 1.037.922.42.688.74 1.573.992 2.328a1.1 1.1 0 0 0 1.043.75h2.708l-.737 3.684A1.1 1.1 0 0 0 18.123 11h2.703c-.843 3.688-3.984 6.522-7.826 6.945V11a1 1 0 1 0-2 0v6.945C7.158 17.522 4.018 14.688 3.175 11h2.703a1.1 1.1 0 0 0 1.079-1.316L6.22 6h2.708a1.1 1.1 0 0 0 1.043-.75Zm-8.969 4.8a.998.998 0 0 0 .005.063c.526 5.23 4.754 9.37 9.994 9.842V23a1 1 0 1 0 2 0v-3.045c5.24-.471 9.468-4.612 9.994-9.842l.005-.063A.997.997 0 0 0 21.987 9H19.22l.521-2.608A2 2 0 0 0 17.781 4h-2.068c-.239-.664-.556-1.442-.968-2.119C14.227 1.031 13.349 0 12 0c-1.35 0-2.227 1.031-2.745 1.881-.412.677-.73 1.455-.968 2.119H6.22a2 2 0 0 0-1.961 2.392L4.78 9H2.013a1.009 1.009 0 0 0-.754.329.999.999 0 0 0-.258.72Z" + /> - + + d="M0 2.5A2.5 2.5 0 0 1 2.5 0h8A2.5 2.5 0 0 1 13 2.5V4a1 1 0 1 1-2 0V2.5a.5.5 0 0 0-.5-.5h-8a.5.5 0 0 0-.5.5v11a.5.5 0 0 0 .5.5H4a1 1 0 1 1 0 2H2.5A2.5 2.5 0 0 1 0 13.5v-11ZM4 4a1 1 0 0 0 0 2h4a1 1 0 0 0 0-2H4ZM3 8a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H4a1 1 0 0 1-1-1Zm12.194-.643a2.75 2.75 0 0 0-3.89 0l-3.799 3.8a2 2 0 0 0-.552 1.048l-.376 2.02a1.5 1.5 0 0 0 1.75 1.75l2.02-.377a2 2 0 0 0 1.047-.552l3.8-3.8a2.75 2.75 0 0 0 0-3.889Zm-2.475 1.415a.75.75 0 0 1 1.06 1.06l-3.799 3.8-1.304.243.243-1.304 3.8-3.8Z" + /> + d="M2 4a3 3 0 0 1 3-3h9.004a3 3 0 0 1 3 3v1a1 1 0 1 1-2 0V4a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h1.002a1 1 0 1 1 0 2H5a3 3 0 0 1-3-3V4Zm4.001 1a1 1 0 0 0 0 2h6.002a1 1 0 1 0 0-2H6.001Zm-1 5a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2h-3a1 1 0 0 1-1-1Zm14.194-1.194a2.751 2.751 0 0 0-3.89 0l-5.064 5.062a2 2 0 0 0-.509.865l-.67 2.35a1.5 1.5 0 0 0 1.854 1.853l2.35-.67a2 2 0 0 0 .865-.51l5.064-5.061a2.75 2.75 0 0 0 0-3.89Zm-2.476 1.414a.75.75 0 0 1 1.061 1.06l-5.063 5.063-1.485.423.424-1.484 5.063-5.062Z" + /> + d="M5 1a3 3 0 0 0-3 3v16a3 3 0 0 0 3 3h2a1 1 0 1 0 0-2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3a1 1 0 1 0 2 0V4a3 3 0 0 0-3-3H5Zm1 6a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h5a1 1 0 1 0 0-2H7Zm-1 5a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm17.195-4.999a2.75 2.75 0 0 0-3.889 0l-7.344 7.344a2 2 0 0 0-.433.648l-1.217 2.93c-.512 1.236.726 2.474 1.96 1.961l2.932-1.217c.242-.1.462-.247.647-.433l7.344-7.344a2.75 2.75 0 0 0 0-3.889Zm-2.474 1.414a.75.75 0 0 1 1.06 1.06l-7.344 7.345-1.814.753.753-1.813 7.345-7.345Z" + /> + d="M0 2.5A2.5 2.5 0 0 1 2.5 0h8A2.5 2.5 0 0 1 13 2.5V5a1 1 0 1 1-2 0V2.5a.5.5 0 0 0-.5-.5h-8a.5.5 0 0 0-.5.5v11a.5.5 0 0 0 .5.5H6a1 1 0 1 1 0 2H2.5A2.5 2.5 0 0 1 0 13.5v-11ZM4 4a1 1 0 0 0 0 2h4a1 1 0 0 0 0-2H4ZM3 8a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H4a1 1 0 0 1-1-1Zm9 0a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm.665 2.5a.665.665 0 1 0-1.33 0v1.16a.665.665 0 1 0 1.33 0V10.5ZM12 14.33A.665.665 0 1 0 12 13a.665.665 0 0 0 0 1.33Z" + /> + d="M5 1a3 3 0 0 0-3 3v16a3 3 0 0 0 3 3h6a1 1 0 1 0 0-2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v5a1 1 0 1 0 2 0V4a3 3 0 0 0-3-3H5Zm1 6a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h5a1 1 0 1 0 0-2H7Zm-1 5a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm18 2.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-4.8-2.235a.7.7 0 1 0-1.4 0V17.3a.7.7 0 1 0 1.4 0v-2.035Zm-.7 5.185a.725.725 0 1 0 0-1.45.725.725 0 0 0 0 1.45Z" + /> - + - + - + + d="M0 2.5A2.5 2.5 0 0 1 2.5 0h8A2.5 2.5 0 0 1 13 2.5V5a1 1 0 1 1-2 0V2.5a.5.5 0 0 0-.5-.5h-8a.5.5 0 0 0-.5.5v11a.5.5 0 0 0 .5.5H6a1 1 0 1 1 0 2H2.5A2.5 2.5 0 0 1 0 13.5v-11ZM4 4a1 1 0 0 0 0 2h4a1 1 0 0 0 0-2H4ZM3 8a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H4a1 1 0 0 1-1-1Zm9 0a4 4 0 1 0 4 4c0-2.179-1.821-4-4-4Zm1.803 2.641c.26.26.26.682 0 .942l-1.776 1.776a.666.666 0 0 1-.942 0l-.888-.888a.666.666 0 0 1 .942-.942l.417.418 1.305-1.306c.26-.26.682-.26.942 0Z" + /> + d="M5 1a3 3 0 0 0-3 3v16a3 3 0 0 0 3 3h6a1 1 0 1 0 0-2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v5a1 1 0 1 0 2 0V4a3 3 0 0 0-3-3H5Zm1 6a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h5a1 1 0 1 0 0-2H7Zm-1 5a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm7 2.5a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0Zm5.3 1.863 2.75-2.75h-.006a.688.688 0 0 0-.97-.97l-2.262 2.263-.886-.894a.688.688 0 1 0-.97.976l1.375 1.375a.687.687 0 0 0 .97 0Z" + /> + d="M14 12.5a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 12.5v-9A2.5 2.5 0 0 1 4.5 1h3.936a2.5 2.5 0 0 1 1.647.619l3.063 2.68A2.5 2.5 0 0 1 14 6.181V12.5Zm-10-9a.5.5 0 0 1 .5-.5H7v2.667A2.333 2.333 0 0 0 9.333 8H12v4.5a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-9ZM12 6H9.333A.333.333 0 0 1 9 5.667V3.329l2.863 2.475A.5.5 0 0 1 12 6Z" + /> + d="M21 20a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V4a3 3 0 0 1 3-3h6.26a3 3 0 0 1 1.953.722l5.74 4.92A3 3 0 0 1 21 8.92V20ZM5 4a1 1 0 0 1 1-1h6v4a3 3 0 0 0 3 3h4v10a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4Zm13.463 4H15a1 1 0 0 1-1-1V4.174L18.463 8Z" + /> + clip-rule="evenodd" + /> - + - + + d="M6.546 3.617A9.949 9.949 0 0 1 12 2c1.639 0 3.182.393 4.545 1.09a1 1 0 0 0 .91-1.781A11.954 11.954 0 0 0 12 0C9.587 0 7.337.713 5.454 1.941a1 1 0 1 0 1.092 1.676ZM5.5 12.037C5.631 8.514 8.454 5.5 12 5.5a6.5 6.5 0 0 1 6.5 6.5c0 2.09 1.277 3.813 3.184 4.449A1 1 0 0 0 23 15.524v-.048a1 1 0 0 0-.684-.925C21.223 14.187 20.5 13.224 20.5 12A8.5 8.5 0 0 0 12 3.5c-4.73 0-8.32 3.972-8.498 8.44a4.765 4.765 0 0 0-.015.268c-.007.18-.012.435-.006.757.013.643.072 1.552.254 2.638.314 1.87.996 4.28 2.45 6.764.321.55 1.072.623 1.522.173.336-.336.39-.86.153-1.27a17.968 17.968 0 0 1-2.153-5.998 16.266 16.266 0 0 1-.226-2.347 10.918 10.918 0 0 1 .012-.796l.003-.035v-.005l.002-.025.001-.027Zm4.403-2.155C9.375 10.446 9 11.315 9 12.5c0 .7.053 1.384.157 2.048.068.438-.125.883-.51 1.105-.585.338-1.331.025-1.442-.64A15.303 15.303 0 0 1 7 12.5c0-1.618.52-2.998 1.44-3.984C9.363 7.53 10.632 7 12 7a5 5 0 0 1 5 5v.5a5.501 5.501 0 0 0 3.255 5.022c.602.27.947 1.003.617 1.574-.216.375-.66.562-1.064.407A7.503 7.503 0 0 1 15 12.5V12a3 3 0 0 0-3-3c-.84 0-1.572.319-2.098.882ZM8.654 17.32c.538-.31 1.224-.051 1.48.515.743 1.647 1.824 3.116 3.166 4.367.432.402.472 1.089.054 1.507a.953.953 0 0 1-1.32.045c-1.61-1.477-2.913-3.244-3.79-5.244a.942.942 0 0 1 .41-1.19ZM13 12a1 1 0 1 0-2 0v.5a11.49 11.49 0 0 0 5.58 9.86c.449.27 1.021.095 1.283-.359.29-.5.088-1.139-.402-1.446A9.495 9.495 0 0 1 13 12.5V12ZM3.576 4.856a1 1 0 0 1 .242 1.394A9.95 9.95 0 0 0 2 12c0 .307.014.61.04.91a1 1 0 1 1-1.991.18 11.95 11.95 0 0 1 2.134-7.992 1 1 0 0 1 1.393-.242Zm17.151-1.092a1 1 0 1 0-1.454 1.373A9.962 9.962 0 0 1 22 12a1 1 0 1 0 2 0c0-3.188-1.245-6.088-3.273-8.236Z" + /> - - - + + + + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> - + - + + clip-rule="evenodd" + /> - + + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + d="M2.5 3a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5H8.041a1.1 1.1 0 0 1-.777-.322L5.732 3.146A.5.5 0 0 0 5.38 3H2.5ZM0 3.5A2.5 2.5 0 0 1 2.5 1h2.879a2.5 2.5 0 0 1 1.767.732L8.414 3H13.5A2.5 2.5 0 0 1 16 5.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5v-9ZM8 6a1 1 0 0 1 1 1v1h1a1 1 0 1 1 0 2H9v1a1 1 0 1 1-2 0v-1H6a1 1 0 1 1 0-2h1V7a1 1 0 0 1 1-1Z" + /> + d="M1 6a3 3 0 0 1 3-3h4.172a3 3 0 0 1 2.12.879L11.415 5H20a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V6Zm3-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-8.959a1.1 1.1 0 0 1-.777-.322L8.879 5.293A1 1 0 0 0 8.172 5H4Zm8 4a1 1 0 0 1 1 1v2h2a1 1 0 1 1 0 2h-2v2a1 1 0 1 1-2 0v-2H9a1 1 0 1 1 0-2h2v-2a1 1 0 0 1 1-1Z" + /> + d="M1.999 3.333A2.333 2.333 0 0 1 4.332 1h1.8c.923 0 1.758.543 2.133 1.386L10 6.289V3a1 1 0 0 1 2 0v7h3a1 1 0 1 1 0 2h-2.268A2 2 0 1 1 9 13H4.999a2 2 0 1 1-3.946-.461A2.497 2.497 0 0 1 0 10.5V6.833C0 5.821.82 5 1.833 5H2V3.333Zm1 7.667h6.906l-.89-2H6.28a2 2 0 0 1-1.94-1.515L4.218 7H2v3.5a.5.5 0 0 0 .5.5h.499Zm5.128-4-1.69-3.802A.333.333 0 0 0 6.133 3h-1.8a.333.333 0 0 0-.334.333V5h.22a2 2 0 0 1 1.94 1.515l.12.485h1.848Z" + /> + d="M7 3a3 3 0 0 0-3 3v4h-.75A2.25 2.25 0 0 0 1 12.25v4.5a2.25 2.25 0 0 0 2.17 2.249A3.001 3.001 0 0 0 8.83 19h3.34a3.001 3.001 0 0 0 5.66-2H22a1 1 0 1 0 0-2h-6V5a1 1 0 1 0-2 0v5.485l-2.077-5.538A3 3 0 0 0 9.114 3H7Zm8 14a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2.83 0H8.83a3.001 3.001 0 0 0-5.655-.012A.25.25 0 0 1 3 16.75v-4.5a.25.25 0 0 1 .25-.25h3.72c.146 0 .274.1.31.242A2.32 2.32 0 0 0 9.53 14H13c.06 0 .119-.005.176-.015l.497 1.324A3.01 3.01 0 0 0 12.17 17Zm.262-5H9.531a.32.32 0 0 1-.31-.242A2.32 2.32 0 0 0 6.968 10H6V6a1 1 0 0 1 1-1h2.114a1 1 0 0 1 .936.649L12.432 12ZM6 19a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" + /> - + - + - + - + d="M10 16a1 1 0 0 1-1-1v-3.354a4 4 0 1 1 6 0V15a1 1 0 0 1-1 1h-4Zm2-5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 2c.345 0 .68-.044 1-.126V14h-2v-1.126c.32.082.655.126 1 .126Z" + /> + - + - + d="M21 22.001c0 .721-.79 1.223-1.447.895L18 22.119l-1.553.777c-.661.33-1.44-.175-1.447-.895v-4a5 5 0 1 1 6 0v4Zm0-8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-2 4.9a5.03 5.03 0 0 1-2 0v1.482c.225-.112.45-.255.69-.333a.997.997 0 0 1 .62 0c.24.078.465.22.69.333v-1.482Z" + /> + - + - + - + - + - + - + clip-rule="evenodd" + /> + - + - + clip-rule="evenodd" + /> + + stroke-width="1" + /> + stroke-width=".333" + /> + stroke-width=".333" + /> + stroke-width=".333" + /> + stroke-width=".333" + /> + stroke-width=".667" + /> + stroke-width="1" + /> + stroke-width=".5" + /> + stroke-width=".5" + /> + stroke-width=".5" + /> + stroke-width=".5" + /> + stroke="#A2A2A2" + /> + stroke-width="1" + /> + stroke-width=".667" + /> + stroke-width=".667" + /> + stroke-width=".667" + /> + stroke-width=".667" + /> + stroke-width="1.333" + /> + stroke-width="1" + /> + stroke="#A2A2A2" + /> + stroke="#A2A2A2" + /> + stroke="#A2A2A2" + /> + stroke="#A2A2A2" + /> + stroke-width="1.8" + /> + fill="#10299C" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#10299C" + /> + fill="#fff" + /> + fill="#10299C" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#10299C" + /> + fill="#fff" + /> + fill="#10299C" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#10299C" + /> + fill="#fff" + /> + fill="#10299C" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#10299C" + /> + fill="#fff" + /> + d="M10 3a1 1 0 0 0-1 1v1h1a1 1 0 1 0 0-2ZM7 4a1 1 0 1 0-1 1h1V4ZM3.17 5A3 3 0 0 1 8 1.764 3 3 0 0 1 12.83 5h.42c.966 0 1.75.784 1.75 1.75v1.5c0 .698-.409 1.3-1 1.582V12.5a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 12.5V9.832A1.75 1.75 0 0 1 1 8.25v-1.5C1 5.784 1.784 5 2.75 5h.42ZM9 7h4v1H9V7ZM6 7H3v1h4V7H6Zm1 3H4v2.5a.5.5 0 0 0 .5.5H7v-3Zm2 0h3v2.5a.5.5 0 0 1-.5.5H9v-3Z" + /> - + + d="M14.5 3A1.5 1.5 0 0 0 13 4.5V6h1.5a1.5 1.5 0 0 0 0-3ZM12 2.05A3.5 3.5 0 0 1 17.663 6H21a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3v-8a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.337A3.5 3.5 0 0 1 12 2.05ZM9.5 6A1.5 1.5 0 1 1 11 4.5V6H9.5Zm0 2H3v2h8V8H9.5ZM13 8h8v2h-8V8Zm-2 13v-9H5v8a1 1 0 0 0 1 1h5Zm8-9v8a1 1 0 0 1-1 1h-5v-9h6Z" + /> + d="M38.5 8a4 4 0 0 0-4 4v4h4a4 4 0 0 0 0-8ZM32 5.775A9 9 0 0 1 46.565 16H56a5 5 0 0 1 5 5v6a5 5 0 0 1-5 5v21.5a7.5 7.5 0 0 1-7.5 7.5h-33A7.5 7.5 0 0 1 8 53.5V32a5 5 0 0 1-5-5v-6a5 5 0 0 1 5-5h9.436A9 9 0 0 1 32 5.775ZM25.5 16a4 4 0 1 1 4-4v4h-4Zm0 5H8v6h21.5v-6h-4Zm9 0H56v6H34.5v-6Zm-5 11H13v21.5a2.5 2.5 0 0 0 2.5 2.5h14V32Zm5 0H51v21.5a2.5 2.5 0 0 1-2.5 2.5h-14V32Z" + /> + stroke="#191919" + /> + fill="#191919" + /> + stroke="#191919" + /> + fill="#191919" + /> + stroke="#191919" + /> + fill="#191919" + /> + stroke="#191919" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#1F3A6A" + /> + fill="#5DC4E9" + /> + fill="#1F3A6A" + /> + stroke-width="1" + /> + fill="#1F3A6A" + /> + fill="#5DC4E9" + /> + fill="#1F3A6A" + /> + stroke-width="1" + /> + fill="#1F3A6A" + /> + fill="#5DC4E9" + /> + fill="#1F3A6A" + /> + stroke-width="1" + /> + fill="#1F3A6A" + /> + fill="#5DC4E9" + /> + fill="#1F3A6A" + /> - + - + - + - + + stroke-width="1" + /> + fill="#4285F4" + /> + fill="#34A853" + /> + fill="#3C4043" + /> + fill="#FBBC04" + /> + fill="#EA4335" + /> + stroke-width="1" + /> + fill="#4285F4" + /> + fill="#34A853" + /> + fill="#3C4043" + /> + fill="#FBBC04" + /> + fill="#EA4335" + /> + stroke-width="1" + /> + fill="#4285F4" + /> + fill="#34A853" + /> + fill="#3C4043" + /> + fill="#FBBC04" + /> + fill="#EA4335" + /> + stroke-width="1" + /> + fill="#4285F4" + /> + fill="#34A853" + /> + fill="#3C4043" + /> + fill="#FBBC04" + /> + fill="#EA4335" + /> + d="M3 2a1 1 0 0 0-2 0v10.5A2.5 2.5 0 0 0 3.5 15H14a1 1 0 1 0 0-2H3.5a.5.5 0 0 1-.5-.5V2Zm1.232 7.36 2.492-2.99a.997.997 0 0 1 1.492-.068l1.235 1.235 2.796-3.196a1 1 0 0 1 1.506 1.317l-3.494 3.993-.029.032a.997.997 0 0 1-1.444.017L7.567 8.481l-1.799 2.16A1 1 0 1 1 4.232 9.36Z" + /> + d="M3 3a1 1 0 0 0-2 0v16a3 3 0 0 0 3 3h18a1 1 0 1 0 0-2H4a1 1 0 0 1-1-1V3Zm2.263 12.324 5.495-5.995.02-.02a.997.997 0 0 1 1.434-.011l2.261 2.261 5.794-6.24a1 1 0 0 1 1.466 1.361l-6.496 6.996a.995.995 0 0 1-1.15.235.997.997 0 0 1-.298-.208l-2.258-2.257-4.794 5.23a1 1 0 0 1-1.474-1.352Z" + /> + d="M8 7.501a2.5 2.5 0 1 0-5 0v43a7.5 7.5 0 0 0 7.5 7.5h48a2.5 2.5 0 0 0 0-5h-48a2.5 2.5 0 0 1-2.5-2.5v-43Zm6.619 33.354 13.974-15.97a2.5 2.5 0 0 1 3.696-.13l6.135 6.134 15.235-16.58a2.5 2.5 0 1 1 3.682 3.384l-17 18.5a2.5 2.5 0 0 1-3.636.048l-6.083-6.083-12.24 13.99a2.5 2.5 0 1 1-3.763-3.293Z" + /> + d="M6 3.333 2.8 7.597a1 1 0 0 1-1.6-1.2L4.8 1.6c.6-.8 1.8-.8 2.4 0L9 3.996h2.586l-.293-.293a1 1 0 1 1 1.414-1.414l2 2a1 1 0 0 1 0 1.414l-2 2a1 1 0 1 1-1.414-1.414l.293-.293H8.75a1.5 1.5 0 0 1-1.2-.6L6 3.334Zm-4 7.664a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0v-2a1 1 0 0 1 1-1Zm13 3v-3a1 1 0 0 0-2 0v3a1 1 0 1 0 2 0Zm-5-3a1 1 0 0 1 1 1v2a1 1 0 0 1-2 0v-2a1 1 0 0 1 1-1Zm-3-2a1 1 0 0 0-2 0v5a1 1 0 1 0 2 0v-5Z" + /> + d="M8.49 3.11a.25.25 0 0 1 .422.011l2.866 4.783a2.25 2.25 0 0 0 1.93 1.093h5.878l-1.293 1.293a1 1 0 0 0 1.414 1.414l3-3a1 1 0 0 0 0-1.414l-3-3a1 1 0 1 0-1.414 1.414l1.293 1.293h-5.877a.25.25 0 0 1-.215-.122l-2.867-4.782C9.78.678 7.747.627 6.83 1.997L1.17 10.44a1 1 0 1 0 1.662 1.114L8.49 3.11Zm.177 7.887a1 1 0 0 1 1 1v9a1 1 0 1 1-2 0v-9a1 1 0 0 1 1-1Zm-6.667 5a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0v-4a1 1 0 0 1 1-1Zm14.333 1a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0v-4Zm4.667-1a1 1 0 1 1 2 0v5a1 1 0 1 1-2 0v-5Z" + /> - + - + - + - + + fill="var(--color-background-success, #288034)" + /> + fill="var(--color-foreground-on-success, #FFFFFF)" + /> + fill="var(--color-background-success, #288034)" + /> + fill="var(--color-foreground-on-success, #FFFFFF)" + /> + d="M22.88 11.64a1 1 0 0 0 1.408-.007l.042-.043a1 1 0 0 0 .158-1.208 1.5 1.5 0 0 1 2.276-1.942l1.01 1.008h-.001c1.69 1.69 5.66 6.415 7.483 11.303 1.36 3.649.897 7.245-1.691 9.833-2.357 2.356-5.605 2.888-9.168 2.037-5.495-1.314-13.24-4.863-15.693-6.022a1.211 1.211 0 0 1-.596-.627 1.266 1.266 0 0 1 1.412-1.74l6.242 1.244a1.003 1.003 0 0 0 1.22-.776 1 1 0 0 0-.315-.943L4.44 11.571a1.498 1.498 0 1 1 2.117-2.12l6.315 6.314.002-.002a1.005 1.005 0 0 0 1.493-1.341 1.5 1.5 0 0 1 2.22-2.013l1.173 1.173a1 1 0 0 0 1.35-.06l.028-.027a1 1 0 0 0 .098-1.301l.002-.003a1.498 1.498 0 0 1 2.303-1.894l1.339 1.343ZM3.03 12.988l9.921 9.889-3.039-.606c-2.576-.513-4.674 2.07-3.643 4.486.307.719.861 1.31 1.58 1.65 2.43 1.148 10.356 4.79 16.083 6.159 4.013.959 8.055.425 11.048-2.568 3.262-3.262 3.72-7.737 2.15-11.946-1.946-5.223-6.082-10.145-7.895-11.971a.861.861 0 0 0-.023-.024l-1.033-1.032a3.501 3.501 0 0 0-5.802 1.388 3.5 3.5 0 0 0-5.248 1.943 3.502 3.502 0 0 0-4.898 1.938L7.972 8.037a3.499 3.499 0 1 0-4.943 4.95Z" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + d="M7.86 4.08a.304.304 0 0 0-.272-.072c-.483.093-1.03.22-1.588.389V11.6c.558.17 1.105.296 1.588.39.11.02.2-.009.272-.073a.438.438 0 0 0 .14-.333V4.413a.438.438 0 0 0-.14-.333ZM4 10.778V5.219c-.056.031-.11.063-.165.095C2.682 6 2 6.86 2 7.998c0 1.139.682 1.999 1.835 2.685l.165.095Zm3.21-8.734C8.75 1.747 10 2.98 10 4.414v7.169c0 1.434-1.25 2.666-2.79 2.37-1.21-.234-2.942-.686-4.397-1.552C1.35 11.532 0 10.13 0 7.998c0-2.131 1.35-3.533 2.813-4.403C4.268 2.73 6 2.277 7.21 2.045Zm5.79.951a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2h-2ZM12 8a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Zm0 4.004a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Z" + /> + d="M13 5.896c0-.619-.504-.977-.982-.871A25.52 25.52 0 0 0 10 5.558v12.89c.721.223 1.41.398 2.018.532.478.106.982-.252.982-.87V5.895Zm-5 11.82V6.29c-.645.277-1.279.597-1.869.965C4.258 8.42 3 9.948 3 12.003c0 2.054 1.258 3.582 3.131 4.749.59.367 1.224.687 1.869.964Zm3.586-14.644C13.437 2.662 15 4.13 15 5.896V18.11c0 1.766-1.563 3.234-3.414 2.824-1.773-.392-4.353-1.139-6.512-2.484C2.91 17.102 1 15.037 1 12.003c0-3.035 1.911-5.1 4.074-6.447 2.16-1.345 4.739-2.091 6.512-2.484ZM18 6.001a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Zm-1 6.001a1 1 0 0 1 1-1h4a1 1 0 0 1 0 2h-4a1 1 0 0 1-1-1Zm0 5.002a1 1 0 0 1 1-1h4a1 1 0 0 1 0 2h-4a1 1 0 0 1-1-1Z" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> - + - + - + - + + clip-rule="evenodd" + /> - + - + + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> - + clip-rule="evenodd" + /> + + clip-rule="evenodd" + /> + d="M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm0 2c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10Zm1-6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM8.498 7.69c.259-.582.935-.857 1.502-.857.483 0 .893.12 1.15.298.219.151.351.351.351.693 0 .241-.096.427-.437.655-.292.196-.615.33-.999.488-.146.06-.301.124-.466.197A1 1 0 0 0 9 10.08V11a1 1 0 1 0 2 0v-.254c.373-.158.81-.36 1.178-.606.663-.445 1.323-1.17 1.323-2.316 0-1.044-.493-1.84-1.212-2.337-.681-.471-1.522-.654-2.289-.654-.999 0-2.625.462-3.33 2.044a1 1 0 0 0 1.828.813Z" + /> - + clip-rule="evenodd" + /> + + clip-rule="evenodd" + /> + d="M15.76 14.65a1 1 0 0 1-1.41.11l-14-12a1 1 0 0 1 1.3-1.52L3.938 3.2C5.055 2.497 6.413 2 8 2c2.227 0 3.995.974 5.29 2.129 1.286 1.148 2.148 2.511 2.604 3.424a1 1 0 0 1 0 .894c-.41.82-1.151 2.012-2.24 3.082l1.997 1.712a1 1 0 0 1 .108 1.41ZM7.334 6.114 5.55 4.584A5.428 5.428 0 0 1 8 4c1.603 0 2.918.693 3.958 1.621.857.765 1.496 1.664 1.907 2.379a9.894 9.894 0 0 1-1.736 2.222L9.966 8.368a2 2 0 0 0-2.631-2.255Zm-4.921 1.43A1 1 0 0 0 .735 6.457a11.47 11.47 0 0 0-.63 1.097 1 1 0 0 0 0 .894c.457.913 1.32 2.276 2.605 3.424C4.004 13.026 5.773 14 8 14c.195 0 .388-.008.577-.022a1 1 0 1 0-.154-1.994c-.138.01-.28.016-.423.016-1.603 0-2.918-.693-3.958-1.621C3.185 9.614 2.546 8.715 2.135 8c.083-.145.176-.298.279-.456Z" + /> + d="M3.664 3.253a1 1 0 1 0-1.328 1.494l18 16a1 1 0 0 0 1.328-1.494l-2.44-2.17c1.787-1.547 3.043-3.382 3.67-4.636a1 1 0 0 0 0-.894c-.636-1.274-1.916-3.134-3.731-4.688C17.343 5.308 14.912 4 12 4c-2.139 0-4.02.706-5.586 1.697l-2.75-2.444Zm11.115 9.88 2.934 2.608A14.22 14.22 0 0 0 20.865 12a14.246 14.246 0 0 0-3.003-3.615C16.274 7.025 14.288 6 12 6c-1.474 0-2.82.425-4.018 1.09l2.568 2.283a3 3 0 0 1 4.229 3.76ZM4.056 8.986a1 1 0 0 1 .17 1.404l-.175.226a13.5 13.5 0 0 0-.917 1.383 14.244 14.244 0 0 0 3.004 3.615C7.726 16.975 9.712 18 12 18a7.647 7.647 0 0 0 1.478-.144 1 1 0 0 1 .385 1.963A9.768 9.768 0 0 1 12 20c-2.912 0-5.343-1.308-7.163-2.865-1.815-1.554-3.095-3.414-3.731-4.688a1 1 0 0 1 0-.894 14.23 14.23 0 0 1 1.546-2.397 1 1 0 0 1 1.404-.17Z" + /> + d="M8 3a5 5 0 1 1-4.332 7.5 1 1 0 1 0-1.73 1A7 7 0 1 0 8 1c-2.051 0-3.69.859-5.001 2.255V2.5a1 1 0 1 0-2 0V6a1 1 0 0 0 1 1h.23a.98.98 0 0 0 .038 0H5a1 1 0 1 0 0-2h-.875C5.22 3.666 6.485 3 8 3Zm1 3a1 1 0 0 0-2 0v2.5a1 1 0 0 0 .293.707l1.5 1.5a1 1 0 0 0 1.414-1.414L9 8.086V6Z" + /> + d="M12 4a8 8 0 1 1 0 16 8.004 8.004 0 0 1-7.545-5.333 1 1 0 1 0-1.886.666C3.942 19.216 7.644 22 12 22c5.523 0 10-4.477 10-10S17.523 2 12 2C8.584 2 5.874 3.778 4 6.137V4.5a1 1 0 0 0-2 0V9a1 1 0 0 0 1 1h4a1 1 0 1 0 0-2H5.104C6.712 5.671 9.088 4 12 4Zm1 4a1 1 0 1 0-2 0v5a1 1 0 0 0 .293.707l2 2a1 1 0 0 0 1.414-1.414L13 12.586V8Z" + /> + d="M11.176 22C14.969 13.735 23.318 8 33 8c13.255 0 24 10.745 24 24S46.255 56 33 56c-10.453 0-19.352-6.685-22.642-16.02-.03-.083-.058-.167-.087-.25a2.5 2.5 0 0 0-4.734 1.609l.105.303C9.615 52.915 20.36 61 33 61c16.016 0 29-12.984 29-29S49.016 3 33 3C22.348 3 13.041 8.742 8 17.296V11.5a2.5 2.5 0 0 0-5 0v13A2.5 2.5 0 0 0 5.5 27h11a2.5 2.5 0 0 0 0-5h-5.324ZM35 19.5a2.5 2.5 0 0 0-5 0V34a2.5 2.5 0 0 0 .548 1.562l6 7.5a2.5 2.5 0 1 0 3.904-3.124L35 33.123V19.5Z" + /> - + - + + d="M13.342 3.513a2 2 0 0 0-2.684 0l-7.329 6.633a1 1 0 0 0-.329.741v9.863c0 .138.112.25.25.25h4.5a.25.25 0 0 0 .25-.25V15.5a2.5 2.5 0 0 1 2.5-2.5h3a2.5 2.5 0 0 1 2.5 2.5v5.25c0 .138.112.25.25.25h4.5a.25.25 0 0 0 .25-.25v-9.863a1 1 0 0 0-.329-.74l-7.329-6.634ZM9.316 2.03a4 4 0 0 1 5.368 0l7.33 6.633A3 3 0 0 1 23 10.887v9.863A2.25 2.25 0 0 1 20.75 23h-4.5A2.25 2.25 0 0 1 14 20.75V15.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v5.25A2.25 2.25 0 0 1 7.75 23h-4.5A2.25 2.25 0 0 1 1 20.75v-9.863a3 3 0 0 1 .987-2.224L9.316 2.03Z" + /> + d="M14.684 2.03a4 4 0 0 0-5.368 0l-7.33 6.634A3 3 0 0 0 1 10.888v9.863A2.25 2.25 0 0 0 3.25 23h4.5A2.25 2.25 0 0 0 10 20.75V15.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v5.25A2.25 2.25 0 0 0 16.25 23h4.5A2.25 2.25 0 0 0 23 20.75v-9.863a3 3 0 0 0-.987-2.224L14.684 2.03Z" + /> - + + clip-rule="evenodd" + /> - + + clip-rule="evenodd" + /> - + + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> - - + + - - + + - + - + - + - + - + - - + + + clip-rule="evenodd" + /> - - + + + clip-rule="evenodd" + /> + d="M10.5 3A7.5 7.5 0 0 0 3 10.5v43a7.5 7.5 0 0 0 7.5 7.5h33a7.5 7.5 0 0 0 7.5-7.5v-3a2.5 2.5 0 0 0-5 0v3a2.5 2.5 0 0 1-2.5 2.5h-33A2.5 2.5 0 0 1 8 53.5v-43A2.5 2.5 0 0 1 10.5 8h33a2.5 2.5 0 0 1 2.5 2.5v3a2.5 2.5 0 0 0 5 0v-3A7.5 7.5 0 0 0 43.5 3h-33ZM13 16.5a2.5 2.5 0 0 1 2.5-2.5h14a2.5 2.5 0 0 1 0 5h-14a2.5 2.5 0 0 1-2.5-2.5Zm0 10.333a2.5 2.5 0 0 1 2.5-2.5h9a2.5 2.5 0 0 1 0 5h-9a2.5 2.5 0 0 1-2.5-2.5Zm2.5 7.833a2.5 2.5 0 0 0 0 5h9a2.5 2.5 0 0 0 0-5h-9ZM13 47.499a2.5 2.5 0 0 1 2.5-2.5h14a2.5 2.5 0 0 1 0 5h-14a2.5 2.5 0 0 1-2.5-2.5ZM45.5 24a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm-13 8c0-7.18 5.82-13 13-13s13 5.82 13 13a12.94 12.94 0 0 1-2.21 7.254l6.978 6.978a2.5 2.5 0 0 1-3.536 3.536l-6.978-6.979A12.94 12.94 0 0 1 45.5 45c-7.18 0-13-5.82-13-13Z" + /> - + - + + fill="#231F20" + /> - + + fill="#231F20" + /> + fill="#231F20" + /> - + + fill="#231F20" + /> - + + fill="#231F20" + /> + d="M2.5 1A1.5 1.5 0 0 0 1 2.5v3A1.5 1.5 0 0 0 2.5 7h3A1.5 1.5 0 0 0 7 5.5v-3A1.5 1.5 0 0 0 5.5 1h-3ZM3 5V3h2v2H3Zm-.5 4A1.5 1.5 0 0 0 1 10.5v3A1.5 1.5 0 0 0 2.5 15h3A1.5 1.5 0 0 0 7 13.5v-3A1.5 1.5 0 0 0 5.5 9h-3Zm.5 4v-2h2v2H3ZM8 2a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 2a1 1 0 0 0 0 2h3a1 1 0 1 0 0-2H9Zm-1 9a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1-4a1 1 0 1 0 0 2h5a1 1 0 1 0 0-2H9Z" + /> + d="M3.25 1A2.25 2.25 0 0 0 1 3.25v3.5A2.25 2.25 0 0 0 3.25 9h3.5A2.25 2.25 0 0 0 9 6.75v-3.5A2.25 2.25 0 0 0 6.75 1h-3.5ZM3 3.25A.25.25 0 0 1 3.25 3h3.5a.25.25 0 0 1 .25.25v3.5a.25.25 0 0 1-.25.25h-3.5A.25.25 0 0 1 3 6.75v-3.5ZM3.25 11A2.25 2.25 0 0 0 1 13.25v3.5A2.25 2.25 0 0 0 3.25 19h3.5A2.25 2.25 0 0 0 9 16.75v-3.5A2.25 2.25 0 0 0 6.75 11h-3.5ZM3 13.25a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.5a.25.25 0 0 1-.25.25h-3.5a.25.25 0 0 1-.25-.25v-3.5ZM11 3a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2h-6a1 1 0 0 1-1-1Zm1 2a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Zm-1 8a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2h-6a1 1 0 0 1-1-1Zm1 2a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z" + /> + d="M4.5 2A2.5 2.5 0 0 0 2 4.5v4A2.5 2.5 0 0 0 4.5 11h4A2.5 2.5 0 0 0 11 8.5v-4A2.5 2.5 0 0 0 8.5 2h-4ZM4 4.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-4Zm.5 8.5A2.5 2.5 0 0 0 2 15.5v4A2.5 2.5 0 0 0 4.5 22h4a2.5 2.5 0 0 0 2.5-2.5v-4A2.5 2.5 0 0 0 8.5 13h-4ZM4 15.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-4Zm9-.5a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2h-7a1 1 0 0 1-1-1Zm1-12a1 1 0 1 0 0 2h7a1 1 0 1 0 0-2h-7Zm-1 16a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Zm1-12a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z" + /> + stroke-width="1" + /> + fill="#047230" + /> + fill="#097C3A" + /> + fill="#32A039" + /> + fill="#40A737" + /> + fill="#53B033" + /> + fill="#028239" + /> + fill="#078B3E" + /> + fill="#15923C" + /> + fill="#24993B" + /> + fill="#078B3E" + /> + fill="#6C2C2F" + /> + fill="#7A2A30" + /> + fill="#882730" + /> + fill="#9E2131" + /> + fill="#A81E32" + /> + fill="#BE1833" + /> + fill="#BE1833" + /> + fill="#D20B35" + /> + fill="#DC0436" + /> + fill="#DC0436" + /> + fill="#E60039" + /> + fill="#202B6D" + /> + fill="#1B3577" + /> + fill="#0C3F85" + /> + fill="#004E94" + /> + fill="#005AA3" + /> + fill="#0060AA" + /> + fill="#0066B1" + /> + fill="#006FBC" + /> + stroke-width="1" + /> + fill="#047230" + /> + fill="#097C3A" + /> + fill="#32A039" + /> + fill="#40A737" + /> + fill="#53B033" + /> + fill="#028239" + /> + fill="#078B3E" + /> + fill="#15923C" + /> + fill="#24993B" + /> + fill="#078B3E" + /> + fill="#6C2C2F" + /> + fill="#7A2A30" + /> + fill="#882730" + /> + fill="#9E2131" + /> + fill="#A81E32" + /> + fill="#BE1833" + /> + fill="#BE1833" + /> + fill="#D20B35" + /> + fill="#DC0436" + /> + fill="#DC0436" + /> + fill="#E60039" + /> + fill="#202B6D" + /> + fill="#1B3577" + /> + fill="#0C3F85" + /> + fill="#004E94" + /> + fill="#005AA3" + /> + fill="#0060AA" + /> + fill="#0066B1" + /> + fill="#006FBC" + /> + stroke-width="1" + /> + fill="#047230" + /> + fill="#097C3A" + /> + fill="#32A039" + /> + fill="#40A737" + /> + fill="#53B033" + /> + fill="#028239" + /> + fill="#078B3E" + /> + fill="#15923C" + /> + fill="#24993B" + /> + fill="#078B3E" + /> + fill="#6C2C2F" + /> + fill="#7A2A30" + /> + fill="#882730" + /> + fill="#9E2131" + /> + fill="#A81E32" + /> + fill="#BE1833" + /> + fill="#BE1833" + /> + fill="#D20B35" + /> + fill="#DC0436" + /> + fill="#DC0436" + /> + fill="#E60039" + /> + fill="#202B6D" + /> + fill="#1B3577" + /> + fill="#0C3F85" + /> + fill="#004E94" + /> + fill="#005AA3" + /> + fill="#0060AA" + /> + fill="#0066B1" + /> + fill="#006FBC" + /> + stroke-width="1" + /> + fill="#047230" + /> + fill="#097C3A" + /> + fill="#32A039" + /> + fill="#40A737" + /> + fill="#53B033" + /> + fill="#028239" + /> + fill="#078B3E" + /> + fill="#15923C" + /> + fill="#24993B" + /> + fill="#078B3E" + /> + fill="#6C2C2F" + /> + fill="#7A2A30" + /> + fill="#882730" + /> + fill="#9E2131" + /> + fill="#A81E32" + /> + fill="#BE1833" + /> + fill="#BE1833" + /> + fill="#D20B35" + /> + fill="#DC0436" + /> + fill="#DC0436" + /> + fill="#E60039" + /> + fill="#202B6D" + /> + fill="#1B3577" + /> + fill="#0C3F85" + /> + fill="#004E94" + /> + fill="#005AA3" + /> + fill="#0060AA" + /> + fill="#0066B1" + /> + fill="#006FBC" + /> - + + d="M2.001 1a1 1 0 0 1 1-1h1.587c.531 0 1.04.21 1.415.586L7.418 2H8.59L10.005.586A2.002 2.002 0 0 1 11.42 0h1.587a1 1 0 1 1 0 2H11.42l-1 1 1 1h.889c.765 0 1.482.375 1.918 1.004l1.418 2.044a2 2 0 0 1 .288 1.661l-.723 2.675a3.391 3.391 0 0 1-1.405 1.96c-.7.46-1.635 1.035-2.616 1.534-.964.49-2.045.946-3.02 1.108-.11.018-.22.018-.33 0-.975-.162-2.056-.618-3.02-1.109a28.492 28.492 0 0 1-2.617-1.534 3.39 3.39 0 0 1-1.404-1.955L.072 8.712A2 2 0 0 1 .36 7.047l1.422-2.045A2.335 2.335 0 0 1 3.699 4h.89l1-1-1-1H3.001a1 1 0 0 1-1-1Zm3.833 4.584 1.22 3.685c.303.915 1.597.915 1.9 0l1.22-3.686-1.17-1.169a1.415 1.415 0 0 0-2 0l-1.17 1.17ZM3.864 6l.895 2.703c-.744-.438-1.51-.882-2.356-1.09l1.022-1.47C3.531 5.991 3.7 6 3.864 6Zm7.385 2.704L12.144 6c.165 0 .333-.01.439.143l1.02 1.471c-.845.208-1.61.652-2.354 1.09Zm-8.52 2.16-.309-1.14c.574.24 1.103.573 1.638.888C5.093 11.22 6.443 12 8.004 12c1.561 0 2.911-.78 3.947-1.388.534-.315 1.062-.647 1.635-.887l-.308 1.138c-.093.345-.298.63-.57.809-.665.436-1.534.97-2.427 1.424-.838.426-1.634.75-2.277.886-.642-.136-1.44-.46-2.277-.887A26.518 26.518 0 0 1 3.3 11.671a1.392 1.392 0 0 1-.57-.807Z" + /> - + + d="M3 2a1 1 0 0 1 1-1h2.378a2.5 2.5 0 0 1 1.768.732l2.121 2.122a.5.5 0 0 0 .354.146h2.757a.5.5 0 0 0 .354-.146l2.121-2.122A2.5 2.5 0 0 1 17.621 1H20a1 1 0 1 1 0 2h-2.38a.5.5 0 0 0-.353.146l-1.936 1.937c.119.11.231.23.336.356L16.967 7h.503a3 3 0 0 1 2.442 1.257l2.715 3.803a2 2 0 0 1 .328 1.58l-.73 3.416c-.21.98-.788 1.887-1.698 2.438-2.056 1.244-5.65 3.04-8.363 3.492-.109.018-.22.018-.329 0-2.713-.452-6.306-2.248-8.362-3.492-.91-.55-1.488-1.458-1.698-2.438l-.73-3.416a2 2 0 0 1 .327-1.58l2.716-3.803A3 3 0 0 1 6.529 7h.502l1.3-1.56c.106-.127.218-.246.337-.357L6.732 3.146A.5.5 0 0 0 6.378 3H4a1 1 0 0 1-1-1Zm8.405 4a2 2 0 0 0-1.537.72l-1.59 1.907a1.01 1.01 0 0 1-.265.231l2.11 5.7c.645 1.74 3.107 1.74 3.752 0l2.11-5.7a.998.998 0 0 1-.254-.218l-1.6-1.92A2 2 0 0 0 12.594 6h-1.19Zm-5.69 3.419a1 1 0 0 1 .295-.273 1 1 0 0 0 .052.202l1.946 5.256a41.172 41.172 0 0 1-1.92-1.178c-.735-.47-1.48-1.004-2.315-1.286l1.942-2.721Zm12.196 4.007a41.2 41.2 0 0 1-1.921 1.178l1.947-5.256a.993.993 0 0 0 .052-.203 1 1 0 0 1 .295.274l1.943 2.72c-.84.284-1.575.813-2.316 1.287Zm-9.859 3.468C10.207 17.972 11.362 18 12 18s1.793-.028 3.948-1.106c1.174-.587 2.212-1.252 3.054-1.791.58-.372 1.17-.81 1.821-1.052l-.553 2.586c-.108.503-.39.912-.778 1.146-1.959 1.186-5.177 2.767-7.491 3.201-2.315-.434-5.533-2.015-7.492-3.2-.387-.235-.67-.644-.777-1.147l-.554-2.586c.652.243 1.24.68 1.82 1.052.843.539 1.881 1.204 3.055 1.791Z" + /> - + + fill="#1E1E1E" + /> - + + fill="#1E1E1E" + /> - + + fill="#1E1E1E" + /> - + + fill="#1E1E1E" + /> - + + d="M9.584 10A5 5 0 1 1 9 5h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1v-1H9.584ZM2 8a3 3 0 0 1 5.556-1.571A1 1 0 0 0 8.484 7H14v3h-1V9a1 1 0 0 0-1-1H8.895a1 1 0 0 0-1.01.826A3.002 3.002 0 0 1 2 8Z" + /> + d="M5 12a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z" + /> + d="M14.326 9a7 7 0 1 0 0 6H17v2a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1h-7.674ZM8 7a5 5 0 1 0 4.716 6.667 1 1 0 0 1 .966-.667H18a1 1 0 0 1 1 1v2h2v-5h-7.318a1 1 0 0 1-.966-.667A5.002 5.002 0 0 0 8 7Z" + /> - - - - + clip-rule="evenodd" + /> + + + + - - - - - - - - - + clip-rule="evenodd" + /> + + + + + + + + + - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#191919" + /> - + + fill="#191919" + /> - + + fill="#191919" + /> - + + fill="#191919" + /> + stroke-width="1" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#191919" + /> - + - + + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + d="M3.535 4 2.87 5H7V4H3.535ZM9 4v1h4.132l-.667-1H9ZM7 7H2v4.5a.5.5 0 0 0 .5.5H7V7Zm2 5V7h5v4.5a.5.5 0 0 1-.5.5H9ZM2.02 2.668A1.5 1.5 0 0 1 3.268 2h9.464c.502 0 .97.25 1.248.668l1.6 2.4c.274.41.42.893.42 1.386V11.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 11.5V6.454a2.5 2.5 0 0 1 .42-1.387l1.6-2.4Z" + /> + d="M3.9 4.8A2 2 0 0 1 5.5 4h13a2 2 0 0 1 1.6.8l2.3 3.067a3 3 0 0 1 .6 1.8V17a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V9.667a3 3 0 0 1 .6-1.8L3.9 4.8ZM18.5 6H13v2h7l-1.5-2Zm2.5 4h-8v8h7a1 1 0 0 0 1-1v-7ZM11 8V6H5.5L4 8h7Zm-8 2h8v8H4a1 1 0 0 1-1-1v-7Z" + /> + id="icon-legacy-authenticity-guarantee-48-colored" + > + fill="#3665F3" + /> + fill="#fff" + /> - + + fill="#fff" + /> + fill="#3665F3" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#3665F3" + /> + fill="#fff" + /> + id="icon-legacy-money-back-guarantee-chf-48-colored" + > + fill="#3665F3" + /> + fill="#fff" + /> + fill="#fff" + /> + id="icon-legacy-money-back-guarantee-eu-48-colored" + > + fill="#3665F3" + /> + fill="#fff" + /> + id="icon-legacy-money-back-guarantee-uk-48-colored" + > + fill="#3665F3" + /> + fill="#fff" + /> + id="icon-legacy-money-back-guarantee-us-48-colored" + > + fill="#3665F3" + /> + fill="#fff" + /> + id="icon-legacy-money-back-guarantee-zl-48-colored" + > + fill="#3665F3" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#3665F3" + /> + fill="#fff" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + d="M12.288.043A1 1 0 0 1 13 1v7h5.497c1.994 0 3.186 2.221 2.083 3.883l-7.747 11.67A1 1 0 0 1 11 23v-7H5.502c-1.994 0-3.186-2.22-2.083-3.882L11.166.447a1 1 0 0 1 1.122-.404ZM11 4.315l-5.913 8.909a.5.5 0 0 0 .416.776H12a1 1 0 0 1 1 1v4.685l5.914-8.908a.5.5 0 0 0-.417-.777H12c-.544 0-1-.455-1-1V4.315Z" + /> - + - + - + - + - + - + - + - + clip-rule="evenodd" + /> + - + - + clip-rule="evenodd" + /> + - + clip-rule="evenodd" + /> + - + - + - + - + - + + fill="#191919" + /> - + + fill="#191919" + /> - + + fill="#191919" + /> - + - + - + - + - + - + + d="M3.808 6.844a10.135 10.135 0 0 0-1.913 2.603 1 1 0 0 1-1.79-.894 12.129 12.129 0 0 1 2.312-3.147C3.697 4.17 5.557 3 8 3s4.304 1.169 5.583 2.406a12.128 12.128 0 0 1 2.312 3.147 1 1 0 1 1-1.79.894 10.136 10.136 0 0 0-1.913-2.603C11.146 5.83 9.757 5 8 5c-1.757 0-3.146.831-4.192 1.844ZM8 12.25a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Z" + /> + d="M2.895 13.447c.53-1.06 1.65-2.7 3.243-4.062C7.726 8.025 9.712 7 12 7c2.288 0 4.274 1.026 5.863 2.385 1.592 1.363 2.713 3.002 3.243 4.062a1 1 0 1 0 1.789-.894c-.637-1.274-1.916-3.134-3.732-4.688C17.343 6.308 14.913 5 12 5 9.088 5 6.658 6.308 4.838 7.865 3.022 9.42 1.743 11.28 1.106 12.553a1 1 0 1 0 1.789.894ZM15 14a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" + /> - + + d="M8 0a7 7 0 0 0-5.525 11.299c1.183 1.518 2.91 2.994 4.926 4.502a1 1 0 0 0 1.198 0c2.017-1.508 3.743-2.984 4.926-4.502A7 7 0 0 0 8 0ZM3 7a5 5 0 1 1 8.947 3.07c-.909 1.166-2.25 2.37-3.947 3.675-1.698-1.305-3.038-2.509-3.947-3.675A4.974 4.974 0 0 1 3 7Z" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + d="m12.352 3.647-7.672 3.2 2.87.673c.461.108.822.47.93.931l.674 2.868 3.198-7.672Zm.913-2.547c1.03-.43 2.064.604 1.635 1.635l-4.793 11.494c-.467 1.12-2.094.986-2.37-.195L6.64 9.36 1.965 8.265C.785 7.988.65 6.36 1.769 5.895L13.265 1.1Z" + /> + d="M19.46 4.54 5.4 10.403l5.81 1.363c.51.119.906.516 1.025 1.024l1.363 5.807L19.459 4.54Zm.632-2.43c1.133-.473 2.27.664 1.798 1.798L14.7 21.15c-.513 1.231-2.303 1.084-2.608-.215l-1.715-7.312L3.06 11.91c-1.298-.304-1.446-2.094-.215-2.607L20.092 2.11Z" + /> - + + d="M4 6.05V5a4 4 0 1 1 8 0v1.05a2.5 2.5 0 0 1 2 2.45v4a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 12.5v-4a2.5 2.5 0 0 1 2-2.45ZM6 5a2 2 0 1 1 4 0v1H6V5ZM4.5 8a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-7Z" + /> - + + d="M6 9V7a6 6 0 1 1 12 0v2a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3v-8a3 3 0 0 1 3-3Zm2-2a4 4 0 1 1 8 0v2H8V7Zm-2 4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1H6Z" + /> + d="M6 5a2 2 0 1 1 4 0v1H6V5ZM4 6.05V5a4 4 0 1 1 8 0v1.05a2.5 2.5 0 0 1 2 2.45v4a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 12.5v-4a2.5 2.5 0 0 1 2-2.45ZM8 9a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Z" + /> + d="M7 6a3 3 0 0 1 6 0v1H7V6ZM5 7V6a5 5 0 0 1 10 0v1a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-6a3 3 0 0 1 3-3Zm5 4a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0v-2a1 1 0 0 1 1-1Z" + /> + d="M8 7a4 4 0 1 1 8 0v2H8V7ZM6 9V7a6 6 0 1 1 12 0v2a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3v-8a3 3 0 0 1 3-3Zm6 4a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0v-4a1 1 0 0 1 1-1Z" + /> - + - + + d="M56.137 2A7.864 7.864 0 0 1 64 9.863V47.41c0 3.7-2.557 6.802-6 7.639V57a4 4 0 0 1-8 0v-1.727H14V57a4 4 0 0 1-8 0v-1.952a7.865 7.865 0 0 1-6-7.639V9.863A7.864 7.864 0 0 1 7.863 2h48.274ZM34.5 50.273h21.637A2.864 2.864 0 0 0 59 47.409V9.863A2.864 2.864 0 0 0 56.137 7H34.5v43.273ZM7.863 7A2.864 2.864 0 0 0 5 9.863V47.41a2.864 2.864 0 0 0 2.863 2.864H29.5V7H7.863Zm4.66 22.505a4.023 4.023 0 1 1 0 8.046 4.023 4.023 0 0 1 0-8.046Zm29.5-.001a4.023 4.023 0 1 1 0 8.046 4.023 4.023 0 0 1 0-8.046ZM23.5 18.004a2.5 2.5 0 0 1 0 5H11a2.5 2.5 0 0 1 0-5h12.5Zm29.5 0a2.5 2.5 0 0 1 0 5H40.5a2.5 2.5 0 0 1 0-5H53Zm-29.5-8a2.5 2.5 0 0 1 0 5H11a2.5 2.5 0 0 1 0-5h12.5Zm29.5 0a2.5 2.5 0 0 1 0 5H40.5a2.5 2.5 0 0 1 0-5H53Z" + /> + stroke-width="1" + /> + fill="#0066CB" + /> + fill="#CC0001" + /> + fill="#231F20" + /> + fill="#fff" + /> + fill="#231F20" + /> + fill="#fff" + /> + fill="#231F20" + /> + fill="#fff" + /> + stroke-width="1" + /> + fill="#0066CB" + /> + fill="#CC0001" + /> + fill="#231F20" + /> + fill="#fff" + /> + fill="#231F20" + /> + fill="#fff" + /> + fill="#231F20" + /> + fill="#fff" + /> + stroke-width="1" + /> + fill="#0066CB" + /> + fill="#CC0001" + /> + fill="#231F20" + /> + fill="#fff" + /> + fill="#231F20" + /> + fill="#fff" + /> + fill="#231F20" + /> + fill="#fff" + /> + stroke-width="1" + /> + fill="#0066CB" + /> + fill="#CC0001" + /> + fill="#231F20" + /> + fill="#fff" + /> + fill="#231F20" + /> + fill="#fff" + /> + fill="#231F20" + /> + fill="#fff" + /> + clip-rule="evenodd" + /> + d="M4 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3H4Zm13 3.47V5a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v.47l6.44 4.357a1 1 0 0 0 1.12 0L17 5.47ZM3 7.883V15a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V7.884l-5.318 3.6a3 3 0 0 1-3.363 0L3 7.884Z" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> - + + clip-rule="evenodd" + /> - + + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> - + + d="M3.5 2h6.626a4.01 4.01 0 0 0 0 2H3.5a.5.5 0 0 0-.5.5v.447l4.734 2.975a.5.5 0 0 0 .532 0l3.076-1.933A4.007 4.007 0 0 0 15 6.874V11.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 11.5v-7A2.5 2.5 0 0 1 3.5 2ZM3 7.31v4.19a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5V7.31L9.33 9.614a2.5 2.5 0 0 1-2.66 0L3 7.31Z" + /> - + + clip-rule="evenodd" + /> + d="M5 3.465 3 4.587v7.708l1.74-.974c.085-.048.172-.09.26-.127v-7.73Zm2 7.763c.095.043.188.092.278.148L9 12.443V4.774a2.502 2.502 0 0 1-.28-.15L7 3.556v7.672Zm4-6.42v7.725l2-1.118V3.708l-1.739.974c-.085.047-.172.09-.261.127ZM7.28 1.376a2.5 2.5 0 0 0-2.542-.056L1.511 3.13A1 1 0 0 0 1 4.001v10a1 1 0 0 0 1.489.873l3.229-1.808a.5.5 0 0 1 .507.01l2.498 1.547a2.5 2.5 0 0 0 2.536.057l3.229-1.806a1 1 0 0 0 .512-.873v-10a1 1 0 0 0-1.489-.872l-3.227 1.808a.5.5 0 0 1-.508-.012L7.28 1.375Z" + /> + d="M19 2.999a1 1 0 0 0-1.392-.92l-4.385 1.87a.667.667 0 0 1-.497.01L7.978 2.172a2.667 2.667 0 0 0-1.985.041L1.608 4.08A1 1 0 0 0 1 5v12a1 1 0 0 0 1.392.92l4.385-1.866a.667.667 0 0 1 .496-.01l4.75 1.786a2.666 2.666 0 0 0 1.983-.043l4.386-1.867A1 1 0 0 0 19 15V3ZM6 4.383 3 5.66v9.827l2.994-1.274A.146.146 0 0 1 6 14.21V4.383Zm2 9.796 4 1.504v-9.86L8 4.316v9.863Zm6-8.387v9.823l3-1.277V4.513l-2.992 1.276c-.003 0-.005.002-.008.003Z" + /> + d="M8 5.385 4 7.591v10.717l3.508-1.931c.16-.088.324-.16.492-.216V5.385Zm2 10.807c.173.064.341.145.503.242L14 18.54V7.813a3.003 3.003 0 0 1-.504-.244L10 5.462v10.73Zm6-8.348v10.772l4-2.206V5.694l-3.507 1.933a3 3 0 0 1-.493.217Zm-5.496-4.413a3 3 0 0 0-2.997-.058l-4.99 2.752A1 1 0 0 0 2 7v13a1 1 0 0 0 1.482.877l4.991-2.748a1 1 0 0 1 .998.019l4.025 2.423a3 3 0 0 0 2.996.057l4.99-2.752A1 1 0 0 0 22 17V4a1 1 0 0 0-1.483-.875l-4.99 2.75a1 1 0 0 1-.999-.018L10.504 3.43Z" + /> + d="M2.046 4.502a.996.996 0 0 1 .802.466L4.5 7.446l1.668-2.5a.994.994 0 0 1 .54-.403l.014-.003a.993.993 0 0 1 .272-.04h.008l.04.002a1 1 0 0 1 .959.998v5a1 1 0 0 1-2 0V8.8l-.669 1.005a1.004 1.004 0 0 1-.107.133l-.018.018a.993.993 0 0 1-.331.22l-.031.01a.725.725 0 0 1-.06.022l-.047.012-.045.01c-.01.003-.021.004-.032.005a1 1 0 0 1-.415-.02l-.031-.007-.06-.021-.033-.012-.021-.01a.993.993 0 0 1-.308-.209.992.992 0 0 1-.131-.16l-.66-.99V10.5a1 1 0 0 1-2 0V5.543a.998.998 0 0 1 .77-1.017l.038-.008c.013-.003.026-.004.04-.006l.052-.008a1 1 0 0 1 .144-.002ZM12 4.5a1 1 0 0 1 1 1v2.581l.29-.289a1.001 1.001 0 0 1 1.414 1.416l-1.952 1.948a.997.997 0 0 1-1.495.011L9.292 9.208a1 1 0 0 1 1.412-1.416l.297.295V5.5a1 1 0 0 1 1-1Z" + /> - + - + + d="M2.01 1A1.01 1.01 0 0 0 1 2.01v2.98C1 5.548 1.452 6 2.01 6h3.98A1.01 1.01 0 0 0 7 4.99V2.01A1.01 1.01 0 0 0 5.99 1H2.01ZM3 4V3h2v1H3Zm7.01 6A1.01 1.01 0 0 0 9 11.01v2.98c0 .558.452 1.01 1.01 1.01h3.98A1.01 1.01 0 0 0 15 13.99v-2.98A1.01 1.01 0 0 0 13.99 10h-3.98Zm.99 3v-1h2v1h-2ZM1 9.01C1 8.452 1.452 8 2.01 8h3.98C6.548 8 7 8.452 7 9.01v4.98A1.01 1.01 0 0 1 5.99 15H2.01A1.01 1.01 0 0 1 1 13.99V9.01ZM3 10v3h2v-3H3Zm7.015-9C9.455 1 9 1.454 9 2.015v4.97C9 7.545 9.454 8 10.015 8h3.97C14.545 8 15 7.546 15 6.985v-4.97C15 1.455 14.546 1 13.985 1h-3.97ZM11 6V3h2v3h-2Z" + /> + d="M3 5V3h6v2H3ZM1 2a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2Zm14 11V3h6v10h-6ZM13 2a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-8a1 1 0 0 1-1-1V2Zm2 17v2h6v-2h-6Zm-1-2a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-8ZM3 21V11h6v10H3ZM1 10a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V10Z" + /> + d="M2 1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H2Zm8 9a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-4ZM1 9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V9Zm9-8a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1h-4Z" + /> + d="M2 1a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H2Zm12 16a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-8ZM1 10a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V10Zm13-9a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1h-8Z" + /> + stroke-width="1" + /> - + fill="#F79E1B" + /> + + fill="#EB001B" + /> + fill="#F79E1B" + /> + stroke-width="1" + /> - + fill="#F79E1B" + /> + + fill="#EB001B" + /> + fill="#F79E1B" + /> + stroke-width="1" + /> - + fill="#F79E1B" + /> + + fill="#EB001B" + /> + fill="#F79E1B" + /> + stroke-width="1" + /> - + fill="#F79E1B" + /> + + fill="#EB001B" + /> + fill="#F79E1B" + /> + d="m5.414 4-1 1H7V4H5.414ZM9 4v1h2.586l-1-1H9ZM7 7H4v4.5a.5.5 0 0 0 .5.5H7V7Zm2 5h2.5a.5.5 0 0 0 .5-.5V7H9v5ZM4.146 2.44A1.5 1.5 0 0 1 5.207 2h5.586a1.5 1.5 0 0 1 1.06.44l1.415 1.414A2.5 2.5 0 0 1 14 5.62v5.88a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 11.5V5.621a2.5 2.5 0 0 1 .732-1.767l1.414-1.415Z" + /> + d="M5.9 4.8A2 2 0 0 1 7.5 4h9a2 2 0 0 1 1.6.8l2.3 3.067a3 3 0 0 1 .6 1.8V17a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V9.667a3 3 0 0 1 .6-1.8L5.9 4.8ZM16.5 6H13v2h5l-1.5-2Zm2.5 4h-6v8h5a1 1 0 0 0 1-1v-7Zm-8-2V6H7.5L6 8h5Zm-6 2h6v8H6a1 1 0 0 1-1-1v-7Z" + /> + d="M9.782 3.805C8.68 4.725 7.83 5.337 7 5.675v2.649c.83.339 1.68.95 2.782 1.871C9.9 9.468 10 8.425 10 7c0-1.426-.101-2.468-.218-3.195ZM9.04 1.813C6.828 3.709 6.15 4 5.35 4H2.333A2.333 2.333 0 0 0 0 6.333v1.334c0 1.25.983 2.27 2.219 2.33l.81 3.245a1 1 0 0 0 1.941-.485L4.28 10h1.07c.801 0 1.478.29 3.69 2.187a1.6 1.6 0 0 0 1.456.345c.529-.141.95-.558 1.087-1.131C11.784 10.554 12 9.146 12 7s-.216-3.554-.417-4.401a1.519 1.519 0 0 0-1.087-1.131 1.602 1.602 0 0 0-1.456.345ZM2.333 6A.333.333 0 0 0 2 6.333v1.334c0 .184.15.333.333.333H5V6H2.333ZM14 6a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2h-1Zm1.894-2.947a1 1 0 0 1-.447 1.341l-1 .5a1 1 0 1 1-.894-1.789l1-.5a1 1 0 0 1 1.341.448Zm-1.447 6.052a1 1 0 1 0-.894 1.79l1 .5a1 1 0 0 0 .894-1.79l-1-.5Z" + /> + d="M15.473 5.135c-2.368 2.04-3.894 3.22-5.473 3.662v4.406c1.582.443 3.114 1.625 5.482 3.663.246-1.134.518-3.029.518-5.866 0-2.84-.277-4.734-.527-5.865ZM8.5 7H3a3 3 0 0 0-3 3v2c0 1.386.94 2.552 2.216 2.897l1.719 6.015A1.5 1.5 0 0 0 5.377 22h2.96a1.5 1.5 0 0 0 1.442-1.912L8.326 15h.224c1.366.016 2.506.687 5.791 3.524.492.424 1.142.58 1.744.418a1.792 1.792 0 0 0 1.28-1.337c.3-1.26.635-3.386.635-6.605 0-3.228-.342-5.356-.648-6.614a1.79 1.79 0 0 0-1.282-1.328 1.907 1.907 0 0 0-1.737.419C11.005 6.352 9.89 7 8.5 7ZM3 9a1 1 0 0 0-1 1v2a1 1 0 0 0 1.023 1H8V9H3Zm3.246 6h-1.92l1.428 5h1.92l-1.428-5ZM21 10a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2h-2Zm2.894-4.447a1 1 0 0 1-.447 1.342l-2 1a1 1 0 1 1-.894-1.79l2-1a1 1 0 0 1 1.341.448Zm-2.447 8.553a1 1 0 1 0-.894 1.789l2 1a1 1 0 0 0 .894-1.79l-2-1Z" + /> + d="M2.5 2a1 1 0 0 0 0 2h11a1 1 0 1 0 0-2h-11Zm-1 6a1 1 0 0 1 1-1h11a1 1 0 1 1 0 2h-11a1 1 0 0 1-1-1Zm0 5a1 1 0 0 1 1-1h11a1 1 0 1 1 0 2h-11a1 1 0 0 1-1-1Z" + /> + clip-rule="evenodd" + /> - + + stroke-width="1" + /> + fill="#00BCFF" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#0A0080" + /> + stroke-width="1" + /> + fill="#00BCFF" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#0A0080" + /> + stroke-width="1" + /> + fill="#00BCFF" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#0A0080" + /> + stroke-width="1" + /> + fill="#00BCFF" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#0A0080" + /> - - + + - + - + - + - + - + + d="M8.992.357a1.559 1.559 0 0 0-1.984 0C5.4 1.687 3.288 2.097 2.353 2.21 1.62 2.301 1 2.921 1 3.726V8c0 1.288.335 2.666 1.306 4.025.96 1.343 2.501 2.611 4.821 3.77.55.274 1.196.274 1.746 0 2.32-1.159 3.86-2.427 4.82-3.77C14.666 10.665 15 9.287 15 8V3.726c0-.805-.62-1.425-1.353-1.515-.934-.115-3.048-.524-4.655-1.854ZM3 7.999v-3.86c1.15-.181 3.23-.675 5-2.018 1.77 1.343 3.85 1.837 5 2.018V8c0 .915-.23 1.877-.934 2.862-.713.998-1.953 2.075-4.066 3.133-2.113-1.058-3.353-2.135-4.066-3.133C3.229 9.876 3 8.914 3 8Zm8.207-.793a1 1 0 0 0-1.414-1.414L7 8.584l-.793-.792a1 1 0 0 0-1.414 1.414l1.5 1.5a1 1 0 0 0 1.414 0l3.5-3.5Z" + /> + d="M13.149.348a2.069 2.069 0 0 0-2.297 0C7.556 2.552 4.37 3.257 3.274 3.445A1.53 1.53 0 0 0 2 4.945v6.04c0 2.788.571 5.186 2.058 7.316 1.474 2.11 3.78 3.86 7.064 5.49a1.98 1.98 0 0 0 1.756 0c3.285-1.63 5.59-3.38 7.064-5.49C21.429 16.171 22 13.773 22 10.986v-6.04c0-.77-.57-1.38-1.275-1.501-1.095-.188-4.281-.893-7.577-3.097Zm-1.186 1.663A.065.065 0 0 1 12 2a.07.07 0 0 1 .037.01C15.326 4.21 18.51 5.05 20 5.345v5.642c0 2.497-.506 4.462-1.698 6.17-1.205 1.726-3.18 3.287-6.302 4.837-3.122-1.55-5.097-3.111-6.302-4.837C4.506 15.448 4 13.483 4 10.986V5.344c1.49-.294 4.674-1.134 7.963-3.333Zm4.748 8.023a1 1 0 0 0-1.414-1.415l-4.632 4.632-1.962-1.962a1 1 0 1 0-1.414 1.414l2.67 2.67a1 1 0 0 0 1.414 0l5.338-5.34Z" + /> + fill="var(--color-background-accent, #0968f6)" + /> + fill="var(--color-foreground-on-accent, #ffffff)" + /> + fill="#0968F6" + /> + fill="#fff" + /> + fill="var(--color-background-accent, #0968f6)" + /> + fill="var(--color-foreground-on-accent, #ffffff)" + /> + fill="#0968F6" + /> + fill="#fff" + /> + d="M10.721 3.078a.2.2 0 0 0-.219-.068l-1.758.56c.364.264.714.595 1.027.986.707.884 1.073 1.883 1.069 2.72l2.499-.8-2.618-3.398ZM7.294 8.412a5.284 5.284 0 0 1-1.067-1.014c-.697-.87-1.062-1.853-1.068-2.683l-2.498.797 2.618 3.406a.2.2 0 0 0 .22.069l1.795-.575Zm2.6-7.308a2.2 2.2 0 0 1 2.412.754l2.835 3.68a1.75 1.75 0 0 1-.853 2.734l-8.18 2.62a2.2 2.2 0 0 1-2.415-.755L.858 6.448a1.75 1.75 0 0 1 .856-2.733l8.18-2.61Zm6.058 9.287a1 1 0 0 1-.645 1.258l-9.942 3.204a3 3 0 0 1-3.3-1.028L.208 11.407a1 1 0 0 1 1.586-1.219l1.859 2.419a1 1 0 0 0 1.1.342l9.941-3.203a1 1 0 0 1 1.259.645ZM6.706 4.382l.003-.001a.013.013 0 0 1-.003.001Zm-.038.48c-.035-.321.028-.45.05-.485.04-.015.18-.048.484.056.412.14.938.485 1.4 1.062.46.576.683 1.165.73 1.599.033.32-.029.449-.052.484-.039.015-.178.047-.483-.056-.413-.14-.938-.486-1.4-1.062-.46-.577-.683-1.165-.73-1.599Zm2.604 2.727.002-.003a.014.014 0 0 1-.002.003Zm.02-.016-.002.001a.013.013 0 0 1 .002-.001ZM6.726 4.367Z" + /> - + + d="M16.822 4.214a.5.5 0 0 0-.569-.188L13.21 5.044a8.501 8.501 0 0 1 2.134 1.975c1.224 1.584 1.795 3.382 1.672 4.846l3.853-1.288a.25.25 0 0 0 .126-.38l-4.172-5.983Zm-5.544 9.569a8.5 8.5 0 0 1-2.133-1.975C7.92 10.224 7.349 8.425 7.473 6.961L3.13 8.414a.25.25 0 0 0-.125.38l4.175 5.981a.5.5 0 0 0 .568.188l3.53-1.18Zm4.341-11.654a2.5 2.5 0 0 1 2.843.941l4.172 5.983a2.25 2.25 0 0 1-1.132 3.42L8.382 16.86a2.5 2.5 0 0 1-2.843-.94L1.364 9.938a2.25 2.25 0 0 1 1.131-3.421L15.62 2.129ZM.424 13.928a1 1 0 0 1 1.394.242l3.33 4.73a1.5 1.5 0 0 0 1.7.56l15.837-5.266a1 1 0 1 1 .63 1.897L7.48 21.358a3.5 3.5 0 0 1-3.966-1.307l-3.33-4.73a1 1 0 0 1 .241-1.393Zm9.394-7.654c.15-.116.564-.285 1.385-.002.803.277 1.754.93 2.558 1.97.803 1.04 1.195 2.125 1.26 2.971.067.867-.201 1.224-.352 1.34-.15.116-.563.286-1.385.002-.802-.277-1.753-.93-2.557-1.97-.803-1.04-1.195-2.124-1.26-2.97-.067-.867.2-1.224.351-1.34Z" + /> - + + fill="#F5F9FF" + /> - + + fill="#F5F9FF" + /> - + + fill="#F5F9FF" + /> - + + fill="#F5F9FF" + /> + stroke="#191919" + /> + fill="#191919" + /> + stroke="#191919" + /> + fill="#191919" + /> + stroke="#191919" + /> + fill="#191919" + /> + stroke="#191919" + /> + fill="#191919" + /> + d="M8.222 1.413a1 1 0 0 1 .112.986 4.01 4.01 0 0 0 5.267 5.269 1 1 0 0 1 1.39 1.017 7.013 7.013 0 1 1-7.674-7.676 1 1 0 0 1 .905.404ZM6.041 3.377A5.015 5.015 0 0 0 8.013 13a5.015 5.015 0 0 0 4.609-3.04 6.01 6.01 0 0 1-6.581-6.583Z" + /> + d="M9.458 1.387a1 1 0 0 1 .12 1.025 6.052 6.052 0 0 0 8.008 8.007 1 1 0 0 1 1.398 1.083c-.741 4.258-4.454 7.496-8.925 7.496A9.06 9.06 0 0 1 1 9.94c0-4.47 3.237-8.183 7.496-8.924a1 1 0 0 1 .962.372Zm-2.291 2.11A7.062 7.062 0 0 0 10.059 17a7.062 7.062 0 0 0 6.442-4.168 8.052 8.052 0 0 1-9.334-9.333Z" + /> + d="M11.59 1.503a1 1 0 0 1-.078 1.112 7.034 7.034 0 0 0 9.873 9.87 1 1 0 0 1 1.606.918c-.709 5.415-5.34 9.596-10.948 9.596C5.944 23 1 18.055 1 11.957 1 6.349 5.18 1.719 10.593 1.009a1 1 0 0 1 .998.494ZM8.683 3.56A9.047 9.047 0 0 0 3 11.957a9.043 9.043 0 0 0 17.442 3.358A9.034 9.034 0 0 1 8.682 3.559Z" + /> - + d="M10.508 4.647c.204-.31.352-.66.43-1.035L12 2.996l1.498.869a1 1 0 1 0 1.004-1.73l-1.499-.87a2 2 0 0 0-2.006 0l-.4.233a2.999 2.999 0 0 0-5.194 0l-.4-.232a2 2 0 0 0-2.006 0l-1.499.87a1 1 0 1 0 1.004 1.73L4 2.995l1.063.616c.077.376.225.726.43 1.035a2.495 2.495 0 0 0-.747 1.247L4.09 8.519a3 3 0 0 0-.09.727V10H3a1 1 0 1 0 0 2h1v1a1 1 0 1 0 2 0v-2a2 2 0 1 1 4 0v2a1 1 0 1 0 2 0v-1h1a1 1 0 1 0 0-2h-1v-.754a3 3 0 0 0-.09-.727l-.656-2.625a2.495 2.495 0 0 0-.746-1.247ZM8 2a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-.829 4a.5.5 0 0 0-.485.379l-.233.931C6.93 7.11 7.452 7 8 7c.548 0 1.07.11 1.547.31l-.233-.931A.5.5 0 0 0 8.829 6H7.17Z" + /> + + d="M15.155 6.46a3.98 3.98 0 0 0 .812-1.94l1.707-1.313a1 1 0 0 1 1.009-.124l1.918.835a1 1 0 0 0 .798-1.834l-1.918-.835a3 3 0 0 0-3.025.372l-.847.651a4 4 0 0 0-7.218.001l-.85-.65a3 3 0 0 0-3.018-.373l-1.92.833a1 1 0 0 0 .794 1.835l1.921-.833a1 1 0 0 1 1.006.124l1.71 1.31a3.98 3.98 0 0 0 .811 1.94 2.997 2.997 0 0 0-1.25 1.592l-1.39 4.17A4 4 0 0 0 6 13.488V16H4a1 1 0 1 0 0 2h2v1a1 1 0 1 0 2 0v-4a4 4 0 0 1 8 0v4a1 1 0 1 0 2 0v-1h2a1 1 0 1 0 0-2h-2v-2.513c0-.43-.07-.857-.205-1.265l-1.39-4.17a2.997 2.997 0 0 0-1.25-1.592ZM10 4a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm.441 4a1 1 0 0 0-.948.684L9.147 9.72C9.996 9.26 10.967 9 12 9c1.033 0 2.004.26 2.853.72l-.346-1.036A1 1 0 0 0 13.56 8h-3.117Z" + /> + d="M12 12a3 3 0 0 0-3 3v6a3 3 0 1 0 6 0v-6a3 3 0 0 0-3-3Zm1 3a1 1 0 1 0-2 0v6a1 1 0 1 0 2 0v-6Z" + /> + d="M10.008 4.387 7.931 8.418c-.33.64-1.184.776-1.696.272L4.727 7.207l-2.72 4.792h11.992l-3.99-7.612ZM8.524 2.901c.618-1.2 2.331-1.206 2.958-.01l4.288 8.18c.698 1.331-.268 2.928-1.771 2.928H2.007C.474 14-.49 12.345.267 11.012l2.935-5.17a1.667 1.667 0 0 1 2.619-.365l.913.898 1.79-3.474Z" + /> + d="M12.76 3.13c.71-1.455 2.76-1.51 3.546-.097l7.37 13.252c.925 1.667-.28 3.715-2.186 3.715H2.51C.614 20-.592 17.976.31 16.31l4.465-8.246c.742-1.37 2.697-1.403 3.484-.059l1.16 1.979 3.34-6.855Zm9.167 14.127L14.56 4.005l-4.078 8.366a1.1 1.1 0 0 1-1.938.074L6.535 9.016 2.07 17.262a.5.5 0 0 0 .44.738h18.98a.5.5 0 0 0 .437-.743Z" + /> - + - + + fill="#5B23BB" + /> + fill="#fff" + /> + fill="#fff" + /> + fill="#fff" + /> + clip-rule="evenodd" + /> + d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12Zm4.707-16.707a1 1 0 0 0-1.414 0L12 10.586 8.707 7.293a1 1 0 0 0-1.414 1.414L10.586 12l-3.293 3.293a1 1 0 1 0 1.414 1.414L12 13.414l3.293 3.293a1 1 0 0 0 1.414-1.414L13.414 12l3.293-3.293a1 1 0 0 0 0-1.414Z" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + d="M12.262 1.093a1 1 0 0 1 1.329.486A15.216 15.216 0 0 1 15 8c0 2.295-.505 4.473-1.41 6.421a1 1 0 0 1-1.813-.842A13.215 13.215 0 0 0 13 8c0-2-.44-3.89-1.223-5.579a1 1 0 0 1 .486-1.328Zm-3.89 1.34a1 1 0 0 1 1.346.436A11.265 11.265 0 0 1 10.942 8c0 1.85-.441 3.597-1.224 5.132a1 1 0 1 1-1.782-.91A9.265 9.265 0 0 0 8.942 8a9.265 9.265 0 0 0-1.006-4.222 1 1 0 0 1 .436-1.345Zm-2.64 1.731A1 1 0 1 0 4.066 5.27 4.915 4.915 0 0 1 4.888 8a4.915 4.915 0 0 1-.822 2.73 1 1 0 0 0 1.666 1.106A6.915 6.915 0 0 0 6.889 8a6.915 6.915 0 0 0-1.157-3.836ZM.588 5.202a1 1 0 0 1 1.4.196A4.32 4.32 0 0 1 2.836 8a4.32 4.32 0 0 1-.846 2.603A1 1 0 0 1 .392 9.398C.657 9.047.835 8.559.835 8a2.32 2.32 0 0 0-.443-1.397 1 1 0 0 1 .196-1.4Z" + /> + d="M16.604 1.155a1 1 0 0 1 1.38.31C19.89 4.485 21 8.109 21 12c0 3.892-1.11 7.517-3.017 10.535a1 1 0 0 1-1.69-1.07C18 18.765 19 15.51 19 12c0-3.508-1-6.763-2.707-9.466a1 1 0 0 1 .31-1.38ZM12.08 3.439a1 1 0 0 1 1.39.26C15.063 6.026 16 8.899 16 12c0 3.1-.937 5.974-2.53 8.301a1 1 0 1 1-1.65-1.13c1.366-1.996 2.18-4.475 2.18-7.17 0-2.696-.814-5.176-2.18-7.172a1 1 0 0 1 .26-1.39ZM8.965 6A1 1 0 1 0 7.4 7.245C8.385 8.485 9 10.15 9 12s-.615 3.516-1.6 4.756A1 1 0 0 0 8.965 18C10.24 16.4 11 14.291 11 12s-.762-4.398-2.035-6ZM4.95 15.876C5.63 14.93 6 13.496 6 12c0-1.498-.369-2.93-1.051-3.875a1 1 0 0 0-1.622 1.17C3.687 9.794 4 10.77 4 12s-.313 2.207-.673 2.705a1 1 0 1 0 1.622 1.17Z" + /> + stroke-width="1" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#191919" + /> + d="M31 44.524c0-.43.273-.813.674-.97a20.977 20.977 0 0 0 5.369-3.094C28.254 31.765 25.27 28.733 22.287 25.7l-.001-.001c-2.978-3.026-5.957-6.053-14.743-14.746A20.91 20.91 0 0 0 3 24c0 1.966.27 3.869.775 5.674.183.654-.292 1.326-.972 1.326a.957.957 0 0 1-.926-.688A23.016 23.016 0 0 1 1 24C1 11.297 11.297 1 24 1s23 10.297 23 23c0 9.771-6.093 18.12-14.688 21.452-.641.249-1.312-.24-1.312-.928ZM45 24a20.94 20.94 0 0 1-6.447 15.14c-2.63-2.602-4.744-4.7-6.493-6.442A12.5 12.5 0 0 0 39 21.5C39 14.596 33.404 9 26.5 9c-.114 0-.227.002-.34.005A3.567 3.567 0 0 0 26 9a.974.974 0 0 0-.188.018c-4.585.248-8.513 2.968-10.475 6.851a2558.23 2558.23 0 0 0-6.475-6.424A20.94 20.94 0 0 1 24 3c11.598 0 21 9.402 21 21Zm-28.157-6.628a979.983 979.983 0 0 1 6.567 6.619A6.972 6.972 0 0 1 27 23a6.99 6.99 0 0 1 5.218 2.333 1 1 0 1 1-1.49 1.334A4.985 4.985 0 0 0 27 25c-.763 0-1.484.17-2.13.475a951.891 951.891 0 0 0 5.678 5.716A10.503 10.503 0 0 0 37 21.5c0-4.823-3.252-8.887-7.683-10.118A3.5 3.5 0 0 1 27.4 15.71a1 1 0 0 1-.8-1.832 1.5 1.5 0 0 0-.471-2.87 10.504 10.504 0 0 0-9.287 6.365ZM24 20a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm7.5-1.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM12.115 40.51v-2.575c0-2.11-1.534-3.435-3.558-3.435C6.521 34.5 5 35.825 5 37.935v2.576c0 2.122 1.521 3.434 3.557 3.434 2.024 0 3.558-1.312 3.558-3.434Zm-3.558-4.477c1.018 0 1.718.712 1.718 1.902v2.576c0 1.19-.7 1.901-1.718 1.901-1.03 0-1.73-.712-1.73-1.901v-2.576c0-1.19.7-1.902 1.73-1.902Zm13.614 7.912c-1.89 0-3.325-1.03-3.472-3.09h1.852c.013 1.054.798 1.557 1.706 1.557.772 0 1.484-.43 1.484-1.251 0-.712-.577-1.337-1.644-1.337h-.7v-1.497h.725c.81 0 1.349-.589 1.349-1.202 0-.724-.577-1.092-1.251-1.092-.932 0-1.448.466-1.485 1.472h-1.852c.123-1.84 1.337-3.005 3.325-3.005 1.815 0 3.103.883 3.103 2.453 0 .883-.527 1.62-1.165 2 1.005.417 1.447 1.361 1.447 2.195 0 1.718-1.546 2.797-3.422 2.797Zm-8.726-3.987v-1.595h4.146v1.595h-4.146Z" + /> - + - + - + + d="M5 5a3 3 0 0 1 6 0v2.214a2 2 0 0 0 .302 1.057L13.001 11H3l1.698-2.73A2 2 0 0 0 5 7.214V6.012A.99.99 0 0 0 5 6V5Zm-2 .5V5a5 5 0 1 1 10 0v2.214l1.699 2.73c.829 1.332-.13 3.057-1.698 3.057H11a3 3 0 0 1-6 0H3C1.43 13 .471 11.276 1.3 9.944L3 7.214V5.5ZM7 13h2a1 1 0 0 1-2 0Z" + /> + d="M6 6.982a4 4 0 0 1 8 0v2.68c0 .398.106.79.307 1.135l1.652 2.827a.25.25 0 0 1-.216.376H4.256a.25.25 0 0 1-.216-.376l1.653-2.827A2.25 2.25 0 0 0 6 9.662v-2.68ZM4 7a6 6 0 1 1 12 0v2.662a.25.25 0 0 0 .034.126l1.652 2.827c.877 1.5-.205 3.385-1.943 3.385H13a3 3 0 0 1-6 0H4.256c-1.737 0-2.819-1.885-1.942-3.385l1.652-2.827A.25.25 0 0 0 4 9.662V7Zm5 9h2a1 1 0 1 1-2 0Z" + /> + d="M7 7.99a5 5 0 0 1 10 0v3.06c0 .49.143.967.411 1.375l2.501 3.8a.5.5 0 0 1-.418.775H4.505a.5.5 0 0 1-.418-.775l2.501-3.8A2.5 2.5 0 0 0 7 11.051V8a.84.84 0 0 0 0-.01ZM5 8a7 7 0 0 1 14 0v3.05a.5.5 0 0 0 .082.276l2.5 3.8C22.678 16.788 21.485 19 19.495 19H16a4 4 0 0 1-8 0H4.505c-1.99 0-3.182-2.212-2.088-3.874l2.5-3.8A.5.5 0 0 0 5 11.05V8Zm5 11h4a2 2 0 0 1-4 0Z" + /> + d="M19 21c0-7.18 5.82-13 13-13s13 5.82 13 13v8.468a6.5 6.5 0 0 0 1.07 3.574l6.671 10.133c.657.998-.059 2.325-1.253 2.325H12.512c-1.194 0-1.91-1.327-1.253-2.325l6.67-10.133A6.5 6.5 0 0 0 19 29.468V21Zm-5 .528V21c0-9.941 8.059-18 18-18s18 8.059 18 18v8.468c0 .294.086.58.247.825l6.67 10.133c2.846 4.322-.254 10.074-5.429 10.074h-8.987C42.5 56.3 37.8 61 32 61s-10.5-4.701-10.5-10.5h-8.99c-5.174 0-8.273-5.752-5.428-10.074l6.67-10.133a1.5 1.5 0 0 0 .247-.825v-7.94ZM26.5 50.5h11.001a5.5 5.5 0 0 1-11 0Z" + /> - + - + + d="M5 8a7 7 0 0 1 14 0v3.05a.5.5 0 0 0 .082.276l2.5 3.8C22.678 16.788 21.485 19 19.495 19H16a4 4 0 0 1-8 0H4.505c-1.99 0-3.182-2.212-2.088-3.874l2.5-3.8A.5.5 0 0 0 5 11.05V8Zm5 11h4a2 2 0 0 1-4 0Z" + /> + d="M30 2a3 3 0 0 0-3 3v3a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3h-6Zm-1 3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1V5Zm-19 9a1 1 0 0 1 1-1h32a1 1 0 0 1 0 2H11a1 1 0 0 1-1-1Zm9 11.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 0a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm7.866 0a1 1 0 1 0-1.732-1l-2.884 5a5 5 0 0 1-4.33 2.5h-6.822a5 5 0 0 1-4.324-2.49l-2.909-5.012a1 1 0 0 0-1.73 1.004l2.909 5.012A7 7 0 0 0 13.098 34h6.813c-.007.15-.002.302.018.456l1.064 8.419A1 1 0 0 1 20.001 44h-6.999a1 1 0 0 1-.988-1.153l.725-4.694a1 1 0 0 0-1.977-.306l-.725 4.696A3 3 0 0 0 13.002 46h6.999a3 3 0 0 0 2.977-3.376l-1.065-8.42a.58.58 0 0 1 .392-.622 7 7 0 0 0 3.678-3.084l2.883-4.998Z" + /> - + - + - + - + - + - + + d="M3.535 3 2.87 4H7V3H3.535ZM9 3v1h4.132l-.667-1H9ZM7 6H2v6.5a.5.5 0 0 0 .5.5H7V6Zm2 7V6h5v6.5a.5.5 0 0 1-.5.5H9ZM2.02 1.668A1.5 1.5 0 0 1 3.268 1h9.464c.502 0 .97.25 1.248.668l1.6 2.4c.274.41.42.893.42 1.386V12.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5V5.454a2.5 2.5 0 0 1 .42-1.387l1.6-2.399Z" + /> + d="M3.9 2.8A2 2 0 0 1 5.5 2h13a2 2 0 0 1 1.6.8l2.3 3.067a3 3 0 0 1 .6 1.8V19a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V7.667a3 3 0 0 1 .6-1.8L3.9 2.8ZM18.5 4H13v2h7l-1.5-2ZM21 8h-8v12h7a1 1 0 0 0 1-1V8ZM11 6V4H5.5L4 6h7ZM3 8v11a1 1 0 0 0 1 1h7V8H3Z" + /> + d="M15.028 5a5.5 5.5 0 0 0-4.448 2.265l-6.528 8.976A5.5 5.5 0 0 0 3 19.476V51.5a7.5 7.5 0 0 0 7.5 7.5h43a7.5 7.5 0 0 0 7.5-7.5V19.476a5.5 5.5 0 0 0-1.052-3.235L53.42 7.265A5.5 5.5 0 0 0 48.972 5H15.028ZM29.5 10H15.028a.5.5 0 0 0-.405.206L10.41 16H29.5v-6ZM8 21v30.5a2.5 2.5 0 0 0 2.5 2.5h19V21H8Zm26.5 33h19a2.5 2.5 0 0 0 2.5-2.5V21H34.5v33Zm19.09-38H34.5v-6h14.472a.5.5 0 0 1 .405.206L53.59 16Z" + /> + d="M5.2 4.4A1 1 0 0 1 6 4h4.496v2H4l1.2-1.6ZM12.496 6V4H17a1 1 0 0 1 .8.4L19 6h-6.504ZM20 8h-7.504v3a1 1 0 0 1-2 0V8H3v11a1 1 0 0 0 1 1h5.993a1 1 0 1 1 0 2H4a3 3 0 0 1-3-3V7.667a3 3 0 0 1 .6-1.8l2-2.667A3 3 0 0 1 6 2h11a3 3 0 0 1 2.4 1.2l2 2.667a3 3 0 0 1 .6 1.8V9a1 1 0 1 1-2 0V8Zm4 9.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-4.8-2.235a.7.7 0 1 0-1.4 0V17.3a.7.7 0 1 0 1.4 0v-2.035Zm-.7 5.185a.725.725 0 1 0 0-1.45.725.725 0 0 0 0 1.45Z" + /> + d="M2 4a.5.5 0 0 1 .5-.5H5v9H2.5A.5.5 0 0 1 2 12V4Zm5 8.5h6.5a.5.5 0 0 0 .5-.5V4a.5.5 0 0 0-.5-.5H7v9Zm-4.5-11A2.5 2.5 0 0 0 0 4v8a2.5 2.5 0 0 0 2.5 2.5h11A2.5 2.5 0 0 0 16 12V4a2.5 2.5 0 0 0-2.5-2.5h-11Z" + /> + d="M2 5a1 1 0 0 1 1-1h3v12H3a1 1 0 0 1-1-1V5Zm6 11h9a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H8v12ZM3 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3H3Z" + /> + d="M3 6a1 1 0 0 1 1-1h3.997v14H4a1 1 0 0 1-1-1V6Zm6.997 13h10.001a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-10v14ZM4 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h15.998a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H4Z" + /> + d="M0 4a2.5 2.5 0 0 1 2.5-2.5h11A2.5 2.5 0 0 1 16 4v8a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12V4Zm2.5-.5A.5.5 0 0 0 2 4v8a.5.5 0 0 0 .5.5H10v-9H2.5Zm11 9H12v-9h1.5a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-.5.5ZM6.32 6.738l-.44.512h1.87a.75.75 0 0 1 0 1.5H5.88l.44.512a.75.75 0 0 1-1.14.976l-1.5-1.75a.747.747 0 0 1 .01-.988l1.49-1.738a.75.75 0 0 1 1.14.976Z" + /> + d="M0 5a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V5Zm3-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10V4H3Zm14 12h-2V4h2a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1ZM4.315 9.271 6.376 7.21A1 1 0 1 1 7.79 8.624L7.415 9H10a1 1 0 1 1 0 2H7.415l.375.376a1 1 0 1 1-1.414 1.414l-2.061-2.06a.995.995 0 0 1-.282-.982.995.995 0 0 1 .282-.476Z" + /> + d="M1 6a3 3 0 0 1 3-3h16a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V6Zm3-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h11V5H4Zm16 14h-3V5h3a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1ZM5.076 11.617a.998.998 0 0 1 .217-.324l2.5-2.5a1 1 0 0 1 1.414 1.414L8.414 11H12a1 1 0 1 1 0 2H8.414l.793.793a1 1 0 1 1-1.414 1.414l-2.5-2.5a.997.997 0 0 1-.217-1.09Z" + /> + d="M12 0a2.5 2.5 0 0 1 2.5 2.5v11A2.5 2.5 0 0 1 12 16H4a2.5 2.5 0 0 1-2.5-2.5v-11A2.5 2.5 0 0 1 4 0h8Zm.5 2.5A.5.5 0 0 0 12 2H4a.5.5 0 0 0-.5.5V10h9V2.5Zm-9 11V12h9v1.5a.5.5 0 0 1-.5.5H4a.5.5 0 0 1-.5-.5Zm5.762-7.18-.512-.44v1.87a.75.75 0 0 1-1.5 0V5.88l-.512.44a.75.75 0 1 1-.976-1.14l1.75-1.5a.747.747 0 0 1 .988.01l1.738 1.49a.75.75 0 0 1-.976 1.14Z" + /> + d="M15 0a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3h10Zm1 3a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10h12V3ZM4 17v-2h12v2a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1Zm6.729-12.685 2.061 2.061a1 1 0 0 1-1.414 1.414L11 7.415V10a1 1 0 1 1-2 0V7.415l-.376.375A1 1 0 0 1 7.21 6.376l2.06-2.061a1.018 1.018 0 0 1 .476-.283.997.997 0 0 1 .982.283Z" + /> + d="M18 1a3 3 0 0 1 3 3v16a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V4a3 3 0 0 1 3-3h12Zm1 3a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v11h14V4ZM5 20v-3h14v3a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1Zm7.383-14.924a.998.998 0 0 1 .324.217l2.5 2.5a1 1 0 0 1-1.414 1.414L13 8.414V12a1 1 0 1 1-2 0V8.414l-.793.793a1 1 0 0 1-1.414-1.414l2.5-2.5a.997.997 0 0 1 1.09-.217Z" + /> + d="M0 4a2.5 2.5 0 0 1 2.5-2.5h11A2.5 2.5 0 0 1 16 4v8a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12V4Zm2.5-.5A.5.5 0 0 0 2 4v8a.5.5 0 0 0 .5.5H4v-9H2.5Zm11 9H6v-9h7.5a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-.5.5ZM9.68 6.738l.44.512H8.25a.75.75 0 0 0 0 1.5h1.87l-.44.512a.75.75 0 0 0 1.14.976l1.5-1.75a.747.747 0 0 0-.01-.988l-1.49-1.738a.75.75 0 0 0-1.14.976Z" + /> + d="M0 5a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V5Zm3-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h2V4H3Zm14 12H7V4h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1Zm-1.315-5.271-2.061 2.061a1 1 0 0 1-1.414-1.414l.375-.376H10a1 1 0 1 1 0-2h2.585l-.375-.376a1 1 0 1 1 1.414-1.414l2.061 2.061a.994.994 0 0 1 .313.67.998.998 0 0 1-.29.766l-.023.022Z" + /> + d="M1 6a3 3 0 0 1 3-3h16a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V6Zm3-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h3V5H4Zm16 14H9V5h11a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1Zm-1.076-6.616a.998.998 0 0 1-.217.323l-2.5 2.5a1 1 0 0 1-1.414-1.414l.793-.793H12a1 1 0 1 1 0-2h3.586l-.793-.793a1 1 0 0 1 1.414-1.414l2.5 2.5a.997.997 0 0 1 .293.704v.006a.997.997 0 0 1-.076.381Z" + /> + d="M12 0a2.5 2.5 0 0 1 2.5 2.5v11A2.5 2.5 0 0 1 12 16H4a2.5 2.5 0 0 1-2.5-2.5v-11A2.5 2.5 0 0 1 4 0h8Zm.5 2.5A.5.5 0 0 0 12 2H4a.5.5 0 0 0-.5.5V4h9V2.5Zm-9 11V6h9v7.5a.5.5 0 0 1-.5.5H4a.5.5 0 0 1-.5-.5Zm5.762-3.82-.512.44V8.25a.75.75 0 0 0-1.5 0v1.87l-.512-.44a.75.75 0 1 0-.976 1.14l1.75 1.5a.747.747 0 0 0 .988-.01l1.738-1.49a.75.75 0 0 0-.976-1.14Z" + /> + d="M15 0a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3h10Zm1 3a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v2h12V3ZM4 17V7h12v10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1Zm5.271-1.315L7.21 13.624a1 1 0 1 1 1.414-1.414l.376.375V10a1 1 0 1 1 2 0v2.585l.376-.375a1 1 0 1 1 1.414 1.414l-2.061 2.061a.994.994 0 0 1-.67.313.998.998 0 0 1-.766-.29l-.022-.023Z" + /> + d="M18 1a3 3 0 0 1 3 3v16a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V4a3 3 0 0 1 3-3h12Zm1 3a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3h14V4ZM5 20V9h14v11a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1Zm6.616-1.076a.998.998 0 0 1-.323-.217l-2.5-2.5a1 1 0 1 1 1.414-1.414l.793.793V12a1 1 0 1 1 2 0v3.586l.793-.793a1 1 0 0 1 1.414 1.414l-2.5 2.5a.997.997 0 0 1-.704.293h-.006a.997.997 0 0 1-.381-.076Z" + /> + d="M4 4.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm4.236 2.183a3.5 3.5 0 1 0-5.471 0C1.12 7.581 0 9.305 0 11.5A2.5 2.5 0 0 0 2.5 14h6a2.5 2.5 0 0 0 2.5-2.5c0-2.195-1.12-3.919-2.764-4.817ZM5.5 8C3.536 8 2 9.39 2 11.5a.5.5 0 0 0 .5.5h6a.5.5 0 0 0 .5-.5C9 9.39 7.464 8 5.5 8ZM12 5a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm1-3a3 3 0 0 0-1 5.83V13a1 1 0 0 0 1 1h2a1 1 0 1 0 0-2h-1v-1h1a1 1 0 1 0 0-2h-1V7.83A3.001 3.001 0 0 0 13 2Z" + /> + d="M5 7.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0Zm6.908 4.317a5.5 5.5 0 1 0-6.816 0A7.5 7.5 0 0 0 1 18.5 2.5 2.5 0 0 0 3.5 21h10a2.5 2.5 0 0 0 2.5-2.5 7.5 7.5 0 0 0-4.092-6.683ZM8.5 13A5.5 5.5 0 0 0 3 18.5a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5A5.5 5.5 0 0 0 8.5 13Zm8.5-3a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2-4a4 4 0 0 0-1 7.874V20a1 1 0 0 0 1 1h3a1 1 0 1 0 0-2h-2v-1h2a1 1 0 1 0 0-2h-2v-2.126A4.002 4.002 0 0 0 19 6Z" + /> + d="M13 20a9.5 9.5 0 1 1 19 0 9.5 9.5 0 0 1-19 0Zm9.5-14.5C14.492 5.5 8 11.992 8 20c0 4.73 2.264 8.93 5.768 11.577C7.344 34.797 3 41.47 3 49.5A6.5 6.5 0 0 0 9.5 56h26a6.5 6.5 0 0 0 6.5-6.5c0-8.062-4.226-14.805-10.66-18.005A14.476 14.476 0 0 0 37 20c0-8.008-6.492-14.5-14.5-14.5ZM45 27a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0Zm5.5-10.5C44.701 16.5 40 21.201 40 27c0 4.938 3.408 9.079 8 10.2v16.3a2.5 2.5 0 0 0 2.5 2.5h8a2.5 2.5 0 0 0 0-5H53v-3.5h5.5a2.5 2.5 0 0 0 0-5H53v-5.3c4.592-1.121 8-5.263 8-10.2 0-5.799-4.701-10.5-10.5-10.5Zm-27.833 18C14.497 34.5 8 40.858 8 49.5A1.5 1.5 0 0 0 9.5 51h26a1.5 1.5 0 0 0 1.5-1.5c0-8.707-6.227-15-14.333-15Z" + /> - + + d="M7.75 4.75a1.75 1.75 0 1 0-3.5 0v10.5a1.75 1.75 0 1 0 3.5 0V4.75Zm8 0a1.75 1.75 0 1 0-3.5 0v10.5a1.75 1.75 0 1 0 3.5 0V4.75Z" + /> - + - + + fill="#191919" + /> - + + fill="#060606" + /> - + + fill="#060606" + /> - + + fill="#060606" + /> - + + fill="#060606" + /> + fill="#E5E5E5" + /> + fill="#00AEEF" + /> + fill="#fff" + /> + fill="#F26322" + /> + fill="#00965E" + /> + fill="#D00040" + /> + fill="#fff" + /> + fill="#191919" + /> + fill="#fff" + /> + fill="#E5E5E5" + /> + fill="#FFCD00" + /> + fill="#21396F" + /> + fill="#E00818" + /> + fill="#0018A8" + /> + fill="#fff" + /> + fill="#E30613" + /> + fill="#fff" + /> + fill="#191919" + /> + height="24" + > + fill="#DB0011" + /> - + + fill="#0066B3" + /> + fill="#fff" + /> + fill="#E5E5E5" + /> + fill="#003E60" + /> + fill="#40A7DE" + /> + fill="#fff" + /> + fill="#C7C7C7" + /> + fill="#DC0028" + /> + fill="#CC2131" + /> + fill="#fff" + /> + fill="#128D92" + /> + fill="#EC1F26" + /> + fill="#fff" + /> + fill="#191919" + /> + fill="#E5E5E5" + /> + fill="#112231" + /> + fill="#FF4F40" + /> + fill="#BBF42E" + /> + fill="#0088A6" + /> + fill="#48D3B2" + /> + fill="#400755" + /> + fill="#CF002C" + /> + fill="#DD3E56" + /> + fill="#CF002C" + /> + fill="#DD3E56" + /> - + fill="#DB0011" + /> + + fill="#fff" + /> + fill="#00AFE9" + /> + fill="#fff" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#252526" + /> + fill="#FF4700" + /> + fill="#DD52BA" + /> + fill="#E9B201" + /> + fill="#2DCC86" + /> + fill="#F76D01" + /> + fill="#FC480A" + /> + fill="#0FB4C1" + /> + fill="#7E6CE4" + /> + fill="#B15FD0" + /> + fill="#0F9BDF" + /> + fill="#0FAEC7" + /> + fill="#1CBFA6" + /> + fill="#D654BE" + /> + fill="#4479ED" + /> + fill="#0F8FEF" + /> + fill="#1685F1" + /> + fill="#F74929" + /> + fill="#FA4919" + /> + fill="#F24B43" + /> + fill="#ED4D63" + /> + fill="#E84E80" + /> + fill="#E250A0" + /> + fill="#E3D301" + /> + fill="#43DA62" + /> + fill="#60DB4F" + /> + fill="#3BD66E" + /> + fill="#C2D714" + /> + fill="#9CDA2B" + /> + fill="#EF9401" + /> + stroke-width="1" + /> + fill="#252526" + /> + fill="#FF4700" + /> + fill="#DD52BA" + /> + fill="#E9B201" + /> + fill="#2DCC86" + /> + fill="#F76D01" + /> + fill="#FC480A" + /> + fill="#0FB4C1" + /> + fill="#7E6CE4" + /> + fill="#B15FD0" + /> + fill="#0F9BDF" + /> + fill="#0FAEC7" + /> + fill="#1CBFA6" + /> + fill="#D654BE" + /> + fill="#4479ED" + /> + fill="#0F8FEF" + /> + fill="#1685F1" + /> + fill="#F74929" + /> + fill="#FA4919" + /> + fill="#F24B43" + /> + fill="#ED4D63" + /> + fill="#E84E80" + /> + fill="#E250A0" + /> + fill="#E3D301" + /> + fill="#43DA62" + /> + fill="#60DB4F" + /> + fill="#3BD66E" + /> + fill="#C2D714" + /> + fill="#9CDA2B" + /> + fill="#EF9401" + /> + stroke-width="1" + /> + fill="#FF4700" + /> + fill="#DD52BA" + /> + fill="#E9B201" + /> + fill="#2DCC86" + /> + fill="#F76D01" + /> + fill="#FC480A" + /> + fill="#0FB4C1" + /> + fill="#7E6CE4" + /> + fill="#B15FD0" + /> + fill="#0F9BDF" + /> + fill="#0FAEC7" + /> + fill="#1CBFA6" + /> + fill="#D654BE" + /> + fill="#4479ED" + /> + fill="#0F8FEF" + /> + fill="#1685F1" + /> + fill="#F74929" + /> + fill="#FA4919" + /> + fill="#F24B43" + /> + fill="#ED4D63" + /> + fill="#E84E80" + /> + fill="#E250A0" + /> + fill="#E3D301" + /> + fill="#43DA62" + /> + fill="#60DB4F" + /> + fill="#3BD66E" + /> + fill="#C2D714" + /> + fill="#9CDA2B" + /> + fill="#EF9401" + /> + fill="#252526" + /> + stroke-width="1" + /> + fill="#252526" + /> + fill="#FF4700" + /> + fill="#DD52BA" + /> + fill="#E9B201" + /> + fill="#2DCC86" + /> + fill="#F76D01" + /> + fill="#FC480A" + /> + fill="#0FB4C1" + /> + fill="#7E6CE4" + /> + fill="#B15FD0" + /> + fill="#0F9BDF" + /> + fill="#0FAEC7" + /> + fill="#1CBFA6" + /> + fill="#D654BE" + /> + fill="#4479ED" + /> + fill="#0F8FEF" + /> + fill="#1685F1" + /> + fill="#F74929" + /> + fill="#FA4919" + /> + fill="#F24B43" + /> + fill="#ED4D63" + /> + fill="#E84E80" + /> + fill="#E250A0" + /> + fill="#E3D301" + /> + fill="#43DA62" + /> + fill="#60DB4F" + /> + fill="#3BD66E" + /> + fill="#C2D714" + /> + fill="#9CDA2B" + /> + fill="#EF9401" + /> - + - + - + + stroke-width="1" + /> + fill="#009CDE" + /> + fill="#003087" + /> + fill="#009CDE" + /> + fill="#003087" + /> + fill="#009CDE" + /> + stroke-width="1" + /> + fill="#009CDE" + /> + fill="#003087" + /> + fill="#009CDE" + /> + fill="#003087" + /> + fill="#009CDE" + /> + stroke-width="1" + /> + fill="#009CDE" + /> + fill="#003087" + /> + fill="#009CDE" + /> + fill="#003087" + /> + fill="#009CDE" + /> + stroke-width="1" + /> + fill="#009CDE" + /> + fill="#003087" + /> + fill="#009CDE" + /> + fill="#003087" + /> + fill="#009CDE" + /> - - + + - - + + - - + + - - + + + stroke-width="1" + /> + fill="#263B80" + /> + fill="#139AD6" + /> + fill="#263B80" + /> + fill="#139AD6" + /> + fill="#263B80" + /> - + fill="#139AD6" + /> + + fill="#232C65" + /> + stroke-width="1" + /> + fill="#263B80" + /> + fill="#139AD6" + /> + fill="#263B80" + /> + fill="#139AD6" + /> + fill="#263B80" + /> - + fill="#139AD6" + /> + + fill="#232C65" + /> + stroke-width="1" + /> + fill="#263B80" + /> + fill="#139AD6" + /> + fill="#263B80" + /> + fill="#139AD6" + /> + fill="#263B80" + /> - + fill="#139AD6" + /> + + fill="#232C65" + /> + stroke-width="1" + /> + fill="#263B80" + /> + fill="#139AD6" + /> + fill="#263B80" + /> + fill="#139AD6" + /> + fill="#263B80" + /> - + fill="#139AD6" + /> + + fill="#232C65" + /> + stroke-width="1" + /> + fill="#747474" + /> + fill="#2B2B2B" + /> + fill="#747474" + /> + fill="#2B2B2B" + /> + fill="#747474" + /> + stroke-width="1" + /> + fill="#747474" + /> + fill="#2B2B2B" + /> + fill="#747474" + /> + fill="#2B2B2B" + /> + fill="#747474" + /> + stroke-width="1" + /> + fill="#747474" + /> + fill="#2B2B2B" + /> + fill="#747474" + /> + fill="#2B2B2B" + /> + fill="#747474" + /> + stroke-width="1" + /> + fill="#747474" + /> + fill="#2B2B2B" + /> + fill="#747474" + /> + fill="#2B2B2B" + /> + fill="#747474" + /> - + + stroke-width="1" + /> + fill="#3F3A39" + /> + fill="#F03" + /> + stroke-width="1" + /> + fill="#3F3A39" + /> + fill="#F03" + /> + stroke-width="1" + /> + fill="#3F3A39" + /> + fill="#F03" + /> + stroke-width="1" + /> + fill="#3F3A39" + /> + fill="#F03" + /> - + + d="M17.975 2.026a3.5 3.5 0 0 0-4.95 0L2.292 12.794a1 1 0 0 0-.268.49l-1 4.5a1 1 0 0 0 1.193 1.192l4.5-1a1 1 0 0 0 .489-.267L17.975 6.975a3.5 3.5 0 0 0 0-4.95Zm-4.327 2.208.791-.794a1.5 1.5 0 0 1 2.122 2.121l-.794.792-2.119-2.12ZM12.236 5.65 3.913 14l-.596 2.683L6 16.087l8.35-8.323-2.114-2.114Z" + /> - + + d="m19.125 2.895-.796 1.813 2.74 1.208.802-1.81a1.5 1.5 0 0 0-2.746-1.211ZM13.13 16.549l4.395-10.01 2.734 1.206-4.427 9.995-2.286 1.526-.415-2.717Zm4.164-14.46a3.502 3.502 0 0 1 6.407 2.823v.002l-6.158 13.9a1 1 0 0 1-.359.427l-3.835 2.56a.996.996 0 0 1-.178.096c-.336.17-.711.275-1.064.344-.552.109-1.19.155-1.862.156-1.345.002-2.924-.18-4.41-.502-1.476-.321-2.938-.798-4.01-1.427-.534-.313-1.038-.702-1.382-1.188-.363-.514-.556-1.158-.373-1.861.286-1.1 1.047-1.74 1.871-2.116.78-.356 1.7-.512 2.466-.635l.19-.03c.743-.119 1.339-.214 1.807-.387.478-.177.586-.348.626-.5.017-.066.033-.128-.124-.286-.2-.2-.582-.426-1.163-.644-1.143-.428-2.67-.684-3.864-.825a1 1 0 1 1 .235-1.986c1.229.145 2.954.422 4.332.938.68.255 1.375.604 1.874 1.103.541.541.88 1.303.645 2.204-.275 1.058-1.1 1.588-1.867 1.872-.666.246-1.464.372-2.153.48l-.222.036c-.8.128-1.456.253-1.953.48-.453.206-.673.447-.764.8l-.001.002c-.006.024-.02.072.072.2.114.162.35.378.76.618.813.477 2.043.898 3.422 1.197 1.367.297 2.801.46 3.983.457.57 0 1.056-.04 1.436-.11l-.569-3.723a1 1 0 0 1 .073-.552L17.294 2.09v-.002Z" + /> - + - + + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> - + + d="M6.647 3.32a1 1 0 0 0-1.425-.044L3.129 5.277c-.112.107-.134.211-.128.268.266 2.877 2.541 6.609 5.689 9.76 3.147 3.15 6.875 5.428 9.75 5.695.058.005.162-.017.269-.128l2.013-2.1a1 1 0 0 0-.044-1.427l-3.28-3.024-2.929 1.555a1 1 0 0 1-1.176-.176l-4.999-4.998a1 1 0 0 1-.176-1.175l1.556-2.928L6.647 3.32ZM3.84 1.833a3 3 0 0 1 4.277.133l3.026 3.277c.577.625.695 1.544.297 2.294l-1.209 2.275 3.953 3.953 2.276-1.209a2 2 0 0 1 2.294.296l3.28 3.025a2.998 2.998 0 0 1 .132 4.279l-2.014 2.1c-.458.479-1.138.806-1.896.736-3.574-.332-7.719-3.008-10.981-6.274C4.012 13.451 1.34 9.302 1.009 5.73c-.07-.758.258-1.439.738-1.898l2.093-2Z" + /> - + - + + clip-rule="evenodd" + /> - + - + - + - + - + - + - + - + + fill-opacity=".88" + /> + fill="#191919" + /> + fill-opacity=".88" + /> + fill="#191919" + /> - + + fill="#191919" + /> + stroke-width="1" + /> + fill="#005294" + /> + stroke-width="1" + /> + fill="#005294" + /> + stroke-width="1" + /> + fill="#005294" + /> + stroke-width="1" + /> + fill="#005294" + /> + d="M7.426.18a1 1 0 0 1 1.147 0c.943.66 1.6 1.404 2.014 2.18.943-.373 2.106-.483 3.481-.24a1 1 0 0 1 .811.81c.223 1.261.138 2.349-.216 3.257a4.284 4.284 0 0 1-.42.81h.255a1.5 1.5 0 0 1 1.408 2.02l-1.484 4.02a3 3 0 0 1-2.815 1.96H4.392a3 3 0 0 1-2.815-1.961L.094 9.016a1.5 1.5 0 0 1 1.408-2.019h.251a4.294 4.294 0 0 1-.42-.811c-.353-.91-.438-1.997-.216-3.258a1 1 0 0 1 .812-.81c1.376-.243 2.54-.132 3.483.242C5.827 1.584 6.484.84 7.426.18Zm.628 6.817h-.109a3.434 3.434 0 0 1-1.06-1.914C6.744 4.257 6.93 3.245 8 2.274c1.07.971 1.256 1.983 1.115 2.81a3.433 3.433 0 0 1-1.06 1.913Zm2.5-.018a3.094 3.094 0 0 0 1.36-.441c.381-.243.694-.589.885-1.078.142-.364.229-.841.196-1.46-.796-.051-1.397.078-1.849.298a4.78 4.78 0 0 1-.06 1.122 5.279 5.279 0 0 1-.532 1.559Zm-5.64-1.56a4.815 4.815 0 0 1-.06-1.12c-.453-.222-1.055-.352-1.852-.301-.033.619.053 1.096.196 1.461.19.49.504.837.886 1.08.404.258.888.398 1.364.443a5.278 5.278 0 0 1-.535-1.562Zm-1.46 6.925L2.218 8.997H13.78l-1.235 3.347a1 1 0 0 1-.939.654H4.392a1 1 0 0 1-.939-.654Z" + /> + d="M12.575 1.18a1 1 0 0 0-1.147 0C9.873 2.27 8.876 3.512 8.321 4.794c-1.373-.718-3.149-1.004-5.339-.617a1 1 0 0 0-.81.81c-.564 3.183.27 5.514 1.783 7.013h-.953a2 2 0 0 0-1.905 2.606l1.783 5.607A4 4 0 0 0 6.693 23h10.616a4 4 0 0 0 3.812-2.789l1.782-5.605A2 2 0 0 0 20.997 12h-.954c1.511-1.499 2.344-3.829 1.782-7.01a1 1 0 0 0-.81-.81c-2.187-.387-3.96-.102-5.333.612-.555-1.281-1.552-2.523-3.107-3.611ZM11.87 14a.998.998 0 0 0 .262 0h8.865l-1.782 5.606A2 2 0 0 1 17.31 21H6.693a2 2 0 0 1-1.906-1.394L3.003 14h8.867Zm6.221-2.961c-1.04.747-2.336 1.024-3.419.944a7.785 7.785 0 0 0 1.467-3.368 6.879 6.879 0 0 0 .065-1.81c.874-.586 2.089-.926 3.752-.756.27 2.6-.68 4.138-1.865 4.99Zm-8.761.943a7.785 7.785 0 0 1-1.466-3.367A6.883 6.883 0 0 1 7.8 6.807c-.875-.59-2.091-.932-3.758-.762-.27 2.6.679 4.14 1.865 4.992 1.041.748 2.34 1.025 3.424.945Zm4.836-3.698c-.26 1.55-1.205 2.875-2.165 3.559-.96-.684-1.904-2.008-2.164-3.56-.26-1.548.156-3.384 2.165-5.03 2.008 1.646 2.424 3.482 2.164 5.03Z" + /> - + - + + d="M5 2.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5V4H5V2.5ZM3 4V2.5A2.5 2.5 0 0 1 5.5 0h5A2.5 2.5 0 0 1 13 2.5V4h.5A2.5 2.5 0 0 1 16 6.5v4a2.5 2.5 0 0 1-2.5 2.5H13v.5a2.5 2.5 0 0 1-2.5 2.5h-5A2.5 2.5 0 0 1 3 13.5V13h-.5A2.5 2.5 0 0 1 0 10.5v-4A2.5 2.5 0 0 1 2.5 4H3Zm0 7V9a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v2h.5a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-11a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5H3Zm2 2.5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5V10H5v3.5Z" + /> - - + + + d="M2 8a6 6 0 1 1 10.472 4A5.986 5.986 0 0 0 8 10a5.986 5.986 0 0 0-4.472 2A5.978 5.978 0 0 1 2 8Zm6-8a8 8 0 1 0 0 16A8 8 0 0 0 8 0Zm2.375 6.625a2.375 2.375 0 1 1-4.75 0 2.375 2.375 0 0 1 4.75 0Z" + /> + d="M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm0 2c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10Z" + /> + d="M10 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 2a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm0 3c-2.174 0-3.908.98-4.644 2.197L3.645 16.16C4.822 14.215 7.294 13 10 13c2.707 0 5.178 1.216 6.355 3.161l-1.71 1.036C13.908 15.98 12.174 15 10 15Z" + /> + d="M16 10a4 4 0 1 1-8 0 4 4 0 0 1 8 0Zm-2 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z" + /> + d="M23 12c0 6.075-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1s11 4.925 11 11Zm-6.404 7.74A8.958 8.958 0 0 1 12 21c-1.68 0-3.25-.46-4.596-1.26C8.147 18.177 9.853 17 12 17c2.147 0 3.853 1.177 4.596 2.74Zm1.62-1.231C17.05 16.424 14.704 15 12 15s-5.05 1.424-6.216 3.508a9 9 0 1 1 12.432 0Z" + /> - + + d="M23 12c0 6.075-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1s11 4.925 11 11Zm-4.784 6.509C17.05 16.424 14.704 15 12 15s-5.05 1.424-6.216 3.508a9 9 0 1 1 12.432 0Z" + /> - + - + - + - + + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> - + + d="M5 3a1 1 0 0 1 1-1h3.392a.5.5 0 0 1 .348.141l3.104 3.01a.5.5 0 0 1 .003.715l-.749.74-2.962-2.894A2.5 2.5 0 0 0 7.389 3h-2.39Zm9.253 4.288-.746.738a2.5 2.5 0 0 1-.243 3.255L9.28 15.264a2.5 2.5 0 0 1-3.556-.02l-4.012-4.108A2.5 2.5 0 0 1 1 9.39V6c0-1.306.835-2.417 2-2.829V3a3 3 0 0 1 3-3h3.392a2.5 2.5 0 0 1 1.74.705l3.104 3.01a2.5 2.5 0 0 1 .017 3.573ZM4 5a1 1 0 0 0-1 1v3.39a.5.5 0 0 0 .142.349l4.013 4.107a.5.5 0 0 0 .711.004l3.984-3.984a.5.5 0 0 0-.005-.71L7.738 5.142A.5.5 0 0 0 7.388 5H4Zm2 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" + /> + d="M6.002 4a2 2 0 0 1 2-2h5.158a1 1 0 0 1 .714.3l6.845 6.985a1 1 0 0 1-.007 1.408l-1.877 1.874L12.302 5.9A3 3 0 0 0 10.16 5H6.002V4Zm16.123 8.108-2.198 2.195a2.998 2.998 0 0 1-.802 2.805l-6.019 6.012a3 3 0 0 1-4.219.02l-6.983-6.837a3 3 0 0 1-.901-2.144V9a4.002 4.002 0 0 1 3-3.874V4a4 4 0 0 1 4-4h5.157a3 3 0 0 1 2.142.9l6.846 6.985a3 3 0 0 1-.023 4.223ZM5.002 7a2 2 0 0 0-2 2v5.16a1 1 0 0 0 .301.714l6.984 6.838a1 1 0 0 0 1.406-.007l6.019-6.012a1 1 0 0 0 .007-1.408L10.874 7.3a1 1 0 0 0-.714-.3H5.002ZM7.5 13a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" + /> + d="M25.172 3.123c.038-.004.056.042.028.066l-1.308 1.144c-.23.186-.278.275-.278.415 0 .164.184.322.372.322.16 0 .301-.065.555-.228 1.116-.738 1.398-.902 2.071-1.13 1.068-.37 1.186-.44 1.44-.785.306-.345.513-1.13.513-1.797 0-.58-.09-.714-.602-.808A13.575 13.575 0 0 0 25.102 0c-2.951 0-6.067.784-8.551 2.19-1.186.667-1.511 1.083-1.906 2.512-.184.69-.278 1.246-.278 1.592 0 1.2.654 1.755 2.372 2.054l3.835.69c.607.113 1.581.393 2.348.692.838.322 1.163.579 1.163.877 0 .3-.372.598-1.28.99-2.043.92-4.461 1.359-7.506 1.359-.174 0-.81-.019-1.469-.042-.037-.005-.051-.047-.023-.07l.447-.327c.207-.163.254-.21.254-.345a.166.166 0 0 0-.165-.164l-.063-.001c-.087 0-.174.037-1.447.44-.372.117-.584.299-.956.808-.49.714-.72 1.176-.72 1.475 0 .854 1.163 1.27 3.488 1.27 7.157 0 11.595-2.008 11.595-5.21 0-.785-.371-1.429-1.091-1.868-.885-.55-2.396-1.107-3.86-1.429l-2.437-.55a12.37 12.37 0 0 1-1.304-.346c-.49-.159-.743-.369-.743-.598 0-.508 1.299-1.363 2.903-1.914 1.581-.523 2.937-.775 5.464-.962Zm18.39 10.87h-.075V13.8a.368.368 0 0 1 .09-.01c.099 0 .146.043.146.104 0 .07-.07.098-.16.098Zm-.239.387h.16v-.266h.075c.085 0 .127.033.142.107l.015.056a.389.389 0 0 0 .04.112h.175a.469.469 0 0 1-.052-.172c-.023-.094-.061-.145-.127-.168v-.01c.085-.023.141-.084.141-.158a.188.188 0 0 0-.066-.15c-.051-.033-.108-.051-.24-.051-.113 0-.202.005-.263.018v.682Zm.273.187a.531.531 0 0 1-.537-.546c0-.3.226-.546.532-.546.306 0 .527.247.527.55a.524.524 0 0 1-.522.542Zm-.005.145c.4 0 .706-.304.706-.691a.687.687 0 0 0-.706-.682.694.694 0 0 0-.71.682c0 .387.315.69.71.69ZM29.897 9.389h5.044c.024 0 .038-.023.02-.042l-2.556-4.79a.028.028 0 0 0-.052 0l-2.485 4.79c-.01.019.005.042.029.042Zm5.04-7.909c.042 0 .084.024.103.061l7.149 12.89a.041.041 0 0 1-.038.061h-4.334a.117.117 0 0 1-.104-.06l-1.205-2.218c-.009-.014-.023-.023-.037-.023h-8.1c-.013 0-.027.009-.037.023L27.2 14.427a.117.117 0 0 1-.104.06h-2.273c-.056 0-.08-.074-.033-.107 1.68-1.176 2.08-2.554 2.08-3.59 0-.808-.324-1.518-.917-2.05a.156.156 0 0 1-.038-.191l3.826-7.008a.123.123 0 0 1 .104-.06h5.092ZM10.602 7.99c.94 0 1.303-.612 1.303-1.382v-.51c0-.877-.433-1.381-1.647-1.381H4.47a.12.12 0 0 0-.118.117v3.039c0 .065.052.117.118.117h6.132Zm5.143.775c.024.009.033.028.029.05-.433 1.318-1.445 2.405-3.431 2.41H4.474a.116.116 0 0 0-.117.117v3.04a.116.116 0 0 1-.118.116H.451a.116.116 0 0 1-.118-.117V1.602c0-.066.052-.117.118-.117h10.838c1.764 0 2.908.406 3.633 1.092a.042.042 0 0 1 0 .057c-.4.457-.645 1.022-.89 1.904-.136.514-.3 1.233-.3 1.756 0 1.513.922 2.147 2.013 2.47Z" + /> + fill="#EB1C2D" + /> + fill="#0050A2" + /> + d="M25.172 3.123c.038-.004.056.042.028.066l-1.308 1.144c-.23.186-.278.275-.278.415 0 .164.184.322.372.322.16 0 .301-.065.555-.228 1.116-.738 1.398-.902 2.071-1.13 1.068-.37 1.186-.44 1.44-.785.306-.345.513-1.13.513-1.797 0-.58-.09-.714-.602-.808A13.575 13.575 0 0 0 25.102 0c-2.951 0-6.067.784-8.551 2.19-1.186.667-1.511 1.083-1.906 2.512-.184.69-.278 1.246-.278 1.592 0 1.2.654 1.755 2.372 2.054l3.835.69c.607.113 1.581.393 2.348.692.838.322 1.163.579 1.163.877 0 .3-.372.598-1.28.99-2.043.92-4.461 1.359-7.506 1.359-.174 0-.81-.019-1.469-.042-.037-.005-.051-.047-.023-.07l.447-.327c.207-.163.254-.21.254-.345a.166.166 0 0 0-.165-.164l-.063-.001c-.087 0-.174.037-1.447.44-.372.117-.584.299-.956.808-.49.714-.72 1.176-.72 1.475 0 .854 1.163 1.27 3.488 1.27 7.157 0 11.595-2.008 11.595-5.21 0-.785-.371-1.429-1.091-1.868-.885-.55-2.396-1.107-3.86-1.429l-2.437-.55a12.37 12.37 0 0 1-1.304-.346c-.49-.159-.743-.369-.743-.598 0-.508 1.299-1.363 2.903-1.914 1.581-.523 2.937-.775 5.464-.962Zm18.39 10.87h-.075V13.8a.368.368 0 0 1 .09-.01c.099 0 .146.043.146.104 0 .07-.07.098-.16.098Zm-.239.387h.16v-.266h.075c.085 0 .127.033.142.107l.015.056a.389.389 0 0 0 .04.112h.175a.469.469 0 0 1-.052-.172c-.023-.094-.061-.145-.127-.168v-.01c.085-.023.141-.084.141-.158a.188.188 0 0 0-.066-.15c-.051-.033-.108-.051-.24-.051-.113 0-.202.005-.263.018v.682Zm.273.187a.531.531 0 0 1-.537-.546c0-.3.226-.546.532-.546.306 0 .527.247.527.55a.524.524 0 0 1-.522.542Zm-.005.145c.4 0 .706-.304.706-.691a.687.687 0 0 0-.706-.682.694.694 0 0 0-.71.682c0 .387.315.69.71.69ZM29.897 9.389h5.044c.024 0 .038-.023.02-.042l-2.556-4.79a.028.028 0 0 0-.052 0l-2.485 4.79c-.01.019.005.042.029.042Zm5.04-7.909c.042 0 .084.024.103.061l7.149 12.89a.041.041 0 0 1-.038.061h-4.334a.117.117 0 0 1-.104-.06l-1.205-2.218c-.009-.014-.023-.023-.037-.023h-8.1c-.013 0-.027.009-.037.023L27.2 14.427a.117.117 0 0 1-.104.06h-2.273c-.056 0-.08-.074-.033-.107 1.68-1.176 2.08-2.554 2.08-3.59 0-.808-.324-1.518-.917-2.05a.156.156 0 0 1-.038-.191l3.826-7.008a.123.123 0 0 1 .104-.06h5.092ZM10.602 7.99c.94 0 1.303-.612 1.303-1.382v-.51c0-.877-.433-1.381-1.647-1.381H4.47a.12.12 0 0 0-.118.117v3.039c0 .065.052.117.118.117h6.132Zm5.143.775c.024.009.033.028.029.05-.433 1.318-1.445 2.405-3.431 2.41H4.474a.116.116 0 0 0-.117.117v3.04a.116.116 0 0 1-.118.116H.451a.116.116 0 0 1-.118-.117V1.602c0-.066.052-.117.118-.117h10.838c1.764 0 2.908.406 3.633 1.092a.042.042 0 0 1 0 .057c-.4.457-.645 1.022-.89 1.904-.136.514-.3 1.233-.3 1.756 0 1.513.922 2.147 2.013 2.47Z" + /> + d="M25.2 3.189c.028-.024.01-.07-.028-.066-2.527.187-3.883.44-5.464.962-1.605.551-2.903 1.406-2.903 1.914 0 .23.254.44.743.598.513.163.95.275 1.304.345l2.437.551c1.464.322 2.974.878 3.86 1.43.72.438 1.091 1.082 1.091 1.867 0 3.202-4.438 5.21-11.596 5.21-2.324 0-3.487-.415-3.487-1.27 0-.299.23-.76.72-1.475.372-.51.584-.691.955-.808 1.535-.486 1.346-.439 1.511-.439.09 0 .165.075.165.164 0 .135-.047.182-.254.345l-.447.327c-.029.023-.014.065.023.07.659.023 1.294.042 1.469.042 3.044 0 5.463-.439 7.506-1.359.908-.392 1.28-.69 1.28-.99 0-.298-.325-.555-1.163-.877-.767-.299-1.74-.58-2.348-.691l-3.836-.691c-1.717-.3-2.371-.855-2.371-2.054 0-.346.094-.902.277-1.592.396-1.43.72-1.845 1.906-2.512C19.035.784 22.15 0 25.101 0c.932 0 1.93.117 2.861.322.514.094.603.229.603.808 0 .667-.207 1.452-.513 1.797-.254.346-.372.416-1.44.785-.673.228-.955.392-2.07 1.13-.255.163-.396.228-.556.228-.188 0-.372-.158-.372-.322 0-.14.047-.229.278-.415L25.2 3.189Z" + /> + d="M43.487 13.993h.076c.09 0 .16-.028.16-.098 0-.06-.047-.103-.146-.103a.368.368 0 0 0-.09.01v.19Zm-.004.387h-.16v-.68c.061-.014.15-.019.263-.019.132 0 .189.019.24.051a.188.188 0 0 1 .066.15c0 .075-.056.135-.14.159v.009c.065.023.103.075.126.168a.47.47 0 0 0 .052.173h-.174c-.019-.024-.033-.089-.056-.168-.015-.075-.057-.108-.142-.108h-.075v.266Zm-.424-.36c0 .304.226.547.537.547a.524.524 0 0 0 .522-.542c0-.303-.22-.55-.527-.55a.533.533 0 0 0-.532.546Zm1.238 0a.689.689 0 0 1-.706.692.695.695 0 0 1-.71-.691c0-.378.315-.682.71-.682.4 0 .706.304.706.682Zm-9.355-4.63h-5.045c-.024 0-.038-.024-.029-.043l2.485-4.79a.028.028 0 0 1 .052 0l2.555 4.79c.019.02.005.042-.019.042Zm.098-7.849a.117.117 0 0 0-.103-.06h-5.092a.123.123 0 0 0-.104.06L25.915 8.55a.156.156 0 0 0 .038.191c.593.533.918 1.242.918 2.05 0 1.037-.4 2.414-2.08 3.59-.048.033-.024.108.032.108h2.273a.117.117 0 0 0 .104-.061l1.134-2.213c.01-.014.024-.023.038-.023h8.099c.014 0 .028.01.038.023l1.204 2.218c.019.037.061.06.104.06h4.334a.041.041 0 0 0 .038-.06L35.04 1.542ZM11.905 6.607c0 .77-.362 1.382-1.303 1.382H4.47a.116.116 0 0 1-.118-.117v-3.04a.12.12 0 0 1 .118-.116h5.788c1.214 0 1.647.504 1.647 1.382v.509Zm3.869 2.208c.004-.023-.005-.042-.029-.051-1.091-.322-2.014-.957-2.014-2.47 0-.523.165-1.242.301-1.755.245-.883.49-1.448.89-1.905a.042.042 0 0 0 0-.056c-.725-.687-1.869-1.093-3.633-1.093H.45a.116.116 0 0 0-.118.117V14.38c0 .066.052.117.118.117h3.788a.116.116 0 0 0 .118-.117v-3.04c0-.064.051-.116.117-.116h7.869c1.986-.004 2.998-1.092 3.43-2.409Z" + /> + d="M11 8c0 .463-.105.902-.292 1.293l.5.5a1 1 0 0 1-1.415 1.414l-.5-.5C8.902 10.896 8.463 11 8 11a2.99 2.99 0 0 1-1.293-.292l-.5.5a1 1 0 0 1-1.414-1.415l.5-.5A2.988 2.988 0 0 1 5 8c0-.463.105-.902.292-1.293l-.5-.5a1 1 0 0 1 1.415-1.414l.5.5C7.098 5.104 7.537 5 8 5c.463 0 .902.105 1.293.292l.5-.5a1 1 0 0 1 1.414 1.415l-.5.5c.188.391.293.83.293 1.293ZM9 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" + /> + d="M1 4a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3.001 3.001 0 0 1-2 2.83V15a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1H6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-.17A3.001 3.001 0 0 1 1 12V4Zm3-1h8a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Z" + /> - + + fill="#EB1C2D" + /> + fill="#0050A2" + /> + d="M17 11c0 1.02-.305 1.967-.828 2.757l1.535 1.536a1 1 0 0 1-1.414 1.414l-1.536-1.535A4.977 4.977 0 0 1 12 16a4.977 4.977 0 0 1-2.757-.828l-1.536 1.535a1 1 0 0 1-1.414-1.414l1.535-1.536A4.977 4.977 0 0 1 7 11c0-1.02.305-1.967.828-2.757L6.293 6.707a1 1 0 0 1 1.414-1.414l1.536 1.535A4.977 4.977 0 0 1 12 6c1.02 0 1.967.305 2.757.828l1.536-1.535a1 1 0 1 1 1.414 1.414l-1.535 1.536C16.695 9.033 17 9.98 17 11Zm-2 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" + /> + d="M1 4a4 4 0 0 1 4-4h14a4 4 0 0 1 4 4v14a4.002 4.002 0 0 1-3 3.874V23a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-1H8v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1.126A4.002 4.002 0 0 1 1 18V4Zm4-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Z" + /> + d="M25.2 3.189a.037.037 0 0 0-.028-.066c-2.527.187-3.883.44-5.464.962-1.604.551-2.903 1.406-2.903 1.914 0 .23.254.44.743.598.513.163.95.275 1.304.345l2.437.551c1.464.322 2.975.878 3.86 1.43.72.438 1.091 1.082 1.091 1.867 0 3.202-4.438 5.21-11.595 5.21-2.325 0-3.488-.415-3.488-1.27 0-.299.23-.76.72-1.475.372-.51.584-.691.956-.808l.74-.235c.576-.184.641-.205.707-.205a.82.82 0 0 1 .026 0l.037.001c.09 0 .165.075.165.164 0 .135-.047.182-.254.345l-.447.327c-.028.023-.014.065.023.07.66.023 1.295.042 1.469.042 3.045 0 5.463-.439 7.506-1.359.908-.392 1.28-.69 1.28-.99 0-.298-.325-.555-1.163-.877-.767-.299-1.74-.58-2.348-.691l-3.835-.691c-1.718-.3-2.372-.855-2.372-2.054 0-.346.094-.902.277-1.592.396-1.43.72-1.845 1.907-2.512C19.035.784 22.15 0 25.1 0c.932 0 1.93.117 2.862.322.513.094.602.229.602.808 0 .667-.207 1.452-.513 1.797-.254.346-.372.416-1.44.785-.673.228-.955.392-2.07 1.13-.255.163-.396.228-.556.228-.188 0-.372-.158-.372-.322 0-.14.047-.229.278-.415L25.2 3.189Zm49.173-2.112h1.994v13.411h-1.994V1.077Zm5.584 13.151c-.423-.362-.684-.763-.785-1.198a6.457 6.457 0 0 1-.153-1.458v-4.61H77.16V5.17h1.86V2.485h2.01v2.682h2.636v1.794h-2.635v3.957c0 .413.022.758.066 1.031.046.274.161.511.347.713.187.201.475.302.871.302.395 0 .817-.112 1.267-.336l.084-.034v1.794a2.74 2.74 0 0 1-.802.293 4.75 4.75 0 0 1-.937.092c-.89 0-1.546-.182-1.969-.545h-.001ZM64.73 13.114c.287.558.681.974 1.184 1.248l-.004.002c.501.273 1.09.41 1.766.41.675 0 1.253-.137 1.732-.41.48-.274.865-.67 1.158-1.183h.034c0 .146.014.325.043.537.028.211.07.441.126.687a.63.63 0 0 1 .035.083h1.994a11.809 11.809 0 0 1-.228-1.24c-.05-.403-.075-.961-.075-1.677V5.167h-2.011v5.079c0 .47-.09.906-.27 1.308-.18.402-.439.727-.777.972a1.962 1.962 0 0 1-1.184.369c-.609 0-1.084-.217-1.428-.654-.343-.436-.515-1.078-.515-1.927V5.167H64.3v5.85c0 .84.144 1.538.431 2.097Zm-8.523 1.366a2.591 2.591 0 0 1-1.141-.89c-.287-.396-.431-.88-.431-1.45s.138-1.026.414-1.4a2.87 2.87 0 0 1 1.106-.889 7.584 7.584 0 0 1 2.01-.595 30.78 30.78 0 0 0 1.52-.344c.317-.084.55-.2.702-.345.152-.145.228-.345.228-.604a1.34 1.34 0 0 0-.21-.72 1.447 1.447 0 0 0-.618-.529 2.139 2.139 0 0 0-.929-.193c-.485 0-.908.14-1.267.42-.362.279-.62.68-.777 1.206L54.94 7.51c.27-.893.77-1.553 1.495-1.978.727-.425 1.569-.636 2.526-.636.721 0 1.36.12 1.917.36.558.24.995.603 1.31 1.089.316.485.474 1.086.474 1.802v3.671c.011.627.04 1.13.084 1.509.045.38.118.766.219 1.157h-2.011a4.644 4.644 0 0 1-.144-.687 6.01 6.01 0 0 1-.043-.755h-.034a3.09 3.09 0 0 1-1.192 1.257c-.523.313-1.123.47-1.799.47a3.977 3.977 0 0 1-1.538-.293l.005.004Zm3.304-1.6c.355-.235.63-.531.828-.89a2.21 2.21 0 0 0 .295-1.072v-.906c-.236.1-.43.182-.583.243a5.079 5.079 0 0 1-.617.193c-.158.034-.405.09-.744.168-.361.078-.67.17-.929.277a1.799 1.799 0 0 0-.658.453c-.18.196-.27.438-.27.73 0 .358.132.64.396.846.265.207.618.31 1.057.31.462 0 .87-.117 1.225-.351v-.001ZM45.392 1.413h-2.246l5.102 13.074h2.483L55.818 1.41H53.57c-.326.839-.636 1.641-.929 2.406-.293.767-.67 1.747-1.132 2.942-.348.929-.695 1.835-1.038 2.717-.315.807-.607 1.564-.88 2.269l-.075.195h-.034c-.304-.807-.638-1.687-1-2.643l-.005-.013-.363-.957a502.889 502.889 0 0 0-1.606-4.165l-.456-1.108-.102-.25c-.169-.413-.354-.878-.557-1.391Zm-1.83 12.58h-.075V13.8a.368.368 0 0 1 .09-.01c.099 0 .146.043.146.104 0 .07-.07.098-.16.098Zm-.239.387h.16v-.266h.075c.085 0 .127.033.142.107l.015.056a.389.389 0 0 0 .04.112h.175a.469.469 0 0 1-.052-.172c-.023-.094-.061-.145-.127-.168v-.01c.085-.023.141-.084.141-.158a.188.188 0 0 0-.066-.15c-.051-.033-.108-.051-.24-.051-.113 0-.202.005-.263.018v.682Zm.273.187a.531.531 0 0 1-.537-.546c0-.3.226-.546.532-.546.306 0 .527.247.527.55a.524.524 0 0 1-.522.542Zm-.005.145c.4 0 .706-.304.706-.691a.687.687 0 0 0-.706-.682.694.694 0 0 0-.71.682c0 .387.315.69.71.69ZM29.897 9.389h5.044c.024 0 .038-.023.02-.042l-2.556-4.79a.028.028 0 0 0-.052 0l-2.485 4.79c-.01.019.005.042.029.042Zm5.04-7.909c.042 0 .084.024.103.061l7.149 12.89a.041.041 0 0 1-.038.061h-4.334a.117.117 0 0 1-.104-.06l-1.205-2.218c-.009-.014-.023-.023-.037-.023h-8.1c-.013 0-.027.009-.037.023L27.2 14.427a.117.117 0 0 1-.104.06h-2.273c-.056 0-.08-.074-.033-.107 1.68-1.176 2.08-2.554 2.08-3.59 0-.808-.324-1.518-.917-2.05a.156.156 0 0 1-.038-.191l3.826-7.008a.123.123 0 0 1 .104-.06h5.092ZM10.602 7.99c.94 0 1.303-.612 1.303-1.382v-.51c0-.877-.433-1.381-1.647-1.381H4.47a.12.12 0 0 0-.118.117v3.039c0 .065.052.117.118.117h6.132Zm5.143.775c.024.009.033.028.029.05-.433 1.318-1.445 2.405-3.431 2.41H4.474a.116.116 0 0 0-.117.117v3.04a.116.116 0 0 1-.118.116H.451a.116.116 0 0 1-.118-.117V1.602c0-.066.052-.117.118-.117h10.838c1.764 0 2.908.406 3.633 1.092a.042.042 0 0 1 0 .057c-.4.457-.645 1.022-.89 1.904-.136.514-.3 1.233-.3 1.756 0 1.513.922 2.147 2.013 2.47Z" + /> + d="M79.957 14.228c-.423-.362-.685-.763-.785-1.198a6.45 6.45 0 0 1-.153-1.458v-4.61H77.16V5.17h1.86V2.485h2.01v2.682h2.636v1.794h-2.635v3.957c0 .413.022.758.066 1.031.046.274.161.511.347.713.187.201.475.302.871.302.395 0 .817-.112 1.267-.336l.084-.034v1.794a2.74 2.74 0 0 1-.802.293 4.76 4.76 0 0 1-.938.092c-.89 0-1.545-.182-1.968-.545h-.001ZM74.373 1.077h1.994v13.41h-1.994V1.078Zm-8.459 13.285c-.502-.274-.896-.69-1.183-1.248-.287-.56-.431-1.258-.431-2.096v-5.85h2.011v5.146c0 .85.172 1.491.515 1.927.344.437.82.654 1.428.654.45 0 .845-.123 1.183-.369.339-.245.598-.57.777-.972.18-.402.27-.838.27-1.308V5.167h2.012v6.404c0 .716.025 1.274.075 1.677.051.402.127.815.227 1.24h-1.994a.643.643 0 0 0-.034-.083 7.424 7.424 0 0 1-.126-.688 4.123 4.123 0 0 1-.043-.536h-.034a3.088 3.088 0 0 1-1.158 1.183c-.48.273-1.057.41-1.732.41-.676 0-1.265-.137-1.766-.41l.003-.002Zm-9.706.118a2.59 2.59 0 0 1-1.141-.89c-.288-.396-.431-.88-.431-1.45s.138-1.026.414-1.4a2.87 2.87 0 0 1 1.106-.889 7.583 7.583 0 0 1 2.01-.595 30.78 30.78 0 0 0 1.52-.344c.316-.084.55-.2.702-.345.152-.145.227-.345.227-.604 0-.258-.07-.496-.21-.72-.14-.224-.347-.4-.617-.529a2.14 2.14 0 0 0-.93-.193c-.484 0-.907.14-1.267.42-.36.279-.62.68-.776 1.206l-1.876-.637c.27-.893.77-1.553 1.495-1.978.727-.425 1.569-.636 2.526-.636.721 0 1.36.12 1.917.36.558.24.994.603 1.31 1.089.316.485.474 1.086.474 1.802v3.671c.011.627.04 1.13.084 1.509.045.38.118.766.219 1.157h-2.011a4.645 4.645 0 0 1-.144-.687 6.012 6.012 0 0 1-.043-.755h-.034a3.09 3.09 0 0 1-1.192 1.257c-.523.313-1.123.47-1.8.47a3.978 3.978 0 0 1-1.537-.293l.005.004Zm3.304-1.6c.355-.235.63-.531.828-.89a2.21 2.21 0 0 0 .295-1.072v-.906c-.236.1-.43.182-.583.243a5.09 5.09 0 0 1-.617.193c-.158.034-.406.09-.744.168-.361.078-.67.17-.929.277-.259.105-.48.257-.659.453-.18.196-.27.438-.27.73 0 .358.133.64.397.846.265.207.617.31 1.057.31.462 0 .87-.117 1.225-.351v-.001ZM43.145 1.413h2.248c.203.513.388.977.557 1.39.17.414.355.867.558 1.358a532.605 532.605 0 0 1 1.606 4.166c.506 1.336.963 2.54 1.368 3.613h.034c.293-.76.61-1.582.955-2.464.343-.882.69-1.788 1.038-2.717.462-1.195.84-2.176 1.132-2.942.293-.765.603-1.568.93-2.406h2.246l-5.086 13.075h-2.483L43.145 1.413Z" + /> + d="M25.2 3.189c.028-.024.01-.07-.028-.066-2.527.187-3.883.44-5.464.962-1.605.551-2.903 1.406-2.903 1.914 0 .23.254.44.743.598.513.163.95.275 1.304.345l2.437.551c1.464.322 2.974.878 3.86 1.43.72.438 1.091 1.082 1.091 1.867 0 3.202-4.438 5.21-11.596 5.21-2.324 0-3.487-.415-3.487-1.27 0-.299.23-.76.72-1.475.372-.51.584-.691.955-.808 1.535-.486 1.346-.439 1.511-.439.09 0 .165.075.165.164 0 .135-.047.182-.254.345l-.447.327c-.029.023-.014.065.023.07.659.023 1.294.042 1.469.042 3.044 0 5.463-.439 7.506-1.359.908-.392 1.28-.69 1.28-.99 0-.298-.325-.555-1.163-.877-.767-.299-1.74-.58-2.348-.691l-3.836-.691c-1.717-.3-2.371-.855-2.371-2.054 0-.346.094-.902.277-1.592.396-1.43.72-1.845 1.906-2.512C19.035.784 22.15 0 25.101 0c.932 0 1.93.117 2.861.322.514.094.603.229.603.808 0 .667-.207 1.452-.513 1.797-.254.346-.372.416-1.44.785-.673.228-.955.392-2.07 1.13-.255.163-.396.228-.556.228-.188 0-.372-.158-.372-.322 0-.14.047-.229.278-.415L25.2 3.189Z" + /> + d="M43.487 13.993h.076c.09 0 .16-.028.16-.098 0-.06-.047-.103-.146-.103a.368.368 0 0 0-.09.01v.19Zm-.004.387h-.16v-.68c.061-.014.15-.019.263-.019.132 0 .189.019.24.051a.188.188 0 0 1 .066.15c0 .075-.056.135-.14.159v.009c.065.023.103.075.126.168a.47.47 0 0 0 .052.173h-.174c-.019-.024-.033-.089-.056-.168-.015-.075-.057-.108-.142-.108h-.075v.266Zm-.424-.36c0 .304.226.547.537.547a.524.524 0 0 0 .522-.542c0-.303-.22-.55-.527-.55a.533.533 0 0 0-.532.546Zm1.238 0a.689.689 0 0 1-.706.692.695.695 0 0 1-.71-.691c0-.378.315-.682.71-.682.4 0 .706.304.706.682Zm-9.355-4.63h-5.045c-.024 0-.038-.024-.029-.043l2.485-4.79a.028.028 0 0 1 .052 0l2.555 4.79c.019.02.005.042-.019.042Zm.098-7.849a.117.117 0 0 0-.103-.06h-5.092a.123.123 0 0 0-.104.06L25.915 8.55a.156.156 0 0 0 .038.191c.593.533.918 1.242.918 2.05 0 1.037-.4 2.414-2.08 3.59-.048.033-.024.108.032.108h2.273a.117.117 0 0 0 .104-.061l1.134-2.213c.01-.014.024-.023.038-.023h8.099c.014 0 .028.01.038.023l1.204 2.218c.019.037.061.06.104.06h4.334a.041.041 0 0 0 .038-.06L35.04 1.542ZM11.905 6.607c0 .77-.362 1.382-1.303 1.382H4.47a.116.116 0 0 1-.118-.117v-3.04a.12.12 0 0 1 .118-.116h5.788c1.214 0 1.647.504 1.647 1.382v.509Zm3.869 2.208c.004-.023-.005-.042-.029-.051-1.091-.322-2.014-.957-2.014-2.47 0-.523.165-1.242.301-1.755.245-.883.49-1.448.89-1.905a.042.042 0 0 0 0-.056c-.725-.687-1.869-1.093-3.633-1.093H.45a.116.116 0 0 0-.118.117V14.38c0 .066.052.117.118.117h3.788a.116.116 0 0 0 .118-.117v-3.04c0-.064.051-.116.117-.116h7.869c1.986-.004 2.998-1.092 3.43-2.409Z" + /> - + - + + clip-rule="evenodd" + /> + d="M9 0a9 9 0 1 0 0 18A9 9 0 0 0 9 0Zm0 17A8 8 0 1 1 9 1a8 8 0 0 1 0 16Zm5-8A5 5 0 1 1 4 9a5 5 0 0 1 10 0Z" + /> + d="M12 0C5.373 0 0 5.372 0 12c0 6.627 5.373 12 12 12s12-5.373 12-12c0-6.628-5.373-12-12-12m0 1c6.066 0 11 4.935 11 11s-4.934 11-11 11S1 18.065 1 12 5.934 1 12 1m0 18a7 7 0 1 0 0-14 7 7 0 0 0 0 14Z" + /> + d="M9 18A9 9 0 1 1 9 0a9 9 0 0 1 0 18ZM9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1Z" + /> + d="M12 0C5.373 0 0 5.372 0 12c0 6.627 5.373 12 12 12s12-5.373 12-12c0-6.628-5.373-12-12-12m0 1c6.066 0 11 4.935 11 11s-4.934 11-11 11S1 18.065 1 12 5.934 1 12 1" + /> - + + clip-rule="evenodd" + /> - + clip-rule="evenodd" + /> + - + + d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12Zm-5.754-1.754c.968 0 1.754.786 1.754 1.754 0 .716-.435 1.334-1.01 1.614.028.169.042.337.042.52 0 2.694-3.13 4.87-7.004 4.87-3.873 0-7.003-2.176-7.003-4.87 0-.183.014-.365.042-.534A1.748 1.748 0 0 1 4.028 12c0-.968.786-1.754 1.755-1.754.463 0 .898.196 1.207.491 1.207-.884 2.877-1.431 4.744-1.488l.884-4.182a.342.342 0 0 1 .14-.197c.07-.042.155-.056.239-.042l2.905.618a1.214 1.214 0 0 1 1.109-.702c.688 0 1.249.562 1.249 1.25a1.25 1.25 0 0 1-2.498.056l-2.597-.548-.8 3.747c1.825.07 3.48.632 4.674 1.488.309-.309.73-.491 1.207-.491Z" + /> + d="M3 8a5 5 0 0 1 5-5c1.514 0 2.78.666 3.875 2H10a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1V2a1 1 0 1 0-2 0v1.255C11.688 1.86 10.05 1 8 1a7 7 0 1 0 6.063 10.5 1 1 0 1 0-1.731-1A5 5 0 0 1 3 8Z" + /> + d="M10 4a6 6 0 1 0 5.423 8.57 1 1 0 0 1 1.807.86A8 8 0 1 1 10 2a8.113 8.113 0 0 1 6 2.653V3a1 1 0 1 1 2 0v4a1 1 0 0 1-1.017 1H13a1 1 0 1 1 0-2h1.521A6.114 6.114 0 0 0 10 4Z" + /> + d="M4 12a8 8 0 0 1 8-8c2.912 0 5.288 1.671 6.896 4H15a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1V3a1 1 0 1 0-2 0v3.137C18.126 3.777 15.416 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10c4.356 0 8.058-2.784 9.43-6.667a1 1 0 1 0-1.885-.666A8 8 0 0 1 4 12Z" + /> - + - + + d="M1 6a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 1 6Z" + /> - + - + - + - + - + - + - + - + - + - + + d="m7.91 2.037-.598.682A4.112 4.112 0 0 1 4.98 4.047l-.9.17a.114.114 0 0 0-.047.018.089.089 0 0 0-.025.027.057.057 0 0 0-.008.021l.003.018.301.851a4.042 4.042 0 0 1 0 2.696l-.3.851c-.005.012-.004.016-.004.018 0 .003.002.01.008.021.006.01.015.02.025.027a.114.114 0 0 0 .047.019l.9.169c.901.17 1.724.635 2.332 1.328l.598.682a.096.096 0 0 0 .035.026A.137.137 0 0 0 8 11a.138.138 0 0 0 .055-.01.093.093 0 0 0 .034-.027l.099.087-.099-.087.599-.682a4.112 4.112 0 0 1 2.332-1.328l.9-.17a.114.114 0 0 0 .047-.018.088.088 0 0 0 .025-.027.055.055 0 0 0 .008-.021c0-.002 0-.006-.004-.018l-.3-.851a4.042 4.042 0 0 1 0-2.696l.3-.851C12 4.289 12 4.285 12 4.283a.055.055 0 0 0-.008-.021.088.088 0 0 0-.025-.027.114.114 0 0 0-.048-.019l-.899-.169A4.112 4.112 0 0 1 8.688 2.72l-.599-.682a.094.094 0 0 0-.034-.026A.138.138 0 0 0 8 2a.138.138 0 0 0-.055.01.094.094 0 0 0-.035.027ZM6.301 12.16l-.493-.561a2.1 2.1 0 0 0-.723-.533L3.618 14h1.764l.92-1.839Zm-3.19-1.62a2.06 2.06 0 0 1-.993-2.508l.3-.852a2.042 2.042 0 0 0 0-1.362l-.3-.852c-.423-1.194.331-2.48 1.593-2.716l.9-.17a2.112 2.112 0 0 0 1.197-.68l.599-.683a2.126 2.126 0 0 1 3.186 0l.598.682c.31.354.732.594 1.198.682l.9.169c1.262.237 2.015 1.522 1.593 2.716l-.301.852a2.043 2.043 0 0 0 0 1.362l.3.852a2.06 2.06 0 0 1-.992 2.508l1.764 3.53A1.333 1.333 0 0 1 13.46 16h-3.254c-.505 0-.967-.285-1.193-.737L8 13.236l-1.014 2.027A1.333 1.333 0 0 1 5.794 16H2.539a1.333 1.333 0 0 1-1.192-1.93l1.764-3.529Zm7.804.526L12.382 14h-1.764l-.92-1.838.493-.562a2.1 2.1 0 0 1 .724-.533Z" + /> + d="m12.632 3.272.798.892a4.83 4.83 0 0 0 2.726 1.525l1.2.22c.539.1.724.576.604.909l-.4 1.112a4.622 4.622 0 0 0 0 3.138l.401 1.113c.12.333-.065.809-.605.908l-1.199.221a4.83 4.83 0 0 0-2.726 1.525l-.798.892a.873.873 0 0 1-1.266 0l-.797-.892a4.83 4.83 0 0 0-2.726-1.525l-1.2-.22c-.54-.1-.724-.576-.604-.909l.4-1.113a4.622 4.622 0 0 0 0-3.138l-.4-1.113c-.12-.333.065-.809.605-.908l1.199-.221a4.83 4.83 0 0 0 2.726-1.525l.797-.892a.873.873 0 0 1 1.266 0ZM9.875 1.939c1.12-1.252 3.129-1.252 4.248 0l.798.892a2.83 2.83 0 0 0 1.598.891l1.199.221c1.682.31 2.687 1.99 2.124 3.553l-.401 1.113a2.623 2.623 0 0 0 0 1.782l.4 1.113c.56 1.55-.425 3.216-2.084 3.545l3.064 5.745A1.5 1.5 0 0 1 19.498 23h-4.19a1.5 1.5 0 0 1-1.342-.83L12 18.238l-1.967 3.934A1.5 1.5 0 0 1 8.691 23H4.5a1.5 1.5 0 0 1-1.323-2.206L6.24 15.05c-1.658-.329-2.642-1.995-2.084-3.545l.401-1.113a2.622 2.622 0 0 0 0-1.782l-.401-1.113c-.563-1.562.442-3.243 2.124-3.553l1.199-.221a2.83 2.83 0 0 0 1.598-.89l.797-.893ZM8.25 15.536 5.334 21h3.048l1.816-3.632a2.784 2.784 0 0 1-.323-.307l-.797-.892a2.791 2.791 0 0 0-.83-.633Zm5.552 1.832L15.617 21h3.047l-2.914-5.464a2.796 2.796 0 0 0-.829.633l-.798.892c-.1.113-.208.215-.322.307Z" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> - + clip-rule="evenodd" + /> + - + clip-rule="evenodd" + /> + - + - + - + - + + d="M19 20v-7a3 3 0 0 0-3-3H3a3 3 0 0 0-3 3v7a3 3 0 0 0 3 3h13a3 3 0 0 0 3-3Zm-2-7v7a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-7a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1Z" + /> - + + d="M5 13a3 3 0 0 1 3-3h13a3 3 0 0 1 3 3v7a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3v-7Zm3-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h13a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1H8Z" + /> - + + d="M20 5a3 3 0 0 1 3 3v13a3 3 0 0 1-3 3h-7a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3h7Zm1 3a1 1 0 0 0-1-1h-7a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V8Z" + /> - + + d="M4 5a3 3 0 0 0-3 3v13a3 3 0 0 0 3 3h7a3 3 0 0 0 3-3V8a3 3 0 0 0-3-3H4ZM3 8a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V8Z" + /> + d="M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H7v7a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2Zm11 3V4a1 1 0 1 0-2 0v1H7V4a1 1 0 0 0-2 0v1H4a1 1 0 0 0 0 2h1v2H4a1 1 0 1 0 0 2h1v3H2V2h12v3h-3Z" + /> + d="M1 3a2 2 0 0 1 2-2h18a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H10v11a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3Zm17 5V6a1 1 0 1 0-2 0v2h-2V6a1 1 0 1 0-2 0v2h-2V6a1 1 0 1 0-2 0v2H6a1 1 0 0 0 0 2h2v2H6a1 1 0 1 0 0 2h2v2H6a1 1 0 1 0 0 2h2v3H3V3h18v5h-3Z" + /> - + - + + d="M4.5 1A2.5 2.5 0 0 0 2 3.5v9A2.5 2.5 0 0 0 4.5 15h7a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 11.5 1h-7ZM4 3.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v.703L8 6 4 4.203V3.5Zm0 2.896V12.5a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5V6.396L8.82 7.824a2 2 0 0 1-1.64 0L4 6.396Z" + /> + d="M7 1a3 3 0 0 0-3 3v16a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V4a3 3 0 0 0-3-3H7ZM6 4a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v1.353l-5.795 2.602a.5.5 0 0 1-.41 0L6 5.353V4Zm0 3.545V20a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V7.545L13.024 9.78a2.5 2.5 0 0 1-2.048 0L6 7.545Z" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> - + + clip-rule="evenodd" + /> - + - + + clip-rule="evenodd" + /> + d="M6 2a1 1 0 0 0-1-1H3.5A2.5 2.5 0 0 0 1 3.5V5a1 1 0 0 0 2 0V3.5a.5.5 0 0 1 .5-.5H5a1 1 0 0 0 1-1Zm9 3a1 1 0 1 1-2 0V3.5a.5.5 0 0 0-.5-.5H11a1 1 0 1 1 0-2h1.5A2.5 2.5 0 0 1 15 3.5V5ZM3 11a1 1 0 1 0-2 0v1.5A2.5 2.5 0 0 0 3.5 15H5a1 1 0 1 0 0-2H3.5a.5.5 0 0 1-.5-.5V11Zm5-1a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 2c.742 0 1.436-.202 2.032-.554l2.26 2.261a1 1 0 0 0 1.415-1.414l-2.26-2.261A4 4 0 1 0 8 12Z" + /> + d="M3 3.999a1 1 0 0 1 1-1h2a1 1 0 1 0 0-2H4a3 3 0 0 0-3 3v2a1 1 0 1 0 2 0v-2Zm16 0a3 3 0 0 0-3-3h-2a1 1 0 1 0 0 2h2a1 1 0 0 1 1 1v2a1 1 0 1 0 2 0v-2Zm-15 13a1 1 0 0 1-1-1v-2a1 1 0 1 0-2 0v2a3 3 0 0 0 3 3h2a1 1 0 1 0 0-2H4ZM10 13a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0 2c1.02 0 1.967-.305 2.757-.828l3.536 3.535a1 1 0 0 0 1.414-1.414l-3.535-3.536A5 5 0 1 0 10 15Z" + /> + d="M7 1H4a3 3 0 0 0-3 3v3a1 1 0 0 0 2 0V4a1 1 0 0 1 1-1h3a1 1 0 0 0 0-2ZM1 17a1 1 0 1 1 2 0v3a1 1 0 0 0 1 1h3a1 1 0 1 1 0 2H4a3 3 0 0 1-3-3v-3ZM23 7a1 1 0 1 1-2 0V4a1 1 0 0 0-1-1h-3a1 1 0 1 1 0-2h3a3 3 0 0 1 3 3v3ZM12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm-6 4a6 6 0 1 1 10.89 3.476l4.817 4.817a1 1 0 0 1-1.414 1.414l-4.816-4.816A6 6 0 0 1 6 12Z" + /> + d="M7 1a1 1 0 1 1 2 0v1.586l1.293-1.293a1 1 0 1 1 1.414 1.414L9 5.414V7h1.586l2.707-2.707a1 1 0 1 1 1.414 1.414L13.414 7H15a1 1 0 1 1 0 2h-1.586l1.293 1.293a1 1 0 0 1-1.414 1.414L10.586 9H9v1.586l2.707 2.707a1 1 0 0 1-1.414 1.414L9 13.414V15a1 1 0 1 1-2 0v-3.126a4.002 4.002 0 0 1 0-7.748V1Zm0 5.268v3.464a2 2 0 0 1 0-3.464ZM2.343 3.757l.707.707A1 1 0 0 0 4.465 3.05l-.708-.707a1 1 0 1 0-1.414 1.414ZM1 9a1 1 0 0 1 0-2h1a1 1 0 0 1 0 2H1Zm3.465 3.95-.708.707a1 1 0 0 1-1.414-1.414l.707-.707a1 1 0 0 1 1.415 1.414Z" + /> + d="M11 1a1 1 0 1 1 2 0v2.365l1.36-1.133a1 1 0 1 1 1.28 1.536L13 5.968v4.3l3.724-2.15.585-3.386a1 1 0 0 1 1.97.34l-.3 1.744 1.182-.682a1 1 0 1 1 1 1.732l-1.183.683 1.662.611a1 1 0 1 1-.69 1.877l-3.227-1.186L14 12l3.724 2.15 3.225-1.186a1 1 0 0 1 .69 1.877l-1.66.61 1.181.683a1 1 0 0 1-1 1.732l-1.182-.682.302 1.744a1 1 0 1 1-1.971.34l-.585-3.386L13 13.732v4.3l2.64 2.2a1 1 0 1 1-1.28 1.536L13 20.635V23a1 1 0 1 1-2 0v-5.083a6.001 6.001 0 0 1 0-11.834V1Zm0 10.995v3.879a4.002 4.002 0 0 1 0-7.748v3.868ZM4 12a1 1 0 0 0-1-1H1a1 1 0 0 0 0 2h2a1 1 0 0 0 1-1Zm.93 5.66-1.64 1.63A1 1 0 1 0 4.7 20.7l1.64-1.64a1 1 0 0 0-1.41-1.41v.01Zm0-11.32a1 1 0 0 0 1.41-1.41L4.71 3.29a1.003 1.003 0 1 0-1.42 1.42l1.64 1.63Z" + /> - + - + - - + + - + - + + d="M3 4a1 1 0 0 1 1-1h3.379a.5.5 0 0 1 .353.146l5.12 5.12a.5.5 0 0 1 0 .708l-3.878 3.878a.5.5 0 0 1-.708 0l-5.12-5.12A.5.5 0 0 1 3 7.38V4Zm1-3a3 3 0 0 0-3 3v3.379a2.5 2.5 0 0 0 .732 1.767l5.12 5.12a2.5 2.5 0 0 0 3.536 0l3.878-3.878a2.5 2.5 0 0 0 0-3.536l-5.12-5.12A2.5 2.5 0 0 0 7.38 1H4Zm2 6.001a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" + /> + d="M3 4.5A1.5 1.5 0 0 1 4.5 3h4.666a1 1 0 0 1 .71.296l6.832 6.894a1 1 0 0 1-.003 1.41l-5.104 5.105a1 1 0 0 1-1.412.003L3.297 9.877A1 1 0 0 1 3 9.167V4.5ZM4.5 1A3.5 3.5 0 0 0 1 4.5v4.666a3 3 0 0 0 .888 2.131l6.894 6.832a3 3 0 0 0 4.233-.01l5.104-5.104a3 3 0 0 0 .01-4.233l-6.832-6.894A3 3 0 0 0 9.167 1H4.5Zm2 7a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" + /> + d="M3.001 4.999a2 2 0 0 1 2-2h6.167a1 1 0 0 1 .714.3l8.831 8.99a1 1 0 0 1-.006 1.406l-7.004 7.014a1 1 0 0 1-1.41.007L3.3 11.875a1 1 0 0 1-.299-.713V5Zm2-3.999a4 4 0 0 0-4 3.999v6.163c0 .804.323 1.575.896 2.138l8.994 8.84a3.002 3.002 0 0 0 4.228-.019l7.004-7.014a2.998 2.998 0 0 0 .018-4.22l-8.832-8.989A3.002 3.002 0 0 0 11.17 1H5.001Zm2.503 8a1.5 1.5 0 1 0 .001-3.001 1.5 1.5 0 0 0 0 3.001Z" + /> + d="M1 4.999A4 4 0 0 1 5.003 1h6.166c.806 0 1.577.324 2.141.898l8.832 8.99a2.998 2.998 0 0 1-.018 4.219l-7.004 7.014a3.002 3.002 0 0 1-4.228.02L1.897 13.3a2.998 2.998 0 0 1-.896-2.139V5ZM7.506 9a1.5 1.5 0 1 0 0-3.001 1.5 1.5 0 0 0 0 3.001Z" + /> - + + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> - - + + - + + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> - - + + - - + + - - + + + clip-rule="evenodd" + /> - + + d="M7 3a1 1 0 0 0-.8.4L5 5h5.5V3H7Zm5.5 0v2H18l-1.2-1.6A1 1 0 0 0 16 3h-3.5Zm0 4H19v3.048a5.837 5.837 0 0 0-.75-.048c-3.168 0-5.75 2.551-5.75 5.714 0 .442.05.873.146 1.286H5a1 1 0 0 1-1-1V7h6.5v2a1 1 0 1 0 2 0V7Zm1.045 12H5a3 3 0 0 1-3-3V6.667a3 3 0 0 1 .6-1.8l2-2.667A3 3 0 0 1 7 1h9a3 3 0 0 1 2.4 1.2l2 2.667a3 3 0 0 1 .6 1.8v4.028c1.785.968 3 2.85 3 5.02a5.671 5.671 0 0 1-1.214 3.511c-.955 1.216-2.34 2.39-3.94 3.577a1 1 0 0 1-1.192 0c-1.6-1.187-2.986-2.36-3.94-3.577a5.758 5.758 0 0 1-.169-.226Zm4.705-1.813a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm-3.75-1.473C14.5 13.67 16.172 12 18.25 12c2.078 0 3.75 1.67 3.75 3.714 0 .86-.293 1.648-.787 2.278-.682.868-1.684 1.77-2.963 2.755-1.28-.984-2.281-1.887-2.963-2.755a3.672 3.672 0 0 1-.787-2.278Z" + /> - + - + + d="M9.25 2H6.827l-.077.001V2.2a1.25 1.25 0 1 0 2.5 0V2Zm1.986.5a3.25 3.25 0 0 1-6.472 0l-2.56 1.08A.333.333 0 0 0 2 3.886V6h2a1 1 0 0 1 1 1v6.201c.069.068.196.175.416.293.447.24 1.25.505 2.584.505a1 1 0 0 1 .03.001c1.317-.004 2.11-.267 2.555-.506.219-.118.346-.225.415-.292V7a1 1 0 0 1 1-1h2V3.885a.333.333 0 0 0-.204-.307L11.236 2.5ZM13 8h2a1 1 0 0 0 1-1V3.885c0-.938-.563-1.786-1.428-2.15L11.631.496A6.334 6.334 0 0 0 9.173 0H6.827c-.844 0-1.68.17-2.458.497L1.428 1.735A2.333 2.333 0 0 0 0 3.885V7a1 1 0 0 0 1 1h2v5.5a1 1 0 0 0 .051.316c.165.494.668 1.036 1.417 1.44.786.422 1.918.74 3.499.743L8 16c1.599 0 2.74-.318 3.532-.744.75-.404 1.252-.946 1.417-1.44A.999.999 0 0 0 13 13.5V8Z" + /> + d="M10 3.01a7 7 0 0 1 .386-.01h3.228a7 7 0 0 1 .386.01 2 2 0 0 1-4 0ZM10.386 1h3.228a9 9 0 0 1 3.027.524l4.368 1.56A3 3 0 0 1 23 5.91V10a1 1 0 0 1-1 1h-3v8.5a.999.999 0 0 1-.051.316C18.607 20.843 16.692 23 12 23c-4.691 0-6.607-2.157-6.949-3.184A1 1 0 0 1 5 19.5V11H2a1 1 0 0 1-1-1V5.91a3 3 0 0 1 1.991-2.826l4.368-1.56A9 9 0 0 1 10.386 1ZM12 21c3.569 0 4.755-1.39 5-1.738V10a1 1 0 0 1 1-1h3V5.91a1 1 0 0 0-.664-.942L15.98 3.412a4 4 0 0 1-7.958 0L3.664 4.968A1 1 0 0 0 3 5.909V9h3a1 1 0 0 1 1 1v9.262C7.245 19.61 8.431 21 12 21Z" + /> + d="M3 8V6h18v2H3Zm-.9-4A1.1 1.1 0 0 0 1 5.1v3.8a1.1 1.1 0 0 0 1 1.096V17a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V9.996A1.1 1.1 0 0 0 23 8.9V5.1A1.1 1.1 0 0 0 21.9 4H2.1ZM20 10H4v7a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-7Z" + /> - + - + + d="M12.72 3.28a.954.954 0 0 0-1.414.07L9.845 5.143l1.012 1.011 1.791-1.46a.954.954 0 0 0 .072-1.414ZM7.09 8.516 8.574 6.7l.725.724-1.818 1.483a.277.277 0 0 1-.39-.39Zm2.665-6.43a2.955 2.955 0 1 1 4.156 4.155L10.72 8.846l.672.672c.542.541.589 1.408.102 2.005-1.096 1.341-1.992 2.263-3.16 2.803-1.158.534-2.47.64-4.244.668-.139.002-.35.004-.585.005a2.491 2.491 0 0 1-2.504-2.505c0-.235.003-.445.005-.584.028-1.773.134-3.085.668-4.242.54-1.17 1.462-2.065 2.804-3.16a1.498 1.498 0 0 1 2.005.102l.669.669 2.604-3.192ZM5.88 6.837l-.34.416a2.276 2.276 0 0 0 3.204 3.204l.417-.34.492.491c-.907 1.076-1.503 1.6-2.159 1.902-.735.339-1.66.456-3.437.484a59.01 59.01 0 0 1-.564.005.491.491 0 0 1-.494-.493c.002-.235.003-.436.006-.564.028-1.777.145-2.701.484-3.436.303-.655.826-1.252 1.902-2.159l.49.49Z" + /> + d="M20.498 3.5a1.71 1.71 0 0 0-2.503.092L13.36 8.953l1.685 1.685 5.361-4.634a1.71 1.71 0 0 0 .091-2.503Zm-4.815 9.23 6.032-5.212a3.71 3.71 0 1 0-5.233-5.234l-6.857 7.934-1.606-1.605a1.499 1.499 0 0 0-2.003-.105c-1.996 1.618-3.297 2.871-4.053 4.47-.754 1.594-.913 3.416-.955 6.012-.003.229-.006.598-.008 1.006A2.99 2.99 0 0 0 4.005 23c.407-.002.777-.005 1.006-.009 2.596-.041 4.418-.2 6.011-.954 1.6-.757 2.853-2.057 4.471-4.053a1.498 1.498 0 0 0-.104-2.003l-1.608-1.608 1.835-1.585a.986.986 0 0 0 .067-.058Zm-2.155-.78-1.478-1.48-3.904 4.517a.614.614 0 0 0 .865.866l4.518-3.904Zm-3.209 5.416 1.945-1.681.026.027 1.364 1.363c-1.445 1.75-2.402 2.642-3.487 3.155-1.162.55-2.588.72-5.188.762a84.1 84.1 0 0 1-.984.009.99.99 0 0 1-.995-.995c.002-.409.005-.768.008-.984.042-2.6.213-4.025.763-5.188.513-1.085 1.406-2.042 3.155-3.486l1.363 1.363a1.1 1.1 0 0 0 .025.024L6.633 13.68a2.613 2.613 0 0 0 3.686 3.686Z" + /> + d="M.111 8.458a1.007 1.007 0 0 1 0-.916 12.157 12.157 0 0 1 2.306-3.136C3.697 3.17 5.557 2 8 2s4.304 1.169 5.583 2.406a12.135 12.135 0 0 1 2.335 3.197.995.995 0 0 1-.029.855 12.108 12.108 0 0 1-2.306 3.136C12.304 12.83 10.443 14 8 14s-4.304-1.169-5.583-2.406A12.134 12.134 0 0 1 .111 8.458Zm3.697 1.698A10.14 10.14 0 0 1 2.138 8a10.14 10.14 0 0 1 1.67-2.156C4.854 4.83 6.243 4 8 4c1.757 0 3.146.831 4.192 1.844.79.765 1.349 1.6 1.671 2.156-.322.556-.88 1.391-1.67 2.156C11.145 11.17 9.756 12 8 12c-1.757 0-3.146-.831-4.192-1.844ZM8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" + /> + d="M1.112 12.459a.994.994 0 0 1 0-.918c.294-.585 1.354-2.424 3.132-4.136C6.036 5.679 8.647 4 12 4c3.354 0 5.964 1.679 7.756 3.405 1.779 1.712 2.838 3.55 3.133 4.136A1.015 1.015 0 0 1 23 12a.995.995 0 0 1-.111.459c-.295.585-1.354 2.424-3.133 4.136C17.964 18.321 15.354 20 12 20c-3.353 0-5.964-1.679-7.756-3.405-1.779-1.712-2.838-3.551-3.132-4.136Zm4.52 2.696A15.309 15.309 0 0 1 3.141 12a15.308 15.308 0 0 1 2.49-3.155C7.213 7.321 9.353 6 12 6s4.786 1.321 6.37 2.845A15.306 15.306 0 0 1 20.86 12a15.306 15.306 0 0 1-2.49 3.155C16.785 16.679 14.646 18 12 18s-4.786-1.321-6.369-2.845ZM12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z" + /> - + - + - + + d="m4.762 5-1.2 1H7V5H4.762ZM9 5v1h3.438l-1.2-1H9ZM7 8H3v2.5a.5.5 0 0 0 .5.5H7V8Zm2 3V8h4v2.5a.5.5 0 0 1-.5.5H9ZM3.62 3.348A1.5 1.5 0 0 1 4.582 3h6.838c.35 0 .69.123.96.348l1.722 1.434A2.5 2.5 0 0 1 15 6.702V10.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 10.5V6.703a2.5 2.5 0 0 1 .9-1.921l1.72-1.434Z" + /> + d="M5.9 6.8A2 2 0 0 1 7.5 6h9a2 2 0 0 1 1.6.8l2.3 3.067a3 3 0 0 1 .6 1.8V15a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3v-3.333a3 3 0 0 1 .6-1.8L5.9 6.8ZM16.5 8H13v2h5l-1.5-2Zm2.5 4h-6v4h5a1 1 0 0 0 1-1v-3Zm-8-2V8H7.5L6 10h5Zm-6 2h6v4H6a1 1 0 0 1-1-1v-3Z" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + d="M9 1a1 1 0 1 0-2 0v1.586L5.707 1.293a1 1 0 0 0-1.414 1.414L7 5.414V7H5.414L2.707 4.293a1 1 0 0 0-1.414 1.414L2.586 7H1a1 1 0 1 0 0 2h1.586l-1.293 1.293a1 1 0 1 0 1.414 1.414L5.414 9H7v1.586l-2.707 2.707a1 1 0 1 0 1.414 1.414L7 13.414V15a1 1 0 1 0 2 0v-1.586l1.293 1.293a1 1 0 0 0 1.414-1.414L9 10.586V9h1.586l2.707 2.707a1 1 0 0 0 1.414-1.414L13.414 9H15a1 1 0 1 0 0-2h-1.586l1.293-1.293a1 1 0 0 0-1.414-1.414L10.586 7H9V5.414l2.707-2.707a1 1 0 0 0-1.414-1.414L9 2.586V1Z" + /> + d="M12 1a1 1 0 0 1 1 1v1.365l1.36-1.133a1 1 0 1 1 1.28 1.536L13 5.968v4.3l3.724-2.15.585-3.386a1 1 0 0 1 1.97.34l-.3 1.745 1.181-.683a1 1 0 1 1 1 1.732l-1.182.683 1.662.611a1 1 0 1 1-.69 1.877l-3.226-1.186L14 12l3.724 2.15 3.225-1.187a1 1 0 0 1 .69 1.877l-1.66.61 1.181.683a1 1 0 1 1-1 1.732l-1.182-.682.302 1.744a1 1 0 0 1-1.971.34l-.585-3.386L13 13.732v4.3l2.64 2.2a1 1 0 1 1-1.28 1.536L13 20.635V22a1 1 0 0 1-2 0v-1.365l-1.36 1.133a1 1 0 1 1-1.28-1.536l2.64-2.2v-4.3l-3.723 2.15-.586 3.387a1 1 0 0 1-1.97-.34l.3-1.745-1.181.682a1 1 0 1 1-1-1.732l1.182-.682-1.661-.611a1 1 0 0 1 .69-1.877l3.226 1.186L10 12 6.277 9.85 3.05 11.038a1 1 0 1 1-.69-1.877l1.66-.611-1.181-.683a1 1 0 0 1 1-1.732l1.182.683-.302-1.744a1 1 0 1 1 1.971-.341l.586 3.387L11 10.269v-4.3l-2.64-2.2a1 1 0 1 1 1.28-1.537L11 3.365V2a1 1 0 0 1 1-1Z" + /> - + + d="M3 0a1 1 0 0 0 0 2h1.586l1 1-1.097 1.097-1.022.255A2.333 2.333 0 0 0 1.82 5.878L.938 8.522a2.793 2.793 0 0 0 .863 3.03l.303.252c.434.36.898.68 1.385.953l-.93 1.124A.316.316 0 0 1 2 13.68a1 1 0 1 0-2 0c0 2.17 2.716 3.148 4.1 1.476l1.316-1.59a9.204 9.204 0 0 0 5.168 0l1.316 1.59c1.384 1.672 4.1.694 4.1-1.476a1 1 0 1 0-2 0c0 .296-.37.43-.559.201l-.93-1.124a9.226 9.226 0 0 0 1.384-.953l.303-.252a2.793 2.793 0 0 0 .863-3.03l-.881-2.644a2.333 2.333 0 0 0-1.648-1.526l-1.02-.255L10.413 3l1-1H13a1 1 0 1 0 0-2h-1.586A2 2 0 0 0 10 .586L8.586 2H7.414L6 .586A2 2 0 0 0 4.586 0H3Zm5 4c-.375 0-.735.149-1 .414L5.862 5.552l1.22 2.816c.348.803 1.487.803 1.835 0l1.22-2.816L8.987 4.4A1.414 1.414 0 0 0 8 4Zm4.001 2.281-1.084 2.501c.871-.153 1.473-.367 1.93-.578l-.564-1.693c-.044-.133-.154-.198-.282-.23ZM5.082 8.782l-1.084-2.5c-.127.031-.237.096-.281.229l-.565 1.693c.458.21 1.06.425 1.93.578Zm-1.368 1.744a7.217 7.217 0 0 0 8.572 0C11.252 10.807 9.896 11 8 11l-4.286-.474Z" + /> - + + d="M3 2a1 1 0 0 1 1-1h2.379a2.5 2.5 0 0 1 1.767.732l2.122 2.122A.5.5 0 0 0 10.62 4h2.758a.5.5 0 0 0 .353-.146l2.122-2.122A2.5 2.5 0 0 1 17.62 1H20a1 1 0 1 1 0 2h-2.379a.5.5 0 0 0-.353.146l-1.915 1.915 1.754 2.104 1.498.6a3 3 0 0 1 1.64 1.597l1.463 3.388a3.583 3.583 0 0 1-1.117 4.27c-.848.646-1.74 1.22-2.708 1.675l1.375 1.875c.551.752 1.742.362 1.742-.57a1 1 0 1 1 2 0c0 2.865-3.617 4.133-5.355 1.753l-1.7-2.32a13.82 13.82 0 0 1-7.89 0l-1.7 2.32C4.633 24.125 1 22.865 1 20a1 1 0 1 1 2 0c0 .932 1.19 1.322 1.742.57l1.375-1.875c-.967-.455-1.86-1.029-2.708-1.676a3.583 3.583 0 0 1-1.117-4.269l1.463-3.389a3 3 0 0 1 1.64-1.596l1.499-.6 1.753-2.103-1.915-1.916A.5.5 0 0 0 6.38 3H4a1 1 0 0 1-1-1Zm5.052 6.834 2.2 3.96c.762 1.372 2.734 1.372 3.496 0l2.2-3.96a1 1 0 0 1-.216-.194l-1.6-1.92A2 2 0 0 0 12.594 6h-1.19a2 2 0 0 0-1.518.698L8.268 8.64a1.006 1.006 0 0 1-.216.194Zm-1.862.767 2.192 3.945c-1.241-.322-2.569-.79-3.549-1.636l.758-1.756c.116-.267.334-.447.6-.553Zm-2.15 4.216c-.172.75.221 1.336.787 1.768a11.831 11.831 0 0 0 14.348 0c.566-.432.96-1.018.788-1.768-.644.446-1.497.885-2.495 1.248-1.478.537-3.343.935-5.467.935-2.124 0-3.99-.398-5.467-.935-.998-.363-1.85-.802-2.494-1.248Zm14.37-3.663.758 1.755c-.98.848-2.307 1.315-3.548 1.637l2.191-3.945c.266.106.484.286.6.553Z" + /> - + + d="M5 4a1 1 0 0 0-2 0v5.586l-.543-.543a1 1 0 0 0-1.414 1.414l2.25 2.25a1 1 0 0 0 1.414 0l2.25-2.25a1 1 0 0 0-1.414-1.414L5 9.586V4Zm6 2.414V12a1 1 0 1 0 2 0V6.414l.543.543a1 1 0 1 0 1.414-1.414l-2.25-2.25a1 1 0 0 0-1.414 0l-2.25 2.25a1 1 0 0 0 1.414 1.414L11 6.414Z" + /> - + - + - + - + - + - + - + - + - + + d="M16.25 6a1.25 1.25 0 1 0 0 2.5h2.482L13 14.232l-4.116-4.116a1.25 1.25 0 0 0-1.768 0l-5.75 5.75a1.25 1.25 0 0 0 1.768 1.768L8 12.768l4.116 4.116a1.25 1.25 0 0 0 1.768 0l6.616-6.616v2.482a1.25 1.25 0 1 0 2.5 0v-5.5C23 6.56 22.44 6 21.75 6h-5.5Z" + /> + d="M2 9a6 6 0 1 1 10.2 4.286 1 1 0 1 0 1.399 1.428 8 8 0 1 0-11.198 0 1 1 0 1 0 1.4-1.428A5.979 5.979 0 0 1 2 9Zm7.75 0c0-.105-.01-.208-.027-.309l1.282-1.282a1 1 0 0 0-1.414-1.414L8.309 7.277A1.75 1.75 0 1 0 9.75 9Z" + /> + d="M13 3.05V5a1 1 0 1 1-2 0V3.05a9.946 9.946 0 0 0-5.327 2.206l1.38 1.38A1 1 0 0 1 5.639 8.05l-1.38-1.38A9.954 9.954 0 0 0 2.048 12H4a1 1 0 1 1 0 2H2.05a9.955 9.955 0 0 0 2.413 5.573l.5-.5a.877.877 0 0 1 .026-.026l.876-.875a1 1 0 1 1 1.414 1.414l-2.121 2.121a.997.997 0 0 1-1.404.011A11.97 11.97 0 0 1 0 13C0 6.373 5.373 1 12 1s12 5.373 12 12a11.97 11.97 0 0 1-3.764 8.727 1 1 0 1 1-1.373-1.454A9.97 9.97 0 0 0 22 13c0-5.185-3.947-9.449-9-9.95Zm-1 7.45c.322 0 .63.061.914.172l2.879-2.88a1 1 0 1 1 1.414 1.415l-2.88 2.88A2.5 2.5 0 1 1 12 10.5Z" + /> + stroke="var(--color-spinner-icon-background, #3665F3)" + /> + stroke="var(--color-spinner-icon-foreground, #E5E5E5)" + /> + stroke-linejoin="round" + /> + stroke="var(--color-spinner-icon-foreground, #E5E5E5)" + /> + fill="var(--color-spinner-icon-background, #3665F3)" + /> + fill="var(--color-spinner-icon-foreground, #E5E5E5)" + /> + d="M6 3a1 1 0 1 0 0-2H2a.997.997 0 0 0-1 1v4a1 1 0 1 0 2 0V4.414l3.414 3.414A2 2 0 0 1 7 9.242V14a1 1 0 1 0 2 0V9.242a4 4 0 0 0-1.172-2.828L4.414 3H6Zm4 0a1 1 0 0 1 0-2h4a1 1 0 0 1 .705.29l.004.005A.997.997 0 0 1 15 2v4a1 1 0 1 1-2 0V4.414l-1.793 1.793a1 1 0 0 1-1.414-1.414L11.586 3H10Z" + /> + d="M8 3a1 1 0 0 0 0-2H2a1 1 0 0 0-1 1v6a1 1 0 0 0 2 0V4.414l7.121 7.122a3 3 0 0 1 .879 2.12V22a1 1 0 1 0 2 0v-8.343a5 5 0 0 0-1.464-3.536L4.414 3H8Zm13 1.414V8a1 1 0 1 0 2 0V2a1 1 0 0 0-1-1h-6a1 1 0 1 0 0 2h3.586l-5.293 5.293a1 1 0 0 0 1.414 1.414L21 4.414Z" + /> - + - + + d="M8.187 3.346c1.227-.229 2.793-.32 4.81-.341-.089 3.503-.692 5.013-1.892 5.823-.644.435-1.56.74-2.912.928-.884.122-1.916.189-3.127.22 1.067-1.044 2.276-1.904 3.438-2.572.325-.187.643-.357.95-.51a1 1 0 0 0-.895-1.789c-.34.17-.693.359-1.052.565a19.588 19.588 0 0 0-3.375 2.44c.212-1.951.69-3.034 1.467-3.705.557-.48 1.361-.83 2.588-1.06Zm-6.182 7.12c.04-3.534.513-6.045 2.289-7.576.925-.797 2.112-1.247 3.526-1.51 1.41-.263 3.126-.355 5.176-.375a1.981 1.981 0 0 1 2.002 2.024c-.088 3.56-.676 6.041-2.774 7.457-1.006.679-2.267 1.045-3.757 1.25-1.407.195-3.095.257-5.091.263-.643.967-1.138 2.04-1.4 3.218a1 1 0 1 1-1.952-.434c.362-1.63 1.077-3.067 1.98-4.317Z" + /> + d="M12.925 3.416C15.06 3.103 17.707 3.014 21 3c-.106 6.012-1.201 8.757-3.494 10.194-1.202.754-2.836 1.218-5.084 1.483-1.806.213-3.945.291-6.487.313 2.114-2.498 5.166-4.422 8.518-6.097a1 1 0 0 0-.895-1.79c-3.07 1.535-6.129 3.384-8.463 5.83.291-4.294 1.27-6.557 3.052-7.864 1.113-.816 2.643-1.34 4.78-1.653ZM3.002 15.633c.036-6.13.984-9.993 3.961-12.176 1.488-1.091 3.384-1.685 5.672-2.02 2.289-.335 5.062-.424 8.363-.437a1.992 1.992 0 0 1 2 2.02c-.104 6.088-1.19 9.837-4.431 11.87-1.567.981-3.541 1.494-5.912 1.774-2.254.265-4.952.328-8.133.334a11.792 11.792 0 0 0-1.525 5.071 1 1 0 1 1-1.994-.142c.172-2.416.897-4.49 1.999-6.294Z" + /> @@ -9372,560 +11776,698 @@ d="M8.596 1.928a.625.625 0 0 0-1.19 0L6.055 6.136H1.62a.625.625 0 0 0-.346 1.146l3.56 2.364-1.366 4.035a.625.625 0 0 0 .953.71L8 11.862l3.578 2.528a.625.625 0 0 0 .953-.71l-1.366-4.036 3.55-2.364a.625.625 0 0 0-.346-1.145H9.955l-1.36-4.207Z" fill="var(--color-star-rating-full, transparent)" stroke="var(--color-star-rating-full-stroke, #707070)" - stroke-width="1.25"/> + stroke-width="1.25" + /> + clip-path="polygon(0 0, 50% 0, 50% 100%, 0 100%)" + /> + clip-rule="evenodd" + /> + clip-rule="evenodd" + /> + d="M20.001 3a1 1 0 0 1 .949.684L24.72 15H37a1 1 0 0 1 .581 1.814l-9.906 7.076 3.777 11.805a1 1 0 0 1-1.558 1.1L20 29.257l-9.894 7.538a1 1 0 0 1-1.558-1.1l3.777-11.805-9.906-7.076A1 1 0 0 1 3 15h12.28l3.772-11.316a1 1 0 0 1 .95-.684Zm0 4.162L16.72 17H6.12l8.554 6.11-3.254 10.17L20 26.743l8.579 6.537-3.255-10.17L33.88 17h-10.6L20 7.162Z" + /> - + - + - + + clip-rule="evenodd" + /> + d="M7.406 1.929A.625.625 0 0 1 8 1.495v10.367L4.42 14.39a.625.625 0 0 1-.952-.71l1.366-4.035-3.56-2.364a.625.625 0 0 1 .346-1.146h4.435l1.35-4.206Z" + /> + clip-rule="evenodd" + /> + d="M11.046 2.202A1 1 0 0 1 12 1.5v16.738l-5.582 4.074a1 1 0 0 1-1.54-1.117l2.13-6.56-5.572-3.81A1 1 0 0 1 2 9h6.925l2.121-6.798Z" + /> + clip-rule="evenodd" + /> + d="M7.406 1.929A.625.625 0 0 1 8 1.495v10.367L4.42 14.39a.625.625 0 0 1-.952-.71l1.366-4.035-3.56-2.364a.625.625 0 0 1 .346-1.146h4.435l1.35-4.206Z" + /> + clip-rule="evenodd" + /> + d="M11.046 2.202A1 1 0 0 1 12 1.5v16.738l-5.582 4.074a1 1 0 0 1-1.54-1.117l2.13-6.56-5.572-3.81A1 1 0 0 1 2 9h6.925l2.121-6.798Z" + /> + fill="var(--progress-stepper-attention-icon, var(--color-foreground-attention))" + /> + fill="var(--progress-stepper-confirmation-icon, var(--color-background-accent))" + /> + fill="var(--progress-stepper-current-icon, var(--color-background-accent))" + /> + fill="var(--progress-stepper-upcoming-icon, var(--color-border-medium))" + /> - + - + - + + d="M4.268 2.146A.5.5 0 0 1 4.62 2h6.758a.5.5 0 0 1 .353.146l1.975 1.975a1 1 0 0 1 .293.707V7c0 .356-.452 1-1.5 1S11 7.356 11 7a1 1 0 1 0-2 0 1 1 0 0 1-2 0 1 1 0 0 0-2 0c0 .356-.452 1-1.5 1S2 7.356 2 7V4.828a1 1 0 0 1 .293-.707l1.975-1.975ZM0 7V4.828a3 3 0 0 1 .879-2.12L2.854.731A2.5 2.5 0 0 1 4.62 0h6.758a2.5 2.5 0 0 1 1.767.732l1.975 1.975A3 3 0 0 1 16 4.828V7c0 .876-.399 1.593-1 2.107V13.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 13.5V9.107C.399 8.593 0 7.876 0 7Zm3.5 3c.871 0 1.762-.297 2.426-.832A3 3 0 0 0 7 9.83V14H3.5a.5.5 0 0 1-.5-.5V9.968c.166.021.333.032.5.032Zm6.573-.832A3 3 0 0 1 9 9.83V14h3.5a.5.5 0 0 0 .5-.5V9.968a3.943 3.943 0 0 1-.5.032c-.871 0-1.762-.297-2.427-.832ZM10 11.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1Z" + /> + d="M5.2 3.4A1 1 0 0 1 6 3h12a1 1 0 0 1 .8.4l1.8 2.4A2 2 0 0 1 21 7v2c0 .268-.126.487-.423.681-.321.21-.752.319-1.077.319-.325 0-.756-.108-1.077-.319C18.126 9.487 18 9.268 18 9a1 1 0 1 0-2 0c0 .268-.126.487-.423.681-.321.21-.752.319-1.077.319-.325 0-.756-.108-1.077-.319C13.126 9.487 13 9.268 13 9a1 1 0 1 0-2 0c0 .268-.126.487-.423.681-.321.21-.752.319-1.077.319-.325 0-.756-.108-1.077-.319C8.126 9.487 8 9.268 8 9a1 1 0 0 0-2 0c0 .268-.126.487-.423.681-.321.21-.752.319-1.077.319-.325 0-.756-.108-1.077-.319C3.126 9.487 3 9.268 3 9V7a2 2 0 0 1 .4-1.2l1.8-2.4ZM1 9V7a4 4 0 0 1 .8-2.4l1.8-2.4A3 3 0 0 1 6 1h12a3 3 0 0 1 2.4 1.2l1.8 2.4A4 4 0 0 1 23 7v2c0 .935-.441 1.637-1 2.11V20a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-8.89C1.441 10.637 1 9.935 1 9Zm5.673 2.354A3.33 3.33 0 0 0 7 11.11c.106.09.215.171.327.244A4.103 4.103 0 0 0 9.5 12a4.14 4.14 0 0 0 1.5-.297V16H4v-4.034c.172.023.34.034.5.034a4.1 4.1 0 0 0 2.173-.646Zm10 0A3.33 3.33 0 0 0 17 11.11c.106.09.215.171.327.244A4.104 4.104 0 0 0 19.5 12c.16 0 .328-.011.5-.034V20a1 1 0 0 1-1 1h-6v-9.297a4.126 4.126 0 0 0 1.5.297 4.1 4.1 0 0 0 2.173-.646ZM4 20v-2h7v3H5a1 1 0 0 1-1-1Zm10-5a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1v-2Z" + /> + d="M13.838 9.005A2.5 2.5 0 0 1 15.84 8h32.32a2.5 2.5 0 0 1 2.004 1.005l4.745 6.361A5.5 5.5 0 0 1 56 18.656V23c0 2.089-1.917 4-4.25 4s-4.25-1.911-4.25-4v-.5a2.5 2.5 0 0 0-5 0v.5a4 4 0 0 1-8 0v-.5a2.5 2.5 0 0 0-5 0v.5a4 4 0 0 1-8 0v-.5a2.5 2.5 0 0 0-5 0v.5c0 2.089-1.917 4-4.25 4S8 25.089 8 23v-4.345a5.5 5.5 0 0 1 1.092-3.289l4.746-6.361ZM3 23v-4.345a10.5 10.5 0 0 1 2.084-6.279l4.746-6.36A7.5 7.5 0 0 1 15.841 3H48.16a7.5 7.5 0 0 1 6.011 3.015l4.746 6.361A10.5 10.5 0 0 1 61 18.656V23c0 2.64-1.184 4.963-3 6.587V53.5a7.5 7.5 0 0 1-7.5 7.5h-37A7.5 7.5 0 0 1 6 53.5V29.586C4.184 27.962 3 25.64 3 23Zm8 25v5.501a2.5 2.5 0 0 0 2.5 2.5h16V48H11Zm0-5h18.5V31.064a8.963 8.963 0 0 1-4 .936 8.975 8.975 0 0 1-6.558-2.836C17.215 30.924 14.794 32 12.25 32c-.421 0-.839-.03-1.25-.087V43Zm42 10.501a2.5 2.5 0 0 1-2.5 2.5h-16V31.065a8.962 8.962 0 0 0 4 .935 8.975 8.975 0 0 0 6.558-2.836C46.785 30.924 49.206 32 51.75 32c.42 0 .838-.03 1.25-.087v21.588ZM38 40.75A2.75 2.75 0 0 1 40.75 38h6a2.75 2.75 0 0 1 2.75 2.75v4.5A2.75 2.75 0 0 1 46.75 48h-6A2.75 2.75 0 0 1 38 45.25v-4.5Z" + /> + d="M1 7v2c0 .935.441 1.637 1 2.11V20a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-8.89c.559-.473 1-1.175 1-2.11V7a4 4 0 0 0-.8-2.4l-1.8-2.4A3 3 0 0 0 18 1H6a3 3 0 0 0-2.4 1.2L1.8 4.6A4 4 0 0 0 1 7Zm6 4.11a3.33 3.33 0 0 1-.327.244A4.103 4.103 0 0 1 4.5 12c-.16 0-.328-.011-.5-.034V16h7v-4.297A4.126 4.126 0 0 1 9.5 12a4.103 4.103 0 0 1-2.173-.646A3.33 3.33 0 0 1 7 11.11Zm10 0a3.33 3.33 0 0 1-.327.244A4.104 4.104 0 0 1 14.5 12a4.14 4.14 0 0 1-1.5-.297V21h6a1 1 0 0 0 1-1v-8.034c-.172.023-.34.034-.5.034a4.104 4.104 0 0 1-2.173-.646A3.33 3.33 0 0 1 17 11.11ZM4 18v2a1 1 0 0 0 1 1h6v-3H4Zm11-4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-3Z" + /> + d="M9 4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1H9V4ZM7 5V4a3 3 0 0 1 3-3h4a3 3 0 0 1 3 3v1h3a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3h-1a1 1 0 1 1-2 0H7a1 1 0 1 1-2 0H4a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3h3Zm12 14h1a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-1v12ZM17 7v12H7V7h10ZM4 7h1v12H4a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1Z" + /> - - + + + d="M9.707 1.293a1 1 0 0 0-1.414 1.414L8.586 3H5.143A4.143 4.143 0 0 0 1 7.143V10a1 1 0 1 0 2 0V7.143C3 5.959 3.96 5 5.143 5h3.443l-.293.293a1 1 0 0 0 1.414 1.414l2-2a1 1 0 0 0 0-1.414l-2-2Zm-2 9.414a1 1 0 0 0-1.414-1.414l-2 2a1 1 0 0 0 0 1.414l2 2a1 1 0 0 0 1.414-1.414L7.414 13h3.443A4.143 4.143 0 0 0 15 8.857V6a1 1 0 1 0-2 0v2.857C13 10.041 12.04 11 10.857 11H7.414l.293-.293Z" + /> + d="M15.207.793a1 1 0 1 0-1.414 1.414L15.586 4H8a7 7 0 0 0-7 7v4a1 1 0 1 0 2 0v-4a5 5 0 0 1 5-5h7.586l-1.793 1.793a1 1 0 0 0 1.414 1.414l3.5-3.5a1 1 0 0 0 0-1.414l-3.5-3.5Zm-5 15.414a1 1 0 0 0-1.414-1.414l-3.5 3.5a1 1 0 0 0 0 1.414l3.5 3.5a1 1 0 0 0 1.414-1.414L8.414 20H16a7 7 0 0 0 7-7V9a1 1 0 1 0-2 0v4a5 5 0 0 1-5 5H8.414l1.793-1.793Z" + /> - + + d="M6.595 4.051A3 3 0 0 1 9.442 2h5.117a3 3 0 0 1 2.845 2.051l.317.949H21a3 3 0 0 1 3 3v11a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3h3.28l.315-.949ZM9.442 4a1 1 0 0 0-.95.684L7.95 6.316A1 1 0 0 1 7 7H3a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-4a1 1 0 0 1-.949-.684l-.544-1.632A1 1 0 0 0 14.56 4H9.442Z" + /> - + - + - + + d="M12 0a1 1 0 0 1 1 1v2h2a1 1 0 1 1 0 2h-2.586L9.328 8.086a2.5 2.5 0 1 1-1.414-1.414L11 3.586V1a1 1 0 0 1 1-1ZM2 9a5 5 0 0 1 5.835-4.93 1 1 0 0 0 .33-1.973 7 7 0 1 0 5.738 5.738 1 1 0 0 0-1.972.33A5 5 0 1 1 2 9Z" + /> + d="M20 1a1 1 0 1 0-2 0v3.586l-7.707 7.707a1 1 0 1 0 1.414 1.414L19.414 6H23a1 1 0 1 0 0-2h-3V1ZM2 13.5A8.5 8.5 0 0 1 10.5 5c1.108 0 2.164.211 3.131.595a1 1 0 0 0 .738-1.86A10.475 10.475 0 0 0 10.5 3C4.701 3 0 7.701 0 13.5S4.701 24 10.5 24 21 19.299 21 13.5c0-1.364-.26-2.67-.736-3.869a1 1 0 0 0-1.86.738A8.5 8.5 0 1 1 2 13.5Zm8.11-3.479a1 1 0 0 0-.22-1.988A5.502 5.502 0 0 0 10.5 19a5.502 5.502 0 0 0 5.466-4.89 1 1 0 1 0-1.987-.22A3.502 3.502 0 0 1 7 13.5a3.502 3.502 0 0 1 3.11-3.479Z" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + d="M3 1a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h3.723l4.762 2.858A1.001 1.001 0 0 0 13 14.99V13a3 3 0 0 0 3-3V4a3 3 0 0 0-3-3H3Zm10 10a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h4c.197 0 .38.057.536.155L11 13.234V11h2Z" + /> + d="M1 5a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3v.998c0 1.578-1.743 2.535-3.074 1.687L8.709 16H4a3 3 0 0 1-3-3V5Zm3-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.291l.246.156L14 16.998V14h2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H4Zm0 3a1 1 0 0 1 1-1h9a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1Zm1 2a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2H5Z" + /> - - + + - - + + - + - + + d="M11 8c0 .463-.105.902-.292 1.293l.5.5a1 1 0 0 1-1.415 1.414l-.5-.5C8.902 10.896 8.463 11 8 11a2.99 2.99 0 0 1-1.293-.292l-.5.5a1 1 0 0 1-1.414-1.415l.5-.5A2.988 2.988 0 0 1 5 8c0-.463.105-.902.292-1.293l-.5-.5a1 1 0 0 1 1.415-1.414l.5.5C7.098 5.104 7.537 5 8 5c.463 0 .902.105 1.293.292l.5-.5a1 1 0 0 1 1.414 1.415l-.5.5c.188.391.293.83.293 1.293ZM9 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" + /> + d="M1 4a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3.001 3.001 0 0 1-2 2.83V15a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1H6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-.17A3.001 3.001 0 0 1 1 12V4Zm3-1h8a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Z" + /> + d="M17 11c0 1.02-.305 1.967-.828 2.757l1.535 1.536a1 1 0 0 1-1.414 1.414l-1.536-1.535A4.977 4.977 0 0 1 12 16a4.977 4.977 0 0 1-2.757-.828l-1.536 1.535a1 1 0 0 1-1.414-1.414l1.535-1.536A4.977 4.977 0 0 1 7 11c0-1.02.305-1.967.828-2.757L6.293 6.707a1 1 0 0 1 1.414-1.414l1.536 1.535A4.977 4.977 0 0 1 12 6c1.02 0 1.967.305 2.757.828l1.536-1.535a1 1 0 1 1 1.414 1.414l-1.535 1.536C16.695 9.033 17 9.98 17 11Zm-2 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" + /> + d="M1 4a4 4 0 0 1 4-4h14a4 4 0 0 1 4 4v14a4.002 4.002 0 0 1-3 3.874V23a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-1H8v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1.126A4.002 4.002 0 0 1 1 18V4Zm4-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Z" + /> + clip-rule="evenodd" + /> + d="M8.976 19c-1.145-.004-2.185-.295-2.933-1.043C5.289 17.203 5 16.154 5 15c0-.688.221-1.411.442-1.984L5.448 13H3a1.7 1.7 0 0 1-1.361-.66c-.28-.352-.416-.775-.492-1.13C1 10.52 1 9.682 1 9.054V9c0-.967.298-2.847.982-4.506.344-.835.812-1.68 1.446-2.332C4.074 1.497 4.932 1 6 1h4c.592 0 1.213.172 1.758.376.559.21 1.114.483 1.596.746A19.984 19.984 0 0 1 14.807 3H18a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-3.835c-1.29.449-2.063.973-2.634 1.687-.617.771-1.073 1.854-1.563 3.566a.995.995 0 0 1-.366.545 1.001 1.001 0 0 1-.626.202Zm-.701-2.065c.445-1.41.949-2.565 1.694-3.497.774-.968 1.754-1.63 3.031-2.138V4.224a15.816 15.816 0 0 0-.604-.346 10.95 10.95 0 0 0-1.34-.63C10.6 3.079 10.24 3 10 3H6c-.39 0-.762.169-1.139.556-.39.401-.739.993-1.03 1.7C3.244 6.679 3 8.3 3 9c0 .7.005 1.332.103 1.79a1.6 1.6 0 0 0 .058.21H6.98a.993.993 0 0 1 .575.168 1.001 1.001 0 0 1 .33 1.297c-.166.334-.391.786-.577 1.269C7.112 14.244 7 14.688 7 15c0 .846.21 1.296.457 1.543.164.163.418.311.818.392ZM15 5h2v6h-2V5Z" + /> + clip-rule="evenodd" + /> - + + d="M15 12h2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-2v8Zm-2 .386V3.069C12.062 2.547 10.872 2 10 2H6C3.083 2 2 7.333 2 9c0 1.333 0 3 1 3h4c-.333.667-1 2-1 3 0 1.983.983 2.983 2.95 3 .029 0 .056-.02.064-.049.875-3.046 1.757-4.566 3.986-5.565Z" + /> - + + clip-rule="evenodd" + /> + d="M11.024 1c1.145.004 2.185.295 2.933 1.043C14.711 2.797 15 3.846 15 5c0 .688-.221 1.411-.442 1.984L14.552 7H17a1.7 1.7 0 0 1 1.361.66c.28.352.416.775.492 1.13.147.69.147 1.527.147 2.155V11c0 .967-.298 2.847-.982 4.506-.344.835-.812 1.68-1.446 2.332C15.926 18.503 15.068 19 14 19h-4c-.592 0-1.213-.172-1.758-.376a12.788 12.788 0 0 1-1.596-.746A19.963 19.963 0 0 1 5.193 17H2a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h3.834c1.29-.449 2.064-.973 2.635-1.687.617-.771 1.073-1.853 1.564-3.566a.994.994 0 0 1 .365-.545A1 1 0 0 1 11.024 1Zm.701 2.065c-.445 1.41-.948 2.565-1.694 3.497C9.257 7.53 8.277 8.192 7 8.7v7.076c.185.111.388.229.604.346.434.237.9.464 1.34.63.456.17.815.248 1.056.248h4c.39 0 .761-.169 1.139-.556.39-.401.739-.993 1.03-1.7C16.756 13.32 17 11.7 17 11c0-.7-.005-1.332-.103-1.79A1.615 1.615 0 0 0 16.84 9h-3.82a.993.993 0 0 1-.87-.474 1.002 1.002 0 0 1-.036-.99c.167-.335.392-.787.578-1.27.196-.51.308-.954.308-1.266 0-.846-.21-1.296-.457-1.543-.164-.163-.418-.311-.818-.392ZM5 15H3V9h2v6Z" + /> + clip-rule="evenodd" + /> + d="M32.017 61H32c-1.847 0-3.862-.675-5.647-1.463-3.817-1.685-7.358-4.047-10.694-6.538H5.5A2.5 2.5 0 0 1 3 50.5v-24A2.5 2.5 0 0 1 5.5 24h12.409C23.361 21.262 31.992 16.567 32 5.515v-.016A2.5 2.5 0 0 1 34.5 3c2.938-.003 6.067.04 8.605 1.732 3 2 4.395 5.688 4.395 11.268 0 1.58-.34 3.878-.816 6.038a42.033 42.033 0 0 1-.618 2.463H53c2.769 0 5.554.924 6.925 3.5C60.99 29.999 61 32.54 61 34.5c0 3.617-1.159 9.951-3.507 15.423C55.273 55.096 51.292 61 45 61H32.017Zm4.857-52.957c1.525.08 2.623.292 3.458.849.938.625 2.168 2.187 2.168 7.107 0 1.046-.253 2.935-.7 4.963-.442 2.01-1.006 3.84-1.516 4.88-.4.764-.37 1.71.076 2.45a2.52 2.52 0 0 0 2.195 1.207H53c3.144 0 3 2.378 3 5 0 2.883-.998 8.549-3.102 13.452-1.047 2.44-2.3 4.527-3.704 5.969C47.811 55.34 46.426 56 45 56H31.987c-.78-.004-2.01-.33-3.615-1.038-3.341-1.474-6.438-3.55-9.372-5.71V28.993c.309-.124.6-.248.896-.396 4.933-2.462 15.697-7.834 16.978-20.554ZM8 29h6v19H8V29Z" + /> - + + d="M5 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2V8Zm2-.386v9.317C7.938 17.453 9.128 18 10 18h4c2.917 0 4-5.333 4-7 0-1.333 0-3-1-3h-4c.333-.667 1-2 1-3 0-1.983-.983-2.983-2.95-3a.067.067 0 0 0-.064.049C10.111 5.095 9.229 6.615 7 7.614Z" + /> - + - + + clip-rule="evenodd" + /> - + + d="M24 12c0 6.628-5.372 12-12 12-6.627 0-12-5.372-12-12C0 5.373 5.373 0 12 0c6.628 0 12 5.373 12 12Zm-8.658-7.897a4.022 4.022 0 0 0 1.76 2.631c.629.41 1.38.65 2.185.65v2.885a6.86 6.86 0 0 1-4.013-1.29v5.861a5.316 5.316 0 0 1-5.31 5.31 5.278 5.278 0 0 1-3.043-.962 5.305 5.305 0 0 1-2.267-4.347 5.316 5.316 0 0 1 5.31-5.31c.243 0 .482.02.716.052v2.945a2.387 2.387 0 0 0-.716-.112 2.428 2.428 0 0 0-2.425 2.425 2.427 2.427 0 0 0 2.425 2.425 2.426 2.426 0 0 0 2.42-2.334l.005-11.56h2.885c0 .249.024.493.068.731Z" + /> - + - + + d="M18 3H6a3 3 0 0 0 0 6h12a3 3 0 1 0 0-6ZM6 1a5 5 0 0 0 0 10h12a5 5 0 0 0 0-10H6Zm0 12a5 5 0 0 0 0 10h12a5 5 0 0 0 0-10H6Zm12 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM6.5 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" + /> + d="M6 1a5 5 0 0 0 0 10h12a5 5 0 0 0 0-10H6Zm12 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 7H6a3 3 0 1 0 0 6h12a3 3 0 1 0 0-6ZM6 13a5 5 0 0 0 0 10h12a5 5 0 0 0 0-10H6Zm.5 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" + /> + d="M3.5-.004a2.5 2.5 0 0 0-2.5 2.5v11.17c0 1.732 1.819 2.86 3.37 2.091l3.485-1.727a.334.334 0 0 1 .296 0l3.48 1.726c1.55.77 3.37-.358 3.37-2.09V2.496a2.5 2.5 0 0 0-2.5-2.5h-9Zm-.5 2.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 .5.5v11.17c0 .247-.26.409-.48.299l-3.48-1.727a2.333 2.333 0 0 0-2.074 0l-3.485 1.727A.333.333 0 0 1 3 13.667V2.497Zm5.65.873a.76.76 0 0 0-1.303 0l-.975 1.624-1.778.399a.76.76 0 0 0-.414 1.233l1.176 1.386-.258 2.135a.76.76 0 0 0 1.116.76L8 9.939l1.785.967a.76.76 0 0 0 1.116-.76l-.258-2.135 1.176-1.386a.76.76 0 0 0-.414-1.233l-1.778-.399-.975-1.624ZM7.494 6.04 8 5.196l.506.844.166.275.313.07.899.202-.596.702-.212.25.039.326.126 1.04-.884-.479L8 8.234l-.357.193-.883.478.125-1.04.04-.325-.212-.25-.597-.702.899-.202.314-.07.165-.275Z" + /> + d="M5 0a3 3 0 0 0-3 3v17.992c0 2.421 2.72 3.845 4.71 2.465l4.723-3.275a1 1 0 0 1 1.14 0l4.717 3.272c1.99 1.38 4.71-.044 4.71-2.465V3a3 3 0 0 0-3-3H5ZM4 3a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v17.989a1 1 0 0 1-1.57.822l-4.717-3.272a3 3 0 0 0-3.42 0L5.57 21.814A1 1 0 0 1 4 20.992V3Zm9.287 1.737a1.5 1.5 0 0 0-2.574 0L9.452 6.845l-2.282.513a1.5 1.5 0 0 0-.816 2.432l1.51 1.787-.33 2.743c-.146 1.21 1.135 2.08 2.205 1.497L12 14.59l2.26 1.228c1.07.582 2.352-.287 2.206-1.497l-.33-2.743 1.51-1.787a1.5 1.5 0 0 0-.816-2.432l-2.282-.513-1.26-2.108ZM10.97 8.203 12 6.48l1.03 1.722a1.1 1.1 0 0 0 .703.508l1.854.417-1.232 1.457a1.1 1.1 0 0 0-.252.842l.261 2.17-1.839-.999a1.1 1.1 0 0 0-1.05 0l-1.84 1 .262-2.171a1.1 1.1 0 0 0-.252-.842L8.413 9.128l1.855-.417a1.1 1.1 0 0 0 .702-.508Z" + /> + clip-rule="evenodd" + /> + d="M6 2a1 1 0 0 0-1 1v2H2a1 1 0 0 0-1 1v2a5.001 5.001 0 0 0 4.275 4.948A7.008 7.008 0 0 0 11 17.929V20H8a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-3v-2.07a7.008 7.008 0 0 0 5.725-4.982A5.001 5.001 0 0 0 23 8V6a1 1 0 0 0-1-1h-3V3a1 1 0 0 0-1-1H6Zm6 14a5 5 0 0 0 5-5V4H7v7a5 5 0 0 0 5 5Zm9-8a3.001 3.001 0 0 1-2 2.83V7h2v1ZM5 10.83V7H3v1c0 1.306.835 2.418 2 2.83Z" + /> + d="M3.5-.004a2.5 2.5 0 0 0-2.5 2.5v11.17c0 1.732 1.819 2.86 3.37 2.091l3.485-1.727a.334.334 0 0 1 .296 0l3.48 1.726c1.55.77 3.37-.358 3.37-2.09V2.496a2.5 2.5 0 0 0-2.5-2.5h-9Zm-.5 2.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 .5.5v11.17c0 .247-.26.409-.48.299l-3.48-1.727a2.333 2.333 0 0 0-2.074 0l-3.485 1.727A.333.333 0 0 1 3 13.667V2.497Zm5.65.873a.76.76 0 0 0-1.303 0l-.975 1.624-1.778.399a.76.76 0 0 0-.414 1.233l1.176 1.386-.258 2.135a.76.76 0 0 0 1.116.76L8 9.939l1.785.967a.76.76 0 0 0 1.116-.76l-.258-2.135 1.176-1.386a.76.76 0 0 0-.414-1.233l-1.778-.399-.975-1.624ZM7.494 6.04 8 5.196l.506.844.166.275.313.07.899.202-.596.702-.212.25.039.326.126 1.04-.884-.479L8 8.234l-.357.193-.883.478.125-1.04.04-.325-.212-.25-.597-.702.899-.202.314-.07.165-.275Z" + /> + d="M5 0a3 3 0 0 0-3 3v17.992c0 2.421 2.72 3.845 4.71 2.465l4.723-3.275a1 1 0 0 1 1.14 0l4.717 3.272c1.99 1.38 4.71-.044 4.71-2.465V3a3 3 0 0 0-3-3H5ZM4 3a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v17.989a1 1 0 0 1-1.57.822l-4.717-3.272a3 3 0 0 0-3.42 0L5.57 21.814A1 1 0 0 1 4 20.992V3Zm9.287 1.737a1.5 1.5 0 0 0-2.574 0L9.452 6.845l-2.282.513a1.5 1.5 0 0 0-.816 2.432l1.51 1.787-.33 2.743c-.146 1.21 1.135 2.08 2.205 1.497L12 14.59l2.26 1.228c1.07.582 2.352-.287 2.206-1.497l-.33-2.743 1.51-1.787a1.5 1.5 0 0 0-.816-2.432l-2.282-.513-1.26-2.108ZM10.97 8.203 12 6.48l1.03 1.722a1.1 1.1 0 0 0 .703.508l1.854.417-1.232 1.457a1.1 1.1 0 0 0-.252.842l.261 2.17-1.839-.999a1.1 1.1 0 0 0-1.05 0l-1.84 1 .262-2.171a1.1 1.1 0 0 0-.252-.842L8.413 9.128l1.855-.417a1.1 1.1 0 0 0 .702-.508Z" + /> + fill="var(--color-background-accent, #0968f6)" + /> + fill="var(--color-foreground-on-accent, #ffffff)" + /> + fill="#0968F6" + /> + stroke-width="1.5" + /> + fill="var(--color-background-accent, #0968f6)" + /> + fill="var(--color-foreground-on-accent, #ffffff)" + /> + fill="#0968F6" + /> + fill="#fff" + /> + clip-rule="evenodd" + /> - + + clip-rule="evenodd" + /> + d="M3 4a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v16a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V4Zm3-1a1 1 0 0 0-1 1v3h3V3H6ZM5 20V9h14v11a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1ZM19 4v3h-9V3h8a1 1 0 0 1 1 1Zm-3 2a1 1 0 1 0 0-2h-3a1 1 0 1 0 0 2h3Zm-3.528 5.118A1 1 0 0 1 13 12v5h.5a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h.5v-3.134a1 1 0 0 1-1.055-1.698l1.5-1a1 1 0 0 1 1.027-.05Z" + /> + d="M4.5 0A2.5 2.5 0 0 0 2 2.5v11A2.5 2.5 0 0 0 4.5 16h7a2.5 2.5 0 0 0 2.5-2.5v-11A2.5 2.5 0 0 0 11.5 0h-7ZM4 2.5a.5.5 0 0 1 .5-.5h1.75v2.25H4V2.5Zm8 1.75H7.75V2h3.75a.5.5 0 0 1 .5.5v1.75Zm-8 1.5h8v7.75a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5V5.75Zm6.457 3.457a1 1 0 0 0-1.414-1.414L7.25 9.586l-.293-.293a1 1 0 0 0-1.414 1.414l1 1a1 1 0 0 0 1.414 0l2.5-2.5Z" + /> + d="M3 4a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v16a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V4Zm3-1a1 1 0 0 0-1 1v3h3V3H6Zm4 4h9V4a1 1 0 0 0-1-1h-8v4ZM5 9v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V9H5Zm7-4a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2h-3a1 1 0 0 1-1-1Zm3.707 8.707a1 1 0 0 0-1.414-1.414L11 15.586l-1.293-1.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4Z" + /> - + + d="M1 4h4.85a6.734 6.734 0 0 1-.492 1.228 11.72 11.72 0 0 1-.82 1.357 9.054 9.054 0 0 1-.644-1.032 1 1 0 0 0-1.788.894c.23.462.644 1.095 1.152 1.781-.912 1.06-1.845 1.97-2.502 2.61-.176.172-.332.324-.463.455a1 1 0 1 0 1.414 1.414l.415-.407c.596-.58 1.496-1.456 2.402-2.481.419.492.851.967 1.266 1.385a1 1 0 1 0 1.42-1.408 24.2 24.2 0 0 1-1.4-1.554 14.87 14.87 0 0 0 1.332-2.108c.343-.676.621-1.396.76-2.134H9a1 1 0 1 0 0-2H6V1a1 1 0 0 0-2 0v1H1a1 1 0 0 0 0 2Zm10.5 2a1 1 0 0 0-.942.664l-2.5 7a1 1 0 1 0 1.884.672l.478-1.34a.714.714 0 0 0 .08.004h3c.027 0 .053-.001.08-.003l.478 1.34a1 1 0 1 0 1.884-.673l-2.5-7A1 1 0 0 0 12.5 6h-1Zm.5 2.573L12.867 11h-1.734L12 8.573Z" + /> + d="M7.5 5H2a1 1 0 0 1 0-2h4.5V2a1 1 0 0 1 2 0v1H13a1 1 0 1 1 0 2h-1.182c-.243.907-.673 1.816-1.184 2.68-.58.982-1.293 1.954-2.038 2.866.35.388.719.777 1.104 1.154l.007.007.366.366a1 1 0 0 1-1.413 1.415l-.363-.362c-.353-.346-.693-.7-1.018-1.055a70.59 70.59 0 0 1-3.018 3.091c-.217.213-.405.396-.554.545a1 1 0 0 1-1.414-1.414c.166-.166.368-.363.597-.588.799-.78 1.934-1.89 3.078-3.166A27.96 27.96 0 0 1 4.152 8.03a1 1 0 1 1 1.696-1.06c.278.444.78 1.174 1.439 2.014a20.85 20.85 0 0 0 1.626-2.32c.345-.586.618-1.144.809-1.664H7.5Zm5.564 4.649A1 1 0 0 1 14 9h1a1 1 0 0 1 .936.649l3 8a1 1 0 0 1-1.872.702L16.557 17H12.5a.96.96 0 0 1-.056-.002l-.508 1.353a1 1 0 0 1-1.872-.702l3-8ZM13.193 15h2.614L14.5 11.515 13.193 15Z" + /> + d="M9 6H2a1 1 0 0 1 0-2h6V3a1 1 0 0 1 2 0v1h6a1 1 0 1 1 0 2h-2.22c-.647 2.17-2.14 4.524-3.749 6.636a30.15 30.15 0 0 0 1.661 1.734c.159.152.319.302.48.448a1 1 0 1 1-1.345 1.48 26.57 26.57 0 0 1-.52-.485 31.59 31.59 0 0 1-1.54-1.59c-2.038 2.463-4.112 4.536-5.056 5.48l-.004.004a1 1 0 0 1-1.414-1.414c.975-.975 3.11-3.11 5.154-5.611-1.056-1.3-1.865-2.464-2.295-3.152a1 1 0 1 1 1.696-1.06 30.73 30.73 0 0 0 1.864 2.593c1.29-1.735 2.38-3.495 2.96-5.063H9Zm7.072 4.629A1 1 0 0 1 17 10h1a1 1 0 0 1 .928.629l4 10a1 1 0 0 1-1.857.742l-.95-2.378A.97.97 0 0 1 20 19h-5a.966.966 0 0 1-.12-.007l-.952 2.378a1 1 0 0 1-1.857-.742l4-10ZM15.677 17h3.646L17.5 12.443 15.677 17Z" + /> - + - + + d="M4 1.001a1 1 0 0 0-1 1v1H1a1 1 0 0 0-1 1v1.333a3.667 3.667 0 0 0 3.412 3.658A5.009 5.009 0 0 0 7 11.901v1.1H6a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2H9v-1.1a5.009 5.009 0 0 0 3.588-2.909A3.667 3.667 0 0 0 16 5.334V4.001a1 1 0 0 0-1-1h-2v-1a1 1 0 0 0-1-1H4Zm4 9a3 3 0 0 0 3-3v-4H5v4a3 3 0 0 0 3 3Zm6-4.667c0 .684-.411 1.271-1 1.528V5.001h1v.333ZM3 6.862V5.001H2v.333c0 .684.411 1.271 1 1.528Z" + /> + d="M6 2.001a1 1 0 0 0-1 1v2H2a1 1 0 0 0-1 1v2a5.001 5.001 0 0 0 4.275 4.948A7.008 7.008 0 0 0 11 17.93v2.071H8a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-3v-2.07a7.008 7.008 0 0 0 5.725-4.982A5.001 5.001 0 0 0 23 8V6a1 1 0 0 0-1-1h-3V3a1 1 0 0 0-1-1H6Zm6 14a5 5 0 0 0 5-5v-7H7v7a5 5 0 0 0 5 5Zm9-8a3.001 3.001 0 0 1-2 2.83V7h2v1Zm-16 2.83V7H3v1c0 1.306.835 2.417 2 2.83Z" + /> + d="M2.5 4a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 .5.5h6a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5h-6Zm-1.484 8.742A2 2 0 1 0 5 13h4a2 2 0 1 0 4 0h1a2 2 0 0 0 2-2V8.85a2 2 0 0 0-.438-1.249l-1.48-1.85A2 2 0 0 0 12.518 5H11v-.5A2.5 2.5 0 0 0 8.5 2h-6A2.5 2.5 0 0 0 0 4.5V11a2 2 0 0 0 1.016 1.742ZM14 11h-3.05c.033-.162.05-.329.05-.5V7h1.52L14 8.85V11Z" + /> + d="M4 6a1 1 0 0 0-1 1v8.75c0 .138.112.25.25.25h.92a3.001 3.001 0 0 1 5.66 0H14V7a1 1 0 0 0-1-1H4Zm-.75 12h.92a3.001 3.001 0 0 0 5.66 0h4.34a3.001 3.001 0 0 0 5.66 0h.92A2.25 2.25 0 0 0 23 15.75v-3.28a2.25 2.25 0 0 0-.557-1.482l-2.817-3.22A2.25 2.25 0 0 0 17.933 7H16a3 3 0 0 0-3-3H4a3 3 0 0 0-3 3v8.75A2.25 2.25 0 0 0 3.25 18ZM16 9v5.17A3.001 3.001 0 0 1 19.83 16h.92a.25.25 0 0 0 .25-.25v-3.28a.25.25 0 0 0-.062-.165l-2.817-3.22A.25.25 0 0 0 17.933 9H16Zm1 9a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-9-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" + /> + d="M5 16.5A2.5 2.5 0 0 1 7.5 14h28a2.5 2.5 0 0 1 2.5 2.5V44H25.626a8.504 8.504 0 0 0-16.252 0H7.5A2.5 2.5 0 0 1 5 41.5v-25ZM9.374 49H7.5A7.5 7.5 0 0 1 0 41.5v-25A7.5 7.5 0 0 1 7.5 9h28a7.5 7.5 0 0 1 7.5 7.5v.5h5.74a6.5 6.5 0 0 1 4.792 2.108l8.76 9.556A6.5 6.5 0 0 1 64 33.056V42.5a6.5 6.5 0 0 1-6.5 6.5h-2.874a8.504 8.504 0 0 1-16.252 0H25.626a8.504 8.504 0 0 1-16.252 0ZM43 38.752V22h5.74a1.5 1.5 0 0 1 1.106.486l8.76 9.556A1.5 1.5 0 0 1 59 33.056V42.5a1.5 1.5 0 0 1-1.5 1.5h-2.874A8.504 8.504 0 0 0 43 38.752Zm0 7.748a3.5 3.5 0 1 0 7 0 3.5 3.5 0 0 0-7 0Zm-22 0a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Z" + /> - + + d="M0 3a1 1 0 0 1 1-1h7.5A2.5 2.5 0 0 1 11 4.5V5h1.52a2 2 0 0 1 1.561.75l1.48 1.851A2 2 0 0 1 16 8.851V11a2 2 0 0 1-2 2h-1a2 2 0 1 1-4 0H5a2 2 0 1 1-4 0 1 1 0 1 1 0-2h7.5a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5H1a1 1 0 0 1-1-1Zm14 8h-3.05c.033-.162.05-.329.05-.5V7h1.52L14 8.85V11ZM1 6a1 1 0 0 0 0 2h4a1 1 0 0 0 0-2H1Z" + /> + d="M2 4a1 1 0 0 0 0 2h11a1 1 0 0 1 1 1v9H9.83a3.001 3.001 0 0 0-5.66 0H2a1 1 0 1 0 0 2h2.17a3.001 3.001 0 0 0 5.66 0h4.34a3.001 3.001 0 0 0 5.66 0h.92A2.25 2.25 0 0 0 23 15.75v-3.28a2.25 2.25 0 0 0-.557-1.482l-2.817-3.22A2.25 2.25 0 0 0 17.933 7H16a3 3 0 0 0-3-3H2Zm18.75 12h-.92A3.001 3.001 0 0 0 16 14.17V9h1.933a.25.25 0 0 1 .188.085l2.817 3.22a.25.25 0 0 1 .062.165v3.28a.25.25 0 0 1-.25.25ZM16 17a1 1 0 1 0 2 0 1 1 0 0 0-2 0ZM6 17a1 1 0 1 0 2 0 1 1 0 0 0-2 0ZM2 9a1 1 0 0 0 0 2h8a1 1 0 1 0 0-2H2Z" + /> + d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12Zm5.946-18.5-4.736 5.505 5.15 7.495h-3.787l-3.469-5.047L6.762 18.5H5.64l4.966-5.772L5.64 5.5h3.788l3.284 4.78 4.112-4.78h1.122Zm-6.776 6.572.503.72 3.427 4.902h1.724l-4.2-6.008-.503-.72L8.89 6.345H7.166l4.004 5.727Z" + /> + d="M13 8a5 5 0 0 0-5-5c-1.514 0-2.78.666-3.875 2H6a1 1 0 1 1 0 2H2.268a.98.98 0 0 1-.038 0H2a1 1 0 0 1-1-1V2a1 1 0 1 1 2 0v1.255C4.312 1.86 5.95 1 8 1a7 7 0 1 1-6.063 10.5 1 1 0 1 1 1.731-1A5 5 0 0 0 13 8Z" + /> + d="M20 12a8 8 0 0 0-8-8C9.088 4 6.712 5.671 5.104 8H9a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1V3a1 1 0 0 1 2 0v3.137C5.874 3.777 8.584 2 12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10c-4.356 0-8.058-2.784-9.43-6.667a1 1 0 1 1 1.885-.666A8.004 8.004 0 0 0 12 20a8 8 0 0 0 8-8Z" + /> + stroke-width="1" + /> + fill="#E21836" + /> + fill="#00447C" + /> + fill="#007B84" + /> + fill="#FEFEFE" + /> + stroke-width="1" + /> + fill="#E21836" + /> + fill="#00447C" + /> + fill="#007B84" + /> + fill="#FEFEFE" + /> + stroke-width="1" + /> + fill="#E21836" + /> + fill="#00447C" + /> + fill="#007B84" + /> + fill="#FEFEFE" + /> + stroke-width="1" + /> + fill="#E21836" + /> + fill="#00447C" + /> + fill="#007B84" + /> + fill="#FEFEFE" + /> + d="M6.114 4.333A2.001 2.001 0 0 1 10 5v1H4.5A2.5 2.5 0 0 0 2 8.5v4A2.5 2.5 0 0 0 4.5 15h7a2.5 2.5 0 0 0 2.5-2.5v-4a2.5 2.5 0 0 0-2-2.45V5a4 4 0 0 0-7.772-1.333 1 1 0 1 0 1.886.666ZM11 8H4.5a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5H11ZM8 9a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Z" + /> + d="M8.08 6.199A4.002 4.002 0 0 1 16 7v2H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3v-8a3 3 0 0 0-3-3V7A6 6 0 0 0 6.12 5.801a1 1 0 0 0 1.96.398ZM17 11H6a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1h-1Zm-5 2a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0v-4a1 1 0 0 1 1-1Z" + /> - + - + + d="M11.293 1.293a1 1 0 0 1 1.414 0l7 7a1 1 0 0 1-1.414 1.414L13 4.414V17a1 1 0 1 1-2 0V4.414L5.707 9.707a1 1 0 0 1-1.414-1.414l7-7ZM2 21a1 1 0 1 0 0 2h20a1 1 0 1 0 0-2H2Z" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> + stroke-width="1" + /> + fill="#008CFF" + /> + stroke-width="1" + /> + fill="#008CFF" + /> + stroke-width="1" + /> + fill="#008CFF" + /> + stroke-width="1" + /> + fill="#008CFF" + /> - + + d="M4.535 2A3.998 3.998 0 0 1 8 0c1.48 0 2.773.804 3.465 2H12.5A2.5 2.5 0 0 1 15 4.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 13.5v-9A2.5 2.5 0 0 1 3.5 2h1.035ZM6 4a2 2 0 1 1 4 0H6Zm6 0h.5a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5H4v1a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4Z" + /> - + + d="M7.416 3a5.001 5.001 0 0 1 9.168 0H18a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h1.416ZM9 5a3 3 0 1 1 6 0H9Zm8 0v1a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V5H6a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-1Z" + /> + d="M5 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H5ZM4 6a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V6Zm11.671 5.435-5.6-3.333C9.605 7.825 9 8.144 9 8.668v6.664c0 .524.605.843 1.071.566l5.6-3.333a.65.65 0 0 0 0-1.13Z" + /> + stroke-width="1" + /> + fill="#1434CB" + /> + stroke-width="1" + /> + fill="#1434CB" + /> + stroke-width="1" + /> + fill="#1434CB" + /> + stroke-width="1" + /> + fill="#1434CB" + /> - + + d="M4 4a1 1 0 0 0 0 2h15V5a1 1 0 0 0-1-1H4ZM1 5a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v1.17c1.165.413 2 1.524 2 2.83v10a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V5Zm5 15h14a1 1 0 0 0 1-1v-2h-6a3 3 0 1 1 0-6h6V9a1 1 0 0 0-1-1H4c-.35 0-.687-.06-1-.17V19a1 1 0 0 0 1 1h2Zm9-5h6v-2h-6a1 1 0 1 0 0 2Z" + /> + d="M11.5 8.999a3.5 3.5 0 1 0 0 7H51v-4.5a2.5 2.5 0 0 0-2.5-2.5h-37Zm-8.5 3.5v39.002a7.5 7.5 0 0 0 7.5 7.5h43a7.5 7.5 0 0 0 7.5-7.5V23.5a7.503 7.503 0 0 0-5-7.073V11.5A7.5 7.5 0 0 0 48.5 4h-37A8.5 8.5 0 0 0 3 12.5Zm7.5 41.502h43a2.5 2.5 0 0 0 2.5-2.5v-5.49H40.495a8.495 8.495 0 0 1 0-16.99H56V23.5a2.5 2.5 0 0 0-2.5-2.5h-42a8.47 8.47 0 0 1-3.5-.752v31.254a2.5 2.5 0 0 0 2.5 2.5ZM56 34.021H40.495a3.495 3.495 0 0 0 0 6.99H56v-6.99Z" + /> + stroke-width="1" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#191919" + /> - + + clip-rule="evenodd" + /> - + + clip-rule="evenodd" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> - + + fill="#fff" + /> + clip-rule="evenodd" + /> - + - + + stroke-width="1" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#191919" + /> + stroke-width="1" + /> + fill="#191919" + /> + d="M1.758 1.03a1 1 0 0 1 1.212.727L3.781 5H6.22l.811-3.243a1 1 0 0 1 1.94 0L9.781 5h2.438l.811-3.243a1 1 0 1 1 1.94.485L14.28 5H15a1 1 0 1 1 0 2h-1.22l-.5 2H15a1 1 0 1 1 0 2h-2.22l-.81 3.242a1 1 0 0 1-1.94 0L9.22 11H6.78l-.81 3.242a1 1 0 0 1-1.94 0L3.22 11H1a1 1 0 1 1 0-2h1.72l-.5-2H1a1 1 0 0 1 0-2h.72l-.69-2.758a1 1 0 0 1 .728-1.213ZM5.219 9h-.438l-.5-2H5.72l-.5 2Zm2.062 0H8.72l-.5-2h-.44l-.5 2Zm3.938 0h-.438l-.5-2h1.438l-.5 2Z" + /> + d="M2.783 2.024a1 1 0 0 1 1.193.76L5.136 8h4.88l1.03-3.298a1 1 0 0 1 1.909 0L13.985 8h4.88l1.159-5.217a1 1 0 0 1 1.952.434L20.913 8H22a1 1 0 1 1 0 2h-1.53l-.445 2H22a1 1 0 1 1 0 2h-2.42l-1.604 7.217a1 1 0 0 1-1.93.082L13.765 14h-3.53l-2.28 7.299a1 1 0 0 1-1.931-.082L4.42 14H2a1 1 0 1 1 0-2h1.976l-.445-2H2a1 1 0 0 1 0-2h1.087L2.024 3.217a1 1 0 0 1 .76-1.193ZM6.47 14l.694 3.125L8.14 14H6.47Zm2.296-2h-2.74l-.445-2h3.81l-.625 2Zm2.095 0h2.28l-.625-2h-1.03l-.624 2Zm5 2 .977 3.125L17.53 14h-1.67Zm2.116-2h-2.74l-.626-2h3.81l-.444 2Z" + /> + d="M12 7.586V5c0-1.847-.834-3.157-2.06-3.961C8.77.27 7.305 0 6 0H4.01a1.01 1.01 0 0 0-1.006.908c-.022.24.046.494.198.695L5.68 4.906l-.774.774-3.295-2.472A1.008 1.008 0 0 0 .564 3.1 1.01 1.01 0 0 0 0 4.015V6c0 1.358.268 2.83 1.043 3.992C1.857 11.212 3.172 12 5 12h2.585l3.084 3.086a3.122 3.122 0 1 0 4.416-4.415L12 7.586ZM6 2l1.789 2.385c.314.401.27.982-.092 1.333l-1.98 1.979c-.347.358-.92.407-1.324.098L2 6c0 1.142.232 2.17.707 2.883C3.144 9.537 3.83 10 5 10h2.99c.273-.003.539.109.729.305l3.365 3.367a1.122 1.122 0 1 0 1.587-1.587l-3.378-3.378A.997.997 0 0 1 10 7.98V5c0-1.153-.477-1.843-1.157-2.289C8.11 2.23 7.073 2 6 2Z" + /> + d="M6.009 1H8c1.853 0 3.613.56 4.92 1.766C14.241 3.984 15 5.77 15 8.008v2.588l6.968 6.968c1.23 1.23 1.45 3.273.17 4.555-1.33 1.333-3.326 1.062-4.597-.2l-6.953-6.903H8c-2.236 0-4.019-.76-5.235-2.082C1.56 11.624 1 9.862 1 8.008V6.029a1.041 1.041 0 0 1 .483-.88c.322-.195.737-.19 1.054.012l4.308 2.588.896-.897-2.594-4.329a1.03 1.03 0 0 1-.02-1.012A1.03 1.03 0 0 1 6.01 1Zm1.757 2.002H8c1.462 0 2.701.44 3.566 1.237.85.785 1.434 2.003 1.434 3.769v2.98c-.006.28.112.558.31.747l7.244 7.244c.597.598.528 1.366.17 1.724-.55.55-1.282.283-1.775-.206l-7.237-7.186a1.005 1.005 0 0 0-.729-.297H8c-1.763 0-2.98-.585-3.764-1.437C3.44 10.712 3 9.471 3 8.008v-.234l3.48 2.09a1 1 0 0 0 1.242-.162l1.968-1.97a1.004 1.004 0 0 0 .154-1.263L7.766 3.002Z" + /> - + - + - + - + - + fill="#FCF9F7" + /> + + fill="#FCF9F7" + /> - + - + fill="#FCF9F7" + /> + + fill="#FCF9F7" + /> - + - + fill="#FCF9F7" + /> + + fill="#FCF9F7" + /> - + + fill="#FCF9F7" + /> + fill="#AA8FFF" + /> + fill="#FCF9F7" + /> - - + + - + clip-rule="evenodd" + /> + - - + + + clip-rule="evenodd" + /> - - + + + clip-rule="evenodd" + /> - + + clip-rule="evenodd" + /> + fill="#707070" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#707070" + /> + fill="#191919" + /> + fill="#191919" + /> From 8437ca22d9d8127355f3399354a3da4f772d5f39 Mon Sep 17 00:00:00 2001 From: HenriqueLimas Date: Thu, 3 Sep 2026 16:16:21 -0700 Subject: [PATCH 08/11] chore: drop merge formatting churn outside the tooltip change The merge commit ran lint-staged over every file main brought in, reformatting docs pages, generated routes, and repo config that no lint script checks. Restore all of them to main. Co-authored-by: Cursor --- .prettierignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/.prettierignore b/.prettierignore index b236e9b007a..8d35d1f9eec 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,5 +1,2 @@ # Generated changelogs are managed by Changesets packages/*/CHANGELOG.md - -# Copied from packages/skin/src/svg/icons.svg by the Skin build -src/tags/master-icons.marko From 5c8256a6acd7cb0849cc5fe9aadf0db4bfa4d726 Mon Sep 17 00:00:00 2001 From: HenriqueLimas Date: Thu, 3 Sep 2026 16:17:15 -0700 Subject: [PATCH 09/11] chore: restore files reformatted by the merge commit lint-staged ran Prettier over every file the merge staged, rewriting docs pages, generated routes, and repo config that no lint script checks. Restore all of them to main. Co-authored-by: Cursor --- .claude/hooks/session-start-context.js | 9 +- .marko-run/routes.d.ts | 6285 ++--------------- .prettierignore | 26 + CLAUDE.md | 1 - packages/ebayui-core/.prettierignore | 2 +- .../techniques/live-region+page.marko | 14 +- .../chart-legend/accessibility+page.marko | 8 +- .../components/chip/accessibility+page.marko | 293 +- .../education-notice/accessibility+page.marko | 33 +- .../components/field/accessibility+page.marko | 44 +- .../_index/components/field/css+page.marko | 156 +- .../accessibility+page.marko | 16 +- .../accessibility+page.marko | 38 +- .../filter-chip/accessibility+page.marko | 283 +- .../components/filter-chip/css+page.marko | 38 +- .../floating-label/accessibility+page.marko | 18 +- .../accessibility+page.marko | 38 +- .../inline-notice/accessibility+page.marko | 36 +- .../components/list/accessibility+page.marko | 16 +- .../page-notice/accessibility+page.marko | 48 +- .../panel-dialog/accessibility+page.marko | 46 +- .../section-notice/accessibility+page.marko | 30 +- .../section-title/accessibility+page.marko | 16 +- .../selection-chip/accessibility+page.marko | 225 +- .../split-button/accessibility+page.marko | 80 +- .../components/split-button/css+page.marko | 6 +- 26 files changed, 1480 insertions(+), 6325 deletions(-) diff --git a/.claude/hooks/session-start-context.js b/.claude/hooks/session-start-context.js index d9d413f4ed1..0ae0fac2092 100644 --- a/.claude/hooks/session-start-context.js +++ b/.claude/hooks/session-start-context.js @@ -83,7 +83,9 @@ function readFrontmatterField(filePath, key) { const match = raw.match(/^---\r?\n([\s\S]*?)\r?\n---/); if (!match) return null; - const fieldMatch = match[1].match(new RegExp("^" + key + ":\\s*(\\S+)", "m")); + const fieldMatch = match[1].match( + new RegExp("^" + key + ":\\s*(\\S+)", "m"), + ); return fieldMatch ? fieldMatch[1].trim() : null; } @@ -105,7 +107,10 @@ function countOpenLessons(dir) { } return files.filter((f) => { - const disposition = readFrontmatterField(path.join(dir, f), "disposition"); + const disposition = readFrontmatterField( + path.join(dir, f), + "disposition", + ); return disposition !== "applied" && disposition !== "declined"; }).length; } diff --git a/.marko-run/routes.d.ts b/.marko-run/routes.d.ts index 37fcc1e3f8a..599beb74682 100644 --- a/.marko-run/routes.d.ts +++ b/.marko-run/routes.d.ts @@ -3,1311 +3,338 @@ Do NOT manually edit this file or your changes will be lost. */ -import { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, -} from "@marko/run/namespace"; +import { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform } from "@marko/run/namespace"; import type * as Run from "@marko/run"; + declare module "@marko/run" { - interface AppData extends Run.DefineApp<{ - routes: { - "/": { - verb: "get"; - meta: typeof import("../src/routes/_index/+meta.json"); - }; - "/evo-css-components": { - verb: "get"; - meta: typeof import("../src/routes/_index/evo-css-components+meta.json"); - }; - "/evo-marko-components": { - verb: "get"; - meta: typeof import("../src/routes/_index/evo-marko-components+meta.json"); - }; - "/evo-react-components": { - verb: "get"; - meta: typeof import("../src/routes/_index/evo-react-components+meta.json"); - }; - "/sitemap": { - verb: "get"; - meta: typeof import("../src/routes/_index/sitemap+meta.json"); - }; - "/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/+meta.json"); - }; - "/accessibility/anti-patterns": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/anti-patterns/+meta.json"); - }; - "/accessibility/anti-patterns/disabling-pinch-to-zoom": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/anti-patterns/disabling-pinch-to-zoom+meta.json"); - }; - "/accessibility/anti-patterns/hand-cursor-on-buttons": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/anti-patterns/hand-cursor-on-buttons+meta.json"); - }; - "/accessibility/anti-patterns/javascript-href": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/anti-patterns/javascript-href+meta.json"); - }; - "/accessibility/anti-patterns/layout-table": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/anti-patterns/layout-table+meta.json"); - }; - "/accessibility/anti-patterns/non-interactive-hover": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/anti-patterns/non-interactive-hover+meta.json"); - }; - "/accessibility/anti-patterns/open-new-window": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/anti-patterns/open-new-window+meta.json"); - }; - "/accessibility/anti-patterns/setting-focus-on-page-load": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/anti-patterns/setting-focus-on-page-load+meta.json"); - }; - "/accessibility/anti-patterns/tabindex-itis": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/anti-patterns/tabindex-itis+meta.json"); - }; - "/accessibility/anti-patterns/title-tooltip": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/anti-patterns/title-tooltip+meta.json"); - }; - "/accessibility/misc": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/misc/+meta.json"); - }; - "/accessibility/misc/aria-essentials": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/misc/aria-essentials+meta.json"); - }; - "/accessibility/misc/component-naming-scheme": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/misc/component-naming-scheme+meta.json"); - }; - "/accessibility/misc/faq": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/misc/faq+meta.json"); - }; - "/accessibility/patterns": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/+meta.json"); - }; - "/accessibility/patterns/description-list": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/description-list+meta.json"); - }; - "/accessibility/patterns/fake-menu-button": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/fake-menu-button+meta.json"); - }; - "/accessibility/patterns/fake-tabs": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/fake-tabs+meta.json"); - }; - "/accessibility/patterns/footnote": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/footnote+meta.json"); - }; - "/accessibility/patterns/form": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/form+meta.json"); - }; - "/accessibility/patterns/form-validation": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/form-validation+meta.json"); - }; - "/accessibility/patterns/heading": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/heading+meta.json"); - }; - "/accessibility/patterns/image": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/image+meta.json"); - }; - "/accessibility/patterns/input-dialog": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/input-dialog+meta.json"); - }; - "/accessibility/patterns/input-meter": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/input-meter+meta.json"); - }; - "/accessibility/patterns/input-validation": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/input-validation+meta.json"); - }; - "/accessibility/patterns/popover": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/popover+meta.json"); - }; - "/accessibility/patterns/pulldown-list": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/pulldown-list+meta.json"); - }; - "/accessibility/patterns/region": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/region+meta.json"); - }; - "/accessibility/patterns/skip-navigation": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/skip-navigation+meta.json"); - }; - "/accessibility/patterns/table-cell": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/table-cell+meta.json"); - }; - "/accessibility/patterns/time": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/patterns/time+meta.json"); - }; - "/accessibility/techniques": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/techniques/+meta.json"); - }; - "/accessibility/techniques/active-descendant": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/techniques/active-descendant+meta.json"); - }; - "/accessibility/techniques/alternative-text": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/techniques/alternative-text+meta.json"); - }; - "/accessibility/techniques/ambiguous-label": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/techniques/ambiguous-label+meta.json"); - }; - "/accessibility/techniques/background-icon": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/techniques/background-icon+meta.json"); - }; - "/accessibility/techniques/keyboard-interface": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/techniques/keyboard-interface+meta.json"); - }; - "/accessibility/techniques/keyboard-trap": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/techniques/keyboard-trap+meta.json"); - }; - "/accessibility/techniques/live-region": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/techniques/live-region+meta.json"); - }; - "/accessibility/techniques/offscreen-text": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/techniques/offscreen-text+meta.json"); - }; - "/accessibility/techniques/roving-tabindex": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/techniques/roving-tabindex+meta.json"); - }; - "/accessibility/techniques/skip-to-main-content": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/techniques/skip-to-main-content+meta.json"); - }; - "/accessibility/testing": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/testing/+meta.json"); - }; - "/accessibility/testing/checklist": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/testing/checklist+meta.json"); - }; - "/accessibility/testing/known-issues": { - verb: "get"; - meta: typeof import("../src/routes/_index/accessibility/testing/known-issues+meta.json"); - }; - "/components": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/+meta.json"); - }; - "/components/accordion": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/accordion/+meta.json"); - }; - "/components/accordion/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/accordion/accessibility+meta.json"); - }; - "/components/accordion/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/accordion/css+meta.json"); - }; - "/components/alert-dialog": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/alert-dialog/+meta.json"); - }; - "/components/alert-dialog/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/alert-dialog/accessibility+meta.json"); - }; - "/components/alert-dialog/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/alert-dialog/css+meta.json"); - }; - "/components/avatar": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/avatar/+meta.json"); - }; - "/components/avatar/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/avatar/accessibility+meta.json"); - }; - "/components/avatar/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/avatar/css+meta.json"); - }; - "/components/badge": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/badge/+meta.json"); - }; - "/components/badge/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/badge/accessibility+meta.json"); - }; - "/components/badge/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/badge/css+meta.json"); - }; - "/components/breadcrumbs": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/breadcrumbs/+meta.json"); - }; - "/components/breadcrumbs/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/breadcrumbs/accessibility+meta.json"); - }; - "/components/breadcrumbs/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/breadcrumbs/css+meta.json"); - }; - "/components/button": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/button/+meta.json"); - }; - "/components/button/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/button/accessibility+meta.json"); - }; - "/components/button/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/button/css+meta.json"); - }; - "/components/button/marko": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/button/marko+meta.json"); - }; - "/components/button/react": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/button/react+meta.json"); - }; - "/components/calendar": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/calendar/+meta.json"); - }; - "/components/calendar/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/calendar/accessibility+meta.json"); - }; - "/components/calendar/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/calendar/css+meta.json"); - }; - "/components/card": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/card/+meta.json"); - }; - "/components/card/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/card/accessibility+meta.json"); - }; - "/components/card/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/card/css+meta.json"); - }; - "/components/carousel": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/carousel/+meta.json"); - }; - "/components/carousel/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/carousel/accessibility+meta.json"); - }; - "/components/carousel/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/carousel/css+meta.json"); - }; - "/components/ccd": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/ccd/+meta.json"); - }; - "/components/ccd/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/ccd/accessibility+meta.json"); - }; - "/components/ccd/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/ccd/css+meta.json"); - }; - "/components/chart-legend": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/chart-legend/+meta.json"); - }; - "/components/chart-legend/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/chart-legend/accessibility+meta.json"); - }; - "/components/chart-legend/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/chart-legend/css+meta.json"); - }; - "/components/checkbox": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/checkbox/+meta.json"); - }; - "/components/checkbox/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/checkbox/accessibility+meta.json"); - }; - "/components/checkbox/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/checkbox/css+meta.json"); - }; - "/components/chip": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/chip/+meta.json"); - }; - "/components/chip/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/chip/accessibility+meta.json"); - }; - "/components/chip/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/chip/css+meta.json"); - }; - "/components/chips-combobox": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/chips-combobox/+meta.json"); - }; - "/components/chips-combobox/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/chips-combobox/accessibility+meta.json"); - }; - "/components/chips-combobox/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/chips-combobox/css+meta.json"); - }; - "/components/combobox": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/combobox/+meta.json"); - }; - "/components/combobox/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/combobox/accessibility+meta.json"); - }; - "/components/combobox/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/combobox/css+meta.json"); - }; - "/components/confirm-dialog": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/confirm-dialog/+meta.json"); - }; - "/components/confirm-dialog/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/confirm-dialog/accessibility+meta.json"); - }; - "/components/confirm-dialog/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/confirm-dialog/css+meta.json"); - }; - "/components/date-textbox": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/date-textbox/+meta.json"); - }; - "/components/date-textbox/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/date-textbox/accessibility+meta.json"); - }; - "/components/date-textbox/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/date-textbox/css+meta.json"); - }; - "/components/details": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/details/+meta.json"); - }; - "/components/details/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/details/accessibility+meta.json"); - }; - "/components/details/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/details/css+meta.json"); - }; - "/components/dialog": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/dialog/+meta.json"); - }; - "/components/dialog/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/dialog/accessibility+meta.json"); - }; - "/components/dialog/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/dialog/css+meta.json"); - }; - "/components/dialog/js": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/dialog/js+meta.json"); - }; - "/components/donut-chart": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/donut-chart/+meta.json"); - }; - "/components/donut-chart/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/donut-chart/accessibility+meta.json"); - }; - "/components/donut-chart/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/donut-chart/css+meta.json"); - }; - "/components/education-notice": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/education-notice/+meta.json"); - }; - "/components/education-notice/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/education-notice/accessibility+meta.json"); - }; - "/components/education-notice/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/education-notice/css+meta.json"); - }; - "/components/eek": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/eek/+meta.json"); - }; - "/components/eek/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/eek/accessibility+meta.json"); - }; - "/components/eek/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/eek/css+meta.json"); - }; - "/components/field": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/field/+meta.json"); - }; - "/components/field/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/field/accessibility+meta.json"); - }; - "/components/field/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/field/css+meta.json"); - }; - "/components/file-input": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/file-input/+meta.json"); - }; - "/components/file-input/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/file-input/accessibility+meta.json"); - }; - "/components/file-input/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/file-input/css+meta.json"); - }; - "/components/file-preview-card": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/file-preview-card/+meta.json"); - }; - "/components/file-preview-card/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/file-preview-card/accessibility+meta.json"); - }; - "/components/file-preview-card/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/file-preview-card/css+meta.json"); - }; - "/components/file-preview-card-group": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/file-preview-card-group/+meta.json"); - }; - "/components/file-preview-card-group/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/file-preview-card-group/accessibility+meta.json"); - }; - "/components/file-preview-card-group/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/file-preview-card-group/css+meta.json"); - }; - "/components/filter-chip": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/filter-chip/+meta.json"); - }; - "/components/filter-chip/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/filter-chip/accessibility+meta.json"); - }; - "/components/filter-chip/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/filter-chip/css+meta.json"); - }; - "/components/filter-input": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/filter-input/+meta.json"); - }; - "/components/filter-input/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/filter-input/accessibility+meta.json"); - }; - "/components/filter-input/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/filter-input/css+meta.json"); - }; - "/components/flag": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/flag/+meta.json"); - }; - "/components/flag/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/flag/accessibility+meta.json"); - }; - "/components/flag/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/flag/css+meta.json"); - }; - "/components/floating-label": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/floating-label/+meta.json"); - }; - "/components/floating-label/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/floating-label/accessibility+meta.json"); - }; - "/components/floating-label/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/floating-label/css+meta.json"); - }; - "/components/global": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/global/+meta.json"); - }; - "/components/global/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/global/accessibility+meta.json"); - }; - "/components/global/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/global/css+meta.json"); - }; - "/components/icon": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/icon/+meta.json"); - }; - "/components/icon/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/icon/accessibility+meta.json"); - }; - "/components/icon/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/icon/css+meta.json"); - }; - "/components/icon-button": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/icon-button/+meta.json"); - }; - "/components/icon-button/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/icon-button/accessibility+meta.json"); - }; - "/components/icon-button/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/icon-button/css+meta.json"); - }; - "/components/image-placeholder": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/image-placeholder/+meta.json"); - }; - "/components/image-placeholder/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/image-placeholder/accessibility+meta.json"); - }; - "/components/image-placeholder/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/image-placeholder/css+meta.json"); - }; - "/components/infotip": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/infotip/+meta.json"); - }; - "/components/infotip/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/infotip/accessibility+meta.json"); - }; - "/components/infotip/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/infotip/css+meta.json"); - }; - "/components/inline-notice": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/inline-notice/+meta.json"); - }; - "/components/inline-notice/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/inline-notice/accessibility+meta.json"); - }; - "/components/inline-notice/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/inline-notice/css+meta.json"); - }; - "/components/item-tile": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/item-tile/+meta.json"); - }; - "/components/item-tile/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/item-tile/accessibility+meta.json"); - }; - "/components/item-tile/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/item-tile/css+meta.json"); - }; - "/components/item-tile-group": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/item-tile-group/+meta.json"); - }; - "/components/item-tile-group/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/item-tile-group/accessibility+meta.json"); - }; - "/components/item-tile-group/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/item-tile-group/css+meta.json"); - }; - "/components/layout-grid": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/layout-grid/+meta.json"); - }; - "/components/layout-grid/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/layout-grid/accessibility+meta.json"); - }; - "/components/layout-grid/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/layout-grid/css+meta.json"); - }; - "/components/lightbox-dialog": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/lightbox-dialog/+meta.json"); - }; - "/components/lightbox-dialog/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/lightbox-dialog/accessibility+meta.json"); - }; - "/components/lightbox-dialog/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/lightbox-dialog/css+meta.json"); - }; - "/components/link": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/link/+meta.json"); - }; - "/components/link/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/link/accessibility+meta.json"); - }; - "/components/link/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/link/css+meta.json"); - }; - "/components/list": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/list/+meta.json"); - }; - "/components/list/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/list/accessibility+meta.json"); - }; - "/components/list/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/list/css+meta.json"); - }; - "/components/listbox": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/listbox/+meta.json"); - }; - "/components/listbox/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/listbox/accessibility+meta.json"); - }; - "/components/listbox/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/listbox/css+meta.json"); - }; - "/components/listbox-button": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/listbox-button/+meta.json"); - }; - "/components/listbox-button/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/listbox-button/accessibility+meta.json"); - }; - "/components/listbox-button/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/listbox-button/css+meta.json"); - }; - "/components/marketsans": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/marketsans/+meta.json"); - }; - "/components/marketsans/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/marketsans/accessibility+meta.json"); - }; - "/components/marketsans/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/marketsans/css+meta.json"); - }; - "/components/menu": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/menu/+meta.json"); - }; - "/components/menu/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/menu/accessibility+meta.json"); - }; - "/components/menu/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/menu/css+meta.json"); - }; - "/components/menu-button": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/menu-button/+meta.json"); - }; - "/components/menu-button/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/menu-button/accessibility+meta.json"); - }; - "/components/menu-button/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/menu-button/css+meta.json"); - }; - "/components/number-input": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/number-input/+meta.json"); - }; - "/components/number-input/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/number-input/accessibility+meta.json"); - }; - "/components/number-input/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/number-input/css+meta.json"); - }; - "/components/page-grid": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/page-grid/+meta.json"); - }; - "/components/page-grid/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/page-grid/accessibility+meta.json"); - }; - "/components/page-grid/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/page-grid/css+meta.json"); - }; - "/components/page-notice": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/page-notice/+meta.json"); - }; - "/components/page-notice/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/page-notice/accessibility+meta.json"); - }; - "/components/page-notice/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/page-notice/css+meta.json"); - }; - "/components/pagination": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/pagination/+meta.json"); - }; - "/components/pagination/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/pagination/accessibility+meta.json"); - }; - "/components/pagination/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/pagination/css+meta.json"); - }; - "/components/panel-dialog": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/panel-dialog/+meta.json"); - }; - "/components/panel-dialog/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/panel-dialog/accessibility+meta.json"); - }; - "/components/panel-dialog/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/panel-dialog/css+meta.json"); - }; - "/components/phone-input": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/phone-input/+meta.json"); - }; - "/components/phone-input/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/phone-input/accessibility+meta.json"); - }; - "/components/phone-input/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/phone-input/css+meta.json"); - }; - "/components/progress-bar": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/progress-bar/+meta.json"); - }; - "/components/progress-bar/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/progress-bar/accessibility+meta.json"); - }; - "/components/progress-bar/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/progress-bar/css+meta.json"); - }; - "/components/progress-bar-expressive": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/progress-bar-expressive/+meta.json"); - }; - "/components/progress-bar-expressive/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/progress-bar-expressive/accessibility+meta.json"); - }; - "/components/progress-bar-expressive/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/progress-bar-expressive/css+meta.json"); - }; - "/components/progress-spinner": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/progress-spinner/+meta.json"); - }; - "/components/progress-spinner/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/progress-spinner/accessibility+meta.json"); - }; - "/components/progress-spinner/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/progress-spinner/css+meta.json"); - }; - "/components/progress-stepper": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/progress-stepper/+meta.json"); - }; - "/components/progress-stepper/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/progress-stepper/accessibility+meta.json"); - }; - "/components/progress-stepper/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/progress-stepper/css+meta.json"); - }; - "/components/radio": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/radio/+meta.json"); - }; - "/components/radio/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/radio/accessibility+meta.json"); - }; - "/components/radio/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/radio/css+meta.json"); - }; - "/components/sass": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/sass/+meta.json"); - }; - "/components/section-notice": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/section-notice/+meta.json"); - }; - "/components/section-notice/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/section-notice/accessibility+meta.json"); - }; - "/components/section-notice/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/section-notice/css+meta.json"); - }; - "/components/section-title": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/section-title/+meta.json"); - }; - "/components/section-title/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/section-title/accessibility+meta.json"); - }; - "/components/section-title/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/section-title/css+meta.json"); - }; - "/components/segmented-buttons": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/segmented-buttons/+meta.json"); - }; - "/components/segmented-buttons/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/segmented-buttons/accessibility+meta.json"); - }; - "/components/segmented-buttons/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/segmented-buttons/css+meta.json"); - }; - "/components/select": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/select/+meta.json"); - }; - "/components/select/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/select/accessibility+meta.json"); - }; - "/components/select/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/select/css+meta.json"); - }; - "/components/selection-chip": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/selection-chip/+meta.json"); - }; - "/components/selection-chip/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/selection-chip/accessibility+meta.json"); - }; - "/components/signal": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/signal/+meta.json"); - }; - "/components/signal/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/signal/accessibility+meta.json"); - }; - "/components/signal/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/signal/css+meta.json"); - }; - "/components/skeleton": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/skeleton/+meta.json"); - }; - "/components/skeleton/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/skeleton/accessibility+meta.json"); - }; - "/components/skeleton/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/skeleton/css+meta.json"); - }; - "/components/snackbar-dialog": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/snackbar-dialog/+meta.json"); - }; - "/components/snackbar-dialog/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/snackbar-dialog/accessibility+meta.json"); - }; - "/components/snackbar-dialog/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/snackbar-dialog/css+meta.json"); - }; - "/components/split-button": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/split-button/+meta.json"); - }; - "/components/split-button/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/split-button/accessibility+meta.json"); - }; - "/components/split-button/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/split-button/css+meta.json"); - }; - "/components/star-rating": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/star-rating/+meta.json"); - }; - "/components/star-rating/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/star-rating/accessibility+meta.json"); - }; - "/components/star-rating/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/star-rating/css+meta.json"); - }; - "/components/star-rating-select": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/star-rating-select/+meta.json"); - }; - "/components/star-rating-select/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/star-rating-select/accessibility+meta.json"); - }; - "/components/star-rating-select/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/star-rating-select/css+meta.json"); - }; - "/components/switch": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/switch/+meta.json"); - }; - "/components/switch/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/switch/accessibility+meta.json"); - }; - "/components/switch/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/switch/css+meta.json"); - }; - "/components/table": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/table/+meta.json"); - }; - "/components/table/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/table/accessibility+meta.json"); - }; - "/components/table/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/table/css+meta.json"); - }; - "/components/tabs": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/tabs/+meta.json"); - }; - "/components/tabs/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/tabs/accessibility+meta.json"); - }; - "/components/tabs/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/tabs/css+meta.json"); - }; - "/components/textbox": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/textbox/+meta.json"); - }; - "/components/textbox/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/textbox/accessibility+meta.json"); - }; - "/components/textbox/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/textbox/css+meta.json"); - }; - "/components/toast-dialog": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/toast-dialog/+meta.json"); - }; - "/components/toast-dialog/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/toast-dialog/accessibility+meta.json"); - }; - "/components/toast-dialog/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/toast-dialog/css+meta.json"); - }; - "/components/toggle-button": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/toggle-button/+meta.json"); - }; - "/components/toggle-button/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/toggle-button/accessibility+meta.json"); - }; - "/components/toggle-button/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/toggle-button/css+meta.json"); - }; - "/components/toggle-button-group": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/toggle-button-group/+meta.json"); - }; - "/components/toggle-button-group/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/toggle-button-group/accessibility+meta.json"); - }; - "/components/toggle-button-group/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/toggle-button-group/css+meta.json"); - }; - "/components/tokens": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/tokens/+meta.json"); - }; - "/components/tokens/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/tokens/css+meta.json"); - }; - "/components/tooltip": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/tooltip/+meta.json"); - }; - "/components/tooltip/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/tooltip/accessibility+meta.json"); - }; - "/components/tooltip/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/tooltip/css+meta.json"); - }; - "/components/tourtip": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/tourtip/+meta.json"); - }; - "/components/tourtip/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/tourtip/accessibility+meta.json"); - }; - "/components/tourtip/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/tourtip/css+meta.json"); - }; - "/components/typography": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/typography/+meta.json"); - }; - "/components/typography/accessibility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/typography/accessibility+meta.json"); - }; - "/components/typography/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/typography/css+meta.json"); - }; - "/components/utility": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/utility/+meta.json"); - }; - "/components/utility/css": { - verb: "get"; - meta: typeof import("../src/routes/_index/components/utility/css+meta.json"); - }; - "/guides": { - verb: "get"; - meta: typeof import("../src/routes/_index/guides/+meta.json"); - }; - "/guides/animation": { - verb: "get"; - meta: typeof import("../src/routes/_index/guides/animation+meta.json"); - }; - "/guides/page-grid": { - verb: "get"; - meta: typeof import("../src/routes/_index/guides/page-grid+meta.json"); - }; - "/guides/skeleton": { - verb: "get"; - meta: typeof import("../src/routes/_index/guides/skeleton+meta.json"); - }; - "/guides/theming": { - verb: "get"; - meta: typeof import("../src/routes/_index/guides/theming+meta.json"); - }; - "/guide-examples/page-grid-blog-stretchy-nested": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/page-grid-blog-stretchy-nested/+meta.json"); - }; - "/guide-examples/page-grid-blog-stretchy-subgrid": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/page-grid-blog-stretchy-subgrid/+meta.json"); - }; - "/guide-examples/page-grid-pricing": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/page-grid-pricing/+meta.json"); - }; - "/guide-examples/skeleton-examples/buffered/example-1": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/skeleton-examples/buffered/example-1/+meta.json"); - }; - "/guide-examples/skeleton-examples/csr/example-1": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/skeleton-examples/csr/example-1/+meta.json"); - }; - "/guide-examples/skeleton-examples/csr/example-2": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/skeleton-examples/csr/example-2/+meta.json"); - }; - "/guide-examples/skeleton-examples/csr/example-3": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/skeleton-examples/csr/example-3/+meta.json"); - }; - "/guide-examples/skeleton-examples/csr/example-4": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/skeleton-examples/csr/example-4/+meta.json"); - }; - "/guide-examples/skeleton-examples/in-order/example-1a": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/skeleton-examples/in-order/example-1a/+meta.json"); - }; - "/guide-examples/skeleton-examples/in-order/example-1b": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/skeleton-examples/in-order/example-1b/+meta.json"); - }; - "/guide-examples/skeleton-examples/in-order/example-2a": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/skeleton-examples/in-order/example-2a/+meta.json"); - }; - "/guide-examples/skeleton-examples/in-order/example-2b": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/skeleton-examples/in-order/example-2b/+meta.json"); - }; - "/guide-examples/skeleton-examples/out-of-order/example-1": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/skeleton-examples/out-of-order/example-1/+meta.json"); - }; - "/guide-examples/skeleton-examples/out-of-order/example-2": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/skeleton-examples/out-of-order/example-2/+meta.json"); - }; - "/guide-examples/skeleton-examples/out-of-order/example-3": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/skeleton-examples/out-of-order/example-3/+meta.json"); - }; - "/guide-examples/skeleton-examples/out-of-order/example-4": { - verb: "get"; - meta: typeof import("../src/routes/guide-examples/skeleton-examples/out-of-order/example-4/+meta.json"); - }; - }; - }> {} + interface AppData extends Run.DefineApp<{ + routes: { + "/": { verb: "get"; meta: typeof import("../src/routes/_index/+meta.json"); }; + "/evo-css-components": { verb: "get"; meta: typeof import("../src/routes/_index/evo-css-components+meta.json"); }; + "/evo-marko-components": { verb: "get"; meta: typeof import("../src/routes/_index/evo-marko-components+meta.json"); }; + "/evo-react-components": { verb: "get"; meta: typeof import("../src/routes/_index/evo-react-components+meta.json"); }; + "/sitemap": { verb: "get"; meta: typeof import("../src/routes/_index/sitemap+meta.json"); }; + "/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/+meta.json"); }; + "/accessibility/anti-patterns": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/anti-patterns/+meta.json"); }; + "/accessibility/anti-patterns/disabling-pinch-to-zoom": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/anti-patterns/disabling-pinch-to-zoom+meta.json"); }; + "/accessibility/anti-patterns/hand-cursor-on-buttons": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/anti-patterns/hand-cursor-on-buttons+meta.json"); }; + "/accessibility/anti-patterns/javascript-href": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/anti-patterns/javascript-href+meta.json"); }; + "/accessibility/anti-patterns/layout-table": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/anti-patterns/layout-table+meta.json"); }; + "/accessibility/anti-patterns/non-interactive-hover": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/anti-patterns/non-interactive-hover+meta.json"); }; + "/accessibility/anti-patterns/open-new-window": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/anti-patterns/open-new-window+meta.json"); }; + "/accessibility/anti-patterns/setting-focus-on-page-load": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/anti-patterns/setting-focus-on-page-load+meta.json"); }; + "/accessibility/anti-patterns/tabindex-itis": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/anti-patterns/tabindex-itis+meta.json"); }; + "/accessibility/anti-patterns/title-tooltip": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/anti-patterns/title-tooltip+meta.json"); }; + "/accessibility/misc": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/misc/+meta.json"); }; + "/accessibility/misc/aria-essentials": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/misc/aria-essentials+meta.json"); }; + "/accessibility/misc/component-naming-scheme": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/misc/component-naming-scheme+meta.json"); }; + "/accessibility/misc/faq": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/misc/faq+meta.json"); }; + "/accessibility/patterns": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/+meta.json"); }; + "/accessibility/patterns/description-list": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/description-list+meta.json"); }; + "/accessibility/patterns/fake-menu-button": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/fake-menu-button+meta.json"); }; + "/accessibility/patterns/fake-tabs": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/fake-tabs+meta.json"); }; + "/accessibility/patterns/footnote": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/footnote+meta.json"); }; + "/accessibility/patterns/form": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/form+meta.json"); }; + "/accessibility/patterns/form-validation": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/form-validation+meta.json"); }; + "/accessibility/patterns/heading": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/heading+meta.json"); }; + "/accessibility/patterns/image": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/image+meta.json"); }; + "/accessibility/patterns/input-dialog": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/input-dialog+meta.json"); }; + "/accessibility/patterns/input-meter": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/input-meter+meta.json"); }; + "/accessibility/patterns/input-validation": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/input-validation+meta.json"); }; + "/accessibility/patterns/popover": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/popover+meta.json"); }; + "/accessibility/patterns/pulldown-list": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/pulldown-list+meta.json"); }; + "/accessibility/patterns/region": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/region+meta.json"); }; + "/accessibility/patterns/skip-navigation": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/skip-navigation+meta.json"); }; + "/accessibility/patterns/table-cell": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/table-cell+meta.json"); }; + "/accessibility/patterns/time": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/patterns/time+meta.json"); }; + "/accessibility/techniques": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/techniques/+meta.json"); }; + "/accessibility/techniques/active-descendant": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/techniques/active-descendant+meta.json"); }; + "/accessibility/techniques/alternative-text": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/techniques/alternative-text+meta.json"); }; + "/accessibility/techniques/ambiguous-label": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/techniques/ambiguous-label+meta.json"); }; + "/accessibility/techniques/background-icon": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/techniques/background-icon+meta.json"); }; + "/accessibility/techniques/keyboard-interface": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/techniques/keyboard-interface+meta.json"); }; + "/accessibility/techniques/keyboard-trap": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/techniques/keyboard-trap+meta.json"); }; + "/accessibility/techniques/live-region": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/techniques/live-region+meta.json"); }; + "/accessibility/techniques/offscreen-text": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/techniques/offscreen-text+meta.json"); }; + "/accessibility/techniques/roving-tabindex": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/techniques/roving-tabindex+meta.json"); }; + "/accessibility/techniques/skip-to-main-content": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/techniques/skip-to-main-content+meta.json"); }; + "/accessibility/testing": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/testing/+meta.json"); }; + "/accessibility/testing/checklist": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/testing/checklist+meta.json"); }; + "/accessibility/testing/known-issues": { verb: "get"; meta: typeof import("../src/routes/_index/accessibility/testing/known-issues+meta.json"); }; + "/components": { verb: "get"; meta: typeof import("../src/routes/_index/components/+meta.json"); }; + "/components/accordion": { verb: "get"; meta: typeof import("../src/routes/_index/components/accordion/+meta.json"); }; + "/components/accordion/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/accordion/accessibility+meta.json"); }; + "/components/accordion/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/accordion/css+meta.json"); }; + "/components/alert-dialog": { verb: "get"; meta: typeof import("../src/routes/_index/components/alert-dialog/+meta.json"); }; + "/components/alert-dialog/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/alert-dialog/accessibility+meta.json"); }; + "/components/alert-dialog/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/alert-dialog/css+meta.json"); }; + "/components/avatar": { verb: "get"; meta: typeof import("../src/routes/_index/components/avatar/+meta.json"); }; + "/components/avatar/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/avatar/accessibility+meta.json"); }; + "/components/avatar/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/avatar/css+meta.json"); }; + "/components/badge": { verb: "get"; meta: typeof import("../src/routes/_index/components/badge/+meta.json"); }; + "/components/badge/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/badge/accessibility+meta.json"); }; + "/components/badge/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/badge/css+meta.json"); }; + "/components/breadcrumbs": { verb: "get"; meta: typeof import("../src/routes/_index/components/breadcrumbs/+meta.json"); }; + "/components/breadcrumbs/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/breadcrumbs/accessibility+meta.json"); }; + "/components/breadcrumbs/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/breadcrumbs/css+meta.json"); }; + "/components/button": { verb: "get"; meta: typeof import("../src/routes/_index/components/button/+meta.json"); }; + "/components/button/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/button/accessibility+meta.json"); }; + "/components/button/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/button/css+meta.json"); }; + "/components/button/marko": { verb: "get"; meta: typeof import("../src/routes/_index/components/button/marko+meta.json"); }; + "/components/button/react": { verb: "get"; meta: typeof import("../src/routes/_index/components/button/react+meta.json"); }; + "/components/calendar": { verb: "get"; meta: typeof import("../src/routes/_index/components/calendar/+meta.json"); }; + "/components/calendar/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/calendar/accessibility+meta.json"); }; + "/components/calendar/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/calendar/css+meta.json"); }; + "/components/card": { verb: "get"; meta: typeof import("../src/routes/_index/components/card/+meta.json"); }; + "/components/card/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/card/accessibility+meta.json"); }; + "/components/card/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/card/css+meta.json"); }; + "/components/carousel": { verb: "get"; meta: typeof import("../src/routes/_index/components/carousel/+meta.json"); }; + "/components/carousel/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/carousel/accessibility+meta.json"); }; + "/components/carousel/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/carousel/css+meta.json"); }; + "/components/ccd": { verb: "get"; meta: typeof import("../src/routes/_index/components/ccd/+meta.json"); }; + "/components/ccd/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/ccd/accessibility+meta.json"); }; + "/components/ccd/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/ccd/css+meta.json"); }; + "/components/chart-legend": { verb: "get"; meta: typeof import("../src/routes/_index/components/chart-legend/+meta.json"); }; + "/components/chart-legend/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/chart-legend/accessibility+meta.json"); }; + "/components/chart-legend/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/chart-legend/css+meta.json"); }; + "/components/checkbox": { verb: "get"; meta: typeof import("../src/routes/_index/components/checkbox/+meta.json"); }; + "/components/checkbox/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/checkbox/accessibility+meta.json"); }; + "/components/checkbox/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/checkbox/css+meta.json"); }; + "/components/chip": { verb: "get"; meta: typeof import("../src/routes/_index/components/chip/+meta.json"); }; + "/components/chip/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/chip/accessibility+meta.json"); }; + "/components/chip/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/chip/css+meta.json"); }; + "/components/chips-combobox": { verb: "get"; meta: typeof import("../src/routes/_index/components/chips-combobox/+meta.json"); }; + "/components/chips-combobox/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/chips-combobox/accessibility+meta.json"); }; + "/components/chips-combobox/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/chips-combobox/css+meta.json"); }; + "/components/combobox": { verb: "get"; meta: typeof import("../src/routes/_index/components/combobox/+meta.json"); }; + "/components/combobox/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/combobox/accessibility+meta.json"); }; + "/components/combobox/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/combobox/css+meta.json"); }; + "/components/confirm-dialog": { verb: "get"; meta: typeof import("../src/routes/_index/components/confirm-dialog/+meta.json"); }; + "/components/confirm-dialog/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/confirm-dialog/accessibility+meta.json"); }; + "/components/confirm-dialog/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/confirm-dialog/css+meta.json"); }; + "/components/date-textbox": { verb: "get"; meta: typeof import("../src/routes/_index/components/date-textbox/+meta.json"); }; + "/components/date-textbox/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/date-textbox/accessibility+meta.json"); }; + "/components/date-textbox/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/date-textbox/css+meta.json"); }; + "/components/details": { verb: "get"; meta: typeof import("../src/routes/_index/components/details/+meta.json"); }; + "/components/details/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/details/accessibility+meta.json"); }; + "/components/details/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/details/css+meta.json"); }; + "/components/dialog": { verb: "get"; meta: typeof import("../src/routes/_index/components/dialog/+meta.json"); }; + "/components/dialog/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/dialog/accessibility+meta.json"); }; + "/components/dialog/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/dialog/css+meta.json"); }; + "/components/dialog/js": { verb: "get"; meta: typeof import("../src/routes/_index/components/dialog/js+meta.json"); }; + "/components/donut-chart": { verb: "get"; meta: typeof import("../src/routes/_index/components/donut-chart/+meta.json"); }; + "/components/donut-chart/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/donut-chart/accessibility+meta.json"); }; + "/components/donut-chart/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/donut-chart/css+meta.json"); }; + "/components/education-notice": { verb: "get"; meta: typeof import("../src/routes/_index/components/education-notice/+meta.json"); }; + "/components/education-notice/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/education-notice/accessibility+meta.json"); }; + "/components/education-notice/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/education-notice/css+meta.json"); }; + "/components/eek": { verb: "get"; meta: typeof import("../src/routes/_index/components/eek/+meta.json"); }; + "/components/eek/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/eek/accessibility+meta.json"); }; + "/components/eek/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/eek/css+meta.json"); }; + "/components/field": { verb: "get"; meta: typeof import("../src/routes/_index/components/field/+meta.json"); }; + "/components/field/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/field/accessibility+meta.json"); }; + "/components/field/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/field/css+meta.json"); }; + "/components/file-input": { verb: "get"; meta: typeof import("../src/routes/_index/components/file-input/+meta.json"); }; + "/components/file-input/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/file-input/accessibility+meta.json"); }; + "/components/file-input/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/file-input/css+meta.json"); }; + "/components/file-preview-card": { verb: "get"; meta: typeof import("../src/routes/_index/components/file-preview-card/+meta.json"); }; + "/components/file-preview-card/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/file-preview-card/accessibility+meta.json"); }; + "/components/file-preview-card/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/file-preview-card/css+meta.json"); }; + "/components/file-preview-card-group": { verb: "get"; meta: typeof import("../src/routes/_index/components/file-preview-card-group/+meta.json"); }; + "/components/file-preview-card-group/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/file-preview-card-group/accessibility+meta.json"); }; + "/components/file-preview-card-group/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/file-preview-card-group/css+meta.json"); }; + "/components/filter-chip": { verb: "get"; meta: typeof import("../src/routes/_index/components/filter-chip/+meta.json"); }; + "/components/filter-chip/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/filter-chip/accessibility+meta.json"); }; + "/components/filter-chip/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/filter-chip/css+meta.json"); }; + "/components/filter-input": { verb: "get"; meta: typeof import("../src/routes/_index/components/filter-input/+meta.json"); }; + "/components/filter-input/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/filter-input/accessibility+meta.json"); }; + "/components/filter-input/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/filter-input/css+meta.json"); }; + "/components/flag": { verb: "get"; meta: typeof import("../src/routes/_index/components/flag/+meta.json"); }; + "/components/flag/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/flag/accessibility+meta.json"); }; + "/components/flag/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/flag/css+meta.json"); }; + "/components/floating-label": { verb: "get"; meta: typeof import("../src/routes/_index/components/floating-label/+meta.json"); }; + "/components/floating-label/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/floating-label/accessibility+meta.json"); }; + "/components/floating-label/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/floating-label/css+meta.json"); }; + "/components/global": { verb: "get"; meta: typeof import("../src/routes/_index/components/global/+meta.json"); }; + "/components/global/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/global/accessibility+meta.json"); }; + "/components/global/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/global/css+meta.json"); }; + "/components/icon": { verb: "get"; meta: typeof import("../src/routes/_index/components/icon/+meta.json"); }; + "/components/icon/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/icon/accessibility+meta.json"); }; + "/components/icon/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/icon/css+meta.json"); }; + "/components/icon-button": { verb: "get"; meta: typeof import("../src/routes/_index/components/icon-button/+meta.json"); }; + "/components/icon-button/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/icon-button/accessibility+meta.json"); }; + "/components/icon-button/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/icon-button/css+meta.json"); }; + "/components/image-placeholder": { verb: "get"; meta: typeof import("../src/routes/_index/components/image-placeholder/+meta.json"); }; + "/components/image-placeholder/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/image-placeholder/accessibility+meta.json"); }; + "/components/image-placeholder/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/image-placeholder/css+meta.json"); }; + "/components/infotip": { verb: "get"; meta: typeof import("../src/routes/_index/components/infotip/+meta.json"); }; + "/components/infotip/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/infotip/accessibility+meta.json"); }; + "/components/infotip/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/infotip/css+meta.json"); }; + "/components/inline-notice": { verb: "get"; meta: typeof import("../src/routes/_index/components/inline-notice/+meta.json"); }; + "/components/inline-notice/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/inline-notice/accessibility+meta.json"); }; + "/components/inline-notice/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/inline-notice/css+meta.json"); }; + "/components/item-tile": { verb: "get"; meta: typeof import("../src/routes/_index/components/item-tile/+meta.json"); }; + "/components/item-tile/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/item-tile/accessibility+meta.json"); }; + "/components/item-tile/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/item-tile/css+meta.json"); }; + "/components/item-tile-group": { verb: "get"; meta: typeof import("../src/routes/_index/components/item-tile-group/+meta.json"); }; + "/components/item-tile-group/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/item-tile-group/accessibility+meta.json"); }; + "/components/item-tile-group/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/item-tile-group/css+meta.json"); }; + "/components/layout-grid": { verb: "get"; meta: typeof import("../src/routes/_index/components/layout-grid/+meta.json"); }; + "/components/layout-grid/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/layout-grid/accessibility+meta.json"); }; + "/components/layout-grid/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/layout-grid/css+meta.json"); }; + "/components/lightbox-dialog": { verb: "get"; meta: typeof import("../src/routes/_index/components/lightbox-dialog/+meta.json"); }; + "/components/lightbox-dialog/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/lightbox-dialog/accessibility+meta.json"); }; + "/components/lightbox-dialog/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/lightbox-dialog/css+meta.json"); }; + "/components/link": { verb: "get"; meta: typeof import("../src/routes/_index/components/link/+meta.json"); }; + "/components/link/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/link/accessibility+meta.json"); }; + "/components/link/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/link/css+meta.json"); }; + "/components/list": { verb: "get"; meta: typeof import("../src/routes/_index/components/list/+meta.json"); }; + "/components/list/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/list/accessibility+meta.json"); }; + "/components/list/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/list/css+meta.json"); }; + "/components/listbox": { verb: "get"; meta: typeof import("../src/routes/_index/components/listbox/+meta.json"); }; + "/components/listbox/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/listbox/accessibility+meta.json"); }; + "/components/listbox/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/listbox/css+meta.json"); }; + "/components/listbox-button": { verb: "get"; meta: typeof import("../src/routes/_index/components/listbox-button/+meta.json"); }; + "/components/listbox-button/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/listbox-button/accessibility+meta.json"); }; + "/components/listbox-button/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/listbox-button/css+meta.json"); }; + "/components/marketsans": { verb: "get"; meta: typeof import("../src/routes/_index/components/marketsans/+meta.json"); }; + "/components/marketsans/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/marketsans/accessibility+meta.json"); }; + "/components/marketsans/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/marketsans/css+meta.json"); }; + "/components/menu": { verb: "get"; meta: typeof import("../src/routes/_index/components/menu/+meta.json"); }; + "/components/menu/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/menu/accessibility+meta.json"); }; + "/components/menu/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/menu/css+meta.json"); }; + "/components/menu-button": { verb: "get"; meta: typeof import("../src/routes/_index/components/menu-button/+meta.json"); }; + "/components/menu-button/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/menu-button/accessibility+meta.json"); }; + "/components/menu-button/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/menu-button/css+meta.json"); }; + "/components/number-input": { verb: "get"; meta: typeof import("../src/routes/_index/components/number-input/+meta.json"); }; + "/components/number-input/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/number-input/accessibility+meta.json"); }; + "/components/number-input/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/number-input/css+meta.json"); }; + "/components/page-grid": { verb: "get"; meta: typeof import("../src/routes/_index/components/page-grid/+meta.json"); }; + "/components/page-grid/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/page-grid/accessibility+meta.json"); }; + "/components/page-grid/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/page-grid/css+meta.json"); }; + "/components/page-notice": { verb: "get"; meta: typeof import("../src/routes/_index/components/page-notice/+meta.json"); }; + "/components/page-notice/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/page-notice/accessibility+meta.json"); }; + "/components/page-notice/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/page-notice/css+meta.json"); }; + "/components/pagination": { verb: "get"; meta: typeof import("../src/routes/_index/components/pagination/+meta.json"); }; + "/components/pagination/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/pagination/accessibility+meta.json"); }; + "/components/pagination/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/pagination/css+meta.json"); }; + "/components/panel-dialog": { verb: "get"; meta: typeof import("../src/routes/_index/components/panel-dialog/+meta.json"); }; + "/components/panel-dialog/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/panel-dialog/accessibility+meta.json"); }; + "/components/panel-dialog/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/panel-dialog/css+meta.json"); }; + "/components/phone-input": { verb: "get"; meta: typeof import("../src/routes/_index/components/phone-input/+meta.json"); }; + "/components/phone-input/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/phone-input/accessibility+meta.json"); }; + "/components/phone-input/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/phone-input/css+meta.json"); }; + "/components/progress-bar": { verb: "get"; meta: typeof import("../src/routes/_index/components/progress-bar/+meta.json"); }; + "/components/progress-bar/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/progress-bar/accessibility+meta.json"); }; + "/components/progress-bar/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/progress-bar/css+meta.json"); }; + "/components/progress-bar-expressive": { verb: "get"; meta: typeof import("../src/routes/_index/components/progress-bar-expressive/+meta.json"); }; + "/components/progress-bar-expressive/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/progress-bar-expressive/accessibility+meta.json"); }; + "/components/progress-bar-expressive/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/progress-bar-expressive/css+meta.json"); }; + "/components/progress-spinner": { verb: "get"; meta: typeof import("../src/routes/_index/components/progress-spinner/+meta.json"); }; + "/components/progress-spinner/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/progress-spinner/accessibility+meta.json"); }; + "/components/progress-spinner/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/progress-spinner/css+meta.json"); }; + "/components/progress-stepper": { verb: "get"; meta: typeof import("../src/routes/_index/components/progress-stepper/+meta.json"); }; + "/components/progress-stepper/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/progress-stepper/accessibility+meta.json"); }; + "/components/progress-stepper/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/progress-stepper/css+meta.json"); }; + "/components/radio": { verb: "get"; meta: typeof import("../src/routes/_index/components/radio/+meta.json"); }; + "/components/radio/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/radio/accessibility+meta.json"); }; + "/components/radio/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/radio/css+meta.json"); }; + "/components/sass": { verb: "get"; meta: typeof import("../src/routes/_index/components/sass/+meta.json"); }; + "/components/section-notice": { verb: "get"; meta: typeof import("../src/routes/_index/components/section-notice/+meta.json"); }; + "/components/section-notice/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/section-notice/accessibility+meta.json"); }; + "/components/section-notice/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/section-notice/css+meta.json"); }; + "/components/section-title": { verb: "get"; meta: typeof import("../src/routes/_index/components/section-title/+meta.json"); }; + "/components/section-title/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/section-title/accessibility+meta.json"); }; + "/components/section-title/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/section-title/css+meta.json"); }; + "/components/segmented-buttons": { verb: "get"; meta: typeof import("../src/routes/_index/components/segmented-buttons/+meta.json"); }; + "/components/segmented-buttons/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/segmented-buttons/accessibility+meta.json"); }; + "/components/segmented-buttons/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/segmented-buttons/css+meta.json"); }; + "/components/select": { verb: "get"; meta: typeof import("../src/routes/_index/components/select/+meta.json"); }; + "/components/select/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/select/accessibility+meta.json"); }; + "/components/select/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/select/css+meta.json"); }; + "/components/selection-chip": { verb: "get"; meta: typeof import("../src/routes/_index/components/selection-chip/+meta.json"); }; + "/components/selection-chip/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/selection-chip/accessibility+meta.json"); }; + "/components/signal": { verb: "get"; meta: typeof import("../src/routes/_index/components/signal/+meta.json"); }; + "/components/signal/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/signal/accessibility+meta.json"); }; + "/components/signal/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/signal/css+meta.json"); }; + "/components/skeleton": { verb: "get"; meta: typeof import("../src/routes/_index/components/skeleton/+meta.json"); }; + "/components/skeleton/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/skeleton/accessibility+meta.json"); }; + "/components/skeleton/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/skeleton/css+meta.json"); }; + "/components/snackbar-dialog": { verb: "get"; meta: typeof import("../src/routes/_index/components/snackbar-dialog/+meta.json"); }; + "/components/snackbar-dialog/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/snackbar-dialog/accessibility+meta.json"); }; + "/components/snackbar-dialog/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/snackbar-dialog/css+meta.json"); }; + "/components/split-button": { verb: "get"; meta: typeof import("../src/routes/_index/components/split-button/+meta.json"); }; + "/components/split-button/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/split-button/accessibility+meta.json"); }; + "/components/split-button/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/split-button/css+meta.json"); }; + "/components/star-rating": { verb: "get"; meta: typeof import("../src/routes/_index/components/star-rating/+meta.json"); }; + "/components/star-rating/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/star-rating/accessibility+meta.json"); }; + "/components/star-rating/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/star-rating/css+meta.json"); }; + "/components/star-rating-select": { verb: "get"; meta: typeof import("../src/routes/_index/components/star-rating-select/+meta.json"); }; + "/components/star-rating-select/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/star-rating-select/accessibility+meta.json"); }; + "/components/star-rating-select/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/star-rating-select/css+meta.json"); }; + "/components/switch": { verb: "get"; meta: typeof import("../src/routes/_index/components/switch/+meta.json"); }; + "/components/switch/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/switch/accessibility+meta.json"); }; + "/components/switch/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/switch/css+meta.json"); }; + "/components/table": { verb: "get"; meta: typeof import("../src/routes/_index/components/table/+meta.json"); }; + "/components/table/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/table/accessibility+meta.json"); }; + "/components/table/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/table/css+meta.json"); }; + "/components/tabs": { verb: "get"; meta: typeof import("../src/routes/_index/components/tabs/+meta.json"); }; + "/components/tabs/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/tabs/accessibility+meta.json"); }; + "/components/tabs/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/tabs/css+meta.json"); }; + "/components/textbox": { verb: "get"; meta: typeof import("../src/routes/_index/components/textbox/+meta.json"); }; + "/components/textbox/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/textbox/accessibility+meta.json"); }; + "/components/textbox/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/textbox/css+meta.json"); }; + "/components/toast-dialog": { verb: "get"; meta: typeof import("../src/routes/_index/components/toast-dialog/+meta.json"); }; + "/components/toast-dialog/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/toast-dialog/accessibility+meta.json"); }; + "/components/toast-dialog/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/toast-dialog/css+meta.json"); }; + "/components/toggle-button": { verb: "get"; meta: typeof import("../src/routes/_index/components/toggle-button/+meta.json"); }; + "/components/toggle-button/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/toggle-button/accessibility+meta.json"); }; + "/components/toggle-button/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/toggle-button/css+meta.json"); }; + "/components/toggle-button-group": { verb: "get"; meta: typeof import("../src/routes/_index/components/toggle-button-group/+meta.json"); }; + "/components/toggle-button-group/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/toggle-button-group/accessibility+meta.json"); }; + "/components/toggle-button-group/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/toggle-button-group/css+meta.json"); }; + "/components/tokens": { verb: "get"; meta: typeof import("../src/routes/_index/components/tokens/+meta.json"); }; + "/components/tokens/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/tokens/css+meta.json"); }; + "/components/tooltip": { verb: "get"; meta: typeof import("../src/routes/_index/components/tooltip/+meta.json"); }; + "/components/tooltip/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/tooltip/accessibility+meta.json"); }; + "/components/tooltip/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/tooltip/css+meta.json"); }; + "/components/tourtip": { verb: "get"; meta: typeof import("../src/routes/_index/components/tourtip/+meta.json"); }; + "/components/tourtip/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/tourtip/accessibility+meta.json"); }; + "/components/tourtip/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/tourtip/css+meta.json"); }; + "/components/typography": { verb: "get"; meta: typeof import("../src/routes/_index/components/typography/+meta.json"); }; + "/components/typography/accessibility": { verb: "get"; meta: typeof import("../src/routes/_index/components/typography/accessibility+meta.json"); }; + "/components/typography/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/typography/css+meta.json"); }; + "/components/utility": { verb: "get"; meta: typeof import("../src/routes/_index/components/utility/+meta.json"); }; + "/components/utility/css": { verb: "get"; meta: typeof import("../src/routes/_index/components/utility/css+meta.json"); }; + "/guides": { verb: "get"; meta: typeof import("../src/routes/_index/guides/+meta.json"); }; + "/guides/animation": { verb: "get"; meta: typeof import("../src/routes/_index/guides/animation+meta.json"); }; + "/guides/page-grid": { verb: "get"; meta: typeof import("../src/routes/_index/guides/page-grid+meta.json"); }; + "/guides/skeleton": { verb: "get"; meta: typeof import("../src/routes/_index/guides/skeleton+meta.json"); }; + "/guides/theming": { verb: "get"; meta: typeof import("../src/routes/_index/guides/theming+meta.json"); }; + "/guide-examples/page-grid-blog-stretchy-nested": { verb: "get"; meta: typeof import("../src/routes/guide-examples/page-grid-blog-stretchy-nested/+meta.json"); }; + "/guide-examples/page-grid-blog-stretchy-subgrid": { verb: "get"; meta: typeof import("../src/routes/guide-examples/page-grid-blog-stretchy-subgrid/+meta.json"); }; + "/guide-examples/page-grid-pricing": { verb: "get"; meta: typeof import("../src/routes/guide-examples/page-grid-pricing/+meta.json"); }; + "/guide-examples/skeleton-examples/buffered/example-1": { verb: "get"; meta: typeof import("../src/routes/guide-examples/skeleton-examples/buffered/example-1/+meta.json"); }; + "/guide-examples/skeleton-examples/csr/example-1": { verb: "get"; meta: typeof import("../src/routes/guide-examples/skeleton-examples/csr/example-1/+meta.json"); }; + "/guide-examples/skeleton-examples/csr/example-2": { verb: "get"; meta: typeof import("../src/routes/guide-examples/skeleton-examples/csr/example-2/+meta.json"); }; + "/guide-examples/skeleton-examples/csr/example-3": { verb: "get"; meta: typeof import("../src/routes/guide-examples/skeleton-examples/csr/example-3/+meta.json"); }; + "/guide-examples/skeleton-examples/csr/example-4": { verb: "get"; meta: typeof import("../src/routes/guide-examples/skeleton-examples/csr/example-4/+meta.json"); }; + "/guide-examples/skeleton-examples/in-order/example-1a": { verb: "get"; meta: typeof import("../src/routes/guide-examples/skeleton-examples/in-order/example-1a/+meta.json"); }; + "/guide-examples/skeleton-examples/in-order/example-1b": { verb: "get"; meta: typeof import("../src/routes/guide-examples/skeleton-examples/in-order/example-1b/+meta.json"); }; + "/guide-examples/skeleton-examples/in-order/example-2a": { verb: "get"; meta: typeof import("../src/routes/guide-examples/skeleton-examples/in-order/example-2a/+meta.json"); }; + "/guide-examples/skeleton-examples/in-order/example-2b": { verb: "get"; meta: typeof import("../src/routes/guide-examples/skeleton-examples/in-order/example-2b/+meta.json"); }; + "/guide-examples/skeleton-examples/out-of-order/example-1": { verb: "get"; meta: typeof import("../src/routes/guide-examples/skeleton-examples/out-of-order/example-1/+meta.json"); }; + "/guide-examples/skeleton-examples/out-of-order/example-2": { verb: "get"; meta: typeof import("../src/routes/guide-examples/skeleton-examples/out-of-order/example-2/+meta.json"); }; + "/guide-examples/skeleton-examples/out-of-order/example-3": { verb: "get"; meta: typeof import("../src/routes/guide-examples/skeleton-examples/out-of-order/example-3/+meta.json"); }; + "/guide-examples/skeleton-examples/out-of-order/example-4": { verb: "get"; meta: typeof import("../src/routes/guide-examples/skeleton-examples/out-of-order/example-4/+meta.json"); }; + } + }> {} } declare module "../src/routes/_index/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1318,17 +345,7 @@ declare module "../src/routes/_index/+page.marko" { declare module "../src/routes/_index/evo-css-components+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/evo-css-components"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1339,17 +356,7 @@ declare module "../src/routes/_index/evo-css-components+page.marko" { declare module "../src/routes/_index/evo-marko-components+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/evo-marko-components"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1360,17 +367,7 @@ declare module "../src/routes/_index/evo-marko-components+page.marko" { declare module "../src/routes/_index/evo-react-components+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/evo-react-components"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1381,17 +378,7 @@ declare module "../src/routes/_index/evo-react-components+page.marko" { declare module "../src/routes/_index/sitemap+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/sitemap"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1402,17 +389,7 @@ declare module "../src/routes/_index/sitemap+page.marko" { declare module "../src/routes/_index/accessibility/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1423,17 +400,7 @@ declare module "../src/routes/_index/accessibility/+page.marko" { declare module "../src/routes/_index/accessibility/anti-patterns/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/anti-patterns"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1444,19 +411,8 @@ declare module "../src/routes/_index/accessibility/anti-patterns/+page.marko" { declare module "../src/routes/_index/accessibility/anti-patterns/disabling-pinch-to-zoom+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/accessibility/anti-patterns/disabling-pinch-to-zoom"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/accessibility/anti-patterns/disabling-pinch-to-zoom"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -1466,19 +422,8 @@ declare module "../src/routes/_index/accessibility/anti-patterns/disabling-pinch declare module "../src/routes/_index/accessibility/anti-patterns/hand-cursor-on-buttons+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/accessibility/anti-patterns/hand-cursor-on-buttons"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/accessibility/anti-patterns/hand-cursor-on-buttons"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -1488,19 +433,8 @@ declare module "../src/routes/_index/accessibility/anti-patterns/hand-cursor-on- declare module "../src/routes/_index/accessibility/anti-patterns/javascript-href+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/accessibility/anti-patterns/javascript-href"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/accessibility/anti-patterns/javascript-href"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -1510,17 +444,7 @@ declare module "../src/routes/_index/accessibility/anti-patterns/javascript-href declare module "../src/routes/_index/accessibility/anti-patterns/layout-table+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/anti-patterns/layout-table"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1531,19 +455,8 @@ declare module "../src/routes/_index/accessibility/anti-patterns/layout-table+pa declare module "../src/routes/_index/accessibility/anti-patterns/non-interactive-hover+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/accessibility/anti-patterns/non-interactive-hover"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/accessibility/anti-patterns/non-interactive-hover"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -1553,19 +466,8 @@ declare module "../src/routes/_index/accessibility/anti-patterns/non-interactive declare module "../src/routes/_index/accessibility/anti-patterns/open-new-window+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/accessibility/anti-patterns/open-new-window"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/accessibility/anti-patterns/open-new-window"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -1575,19 +477,8 @@ declare module "../src/routes/_index/accessibility/anti-patterns/open-new-window declare module "../src/routes/_index/accessibility/anti-patterns/setting-focus-on-page-load+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/accessibility/anti-patterns/setting-focus-on-page-load"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/accessibility/anti-patterns/setting-focus-on-page-load"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -1597,19 +488,8 @@ declare module "../src/routes/_index/accessibility/anti-patterns/setting-focus-o declare module "../src/routes/_index/accessibility/anti-patterns/tabindex-itis+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/accessibility/anti-patterns/tabindex-itis"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/accessibility/anti-patterns/tabindex-itis"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -1619,19 +499,8 @@ declare module "../src/routes/_index/accessibility/anti-patterns/tabindex-itis+p declare module "../src/routes/_index/accessibility/anti-patterns/title-tooltip+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/accessibility/anti-patterns/title-tooltip"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/accessibility/anti-patterns/title-tooltip"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -1641,17 +510,7 @@ declare module "../src/routes/_index/accessibility/anti-patterns/title-tooltip+p declare module "../src/routes/_index/accessibility/misc/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/misc"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1662,17 +521,7 @@ declare module "../src/routes/_index/accessibility/misc/+page.marko" { declare module "../src/routes/_index/accessibility/misc/aria-essentials+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/misc/aria-essentials"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1683,19 +532,8 @@ declare module "../src/routes/_index/accessibility/misc/aria-essentials+page.mar declare module "../src/routes/_index/accessibility/misc/component-naming-scheme+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/accessibility/misc/component-naming-scheme"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/accessibility/misc/component-naming-scheme"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -1705,17 +543,7 @@ declare module "../src/routes/_index/accessibility/misc/component-naming-scheme+ declare module "../src/routes/_index/accessibility/misc/faq+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/misc/faq"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1726,17 +554,7 @@ declare module "../src/routes/_index/accessibility/misc/faq+page.marko" { declare module "../src/routes/_index/accessibility/patterns/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1747,17 +565,7 @@ declare module "../src/routes/_index/accessibility/patterns/+page.marko" { declare module "../src/routes/_index/accessibility/patterns/description-list+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/description-list"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1768,17 +576,7 @@ declare module "../src/routes/_index/accessibility/patterns/description-list+pag declare module "../src/routes/_index/accessibility/patterns/fake-menu-button+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/fake-menu-button"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1789,17 +587,7 @@ declare module "../src/routes/_index/accessibility/patterns/fake-menu-button+pag declare module "../src/routes/_index/accessibility/patterns/fake-tabs+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/fake-tabs"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1810,17 +598,7 @@ declare module "../src/routes/_index/accessibility/patterns/fake-tabs+page.marko declare module "../src/routes/_index/accessibility/patterns/footnote+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/footnote"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1831,17 +609,7 @@ declare module "../src/routes/_index/accessibility/patterns/footnote+page.marko" declare module "../src/routes/_index/accessibility/patterns/form+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/form"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1852,17 +620,7 @@ declare module "../src/routes/_index/accessibility/patterns/form+page.marko" { declare module "../src/routes/_index/accessibility/patterns/form-validation+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/form-validation"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1873,17 +631,7 @@ declare module "../src/routes/_index/accessibility/patterns/form-validation+page declare module "../src/routes/_index/accessibility/patterns/heading+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/heading"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1894,17 +642,7 @@ declare module "../src/routes/_index/accessibility/patterns/heading+page.marko" declare module "../src/routes/_index/accessibility/patterns/image+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/image"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1915,17 +653,7 @@ declare module "../src/routes/_index/accessibility/patterns/image+page.marko" { declare module "../src/routes/_index/accessibility/patterns/input-dialog+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/input-dialog"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1936,17 +664,7 @@ declare module "../src/routes/_index/accessibility/patterns/input-dialog+page.ma declare module "../src/routes/_index/accessibility/patterns/input-meter+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/input-meter"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1957,17 +675,7 @@ declare module "../src/routes/_index/accessibility/patterns/input-meter+page.mar declare module "../src/routes/_index/accessibility/patterns/input-validation+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/input-validation"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1978,17 +686,7 @@ declare module "../src/routes/_index/accessibility/patterns/input-validation+pag declare module "../src/routes/_index/accessibility/patterns/popover+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/popover"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -1999,17 +697,7 @@ declare module "../src/routes/_index/accessibility/patterns/popover+page.marko" declare module "../src/routes/_index/accessibility/patterns/pulldown-list+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/pulldown-list"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2020,17 +708,7 @@ declare module "../src/routes/_index/accessibility/patterns/pulldown-list+page.m declare module "../src/routes/_index/accessibility/patterns/region+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/region"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2041,17 +719,7 @@ declare module "../src/routes/_index/accessibility/patterns/region+page.marko" { declare module "../src/routes/_index/accessibility/patterns/skip-navigation+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/skip-navigation"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2062,17 +730,7 @@ declare module "../src/routes/_index/accessibility/patterns/skip-navigation+page declare module "../src/routes/_index/accessibility/patterns/table-cell+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/table-cell"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2083,17 +741,7 @@ declare module "../src/routes/_index/accessibility/patterns/table-cell+page.mark declare module "../src/routes/_index/accessibility/patterns/time+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/patterns/time"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2104,17 +752,7 @@ declare module "../src/routes/_index/accessibility/patterns/time+page.marko" { declare module "../src/routes/_index/accessibility/techniques/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/techniques"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2125,19 +763,8 @@ declare module "../src/routes/_index/accessibility/techniques/+page.marko" { declare module "../src/routes/_index/accessibility/techniques/active-descendant+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/accessibility/techniques/active-descendant"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/accessibility/techniques/active-descendant"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -2147,19 +774,8 @@ declare module "../src/routes/_index/accessibility/techniques/active-descendant+ declare module "../src/routes/_index/accessibility/techniques/alternative-text+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/accessibility/techniques/alternative-text"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/accessibility/techniques/alternative-text"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -2169,17 +785,7 @@ declare module "../src/routes/_index/accessibility/techniques/alternative-text+p declare module "../src/routes/_index/accessibility/techniques/ambiguous-label+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/techniques/ambiguous-label"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2190,17 +796,7 @@ declare module "../src/routes/_index/accessibility/techniques/ambiguous-label+pa declare module "../src/routes/_index/accessibility/techniques/background-icon+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/techniques/background-icon"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2211,19 +807,8 @@ declare module "../src/routes/_index/accessibility/techniques/background-icon+pa declare module "../src/routes/_index/accessibility/techniques/keyboard-interface+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/accessibility/techniques/keyboard-interface"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/accessibility/techniques/keyboard-interface"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -2233,17 +818,7 @@ declare module "../src/routes/_index/accessibility/techniques/keyboard-interface declare module "../src/routes/_index/accessibility/techniques/keyboard-trap+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/techniques/keyboard-trap"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2254,17 +829,7 @@ declare module "../src/routes/_index/accessibility/techniques/keyboard-trap+page declare module "../src/routes/_index/accessibility/techniques/live-region+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/techniques/live-region"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2275,17 +840,7 @@ declare module "../src/routes/_index/accessibility/techniques/live-region+page.m declare module "../src/routes/_index/accessibility/techniques/offscreen-text+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/techniques/offscreen-text"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2296,17 +851,7 @@ declare module "../src/routes/_index/accessibility/techniques/offscreen-text+pag declare module "../src/routes/_index/accessibility/techniques/roving-tabindex+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/techniques/roving-tabindex"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2317,19 +862,8 @@ declare module "../src/routes/_index/accessibility/techniques/roving-tabindex+pa declare module "../src/routes/_index/accessibility/techniques/skip-to-main-content+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/accessibility/techniques/skip-to-main-content"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/accessibility/techniques/skip-to-main-content"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -2339,17 +873,7 @@ declare module "../src/routes/_index/accessibility/techniques/skip-to-main-conte declare module "../src/routes/_index/accessibility/testing/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/testing"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2360,17 +884,7 @@ declare module "../src/routes/_index/accessibility/testing/+page.marko" { declare module "../src/routes/_index/accessibility/testing/checklist+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/testing/checklist"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2381,17 +895,7 @@ declare module "../src/routes/_index/accessibility/testing/checklist+page.marko" declare module "../src/routes/_index/accessibility/testing/known-issues+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/accessibility/testing/known-issues"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2402,17 +906,7 @@ declare module "../src/routes/_index/accessibility/testing/known-issues+page.mar declare module "../src/routes/_index/components/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2423,17 +917,7 @@ declare module "../src/routes/_index/components/+page.marko" { declare module "../src/routes/_index/components/accordion/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/accordion"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2444,17 +928,7 @@ declare module "../src/routes/_index/components/accordion/+page.marko" { declare module "../src/routes/_index/components/accordion/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/accordion/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2465,17 +939,7 @@ declare module "../src/routes/_index/components/accordion/accessibility+page.mar declare module "../src/routes/_index/components/accordion/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/accordion/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2486,17 +950,7 @@ declare module "../src/routes/_index/components/accordion/css+page.marko" { declare module "../src/routes/_index/components/alert-dialog/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/alert-dialog"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2507,17 +961,7 @@ declare module "../src/routes/_index/components/alert-dialog/+page.marko" { declare module "../src/routes/_index/components/alert-dialog/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/alert-dialog/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2528,17 +972,7 @@ declare module "../src/routes/_index/components/alert-dialog/accessibility+page. declare module "../src/routes/_index/components/alert-dialog/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/alert-dialog/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2549,17 +983,7 @@ declare module "../src/routes/_index/components/alert-dialog/css+page.marko" { declare module "../src/routes/_index/components/avatar/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/avatar"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2570,17 +994,7 @@ declare module "../src/routes/_index/components/avatar/+page.marko" { declare module "../src/routes/_index/components/avatar/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/avatar/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2591,17 +1005,7 @@ declare module "../src/routes/_index/components/avatar/accessibility+page.marko" declare module "../src/routes/_index/components/avatar/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/avatar/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2612,17 +1016,7 @@ declare module "../src/routes/_index/components/avatar/css+page.marko" { declare module "../src/routes/_index/components/badge/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/badge"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2633,17 +1027,7 @@ declare module "../src/routes/_index/components/badge/+page.marko" { declare module "../src/routes/_index/components/badge/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/badge/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2654,17 +1038,7 @@ declare module "../src/routes/_index/components/badge/accessibility+page.marko" declare module "../src/routes/_index/components/badge/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/badge/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2675,17 +1049,7 @@ declare module "../src/routes/_index/components/badge/css+page.marko" { declare module "../src/routes/_index/components/breadcrumbs/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/breadcrumbs"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2696,17 +1060,7 @@ declare module "../src/routes/_index/components/breadcrumbs/+page.marko" { declare module "../src/routes/_index/components/breadcrumbs/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/breadcrumbs/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2717,17 +1071,7 @@ declare module "../src/routes/_index/components/breadcrumbs/accessibility+page.m declare module "../src/routes/_index/components/breadcrumbs/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/breadcrumbs/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2738,17 +1082,7 @@ declare module "../src/routes/_index/components/breadcrumbs/css+page.marko" { declare module "../src/routes/_index/components/button/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/button"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2759,17 +1093,7 @@ declare module "../src/routes/_index/components/button/+page.marko" { declare module "../src/routes/_index/components/button/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/button/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2780,17 +1104,7 @@ declare module "../src/routes/_index/components/button/accessibility+page.marko" declare module "../src/routes/_index/components/button/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/button/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2801,17 +1115,7 @@ declare module "../src/routes/_index/components/button/css+page.marko" { declare module "../src/routes/_index/components/button/marko+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/button/marko"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2822,17 +1126,7 @@ declare module "../src/routes/_index/components/button/marko+page.marko" { declare module "../src/routes/_index/components/button/react+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/button/react"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2843,17 +1137,7 @@ declare module "../src/routes/_index/components/button/react+page.marko" { declare module "../src/routes/_index/components/calendar/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/calendar"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2864,17 +1148,7 @@ declare module "../src/routes/_index/components/calendar/+page.marko" { declare module "../src/routes/_index/components/calendar/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/calendar/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2885,17 +1159,7 @@ declare module "../src/routes/_index/components/calendar/accessibility+page.mark declare module "../src/routes/_index/components/calendar/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/calendar/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2906,17 +1170,7 @@ declare module "../src/routes/_index/components/calendar/css+page.marko" { declare module "../src/routes/_index/components/card/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/card"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2927,17 +1181,7 @@ declare module "../src/routes/_index/components/card/+page.marko" { declare module "../src/routes/_index/components/card/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/card/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2948,17 +1192,7 @@ declare module "../src/routes/_index/components/card/accessibility+page.marko" { declare module "../src/routes/_index/components/card/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/card/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2969,17 +1203,7 @@ declare module "../src/routes/_index/components/card/css+page.marko" { declare module "../src/routes/_index/components/carousel/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/carousel"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -2990,17 +1214,7 @@ declare module "../src/routes/_index/components/carousel/+page.marko" { declare module "../src/routes/_index/components/carousel/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/carousel/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3011,17 +1225,7 @@ declare module "../src/routes/_index/components/carousel/accessibility+page.mark declare module "../src/routes/_index/components/carousel/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/carousel/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3032,17 +1236,7 @@ declare module "../src/routes/_index/components/carousel/css+page.marko" { declare module "../src/routes/_index/components/ccd/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/ccd"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3053,17 +1247,7 @@ declare module "../src/routes/_index/components/ccd/+page.marko" { declare module "../src/routes/_index/components/ccd/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/ccd/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3074,17 +1258,7 @@ declare module "../src/routes/_index/components/ccd/accessibility+page.marko" { declare module "../src/routes/_index/components/ccd/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/ccd/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3095,17 +1269,7 @@ declare module "../src/routes/_index/components/ccd/css+page.marko" { declare module "../src/routes/_index/components/chart-legend/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/chart-legend"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3116,17 +1280,7 @@ declare module "../src/routes/_index/components/chart-legend/+page.marko" { declare module "../src/routes/_index/components/chart-legend/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/chart-legend/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3137,17 +1291,7 @@ declare module "../src/routes/_index/components/chart-legend/accessibility+page. declare module "../src/routes/_index/components/chart-legend/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/chart-legend/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3158,17 +1302,7 @@ declare module "../src/routes/_index/components/chart-legend/css+page.marko" { declare module "../src/routes/_index/components/checkbox/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/checkbox"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3179,17 +1313,7 @@ declare module "../src/routes/_index/components/checkbox/+page.marko" { declare module "../src/routes/_index/components/checkbox/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/checkbox/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3200,17 +1324,7 @@ declare module "../src/routes/_index/components/checkbox/accessibility+page.mark declare module "../src/routes/_index/components/checkbox/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/checkbox/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3221,17 +1335,7 @@ declare module "../src/routes/_index/components/checkbox/css+page.marko" { declare module "../src/routes/_index/components/chip/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/chip"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3242,17 +1346,7 @@ declare module "../src/routes/_index/components/chip/+page.marko" { declare module "../src/routes/_index/components/chip/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/chip/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3263,17 +1357,7 @@ declare module "../src/routes/_index/components/chip/accessibility+page.marko" { declare module "../src/routes/_index/components/chip/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/chip/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3284,17 +1368,7 @@ declare module "../src/routes/_index/components/chip/css+page.marko" { declare module "../src/routes/_index/components/chips-combobox/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/chips-combobox"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3305,17 +1379,7 @@ declare module "../src/routes/_index/components/chips-combobox/+page.marko" { declare module "../src/routes/_index/components/chips-combobox/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/chips-combobox/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3326,17 +1390,7 @@ declare module "../src/routes/_index/components/chips-combobox/accessibility+pag declare module "../src/routes/_index/components/chips-combobox/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/chips-combobox/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3347,17 +1401,7 @@ declare module "../src/routes/_index/components/chips-combobox/css+page.marko" { declare module "../src/routes/_index/components/combobox/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/combobox"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3368,17 +1412,7 @@ declare module "../src/routes/_index/components/combobox/+page.marko" { declare module "../src/routes/_index/components/combobox/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/combobox/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3389,17 +1423,7 @@ declare module "../src/routes/_index/components/combobox/accessibility+page.mark declare module "../src/routes/_index/components/combobox/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/combobox/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3410,17 +1434,7 @@ declare module "../src/routes/_index/components/combobox/css+page.marko" { declare module "../src/routes/_index/components/confirm-dialog/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/confirm-dialog"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3431,17 +1445,7 @@ declare module "../src/routes/_index/components/confirm-dialog/+page.marko" { declare module "../src/routes/_index/components/confirm-dialog/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/confirm-dialog/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3452,17 +1456,7 @@ declare module "../src/routes/_index/components/confirm-dialog/accessibility+pag declare module "../src/routes/_index/components/confirm-dialog/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/confirm-dialog/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3473,17 +1467,7 @@ declare module "../src/routes/_index/components/confirm-dialog/css+page.marko" { declare module "../src/routes/_index/components/date-textbox/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/date-textbox"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3494,17 +1478,7 @@ declare module "../src/routes/_index/components/date-textbox/+page.marko" { declare module "../src/routes/_index/components/date-textbox/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/date-textbox/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3515,17 +1489,7 @@ declare module "../src/routes/_index/components/date-textbox/accessibility+page. declare module "../src/routes/_index/components/date-textbox/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/date-textbox/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3536,17 +1500,7 @@ declare module "../src/routes/_index/components/date-textbox/css+page.marko" { declare module "../src/routes/_index/components/details/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/details"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3557,17 +1511,7 @@ declare module "../src/routes/_index/components/details/+page.marko" { declare module "../src/routes/_index/components/details/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/details/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3578,17 +1522,7 @@ declare module "../src/routes/_index/components/details/accessibility+page.marko declare module "../src/routes/_index/components/details/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/details/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3599,17 +1533,7 @@ declare module "../src/routes/_index/components/details/css+page.marko" { declare module "../src/routes/_index/components/dialog/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/dialog"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3620,17 +1544,7 @@ declare module "../src/routes/_index/components/dialog/+page.marko" { declare module "../src/routes/_index/components/dialog/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/dialog/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3641,17 +1555,7 @@ declare module "../src/routes/_index/components/dialog/accessibility+page.marko" declare module "../src/routes/_index/components/dialog/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/dialog/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3662,17 +1566,7 @@ declare module "../src/routes/_index/components/dialog/css+page.marko" { declare module "../src/routes/_index/components/dialog/js+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/dialog/js"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3683,17 +1577,7 @@ declare module "../src/routes/_index/components/dialog/js+page.marko" { declare module "../src/routes/_index/components/donut-chart/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/donut-chart"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3704,17 +1588,7 @@ declare module "../src/routes/_index/components/donut-chart/+page.marko" { declare module "../src/routes/_index/components/donut-chart/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/donut-chart/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3725,17 +1599,7 @@ declare module "../src/routes/_index/components/donut-chart/accessibility+page.m declare module "../src/routes/_index/components/donut-chart/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/donut-chart/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3746,17 +1610,7 @@ declare module "../src/routes/_index/components/donut-chart/css+page.marko" { declare module "../src/routes/_index/components/education-notice/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/education-notice"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3767,19 +1621,8 @@ declare module "../src/routes/_index/components/education-notice/+page.marko" { declare module "../src/routes/_index/components/education-notice/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/components/education-notice/accessibility"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/components/education-notice/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -3789,17 +1632,7 @@ declare module "../src/routes/_index/components/education-notice/accessibility+p declare module "../src/routes/_index/components/education-notice/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/education-notice/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3810,17 +1643,7 @@ declare module "../src/routes/_index/components/education-notice/css+page.marko" declare module "../src/routes/_index/components/eek/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/eek"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3831,17 +1654,7 @@ declare module "../src/routes/_index/components/eek/+page.marko" { declare module "../src/routes/_index/components/eek/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/eek/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3852,17 +1665,7 @@ declare module "../src/routes/_index/components/eek/accessibility+page.marko" { declare module "../src/routes/_index/components/eek/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/eek/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3873,17 +1676,7 @@ declare module "../src/routes/_index/components/eek/css+page.marko" { declare module "../src/routes/_index/components/field/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/field"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3894,17 +1687,7 @@ declare module "../src/routes/_index/components/field/+page.marko" { declare module "../src/routes/_index/components/field/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/field/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3915,17 +1698,7 @@ declare module "../src/routes/_index/components/field/accessibility+page.marko" declare module "../src/routes/_index/components/field/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/field/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3936,17 +1709,7 @@ declare module "../src/routes/_index/components/field/css+page.marko" { declare module "../src/routes/_index/components/file-input/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/file-input"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3957,17 +1720,7 @@ declare module "../src/routes/_index/components/file-input/+page.marko" { declare module "../src/routes/_index/components/file-input/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/file-input/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3978,17 +1731,7 @@ declare module "../src/routes/_index/components/file-input/accessibility+page.ma declare module "../src/routes/_index/components/file-input/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/file-input/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -3999,17 +1742,7 @@ declare module "../src/routes/_index/components/file-input/css+page.marko" { declare module "../src/routes/_index/components/file-preview-card/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/file-preview-card"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4020,19 +1753,8 @@ declare module "../src/routes/_index/components/file-preview-card/+page.marko" { declare module "../src/routes/_index/components/file-preview-card/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/components/file-preview-card/accessibility"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/components/file-preview-card/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -4042,17 +1764,7 @@ declare module "../src/routes/_index/components/file-preview-card/accessibility+ declare module "../src/routes/_index/components/file-preview-card/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/file-preview-card/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4063,17 +1775,7 @@ declare module "../src/routes/_index/components/file-preview-card/css+page.marko declare module "../src/routes/_index/components/file-preview-card-group/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/file-preview-card-group"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4084,19 +1786,8 @@ declare module "../src/routes/_index/components/file-preview-card-group/+page.ma declare module "../src/routes/_index/components/file-preview-card-group/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/components/file-preview-card-group/accessibility"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/components/file-preview-card-group/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -4106,17 +1797,7 @@ declare module "../src/routes/_index/components/file-preview-card-group/accessib declare module "../src/routes/_index/components/file-preview-card-group/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/file-preview-card-group/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4127,17 +1808,7 @@ declare module "../src/routes/_index/components/file-preview-card-group/css+page declare module "../src/routes/_index/components/filter-chip/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/filter-chip"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4148,17 +1819,7 @@ declare module "../src/routes/_index/components/filter-chip/+page.marko" { declare module "../src/routes/_index/components/filter-chip/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/filter-chip/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4169,17 +1830,7 @@ declare module "../src/routes/_index/components/filter-chip/accessibility+page.m declare module "../src/routes/_index/components/filter-chip/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/filter-chip/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4190,17 +1841,7 @@ declare module "../src/routes/_index/components/filter-chip/css+page.marko" { declare module "../src/routes/_index/components/filter-input/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/filter-input"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4211,17 +1852,7 @@ declare module "../src/routes/_index/components/filter-input/+page.marko" { declare module "../src/routes/_index/components/filter-input/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/filter-input/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4232,17 +1863,7 @@ declare module "../src/routes/_index/components/filter-input/accessibility+page. declare module "../src/routes/_index/components/filter-input/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/filter-input/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4253,17 +1874,7 @@ declare module "../src/routes/_index/components/filter-input/css+page.marko" { declare module "../src/routes/_index/components/flag/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/flag"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4274,17 +1885,7 @@ declare module "../src/routes/_index/components/flag/+page.marko" { declare module "../src/routes/_index/components/flag/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/flag/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4295,17 +1896,7 @@ declare module "../src/routes/_index/components/flag/accessibility+page.marko" { declare module "../src/routes/_index/components/flag/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/flag/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4316,17 +1907,7 @@ declare module "../src/routes/_index/components/flag/css+page.marko" { declare module "../src/routes/_index/components/floating-label/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/floating-label"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4337,17 +1918,7 @@ declare module "../src/routes/_index/components/floating-label/+page.marko" { declare module "../src/routes/_index/components/floating-label/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/floating-label/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4358,17 +1929,7 @@ declare module "../src/routes/_index/components/floating-label/accessibility+pag declare module "../src/routes/_index/components/floating-label/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/floating-label/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4379,17 +1940,7 @@ declare module "../src/routes/_index/components/floating-label/css+page.marko" { declare module "../src/routes/_index/components/global/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/global"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4400,17 +1951,7 @@ declare module "../src/routes/_index/components/global/+page.marko" { declare module "../src/routes/_index/components/global/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/global/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4421,17 +1962,7 @@ declare module "../src/routes/_index/components/global/accessibility+page.marko" declare module "../src/routes/_index/components/global/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/global/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4442,17 +1973,7 @@ declare module "../src/routes/_index/components/global/css+page.marko" { declare module "../src/routes/_index/components/icon/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/icon"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4463,17 +1984,7 @@ declare module "../src/routes/_index/components/icon/+page.marko" { declare module "../src/routes/_index/components/icon/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/icon/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4484,17 +1995,7 @@ declare module "../src/routes/_index/components/icon/accessibility+page.marko" { declare module "../src/routes/_index/components/icon/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/icon/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4505,17 +2006,7 @@ declare module "../src/routes/_index/components/icon/css+page.marko" { declare module "../src/routes/_index/components/icon-button/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/icon-button"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4526,17 +2017,7 @@ declare module "../src/routes/_index/components/icon-button/+page.marko" { declare module "../src/routes/_index/components/icon-button/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/icon-button/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4547,17 +2028,7 @@ declare module "../src/routes/_index/components/icon-button/accessibility+page.m declare module "../src/routes/_index/components/icon-button/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/icon-button/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4568,17 +2039,7 @@ declare module "../src/routes/_index/components/icon-button/css+page.marko" { declare module "../src/routes/_index/components/image-placeholder/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/image-placeholder"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4589,19 +2050,8 @@ declare module "../src/routes/_index/components/image-placeholder/+page.marko" { declare module "../src/routes/_index/components/image-placeholder/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/components/image-placeholder/accessibility"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/components/image-placeholder/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -4611,17 +2061,7 @@ declare module "../src/routes/_index/components/image-placeholder/accessibility+ declare module "../src/routes/_index/components/image-placeholder/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/image-placeholder/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4632,17 +2072,7 @@ declare module "../src/routes/_index/components/image-placeholder/css+page.marko declare module "../src/routes/_index/components/infotip/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/infotip"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4653,17 +2083,7 @@ declare module "../src/routes/_index/components/infotip/+page.marko" { declare module "../src/routes/_index/components/infotip/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/infotip/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4674,17 +2094,7 @@ declare module "../src/routes/_index/components/infotip/accessibility+page.marko declare module "../src/routes/_index/components/infotip/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/infotip/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4695,17 +2105,7 @@ declare module "../src/routes/_index/components/infotip/css+page.marko" { declare module "../src/routes/_index/components/inline-notice/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/inline-notice"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4716,17 +2116,7 @@ declare module "../src/routes/_index/components/inline-notice/+page.marko" { declare module "../src/routes/_index/components/inline-notice/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/inline-notice/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4737,17 +2127,7 @@ declare module "../src/routes/_index/components/inline-notice/accessibility+page declare module "../src/routes/_index/components/inline-notice/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/inline-notice/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4758,17 +2138,7 @@ declare module "../src/routes/_index/components/inline-notice/css+page.marko" { declare module "../src/routes/_index/components/item-tile/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/item-tile"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4779,17 +2149,7 @@ declare module "../src/routes/_index/components/item-tile/+page.marko" { declare module "../src/routes/_index/components/item-tile/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/item-tile/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4800,17 +2160,7 @@ declare module "../src/routes/_index/components/item-tile/accessibility+page.mar declare module "../src/routes/_index/components/item-tile/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/item-tile/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4821,17 +2171,7 @@ declare module "../src/routes/_index/components/item-tile/css+page.marko" { declare module "../src/routes/_index/components/item-tile-group/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/item-tile-group"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4842,17 +2182,7 @@ declare module "../src/routes/_index/components/item-tile-group/+page.marko" { declare module "../src/routes/_index/components/item-tile-group/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/item-tile-group/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4863,17 +2193,7 @@ declare module "../src/routes/_index/components/item-tile-group/accessibility+pa declare module "../src/routes/_index/components/item-tile-group/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/item-tile-group/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4884,17 +2204,7 @@ declare module "../src/routes/_index/components/item-tile-group/css+page.marko" declare module "../src/routes/_index/components/layout-grid/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/layout-grid"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4905,17 +2215,7 @@ declare module "../src/routes/_index/components/layout-grid/+page.marko" { declare module "../src/routes/_index/components/layout-grid/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/layout-grid/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4926,17 +2226,7 @@ declare module "../src/routes/_index/components/layout-grid/accessibility+page.m declare module "../src/routes/_index/components/layout-grid/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/layout-grid/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4947,17 +2237,7 @@ declare module "../src/routes/_index/components/layout-grid/css+page.marko" { declare module "../src/routes/_index/components/lightbox-dialog/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/lightbox-dialog"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4968,17 +2248,7 @@ declare module "../src/routes/_index/components/lightbox-dialog/+page.marko" { declare module "../src/routes/_index/components/lightbox-dialog/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/lightbox-dialog/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -4989,17 +2259,7 @@ declare module "../src/routes/_index/components/lightbox-dialog/accessibility+pa declare module "../src/routes/_index/components/lightbox-dialog/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/lightbox-dialog/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5010,17 +2270,7 @@ declare module "../src/routes/_index/components/lightbox-dialog/css+page.marko" declare module "../src/routes/_index/components/link/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/link"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5031,17 +2281,7 @@ declare module "../src/routes/_index/components/link/+page.marko" { declare module "../src/routes/_index/components/link/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/link/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5052,17 +2292,7 @@ declare module "../src/routes/_index/components/link/accessibility+page.marko" { declare module "../src/routes/_index/components/link/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/link/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5073,17 +2303,7 @@ declare module "../src/routes/_index/components/link/css+page.marko" { declare module "../src/routes/_index/components/list/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/list"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5094,17 +2314,7 @@ declare module "../src/routes/_index/components/list/+page.marko" { declare module "../src/routes/_index/components/list/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/list/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5115,17 +2325,7 @@ declare module "../src/routes/_index/components/list/accessibility+page.marko" { declare module "../src/routes/_index/components/list/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/list/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5136,17 +2336,7 @@ declare module "../src/routes/_index/components/list/css+page.marko" { declare module "../src/routes/_index/components/listbox/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/listbox"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5157,17 +2347,7 @@ declare module "../src/routes/_index/components/listbox/+page.marko" { declare module "../src/routes/_index/components/listbox/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/listbox/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5178,17 +2358,7 @@ declare module "../src/routes/_index/components/listbox/accessibility+page.marko declare module "../src/routes/_index/components/listbox/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/listbox/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5199,17 +2369,7 @@ declare module "../src/routes/_index/components/listbox/css+page.marko" { declare module "../src/routes/_index/components/listbox-button/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/listbox-button"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5220,17 +2380,7 @@ declare module "../src/routes/_index/components/listbox-button/+page.marko" { declare module "../src/routes/_index/components/listbox-button/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/listbox-button/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5241,17 +2391,7 @@ declare module "../src/routes/_index/components/listbox-button/accessibility+pag declare module "../src/routes/_index/components/listbox-button/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/listbox-button/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5262,17 +2402,7 @@ declare module "../src/routes/_index/components/listbox-button/css+page.marko" { declare module "../src/routes/_index/components/marketsans/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/marketsans"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5283,17 +2413,7 @@ declare module "../src/routes/_index/components/marketsans/+page.marko" { declare module "../src/routes/_index/components/marketsans/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/marketsans/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5304,17 +2424,7 @@ declare module "../src/routes/_index/components/marketsans/accessibility+page.ma declare module "../src/routes/_index/components/marketsans/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/marketsans/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5325,17 +2435,7 @@ declare module "../src/routes/_index/components/marketsans/css+page.marko" { declare module "../src/routes/_index/components/menu/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/menu"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5346,17 +2446,7 @@ declare module "../src/routes/_index/components/menu/+page.marko" { declare module "../src/routes/_index/components/menu/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/menu/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5367,17 +2457,7 @@ declare module "../src/routes/_index/components/menu/accessibility+page.marko" { declare module "../src/routes/_index/components/menu/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/menu/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5388,17 +2468,7 @@ declare module "../src/routes/_index/components/menu/css+page.marko" { declare module "../src/routes/_index/components/menu-button/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/menu-button"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5409,17 +2479,7 @@ declare module "../src/routes/_index/components/menu-button/+page.marko" { declare module "../src/routes/_index/components/menu-button/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/menu-button/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5430,17 +2490,7 @@ declare module "../src/routes/_index/components/menu-button/accessibility+page.m declare module "../src/routes/_index/components/menu-button/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/menu-button/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5451,17 +2501,7 @@ declare module "../src/routes/_index/components/menu-button/css+page.marko" { declare module "../src/routes/_index/components/number-input/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/number-input"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5472,17 +2512,7 @@ declare module "../src/routes/_index/components/number-input/+page.marko" { declare module "../src/routes/_index/components/number-input/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/number-input/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5493,17 +2523,7 @@ declare module "../src/routes/_index/components/number-input/accessibility+page. declare module "../src/routes/_index/components/number-input/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/number-input/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5514,17 +2534,7 @@ declare module "../src/routes/_index/components/number-input/css+page.marko" { declare module "../src/routes/_index/components/page-grid/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/page-grid"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5535,17 +2545,7 @@ declare module "../src/routes/_index/components/page-grid/+page.marko" { declare module "../src/routes/_index/components/page-grid/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/page-grid/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5556,17 +2556,7 @@ declare module "../src/routes/_index/components/page-grid/accessibility+page.mar declare module "../src/routes/_index/components/page-grid/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/page-grid/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5577,17 +2567,7 @@ declare module "../src/routes/_index/components/page-grid/css+page.marko" { declare module "../src/routes/_index/components/page-notice/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/page-notice"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5598,17 +2578,7 @@ declare module "../src/routes/_index/components/page-notice/+page.marko" { declare module "../src/routes/_index/components/page-notice/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/page-notice/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5619,17 +2589,7 @@ declare module "../src/routes/_index/components/page-notice/accessibility+page.m declare module "../src/routes/_index/components/page-notice/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/page-notice/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5640,17 +2600,7 @@ declare module "../src/routes/_index/components/page-notice/css+page.marko" { declare module "../src/routes/_index/components/pagination/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/pagination"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5661,17 +2611,7 @@ declare module "../src/routes/_index/components/pagination/+page.marko" { declare module "../src/routes/_index/components/pagination/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/pagination/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5682,17 +2622,7 @@ declare module "../src/routes/_index/components/pagination/accessibility+page.ma declare module "../src/routes/_index/components/pagination/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/pagination/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5703,17 +2633,7 @@ declare module "../src/routes/_index/components/pagination/css+page.marko" { declare module "../src/routes/_index/components/panel-dialog/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/panel-dialog"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5724,17 +2644,7 @@ declare module "../src/routes/_index/components/panel-dialog/+page.marko" { declare module "../src/routes/_index/components/panel-dialog/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/panel-dialog/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5745,17 +2655,7 @@ declare module "../src/routes/_index/components/panel-dialog/accessibility+page. declare module "../src/routes/_index/components/panel-dialog/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/panel-dialog/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5766,17 +2666,7 @@ declare module "../src/routes/_index/components/panel-dialog/css+page.marko" { declare module "../src/routes/_index/components/phone-input/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/phone-input"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5787,17 +2677,7 @@ declare module "../src/routes/_index/components/phone-input/+page.marko" { declare module "../src/routes/_index/components/phone-input/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/phone-input/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5808,17 +2688,7 @@ declare module "../src/routes/_index/components/phone-input/accessibility+page.m declare module "../src/routes/_index/components/phone-input/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/phone-input/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5829,17 +2699,7 @@ declare module "../src/routes/_index/components/phone-input/css+page.marko" { declare module "../src/routes/_index/components/progress-bar/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/progress-bar"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5850,17 +2710,7 @@ declare module "../src/routes/_index/components/progress-bar/+page.marko" { declare module "../src/routes/_index/components/progress-bar/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/progress-bar/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5871,17 +2721,7 @@ declare module "../src/routes/_index/components/progress-bar/accessibility+page. declare module "../src/routes/_index/components/progress-bar/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/progress-bar/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5892,17 +2732,7 @@ declare module "../src/routes/_index/components/progress-bar/css+page.marko" { declare module "../src/routes/_index/components/progress-bar-expressive/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/progress-bar-expressive"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5913,19 +2743,8 @@ declare module "../src/routes/_index/components/progress-bar-expressive/+page.ma declare module "../src/routes/_index/components/progress-bar-expressive/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/components/progress-bar-expressive/accessibility"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/components/progress-bar-expressive/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -5935,17 +2754,7 @@ declare module "../src/routes/_index/components/progress-bar-expressive/accessib declare module "../src/routes/_index/components/progress-bar-expressive/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/progress-bar-expressive/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5956,17 +2765,7 @@ declare module "../src/routes/_index/components/progress-bar-expressive/css+page declare module "../src/routes/_index/components/progress-spinner/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/progress-spinner"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -5977,19 +2776,8 @@ declare module "../src/routes/_index/components/progress-spinner/+page.marko" { declare module "../src/routes/_index/components/progress-spinner/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/components/progress-spinner/accessibility"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/components/progress-spinner/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -5999,17 +2787,7 @@ declare module "../src/routes/_index/components/progress-spinner/accessibility+p declare module "../src/routes/_index/components/progress-spinner/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/progress-spinner/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6020,17 +2798,7 @@ declare module "../src/routes/_index/components/progress-spinner/css+page.marko" declare module "../src/routes/_index/components/progress-stepper/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/progress-stepper"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6041,19 +2809,8 @@ declare module "../src/routes/_index/components/progress-stepper/+page.marko" { declare module "../src/routes/_index/components/progress-stepper/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/components/progress-stepper/accessibility"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/components/progress-stepper/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -6063,17 +2820,7 @@ declare module "../src/routes/_index/components/progress-stepper/accessibility+p declare module "../src/routes/_index/components/progress-stepper/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/progress-stepper/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6084,17 +2831,7 @@ declare module "../src/routes/_index/components/progress-stepper/css+page.marko" declare module "../src/routes/_index/components/radio/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/radio"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6105,17 +2842,7 @@ declare module "../src/routes/_index/components/radio/+page.marko" { declare module "../src/routes/_index/components/radio/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/radio/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6126,17 +2853,7 @@ declare module "../src/routes/_index/components/radio/accessibility+page.marko" declare module "../src/routes/_index/components/radio/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/radio/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6147,17 +2864,7 @@ declare module "../src/routes/_index/components/radio/css+page.marko" { declare module "../src/routes/_index/components/sass/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/sass"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6168,17 +2875,7 @@ declare module "../src/routes/_index/components/sass/+page.marko" { declare module "../src/routes/_index/components/section-notice/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/section-notice"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6189,17 +2886,7 @@ declare module "../src/routes/_index/components/section-notice/+page.marko" { declare module "../src/routes/_index/components/section-notice/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/section-notice/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6210,17 +2897,7 @@ declare module "../src/routes/_index/components/section-notice/accessibility+pag declare module "../src/routes/_index/components/section-notice/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/section-notice/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6231,17 +2908,7 @@ declare module "../src/routes/_index/components/section-notice/css+page.marko" { declare module "../src/routes/_index/components/section-title/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/section-title"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6252,17 +2919,7 @@ declare module "../src/routes/_index/components/section-title/+page.marko" { declare module "../src/routes/_index/components/section-title/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/section-title/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6273,17 +2930,7 @@ declare module "../src/routes/_index/components/section-title/accessibility+page declare module "../src/routes/_index/components/section-title/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/section-title/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6294,17 +2941,7 @@ declare module "../src/routes/_index/components/section-title/css+page.marko" { declare module "../src/routes/_index/components/segmented-buttons/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/segmented-buttons"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6315,19 +2952,8 @@ declare module "../src/routes/_index/components/segmented-buttons/+page.marko" { declare module "../src/routes/_index/components/segmented-buttons/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/components/segmented-buttons/accessibility"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/components/segmented-buttons/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -6337,17 +2963,7 @@ declare module "../src/routes/_index/components/segmented-buttons/accessibility+ declare module "../src/routes/_index/components/segmented-buttons/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/segmented-buttons/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6358,17 +2974,7 @@ declare module "../src/routes/_index/components/segmented-buttons/css+page.marko declare module "../src/routes/_index/components/select/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/select"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6379,17 +2985,7 @@ declare module "../src/routes/_index/components/select/+page.marko" { declare module "../src/routes/_index/components/select/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/select/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6400,17 +2996,7 @@ declare module "../src/routes/_index/components/select/accessibility+page.marko" declare module "../src/routes/_index/components/select/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/select/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6421,17 +3007,7 @@ declare module "../src/routes/_index/components/select/css+page.marko" { declare module "../src/routes/_index/components/selection-chip/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/selection-chip"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6442,17 +3018,7 @@ declare module "../src/routes/_index/components/selection-chip/+page.marko" { declare module "../src/routes/_index/components/selection-chip/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/selection-chip/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6463,17 +3029,7 @@ declare module "../src/routes/_index/components/selection-chip/accessibility+pag declare module "../src/routes/_index/components/signal/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/signal"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6484,17 +3040,7 @@ declare module "../src/routes/_index/components/signal/+page.marko" { declare module "../src/routes/_index/components/signal/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/signal/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6505,17 +3051,7 @@ declare module "../src/routes/_index/components/signal/accessibility+page.marko" declare module "../src/routes/_index/components/signal/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/signal/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6526,17 +3062,7 @@ declare module "../src/routes/_index/components/signal/css+page.marko" { declare module "../src/routes/_index/components/skeleton/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/skeleton"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6547,17 +3073,7 @@ declare module "../src/routes/_index/components/skeleton/+page.marko" { declare module "../src/routes/_index/components/skeleton/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/skeleton/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6568,17 +3084,7 @@ declare module "../src/routes/_index/components/skeleton/accessibility+page.mark declare module "../src/routes/_index/components/skeleton/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/skeleton/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6589,17 +3095,7 @@ declare module "../src/routes/_index/components/skeleton/css+page.marko" { declare module "../src/routes/_index/components/snackbar-dialog/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/snackbar-dialog"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6610,17 +3106,7 @@ declare module "../src/routes/_index/components/snackbar-dialog/+page.marko" { declare module "../src/routes/_index/components/snackbar-dialog/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/snackbar-dialog/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6631,17 +3117,7 @@ declare module "../src/routes/_index/components/snackbar-dialog/accessibility+pa declare module "../src/routes/_index/components/snackbar-dialog/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/snackbar-dialog/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6652,17 +3128,7 @@ declare module "../src/routes/_index/components/snackbar-dialog/css+page.marko" declare module "../src/routes/_index/components/split-button/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/split-button"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6673,17 +3139,7 @@ declare module "../src/routes/_index/components/split-button/+page.marko" { declare module "../src/routes/_index/components/split-button/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/split-button/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6694,17 +3150,7 @@ declare module "../src/routes/_index/components/split-button/accessibility+page. declare module "../src/routes/_index/components/split-button/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/split-button/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6715,17 +3161,7 @@ declare module "../src/routes/_index/components/split-button/css+page.marko" { declare module "../src/routes/_index/components/star-rating/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/star-rating"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6736,17 +3172,7 @@ declare module "../src/routes/_index/components/star-rating/+page.marko" { declare module "../src/routes/_index/components/star-rating/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/star-rating/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6757,17 +3183,7 @@ declare module "../src/routes/_index/components/star-rating/accessibility+page.m declare module "../src/routes/_index/components/star-rating/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/star-rating/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6778,17 +3194,7 @@ declare module "../src/routes/_index/components/star-rating/css+page.marko" { declare module "../src/routes/_index/components/star-rating-select/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/star-rating-select"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6799,19 +3205,8 @@ declare module "../src/routes/_index/components/star-rating-select/+page.marko" declare module "../src/routes/_index/components/star-rating-select/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/components/star-rating-select/accessibility"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/components/star-rating-select/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -6821,17 +3216,7 @@ declare module "../src/routes/_index/components/star-rating-select/accessibility declare module "../src/routes/_index/components/star-rating-select/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/star-rating-select/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6842,17 +3227,7 @@ declare module "../src/routes/_index/components/star-rating-select/css+page.mark declare module "../src/routes/_index/components/switch/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/switch"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6863,17 +3238,7 @@ declare module "../src/routes/_index/components/switch/+page.marko" { declare module "../src/routes/_index/components/switch/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/switch/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6884,17 +3249,7 @@ declare module "../src/routes/_index/components/switch/accessibility+page.marko" declare module "../src/routes/_index/components/switch/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/switch/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6905,17 +3260,7 @@ declare module "../src/routes/_index/components/switch/css+page.marko" { declare module "../src/routes/_index/components/table/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/table"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6926,17 +3271,7 @@ declare module "../src/routes/_index/components/table/+page.marko" { declare module "../src/routes/_index/components/table/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/table/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6947,17 +3282,7 @@ declare module "../src/routes/_index/components/table/accessibility+page.marko" declare module "../src/routes/_index/components/table/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/table/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6968,17 +3293,7 @@ declare module "../src/routes/_index/components/table/css+page.marko" { declare module "../src/routes/_index/components/tabs/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/tabs"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -6989,17 +3304,7 @@ declare module "../src/routes/_index/components/tabs/+page.marko" { declare module "../src/routes/_index/components/tabs/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/tabs/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7010,17 +3315,7 @@ declare module "../src/routes/_index/components/tabs/accessibility+page.marko" { declare module "../src/routes/_index/components/tabs/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/tabs/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7031,17 +3326,7 @@ declare module "../src/routes/_index/components/tabs/css+page.marko" { declare module "../src/routes/_index/components/textbox/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/textbox"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7052,17 +3337,7 @@ declare module "../src/routes/_index/components/textbox/+page.marko" { declare module "../src/routes/_index/components/textbox/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/textbox/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7073,17 +3348,7 @@ declare module "../src/routes/_index/components/textbox/accessibility+page.marko declare module "../src/routes/_index/components/textbox/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/textbox/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7094,17 +3359,7 @@ declare module "../src/routes/_index/components/textbox/css+page.marko" { declare module "../src/routes/_index/components/toast-dialog/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/toast-dialog"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7115,17 +3370,7 @@ declare module "../src/routes/_index/components/toast-dialog/+page.marko" { declare module "../src/routes/_index/components/toast-dialog/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/toast-dialog/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7136,17 +3381,7 @@ declare module "../src/routes/_index/components/toast-dialog/accessibility+page. declare module "../src/routes/_index/components/toast-dialog/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/toast-dialog/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7157,17 +3392,7 @@ declare module "../src/routes/_index/components/toast-dialog/css+page.marko" { declare module "../src/routes/_index/components/toggle-button/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/toggle-button"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7178,17 +3403,7 @@ declare module "../src/routes/_index/components/toggle-button/+page.marko" { declare module "../src/routes/_index/components/toggle-button/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/toggle-button/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7199,17 +3414,7 @@ declare module "../src/routes/_index/components/toggle-button/accessibility+page declare module "../src/routes/_index/components/toggle-button/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/toggle-button/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7220,17 +3425,7 @@ declare module "../src/routes/_index/components/toggle-button/css+page.marko" { declare module "../src/routes/_index/components/toggle-button-group/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/toggle-button-group"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7241,19 +3436,8 @@ declare module "../src/routes/_index/components/toggle-button-group/+page.marko" declare module "../src/routes/_index/components/toggle-button-group/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/components/toggle-button-group/accessibility"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/components/toggle-button-group/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7263,17 +3447,7 @@ declare module "../src/routes/_index/components/toggle-button-group/accessibilit declare module "../src/routes/_index/components/toggle-button-group/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/toggle-button-group/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7284,17 +3458,7 @@ declare module "../src/routes/_index/components/toggle-button-group/css+page.mar declare module "../src/routes/_index/components/tokens/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/tokens"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7305,17 +3469,7 @@ declare module "../src/routes/_index/components/tokens/+page.marko" { declare module "../src/routes/_index/components/tokens/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/tokens/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7326,17 +3480,7 @@ declare module "../src/routes/_index/components/tokens/css+page.marko" { declare module "../src/routes/_index/components/tooltip/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/tooltip"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7347,17 +3491,7 @@ declare module "../src/routes/_index/components/tooltip/+page.marko" { declare module "../src/routes/_index/components/tooltip/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/tooltip/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7368,17 +3502,7 @@ declare module "../src/routes/_index/components/tooltip/accessibility+page.marko declare module "../src/routes/_index/components/tooltip/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/tooltip/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7389,17 +3513,7 @@ declare module "../src/routes/_index/components/tooltip/css+page.marko" { declare module "../src/routes/_index/components/tourtip/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/tourtip"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7410,17 +3524,7 @@ declare module "../src/routes/_index/components/tourtip/+page.marko" { declare module "../src/routes/_index/components/tourtip/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/tourtip/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7431,17 +3535,7 @@ declare module "../src/routes/_index/components/tourtip/accessibility+page.marko declare module "../src/routes/_index/components/tourtip/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/tourtip/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7452,17 +3546,7 @@ declare module "../src/routes/_index/components/tourtip/css+page.marko" { declare module "../src/routes/_index/components/typography/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/typography"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7473,17 +3557,7 @@ declare module "../src/routes/_index/components/typography/+page.marko" { declare module "../src/routes/_index/components/typography/accessibility+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/typography/accessibility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7494,17 +3568,7 @@ declare module "../src/routes/_index/components/typography/accessibility+page.ma declare module "../src/routes/_index/components/typography/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/typography/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7515,17 +3579,7 @@ declare module "../src/routes/_index/components/typography/css+page.marko" { declare module "../src/routes/_index/components/utility/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/utility"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7536,17 +3590,7 @@ declare module "../src/routes/_index/components/utility/+page.marko" { declare module "../src/routes/_index/components/utility/css+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/components/utility/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7557,17 +3601,7 @@ declare module "../src/routes/_index/components/utility/css+page.marko" { declare module "../src/routes/_index/guides/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/guides"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7578,17 +3612,7 @@ declare module "../src/routes/_index/guides/+page.marko" { declare module "../src/routes/_index/guides/animation+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/guides/animation"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7599,17 +3623,7 @@ declare module "../src/routes/_index/guides/animation+page.marko" { declare module "../src/routes/_index/guides/page-grid+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/guides/page-grid"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7620,17 +3634,7 @@ declare module "../src/routes/_index/guides/page-grid+page.marko" { declare module "../src/routes/_index/guides/skeleton+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/guides/skeleton"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7641,17 +3645,7 @@ declare module "../src/routes/_index/guides/skeleton+page.marko" { declare module "../src/routes/_index/guides/theming+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/guides/theming"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7662,19 +3656,8 @@ declare module "../src/routes/_index/guides/theming+page.marko" { declare module "../src/routes/guide-examples/page-grid-blog-stretchy-nested/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/page-grid-blog-stretchy-nested"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/page-grid-blog-stretchy-nested"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7684,19 +3667,8 @@ declare module "../src/routes/guide-examples/page-grid-blog-stretchy-nested/+pag declare module "../src/routes/guide-examples/page-grid-blog-stretchy-subgrid/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/page-grid-blog-stretchy-subgrid"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/page-grid-blog-stretchy-subgrid"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7706,17 +3678,7 @@ declare module "../src/routes/guide-examples/page-grid-blog-stretchy-subgrid/+pa declare module "../src/routes/guide-examples/page-grid-pricing/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Routes["/guide-examples/page-grid-pricing"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; @@ -7727,19 +3689,8 @@ declare module "../src/routes/guide-examples/page-grid-pricing/+page.marko" { declare module "../src/routes/guide-examples/skeleton-examples/buffered/example-1/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/skeleton-examples/buffered/example-1"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/skeleton-examples/buffered/example-1"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7749,19 +3700,8 @@ declare module "../src/routes/guide-examples/skeleton-examples/buffered/example- declare module "../src/routes/guide-examples/skeleton-examples/csr/example-1/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/skeleton-examples/csr/example-1"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/skeleton-examples/csr/example-1"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7771,19 +3711,8 @@ declare module "../src/routes/guide-examples/skeleton-examples/csr/example-1/+pa declare module "../src/routes/guide-examples/skeleton-examples/csr/example-2/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/skeleton-examples/csr/example-2"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/skeleton-examples/csr/example-2"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7793,19 +3722,8 @@ declare module "../src/routes/guide-examples/skeleton-examples/csr/example-2/+pa declare module "../src/routes/guide-examples/skeleton-examples/csr/example-3/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/skeleton-examples/csr/example-3"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/skeleton-examples/csr/example-3"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7815,19 +3733,8 @@ declare module "../src/routes/guide-examples/skeleton-examples/csr/example-3/+pa declare module "../src/routes/guide-examples/skeleton-examples/csr/example-4/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/skeleton-examples/csr/example-4"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/skeleton-examples/csr/example-4"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7837,19 +3744,8 @@ declare module "../src/routes/guide-examples/skeleton-examples/csr/example-4/+pa declare module "../src/routes/guide-examples/skeleton-examples/in-order/example-1a/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/skeleton-examples/in-order/example-1a"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/skeleton-examples/in-order/example-1a"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7859,19 +3755,8 @@ declare module "../src/routes/guide-examples/skeleton-examples/in-order/example- declare module "../src/routes/guide-examples/skeleton-examples/in-order/example-1b/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/skeleton-examples/in-order/example-1b"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/skeleton-examples/in-order/example-1b"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7881,19 +3766,8 @@ declare module "../src/routes/guide-examples/skeleton-examples/in-order/example- declare module "../src/routes/guide-examples/skeleton-examples/in-order/example-2a/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/skeleton-examples/in-order/example-2a"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/skeleton-examples/in-order/example-2a"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7903,19 +3777,8 @@ declare module "../src/routes/guide-examples/skeleton-examples/in-order/example- declare module "../src/routes/guide-examples/skeleton-examples/in-order/example-2b/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/skeleton-examples/in-order/example-2b"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/skeleton-examples/in-order/example-2b"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7925,19 +3788,8 @@ declare module "../src/routes/guide-examples/skeleton-examples/in-order/example- declare module "../src/routes/guide-examples/skeleton-examples/out-of-order/example-1/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/skeleton-examples/out-of-order/example-1"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/skeleton-examples/out-of-order/example-1"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7947,19 +3799,8 @@ declare module "../src/routes/guide-examples/skeleton-examples/out-of-order/exam declare module "../src/routes/guide-examples/skeleton-examples/out-of-order/example-2/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/skeleton-examples/out-of-order/example-2"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/skeleton-examples/out-of-order/example-2"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7969,19 +3810,8 @@ declare module "../src/routes/guide-examples/skeleton-examples/out-of-order/exam declare module "../src/routes/guide-examples/skeleton-examples/out-of-order/example-3/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/skeleton-examples/out-of-order/example-3"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/skeleton-examples/out-of-order/example-3"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -7991,19 +3821,8 @@ declare module "../src/routes/guide-examples/skeleton-examples/out-of-order/exam declare module "../src/routes/guide-examples/skeleton-examples/out-of-order/example-4/+page.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/skeleton-examples/out-of-order/example-4"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/skeleton-examples/out-of-order/example-4"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -8012,324 +3831,10 @@ declare module "../src/routes/guide-examples/skeleton-examples/out-of-order/exam } declare module "../src/routes/_index/+layout.marko" { - export interface Input extends Run.LayoutInput< - typeof import("../src/routes/_index/+layout.marko") - > {} - namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = Run.Routes[ - | "/" - | "/evo-css-components" - | "/evo-marko-components" - | "/evo-react-components" - | "/sitemap" - | "/accessibility" - | "/accessibility/anti-patterns" - | "/accessibility/anti-patterns/disabling-pinch-to-zoom" - | "/accessibility/anti-patterns/hand-cursor-on-buttons" - | "/accessibility/anti-patterns/javascript-href" - | "/accessibility/anti-patterns/layout-table" - | "/accessibility/anti-patterns/non-interactive-hover" - | "/accessibility/anti-patterns/open-new-window" - | "/accessibility/anti-patterns/setting-focus-on-page-load" - | "/accessibility/anti-patterns/tabindex-itis" - | "/accessibility/anti-patterns/title-tooltip" - | "/accessibility/misc" - | "/accessibility/misc/aria-essentials" - | "/accessibility/misc/component-naming-scheme" - | "/accessibility/misc/faq" - | "/accessibility/patterns" - | "/accessibility/patterns/description-list" - | "/accessibility/patterns/fake-menu-button" - | "/accessibility/patterns/fake-tabs" - | "/accessibility/patterns/footnote" - | "/accessibility/patterns/form" - | "/accessibility/patterns/form-validation" - | "/accessibility/patterns/heading" - | "/accessibility/patterns/image" - | "/accessibility/patterns/input-dialog" - | "/accessibility/patterns/input-meter" - | "/accessibility/patterns/input-validation" - | "/accessibility/patterns/popover" - | "/accessibility/patterns/pulldown-list" - | "/accessibility/patterns/region" - | "/accessibility/patterns/skip-navigation" - | "/accessibility/patterns/table-cell" - | "/accessibility/patterns/time" - | "/accessibility/techniques" - | "/accessibility/techniques/active-descendant" - | "/accessibility/techniques/alternative-text" - | "/accessibility/techniques/ambiguous-label" - | "/accessibility/techniques/background-icon" - | "/accessibility/techniques/keyboard-interface" - | "/accessibility/techniques/keyboard-trap" - | "/accessibility/techniques/live-region" - | "/accessibility/techniques/offscreen-text" - | "/accessibility/techniques/roving-tabindex" - | "/accessibility/techniques/skip-to-main-content" - | "/accessibility/testing" - | "/accessibility/testing/checklist" - | "/accessibility/testing/known-issues" - | "/components" - | "/components/accordion" - | "/components/accordion/accessibility" - | "/components/accordion/css" - | "/components/alert-dialog" - | "/components/alert-dialog/accessibility" - | "/components/alert-dialog/css" - | "/components/avatar" - | "/components/avatar/accessibility" - | "/components/avatar/css" - | "/components/badge" - | "/components/badge/accessibility" - | "/components/badge/css" - | "/components/breadcrumbs" - | "/components/breadcrumbs/accessibility" - | "/components/breadcrumbs/css" - | "/components/button" - | "/components/button/accessibility" - | "/components/button/css" - | "/components/button/marko" - | "/components/button/react" - | "/components/calendar" - | "/components/calendar/accessibility" - | "/components/calendar/css" - | "/components/card" - | "/components/card/accessibility" - | "/components/card/css" - | "/components/carousel" - | "/components/carousel/accessibility" - | "/components/carousel/css" - | "/components/ccd" - | "/components/ccd/accessibility" - | "/components/ccd/css" - | "/components/chart-legend" - | "/components/chart-legend/accessibility" - | "/components/chart-legend/css" - | "/components/checkbox" - | "/components/checkbox/accessibility" - | "/components/checkbox/css" - | "/components/chip" - | "/components/chip/accessibility" - | "/components/chip/css" - | "/components/chips-combobox" - | "/components/chips-combobox/accessibility" - | "/components/chips-combobox/css" - | "/components/combobox" - | "/components/combobox/accessibility" - | "/components/combobox/css" - | "/components/confirm-dialog" - | "/components/confirm-dialog/accessibility" - | "/components/confirm-dialog/css" - | "/components/date-textbox" - | "/components/date-textbox/accessibility" - | "/components/date-textbox/css" - | "/components/details" - | "/components/details/accessibility" - | "/components/details/css" - | "/components/dialog" - | "/components/dialog/accessibility" - | "/components/dialog/css" - | "/components/dialog/js" - | "/components/donut-chart" - | "/components/donut-chart/accessibility" - | "/components/donut-chart/css" - | "/components/education-notice" - | "/components/education-notice/accessibility" - | "/components/education-notice/css" - | "/components/eek" - | "/components/eek/accessibility" - | "/components/eek/css" - | "/components/field" - | "/components/field/accessibility" - | "/components/field/css" - | "/components/file-input" - | "/components/file-input/accessibility" - | "/components/file-input/css" - | "/components/file-preview-card" - | "/components/file-preview-card/accessibility" - | "/components/file-preview-card/css" - | "/components/file-preview-card-group" - | "/components/file-preview-card-group/accessibility" - | "/components/file-preview-card-group/css" - | "/components/filter-chip" - | "/components/filter-chip/accessibility" - | "/components/filter-chip/css" - | "/components/filter-input" - | "/components/filter-input/accessibility" - | "/components/filter-input/css" - | "/components/flag" - | "/components/flag/accessibility" - | "/components/flag/css" - | "/components/floating-label" - | "/components/floating-label/accessibility" - | "/components/floating-label/css" - | "/components/global" - | "/components/global/accessibility" - | "/components/global/css" - | "/components/icon" - | "/components/icon/accessibility" - | "/components/icon/css" - | "/components/icon-button" - | "/components/icon-button/accessibility" - | "/components/icon-button/css" - | "/components/image-placeholder" - | "/components/image-placeholder/accessibility" - | "/components/image-placeholder/css" - | "/components/infotip" - | "/components/infotip/accessibility" - | "/components/infotip/css" - | "/components/inline-notice" - | "/components/inline-notice/accessibility" - | "/components/inline-notice/css" - | "/components/item-tile" - | "/components/item-tile/accessibility" - | "/components/item-tile/css" - | "/components/item-tile-group" - | "/components/item-tile-group/accessibility" - | "/components/item-tile-group/css" - | "/components/layout-grid" - | "/components/layout-grid/accessibility" - | "/components/layout-grid/css" - | "/components/lightbox-dialog" - | "/components/lightbox-dialog/accessibility" - | "/components/lightbox-dialog/css" - | "/components/link" - | "/components/link/accessibility" - | "/components/link/css" - | "/components/list" - | "/components/list/accessibility" - | "/components/list/css" - | "/components/listbox" - | "/components/listbox/accessibility" - | "/components/listbox/css" - | "/components/listbox-button" - | "/components/listbox-button/accessibility" - | "/components/listbox-button/css" - | "/components/marketsans" - | "/components/marketsans/accessibility" - | "/components/marketsans/css" - | "/components/menu" - | "/components/menu/accessibility" - | "/components/menu/css" - | "/components/menu-button" - | "/components/menu-button/accessibility" - | "/components/menu-button/css" - | "/components/number-input" - | "/components/number-input/accessibility" - | "/components/number-input/css" - | "/components/page-grid" - | "/components/page-grid/accessibility" - | "/components/page-grid/css" - | "/components/page-notice" - | "/components/page-notice/accessibility" - | "/components/page-notice/css" - | "/components/pagination" - | "/components/pagination/accessibility" - | "/components/pagination/css" - | "/components/panel-dialog" - | "/components/panel-dialog/accessibility" - | "/components/panel-dialog/css" - | "/components/phone-input" - | "/components/phone-input/accessibility" - | "/components/phone-input/css" - | "/components/progress-bar" - | "/components/progress-bar/accessibility" - | "/components/progress-bar/css" - | "/components/progress-bar-expressive" - | "/components/progress-bar-expressive/accessibility" - | "/components/progress-bar-expressive/css" - | "/components/progress-spinner" - | "/components/progress-spinner/accessibility" - | "/components/progress-spinner/css" - | "/components/progress-stepper" - | "/components/progress-stepper/accessibility" - | "/components/progress-stepper/css" - | "/components/radio" - | "/components/radio/accessibility" - | "/components/radio/css" - | "/components/sass" - | "/components/section-notice" - | "/components/section-notice/accessibility" - | "/components/section-notice/css" - | "/components/section-title" - | "/components/section-title/accessibility" - | "/components/section-title/css" - | "/components/segmented-buttons" - | "/components/segmented-buttons/accessibility" - | "/components/segmented-buttons/css" - | "/components/select" - | "/components/select/accessibility" - | "/components/select/css" - | "/components/selection-chip" - | "/components/selection-chip/accessibility" - | "/components/signal" - | "/components/signal/accessibility" - | "/components/signal/css" - | "/components/skeleton" - | "/components/skeleton/accessibility" - | "/components/skeleton/css" - | "/components/snackbar-dialog" - | "/components/snackbar-dialog/accessibility" - | "/components/snackbar-dialog/css" - | "/components/split-button" - | "/components/split-button/accessibility" - | "/components/split-button/css" - | "/components/star-rating" - | "/components/star-rating/accessibility" - | "/components/star-rating/css" - | "/components/star-rating-select" - | "/components/star-rating-select/accessibility" - | "/components/star-rating-select/css" - | "/components/switch" - | "/components/switch/accessibility" - | "/components/switch/css" - | "/components/table" - | "/components/table/accessibility" - | "/components/table/css" - | "/components/tabs" - | "/components/tabs/accessibility" - | "/components/tabs/css" - | "/components/textbox" - | "/components/textbox/accessibility" - | "/components/textbox/css" - | "/components/toast-dialog" - | "/components/toast-dialog/accessibility" - | "/components/toast-dialog/css" - | "/components/toggle-button" - | "/components/toggle-button/accessibility" - | "/components/toggle-button/css" - | "/components/toggle-button-group" - | "/components/toggle-button-group/accessibility" - | "/components/toggle-button-group/css" - | "/components/tokens" - | "/components/tokens/css" - | "/components/tooltip" - | "/components/tooltip/accessibility" - | "/components/tooltip/css" - | "/components/tourtip" - | "/components/tourtip/accessibility" - | "/components/tourtip/css" - | "/components/typography" - | "/components/typography/accessibility" - | "/components/typography/css" - | "/components/utility" - | "/components/utility/css" - | "/guides" - | "/guides/animation" - | "/guides/page-grid" - | "/guides/skeleton" - | "/guides/theming"]; + export interface Input extends Run.LayoutInput {} + namespace MarkoRun { + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/" | "/evo-css-components" | "/evo-marko-components" | "/evo-react-components" | "/sitemap" | "/accessibility" | "/accessibility/anti-patterns" | "/accessibility/anti-patterns/disabling-pinch-to-zoom" | "/accessibility/anti-patterns/hand-cursor-on-buttons" | "/accessibility/anti-patterns/javascript-href" | "/accessibility/anti-patterns/layout-table" | "/accessibility/anti-patterns/non-interactive-hover" | "/accessibility/anti-patterns/open-new-window" | "/accessibility/anti-patterns/setting-focus-on-page-load" | "/accessibility/anti-patterns/tabindex-itis" | "/accessibility/anti-patterns/title-tooltip" | "/accessibility/misc" | "/accessibility/misc/aria-essentials" | "/accessibility/misc/component-naming-scheme" | "/accessibility/misc/faq" | "/accessibility/patterns" | "/accessibility/patterns/description-list" | "/accessibility/patterns/fake-menu-button" | "/accessibility/patterns/fake-tabs" | "/accessibility/patterns/footnote" | "/accessibility/patterns/form" | "/accessibility/patterns/form-validation" | "/accessibility/patterns/heading" | "/accessibility/patterns/image" | "/accessibility/patterns/input-dialog" | "/accessibility/patterns/input-meter" | "/accessibility/patterns/input-validation" | "/accessibility/patterns/popover" | "/accessibility/patterns/pulldown-list" | "/accessibility/patterns/region" | "/accessibility/patterns/skip-navigation" | "/accessibility/patterns/table-cell" | "/accessibility/patterns/time" | "/accessibility/techniques" | "/accessibility/techniques/active-descendant" | "/accessibility/techniques/alternative-text" | "/accessibility/techniques/ambiguous-label" | "/accessibility/techniques/background-icon" | "/accessibility/techniques/keyboard-interface" | "/accessibility/techniques/keyboard-trap" | "/accessibility/techniques/live-region" | "/accessibility/techniques/offscreen-text" | "/accessibility/techniques/roving-tabindex" | "/accessibility/techniques/skip-to-main-content" | "/accessibility/testing" | "/accessibility/testing/checklist" | "/accessibility/testing/known-issues" | "/components" | "/components/accordion" | "/components/accordion/accessibility" | "/components/accordion/css" | "/components/alert-dialog" | "/components/alert-dialog/accessibility" | "/components/alert-dialog/css" | "/components/avatar" | "/components/avatar/accessibility" | "/components/avatar/css" | "/components/badge" | "/components/badge/accessibility" | "/components/badge/css" | "/components/breadcrumbs" | "/components/breadcrumbs/accessibility" | "/components/breadcrumbs/css" | "/components/button" | "/components/button/accessibility" | "/components/button/css" | "/components/button/marko" | "/components/button/react" | "/components/calendar" | "/components/calendar/accessibility" | "/components/calendar/css" | "/components/card" | "/components/card/accessibility" | "/components/card/css" | "/components/carousel" | "/components/carousel/accessibility" | "/components/carousel/css" | "/components/ccd" | "/components/ccd/accessibility" | "/components/ccd/css" | "/components/chart-legend" | "/components/chart-legend/accessibility" | "/components/chart-legend/css" | "/components/checkbox" | "/components/checkbox/accessibility" | "/components/checkbox/css" | "/components/chip" | "/components/chip/accessibility" | "/components/chip/css" | "/components/chips-combobox" | "/components/chips-combobox/accessibility" | "/components/chips-combobox/css" | "/components/combobox" | "/components/combobox/accessibility" | "/components/combobox/css" | "/components/confirm-dialog" | "/components/confirm-dialog/accessibility" | "/components/confirm-dialog/css" | "/components/date-textbox" | "/components/date-textbox/accessibility" | "/components/date-textbox/css" | "/components/details" | "/components/details/accessibility" | "/components/details/css" | "/components/dialog" | "/components/dialog/accessibility" | "/components/dialog/css" | "/components/dialog/js" | "/components/donut-chart" | "/components/donut-chart/accessibility" | "/components/donut-chart/css" | "/components/education-notice" | "/components/education-notice/accessibility" | "/components/education-notice/css" | "/components/eek" | "/components/eek/accessibility" | "/components/eek/css" | "/components/field" | "/components/field/accessibility" | "/components/field/css" | "/components/file-input" | "/components/file-input/accessibility" | "/components/file-input/css" | "/components/file-preview-card" | "/components/file-preview-card/accessibility" | "/components/file-preview-card/css" | "/components/file-preview-card-group" | "/components/file-preview-card-group/accessibility" | "/components/file-preview-card-group/css" | "/components/filter-chip" | "/components/filter-chip/accessibility" | "/components/filter-chip/css" | "/components/filter-input" | "/components/filter-input/accessibility" | "/components/filter-input/css" | "/components/flag" | "/components/flag/accessibility" | "/components/flag/css" | "/components/floating-label" | "/components/floating-label/accessibility" | "/components/floating-label/css" | "/components/global" | "/components/global/accessibility" | "/components/global/css" | "/components/icon" | "/components/icon/accessibility" | "/components/icon/css" | "/components/icon-button" | "/components/icon-button/accessibility" | "/components/icon-button/css" | "/components/image-placeholder" | "/components/image-placeholder/accessibility" | "/components/image-placeholder/css" | "/components/infotip" | "/components/infotip/accessibility" | "/components/infotip/css" | "/components/inline-notice" | "/components/inline-notice/accessibility" | "/components/inline-notice/css" | "/components/item-tile" | "/components/item-tile/accessibility" | "/components/item-tile/css" | "/components/item-tile-group" | "/components/item-tile-group/accessibility" | "/components/item-tile-group/css" | "/components/layout-grid" | "/components/layout-grid/accessibility" | "/components/layout-grid/css" | "/components/lightbox-dialog" | "/components/lightbox-dialog/accessibility" | "/components/lightbox-dialog/css" | "/components/link" | "/components/link/accessibility" | "/components/link/css" | "/components/list" | "/components/list/accessibility" | "/components/list/css" | "/components/listbox" | "/components/listbox/accessibility" | "/components/listbox/css" | "/components/listbox-button" | "/components/listbox-button/accessibility" | "/components/listbox-button/css" | "/components/marketsans" | "/components/marketsans/accessibility" | "/components/marketsans/css" | "/components/menu" | "/components/menu/accessibility" | "/components/menu/css" | "/components/menu-button" | "/components/menu-button/accessibility" | "/components/menu-button/css" | "/components/number-input" | "/components/number-input/accessibility" | "/components/number-input/css" | "/components/page-grid" | "/components/page-grid/accessibility" | "/components/page-grid/css" | "/components/page-notice" | "/components/page-notice/accessibility" | "/components/page-notice/css" | "/components/pagination" | "/components/pagination/accessibility" | "/components/pagination/css" | "/components/panel-dialog" | "/components/panel-dialog/accessibility" | "/components/panel-dialog/css" | "/components/phone-input" | "/components/phone-input/accessibility" | "/components/phone-input/css" | "/components/progress-bar" | "/components/progress-bar/accessibility" | "/components/progress-bar/css" | "/components/progress-bar-expressive" | "/components/progress-bar-expressive/accessibility" | "/components/progress-bar-expressive/css" | "/components/progress-spinner" | "/components/progress-spinner/accessibility" | "/components/progress-spinner/css" | "/components/progress-stepper" | "/components/progress-stepper/accessibility" | "/components/progress-stepper/css" | "/components/radio" | "/components/radio/accessibility" | "/components/radio/css" | "/components/sass" | "/components/section-notice" | "/components/section-notice/accessibility" | "/components/section-notice/css" | "/components/section-title" | "/components/section-title/accessibility" | "/components/section-title/css" | "/components/segmented-buttons" | "/components/segmented-buttons/accessibility" | "/components/segmented-buttons/css" | "/components/select" | "/components/select/accessibility" | "/components/select/css" | "/components/selection-chip" | "/components/selection-chip/accessibility" | "/components/signal" | "/components/signal/accessibility" | "/components/signal/css" | "/components/skeleton" | "/components/skeleton/accessibility" | "/components/skeleton/css" | "/components/snackbar-dialog" | "/components/snackbar-dialog/accessibility" | "/components/snackbar-dialog/css" | "/components/split-button" | "/components/split-button/accessibility" | "/components/split-button/css" | "/components/star-rating" | "/components/star-rating/accessibility" | "/components/star-rating/css" | "/components/star-rating-select" | "/components/star-rating-select/accessibility" | "/components/star-rating-select/css" | "/components/switch" | "/components/switch/accessibility" | "/components/switch/css" | "/components/table" | "/components/table/accessibility" | "/components/table/css" | "/components/tabs" | "/components/tabs/accessibility" | "/components/tabs/css" | "/components/textbox" | "/components/textbox/accessibility" | "/components/textbox/css" | "/components/toast-dialog" | "/components/toast-dialog/accessibility" | "/components/toast-dialog/css" | "/components/toggle-button" | "/components/toggle-button/accessibility" | "/components/toggle-button/css" | "/components/toggle-button-group" | "/components/toggle-button-group/accessibility" | "/components/toggle-button-group/css" | "/components/tokens" | "/components/tokens/css" | "/components/tooltip" | "/components/tooltip/accessibility" | "/components/tooltip/css" | "/components/tourtip" | "/components/tourtip/accessibility" | "/components/tourtip/css" | "/components/typography" | "/components/typography/accessibility" | "/components/typography/css" | "/components/utility" | "/components/utility/css" | "/guides" | "/guides/animation" | "/guides/page-grid" | "/guides/skeleton" | "/guides/theming"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -8338,69 +3843,10 @@ declare module "../src/routes/_index/+layout.marko" { } declare module "../src/routes/_index/accessibility/+layout.marko" { - export interface Input extends Run.LayoutInput< - typeof import("../src/routes/_index/accessibility/+layout.marko") - > {} - namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = Run.Routes[ - | "/accessibility" - | "/accessibility/anti-patterns" - | "/accessibility/anti-patterns/disabling-pinch-to-zoom" - | "/accessibility/anti-patterns/hand-cursor-on-buttons" - | "/accessibility/anti-patterns/javascript-href" - | "/accessibility/anti-patterns/layout-table" - | "/accessibility/anti-patterns/non-interactive-hover" - | "/accessibility/anti-patterns/open-new-window" - | "/accessibility/anti-patterns/setting-focus-on-page-load" - | "/accessibility/anti-patterns/tabindex-itis" - | "/accessibility/anti-patterns/title-tooltip" - | "/accessibility/misc" - | "/accessibility/misc/aria-essentials" - | "/accessibility/misc/component-naming-scheme" - | "/accessibility/misc/faq" - | "/accessibility/patterns" - | "/accessibility/patterns/description-list" - | "/accessibility/patterns/fake-menu-button" - | "/accessibility/patterns/fake-tabs" - | "/accessibility/patterns/footnote" - | "/accessibility/patterns/form" - | "/accessibility/patterns/form-validation" - | "/accessibility/patterns/heading" - | "/accessibility/patterns/image" - | "/accessibility/patterns/input-dialog" - | "/accessibility/patterns/input-meter" - | "/accessibility/patterns/input-validation" - | "/accessibility/patterns/popover" - | "/accessibility/patterns/pulldown-list" - | "/accessibility/patterns/region" - | "/accessibility/patterns/skip-navigation" - | "/accessibility/patterns/table-cell" - | "/accessibility/patterns/time" - | "/accessibility/techniques" - | "/accessibility/techniques/active-descendant" - | "/accessibility/techniques/alternative-text" - | "/accessibility/techniques/ambiguous-label" - | "/accessibility/techniques/background-icon" - | "/accessibility/techniques/keyboard-interface" - | "/accessibility/techniques/keyboard-trap" - | "/accessibility/techniques/live-region" - | "/accessibility/techniques/offscreen-text" - | "/accessibility/techniques/roving-tabindex" - | "/accessibility/techniques/skip-to-main-content" - | "/accessibility/testing" - | "/accessibility/testing/checklist" - | "/accessibility/testing/known-issues"]; + export interface Input extends Run.LayoutInput {} + namespace MarkoRun { + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/accessibility" | "/accessibility/anti-patterns" | "/accessibility/anti-patterns/disabling-pinch-to-zoom" | "/accessibility/anti-patterns/hand-cursor-on-buttons" | "/accessibility/anti-patterns/javascript-href" | "/accessibility/anti-patterns/layout-table" | "/accessibility/anti-patterns/non-interactive-hover" | "/accessibility/anti-patterns/open-new-window" | "/accessibility/anti-patterns/setting-focus-on-page-load" | "/accessibility/anti-patterns/tabindex-itis" | "/accessibility/anti-patterns/title-tooltip" | "/accessibility/misc" | "/accessibility/misc/aria-essentials" | "/accessibility/misc/component-naming-scheme" | "/accessibility/misc/faq" | "/accessibility/patterns" | "/accessibility/patterns/description-list" | "/accessibility/patterns/fake-menu-button" | "/accessibility/patterns/fake-tabs" | "/accessibility/patterns/footnote" | "/accessibility/patterns/form" | "/accessibility/patterns/form-validation" | "/accessibility/patterns/heading" | "/accessibility/patterns/image" | "/accessibility/patterns/input-dialog" | "/accessibility/patterns/input-meter" | "/accessibility/patterns/input-validation" | "/accessibility/patterns/popover" | "/accessibility/patterns/pulldown-list" | "/accessibility/patterns/region" | "/accessibility/patterns/skip-navigation" | "/accessibility/patterns/table-cell" | "/accessibility/patterns/time" | "/accessibility/techniques" | "/accessibility/techniques/active-descendant" | "/accessibility/techniques/alternative-text" | "/accessibility/techniques/ambiguous-label" | "/accessibility/techniques/background-icon" | "/accessibility/techniques/keyboard-interface" | "/accessibility/techniques/keyboard-trap" | "/accessibility/techniques/live-region" | "/accessibility/techniques/offscreen-text" | "/accessibility/techniques/roving-tabindex" | "/accessibility/techniques/skip-to-main-content" | "/accessibility/testing" | "/accessibility/testing/checklist" | "/accessibility/testing/known-issues"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -8409,267 +3855,10 @@ declare module "../src/routes/_index/accessibility/+layout.marko" { } declare module "../src/routes/_index/components/+layout.marko" { - export interface Input extends Run.LayoutInput< - typeof import("../src/routes/_index/components/+layout.marko") - > {} - namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = Run.Routes[ - | "/components" - | "/components/accordion" - | "/components/accordion/accessibility" - | "/components/accordion/css" - | "/components/alert-dialog" - | "/components/alert-dialog/accessibility" - | "/components/alert-dialog/css" - | "/components/avatar" - | "/components/avatar/accessibility" - | "/components/avatar/css" - | "/components/badge" - | "/components/badge/accessibility" - | "/components/badge/css" - | "/components/breadcrumbs" - | "/components/breadcrumbs/accessibility" - | "/components/breadcrumbs/css" - | "/components/button" - | "/components/button/accessibility" - | "/components/button/css" - | "/components/button/marko" - | "/components/button/react" - | "/components/calendar" - | "/components/calendar/accessibility" - | "/components/calendar/css" - | "/components/card" - | "/components/card/accessibility" - | "/components/card/css" - | "/components/carousel" - | "/components/carousel/accessibility" - | "/components/carousel/css" - | "/components/ccd" - | "/components/ccd/accessibility" - | "/components/ccd/css" - | "/components/chart-legend" - | "/components/chart-legend/accessibility" - | "/components/chart-legend/css" - | "/components/checkbox" - | "/components/checkbox/accessibility" - | "/components/checkbox/css" - | "/components/chip" - | "/components/chip/accessibility" - | "/components/chip/css" - | "/components/chips-combobox" - | "/components/chips-combobox/accessibility" - | "/components/chips-combobox/css" - | "/components/combobox" - | "/components/combobox/accessibility" - | "/components/combobox/css" - | "/components/confirm-dialog" - | "/components/confirm-dialog/accessibility" - | "/components/confirm-dialog/css" - | "/components/date-textbox" - | "/components/date-textbox/accessibility" - | "/components/date-textbox/css" - | "/components/details" - | "/components/details/accessibility" - | "/components/details/css" - | "/components/dialog" - | "/components/dialog/accessibility" - | "/components/dialog/css" - | "/components/dialog/js" - | "/components/donut-chart" - | "/components/donut-chart/accessibility" - | "/components/donut-chart/css" - | "/components/education-notice" - | "/components/education-notice/accessibility" - | "/components/education-notice/css" - | "/components/eek" - | "/components/eek/accessibility" - | "/components/eek/css" - | "/components/field" - | "/components/field/accessibility" - | "/components/field/css" - | "/components/file-input" - | "/components/file-input/accessibility" - | "/components/file-input/css" - | "/components/file-preview-card" - | "/components/file-preview-card/accessibility" - | "/components/file-preview-card/css" - | "/components/file-preview-card-group" - | "/components/file-preview-card-group/accessibility" - | "/components/file-preview-card-group/css" - | "/components/filter-chip" - | "/components/filter-chip/accessibility" - | "/components/filter-chip/css" - | "/components/filter-input" - | "/components/filter-input/accessibility" - | "/components/filter-input/css" - | "/components/flag" - | "/components/flag/accessibility" - | "/components/flag/css" - | "/components/floating-label" - | "/components/floating-label/accessibility" - | "/components/floating-label/css" - | "/components/global" - | "/components/global/accessibility" - | "/components/global/css" - | "/components/icon" - | "/components/icon/accessibility" - | "/components/icon/css" - | "/components/icon-button" - | "/components/icon-button/accessibility" - | "/components/icon-button/css" - | "/components/image-placeholder" - | "/components/image-placeholder/accessibility" - | "/components/image-placeholder/css" - | "/components/infotip" - | "/components/infotip/accessibility" - | "/components/infotip/css" - | "/components/inline-notice" - | "/components/inline-notice/accessibility" - | "/components/inline-notice/css" - | "/components/item-tile" - | "/components/item-tile/accessibility" - | "/components/item-tile/css" - | "/components/item-tile-group" - | "/components/item-tile-group/accessibility" - | "/components/item-tile-group/css" - | "/components/layout-grid" - | "/components/layout-grid/accessibility" - | "/components/layout-grid/css" - | "/components/lightbox-dialog" - | "/components/lightbox-dialog/accessibility" - | "/components/lightbox-dialog/css" - | "/components/link" - | "/components/link/accessibility" - | "/components/link/css" - | "/components/list" - | "/components/list/accessibility" - | "/components/list/css" - | "/components/listbox" - | "/components/listbox/accessibility" - | "/components/listbox/css" - | "/components/listbox-button" - | "/components/listbox-button/accessibility" - | "/components/listbox-button/css" - | "/components/marketsans" - | "/components/marketsans/accessibility" - | "/components/marketsans/css" - | "/components/menu" - | "/components/menu/accessibility" - | "/components/menu/css" - | "/components/menu-button" - | "/components/menu-button/accessibility" - | "/components/menu-button/css" - | "/components/number-input" - | "/components/number-input/accessibility" - | "/components/number-input/css" - | "/components/page-grid" - | "/components/page-grid/accessibility" - | "/components/page-grid/css" - | "/components/page-notice" - | "/components/page-notice/accessibility" - | "/components/page-notice/css" - | "/components/pagination" - | "/components/pagination/accessibility" - | "/components/pagination/css" - | "/components/panel-dialog" - | "/components/panel-dialog/accessibility" - | "/components/panel-dialog/css" - | "/components/phone-input" - | "/components/phone-input/accessibility" - | "/components/phone-input/css" - | "/components/progress-bar" - | "/components/progress-bar/accessibility" - | "/components/progress-bar/css" - | "/components/progress-bar-expressive" - | "/components/progress-bar-expressive/accessibility" - | "/components/progress-bar-expressive/css" - | "/components/progress-spinner" - | "/components/progress-spinner/accessibility" - | "/components/progress-spinner/css" - | "/components/progress-stepper" - | "/components/progress-stepper/accessibility" - | "/components/progress-stepper/css" - | "/components/radio" - | "/components/radio/accessibility" - | "/components/radio/css" - | "/components/sass" - | "/components/section-notice" - | "/components/section-notice/accessibility" - | "/components/section-notice/css" - | "/components/section-title" - | "/components/section-title/accessibility" - | "/components/section-title/css" - | "/components/segmented-buttons" - | "/components/segmented-buttons/accessibility" - | "/components/segmented-buttons/css" - | "/components/select" - | "/components/select/accessibility" - | "/components/select/css" - | "/components/selection-chip" - | "/components/selection-chip/accessibility" - | "/components/signal" - | "/components/signal/accessibility" - | "/components/signal/css" - | "/components/skeleton" - | "/components/skeleton/accessibility" - | "/components/skeleton/css" - | "/components/snackbar-dialog" - | "/components/snackbar-dialog/accessibility" - | "/components/snackbar-dialog/css" - | "/components/split-button" - | "/components/split-button/accessibility" - | "/components/split-button/css" - | "/components/star-rating" - | "/components/star-rating/accessibility" - | "/components/star-rating/css" - | "/components/star-rating-select" - | "/components/star-rating-select/accessibility" - | "/components/star-rating-select/css" - | "/components/switch" - | "/components/switch/accessibility" - | "/components/switch/css" - | "/components/table" - | "/components/table/accessibility" - | "/components/table/css" - | "/components/tabs" - | "/components/tabs/accessibility" - | "/components/tabs/css" - | "/components/textbox" - | "/components/textbox/accessibility" - | "/components/textbox/css" - | "/components/toast-dialog" - | "/components/toast-dialog/accessibility" - | "/components/toast-dialog/css" - | "/components/toggle-button" - | "/components/toggle-button/accessibility" - | "/components/toggle-button/css" - | "/components/toggle-button-group" - | "/components/toggle-button-group/accessibility" - | "/components/toggle-button-group/css" - | "/components/tokens" - | "/components/tokens/css" - | "/components/tooltip" - | "/components/tooltip/accessibility" - | "/components/tooltip/css" - | "/components/tourtip" - | "/components/tourtip/accessibility" - | "/components/tourtip/css" - | "/components/typography" - | "/components/typography/accessibility" - | "/components/typography/css" - | "/components/utility" - | "/components/utility/css"]; + export interface Input extends Run.LayoutInput {} + namespace MarkoRun { + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/components" | "/components/accordion" | "/components/accordion/accessibility" | "/components/accordion/css" | "/components/alert-dialog" | "/components/alert-dialog/accessibility" | "/components/alert-dialog/css" | "/components/avatar" | "/components/avatar/accessibility" | "/components/avatar/css" | "/components/badge" | "/components/badge/accessibility" | "/components/badge/css" | "/components/breadcrumbs" | "/components/breadcrumbs/accessibility" | "/components/breadcrumbs/css" | "/components/button" | "/components/button/accessibility" | "/components/button/css" | "/components/button/marko" | "/components/button/react" | "/components/calendar" | "/components/calendar/accessibility" | "/components/calendar/css" | "/components/card" | "/components/card/accessibility" | "/components/card/css" | "/components/carousel" | "/components/carousel/accessibility" | "/components/carousel/css" | "/components/ccd" | "/components/ccd/accessibility" | "/components/ccd/css" | "/components/chart-legend" | "/components/chart-legend/accessibility" | "/components/chart-legend/css" | "/components/checkbox" | "/components/checkbox/accessibility" | "/components/checkbox/css" | "/components/chip" | "/components/chip/accessibility" | "/components/chip/css" | "/components/chips-combobox" | "/components/chips-combobox/accessibility" | "/components/chips-combobox/css" | "/components/combobox" | "/components/combobox/accessibility" | "/components/combobox/css" | "/components/confirm-dialog" | "/components/confirm-dialog/accessibility" | "/components/confirm-dialog/css" | "/components/date-textbox" | "/components/date-textbox/accessibility" | "/components/date-textbox/css" | "/components/details" | "/components/details/accessibility" | "/components/details/css" | "/components/dialog" | "/components/dialog/accessibility" | "/components/dialog/css" | "/components/dialog/js" | "/components/donut-chart" | "/components/donut-chart/accessibility" | "/components/donut-chart/css" | "/components/education-notice" | "/components/education-notice/accessibility" | "/components/education-notice/css" | "/components/eek" | "/components/eek/accessibility" | "/components/eek/css" | "/components/field" | "/components/field/accessibility" | "/components/field/css" | "/components/file-input" | "/components/file-input/accessibility" | "/components/file-input/css" | "/components/file-preview-card" | "/components/file-preview-card/accessibility" | "/components/file-preview-card/css" | "/components/file-preview-card-group" | "/components/file-preview-card-group/accessibility" | "/components/file-preview-card-group/css" | "/components/filter-chip" | "/components/filter-chip/accessibility" | "/components/filter-chip/css" | "/components/filter-input" | "/components/filter-input/accessibility" | "/components/filter-input/css" | "/components/flag" | "/components/flag/accessibility" | "/components/flag/css" | "/components/floating-label" | "/components/floating-label/accessibility" | "/components/floating-label/css" | "/components/global" | "/components/global/accessibility" | "/components/global/css" | "/components/icon" | "/components/icon/accessibility" | "/components/icon/css" | "/components/icon-button" | "/components/icon-button/accessibility" | "/components/icon-button/css" | "/components/image-placeholder" | "/components/image-placeholder/accessibility" | "/components/image-placeholder/css" | "/components/infotip" | "/components/infotip/accessibility" | "/components/infotip/css" | "/components/inline-notice" | "/components/inline-notice/accessibility" | "/components/inline-notice/css" | "/components/item-tile" | "/components/item-tile/accessibility" | "/components/item-tile/css" | "/components/item-tile-group" | "/components/item-tile-group/accessibility" | "/components/item-tile-group/css" | "/components/layout-grid" | "/components/layout-grid/accessibility" | "/components/layout-grid/css" | "/components/lightbox-dialog" | "/components/lightbox-dialog/accessibility" | "/components/lightbox-dialog/css" | "/components/link" | "/components/link/accessibility" | "/components/link/css" | "/components/list" | "/components/list/accessibility" | "/components/list/css" | "/components/listbox" | "/components/listbox/accessibility" | "/components/listbox/css" | "/components/listbox-button" | "/components/listbox-button/accessibility" | "/components/listbox-button/css" | "/components/marketsans" | "/components/marketsans/accessibility" | "/components/marketsans/css" | "/components/menu" | "/components/menu/accessibility" | "/components/menu/css" | "/components/menu-button" | "/components/menu-button/accessibility" | "/components/menu-button/css" | "/components/number-input" | "/components/number-input/accessibility" | "/components/number-input/css" | "/components/page-grid" | "/components/page-grid/accessibility" | "/components/page-grid/css" | "/components/page-notice" | "/components/page-notice/accessibility" | "/components/page-notice/css" | "/components/pagination" | "/components/pagination/accessibility" | "/components/pagination/css" | "/components/panel-dialog" | "/components/panel-dialog/accessibility" | "/components/panel-dialog/css" | "/components/phone-input" | "/components/phone-input/accessibility" | "/components/phone-input/css" | "/components/progress-bar" | "/components/progress-bar/accessibility" | "/components/progress-bar/css" | "/components/progress-bar-expressive" | "/components/progress-bar-expressive/accessibility" | "/components/progress-bar-expressive/css" | "/components/progress-spinner" | "/components/progress-spinner/accessibility" | "/components/progress-spinner/css" | "/components/progress-stepper" | "/components/progress-stepper/accessibility" | "/components/progress-stepper/css" | "/components/radio" | "/components/radio/accessibility" | "/components/radio/css" | "/components/sass" | "/components/section-notice" | "/components/section-notice/accessibility" | "/components/section-notice/css" | "/components/section-title" | "/components/section-title/accessibility" | "/components/section-title/css" | "/components/segmented-buttons" | "/components/segmented-buttons/accessibility" | "/components/segmented-buttons/css" | "/components/select" | "/components/select/accessibility" | "/components/select/css" | "/components/selection-chip" | "/components/selection-chip/accessibility" | "/components/signal" | "/components/signal/accessibility" | "/components/signal/css" | "/components/skeleton" | "/components/skeleton/accessibility" | "/components/skeleton/css" | "/components/snackbar-dialog" | "/components/snackbar-dialog/accessibility" | "/components/snackbar-dialog/css" | "/components/split-button" | "/components/split-button/accessibility" | "/components/split-button/css" | "/components/star-rating" | "/components/star-rating/accessibility" | "/components/star-rating/css" | "/components/star-rating-select" | "/components/star-rating-select/accessibility" | "/components/star-rating-select/css" | "/components/switch" | "/components/switch/accessibility" | "/components/switch/css" | "/components/table" | "/components/table/accessibility" | "/components/table/css" | "/components/tabs" | "/components/tabs/accessibility" | "/components/tabs/css" | "/components/textbox" | "/components/textbox/accessibility" | "/components/textbox/css" | "/components/toast-dialog" | "/components/toast-dialog/accessibility" | "/components/toast-dialog/css" | "/components/toggle-button" | "/components/toggle-button/accessibility" | "/components/toggle-button/css" | "/components/toggle-button-group" | "/components/toggle-button-group/accessibility" | "/components/toggle-button-group/css" | "/components/tokens" | "/components/tokens/css" | "/components/tooltip" | "/components/tooltip/accessibility" | "/components/tooltip/css" | "/components/tourtip" | "/components/tourtip/accessibility" | "/components/tourtip/css" | "/components/typography" | "/components/typography/accessibility" | "/components/typography/css" | "/components/utility" | "/components/utility/css"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -8678,27 +3867,10 @@ declare module "../src/routes/_index/components/+layout.marko" { } declare module "../src/routes/_index/guides/+layout.marko" { - export interface Input extends Run.LayoutInput< - typeof import("../src/routes/_index/guides/+layout.marko") - > {} + export interface Input extends Run.LayoutInput {} namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = Run.Routes[ - | "/guides" - | "/guides/animation" - | "/guides/page-grid" - | "/guides/skeleton" - | "/guides/theming"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guides" | "/guides/animation" | "/guides/page-grid" | "/guides/skeleton" | "/guides/theming"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -8707,38 +3879,10 @@ declare module "../src/routes/_index/guides/+layout.marko" { } declare module "../src/routes/guide-examples/+layout.marko" { - export interface Input extends Run.LayoutInput< - typeof import("../src/routes/guide-examples/+layout.marko") - > {} - namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = Run.Routes[ - | "/guide-examples/page-grid-blog-stretchy-nested" - | "/guide-examples/page-grid-blog-stretchy-subgrid" - | "/guide-examples/page-grid-pricing" - | "/guide-examples/skeleton-examples/buffered/example-1" - | "/guide-examples/skeleton-examples/csr/example-1" - | "/guide-examples/skeleton-examples/csr/example-2" - | "/guide-examples/skeleton-examples/csr/example-3" - | "/guide-examples/skeleton-examples/csr/example-4" - | "/guide-examples/skeleton-examples/in-order/example-1a" - | "/guide-examples/skeleton-examples/in-order/example-1b" - | "/guide-examples/skeleton-examples/in-order/example-2a" - | "/guide-examples/skeleton-examples/in-order/example-2b" - | "/guide-examples/skeleton-examples/out-of-order/example-1" - | "/guide-examples/skeleton-examples/out-of-order/example-2" - | "/guide-examples/skeleton-examples/out-of-order/example-3" - | "/guide-examples/skeleton-examples/out-of-order/example-4"]; + export interface Input extends Run.LayoutInput {} + namespace MarkoRun { + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/page-grid-blog-stretchy-nested" | "/guide-examples/page-grid-blog-stretchy-subgrid" | "/guide-examples/page-grid-pricing" | "/guide-examples/skeleton-examples/buffered/example-1" | "/guide-examples/skeleton-examples/csr/example-1" | "/guide-examples/skeleton-examples/csr/example-2" | "/guide-examples/skeleton-examples/csr/example-3" | "/guide-examples/skeleton-examples/csr/example-4" | "/guide-examples/skeleton-examples/in-order/example-1a" | "/guide-examples/skeleton-examples/in-order/example-1b" | "/guide-examples/skeleton-examples/in-order/example-2a" | "/guide-examples/skeleton-examples/in-order/example-2b" | "/guide-examples/skeleton-examples/out-of-order/example-1" | "/guide-examples/skeleton-examples/out-of-order/example-2" | "/guide-examples/skeleton-examples/out-of-order/example-3" | "/guide-examples/skeleton-examples/out-of-order/example-4"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -8747,23 +3891,10 @@ declare module "../src/routes/guide-examples/+layout.marko" { } declare module "../src/routes/guide-examples/page-grid-blog-stretchy-nested/+layout.marko" { - export interface Input extends Run.LayoutInput< - typeof import("../src/routes/guide-examples/page-grid-blog-stretchy-nested/+layout.marko") - > {} + export interface Input extends Run.LayoutInput {} namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; - export type Route = - Run.Routes["/guide-examples/page-grid-blog-stretchy-nested"]; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/guide-examples/page-grid-blog-stretchy-nested"]; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ @@ -8773,17 +3904,7 @@ declare module "../src/routes/guide-examples/page-grid-blog-stretchy-nested/+lay declare module "../src/routes/+404.marko" { namespace MarkoRun { - export { - NotHandled, - NotMatched, - GetPaths, - PostPaths, - GetablePath, - GetableHref, - PostablePath, - PostableHref, - Platform, - }; + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; export type Route = Run.Route; export type Context = Run.MultiRouteContext & Marko.Global; export type Handler = Run.HandlerLike; diff --git a/.prettierignore b/.prettierignore index 8d35d1f9eec..f85566ca95d 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,2 +1,28 @@ # Generated changelogs are managed by Changesets packages/*/CHANGELOG.md + +# TEMP: reverting merge formatting churn +.claude/hooks/session-start-context.js +.marko-run/routes.d.ts +CLAUDE.md +src/routes/_index/accessibility/techniques/live-region+page.marko +src/routes/_index/components/chart-legend/accessibility+page.marko +src/routes/_index/components/chip/accessibility+page.marko +src/routes/_index/components/education-notice/accessibility+page.marko +src/routes/_index/components/field/accessibility+page.marko +src/routes/_index/components/field/css+page.marko +src/routes/_index/components/file-preview-card-group/accessibility+page.marko +src/routes/_index/components/file-preview-card/accessibility+page.marko +src/routes/_index/components/filter-chip/accessibility+page.marko +src/routes/_index/components/filter-chip/css+page.marko +src/routes/_index/components/floating-label/accessibility+page.marko +src/routes/_index/components/image-placeholder/accessibility+page.marko +src/routes/_index/components/inline-notice/accessibility+page.marko +src/routes/_index/components/list/accessibility+page.marko +src/routes/_index/components/page-notice/accessibility+page.marko +src/routes/_index/components/panel-dialog/accessibility+page.marko +src/routes/_index/components/section-notice/accessibility+page.marko +src/routes/_index/components/section-title/accessibility+page.marko +src/routes/_index/components/selection-chip/accessibility+page.marko +src/routes/_index/components/split-button/accessibility+page.marko +src/routes/_index/components/split-button/css+page.marko diff --git a/CLAUDE.md b/CLAUDE.md index d24aea56dc5..debb1ea6977 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -110,7 +110,6 @@ Declare ``, ``, ``, and other tag variables close to where th **Marko 6 AttrTag content:** When already spreading an AttrTag onto a native element with no other body content, use self-closing — ``. **Marko 6 AttrTag slot types — pick the right generic:** - - ✅ Body-only slot: `action?: Marko.AttrTag<{ content?: Marko.Body }>` — accepts arbitrary child content - ❌ Empty generic: `action?: Marko.AttrTag<{}>` — rejects children at compile time (TS2353) - ✅ Typed-props slot: `image?: Marko.AttrTag>` — slot has specific props diff --git a/packages/ebayui-core/.prettierignore b/packages/ebayui-core/.prettierignore index c6d70554522..3012e55dbfb 100644 --- a/packages/ebayui-core/.prettierignore +++ b/packages/ebayui-core/.prettierignore @@ -4,4 +4,4 @@ dist/ docs/ _cdn/ __snapshots__/ -!src/node_modules \ No newline at end of file +!src/node_modulesCHANGELOG.md diff --git a/src/routes/_index/accessibility/techniques/live-region+page.marko b/src/routes/_index/accessibility/techniques/live-region+page.marko index f398a78339b..00d57d6378b 100644 --- a/src/routes/_index/accessibility/techniques/live-region+page.marko +++ b/src/routes/_index/accessibility/techniques/live-region+page.marko @@ -2,18 +2,18 @@ import { urls } from "../../../../data";

Live Region

- If an area of a page is dynamically updated without a full-page reload, we${" "} + If an area of a page is dynamically updated without a full-page reload, we might - ${" "}(see${" "} + (see FAQ: When Should A Live Region Be Used? - ${" "}) wish to inform the user that there was a change. + ) wish to inform the user that there was a change.

- The live region${" "} + The live region must - ${" "}exist in the DOM before its content changes. Mounting a live region at + exist in the DOM before its content changes. Mounting a live region at the same time as its message may not trigger an announcement. Render a persistent, empty live region and add the message when the update occurs.

@@ -43,9 +43,9 @@ import { urls } from "../../../../data"; and interactive elements.

- [1] It is very important to note that any CSS display operation${" "} + [1] It is very important to note that any CSS display operation must - ${" "}happen on a descendant node of the live region, and not on the live + happen on a descendant node of the live region, and not on the live region node itself.

diff --git a/src/routes/_index/components/chart-legend/accessibility+page.marko b/src/routes/_index/components/chart-legend/accessibility+page.marko index 7ed4add7cc1..c7988ced874 100644 --- a/src/routes/_index/components/chart-legend/accessibility+page.marko +++ b/src/routes/_index/components/chart-legend/accessibility+page.marko @@ -6,14 +6,14 @@ import { urls } from "../../../../data";

Best Practices

Use a description list so each legend key is programmatically associated - with its value. The legend${" "} + with its value. The legend must - ${" "}have an accessible name that identifies the chart it describes. + have an accessible name that identifies the chart it describes.

- Color${" "} + Color must not - ${" "}be the only way to associate a legend entry with chart data. Provide + be the only way to associate a legend entry with chart data. Provide matching text, patterns, or symbols in the chart.

Interaction Design

diff --git a/src/routes/_index/components/chip/accessibility+page.marko b/src/routes/_index/components/chip/accessibility+page.marko index 81d4830d018..91965af3bd0 100644 --- a/src/routes/_index/components/chip/accessibility+page.marko +++ b/src/routes/_index/components/chip/accessibility+page.marko @@ -2,149 +2,152 @@ import "../../../../sass/accessibility.scss"; import { urls } from "../../../../data";
-

Chip Accessibility

-

Best Practices

-

Static Chip

-

- A static chip contains non-interactive text for readonly content. It${" "} - must not - ${" "}contain interactive elements. -

-

Removable Chip

-

- A removable chip${" "} - must - ${" "}use a native button adjacent to the chip text for its delete action. - Activating the button${" "} - must - ${" "}remove the entire chip from the page. -

-

- The delete button${" "} - must - ${" "}have an${" "} - aria-label - ${" "}that describes the action and use${" "} - aria-describedby - ${" "}to associate the action with the visible chip value. The decorative - delete icon${" "} - must - ${" "}use${" "} - aria-hidden="true" - ${" "}. -

-

- Use a${" "} - - selection chip - - ${" "}or${" "} - - filter chip - - ${" "}when the chip itself toggles a value or filter. Removable chips are - primarily used in the${" "} - - chips combobox - - ${" "}pattern. -

-

Interaction Design

-

Keyboard

-

- Pressing${" "} - TAB - ${" "}key${" "} - must - ${" "}move focus to the delete button unless it is disabled. -

-

- Pressing${" "} - ENTER - ${" "}or${" "} - SPACEBAR - ${" "}key${" "} - must - ${" "}activate the delete button. After the chip is removed, the application${" "} - must - ${" "}move focus to the next interactive element. -

-

- In a chips combobox, focus${" "} - must - ${" "}move to the textbox when no next chip is available. In other chip - groups, when no next chip is available, focus${" "} - must - ${" "}move to a nearby static heading within the component. The heading${" "} - must - ${" "}use${" "} - tabindex="-1" - ${" "}to receive programmatic focus without entering the sequential tab - order. -

-

Screen Reader

-

- A screen reader${" "} - must - ${" "}announce the delete action, button role, and associated chip value. - Chip text and the delete button${" "} - must - ${" "}remain available to screen readers when the button is disabled. -

-

Pointer

-

- Clicking or tapping the delete button${" "} - must - ${" "}remove the entire chip. -

-

ARIA Reference

-
- - - - - - - - - - - - - - - - - - - - -
AttributeDescription
- aria-label - - Applied to the delete button to provide an accessible name describing - the action. -
- aria-describedby - - Applied to the delete button to reference the visible chip value. -
- aria-hidden="true" - - Applied to the decorative delete icon to hide it from assistive - technologies. -
-

Further Reading

- +

Chip Accessibility

+

Best Practices

+

Static Chip

+

+ A static chip contains non-interactive text for readonly content. It + must not + contain interactive elements. +

+

Removable Chip

+

+ A removable chip + must + use a native button adjacent to the chip text for its delete + action. Activating the button + must + remove the entire chip from the page. +

+

+ The delete button + must + have an + aria-label + that describes the action and use + aria-describedby + to associate the action with the visible chip value. The decorative + delete icon + must + use + aria-hidden="true" + . +

+

+ Use a + + selection chip + + or + + filter chip + + when the chip itself toggles a value or filter. Removable chips are + primarily used in the + + chips combobox + + pattern. +

+

Interaction Design

+

Keyboard

+

+ Pressing + TAB + key + must + move focus to the delete button unless it is disabled. +

+

+ Pressing + ENTER + or + SPACEBAR + key + must + activate the delete button. After the chip is removed, the + application + must + move focus to the next interactive element. +

+

+ In a chips combobox, focus + must + move to the textbox when no next chip is available. In other chip + groups, when no next chip is available, focus + must + move to a nearby static heading within the component. The + heading + must + use + tabindex="-1" + to receive programmatic focus without entering the sequential tab + order. +

+

Screen Reader

+

+ A screen reader + must + announce the delete action, button role, and associated chip value. + Chip text and the delete button + must + remain available to screen readers when the button is disabled. +

+

Pointer

+

+ Clicking or tapping the delete button + must + remove the entire chip. +

+

ARIA Reference

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
+ aria-label + + Applied to the delete button to provide an accessible name + describing the action. +
+ aria-describedby + + Applied to the delete button to reference the visible chip + value. +
+ aria-hidden="true" + + Applied to the decorative delete icon to hide it from + assistive technologies. +
+

Further Reading

+ diff --git a/src/routes/_index/components/education-notice/accessibility+page.marko b/src/routes/_index/components/education-notice/accessibility+page.marko index 52c3b5ab835..90a9484794c 100644 --- a/src/routes/_index/components/education-notice/accessibility+page.marko +++ b/src/routes/_index/components/education-notice/accessibility+page.marko @@ -5,47 +5,46 @@ import { urls } from "../../../../data";

Education Notice Accessibility

Best Practices

- An education notice${" "} + An education notice must - ${" "}use a named region. Its title${" "} + use a named region. Its title must - ${" "}use the heading level that fits the page hierarchy. + use the heading level that fits the page hierarchy.

- An education notice${" "} + An education notice must not - ${" "}rely on color or an icon alone to convey meaning or tone. An icon${" "} + rely on color or an icon alone to convey meaning or tone. An icon should - ${" "}supplement the text to help communicate meaning and tone. + supplement the text to help communicate meaning and tone.

- A dismiss button${" "} + A dismiss button must - ${" "}have an accessible name such as "Close notice." Decorative action - icons${" "} + have an accessible name such as "Close notice." Decorative action icons must - ${" "}be hidden from assistive technology. + be hidden from assistive technology.

Interaction Design

Keyboard

TAB - ${" "}moves through notice links and buttons.${" "} + moves through notice links and buttons. ENTER - ${" "}activates links or buttons;${" "} + activates links or buttons; SPACEBAR - ${" "}also activates buttons. + also activates buttons.

Screen Reader

- A screen reader can navigate to the named notice region and reads its title, - message, and actions in source order. + A screen reader can navigate to the named notice region and reads its + title, message, and actions in source order.

Pointer

- Clicking or tapping an action activates it. Dismissing the notice${" "} + Clicking or tapping an action activates it. Dismissing the notice must not - ${" "}move focus unexpectedly. + move focus unexpectedly.

ARIA Reference

diff --git a/src/routes/_index/components/field/accessibility+page.marko b/src/routes/_index/components/field/accessibility+page.marko index 5fe45fc6ca4..8dc2d63bb16 100644 --- a/src/routes/_index/components/field/accessibility+page.marko +++ b/src/routes/_index/components/field/accessibility+page.marko @@ -6,54 +6,54 @@ import { urls } from "../../../../data";

Best Practices

The field component provides layout only. It does not automatically - associate labels, descriptions, or errors with a control. Applications${" "} + associate labels, descriptions, or errors with a control. Applications must - ${" "}provide those relationships. + provide those relationships.

- Every field${" "} + Every field must - ${" "}have a visible${" "} + have a visible label - ${" "}whose${" "} + whose for - ${" "}value matches the control ID. Group related fields with a${" "} + value matches the control ID. Group related fields with a fieldset - ${" "}and${" "} + and legend - ${" "}when the group label provides necessary context. + when the group label provides necessary context.

- Prefer a native${" "} + Prefer a native label - ${" "}with matching${" "} + with matching for - ${" "}and control ID. When a native label cannot be used, associate visible - text with${" "} + and control ID. When a native label cannot be used, associate visible + text with aria-labelledby - ${" "}. Use${" "} + . Use aria-label - ${" "}only when no visible label is available. Do not use${" "} + only when no visible label is available. Do not use aria-label - ${" "}to replace or override an associated visible label. + to replace or override an associated visible label.

- Supporting and error text${" "} + Supporting and error text must - ${" "}have an ID referenced by the control's${" "} + have an ID referenced by the control's aria-describedby - ${" "}. When more than one description applies, include each ID separated by - a space. Use native${" "} + . When more than one description applies, include each ID separated by + a space. Use native disabled - ${" "}and${" "} + and readonly - ${" "}attributes, and do not communicate state through styling alone. + attributes, and do not communicate state through styling alone.

Interaction Design

Keyboard

TAB - ${" "}moves focus through enabled field controls in DOM order. The field + moves focus through enabled field controls in DOM order. The field layout does not add tab stops.

Screen Reader

diff --git a/src/routes/_index/components/field/css+page.marko b/src/routes/_index/components/field/css+page.marko index ff2c5220840..06215c44928 100644 --- a/src/routes/_index/components/field/css+page.marko +++ b/src/routes/_index/components/field/css+page.marko @@ -5,23 +5,23 @@ Unstacked Field

- The${" "} + The field__label - ${" "}&${" "} + & field__control - ${" "}elements are inline by default, taking up only as much horizontal + elements are inline by default, taking up only as much horizontal space as they need.

- Multiple fields can be laid out inline by using the span tag with${" "} + Multiple fields can be laid out inline by using the span tag with field - ${" "}class, as per the example below. + class, as per the example below.

@@ -238,11 +238,11 @@

For a textarea, the label will be vertically aligned to the middle of the - field by default. Apply the${" "} + field by default. Apply the field--align-top - ${" "}modifier to align it to the top. + modifier to align it to the top.

@@ -273,11 +273,11 @@ Stacked Field

- For a label stacked above the control, use the${" "} + For a label stacked above the control, use the field__label--stacked - ${" "}element modifier. + element modifier.

Again, multiple fields can be laid out inline by using a span tag, as per @@ -502,15 +502,15 @@

The field label will honour any font-size cascade. Wrap the label and - control in a${" "} + control in a field__group - ${" "}element to maintain vertical alignment. + element to maintain vertical alignment.

NOTE - ${" "}: form controls do not inherit the font-size cascade. This is default + : form controls do not inherit the font-size cascade. This is default browser behaviour.

@@ -637,13 +637,13 @@ Disabled Field

- The disabled control is conveyed using the${" "} + The disabled control is conveyed using the disabled - ${" "}attribute. The value of a disabled control is${" "} + attribute. The value of a disabled control is not - ${" "}passed to the server. + passed to the server.

@@ -761,22 +761,22 @@

TIP: - ${" "}Disabled controls are exempt from${" "} + Disabled controls are exempt from WCAG colour contrast requirements - ${" "}. + .

Readonly Field

- A readonly control is conveyed using the${" "} + A readonly control is conveyed using the readonly - ${" "}attribute. The value of a readonly control is passed to the server. + attribute. The value of a readonly control is passed to the server.

@@ -864,17 +864,17 @@

A required field is conveyed visually with an asterisk, and non-visually - using the${" "} + using the aria-required - ${" "}property. + property.

@@ -888,7 +888,7 @@ @@ -918,7 +918,7 @@ @@ -932,7 +932,7 @@ @@ -963,26 +963,26 @@ Invalid Field

- An invalid control is conveyed${" "} + An invalid control is conveyed visually - ${" "}via a combination of red outline and some other indicator (usually - either text and/or an icon). The invalid state is conveyed${" "} + via a combination of red outline and some other indicator (usually + either text and/or an icon). The invalid state is conveyed non-visually - ${" "}using the${" "} + using the aria-invalid - ${" "}state. + state.

IMPORTANT: - ${" "}The example below shows the field with red border only. Do not forget - that${" "} + The example below shows the field with red border only. Do not forget + that colour should not be used as the only visual means of conveying information - ${" "}. A description and/or icon is also required. See next section for + . A description and/or icon is also required. See next section for more details.

@@ -1079,32 +1079,32 @@ validation error of the control.

- The${" "} + The field__description - ${" "}element defines some minimal styling, but does not dictate location or - layout. This element has modifiers for${" "} + element defines some minimal styling, but does not dictate location or + layout. This element has modifiers for confirmation - ${" "},${" "} + , information - ${" "}and${" "} + and attention - ${" "}, depending on the type of descriptive text (or icon). + , depending on the type of descriptive text (or icon).

TIP: - ${" "}The description element can be designated as an ARIA${" "} + The description element can be designated as an ARIA live-region - ${" "}if client-side updates occur. + if client-side updates occur.

Text on Side of Field

@@ -1150,19 +1150,19 @@

- To change the type of decription you would use${" "} + To change the type of decription you would use field__description--confirmation - ${" "},${" "} + , field__description--information - ${" "}, or${" "} + , or field__description--attention - ${" "}. + .

@@ -1298,15 +1298,15 @@

Text Above or Below Unstacked Field

A description can be added directly above and/or below the control by - utlising CSS table-layout via the${" "} + utlising CSS table-layout via the field--table - ${" "}modifier and${" "} + modifier and field__row - ${" "}elements. + elements.

@@ -1657,23 +1657,23 @@ Fluid Field

- Form control elements (such as${" "} + Form control elements (such as select - ${" "}and${" "} + and input - ${" "}) are inline-block by default, and will only use up as much of their + ) are inline-block by default, and will only use up as much of their parent's horizontal space as they need.

- For a stacked field the control must be set to 100% width (using the${" "} + For a stacked field the control must be set to 100% width (using the fluid - ${" "}utility class) to fill all available space. + utility class) to fill all available space.

@@ -1767,28 +1767,28 @@

The above example shows the fields in a flexbox layout. This layout is - created using the${" "} + created using the field-group - ${" "}helper class. Notice that each field is also set to fluid, in order to + helper class. Notice that each field is also set to fluid, in order to fill all available flexbox space (flexbox layout takes care of dividing the space evenly between fluid fields).

- If we set the form control width to 100% in an${" "} + If we set the form control width to 100% in an unstacked - ${" "}field, the control would flow to a new line${" "} + field, the control would flow to a new line below - ${" "}the label (effectively behaving like a stacked label). This behaviour - can be avoided by adding an additional${" "} + the label (effectively behaving like a stacked label). This behaviour + can be avoided by adding an additional field__group - ${" "}element to create flex layout${" "} + element to create flex layout inside - ${" "}of the field. + of the field.

@@ -1890,20 +1890,20 @@

TIP: - ${" "}You may want to experiment with sizes other than 100%, and also the - flexbox${" "} + You may want to experiment with sizes other than 100%, and also the + flexbox justify-content - ${" "}property. + property.

- For a fluid control and description, those elements can be wrapped in a${" "} + For a fluid control and description, those elements can be wrapped in a field__group - ${" "}container to create flex layout. + container to create flex layout.

@@ -2042,29 +2042,29 @@ A field may have a character count section typically under the input and aligned to the right.

- ${" "}This variant adds a top-level container that houses both the field + This variant adds a top-level container that houses both the field description and the character count, though field description or error is not - necessary.${" "} + necessary.

In order to be accessible, the character count should have a clipped element to describe what it is. At the same time, aria-describedby should be added - to the input element that points to the character count element. Finally,${" "} + to the input element that points to the character count element. Finally, aria-live - ${" "}should be off by default, but if it passes the current max characters, + should be off by default, but if it passes the current max characters, then it should be changed to polite. Once it goes back down below the max, it should go back to off.

Field with Character Count Only

- Character character can be added by utlising CSS grid via the${" "} + Character character can be added by utlising CSS grid via the field__description--group - ${" "}modifier and the addition of the relevant markup. By default if there + modifier and the addition of the relevant markup. By default if there is only one element in the group, it will align to the right

@@ -2087,7 +2087,7 @@
- 0 of 140${" "} + 0 of 140 charaters @@ -2114,7 +2114,7 @@
- 0 of 140${" "} + 0 of 140 charaters @@ -2152,7 +2152,7 @@ Field description or error - 0 of 140${" "} + 0 of 140 charaters @@ -2181,7 +2181,7 @@ Field description or error - 0 of 140${" "} + 0 of 140 charaters @@ -2217,7 +2217,7 @@ Field description or error - 0 of 140${" "} + 0 of 140 charaters @@ -2243,7 +2243,7 @@ Field description or error - 0 of 140${" "} + 0 of 140 charaters diff --git a/src/routes/_index/components/file-preview-card-group/accessibility+page.marko b/src/routes/_index/components/file-preview-card-group/accessibility+page.marko index 08d6adc2edf..b8f05c9c8e9 100644 --- a/src/routes/_index/components/file-preview-card-group/accessibility+page.marko +++ b/src/routes/_index/components/file-preview-card-group/accessibility+page.marko @@ -5,26 +5,26 @@ import { urls } from "../../../../data";

File Preview Card Group Accessibility

Best Practices

- A file preview card group${" "} + A file preview card group must - ${" "}use a semantic list, with each card in a list item. Each image${" "} + use a semantic list, with each card in a list item. Each image must - ${" "}have alternative text that identifies the file, unless the same + have alternative text that identifies the file, unless the same information is adjacent.

- Repeated card actions${" "} + Repeated card actions must - ${" "}have names that identify their target file. Decorative file and action - icons${" "} + have names that identify their target file. Decorative file and action + icons must - ${" "}be hidden from assistive technology. + be hidden from assistive technology.

Interaction Design

Keyboard

TAB - ${" "}moves through links and buttons in DOM order. The group itself does + moves through links and buttons in DOM order. The group itself does not add a tab stop.

Screen Reader

diff --git a/src/routes/_index/components/file-preview-card/accessibility+page.marko b/src/routes/_index/components/file-preview-card/accessibility+page.marko index b50791fb607..ede64a9e4e8 100644 --- a/src/routes/_index/components/file-preview-card/accessibility+page.marko +++ b/src/routes/_index/components/file-preview-card/accessibility+page.marko @@ -5,60 +5,60 @@ import { urls } from "../../../../data";

File Preview Card Accessibility

Best Practices

- File preview cards${" "} + File preview cards must - ${" "}contain the file name as part of their accessible name. The name may + contain the file name as part of their accessible name. The name may be displayed as text in the card or included as the alternative text for the preview image. If the file name is displayed visually, the preview image’s - alternative text${" "} + alternative text should - ${" "}be an empty string to avoid redundancy. + be an empty string to avoid redundancy.

- If a file is in the process of uploading, it${" "} + If a file is in the process of uploading, it should - ${" "}include a progress indicator with appropriate alternative text, e.g. + include a progress indicator with appropriate alternative text, e.g. “Uploading…” or “Busy.” It is not recommended to make the progress indicator a live region, as this can get noisy for multiple file upload. To convey - upload error states, follow${" "} + upload error states, follow form validation best practices - ${" "}and group similar errors into${" "} + and group similar errors into inline notices - ${" "}. + .

- Multiple file preview cards${" "} + Multiple file preview cards must - ${" "}be grouped in a list. If the number of visual files exceeds the - maximum display limit, a file preview card containing a “See more” button${" "} + be grouped in a list. If the number of visual files exceeds the + maximum display limit, a file preview card containing a “See more” button should - ${" "}be introduced as the last element in the list. + be introduced as the last element in the list.

Interaction Design

Keyboard

File preview cards themselves are not focusable or interactive.

- Their actions follow standard${" "} + Their actions follow standard button - ${" "}and${" "} + and menu button - ${" "}keyboard interaction. + keyboard interaction.

Screen Reader

- Action buttons${" "} + Action buttons must - ${" "}have accessible names. They${" "} + have accessible names. They should - ${" "}make it obvious to the user what file they are taking action on, + make it obvious to the user what file they are taking action on, either through an explicit aria-label or sufficient DOM context. For example, a cancel icon button could have an aria-label of “Cancel upload: my-document.jpg”, or an aria-label of simply “Cancel upload” when nested diff --git a/src/routes/_index/components/filter-chip/accessibility+page.marko b/src/routes/_index/components/filter-chip/accessibility+page.marko index 3f2d3880514..b4118730b47 100644 --- a/src/routes/_index/components/filter-chip/accessibility+page.marko +++ b/src/routes/_index/components/filter-chip/accessibility+page.marko @@ -2,145 +2,146 @@ import "../../../../sass/accessibility.scss"; import { urls } from "../../../../data";

-

Filter Chip Accessibility

-

Best Practices

-

- Use a native button when applying the filter updates content on the current - page. The button${" "} - must - ${" "}expose whether the filter is applied with${" "} - aria-pressed - ${" "}. -

-

- Use a link when applying the filter navigates to another page. An applied - link${" "} - must - ${" "}include clipped text that communicates the applied state. -

-

- A filter chip used as a menu button${" "} - must - ${" "}have a permanent visible label that describes its purpose, such as - "Brand: Yamaha" or "Brand: Yamaha (+3)." It${" "} - must - ${" "}expose whether the menu is open with${" "} - aria-expanded - ${" "}. -

-

- Decorative leading icons${" "} - must - ${" "}use${" "} - aria-hidden="true" - ${" "}. Expressive images that duplicate the visible chip text${" "} - must - ${" "}use an empty${" "} - alt - ${" "}attribute. -

-

Interaction Design

-

Keyboard

-

- Pressing${" "} - TAB - ${" "}key${" "} - must - ${" "}move focus to the filter chip unless it is disabled. -

-

- Pressing${" "} - ENTER - ${" "}or${" "} - SPACEBAR - ${" "}key on a button filter chip${" "} - must - ${" "}toggle its applied state. When used as a menu button, either key${" "} - must - ${" "}toggle its expanded state. -

-

- Pressing${" "} - ENTER - ${" "}key on a filter link${" "} - must - ${" "}navigate to the link destination. The destination page${" "} - must - ${" "}render the filter link in its new state. -

-

Screen Reader

-

- A screen reader${" "} - must - ${" "}announce the visible label, element role, and pressed state for a - button filter chip. For a filter link, it${" "} - must - ${" "}announce the clipped applied-state text when the filter is applied. -

-

- For a menu button filter chip, a screen reader${" "} - must - ${" "}announce the visible label, button role, and expanded or collapsed - state. -

-

Pointer

-

- Clicking or tapping a button filter chip${" "} - must - ${" "}toggle its applied state. When used as a menu button, it${" "} - must - ${" "}toggle its expanded state. Clicking or tapping a filter link${" "} - must - ${" "}navigate to the link destination. -

-

ARIA Reference

-
- - - - - - - - - - - - - - - - - - - - -
AttributeDescription
- aria-pressed - - Applied to a button filter chip to communicate whether the filter is - applied. -
- aria-expanded - - Applied to a menu button filter chip to communicate whether the - associated menu is open. -
- aria-hidden="true" - - Applied to decorative icons to hide them from assistive technologies. -
-

Further Reading

- +

Filter Chip Accessibility

+

Best Practices

+

+ Use a native button when applying the filter updates content on the + current page. The button + must + expose whether the filter is applied with + aria-pressed + . +

+

+ Use a link when applying the filter navigates to another page. An + applied link + must + include clipped text that communicates the applied state. +

+

+ A filter chip used as a menu button + must + have a permanent visible label that describes its purpose, such as + "Brand: Yamaha" or "Brand: Yamaha (+3)." It + must + expose whether the menu is open with + aria-expanded + . +

+

+ Decorative leading icons + must + use + aria-hidden="true" + . Expressive images that duplicate the visible chip text + must + use an empty + alt + attribute. +

+

Interaction Design

+

Keyboard

+

+ Pressing + TAB + key + must + move focus to the filter chip unless it is disabled. +

+

+ Pressing + ENTER + or + SPACEBAR + key on a button filter chip + must + toggle its applied state. When used as a menu button, either key + must + toggle its expanded state. +

+

+ Pressing + ENTER + key on a filter link + must + navigate to the link destination. The destination page + must + render the filter link in its new state. +

+

Screen Reader

+

+ A screen reader + must + announce the visible label, element role, and pressed state for a + button filter chip. For a filter link, it + must + announce the clipped applied-state text when the filter is applied. +

+

+ For a menu button filter chip, a screen reader + must + announce the visible label, button role, and expanded or collapsed + state. +

+

Pointer

+

+ Clicking or tapping a button filter chip + must + toggle its applied state. When used as a menu button, it + must + toggle its expanded state. Clicking or tapping a filter link + must + navigate to the link destination. +

+

ARIA Reference

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
+ aria-pressed + + Applied to a button filter chip to communicate whether the + filter is applied. +
+ aria-expanded + + Applied to a menu button filter chip to communicate whether + the associated menu is open. +
+ aria-hidden="true" + + Applied to decorative icons to hide them from assistive + technologies. +
+

Further Reading

+ diff --git a/src/routes/_index/components/filter-chip/css+page.marko b/src/routes/_index/components/filter-chip/css+page.marko index 3b7feedc069..c5ff9907369 100644 --- a/src/routes/_index/components/filter-chip/css+page.marko +++ b/src/routes/_index/components/filter-chip/css+page.marko @@ -7,16 +7,16 @@

- A button uses the${" "} + A button uses the aria-pressed - ${" "}state to convey application or non-application of the filter. For + state to convey application or non-application of the filter. For links, no special treatment is required for the unnapplied filter state.

- After filter chip is loaded in the dom, add${" "} + After filter chip is loaded in the dom, add filter-chip--animated - ${" "}so the animations can work. This only needs to be added for button + so the animations can work. This only needs to be added for button filter chips

@@ -62,9 +62,9 @@

- For the applied filter state, links do not support the${" "} + For the applied filter state, links do not support the aria-pressed - ${" "}property; therefore use clipped text to explictly convey that the + property; therefore use clipped text to explictly convey that the filter is applied.

@@ -83,7 +83,7 @@ - Football${" "} + Football - Filter Applied @@ -107,7 +107,7 @@ - Football${" "} + Football - Filter Applied @@ -119,9 +119,9 @@ Expressive Filter Chip

- Replace the icon with an image and use the${" "} + Replace the icon with an image and use the filter-chip--expressive - ${" "}modifier to create a more expressive filter chip. + modifier to create a more expressive filter chip.

@@ -211,7 +211,7 @@ alt=""> - Pet Supplies${" "} + Pet Supplies - Filter Applied @@ -244,7 +244,7 @@ alt=""> - Football${" "} + Football - Filter Applied @@ -290,12 +290,9 @@
-
-
diff --git a/src/routes/_index/components/split-button/accessibility+page.marko b/src/routes/_index/components/split-button/accessibility+page.marko index 231dc39c3e3..249c35d5d98 100644 --- a/src/routes/_index/components/split-button/accessibility+page.marko +++ b/src/routes/_index/components/split-button/accessibility+page.marko @@ -5,104 +5,104 @@ import { urls } from "../../../../data";

Split Button Accessibility

Best Practices

- The primary action and the menu button${" "} + The primary action and the menu button must - ${" "}be separate native buttons, so each has its own accessible label and + be separate native buttons, so each has its own accessible label and focus stop.

- A menu button’s accessible label${" "} + A menu button’s accessible label must - ${" "}reflect its function. When the menu button is icon-only, provide the - label via${" "} + reflect its function. When the menu button is icon-only, provide the + label via aria-label - ${" "}and hide the decorative icon from assistive technology. + and hide the decorative icon from assistive technology.

- Menu commands${" "} + Menu commands must - ${" "}have unique, descriptive labels. + have unique, descriptive labels.

Interaction Design

- Refer${" "} + Refer menu button - ${" "}and${" "} + and menu - ${" "}patterns. + patterns.

Keyboard

- Both buttons${" "} + Both buttons must - ${" "}be keyboard focusable. + be keyboard focusable.

TAB - ${" "}and${" "} + and SHIFT-TAB - ${" "}keys${" "} + keys must - ${" "}move keyboard focus between the primary action and the menu button. + move keyboard focus between the primary action and the menu button.

SPACEBAR - ${" "}or${" "} + or ENTER - ${" "}key on the primary button${" "} + key on the primary button must - ${" "}activate its action. + activate its action.

SPACEBAR - ${" "}or${" "} + or ENTER - ${" "}key on the menu button${" "} + key on the menu button must - ${" "}expand the menu, and keyboard focus${" "} + expand the menu, and keyboard focus must - ${" "}go to the first command. + go to the first command.

UP-ARROW - ${" "}and${" "} + and DOWN-ARROW - ${" "}keys${" "} + keys must - ${" "}navigate keyboard focus through commands via a roving tabindex. + navigate keyboard focus through commands via a roving tabindex.

ESC - ${" "}key${" "} + key must - ${" "}collapse the menu and return focus to the menu button. + collapse the menu and return focus to the menu button.

- Activating any command${" "} + Activating any command should - ${" "}collapse the menu (typically after a very short delay/transition). + collapse the menu (typically after a very short delay/transition).

Screen Reader

- Each button’s label${" "} + Each button’s label must - ${" "}be announced. + be announced.

- The menu button’s state${" "} + The menu button’s state must - ${" "}be announced (e.g. expanded or collapsed). + be announced (e.g. expanded or collapsed).

Pointer

Clicking the primary button runs its action. Clicking the menu button - expands or collapses the menu. Clicking any command${" "} + expands or collapses the menu. Clicking any command should - ${" "}collapse the menu. + collapse the menu.

ARIA Reference

@@ -118,11 +118,11 @@ import { urls } from "../../../../data"; role=menu @@ -139,10 +139,10 @@ import { urls } from "../../../../data"; aria-haspopup=true diff --git a/src/routes/_index/components/split-button/css+page.marko b/src/routes/_index/components/split-button/css+page.marko index 9663c2975aa..278a4ac1fa4 100644 --- a/src/routes/_index/components/split-button/css+page.marko +++ b/src/routes/_index/components/split-button/css+page.marko @@ -78,11 +78,11 @@

- Note the usage of${" "} + Note the usage of btn--split-start - ${" "}to denote the start of a split button sequence, and${" "} + to denote the start of a split button sequence, and btn--split-end - ${" "}to denote its end. + to denote its end.

From 3bca3b7a80b9109537fa3f483b0e7f3da77511dc Mon Sep 17 00:00:00 2001 From: HenriqueLimas Date: Thu, 3 Sep 2026 16:17:50 -0700 Subject: [PATCH 10/11] chore: restore ebayui-core changelog reformatted by the merge Co-authored-by: Cursor --- packages/ebayui-core/.prettierignore | 3 ++- packages/ebayui-core/CHANGELOG.md | 22 +++++++++++----------- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/packages/ebayui-core/.prettierignore b/packages/ebayui-core/.prettierignore index 3012e55dbfb..bd56b0e24f0 100644 --- a/packages/ebayui-core/.prettierignore +++ b/packages/ebayui-core/.prettierignore @@ -4,4 +4,5 @@ dist/ docs/ _cdn/ __snapshots__/ -!src/node_modulesCHANGELOG.md +!src/node_modules +CHANGELOG.md diff --git a/packages/ebayui-core/CHANGELOG.md b/packages/ebayui-core/CHANGELOG.md index db29262eecc..ac857846a8c 100644 --- a/packages/ebayui-core/CHANGELOG.md +++ b/packages/ebayui-core/CHANGELOG.md @@ -18,7 +18,7 @@ - [#757](https://github.com/eBay/evo-web/pull/757) [`3c02952`](https://github.com/eBay/evo-web/commit/3c02952c4ff2923284dddc791c2f2abc43727a33) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - fix(ebay-pagination): disabled prev/next links no longer navigate when clicked - When a `previous` or `next` pagination item has an `href` (link variant) and is marked `disabled`, the rendered `` element no longer includes the `href` attribute. The click handlers also now call `event.preventDefault()` when `aria-disabled` is set, providing defense-in-depth against navigation in both the Marko and React implementations. + When a `previous` or `next` pagination item has an `href` (link variant) and is marked `disabled`, the rendered `` element no longer includes the `href` attribute. The click handlers also now call `event.preventDefault()` when `aria-disabled` is set, providing defense-in-depth against navigation in both the Marko and React implementations. ## 16.11.1 @@ -60,9 +60,9 @@ - [#718](https://github.com/eBay/evo-web/pull/718) [`57d9fa1`](https://github.com/eBay/evo-web/commit/57d9fa102dff67c4dbd86950f60f2653a4ea2dc2) Thanks [@ArtBlue](https://github.com/ArtBlue)! - Add new icons: bank-of-america, capital-one, chase, citi, td, usaa, wells-fargo (colored, 32/24/18/12), pay-by-bank-be/de/fr/uk (colored, 24), ship-and-safety (24/16), tire (24/16), gift (20), ai-mobile (24/20/16), ai-summary (24/20/16), fast-forward (16), rewind (16), battery-waste (48), markdown (24/20/16), stop (24/20/16), skull (24/16/12), reply-chat (24/16/12), link (20/16), pin (12), pin-filled (12), home (20/16), locker (64/24/16), bids (12), promotion (12), selling (12), wire-transfer (24/16). - Update existing icons: ship-and-local (16), link (24), markdown (24/16). + Update existing icons: ship-and-local (16), link (24), markdown (24/16). - Closes #717 (sub-issues #543, #599, #680). + Closes #717 (sub-issues #543, #599, #680). - [#714](https://github.com/eBay/evo-web/pull/714) [`ce92606`](https://github.com/eBay/evo-web/commit/ce92606c2dfb59285de8bbb9c99c832d35505ebb) Thanks [@ArtBlue](https://github.com/ArtBlue)! - Deprecate `the-ebay-vault-24`, `the-ebay-vault-16`, `psa-16`, `psa-16-colored`, `psa-vault-16`, `psa-vault-16-colored`, `live-eye-16`, `live-eye-24`, `ebay-live-16`, `ebay-live-24` icons in favor of their renamed replacements. @@ -87,8 +87,8 @@ ### Patch Changes - [#699](https://github.com/eBay/evo-web/pull/699) [`c6f9113`](https://github.com/eBay/evo-web/commit/c6f91132215ba3eb05d8c488210accfb271c63ba) Thanks [@HenriqueLimas](https://github.com/HenriqueLimas)! - Fix test noise and flaky carousel scroll test. - - `@evo-web/react`: Guard `EvoIcon`'s missing-provider `console.warn` with `process.env.NODE_ENV === 'development'` so it is silent in Vitest (`NODE_ENV=test`) without removing the warning from development builds. - - `@ebay/ebayui-core`: Fix flaky `ebay-carousel` browser test — "when it is scrolled to the second slide" `beforeEach` was calling `waitForCarouselUpdate()` which resolved immediately from the init render's `move` event, before the 640 ms scroll debounce fired. Replaced with `vi.advanceTimersByTimeAsync(700)` to deterministically trigger the debounce and flush the resulting Marko re-render. + - `@evo-web/react`: Guard `EvoIcon`'s missing-provider `console.warn` with `process.env.NODE_ENV === 'development'` so it is silent in Vitest (`NODE_ENV=test`) without removing the warning from development builds. + - `@ebay/ebayui-core`: Fix flaky `ebay-carousel` browser test — "when it is scrolled to the second slide" `beforeEach` was calling `waitForCarouselUpdate()` which resolved immediately from the init render's `move` event, before the 640 ms scroll debounce fired. Replaced with `vi.advanceTimersByTimeAsync(700)` to deterministically trigger the debounce and flush the resulting Marko re-render. ## 16.7.5 @@ -128,9 +128,9 @@ - [#606](https://github.com/eBay/evo-web/pull/606) [`86c99fa`](https://github.com/eBay/evo-web/commit/86c99fa198805086c9c8377a000b0842597a51dd) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - feat(item-tile): add a11yExternalLinkText prop to EbayFilePreviewCard and EbayItemTile - When `a11yExternalLinkText` (`a11y-external-link-text` in Marko) is provided, the anchor tag renders with `target="_blank"` and `rel="noopener noreferrer"`, and a visually-hidden `` containing the text is appended inside the anchor for screen reader accessibility. + When `a11yExternalLinkText` (`a11y-external-link-text` in Marko) is provided, the anchor tag renders with `target="_blank"` and `rel="noopener noreferrer"`, and a visually-hidden `` containing the text is appended inside the anchor for screen reader accessibility. - Also fixes TypeScript typing on `EbayItemTileDescription` so the `as` prop accepts any element type (was limited to `

` element props). + Also fixes TypeScript typing on `EbayItemTileDescription` so the `as` prop accepts any element type (was limited to `

` element props). ## 16.6.1 @@ -145,9 +145,9 @@ - [#570](https://github.com/eBay/evo-web/pull/570) [`5d5eaf8`](https://github.com/eBay/evo-web/commit/5d5eaf8841903b600dff2db2eb9d805f472822cc) Thanks [@HenriqueLimas](https://github.com/HenriqueLimas)! - **@ebay/ui-core-react:** Align video component with Marko implementation and shaka-player v5 - refactor to declarative approach with createPortal, implement missing controls, fix icon re-rendering and autoplay behavior. - **@ebay/ebayui-core:** Add accessible button wrapper for play button. + **@ebay/ebayui-core:** Add accessible button wrapper for play button. - **@ebay/skin:** Add button reset styles for shaka-play-button. + **@ebay/skin:** Add button reset styles for shaka-play-button. ## 16.6.0 @@ -248,7 +248,7 @@ - [#413](https://github.com/eBay/evo-web/pull/413) [`df550f5`](https://github.com/eBay/evo-web/commit/df550f5f7d009511f37c4764d1981ca2959d77fa) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - fix(avatar): add alt="" to img for accessibility - Fixed accessibility issue where avatar images were announced twice by assistive technologies. The img element inside role="img" containers now has alt="" to prevent double announcement. + Fixed accessibility issue where avatar images were announced twice by assistive technologies. The img element inside role="img" containers now has alt="" to prevent double announcement. ## 16.0.0 @@ -421,7 +421,7 @@ - [#210](https://github.com/eBay/evo-web/pull/210) [`66463ee`](https://github.com/eBay/evo-web/commit/66463ee6cc8b07c6b65f616108daa4bafb663687) Thanks [@agliga](https://github.com/agliga)! - feat(chip): added selection and filter chip - Updated dependencies [[`05d3c40`](https://github.com/eBay/evo-web/commit/05d3c4023776de1e2ac1f4c46b8e19dec2e3ddf6)]: - - @ebay/skin@19.11.0 + - @ebay/skin@19.11.0 ## 15.8.1 From e3dbed9f3b2e0a288d57313f764b635bcbe58fb6 Mon Sep 17 00:00:00 2001 From: HenriqueLimas Date: Thu, 3 Sep 2026 16:18:01 -0700 Subject: [PATCH 11/11] chore: drop the temporary Prettier ignore entries Co-authored-by: Cursor --- .prettierignore | 26 -------------------------- packages/ebayui-core/.prettierignore | 3 +-- 2 files changed, 1 insertion(+), 28 deletions(-) diff --git a/.prettierignore b/.prettierignore index f85566ca95d..8d35d1f9eec 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,28 +1,2 @@ # Generated changelogs are managed by Changesets packages/*/CHANGELOG.md - -# TEMP: reverting merge formatting churn -.claude/hooks/session-start-context.js -.marko-run/routes.d.ts -CLAUDE.md -src/routes/_index/accessibility/techniques/live-region+page.marko -src/routes/_index/components/chart-legend/accessibility+page.marko -src/routes/_index/components/chip/accessibility+page.marko -src/routes/_index/components/education-notice/accessibility+page.marko -src/routes/_index/components/field/accessibility+page.marko -src/routes/_index/components/field/css+page.marko -src/routes/_index/components/file-preview-card-group/accessibility+page.marko -src/routes/_index/components/file-preview-card/accessibility+page.marko -src/routes/_index/components/filter-chip/accessibility+page.marko -src/routes/_index/components/filter-chip/css+page.marko -src/routes/_index/components/floating-label/accessibility+page.marko -src/routes/_index/components/image-placeholder/accessibility+page.marko -src/routes/_index/components/inline-notice/accessibility+page.marko -src/routes/_index/components/list/accessibility+page.marko -src/routes/_index/components/page-notice/accessibility+page.marko -src/routes/_index/components/panel-dialog/accessibility+page.marko -src/routes/_index/components/section-notice/accessibility+page.marko -src/routes/_index/components/section-title/accessibility+page.marko -src/routes/_index/components/selection-chip/accessibility+page.marko -src/routes/_index/components/split-button/accessibility+page.marko -src/routes/_index/components/split-button/css+page.marko diff --git a/packages/ebayui-core/.prettierignore b/packages/ebayui-core/.prettierignore index bd56b0e24f0..c6d70554522 100644 --- a/packages/ebayui-core/.prettierignore +++ b/packages/ebayui-core/.prettierignore @@ -4,5 +4,4 @@ dist/ docs/ _cdn/ __snapshots__/ -!src/node_modules -CHANGELOG.md +!src/node_modules \ No newline at end of file

- Informs assistive technology that this is a${" "} + Informs assistive technology that this is a menu - ${" "}containing menuitems. + containing menuitems.
- Informs assistive technology that the menu button controls a${" "} + Informs assistive technology that the menu button controls a popup menu - ${" "}. + .