Cleanup assets
@@ -15,7 +15,7 @@ import { useMessages, useTranslation } from "../../../contexts/MessagesContext";
|
||||
import Chip from "../../../components/controls/Chip";
|
||||
import IncrementerBlock from "../../../components/controls/IncrementerBlock";
|
||||
import Upload from "../../../components/controls/Upload";
|
||||
import { getAssetPath } from "../../../../lib/assetUtils";
|
||||
import { ASSETS, getAssetPath } from "../../../../lib/assetUtils";
|
||||
import ApplicableScopeField from "./ApplicableScopeField";
|
||||
import InputLabel from "../../../components/type/InputLabel";
|
||||
import type { CustomMethodCardFieldBlock } from "../../../../lib/create/customMethodCardFieldBlocks";
|
||||
@@ -139,7 +139,7 @@ function CustomMethodCardUploadBlockRow({
|
||||
>
|
||||
{/* eslint-disable-next-line @next/next/no-img-element -- matches ModalHeader close control */}
|
||||
<img
|
||||
src={getAssetPath("assets/Icon_Close.svg")}
|
||||
src={getAssetPath(ASSETS.ICON_CLOSE)}
|
||||
alt=""
|
||||
className="h-[16px] w-[16px]"
|
||||
style={{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
"use client";
|
||||
|
||||
import { memo } from "react";
|
||||
import { getAssetPath } from "../../../../../lib/assetUtils";
|
||||
import { ASSETS, getAssetPath } from "../../../../../lib/assetUtils";
|
||||
import InputWithCounter from "../../../../components/controls/InputWithCounter";
|
||||
import TextArea from "../../../../components/controls/TextArea";
|
||||
import TextInput from "../../../../components/controls/TextInput";
|
||||
@@ -140,7 +140,7 @@ function CustomMethodCardWizardFieldBodiesViewComponent({
|
||||
>
|
||||
{/* eslint-disable-next-line @next/next/no-img-element -- matches ModalHeader close control */}
|
||||
<img
|
||||
src={getAssetPath("assets/Icon_Close.svg")}
|
||||
src={getAssetPath(ASSETS.ICON_CLOSE)}
|
||||
alt=""
|
||||
className="h-[16px] w-[16px]"
|
||||
style={{
|
||||
|
||||
@@ -14,7 +14,7 @@ import { CreateFlowHeaderLockup } from "../../components/CreateFlowHeaderLockup"
|
||||
import { CreateFlowStepShell } from "../../components/CreateFlowStepShell";
|
||||
import { CREATE_FLOW_MD_UP_COLUMN_MAX_CLASS } from "../../components/createFlowLayoutTokens";
|
||||
import { fetchAuthSession } from "../../../../../lib/create/api";
|
||||
import { getAssetPath } from "../../../../../lib/assetUtils";
|
||||
import { ASSETS, getAssetPath } from "../../../../../lib/assetUtils";
|
||||
import {
|
||||
UploadToServerError,
|
||||
uploadCreateFlowFile,
|
||||
@@ -177,7 +177,7 @@ export function CommunityUploadScreen() {
|
||||
>
|
||||
{/* eslint-disable-next-line @next/next/no-img-element -- matches ModalHeader close control */}
|
||||
<img
|
||||
src={getAssetPath("assets/Icon_Close.svg")}
|
||||
src={getAssetPath(ASSETS.ICON_CLOSE)}
|
||||
alt=""
|
||||
className="h-[16px] w-[16px]"
|
||||
style={{
|
||||
|
||||
@@ -135,7 +135,7 @@ export default async function BlogPostPage({ params }: PageProps) {
|
||||
url: "https://communityrule.com",
|
||||
logo: {
|
||||
"@type": "ImageObject",
|
||||
url: "https://communityrule.com/assets/logo/Logo.svg",
|
||||
url: "https://communityrule.com/assets/logos/community-rule.svg",
|
||||
},
|
||||
},
|
||||
datePublished: post.frontmatter.date,
|
||||
|
||||
@@ -7,10 +7,10 @@ export type CaseStudySurfaceValue = (typeof CASE_STUDY_SURFACE_OPTIONS)[number];
|
||||
export interface CaseStudyProps {
|
||||
surface: CaseStudySurfaceValue;
|
||||
/**
|
||||
* Alt text for built-in raster art (`public/assets/use-cases/`) when **`visual`** is omitted.
|
||||
* Alt text for built-in SVG art (`public/assets/case-study/`) when **`visual`** is omitted.
|
||||
*/
|
||||
imageAlt?: string;
|
||||
/** Overrides built-in raster with custom slot content when provided. */
|
||||
/** Overrides built-in artwork with custom slot content when provided. */
|
||||
visual?: ReactNode;
|
||||
className?: string;
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
import Image from "next/image";
|
||||
import { memo } from "react";
|
||||
import { caseStudyVisualPath, getAssetPath } from "../../../../lib/assetUtils";
|
||||
import type { CaseStudyProps } from "./CaseStudy.types";
|
||||
|
||||
const SURFACE_CLASS: Record<CaseStudyProps["surface"], string> = {
|
||||
@@ -12,9 +13,9 @@ const SURFACE_CLASS: Record<CaseStudyProps["surface"], string> = {
|
||||
|
||||
/** Default art per tile: Figma-exported SVG composites (305×305 incl. rounded bg). */
|
||||
const SURFACE_ART: Record<CaseStudyProps["surface"], string> = {
|
||||
lavender: "/assets/case-study/case-study-mutual-aid.svg",
|
||||
neutral: "/assets/case-study/case-study-food-not-bombs.svg",
|
||||
rose: "/assets/case-study/case-study-boulder-county-street-medics.svg",
|
||||
lavender: getAssetPath(caseStudyVisualPath("lavender")),
|
||||
neutral: getAssetPath(caseStudyVisualPath("neutral")),
|
||||
rose: getAssetPath(caseStudyVisualPath("rose")),
|
||||
};
|
||||
|
||||
/** Figma: ~23px corner (“Card / CaseStudy” shells). */
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import ListItem from "../../layout/ListItem";
|
||||
import Popover from "../Popover";
|
||||
import { getAssetPath } from "../../../../lib/assetUtils";
|
||||
import { ASSETS, getAssetPath } from "../../../../lib/assetUtils";
|
||||
import type { ModalHeaderProps } from "./ModalHeader.types";
|
||||
|
||||
const iconButtonClass =
|
||||
@@ -37,7 +37,7 @@ export function ModalHeaderView({
|
||||
>
|
||||
{/* eslint-disable-next-line @next/next/no-img-element -- icon asset */}
|
||||
<img
|
||||
src={getAssetPath("assets/Icon_Close.svg")}
|
||||
src={getAssetPath(ASSETS.ICON_CLOSE)}
|
||||
alt=""
|
||||
className="w-[16px] h-[16px]"
|
||||
style={{
|
||||
|
||||
@@ -2,6 +2,11 @@
|
||||
|
||||
import Image from "next/image";
|
||||
import { memo } from "react";
|
||||
import {
|
||||
getAssetPath,
|
||||
shareIconPath,
|
||||
type ShareIconName,
|
||||
} from "../../../../lib/assetUtils";
|
||||
import ContentLockup from "../../type/ContentLockup";
|
||||
import Button from "../../buttons/Button";
|
||||
import ModalHeader from "../ModalHeader";
|
||||
@@ -9,21 +14,16 @@ import ModalFooter from "../ModalFooter";
|
||||
import { CreateModalFrameView } from "../Create/CreateModalFrame.view";
|
||||
import type { ShareChannelTileProps, ShareViewProps } from "./Share.types";
|
||||
|
||||
/** Decorative glyphs in `public/assets/Share/` — sizes match prior inline SVGs within the 60×60 circles. */
|
||||
/** Decorative glyphs in `public/assets/share/` — sizes match prior inline SVGs within the 60×60 circles. */
|
||||
function ShareAssetIcon(props: {
|
||||
src:
|
||||
| "/assets/Share/Discord.svg"
|
||||
| "/assets/Share/Link.svg"
|
||||
| "/assets/Share/Mail.svg"
|
||||
| "/assets/Share/Signal.svg"
|
||||
| "/assets/Share/Slack.svg";
|
||||
name: ShareIconName;
|
||||
width: number;
|
||||
height: number;
|
||||
}) {
|
||||
const { src, width, height } = props;
|
||||
const { name, width, height } = props;
|
||||
return (
|
||||
<Image
|
||||
src={src}
|
||||
src={getAssetPath(shareIconPath(name))}
|
||||
alt=""
|
||||
width={width}
|
||||
height={height}
|
||||
@@ -111,31 +111,31 @@ export const ShareView = memo(function ShareView({
|
||||
label={copyLinkLabel}
|
||||
onClick={onCopyLink}
|
||||
circleClassName="border-[#444444] bg-[#333333]"
|
||||
icon={<ShareAssetIcon src="/assets/Share/Link.svg" width={24} height={24} />}
|
||||
icon={<ShareAssetIcon name="link" width={24} height={24} />}
|
||||
/>
|
||||
<ShareChannelTile
|
||||
label={signalLabel}
|
||||
onClick={onSignalShare}
|
||||
circleClassName="border-[#3a76f0] bg-[#3a76f0]"
|
||||
icon={<ShareAssetIcon src="/assets/Share/Signal.svg" width={26} height={26} />}
|
||||
icon={<ShareAssetIcon name="signal" width={26} height={26} />}
|
||||
/>
|
||||
<ShareChannelTile
|
||||
label={slackLabel}
|
||||
onClick={onSlackShare}
|
||||
circleClassName="border-[#4a154b] bg-[#4a154b]"
|
||||
icon={<ShareAssetIcon src="/assets/Share/Slack.svg" width={26} height={26} />}
|
||||
icon={<ShareAssetIcon name="slack" width={26} height={26} />}
|
||||
/>
|
||||
<ShareChannelTile
|
||||
label={discordLabel}
|
||||
onClick={onDiscordShare}
|
||||
circleClassName="border-[#5865f2] bg-[#5865f2]"
|
||||
icon={<ShareAssetIcon src="/assets/Share/Discord.svg" width={30} height={30} />}
|
||||
icon={<ShareAssetIcon name="discord" width={30} height={30} />}
|
||||
/>
|
||||
<ShareChannelTile
|
||||
label={emailLabel}
|
||||
onClick={onEmailShare}
|
||||
circleClassName="border-[var(--color-surface-default-brand-kiwi)] bg-[var(--color-surface-default-brand-kiwi)]"
|
||||
icon={<ShareAssetIcon src="/assets/Share/Mail.svg" width={24} height={24} />}
|
||||
icon={<ShareAssetIcon name="mail" width={24} height={24} />}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -25,9 +25,9 @@ const NAV_SIZE_TO_MENU_ITEM_SIZE: Record<NavSize, MenuClusterSize> = {
|
||||
};
|
||||
|
||||
export const avatarImages = [
|
||||
{ src: getAssetPath(ASSETS.AVATAR_1), alt: "Avatar 1" },
|
||||
{ src: getAssetPath(ASSETS.AVATAR_2), alt: "Avatar 2" },
|
||||
{ src: getAssetPath(ASSETS.AVATAR_3), alt: "Avatar 3" },
|
||||
{ src: getAssetPath(ASSETS.AVATAR_2), alt: "Avatar 2" },
|
||||
{ src: getAssetPath(ASSETS.AVATAR_1), alt: "Avatar 1" },
|
||||
];
|
||||
|
||||
const TopContainer = memo<TopProps>(
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
import { memo } from "react";
|
||||
import Script from "next/script";
|
||||
import { useTranslation } from "../../../contexts/MessagesContext";
|
||||
import { getAssetPath } from "../../../../lib/assetUtils";
|
||||
import { ASSETS, getAssetPath } from "../../../../lib/assetUtils";
|
||||
import Menu from "../Menu";
|
||||
import type { TopViewProps } from "./Top.types";
|
||||
|
||||
@@ -61,21 +61,21 @@ function TopView({
|
||||
{/* Decorative Union images for tab appearance */}
|
||||
{/* eslint-disable-next-line @next/next/no-img-element -- decorative SVG, not content */}
|
||||
<img
|
||||
src={getAssetPath("assets/Union_xsm.svg")}
|
||||
src={getAssetPath(ASSETS.UNION_XSM)}
|
||||
alt=""
|
||||
role="presentation"
|
||||
className="absolute -bottom-[3px] -right-[52px] w-[61px] h-[24px] sm:w-[61px] sm:h-[31.5px] sm:hidden -z-10"
|
||||
/>
|
||||
{/* eslint-disable-next-line @next/next/no-img-element -- decorative SVG */}
|
||||
<img
|
||||
src={getAssetPath("assets/Union_sm_md_lg.svg")}
|
||||
src={getAssetPath(ASSETS.UNION_SM_MD_LG)}
|
||||
alt=""
|
||||
role="presentation"
|
||||
className="absolute -bottom-[3.7px] -right-[53px] w-[61px] h-[24px] sm:w-[61px] sm:h-[31.5px] hidden sm:block xl:hidden -z-10"
|
||||
/>
|
||||
{/* eslint-disable-next-line @next/next/no-img-element -- decorative SVG */}
|
||||
<img
|
||||
src={getAssetPath("assets/Union_xlg.svg")}
|
||||
src={getAssetPath(ASSETS.UNION_XLG)}
|
||||
alt=""
|
||||
role="presentation"
|
||||
className="absolute -bottom-[6px] -right-[94px] w-[105px] h-[53px] hidden xl:block -z-10"
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
import { memo } from "react";
|
||||
import {
|
||||
ASSETS,
|
||||
getAssetPath,
|
||||
contentBlogHorizontalPath,
|
||||
contentBlogSectionPath,
|
||||
@@ -36,7 +37,7 @@ const ContentBannerContainer = memo<ContentBannerProps>(
|
||||
return contentBlogHorizontalPath(blogPost.slug);
|
||||
}
|
||||
|
||||
return getAssetPath("assets/Content_Banner.svg");
|
||||
return getAssetPath(ASSETS.CONTENT_BANNER);
|
||||
};
|
||||
|
||||
const resolveSectionImage = (blogPost: BlogPost): string => {
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
"use client";
|
||||
|
||||
import { memo, useMemo } from "react";
|
||||
import { getAssetPath, featurePanelPath } from "../../../../lib/assetUtils";
|
||||
import { useTranslation } from "../../../contexts/MessagesContext";
|
||||
import FeatureGridView from "./FeatureGrid.view";
|
||||
import type { FeatureGridProps, Feature } from "./FeatureGrid.types";
|
||||
@@ -19,7 +20,7 @@ const FeatureGridContainer = memo<FeatureGridProps>(
|
||||
labelLine2: t(
|
||||
"pages.home.featureGrid.features.decisionMaking.labelLine2",
|
||||
),
|
||||
panelContent: "/assets/Feature_Support.png",
|
||||
panelContent: getAssetPath(featurePanelPath("support")),
|
||||
ariaLabel: t("featureGrid.features.decisionMaking.ariaLabel"),
|
||||
href: "#decision-making",
|
||||
},
|
||||
@@ -31,7 +32,7 @@ const FeatureGridContainer = memo<FeatureGridProps>(
|
||||
labelLine2: t(
|
||||
"pages.home.featureGrid.features.valuesAlignment.labelLine2",
|
||||
),
|
||||
panelContent: "/assets/Feature_Exercises.png",
|
||||
panelContent: getAssetPath(featurePanelPath("exercises")),
|
||||
ariaLabel: t("featureGrid.features.valuesAlignment.ariaLabel"),
|
||||
href: "#values-alignment",
|
||||
},
|
||||
@@ -43,7 +44,7 @@ const FeatureGridContainer = memo<FeatureGridProps>(
|
||||
labelLine2: t(
|
||||
"pages.home.featureGrid.features.membershipGuidance.labelLine2",
|
||||
),
|
||||
panelContent: "/assets/Feature_Guidance.png",
|
||||
panelContent: getAssetPath(featurePanelPath("guidance")),
|
||||
ariaLabel: t("featureGrid.features.membershipGuidance.ariaLabel"),
|
||||
href: "#membership-guidance",
|
||||
},
|
||||
@@ -55,7 +56,7 @@ const FeatureGridContainer = memo<FeatureGridProps>(
|
||||
labelLine2: t(
|
||||
"pages.home.featureGrid.features.conflictResolution.labelLine2",
|
||||
),
|
||||
panelContent: "/assets/Feature_Tools.png",
|
||||
panelContent: getAssetPath(featurePanelPath("tools")),
|
||||
ariaLabel: t("featureGrid.features.conflictResolution.ariaLabel"),
|
||||
href: "#conflict-resolution",
|
||||
},
|
||||
|
||||
@@ -4,7 +4,7 @@ import { memo } from "react";
|
||||
import { useTranslation } from "../../../contexts/MessagesContext";
|
||||
import ContentLockup from "../../type/ContentLockup";
|
||||
import HeroDecor from "./HeroDecor";
|
||||
import { getAssetPath } from "../../../../lib/assetUtils";
|
||||
import { ASSETS, getAssetPath } from "../../../../lib/assetUtils";
|
||||
|
||||
interface HeroBannerProps {
|
||||
title?: string;
|
||||
@@ -48,7 +48,7 @@ const HeroBanner = memo<HeroBannerProps>(
|
||||
<div className="w-full h-full md:flex-1 rounded-[8px] overflow-hidden relative z-10 flex items-center justify-center">
|
||||
{/* eslint-disable-next-line @next/next/no-img-element -- dynamic path from getAssetPath */}
|
||||
<img
|
||||
src={getAssetPath("assets/HeroImage.png")}
|
||||
src={getAssetPath(ASSETS.HERO_IMAGE)}
|
||||
alt={imageAlt}
|
||||
className="w-full h-auto"
|
||||
loading="eager"
|
||||
|
||||
@@ -1,42 +1,43 @@
|
||||
"use client";
|
||||
|
||||
import { memo, useState, useEffect, useMemo } from "react";
|
||||
import { getAssetPath, partnerLogoPath } from "../../../../lib/assetUtils";
|
||||
import LogoWallView from "./LogoWall.view";
|
||||
import type { LogoWallProps } from "./LogoWall.types";
|
||||
|
||||
const defaultLogos = [
|
||||
{
|
||||
src: "/assets/Section/Logo_FoodNotBombs.png",
|
||||
src: getAssetPath(partnerLogoPath("food-not-bombs")),
|
||||
alt: "Food Not Bombs",
|
||||
size: "h-11 lg:h-14 xl:h-[70px]",
|
||||
order: "order-1 sm:order-4", // Mobile: row 1 col 1, SM: row 2 col 1 (bottom left)
|
||||
},
|
||||
{
|
||||
src: "/assets/Section/Logo_StartCOOP.png",
|
||||
src: getAssetPath(partnerLogoPath("start-coop")),
|
||||
alt: "Start COOP",
|
||||
size: "h-[42px] lg:h-[53px] xl:h-[66px]",
|
||||
order: "order-2 sm:order-2", // Mobile: row 1 col 2, SM: row 1 col 2 (top middle)
|
||||
},
|
||||
{
|
||||
src: "/assets/Section/Logo_Metagov.png",
|
||||
src: getAssetPath(partnerLogoPath("metagov")),
|
||||
alt: "Metagov",
|
||||
size: "h-6 lg:h-8 xl:h-[41px]",
|
||||
order: "order-3 sm:order-1", // Mobile: row 2 col 1, SM: row 1 col 1 (top left)
|
||||
},
|
||||
{
|
||||
src: "/assets/Section/Logo_OpenCivics.png",
|
||||
src: getAssetPath(partnerLogoPath("open-civics")),
|
||||
alt: "Open Civics",
|
||||
size: "h-8 lg:h-10 xl:h-[50px]",
|
||||
order: "order-4 sm:order-5 md:order-6", // Mobile: row 2 col 2, SM: row 2 col 2, MD: swapped with Mutual Aid CO
|
||||
},
|
||||
{
|
||||
src: "/assets/Section/Logo_MutualAidCO.png",
|
||||
src: getAssetPath(partnerLogoPath("mutual-aid-co")),
|
||||
alt: "Mutual Aid CO",
|
||||
size: "h-11 lg:h-14 xl:h-[70px]",
|
||||
order: "order-5 sm:order-6 md:order-5", // Mobile: row 3 col 1, SM: row 2 col 3, MD: swapped with OpenCivics
|
||||
},
|
||||
{
|
||||
src: "/assets/Section/Logo_CUBoulder.png",
|
||||
src: getAssetPath(partnerLogoPath("cu-boulder")),
|
||||
alt: "CU Boulder",
|
||||
size: "h-10 lg:h-12 xl:h-[60px]",
|
||||
order: "order-6 sm:order-3", // Mobile: row 3 col 2, SM: row 1 col 3 (top right)
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
"use client";
|
||||
|
||||
import { memo, useState } from "react";
|
||||
import { ASSETS, getAssetPath } from "../../../../lib/assetUtils";
|
||||
import { logger } from "../../../../lib/logger";
|
||||
import QuoteBlockView from "./QuoteBlock.view";
|
||||
import type { QuoteBlockProps, VariantConfig } from "./QuoteBlock.types";
|
||||
@@ -14,9 +15,9 @@ const QuoteBlockContainer = memo<QuoteBlockProps>(
|
||||
quoteSecondary,
|
||||
author = "Jo Freeman",
|
||||
source = "The Tyranny of Structurelessness",
|
||||
avatarSrc = "/assets/Quote_Avatar.svg",
|
||||
avatarSrc = getAssetPath(ASSETS.QUOTE_AVATAR),
|
||||
id,
|
||||
fallbackAvatarSrc = "/assets/Quote_Avatar.svg",
|
||||
fallbackAvatarSrc = getAssetPath(ASSETS.QUOTE_AVATAR),
|
||||
onError,
|
||||
}) => {
|
||||
const [imageError, setImageError] = useState(false);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
"use client";
|
||||
|
||||
import { memo } from "react";
|
||||
import { getAssetPath } from "../../../lib/assetUtils";
|
||||
import { getAssetPath, sectionNumberPath } from "../../../lib/assetUtils";
|
||||
|
||||
interface SectionNumberProps {
|
||||
number: number;
|
||||
@@ -9,19 +9,8 @@ interface SectionNumberProps {
|
||||
|
||||
const SectionNumber = memo<SectionNumberProps>(({ number }) => {
|
||||
const getImageSrc = (num: number): string => {
|
||||
const assetPath = (() => {
|
||||
switch (num) {
|
||||
case 1:
|
||||
return "assets/SectionNumber_1.png";
|
||||
case 2:
|
||||
return "assets/SectionNumber_2.png";
|
||||
case 3:
|
||||
return "assets/SectionNumber_3.png";
|
||||
default:
|
||||
return "assets/SectionNumber_1.png";
|
||||
}
|
||||
})();
|
||||
return getAssetPath(assetPath);
|
||||
const n = num === 2 || num === 3 ? num : 1;
|
||||
return getAssetPath(sectionNumberPath(n));
|
||||
};
|
||||
|
||||
return (
|
||||
|
||||
@@ -75,7 +75,7 @@ function ContentLockupView({
|
||||
<>
|
||||
{/* eslint-disable-next-line @next/next/no-img-element -- decorative shape SVG */}
|
||||
<img
|
||||
src={getAssetPath("assets/Shapes_1.svg")}
|
||||
src={getAssetPath("assets/shapes/shapes-1.svg")}
|
||||
alt=""
|
||||
className={styles.shape}
|
||||
role="presentation"
|
||||
|
||||
@@ -14,6 +14,8 @@ User-facing docs. Implementation conventions live in `.cursor/rules/`.
|
||||
|
||||
## Author guides (`guides/`)
|
||||
|
||||
- [static-assets.md](./guides/static-assets.md) — `public/assets/` folder
|
||||
map, naming rules, PNG audit.
|
||||
- [content-creation.md](./guides/content-creation.md) — Writing and
|
||||
publishing blog posts.
|
||||
- [i18n-translation-workflow.md](./guides/i18n-translation-workflow.md) —
|
||||
|
||||
@@ -194,11 +194,14 @@ Inventory aligns with [**CR-104**](https://linear.app/community-rule/issue/CR-10
|
||||
|
||||
## Asset conventions (Figma “Asset” canvas)
|
||||
|
||||
Full folder map and PNG audit: **[guides/static-assets.md](./guides/static-assets.md)**.
|
||||
|
||||
- **Imports:** use **`asset/icon`** (named **`Icon`** component), **`asset/Logo`**, **`asset/Avatar`**, etc.—same rule as **`buttons/Button`**, no top-level **`asset/index.tsx`** barrel.
|
||||
- **`asset/icon/`** — **`Icon.tsx`** maps icon names to SVG modules beside it (`arrow_back.svg`, …); **`index.tsx`** re-exports **`Icon`** and **`ICON_NAME_OPTIONS`** / types.
|
||||
- **`public/assets/vector/<slug>.svg`** — Figma Asset / Vector marks (same kebab **`slug`** convention as **`public/assets/template-mark/`**). Use **`vectorMarkPath(slug)`** in **`lib/assetUtils.ts`**.
|
||||
- **`asset/Logo`** — Community Rule **`Logo`** component (folder PascalCase, like **`Avatar/`**).
|
||||
- **`public/assets/`** — lowercase kebab-case folders: **`icons/`**, **`logos/`** (incl. **`logos/partners/`**), **`marketing/`**, **`case-study/`**, **`shapes/`**, **`vector/`**, **`template-mark/`**, **`share/`**. Use helpers in **`lib/assetUtils.ts`** (`ASSETS`, `partnerLogoPath`, `vectorMarkPath`, …).
|
||||
- **`public/assets/vector/<slug>.svg`** — Figma Asset / Vector marks (same kebab **`slug`** convention as **`public/assets/template-mark/`**). Use **`vectorMarkPath(slug)`**.
|
||||
- **`asset/Logo`** — Community Rule **`Logo`** component (folder PascalCase, like **`Avatar/`**); brand SVG at **`public/assets/logos/community-rule.svg`**.
|
||||
- **`asset/Avatar`** + **`asset/AvatarContainer`** — paired circular image stacks (e.g. top nav). Fuller DS Avatar behavior (**initials**, upload routing, …) tracked as **[CR-58](https://linear.app/community-rule/issue/CR-58)**.
|
||||
- **`asset/Shapes/`** — decorative blobs for **`cards/Stat`** and About header inline art (Figma **Shapes**).
|
||||
- **`asset/Shapes/`** — decorative blobs for **`cards/Stat`** and About header inline art (Figma **Shapes**); static files under **`public/assets/shapes/`**.
|
||||
|
||||
*Update this when you add a new top-level `app/components/*` package or a new Figma canvas.*
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
# Static assets (`public/`)
|
||||
|
||||
Convention for files served from `public/`. Path helpers live in
|
||||
[`lib/assetUtils.ts`](../../lib/assetUtils.ts).
|
||||
|
||||
## Folder map
|
||||
|
||||
```
|
||||
public/
|
||||
assets/
|
||||
icons/ # UI chrome (alert, close, help, pointer)
|
||||
logos/ # Brand + social lockups
|
||||
partners/ # Logo wall partner PNGs
|
||||
marketing/ # Hero, feature panels, section numbers, avatars, banners, book cover
|
||||
case-study/ # CaseStudy card SVG artwork (canonical)
|
||||
shapes/ # Decorative ornaments (stats, quotes, unions, content shapes)
|
||||
vector/ # Use-case group marks
|
||||
template-mark/ # Governance template SVG marks
|
||||
share/ # Share modal channel glyphs
|
||||
content/
|
||||
blog/ # Per-article SVG thumbnails (see content-creation.md)
|
||||
```
|
||||
|
||||
## Naming rules
|
||||
|
||||
- **Directories and filenames:** lowercase kebab-case only.
|
||||
- **No** PascalCase folders (`Section/`, `Share/`) or Figma-export names
|
||||
at the assets root (`Feature_Support.png`, `Icon_Alert.svg`).
|
||||
- **Prefer** `lib/assetUtils.ts` helpers (`partnerLogoPath`,
|
||||
`shareIconPath`, `featurePanelPath`, `ASSETS`, …) over hardcoded
|
||||
`/assets/...` strings in components.
|
||||
- **Blog art** stays under `public/content/blog/` with
|
||||
`{slug}-vertical.svg`, `-horizontal.svg`, `-section.svg`, `-tag.svg`.
|
||||
|
||||
## PNG files and `.gitignore`
|
||||
|
||||
`*.png` is listed in `.gitignore`, but marketing and partner PNGs remain
|
||||
**git-tracked** from before that rule. New PNGs may need `git add -f` to
|
||||
stage. Raster → SVG conversion is tracked in
|
||||
[CR-25](https://linear.app/community-rule/issue/CR-25).
|
||||
|
||||
## PNG audit (handoff to CR-25)
|
||||
|
||||
| Path | Used by | Disposition |
|
||||
| --- | --- | --- |
|
||||
| `logos/partners/*.svg` (×6) | LogoWall | **Done** — SVG (kebab org slug, no `logo-` prefix) |
|
||||
| `marketing/feature-*.png` (×4) | FeatureGrid | **Design review** — convert if vector in Figma, else keep raster |
|
||||
| `marketing/section-number-*.svg` (×3) | SectionNumber | **Done** — SVG |
|
||||
| `marketing/avatar-*.svg` (×3) | Avatar / ASSETS | **Done** — SVG |
|
||||
| `marketing/hero-image.png` | HeroBanner | **Design review** — likely keep raster |
|
||||
| `logos/gitlab.svg` | Footer / social | **Done** — SVG |
|
||||
|
||||
## Related docs
|
||||
|
||||
- [figma-component-registry.md](../figma-component-registry.md) — Figma Asset
|
||||
canvas ↔ `app/components/asset/` and `template-mark/` / `vector/`.
|
||||
- [content-creation.md](./content-creation.md) — Blog SVG naming under
|
||||
`public/content/blog/`.
|
||||
@@ -2,11 +2,13 @@
|
||||
* Asset path utilities for handling different environments
|
||||
* - Web app: uses absolute paths starting with /
|
||||
* - Storybook: uses relative paths for proper asset resolution
|
||||
*
|
||||
* Folder map: `docs/guides/static-assets.md`
|
||||
*/
|
||||
|
||||
/**
|
||||
* Get the correct asset path based on environment
|
||||
* @param assetPath - The asset path (e.g., "assets/Logo.svg")
|
||||
* @param assetPath - The asset path (e.g., "assets/logos/community-rule.svg")
|
||||
* @returns The correct path for the current environment
|
||||
*/
|
||||
export function getAssetPath(assetPath: string): string {
|
||||
@@ -68,6 +70,43 @@ export function guideBannerLogoArrowPath(): string {
|
||||
return "assets/shapes/guide-banner-logo-arrow.svg";
|
||||
}
|
||||
|
||||
/** Partner logo wall SVGs in `public/assets/logos/partners/`. */
|
||||
export function partnerLogoPath(slug: string): string {
|
||||
return `assets/logos/partners/${slug}.svg`;
|
||||
}
|
||||
|
||||
/** Share modal glyphs in `public/assets/share/`. */
|
||||
export type ShareIconName = "discord" | "link" | "mail" | "signal" | "slack";
|
||||
|
||||
export function shareIconPath(name: ShareIconName): string {
|
||||
return `assets/share/${name}.svg`;
|
||||
}
|
||||
|
||||
/** Section number badges in `public/assets/marketing/`. */
|
||||
export function sectionNumberPath(n: 1 | 2 | 3): string {
|
||||
return `assets/marketing/section-number-${n}.svg`;
|
||||
}
|
||||
|
||||
/** Home feature grid panel art in `public/assets/marketing/`. */
|
||||
export type FeaturePanelKey = "support" | "exercises" | "guidance" | "tools";
|
||||
|
||||
export function featurePanelPath(key: FeaturePanelKey): string {
|
||||
return `assets/marketing/feature-${key}.png`;
|
||||
}
|
||||
|
||||
/** Case study card artwork in `public/assets/case-study/`. */
|
||||
export type CaseStudyVisualKey = "lavender" | "neutral" | "rose";
|
||||
|
||||
const CASE_STUDY_VISUAL_PATHS: Record<CaseStudyVisualKey, string> = {
|
||||
lavender: "assets/case-study/case-study-mutual-aid.svg",
|
||||
neutral: "assets/case-study/case-study-food-not-bombs.svg",
|
||||
rose: "assets/case-study/case-study-boulder-county-street-medics.svg",
|
||||
};
|
||||
|
||||
export function caseStudyVisualPath(key: CaseStudyVisualKey): string {
|
||||
return CASE_STUDY_VISUAL_PATHS[key];
|
||||
}
|
||||
|
||||
/** Per-article thumbnail backgrounds in `public/content/blog/` (Figma Thumbnail 19428:22574). */
|
||||
export function contentBlogVerticalPath(slug: string): string {
|
||||
return `/content/blog/${slug}-vertical.svg`;
|
||||
@@ -120,32 +159,42 @@ export function contentCatalogSlugForFallback(
|
||||
* Asset paths for common components
|
||||
*/
|
||||
export const ASSETS = {
|
||||
// Logo
|
||||
LOGO: "assets/logo/Logo.svg",
|
||||
// Brand logo
|
||||
LOGO: "assets/logos/community-rule.svg",
|
||||
|
||||
// Avatars
|
||||
AVATAR_1: "assets/Avatar_1.png",
|
||||
AVATAR_2: "assets/Avatar_2.png",
|
||||
AVATAR_3: "assets/Avatar_3.png",
|
||||
AVATAR_1: "assets/marketing/avatar-1.svg",
|
||||
AVATAR_2: "assets/marketing/avatar-2.svg",
|
||||
AVATAR_3: "assets/marketing/avatar-3.svg",
|
||||
|
||||
// Social media
|
||||
BLUESKY_LOGO: "assets/Bluesky_Logo.svg",
|
||||
GITLAB_ICON: "assets/GitLab_Icon.png",
|
||||
BLUESKY_LOGO: "assets/logos/bluesky.svg",
|
||||
GITLAB_ICON: "assets/logos/gitlab.svg",
|
||||
|
||||
// Content page decorative shapes
|
||||
CONTENT_SHAPE_1: "assets/Content_Shape_1.svg",
|
||||
CONTENT_SHAPE_2: "assets/Content_Shape_2.svg",
|
||||
CONTENT_SHAPE_1: "assets/shapes/content-shape-1.svg",
|
||||
CONTENT_SHAPE_2: "assets/shapes/content-shape-2.svg",
|
||||
|
||||
/** Default ContentBanner background when no article-specific art. */
|
||||
CONTENT_BANNER: "assets/marketing/content-banner.svg",
|
||||
|
||||
/** Quote block default avatar. */
|
||||
QUOTE_AVATAR: "assets/marketing/quote-avatar.svg",
|
||||
|
||||
/** Sections / Book cover (Figma **22137:891197**). */
|
||||
COMMUNITYRULES_COVER: "assets/communityrules-cover.svg",
|
||||
COMMUNITYRULES_COVER: "assets/marketing/communityrules-cover.svg",
|
||||
|
||||
// Alert icons
|
||||
ICON_ALERT: "assets/Icon_Alert.svg",
|
||||
ICON_CLOSE: "assets/Icon_Close.svg",
|
||||
// Marketing
|
||||
HERO_IMAGE: "assets/marketing/hero-image.png",
|
||||
|
||||
// Tooltip icons
|
||||
ICON_POINTER: "assets/Icon_Pointer.svg",
|
||||
// Top nav union ornaments
|
||||
UNION_XSM: "assets/shapes/union-xsm.svg",
|
||||
UNION_SM_MD_LG: "assets/shapes/union-sm-md-lg.svg",
|
||||
UNION_XLG: "assets/shapes/union-xlg.svg",
|
||||
|
||||
// Help icon
|
||||
ICON_HELP: "assets/Icon_Help.svg",
|
||||
// Alert / UI icons
|
||||
ICON_ALERT: "assets/icons/icon-alert.svg",
|
||||
ICON_CLOSE: "assets/icons/icon-close.svg",
|
||||
ICON_POINTER: "assets/icons/icon-pointer.svg",
|
||||
ICON_HELP: "assets/icons/icon-help.svg",
|
||||
} as const;
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,57 +0,0 @@
|
||||
<svg width="47" height="46" viewBox="0 0 47 46" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<filter
|
||||
id="grain"
|
||||
filterUnits="objectBoundingBox"
|
||||
x="0"
|
||||
y="0"
|
||||
width="1"
|
||||
height="1"
|
||||
colorInterpolationFilters="sRGB"
|
||||
>
|
||||
<feTurbulence
|
||||
type="fractalNoise"
|
||||
baseFrequency="0.8"
|
||||
numOctaves="2"
|
||||
seed="3"
|
||||
stitchTiles="stitch"
|
||||
result="noise1"
|
||||
/>
|
||||
<feTurbulence
|
||||
type="fractalNoise"
|
||||
baseFrequency="1.2"
|
||||
numOctaves="1"
|
||||
seed="7"
|
||||
stitchTiles="stitch"
|
||||
result="noise2"
|
||||
/>
|
||||
<feBlend in="noise1" in2="noise2" mode="multiply" result="combinedNoise" />
|
||||
<feColorMatrix
|
||||
in="combinedNoise"
|
||||
result="coloredNoise"
|
||||
type="matrix"
|
||||
values="
|
||||
0.8 0 0 0 0.3
|
||||
0 0.6 0 0 0.2
|
||||
0 0 1.0 0 0.4
|
||||
0 0 0 0.8 0"
|
||||
/>
|
||||
<feComposite
|
||||
in="coloredNoise"
|
||||
in2="SourceAlpha"
|
||||
operator="in"
|
||||
result="maskedNoise"
|
||||
/>
|
||||
<feBlend in="SourceGraphic" in2="maskedNoise" mode="multiply" />
|
||||
</filter>
|
||||
</defs>
|
||||
|
||||
<g filter="url(#grain)" fill="#787DFF">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.75 0C15.6109 0 16.3751 0.55086 16.6474 1.36754L19.3311 9.41886L27.3825 12.1026C28.1991 12.3749 28.75 13.1391 28.75 14C28.75 14.8609 28.1991 15.6251 27.3825 15.8974L19.3311 18.5811L16.6474 26.6325C16.3751 27.4491 15.6109 28 14.75 28C13.8891 28 13.1249 27.4491 12.8526 26.6325L10.1689 18.5811L2.11754 15.8974C1.30086 15.6251 0.75 14.8609 0.75 14C0.75 13.1391 1.30086 12.3749 2.11754 12.1026L10.1689 9.41886L12.8526 1.36754C13.1249 0.55086 13.8891 0 14.75 0ZM14.75 8.32456L13.6474 11.6325C13.4483 12.2297 12.9797 12.6983 12.3825 12.8974L9.07456 14L12.3825 15.1026C12.9797 15.3017 13.4483 15.7703 13.6474 16.3675L14.75 19.6754L15.8526 16.3675C16.0517 15.7703 16.5203 15.3017 17.1175 15.1026L20.4254 14L17.1175 12.8974C16.5203 12.6983 16.0517 12.2297 15.8526 11.6325L14.75 8.32456Z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.75 0C15.6109 0 16.3751 0.55086 16.6474 1.36754L19.3311 9.41886L27.3825 12.1026C28.1991 12.3749 28.75 13.1391 28.75 14C28.75 14.8609 28.1991 15.6251 27.3825 15.8974L19.3311 18.5811L16.6474 26.6325C16.3751 27.4491 15.6109 28 14.75 28C13.8891 28 13.1249 27.4491 12.8526 26.6325L10.1689 18.5811L2.11754 15.8974C1.30086 15.6251 0.75 14.8609 0.75 14C0.75 13.1391 1.30086 12.3749 2.11754 12.1026L10.1689 9.41886L12.8526 1.36754C13.1249 0.55086 13.8891 0 14.75 0ZM14.75 8.32456L13.6474 11.6325C13.4483 12.2297 12.9797 12.6983 12.3825 12.8974L9.07456 14L12.3825 15.1026C12.9797 15.3017 13.4483 15.7703 13.6474 16.3675L14.75 19.6754L15.8526 16.3675C16.0517 15.7703 16.5203 15.3017 17.1175 15.1026L20.4254 14L17.1175 12.8974C16.5203 12.6983 16.0517 12.2297 15.8526 11.6325L14.75 8.32456Z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M40.3358 13.5858C41.6691 12.2525 43.8309 12.2525 45.1642 13.5858C46.4975 14.9191 46.4975 17.0809 45.1642 18.4142L31.1642 32.4142C29.8309 33.7476 27.6691 33.7475 26.3358 32.4142C25.0025 31.0809 25.0025 28.9191 26.3358 27.5858L40.3358 13.5858Z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M40.3358 13.5858C41.6691 12.2525 43.8309 12.2525 45.1642 13.5858C46.4975 14.9191 46.4975 17.0809 45.1642 18.4142L31.1642 32.4142C29.8309 33.7476 27.6691 33.7475 26.3358 32.4142C25.0025 31.0809 25.0025 28.9191 26.3358 27.5858L40.3358 13.5858Z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.1901 41.5878C16.2564 42.0159 17.375 42.0924 18.4949 41.6362C19.8562 41.0817 20.3319 40.1783 20.4519 39.1811C20.5194 38.6201 20.4602 38.043 20.3153 37.5535C20.1693 37.06 19.9944 36.8418 19.9796 36.8234C19.5488 36.3895 19.2668 36.2284 19.0871 36.1528C18.9117 36.079 18.6307 36 18.0832 36C17.9448 36 17.6913 36.0219 17.3727 36.0946C17.0821 36.1608 16.8122 36.2523 16.5957 36.351C16.582 36.4548 16.5684 36.5592 16.5544 36.6678C16.5251 36.8943 16.4934 37.1385 16.4526 37.4303C16.3636 38.0671 16.2374 38.862 16.0013 39.6665C15.8122 40.3107 15.5511 40.9617 15.1901 41.5878ZM12.1566 44.5152C14.2352 45.7779 16.9714 46.5759 20.0039 45.3406C25.75 43 25.1049 36.3084 22.8174 34.0041C21.3978 32.5741 20.0039 32.0001 18.0833 32C16.1627 31.9999 13.0609 33.0512 12.75 35C12.6824 35.4235 12.6287 35.8361 12.5767 36.2352C12.3073 38.3037 12.0848 40.0115 10.2304 41.0095C9.58315 41.3578 9.29891 42.2089 9.83028 42.7167C10.4451 43.3043 11.2105 43.9332 12.0977 44.4792C12.1172 44.4912 12.137 44.5033 12.1566 44.5152Z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.1901 41.5878C16.2564 42.0159 17.375 42.0924 18.4949 41.6362C19.8562 41.0817 20.3319 40.1783 20.4519 39.1811C20.5194 38.6201 20.4602 38.043 20.3153 37.5535C20.1693 37.06 19.9944 36.8418 19.9796 36.8234C19.5488 36.3895 19.2668 36.2284 19.0871 36.1528C18.9117 36.079 18.6307 36 18.0832 36C17.9448 36 17.6913 36.0219 17.3727 36.0946C17.0821 36.1608 16.8122 36.2523 16.5957 36.351C16.582 36.4548 16.5684 36.5592 16.5544 36.6678C16.5251 36.8943 16.4934 37.1385 16.4526 37.4303C16.3636 38.0671 16.2374 38.862 16.0013 39.6665C15.8122 40.3107 15.5511 40.9617 15.1901 41.5878ZM12.1566 44.5152C14.2352 45.7779 16.9714 46.5759 20.0039 45.3406C25.75 43 25.1049 36.3084 22.8174 34.0041C21.3978 32.5741 20.0039 32.0001 18.0833 32C16.1627 31.9999 13.0609 33.0512 12.75 35C12.6824 35.4235 12.6287 35.8361 12.5767 36.2352C12.3073 38.3037 12.0848 40.0115 10.2304 41.0095C9.58315 41.3578 9.29891 42.2089 9.83028 42.7167C10.4451 43.3043 11.2105 43.9332 12.0977 44.4792C12.1172 44.4912 12.137 44.5033 12.1566 44.5152Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 53 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 27 KiB |
|
Before Width: | Height: | Size: 22 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="105" height="42" viewBox="0 0 105 42" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.0492 10.0151C12.0492 4.49227 7.57203 0 2.04918 0H0V53H105V42.0635H44.0492C26.3761 42.0635 12.0492 27.6882 12.0492 10.0151Z" fill="#FEFCC9"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 259 B |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 546 B After Width: | Height: | Size: 546 B |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 172 B After Width: | Height: | Size: 172 B |
|
Before Width: | Height: | Size: 1001 B After Width: | Height: | Size: 1001 B |
|
Before Width: | Height: | Size: 793 B After Width: | Height: | Size: 793 B |
|
After Width: | Height: | Size: 115 KiB |
@@ -0,0 +1,33 @@
|
||||
<svg width="94" height="45" viewBox="0 0 94 45" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M32.2689 43.4371H33.7183C34.253 43.4371 34.7189 43.2648 34.7189 42.6261C34.7189 41.9963 34.322 41.7464 33.7442 41.7464H32.2689V43.4371ZM32.2689 40.8232H33.6407C34.1152 40.8232 34.4687 40.6076 34.4687 40.0899C34.4687 39.5032 34.02 39.3824 33.5371 39.3824H32.2689V40.8232ZM30.9143 38.3301H33.813C34.9864 38.3301 35.7801 38.7097 35.7801 39.8569C35.7801 40.4609 35.4781 40.8836 34.9432 41.1424C35.6938 41.3581 36.0735 41.9362 36.0735 42.7038C36.0735 43.9548 35.0125 44.4897 33.8996 44.4897H30.9144L30.9143 38.3301Z" fill="white"/>
|
||||
<path d="M39.0242 43.6888C39.8608 43.6888 40.111 42.973 40.111 42.2655C40.111 41.5494 39.8608 40.8333 39.0242 40.8333C38.1956 40.8333 37.9457 41.5494 37.9457 42.2655C37.9457 42.973 38.1956 43.6888 39.0242 43.6888ZM39.0242 39.9102C40.4299 39.9102 41.3361 40.842 41.3361 42.2656C41.3361 43.6803 40.4299 44.6119 39.0242 44.6119C37.6262 44.6119 36.7206 43.6802 36.7206 42.2656C36.7206 40.842 37.6262 39.9102 39.0242 39.9102Z" fill="white"/>
|
||||
<path d="M46.3175 44.4904H45.1525V43.8695H45.1269C44.8161 44.3696 44.2814 44.6112 43.7637 44.6112C42.461 44.6112 42.1331 43.8778 42.1331 42.7735V40.0301H43.3583V42.5491C43.3583 43.2827 43.5739 43.6448 44.1434 43.6448C44.8077 43.6448 45.0924 43.2738 45.0924 42.3679V40.03H46.3175V44.4904Z" fill="white"/>
|
||||
<path d="M47.2831 38.331H48.5082V44.4905H47.2831V38.331Z" fill="white"/>
|
||||
<path d="M51.5867 40.8314C50.7846 40.8314 50.5082 41.5216 50.5082 42.2547C50.5082 42.9535 50.8277 43.6869 51.5867 43.6869C52.3977 43.6869 52.6392 42.9794 52.6392 42.2464C52.6392 41.5216 52.3804 40.8314 51.5867 40.8314ZM52.6565 43.9198H52.6392C52.3545 44.4029 51.8544 44.61 51.2847 44.61C49.939 44.61 49.2831 43.4539 49.2831 42.2201C49.2831 41.0211 49.9474 39.9081 51.2591 39.9081C51.7854 39.9081 52.3028 40.1325 52.5788 40.5725H52.5961V38.3296H53.821V44.489H52.6565V43.9198Z" fill="white"/>
|
||||
<path d="M57.745 41.7823C57.6328 41.1611 57.3654 40.8333 56.77 40.8333C55.9936 40.8333 55.7692 41.4372 55.752 41.7823H57.745ZM55.752 42.5588C55.7865 43.335 56.1664 43.6888 56.8477 43.6888C57.3395 43.6888 57.7363 43.3868 57.814 43.1107H58.8925C58.5473 44.1636 57.814 44.6119 56.8046 44.6119C55.3985 44.6119 54.5269 43.6456 54.5269 42.2656C54.5269 40.9283 55.45 39.9102 56.8046 39.9102C58.323 39.9102 59.0561 41.1871 58.9701 42.5588L55.752 42.5588Z" fill="white"/>
|
||||
<path d="M59.6956 40.0299H60.8606V40.8581H60.8776C61.1019 40.2974 61.7058 39.9091 62.3012 39.9091C62.3874 39.9091 62.491 39.9264 62.5686 39.9522V41.0911C62.4564 41.0652 62.2753 41.048 62.1286 41.048C61.2316 41.048 60.9207 41.695 60.9207 42.4799V44.4901H59.6956V40.0299Z" fill="white"/>
|
||||
<path d="M0.000187181 25.46H0.678896V29.871C0.66892 31.5279 1.45712 32.157 2.76463 32.157C4.08214 32.157 4.87063 31.5279 4.86066 29.871V25.46H5.53907V30.0207C5.53907 31.4879 4.75087 32.7356 2.76455 32.7356C0.788302 32.7356 0 31.488 0 30.0207L0.000187181 25.46Z" fill="white"/>
|
||||
<path d="M6.77499 27.4364H7.40382V28.3247H7.42378C7.65335 27.7059 8.34203 27.2867 9.07035 27.2867C10.5176 27.2867 10.9568 28.0452 10.9568 29.2729V32.5864H10.328V29.3726C10.328 28.4843 10.0385 27.8156 9.02044 27.8156C8.02263 27.8156 7.42377 28.5742 7.40382 29.5822V32.5862H6.77499V27.4364Z" fill="white"/>
|
||||
<path d="M12.1562 27.4365H12.7851V32.586H12.1562V27.4365ZM12.1562 25.4606H12.7851V26.4684H12.1562V25.4606Z" fill="white"/>
|
||||
<path d="M13.4188 27.4363H14.1174L15.7344 31.9574H15.7543L17.351 27.4363H17.9998L16.0737 32.5864H15.405L13.4188 27.4363Z" fill="white"/>
|
||||
<path d="M22.3185 29.6526C22.2885 28.7044 21.6997 27.816 20.6819 27.816C19.6539 27.816 19.0849 28.7143 18.9851 29.6526H22.3185ZM18.9851 30.1816C18.995 31.0995 19.4741 32.2077 20.6819 32.2077C21.6001 32.2077 22.0989 31.6684 22.2985 30.8902H22.9273C22.6578 32.0577 21.9791 32.7364 20.6819 32.7364C19.0449 32.7364 18.3563 31.4788 18.3563 30.0117C18.3563 28.6543 19.0449 27.2868 20.6819 27.2868C22.3384 27.2868 22.9971 28.7341 22.9472 30.1813L18.9851 30.1816Z" fill="white"/>
|
||||
<path d="M23.7938 27.4363H24.3727V28.6441H24.3926C24.712 27.8156 25.4107 27.3266 26.3386 27.3665V27.9953C25.2011 27.9354 24.4226 28.7738 24.4226 29.8418V32.5864H23.7938V27.4363Z" fill="white"/>
|
||||
<path d="M30.0233 28.9435C29.993 28.165 29.3942 27.8156 28.6758 27.8156C28.1169 27.8156 27.4581 28.0352 27.4581 28.7039C27.4581 29.2629 28.0969 29.4625 28.5261 29.5723L29.3645 29.7619C30.0828 29.8714 30.8317 30.2909 30.8317 31.1892C30.8317 32.3068 29.7238 32.736 28.7657 32.736C27.5679 32.736 26.7495 32.177 26.65 30.9194H27.2785C27.3284 31.7678 27.9572 32.2073 28.7953 32.2073C29.3845 32.2073 30.2026 31.9478 30.2026 31.2288C30.2026 30.6303 29.6437 30.4303 29.0751 30.2909L28.2666 30.111C27.4482 29.8917 26.8296 29.6122 26.8296 28.7339C26.8296 27.6859 27.8574 27.2866 28.7657 27.2866C29.7937 27.2866 30.6121 27.8256 30.6521 28.9435H30.0233Z" fill="white"/>
|
||||
<path d="M31.75 27.4365H32.3788V32.586H31.75V27.4365ZM31.75 25.4606H32.3788V26.4684H31.75V25.4606Z" fill="white"/>
|
||||
<path d="M34.5836 27.4364H35.6314V27.9653H34.5836V31.4384C34.5836 31.8477 34.6432 32.0872 35.0927 32.1171C35.272 32.1171 35.4517 32.1072 35.6314 32.0872V32.6262C35.4417 32.6262 35.2624 32.6461 35.0724 32.6461C34.2343 32.6461 33.9445 32.3667 33.9545 31.4883V27.9654H33.0562V27.4364H33.9545V25.8896H34.5836V27.4364Z" fill="white"/>
|
||||
<path d="M35.9625 27.4363H36.6312L38.3277 31.8277L39.9147 27.4363H40.5435L38.3077 33.3747C37.9484 34.2431 37.7388 34.4922 36.9503 34.4922C36.7008 34.4826 36.571 34.4826 36.4715 34.4427V33.9133C36.6209 33.9433 36.761 33.9636 36.9007 33.9636C37.4594 33.9636 37.5891 33.6342 37.7987 33.1551L38.0183 32.5662L35.9625 27.4363Z" fill="white"/>
|
||||
<path d="M44.31 30.0109C44.31 31.1085 44.9089 32.2068 46.1166 32.2068C47.324 32.2068 47.9228 31.1085 47.9228 30.0109C47.9228 28.913 47.324 27.8151 46.1166 27.8151C44.9089 27.8151 44.31 28.913 44.31 30.0109ZM48.552 30.0109C48.552 31.4878 47.6936 32.7356 46.1166 32.7356C44.5396 32.7356 43.6813 31.488 43.6813 30.0109C43.6813 28.5337 44.5396 27.286 46.1166 27.286C47.6936 27.286 48.552 28.5337 48.552 30.0109Z" fill="white"/>
|
||||
<path d="M51.4749 27.9649H50.4568V32.586H49.828V27.9649H48.95V27.4359H49.828V26.9669C49.8181 26.0788 50.0676 25.46 51.0757 25.46C51.255 25.46 51.4051 25.47 51.6047 25.4999V26.0386C51.435 26.009 51.2952 25.989 51.1455 25.989C50.4469 25.989 50.4668 26.4279 50.4568 26.9868V27.4359H51.4749V27.9649Z" fill="white"/>
|
||||
<path d="M60.1742 27.6144C59.9343 26.5165 59.0264 25.888 57.9883 25.888C56.1019 25.888 55.3037 27.4647 55.3037 29.0217C55.3037 30.5784 56.1019 32.1558 57.9883 32.1558C59.3058 32.1558 60.1439 31.1374 60.2737 29.8699H60.9524C60.7631 31.6165 59.6552 32.7344 57.9883 32.7344C55.7429 32.7344 54.625 30.9678 54.625 29.0217C54.625 27.0754 55.7429 25.3092 57.9883 25.3092C59.3355 25.3092 60.6729 26.1176 60.8529 27.6145L60.1742 27.6144Z" fill="white"/>
|
||||
<path d="M62.2412 30.0109C62.2412 31.1085 62.8401 32.2068 64.0478 32.2068C65.2552 32.2068 65.854 31.1085 65.854 30.0109C65.854 28.913 65.2552 27.8151 64.0478 27.8151C62.8401 27.8151 62.2412 28.913 62.2412 30.0109ZM66.4829 30.0109C66.4829 31.4878 65.6249 32.7356 64.0479 32.7356C62.4709 32.7356 61.6125 31.488 61.6125 30.0109C61.6125 28.5337 62.4709 27.286 64.0479 27.286C65.6249 27.286 66.4829 28.5337 66.4829 30.0109Z" fill="white"/>
|
||||
<path d="M67.4313 25.4603H68.0601V32.586H67.4313V25.4603Z" fill="white"/>
|
||||
<path d="M69.6412 30.0109C69.6412 31.1085 70.2401 32.2068 71.4478 32.2068C72.6552 32.2068 73.254 31.1085 73.254 30.0109C73.254 28.913 72.6552 27.8151 71.4478 27.8151C70.2401 27.8151 69.6412 28.913 69.6412 30.0109ZM73.883 30.0109C73.883 31.4878 73.0246 32.7356 71.4479 32.7356C69.8709 32.7356 69.0125 31.488 69.0125 30.0109C69.0125 28.5337 69.8709 27.286 71.4479 27.286C73.0246 27.286 73.883 28.5337 73.883 30.0109Z" fill="white"/>
|
||||
<path d="M74.8188 27.4363H75.3977V28.6441H75.4177C75.7371 27.8156 76.4357 27.3266 77.3637 27.3665V27.9953C76.2261 27.9354 75.4476 28.7738 75.4476 29.8418V32.5864H74.8188V27.4363Z" fill="white"/>
|
||||
<path d="M81.2545 29.7712H81.2342C81.1544 29.921 80.8752 29.9709 80.7052 30.0005C79.6376 30.1905 78.3101 30.1805 78.3101 31.1886C78.3101 31.8174 78.869 32.2066 79.4579 32.2066C80.4158 32.2066 81.2642 31.5974 81.2545 30.5897V29.7712ZM77.9009 29.0127C77.9607 27.805 78.8091 27.286 79.9866 27.286C80.8949 27.286 81.883 27.5654 81.883 28.9428V31.6772C81.883 31.9167 82.0028 32.0565 82.2523 32.0565C82.3225 32.0565 82.402 32.0365 82.4519 32.0165V32.5458C82.3122 32.5755 82.2124 32.5855 82.0427 32.5855C81.4039 32.5855 81.3041 32.2261 81.3041 31.6872H81.2844C80.8449 32.3559 80.3961 32.7352 79.408 32.7352C78.4598 32.7352 77.6813 32.266 77.6813 31.228C77.6813 29.7811 79.0883 29.7312 80.4461 29.5715C80.9648 29.5116 81.2546 29.4417 81.2546 28.8728C81.2546 28.0244 80.6457 27.8148 79.9068 27.8148C79.1286 27.8148 78.5497 28.1741 78.5297 29.0125L77.9009 29.0127Z" fill="white"/>
|
||||
<path d="M85.2403 32.2058C86.5774 32.2058 87.0465 31.0776 87.0465 30.0099C87.0465 28.942 86.5774 27.8141 85.2403 27.8141C84.0429 27.8141 83.5535 28.942 83.5535 30.0099C83.5535 31.0776 84.0429 32.2058 85.2403 32.2058ZM87.6757 32.5847H87.0968V31.6066H87.0768C86.8073 32.2753 85.9889 32.7344 85.2403 32.7344C83.6736 32.7344 82.925 31.4672 82.925 30.0098C82.925 28.5526 83.6736 27.2849 85.2403 27.2849C86.0088 27.2849 86.7574 27.6741 87.0269 28.4128H87.0465V25.4587H87.6757V32.5844" fill="white"/>
|
||||
<path d="M89.2409 30.0109C89.2409 31.1085 89.8398 32.2068 91.0475 32.2068C92.2552 32.2068 92.8538 31.1085 92.8538 30.0109C92.8538 28.913 92.2552 27.8151 91.0475 27.8151C89.8398 27.8151 89.2409 28.913 89.2409 30.0109ZM93.4829 30.0109C93.4829 31.4878 92.6246 32.7356 91.0475 32.7356C89.4709 32.7356 88.6125 31.488 88.6125 30.0109C88.6125 28.5337 89.4709 27.286 91.0475 27.286C92.6246 27.286 93.4829 28.5337 93.4829 30.0109Z" fill="white"/>
|
||||
<path d="M51.6893 5.41113V2.94501L48.7508 -2.67029e-05H38.5689L35.6208 2.94338V13.1078L38.5689 16.05H41.8027V18.5234L44.7741 21.4714H53.3659L56.3449 18.528V10.654H57.862V5.41182H51.6895" fill="#D2D2D2"/>
|
||||
<path d="M48.6257 0.305048L51.384 3.07157V5.71667H57.5566V10.3492H56.0394V18.3987L53.2415 21.1641H44.8997L42.1092 18.3987V15.7459H38.6953L35.9271 12.9806V3.07111L38.6953 0.304813H48.6257" fill="black"/>
|
||||
<path d="M39.012 14.9826H42.8726V18.081L45.2143 20.4016H52.9282L55.2762 18.081V9.58544H56.7944V6.48099H52.1378V17.301H45.976V14.9826H48.3079L50.6217 12.665V9.58546H47.518V11.8864H45.9761V6.48102H41.3328V9.58546H42.8726V11.8864H39.787V4.14401H47.5179V6.48102H50.6217V3.38916L48.3079 1.0694H39.0118L36.6896 3.38809V12.6651L39.012 14.9826Z" fill="white"/>
|
||||
<path d="M45.592 14.6003H48.1488L50.2383 12.5076V9.96739H47.8996V12.2675H45.592V6.86353H41.7134V9.20427H43.2537V12.2675H39.4047V3.76259H47.8997V6.09913H50.2384V3.54633L48.1489 1.45089H39.1693L37.0709 3.54633V12.5077L39.1682 14.6005H43.2535V17.9209L45.3708 20.0207H52.7696L54.8936 17.9199V9.20432H56.4102V6.86358H52.5183V17.6812H45.5919L45.592 14.6003Z" fill="#D2D2D2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 27 KiB |
@@ -0,0 +1,75 @@
|
||||
<svg width="50" height="52" viewBox="0 0 50 52" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M29.9137 32.1514L30.5807 32.3506C30.8041 32.4141 31.0284 32.4749 31.2535 32.5322C32.8434 32.9373 34.4717 33.1864 36.11 33.2744C36.151 33.2766 36.1705 33.3111 36.1705 33.3389C36.1705 33.3528 36.1659 33.3684 36.1549 33.3809C36.1429 33.3942 36.125 33.4014 36.106 33.4004C35.6412 33.3755 35.1772 33.3378 34.7144 33.2871C33.0739 33.1076 31.4522 32.766 29.8775 32.2725C29.8382 32.26 29.8292 32.2211 29.8365 32.1943C29.8403 32.181 29.8483 32.1672 29.8619 32.1582C29.8692 32.1534 29.8778 32.1506 29.8863 32.1494L29.9137 32.1514Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M19.459 28.0504C20.0212 27.9661 20.5942 28.0114 21.1446 28.1382C22.2961 28.4037 23.3186 29.0182 24.3164 29.6129C25.3603 30.2349 26.4301 30.801 27.5469 31.2798C27.5643 31.2873 27.5769 31.3016 27.5811 31.3199C27.5848 31.3364 27.5811 31.352 27.5742 31.3638C27.5606 31.3871 27.5277 31.4077 27.4912 31.3922C27.355 31.3337 27.2192 31.2741 27.084 31.2134C26.532 30.9656 25.9886 30.6979 25.4561 30.4107C24.9313 30.1276 24.421 29.8202 23.9092 29.5172C22.9066 28.9235 21.8623 28.3531 20.7012 28.1822C20.1545 28.1018 19.596 28.1183 19.0625 28.2623C18.6458 28.3747 18.2505 28.5567 17.876 28.773C17.1074 29.2171 16.4302 29.7926 15.7012 30.3062C15.0047 30.7968 14.2444 31.2373 13.3848 31.3736C13.3455 31.3798 13.3189 31.3519 13.3116 31.3257C13.3079 31.3124 13.3077 31.296 13.3155 31.2808C13.3241 31.2644 13.3397 31.2536 13.3584 31.2505L13.6787 31.1861C14.5287 30.9748 15.269 30.4728 15.9707 29.9556C16.6861 29.4285 17.3895 28.8537 18.1983 28.4586C18.5958 28.2643 19.019 28.1164 19.459 28.0504Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M31.2898 33.0643L31.8416 33.1971C33.1326 33.4924 34.4456 33.687 35.7674 33.7762C35.808 33.7789 35.8268 33.8131 35.8269 33.8406C35.827 33.8547 35.8227 33.8711 35.8113 33.8836C35.7992 33.8968 35.7813 33.9034 35.7625 33.9022C34.2432 33.7996 32.735 33.5588 31.2586 33.1863C31.2402 33.1817 31.2252 33.17 31.2176 33.1541C31.2105 33.1392 31.2109 33.1227 31.2146 33.1092C31.2184 33.0957 31.2267 33.0822 31.24 33.0731C31.2471 33.0682 31.255 33.0648 31.2635 33.0633L31.2898 33.0643Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M13.5721 31.7319C14.4709 31.5339 15.2481 31.0121 15.9842 30.4692C16.6473 29.9801 17.2987 29.4529 18.035 29.0639C18.3886 28.8771 18.7628 28.7236 19.1541 28.6313C19.646 28.5152 20.1553 28.5025 20.6541 28.5688C21.7158 28.7099 22.6883 29.1851 23.6014 29.7104C23.8374 29.8462 24.0709 29.9862 24.3045 30.1254C24.5383 30.2648 24.7725 30.4039 25.0086 30.5385C25.4925 30.8144 25.9858 31.0737 26.4871 31.3168H26.4881C26.5048 31.3251 26.5165 31.3394 26.5203 31.3569C26.5239 31.3735 26.5196 31.3897 26.5125 31.4018C26.4986 31.4255 26.4651 31.4459 26.4285 31.4282C25.8728 31.1586 25.3272 30.8687 24.7928 30.559C24.2713 30.2568 23.763 29.9404 23.2371 29.6498C22.3013 29.1328 21.2877 28.6971 20.2108 28.6567C19.3181 28.6233 18.4939 28.9181 17.7361 29.3784C17.0576 29.7905 16.4321 30.3175 15.7684 30.7905C15.1068 31.2619 14.4104 31.6767 13.6014 31.8549C13.5618 31.8633 13.5347 31.8356 13.5272 31.809C13.5234 31.7954 13.5235 31.7781 13.5311 31.7631C13.5392 31.7474 13.5538 31.7359 13.5721 31.7319Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M33.2744 34.0046C33.9768 34.1229 34.6845 34.2116 35.3946 34.2702C35.4346 34.2737 35.4531 34.3083 35.4532 34.3356C35.4531 34.3495 35.4488 34.3652 35.4375 34.3776C35.4253 34.391 35.4075 34.3976 35.3887 34.3962C34.4342 34.3174 33.4845 34.1842 32.545 33.9987C32.5263 33.9951 32.5112 33.9837 32.503 33.9675C32.4954 33.9524 32.4953 33.936 32.4991 33.9225C32.5066 33.8961 32.5336 33.8679 32.5733 33.8757L33.2744 34.0046Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M20.4234 29.0645C21.4377 29.1491 22.355 29.5355 23.233 30.0127C23.6719 30.2512 24.1018 30.513 24.5289 30.7715C24.8496 30.9655 25.1687 31.1582 25.4898 31.3379L25.8121 31.5127L25.8326 31.5303C25.8378 31.5372 25.8416 31.5451 25.8434 31.5537C25.8466 31.5699 25.8425 31.5856 25.8355 31.5977C25.8215 31.6217 25.7871 31.6423 25.7506 31.623C25.256 31.3622 24.7776 31.0723 24.2994 30.7852C23.8211 30.498 23.3427 30.2134 22.8473 29.96C21.9694 29.5109 21.0099 29.1656 20.0172 29.1758C19.1885 29.1843 18.422 29.484 17.7193 29.9141C17.0739 30.3091 16.4788 30.803 15.8521 31.2549C15.2271 31.7057 14.5731 32.1125 13.8189 32.3242C13.8007 32.3293 13.7826 32.3261 13.7682 32.3164C13.7547 32.3073 13.7466 32.2937 13.7428 32.2803C13.739 32.2667 13.7388 32.2502 13.7457 32.2354C13.753 32.2198 13.7667 32.2073 13.7848 32.2021C14.6246 31.9664 15.354 31.463 16.0523 30.9453C16.6817 30.4788 17.3029 29.9822 17.9996 29.6074C18.7499 29.2038 19.5661 28.9929 20.4234 29.0645Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M20.2305 29.5499C21.1612 29.5885 22.051 29.9132 22.8701 30.3292C23.2935 30.5442 23.7035 30.7844 24.1104 31.0265C24.3092 31.1447 24.5069 31.2641 24.7061 31.381C24.9091 31.5001 25.0992 31.6258 25.3018 31.7394C25.3183 31.7487 25.3298 31.7641 25.333 31.7814C25.336 31.7976 25.3313 31.8132 25.3242 31.8253C25.3171 31.8375 25.3054 31.8482 25.2901 31.8536C25.2739 31.8593 25.2557 31.858 25.2393 31.8488C25.0176 31.7244 24.7999 31.5819 24.583 31.4542C24.3542 31.3194 24.1248 31.182 23.8965 31.047C23.4497 30.7828 22.9996 30.525 22.5313 30.3038C21.6936 29.9083 20.7742 29.6286 19.8438 29.6769C19.172 29.7118 18.5422 29.9419 17.958 30.2667L17.711 30.4113C17.0977 30.7871 16.5321 31.2482 15.9424 31.6788C15.3541 32.1085 14.7438 32.5064 14.0459 32.7482C14.028 32.7544 14.0094 32.752 13.9942 32.7423C13.98 32.7333 13.9715 32.7196 13.9678 32.7062C13.9606 32.6796 13.9693 32.6414 14.0078 32.6281L14.2969 32.5167C14.9622 32.2344 15.5582 31.8048 16.1397 31.3712C16.7344 30.9278 17.3266 30.4632 17.9854 30.1075C18.6794 29.7329 19.4346 29.5169 20.2305 29.5499Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M20.1166 30.0674C21.0041 30.0798 21.8222 30.3482 22.601 30.7188C23.3788 31.0888 24.1212 31.5622 24.8529 31.9844C24.8692 31.9939 24.88 32.0093 24.8832 32.0264C24.886 32.0424 24.8815 32.0582 24.8744 32.0703C24.8672 32.0824 24.8556 32.0933 24.8402 32.0986C24.832 32.1015 24.8235 32.1024 24.8148 32.1016L24.7894 32.0938C23.9499 31.6094 23.1411 31.0786 22.2533 30.6963C21.4666 30.3575 20.607 30.1375 19.7494 30.2041C19.0345 30.2597 18.367 30.5384 17.7552 30.9082C17.1715 31.2611 16.634 31.6899 16.0804 32.0996C15.5279 32.5085 14.96 32.8978 14.3187 33.167C14.3013 33.1743 14.2821 33.1738 14.266 33.1641C14.2511 33.1551 14.2432 33.1403 14.2396 33.127C14.2326 33.101 14.2402 33.0631 14.2767 33.0479C15.0046 32.7422 15.6453 32.2667 16.2777 31.793C16.8383 31.3731 17.401 30.9411 18.0248 30.6094C18.6723 30.2651 19.3765 30.0571 20.1166 30.0674Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M19.943 30.5898C21.592 30.5458 23.0514 31.4383 24.4049 32.2441C24.4211 32.2538 24.4311 32.2692 24.4342 32.2861C24.4371 32.3022 24.4335 32.3179 24.4264 32.3301C24.4193 32.3422 24.4077 32.353 24.3922 32.3584C24.3757 32.364 24.3576 32.3621 24.3414 32.3525C23.5588 31.8866 22.7785 31.4082 21.9273 31.0879C21.1963 30.8127 20.4084 30.6517 19.6295 30.7363C18.9756 30.8074 18.3617 31.0665 17.7975 31.4023C17.2442 31.7317 16.7345 32.1287 16.2154 32.5166C15.6971 32.9039 15.1695 33.2812 14.5826 33.5674C14.5461 33.5851 14.5126 33.5658 14.4986 33.542C14.4915 33.5299 14.4873 33.5136 14.4908 33.4971C14.4946 33.4793 14.507 33.4653 14.524 33.457L14.7682 33.3301C15.3312 33.0232 15.8466 32.6344 16.3619 32.248C17.4201 31.4547 18.5519 30.6271 19.943 30.5898Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M19.8389 31.0891C21.3566 31.0103 22.7437 31.7563 23.9981 32.4993C24.0141 32.5089 24.0243 32.5244 24.0274 32.5413C24.0301 32.5572 24.0266 32.5731 24.0196 32.5852C24.0124 32.5974 23.9999 32.6082 23.9844 32.6135C23.9762 32.6163 23.9676 32.6174 23.959 32.6165L23.9336 32.6077C23.2074 32.1775 22.4693 31.7593 21.669 31.4934C20.9785 31.264 20.2399 31.1442 19.5176 31.2454C18.9214 31.3289 18.3601 31.5663 17.8409 31.8704C17.3187 32.1762 16.8366 32.5428 16.3506 32.9075C15.8652 33.2717 15.3753 33.6342 14.8399 33.929C14.8233 33.938 14.8052 33.9396 14.7891 33.9338C14.7739 33.9284 14.762 33.9176 14.7549 33.9055C14.7478 33.8933 14.7439 33.8769 14.7471 33.8606C14.7505 33.8433 14.7618 33.8287 14.7784 33.8196L15.0039 33.6897C15.5244 33.3784 16.0072 33.0068 16.4951 32.6418C17.4832 31.9029 18.551 31.1561 19.8389 31.0891Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M19.7623 31.6165C21.1362 31.5156 22.4299 32.113 23.5836 32.7737C23.6 32.7831 23.6106 32.7985 23.6139 32.8157C23.6169 32.8318 23.6131 32.8475 23.606 32.8596C23.599 32.8718 23.5872 32.8825 23.5719 32.8879C23.5556 32.8936 23.5375 32.8923 23.5211 32.8831C22.8559 32.5021 22.1701 32.1523 21.4342 31.9397C20.7948 31.755 20.1177 31.6726 19.4596 31.7776C18.9077 31.8656 18.3867 32.0833 17.9019 32.3616C17.4126 32.6425 16.9592 32.978 16.5064 33.3176C16.0541 33.6569 15.6012 34.0007 15.1158 34.2961C15.0997 34.3059 15.0817 34.3076 15.065 34.302C15.0493 34.2967 15.037 34.2859 15.0299 34.2737C15.0228 34.2615 15.0193 34.2457 15.0221 34.2297C15.0251 34.2129 15.0353 34.1976 15.0514 34.1877C15.6109 33.8472 16.1268 33.4428 16.6549 33.051C17.5742 32.3689 18.5763 31.7035 19.7623 31.6165Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M19.6615 32.1466C20.8895 32.0241 22.0806 32.4808 23.1371 33.046C23.1538 33.055 23.1649 33.0706 23.1683 33.088C23.1714 33.1042 23.1675 33.1199 23.1605 33.132C23.1464 33.156 23.1121 33.1759 23.0756 33.1564C22.47 32.8324 21.8405 32.5518 21.1732 32.3917C20.5917 32.2523 19.983 32.2046 19.3939 32.3097C18.8858 32.4004 18.4047 32.6004 17.9545 32.8536C17.5014 33.1085 17.0793 33.4113 16.6615 33.7228C16.2443 34.0338 15.8305 34.3541 15.3949 34.6417C15.3791 34.6522 15.3603 34.655 15.3431 34.6495C15.3272 34.6444 15.316 34.6324 15.309 34.6202C15.2951 34.5963 15.2934 34.5569 15.3275 34.5343L15.7045 34.2765C16.0763 34.0118 16.4368 33.7312 16.807 33.4601C17.6544 32.8397 18.5827 32.2542 19.6615 32.1466Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M19.5247 32.6553C20.6075 32.5111 21.6874 32.8373 22.6497 33.2979C22.6667 33.3061 22.679 33.321 22.6829 33.3389C22.6863 33.3552 22.682 33.3709 22.675 33.3828C22.6612 33.4065 22.6276 33.4266 22.5911 33.4092C22.0407 33.1458 21.4654 32.9322 20.8655 32.8232C20.347 32.7291 19.8114 32.7162 19.2952 32.8213C18.8333 32.9153 18.3946 33.0985 17.9817 33.3271C17.1538 33.7858 16.4358 34.4048 15.6575 34.9502C15.642 34.961 15.6241 34.9643 15.6067 34.959C15.5904 34.954 15.5786 34.9427 15.5715 34.9307C15.5578 34.9069 15.5561 34.868 15.5891 34.8447L16.2571 34.3564C16.4776 34.1914 16.6979 34.0256 16.9231 33.8633C17.6996 33.3034 18.5505 32.7851 19.5247 32.6553Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M19.387 33.1975C20.3255 33.039 21.2814 33.247 22.1477 33.5979C22.184 33.6128 22.1926 33.65 22.1858 33.676C22.1821 33.6894 22.1732 33.7041 22.1584 33.7131C22.1425 33.7229 22.1233 33.7241 22.1057 33.717C21.6146 33.5181 21.1029 33.366 20.5774 33.302C20.1182 33.2461 19.6509 33.26 19.2004 33.3635C18.798 33.4559 18.4134 33.6149 18.0491 33.8108C17.2956 34.216 16.6317 34.7615 15.9387 35.2678L15.9397 35.2688C15.9245 35.28 15.9056 35.2838 15.8879 35.2786C15.8716 35.2737 15.8598 35.2622 15.8528 35.2502C15.8392 35.2268 15.8373 35.188 15.8694 35.1643L16.4641 34.7209C16.6623 34.5726 16.8617 34.425 17.0637 34.2825C17.762 33.7901 18.5265 33.3429 19.387 33.1975Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M19.1734 33.7627C19.9672 33.5793 20.7891 33.6734 21.5582 33.9062C21.5762 33.9117 21.5901 33.9231 21.5973 33.9385C21.604 33.9533 21.6039 33.9698 21.6002 33.9834C21.5965 33.9968 21.5884 34.0104 21.5748 34.0195C21.5601 34.0292 21.5412 34.0319 21.523 34.0264C21.0808 33.8924 20.625 33.8041 20.1637 33.792C19.4087 33.7721 18.6923 33.986 18.0309 34.3457C17.396 34.691 16.8236 35.1374 16.2428 35.5713C16.2276 35.5826 16.2088 35.5863 16.191 35.5811C16.1747 35.5762 16.1629 35.5646 16.1559 35.5527C16.1423 35.5293 16.1405 35.4906 16.1725 35.4668L16.6881 35.0811C16.8608 34.9533 17.0352 34.8268 17.2125 34.7051C17.8099 34.2949 18.457 33.9283 19.1734 33.7627Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M18.9239 34.3243C19.5527 34.1362 20.2089 34.1236 20.8516 34.2325C20.8701 34.2357 20.886 34.2457 20.8946 34.2618C20.9025 34.2771 20.9022 34.2943 20.8985 34.3077C20.891 34.3339 20.8646 34.3613 20.8252 34.3546C20.452 34.2914 20.0727 34.268 19.6963 34.3019C18.4892 34.4106 17.4804 35.1386 16.5303 35.8497C16.5151 35.8611 16.4964 35.8648 16.4785 35.8595C16.462 35.8546 16.4504 35.8432 16.4434 35.8312C16.4298 35.8077 16.428 35.7691 16.46 35.7452C16.7408 35.5352 17.0234 35.326 17.3155 35.13C17.8126 34.7964 18.3444 34.4977 18.9239 34.3243Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M19.8803 34.6917C19.8883 34.6949 19.8959 34.6997 19.9018 34.7063C19.9128 34.7187 19.9174 34.7344 19.9174 34.7483C19.9173 34.776 19.8978 34.8104 19.8568 34.8127C18.9908 34.8608 18.21 35.2236 17.4887 35.6946C17.4728 35.7049 17.454 35.7069 17.4369 35.7014C17.4212 35.6963 17.4098 35.6851 17.4027 35.6731C17.3888 35.6491 17.388 35.6097 17.4223 35.5872C18.1571 35.1073 18.9597 34.7363 19.8529 34.6868L19.8803 34.6917Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M26.2209 31.8873C26.8051 31.7333 27.4105 31.7244 28.0002 31.8521C29.2282 32.1184 30.277 32.873 31.2853 33.566C32.315 34.2736 33.429 34.9919 34.6955 35.0972C34.7357 35.1006 34.754 35.1353 34.7541 35.1627C34.754 35.1765 34.7498 35.1922 34.7384 35.2047C34.7261 35.2181 34.7085 35.2247 34.6896 35.2232C34.544 35.2111 34.3987 35.1919 34.255 35.1646C33.0206 34.9302 31.9564 34.1828 30.9513 33.4879C29.9361 32.7859 28.8393 32.0579 27.5949 31.9117C26.9862 31.8402 26.3816 31.9359 25.8087 32.1519C25.2249 32.3722 24.6856 32.6966 24.1574 33.0318C23.6171 33.3746 23.0793 33.7214 22.5197 34.0357C21.9438 34.3591 21.3542 34.6578 20.755 34.9351C19.5674 35.4849 18.3425 35.9507 17.1027 36.3658C17.0849 36.3716 17.0669 36.3694 17.0519 36.3599C17.0377 36.3508 17.0292 36.3364 17.0255 36.3228C17.0185 36.2963 17.0272 36.2588 17.0656 36.2457L17.5353 36.0855C18.7904 35.6505 20.0267 35.1583 21.2199 34.5748C21.8065 34.2878 22.3833 33.9789 22.9445 33.6451C23.2167 33.4831 23.4838 33.3124 23.7511 33.1412C24.0184 32.97 24.2864 32.7982 24.5597 32.6353C25.08 32.3253 25.6291 32.0433 26.2209 31.8873Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M26.1879 32.5661C26.7343 32.4177 27.3018 32.3934 27.8588 32.4948C29.0052 32.7037 30.0146 33.3625 30.9506 34.0075C31.9416 34.6903 32.9534 35.4098 34.1361 35.6823C34.1546 35.6865 34.1692 35.6977 34.1772 35.7136C34.1846 35.7286 34.1848 35.7449 34.1811 35.7585C34.1736 35.7853 34.146 35.8136 34.1059 35.8044C33.9622 35.7713 33.8203 35.7312 33.6801 35.6852C32.5409 35.3123 31.5767 34.5777 30.602 33.9216C29.6485 33.2798 28.6007 32.6549 27.4379 32.5671C26.2627 32.4783 25.2103 33.0367 24.2367 33.6501C23.7353 33.9661 23.2387 34.293 22.7231 34.5895C22.1886 34.8969 21.6412 35.1825 21.0854 35.4489C19.9853 35.9761 18.8508 36.4275 17.7006 36.8307C17.6828 36.837 17.6641 36.8354 17.6488 36.8259C17.6345 36.8168 17.6262 36.8023 17.6225 36.7888C17.6153 36.7622 17.6242 36.7241 17.6625 36.7106L18.0981 36.5554C19.2692 36.1306 20.4212 35.651 21.5326 35.0886C22.0812 34.8109 22.62 34.513 23.1449 34.1931C23.6435 33.8892 24.1336 33.5533 24.64 33.2565C25.1261 32.9717 25.6391 32.7152 26.1879 32.5661Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M26.1807 33.236C26.6802 33.1003 27.1985 33.0673 27.711 33.1423C28.7768 33.2981 29.7342 33.8648 30.6084 34.4499C31.5555 35.0838 32.4661 35.7804 33.5371 36.1765C33.5749 36.1905 33.5834 36.2282 33.5762 36.2546C33.5725 36.2681 33.5643 36.2826 33.5498 36.2917C33.5344 36.3013 33.5158 36.3021 33.4981 36.2956C32.3078 35.8554 31.3153 35.0517 30.2686 34.3766C29.3783 33.8024 28.3929 33.2797 27.3213 33.2311C26.2431 33.1824 25.2667 33.6775 24.3662 34.236C23.8993 34.5257 23.4387 34.8337 22.9639 35.1149C22.4792 35.402 21.9832 35.6706 21.4795 35.9225C20.4587 36.4332 19.4048 36.8758 18.335 37.2712C18.3173 37.2777 18.2987 37.276 18.2832 37.2663C18.2688 37.2572 18.2605 37.2427 18.2569 37.2292C18.2499 37.2028 18.2582 37.165 18.2959 37.1511C18.4306 37.1012 18.5651 37.0509 18.6992 36.9997C19.7792 36.587 20.8399 36.1222 21.8633 35.5847C22.371 35.3179 22.8695 35.0334 23.3555 34.7292C23.8118 34.4435 24.2619 34.1399 24.7315 33.8708C25.1881 33.6091 25.6685 33.3752 26.1807 33.236Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M26.242 33.8917C26.7096 33.7723 27.1932 33.7433 27.6717 33.8087C28.6428 33.9414 29.5277 34.4211 30.3347 34.9415C31.1141 35.4442 31.8464 36.0057 32.656 36.4445L33.0086 36.6241L33.0301 36.6407C33.0357 36.6476 33.0389 36.6562 33.0408 36.6652C33.0444 36.6818 33.0411 36.698 33.034 36.7101C33.02 36.7337 32.9863 36.7536 32.95 36.7365C32.4203 36.4825 31.9279 36.1685 31.4451 35.8429C30.9615 35.5167 30.4875 35.1791 29.992 34.8751C29.1612 34.3655 28.2427 33.9279 27.2586 33.9005C26.2711 33.8731 25.3646 34.3015 24.531 34.8058C24.3168 34.9354 24.1054 35.0706 23.8943 35.2062C23.6833 35.3417 23.4718 35.478 23.2576 35.6095C22.8142 35.8816 22.3609 36.1376 21.9002 36.379C20.9663 36.8684 20.0011 37.2968 19.0203 37.6818C19.0027 37.6887 18.9834 37.6876 18.9676 37.6779C18.9531 37.6689 18.9449 37.655 18.9412 37.6417C18.9341 37.6155 18.942 37.5772 18.9793 37.5626C20.1041 37.1212 21.2067 36.6223 22.2654 36.0402C22.7265 35.7867 23.1778 35.5165 23.6209 35.2325C24.0362 34.9664 24.4513 34.6943 24.8855 34.4552C25.3137 34.2195 25.7649 34.0136 26.242 33.8917Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M24.9834 35.067C25.7832 34.6474 26.6317 34.3611 27.5723 34.4673C28.5204 34.5744 29.3525 34.9882 30.1426 35.4859C30.5375 35.7347 30.9226 36.0056 31.3067 36.2691C31.6912 36.533 32.0753 36.7903 32.4678 37.0142C32.484 37.0235 32.4948 37.0383 32.4981 37.0552C32.5011 37.0715 32.4964 37.088 32.4893 37.1002C32.4821 37.1122 32.4704 37.1231 32.4551 37.1285C32.4389 37.1341 32.4207 37.1329 32.4043 37.1236C31.9396 36.8584 31.4988 36.5566 31.0596 36.2554C30.6199 35.9539 30.1812 35.6522 29.7207 35.3863C28.9508 34.9417 28.1027 34.5831 27.2071 34.5699C26.3032 34.5567 25.4635 34.9252 24.6914 35.3775C24.3123 35.5996 23.945 35.8418 23.5733 36.0787C23.1631 36.34 22.7445 36.5877 22.3184 36.8218C21.4832 37.2809 20.6204 37.6883 19.7422 38.0572C19.7248 38.0645 19.7056 38.064 19.6895 38.0543C19.6747 38.0452 19.6667 38.0305 19.6631 38.0172C19.6563 37.9912 19.664 37.9543 19.7002 37.939L20.4619 37.607C21.2186 37.2646 21.9606 36.8894 22.6797 36.4742C23.0553 36.2573 23.4303 36.0104 23.8125 35.7652C24.1945 35.5202 24.5835 35.2768 24.9834 35.067Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M27.5035 35.1297C28.3423 35.2073 29.0965 35.5363 29.8082 35.9529C30.5179 36.3684 31.1923 36.8758 31.8619 37.3094C31.8964 37.3318 31.8953 37.3713 31.8814 37.3953C31.8744 37.4075 31.8632 37.4194 31.8473 37.4246C31.8303 37.4302 31.8114 37.4271 31.7955 37.4168C31.009 36.9075 30.2715 36.3393 29.4478 35.9002C28.7478 35.5271 27.9822 35.2447 27.1852 35.2401C26.3864 35.2355 25.6329 35.53 24.9381 35.9139C24.579 36.1122 24.2311 36.3311 23.8844 36.5526C23.5381 36.7738 23.1915 36.9973 22.8355 37.2049C22.0878 37.6408 21.3158 38.0334 20.5279 38.3904C20.4914 38.4069 20.4577 38.3866 20.4439 38.3631C20.437 38.3511 20.4334 38.3348 20.4371 38.3182C20.4412 38.3003 20.4532 38.2859 20.4703 38.2781C21.3735 37.8688 22.2565 37.4135 23.1041 36.8992C23.7739 36.4929 24.4539 36.0103 25.1725 35.6512C25.8928 35.2912 26.6582 35.0516 27.5035 35.1297Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M27.4916 35.8C28.9559 35.9293 30.1934 36.8454 31.3549 37.6409C31.3882 37.6637 31.388 37.702 31.3744 37.7258C31.3674 37.7379 31.3553 37.75 31.3393 37.7551C31.322 37.7606 31.3032 37.757 31.2875 37.7463C30.6191 37.2886 29.9601 36.819 29.2357 36.4602C28.6013 36.146 27.9143 35.9188 27.2045 35.9114C26.4987 35.904 25.8216 36.1312 25.1947 36.4504C24.5642 36.7716 23.9838 37.1756 23.3803 37.551C22.7191 37.9625 22.0354 38.3367 21.3373 38.6809C21.3008 38.6988 21.2672 38.6793 21.2533 38.6555C21.2462 38.6434 21.242 38.6272 21.2455 38.6106C21.2493 38.5929 21.2617 38.5789 21.2787 38.5706L21.8725 38.2668C22.4626 37.9559 23.0398 37.6217 23.602 37.262C24.7687 36.5152 26.0213 35.6704 27.4916 35.8Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M27.4551 36.4684C28.7126 36.5708 29.8269 37.2705 30.834 37.9587C30.8676 37.9816 30.8664 38.0208 30.8526 38.0446C30.8456 38.0567 30.8344 38.0688 30.8184 38.0739C30.8099 38.0766 30.8006 38.0772 30.792 38.0759L30.7666 38.0651C30.1882 37.67 29.597 37.2887 28.958 37.0046C28.3973 36.7553 27.7958 36.5859 27.1817 36.5817C26.5721 36.5777 25.9795 36.7473 25.4268 37.0026C24.8792 37.2556 24.3686 37.5828 23.8594 37.9099C23.3044 38.2664 22.7412 38.6085 22.1602 38.9225C22.1239 38.9419 22.0893 38.9221 22.0752 38.8981C22.0681 38.886 22.0642 38.8696 22.0674 38.8532C22.0709 38.8359 22.0821 38.8212 22.0987 38.8122L22.5928 38.5358C23.082 38.2525 23.5596 37.9507 24.0381 37.6462C25.062 36.9945 26.1853 36.3651 27.4551 36.4684Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M27.3043 37.1297C28.3521 37.1705 29.317 37.6539 30.1822 38.1961C30.2174 38.2181 30.2168 38.2579 30.2027 38.282C30.1957 38.2941 30.1842 38.3051 30.1685 38.3104C30.1517 38.3159 30.1328 38.3137 30.1168 38.3035C29.6254 37.9957 29.1153 37.7138 28.5709 37.5174C28.1017 37.3482 27.6074 37.2451 27.109 37.2527C26.6192 37.2604 26.1396 37.3795 25.6852 37.5633C25.2113 37.7549 24.7672 38.0079 24.3316 38.2791C24.1145 38.4143 23.8987 38.5549 23.6822 38.6942L23.0299 39.1024C23.0137 39.112 22.9956 39.1138 22.9791 39.1082C22.9635 39.1029 22.951 39.0921 22.9439 39.0799C22.9369 39.0677 22.9333 39.052 22.9361 39.0359C22.9392 39.019 22.9493 39.0037 22.9654 38.994L23.731 38.5154C23.9845 38.3532 24.2383 38.1905 24.4967 38.035C25.3454 37.524 26.2824 37.0899 27.3043 37.1297Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M27.2486 37.7985C28.0638 37.8172 28.8373 38.1131 29.5435 38.4918C29.5603 38.5008 29.5713 38.5154 29.5748 38.5328C29.578 38.5492 29.5741 38.5646 29.567 38.5768C29.553 38.6007 29.5193 38.6212 29.483 38.6022V38.6012C29.0838 38.3871 28.6689 38.2019 28.234 38.0787C27.4737 37.8635 26.6945 37.8816 25.9469 38.1373C25.2156 38.3875 24.557 38.8092 23.9059 39.2272C23.8899 39.2374 23.8711 39.2396 23.8541 39.234C23.8382 39.2288 23.826 39.2178 23.8189 39.2057C23.805 39.1817 23.8048 39.142 23.8394 39.1198L24.4244 38.7506C24.6212 38.6306 24.8208 38.5147 25.025 38.4069C25.7102 38.0449 26.4594 37.7803 27.2486 37.7985Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M26.6455 38.5054C27.3246 38.4079 28.0032 38.5204 28.6407 38.7535C28.6785 38.7673 28.6877 38.8052 28.6807 38.8316C28.677 38.845 28.6686 38.8596 28.6543 38.8687C28.6389 38.8784 28.6194 38.8801 28.6016 38.8736C27.9716 38.6433 27.3027 38.532 26.6377 38.6334C26.0021 38.7302 25.4088 38.998 24.8487 39.313C24.8322 39.3223 24.8132 39.3237 24.7969 39.3179C24.7817 39.3125 24.7698 39.3017 24.7627 39.2896C24.7556 39.2774 24.7518 39.2609 24.7549 39.2447C24.7583 39.2277 24.769 39.2129 24.7852 39.2037L25.2266 38.9713C25.6749 38.7518 26.1473 38.577 26.6455 38.5054Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M30.1628 26.1116C31.0127 25.6256 31.9625 25.2775 32.9586 25.5003C33.4629 25.6131 33.9476 25.8219 34.4118 26.0364C34.8559 26.2417 35.288 26.4734 35.7047 26.7298C36.5497 27.2498 37.3314 27.8721 38.029 28.5775C38.0421 28.5909 38.0479 28.6082 38.0465 28.6253C38.0453 28.6414 38.0378 28.6554 38.028 28.6653C38.018 28.6753 38.0034 28.6837 37.987 28.6849C37.9697 28.6861 37.9524 28.6797 37.9391 28.6663C37.1668 27.8854 36.2918 27.2086 35.3405 26.6595C34.919 26.4162 34.4822 26.1975 34.0348 26.0062C33.5426 25.7956 33.0312 25.5956 32.4987 25.5579C31.5126 25.4882 30.5992 25.9755 29.7799 26.4896C29.3532 26.7573 28.9324 27.0425 28.4987 27.303C28.0509 27.572 27.5929 27.825 27.1247 28.0569C26.2013 28.5143 25.2348 28.8918 24.2321 29.138C24.2138 29.1425 24.1964 29.1389 24.1823 29.1292C24.1689 29.12 24.1606 29.1067 24.1569 29.0931C24.1532 29.0795 24.1535 29.0631 24.1608 29.0482C24.1686 29.0325 24.1826 29.0214 24.2008 29.0169C25.3584 28.7327 26.4668 28.271 27.5192 27.7122C27.9771 27.469 28.4257 27.2073 28.8639 26.93C29.2943 26.6575 29.7178 26.3661 30.1628 26.1116Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M31.7086 26.0198C32.1721 25.9281 32.6393 25.9478 33.0954 26.0677C33.5614 26.1902 34.0115 26.3834 34.445 26.5853C34.8713 26.7838 35.2862 27.0074 35.6872 27.2532C36.4914 27.7462 37.2384 28.3311 37.9108 28.9925C37.9242 29.0057 37.9305 29.023 37.9294 29.0403C37.9282 29.0568 37.9198 29.0714 37.9098 29.0814C37.8999 29.0912 37.8859 29.0986 37.8698 29.0999C37.8526 29.1013 37.8354 29.0955 37.8219 29.0823C37.0732 28.3457 36.2317 27.7054 35.321 27.1819C34.9248 26.9542 34.5154 26.7487 34.0963 26.5667C33.6447 26.3706 33.1791 26.1829 32.694 26.1126C31.7427 25.9748 30.8366 26.387 30.0309 26.8704C29.6232 27.1151 29.2339 27.3817 28.8288 27.6351C28.4094 27.8973 27.9811 28.1462 27.5436 28.3773C26.6755 28.8357 25.7692 29.227 24.8278 29.511C24.8096 29.5165 24.7908 29.5139 24.776 29.5042C24.7622 29.4951 24.7544 29.4807 24.7506 29.4671C24.747 29.4535 24.7469 29.4378 24.7536 29.4232C24.7607 29.4076 24.7745 29.3954 24.7926 29.39L25.1969 29.261C26.1355 28.9442 27.0375 28.5229 27.902 28.0384C28.3385 27.7938 28.7649 27.5315 29.1842 27.2581C29.5873 26.9952 29.9925 26.7299 30.4206 26.5042C30.8255 26.2907 31.2552 26.1096 31.7086 26.0198Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M31.904 26.5219C32.354 26.4606 32.7987 26.5104 33.2311 26.6391C33.6698 26.7697 34.0949 26.9545 34.5065 27.1489C34.9143 27.3414 35.3117 27.5565 35.696 27.7924C36.4574 28.2601 37.1671 28.8099 37.8112 29.4291C37.8249 29.4423 37.8319 29.4594 37.8307 29.477C37.8296 29.4935 37.8212 29.508 37.8112 29.518C37.8012 29.5278 37.7872 29.5352 37.7711 29.5366C37.754 29.538 37.7369 29.5321 37.7233 29.519C37.0052 28.8287 36.2052 28.226 35.3424 27.728C34.9634 27.5091 34.5718 27.3102 34.1715 27.1332C33.7433 26.9439 33.3034 26.7635 32.8463 26.6733C31.9491 26.4965 31.0812 26.8107 30.2985 27.2495C29.9124 27.4658 29.5429 27.7104 29.1706 27.9526C28.7751 28.2098 28.3713 28.4544 27.9596 28.685C27.147 29.1401 26.3012 29.5388 25.4225 29.851C25.4048 29.8573 25.3861 29.8557 25.3708 29.8461C25.3564 29.8371 25.3481 29.8226 25.3444 29.809C25.3372 29.7825 25.3461 29.7445 25.3844 29.7309L25.7643 29.5893C26.6474 29.247 27.4966 28.8196 28.3122 28.3373C28.7075 28.1035 29.0897 27.8457 29.4792 27.5961C29.868 27.347 30.2633 27.1061 30.6823 26.9077C31.068 26.725 31.4772 26.5801 31.904 26.5219Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M32.0994 27.0353C32.5353 27.0027 32.9621 27.0802 33.3728 27.215C34.1825 27.4809 34.9619 27.8722 35.6863 28.3156C36.4071 28.7568 37.0819 29.2715 37.699 29.8488C37.7128 29.8617 37.7196 29.879 37.7185 29.8967C37.7174 29.9132 37.7099 29.9278 37.7 29.9377C37.6803 29.9572 37.6422 29.9675 37.6121 29.9396C36.9234 29.2952 36.1616 28.7301 35.3445 28.259C34.9864 28.0525 34.6181 27.8638 34.241 27.6945C33.8401 27.5146 33.4296 27.3433 33.0047 27.2394C32.5794 27.1356 32.1442 27.127 31.7156 27.216C31.3182 27.2985 30.9384 27.4528 30.576 27.6379C30.1966 27.8315 29.8349 28.0568 29.4754 28.2883C29.1162 28.5195 28.7588 28.7577 28.3904 28.9758C27.625 29.4289 26.8299 29.8331 26.0047 30.1672C25.9871 30.1743 25.9679 30.173 25.9519 30.1633C25.9372 30.1542 25.9292 30.1395 25.9256 30.1262C25.9186 30.1001 25.9268 30.0628 25.9637 30.048L26.3211 29.8976C27.1525 29.5367 27.9533 29.1049 28.7234 28.6262C29.4416 28.1796 30.1374 27.6668 30.9285 27.3351C31.3004 27.1792 31.6939 27.0656 32.0994 27.0353Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M32.2908 27.5618C32.7095 27.558 33.1163 27.6572 33.5056 27.7952C35.001 28.3256 36.3892 29.1919 37.5613 30.2552L37.5769 30.2776C37.5803 30.2856 37.5823 30.2942 37.5818 30.303C37.5809 30.3196 37.5731 30.3341 37.5633 30.3441C37.5436 30.3637 37.5049 30.3746 37.4744 30.347C36.8228 29.756 36.1094 29.2348 35.3474 28.7952C34.6634 28.4007 33.9296 28.039 33.1717 27.8196C32.783 27.7072 32.3844 27.6609 31.9832 27.7083C31.5968 27.7539 31.2211 27.8753 30.865 28.0345C30.1478 28.3551 29.5104 28.8172 28.8416 29.2357C28.124 29.6847 27.3804 30.0933 26.6092 30.4437C26.5726 30.4602 26.539 30.4398 26.5252 30.4163C26.5181 30.4043 26.5146 30.3881 26.5183 30.3714C26.5224 30.3534 26.5344 30.3392 26.5515 30.3314L26.8816 30.1771C27.6472 29.8094 28.3859 29.3859 29.0984 28.9232C29.7561 28.4961 30.421 28.0438 31.1707 27.7757C31.529 27.6476 31.9075 27.5655 32.2908 27.5618Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M32.4785 28.1005C32.8723 28.1235 33.2529 28.2347 33.6172 28.371C35.0177 28.8947 36.3173 29.6919 37.4366 30.6805C37.4504 30.693 37.4578 30.7097 37.4571 30.7274C37.4562 30.7441 37.4483 30.7585 37.4385 30.7684C37.419 30.7879 37.3812 30.7992 37.3506 30.7723C36.7269 30.2215 36.0486 29.7339 35.3272 29.3192C34.6854 28.9503 34.0042 28.6194 33.2998 28.3934C32.9302 28.2748 32.5499 28.2049 32.1631 28.2255C31.8155 28.244 31.4734 28.3289 31.1465 28.451C30.4608 28.7074 29.844 29.1178 29.2295 29.5184C28.5667 29.9506 27.8841 30.3518 27.1758 30.7059C27.1393 30.7241 27.1048 30.7034 27.0909 30.6796C27.0839 30.6676 27.0797 30.6519 27.083 30.6356C27.0868 30.6179 27.0993 30.6031 27.1162 30.5946L27.7139 30.2792C28.3053 29.9528 28.8778 29.5955 29.4473 29.2274C30.0588 28.8321 30.6977 28.4375 31.4082 28.2313C31.7543 28.131 32.1167 28.0793 32.4785 28.1005Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M32.6319 28.6479C32.9958 28.6896 33.3466 28.8005 33.6846 28.9301C34.9814 29.4274 36.1883 30.1521 37.2471 31.0493C37.2616 31.0615 37.2703 31.0788 37.2696 31.0971C37.2688 31.1141 37.26 31.1282 37.25 31.1381C37.2306 31.1573 37.1939 31.1687 37.1631 31.143C36.5718 30.6419 35.9342 30.1958 35.2598 29.8139C34.6624 29.4757 34.0335 29.1747 33.3838 28.9545C33.0438 28.8394 32.6936 28.759 32.336 28.7563C32.0139 28.7539 31.6933 28.8098 31.3848 28.9047C30.7442 29.102 30.1614 29.4542 29.5967 29.8168C28.9865 30.2087 28.3774 30.6002 27.7383 30.9477C27.7218 30.9566 27.7036 30.9574 27.6875 30.9516C27.6724 30.9461 27.6604 30.9354 27.6534 30.9233C27.6463 30.9112 27.6424 30.8955 27.6455 30.8793C27.6489 30.8621 27.6603 30.8474 27.6768 30.8383C28.4096 30.4398 29.0959 29.975 29.8067 29.5346C30.3733 29.1835 30.9784 28.8542 31.6397 28.7075C31.9643 28.6354 32.3001 28.6099 32.6319 28.6479Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M31.9109 29.1931C32.5723 29.102 33.1973 29.2681 33.8025 29.5085C34.8455 29.9227 35.828 30.4804 36.7215 31.158L37.0994 31.4558L37.116 31.4773C37.1199 31.4854 37.1222 31.4944 37.1219 31.5037C37.1212 31.5206 37.113 31.5349 37.1033 31.5447C37.084 31.5639 37.0465 31.5751 37.0154 31.5496C36.4671 31.0998 35.8806 30.6967 35.2635 30.3474C34.7104 30.0343 34.1315 29.7592 33.5349 29.5408C33.219 29.4251 32.8936 29.3302 32.5603 29.3005C32.2589 29.2737 31.9546 29.3001 31.659 29.3669C31.0621 29.502 30.5107 29.7914 29.9871 30.1091C29.7087 30.2781 29.4352 30.4549 29.1609 30.6316C28.8869 30.8082 28.6118 30.9843 28.3299 31.1501C28.3136 31.1597 28.2955 31.1616 28.2791 31.156C28.2635 31.1507 28.2511 31.1399 28.2439 31.1277C28.2369 31.1155 28.2332 31.0998 28.2361 31.0837C28.2392 31.0667 28.25 31.0513 28.2664 31.0417C28.5911 30.8507 28.907 30.6452 29.2244 30.4402C29.5417 30.2353 29.861 30.0311 30.1902 29.8435C30.7214 29.5409 31.2955 29.278 31.9109 29.1931Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M32.0801 29.7079C32.6971 29.6581 33.2819 29.8363 33.8418 30.0614C34.9469 30.5057 35.9828 31.1105 36.917 31.8485C36.9318 31.8602 36.9409 31.8769 36.9405 31.8954C36.9399 31.9126 36.9317 31.9276 36.9219 31.9374C36.9027 31.9565 36.8652 31.9679 36.834 31.9432C36.315 31.5332 35.7643 31.1637 35.1866 30.8417C34.6748 30.5564 34.142 30.3049 33.5938 30.0985C33.0274 29.8854 32.4481 29.7642 31.8487 29.8622C31.2875 29.9539 30.7713 30.1829 30.2764 30.4637C29.7804 30.7452 29.3096 31.0763 28.833 31.3749C28.8171 31.3848 28.799 31.3872 28.7823 31.3817C28.7665 31.3765 28.7542 31.3655 28.7471 31.3534C28.7332 31.3295 28.7328 31.2895 28.7676 31.2675C29.3332 30.9131 29.8853 30.5226 30.4834 30.2137C30.9794 29.9576 31.5156 29.7535 32.0801 29.7079Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M32.3543 30.2323C32.9167 30.239 33.451 30.4297 33.9588 30.6395C34.9545 31.0511 35.8931 31.5939 36.7498 32.2469C36.7813 32.271 36.7799 32.3095 36.7664 32.3329C36.7595 32.3448 36.7477 32.3563 36.7312 32.3612C36.7132 32.3665 36.6945 32.3619 36.6795 32.3505C36.2104 31.9929 35.7169 31.6683 35.2019 31.3807C34.7378 31.1216 34.2565 30.8923 33.7625 30.6962C33.2579 30.4958 32.7387 30.337 32.1961 30.3612C31.1627 30.4074 30.245 31.0006 29.3933 31.5546C29.3774 31.5649 29.3586 31.5669 29.3416 31.5614C29.3257 31.5562 29.3135 31.5452 29.3064 31.5331C29.2926 31.5091 29.2925 31.4695 29.3269 31.4471L29.7078 31.202C30.0916 30.96 30.4857 30.7311 30.9051 30.5526C31.3615 30.3582 31.8521 30.2264 32.3543 30.2323Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M31.292 30.9392C31.7277 30.798 32.1907 30.7314 32.6494 30.7869C33.1376 30.8458 33.6015 31.0254 34.0469 31.2136C34.9284 31.5861 35.7643 32.0618 36.5371 32.6257C36.5694 32.6493 36.5682 32.6881 36.5547 32.7117C36.5478 32.7237 36.5359 32.736 36.5196 32.741C36.5019 32.7463 36.4831 32.7422 36.4678 32.7312C36.0439 32.4219 35.601 32.138 35.1416 31.8845C34.7336 31.6595 34.313 31.4568 33.8819 31.28C33.4291 31.0944 32.9615 30.9254 32.4746 30.8972C31.5545 30.844 30.6992 31.2731 29.9268 31.7458C29.9107 31.7556 29.8926 31.7573 29.876 31.7517C29.8603 31.7464 29.848 31.7356 29.8409 31.7234C29.8338 31.7112 29.8302 31.6954 29.833 31.6794C29.836 31.6625 29.8462 31.6473 29.8623 31.6375C30.3133 31.3615 30.7843 31.1039 31.292 30.9392Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M31.6342 31.3782C31.9905 31.299 32.3586 31.2783 32.7211 31.3314C33.1152 31.389 33.4924 31.524 33.8568 31.6712C34.583 31.9644 35.2796 32.3273 35.9379 32.7513C35.9725 32.7736 35.9714 32.8132 35.9574 32.8372C35.9503 32.8494 35.9392 32.8613 35.9232 32.8665C35.9063 32.872 35.8874 32.869 35.8715 32.8587C35.5166 32.63 35.151 32.4183 34.7748 32.2269C34.4311 32.0519 34.0789 31.8935 33.7201 31.7523C33.3635 31.6119 32.9972 31.4882 32.6186 31.4446C31.9671 31.3697 31.3325 31.5508 30.7436 31.8275L30.4945 31.9515C30.458 31.9706 30.4236 31.9502 30.4096 31.9261C30.4027 31.914 30.3985 31.8983 30.4018 31.8821C30.4054 31.8646 30.4172 31.8498 30.434 31.8411C30.8134 31.6429 31.2125 31.472 31.6342 31.3782Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M31.4766 31.9539C32.0058 31.8146 32.5473 31.7999 33.0869 31.9392C33.7028 32.0983 34.2975 32.3737 34.8594 32.6599C34.8762 32.6686 34.8871 32.6834 34.8907 32.7009C34.894 32.7173 34.8899 32.7328 34.8828 32.7449C34.8688 32.7688 34.8354 32.7889 34.7989 32.7703C34.2515 32.4915 33.6798 32.2274 33.0879 32.0691C32.484 31.9076 31.8797 31.9451 31.2871 32.1414C31.2693 32.1472 31.2514 32.1451 31.2364 32.1355C31.2224 32.1265 31.2137 32.1128 31.21 32.0994C31.2027 32.0725 31.2121 32.0342 31.251 32.0212L31.4766 31.9539Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M23.1963 21.3697C24.6513 20.8007 26.2555 21.3168 27.5059 22.105C28.5198 22.7443 29.4187 23.5384 30.3067 24.3365L31.1944 25.1295L31.21 25.1519C31.2135 25.1599 31.2153 25.1684 31.2149 25.1773C31.214 25.1942 31.2062 25.2084 31.1963 25.2183C31.1768 25.2378 31.1391 25.2492 31.1084 25.2222C30.9632 25.0947 30.8196 24.9655 30.6768 24.8355C30.093 24.3039 29.5059 23.7815 28.8936 23.2838C28.2736 22.7798 27.6356 22.2927 26.9317 21.9166C25.6164 21.214 23.9337 20.9339 22.6367 21.8062C22.349 21.9999 22.0866 22.2314 21.8096 22.4507C21.5337 22.6692 21.2449 22.8739 20.9102 23.0064C20.528 23.1577 20.1284 23.1908 19.7285 23.1832C19.5287 23.1793 19.3278 23.1657 19.1289 23.1509C18.9299 23.1362 18.7326 23.1208 18.5381 23.1138C18.1723 23.1008 17.808 23.1195 17.4561 23.2144C17.1824 23.2882 16.9207 23.4009 16.6729 23.5396C16.1689 23.8218 15.7268 24.2013 15.294 24.5865C14.456 25.3321 13.5809 26.185 12.416 26.3892C12.3765 26.3961 12.3501 26.3677 12.3428 26.3414C12.3391 26.3279 12.3389 26.3116 12.3467 26.2964C12.3552 26.2801 12.371 26.2694 12.3897 26.2662L12.5977 26.2222C12.6663 26.2054 12.7345 26.1862 12.8018 26.1646C13.3643 25.9845 13.8502 25.6608 14.3076 25.2877C14.5365 25.101 14.7584 24.9025 14.9785 24.7037C15.1985 24.5051 15.4175 24.306 15.6407 24.1197C16.0714 23.76 16.5356 23.4247 17.0635 23.2134C17.3477 23.0997 17.6462 23.0274 17.9512 22.9996C18.3626 22.9621 18.7756 22.9986 19.1817 23.0279C19.592 23.0574 20.0055 23.0828 20.4082 23.0142C20.7819 22.9506 21.1189 22.793 21.4307 22.5767C21.7238 22.3734 21.9909 22.1418 22.2744 21.9234C22.5566 21.706 22.8524 21.5042 23.1963 21.3697Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M22.9219 22.0485C24.265 21.3712 25.863 21.7328 27.1084 22.4265C27.7917 22.807 28.413 23.286 29.0157 23.777C29.619 24.2686 30.1969 24.785 30.7715 25.3083C30.7854 25.3209 30.7929 25.3375 30.792 25.3552C30.7911 25.3717 30.7833 25.3863 30.7735 25.3962C30.7538 25.4158 30.715 25.4268 30.6846 25.3991C30.5522 25.2785 30.4193 25.1564 30.2871 25.0358C29.7127 24.5117 29.1182 24.0094 28.5059 23.53C27.8915 23.0489 27.2463 22.5995 26.5362 22.277C25.86 21.9701 25.1193 21.7918 24.376 21.8181C24.0167 21.8307 23.6585 21.8932 23.3203 22.0143C22.9801 22.1363 22.6745 22.3234 22.3867 22.5436C22.2503 22.6481 22.1161 22.7581 21.9805 22.8679C21.8452 22.9774 21.7079 23.0867 21.5664 23.1882C21.2835 23.3911 20.9806 23.5648 20.6299 23.653C20.2419 23.7506 19.8478 23.7521 19.4561 23.7302C19.0625 23.7082 18.6744 23.6629 18.2881 23.6657C17.6697 23.6702 17.0967 23.8412 16.5664 24.1579C16.0776 24.4498 15.6468 24.828 15.2207 25.2087C14.4068 25.936 13.547 26.7478 12.416 26.946C12.3766 26.9528 12.3502 26.9244 12.3428 26.8981C12.3391 26.8847 12.3389 26.8684 12.3467 26.8532C12.3551 26.837 12.3702 26.8263 12.3887 26.8229L12.5909 26.7809C12.6575 26.7648 12.7236 26.7459 12.7891 26.7253C13.3367 26.5526 13.8128 26.2422 14.2598 25.8825C14.4832 25.7027 14.699 25.5109 14.9131 25.3181C15.127 25.1254 15.3395 24.9317 15.5547 24.7487C15.9793 24.3878 16.4333 24.0438 16.9502 23.8171C17.2031 23.7062 17.4694 23.6246 17.7432 23.5817C18.1375 23.5201 18.5374 23.5386 18.9297 23.5661C19.3249 23.5937 19.7174 23.6313 20.1094 23.6052C20.4966 23.5794 20.8634 23.4772 21.1983 23.2819C21.5014 23.1051 21.7708 22.879 22.0459 22.655C22.3201 22.4317 22.6002 22.2108 22.9219 22.0485Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M22.6446 22.7639C23.878 21.9768 25.4594 22.1774 26.7139 22.7776C27.3991 23.1054 28.0218 23.5467 28.6153 24.0129C29.222 24.4896 29.8109 24.9881 30.3809 25.5081C30.3948 25.5207 30.4023 25.5372 30.4014 25.5549C30.4005 25.5715 30.3927 25.586 30.3828 25.5959C30.3632 25.6155 30.3253 25.6264 30.295 25.5989C30.1639 25.4793 30.0321 25.36 29.8994 25.2424C29.319 24.7279 28.7159 24.2304 28.0909 23.7717C27.4809 23.3241 26.829 22.9198 26.1172 22.6633C25.4411 22.4197 24.7044 22.3085 23.9912 22.4075C23.6461 22.4553 23.3067 22.5539 22.9951 22.7092C22.6842 22.8643 22.4084 23.0773 22.1367 23.2981C21.88 23.5068 21.623 23.7247 21.3379 23.9016C21.0356 24.0893 20.7063 24.2144 20.3526 24.2639C19.9726 24.3171 19.5927 24.2978 19.2159 24.2708C18.8378 24.2436 18.4631 24.2086 18.0889 24.2288C16.9143 24.2921 16.0141 25.0547 15.166 25.8137C14.3694 26.5267 13.5217 27.3084 12.416 27.5022C12.3765 27.5091 12.3501 27.4808 12.3428 27.4543C12.3392 27.4409 12.3389 27.4245 12.3467 27.4094C12.3552 27.3932 12.3711 27.3824 12.3897 27.3792L12.585 27.3391C12.6499 27.3235 12.7145 27.3053 12.7784 27.2854C13.3147 27.1183 13.7826 26.8184 14.2217 26.469C14.6623 26.1184 15.0692 25.7229 15.4903 25.3606C15.9017 25.0067 16.3381 24.666 16.833 24.428C17.0768 24.3107 17.3338 24.2192 17.5996 24.1643C17.9608 24.0896 18.33 24.0882 18.6934 24.1077C19.0802 24.1285 19.4712 24.1729 19.8594 24.1702C20.2465 24.1674 20.626 24.1178 20.9825 23.9524C21.2911 23.8091 21.5611 23.6051 21.8272 23.3899C22.0922 23.1756 22.3547 22.9489 22.6446 22.7639Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M24.3465 22.8061C25.0464 22.7763 25.7504 22.9236 26.3943 23.1899C27.0708 23.4696 27.6897 23.8667 28.2723 24.3022C28.8709 24.7498 29.4507 25.2292 30.0096 25.725C30.0235 25.7375 30.0309 25.7541 30.0301 25.7719C30.0292 25.7886 30.0214 25.803 30.0115 25.8129C29.992 25.8324 29.9542 25.8437 29.9236 25.8168C29.787 25.6956 29.649 25.5753 29.5096 25.4575C28.3972 24.5173 27.2157 23.5223 25.7996 23.1147C25.1303 22.9221 24.4112 22.8622 23.7293 23.0112C23.3986 23.0835 23.0795 23.2067 22.7899 23.3813C22.5018 23.555 22.2436 23.7724 21.9803 23.9868C21.7316 24.1892 21.4753 24.392 21.1893 24.5473C20.8924 24.7085 20.5699 24.8006 20.2352 24.8344C19.8584 24.8724 19.482 24.8465 19.1092 24.8188C18.7355 24.791 18.3652 24.7615 17.9949 24.7914C16.8685 24.8827 15.9936 25.6345 15.1766 26.3657C14.3992 27.0613 13.5766 27.8227 12.5076 28.0424C12.4677 28.0506 12.4408 28.0222 12.4334 27.9955C12.4297 27.9821 12.4298 27.9656 12.4373 27.9506C12.4454 27.9348 12.4601 27.9242 12.4783 27.9203L12.6746 27.8735C12.739 27.856 12.8029 27.8365 12.866 27.8149C13.3849 27.6373 13.8391 27.3377 14.2664 26.9936C14.6952 26.6482 15.092 26.2631 15.5047 25.9086C15.9052 25.5646 16.3292 25.2339 16.8084 24.9985C17.0458 24.8818 17.2965 24.7889 17.5555 24.7309C17.8981 24.6542 18.2488 24.644 18.5955 24.6586C18.7816 24.6665 18.9709 24.6816 19.159 24.6957C19.3472 24.7098 19.5353 24.723 19.7225 24.727C20.0974 24.7349 20.4672 24.7065 20.8201 24.5776C21.1361 24.4621 21.4122 24.276 21.6785 24.0688C21.9431 23.8628 22.2029 23.6319 22.4764 23.437C23.0285 23.0435 23.6709 22.8349 24.3465 22.8061Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M24.0618 23.3849C24.7306 23.3081 25.4152 23.4067 26.0491 23.6202C27.4085 24.0782 28.5499 25.0432 29.6213 25.9513C29.6355 25.9635 29.6435 25.9801 29.6428 25.9982C29.6421 26.015 29.634 26.0293 29.6243 26.0392C29.6049 26.0585 29.5672 26.07 29.5364 26.0441C29.399 25.9276 29.2597 25.813 29.1204 25.6984C28.0286 24.8006 26.8645 23.8917 25.4622 23.589C24.8033 23.4468 24.1052 23.4392 23.4592 23.6368C23.1462 23.7326 22.8544 23.8789 22.5852 24.0656C22.3155 24.2525 22.0688 24.4681 21.8088 24.674C21.5654 24.8666 21.3096 25.0527 21.0227 25.1837C20.7136 25.3248 20.3801 25.3881 20.0442 25.4044C19.6788 25.4223 19.3138 25.3898 18.9524 25.3634C18.5899 25.337 18.2301 25.3168 17.8713 25.3595C16.7968 25.4876 15.956 26.2169 15.1702 26.92C14.4111 27.5993 13.6119 28.3412 12.5774 28.5822C12.5371 28.5916 12.5096 28.5631 12.5022 28.5363C12.4986 28.5228 12.4989 28.5071 12.5061 28.4923C12.5139 28.4764 12.5278 28.4644 12.5461 28.4601C12.6689 28.4315 12.7901 28.3964 12.9084 28.3536C13.4122 28.1717 13.8548 27.8763 14.2717 27.5392C14.6901 27.2009 15.0775 26.8248 15.4807 26.4777C15.8733 26.1397 16.2882 25.8141 16.7551 25.5773C17.2896 25.3061 17.8562 25.1973 18.4524 25.2111C18.6356 25.2153 18.82 25.2284 19.0042 25.2423C19.1887 25.2563 19.3732 25.2712 19.5569 25.2794C19.9242 25.2959 20.2874 25.2856 20.6409 25.1886C20.9587 25.1013 21.2375 24.9393 21.5022 24.7482C21.7687 24.5558 22.0153 24.339 22.2766 24.1368C22.5333 23.9382 22.8046 23.7589 23.1067 23.631C23.4114 23.502 23.7341 23.4226 24.0618 23.3849Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M23.8082 23.9807C24.4412 23.8622 25.0985 23.9117 25.7174 24.0735C27.0555 24.4233 28.1705 25.301 29.2125 26.1575C29.2272 26.1695 29.2356 26.1869 29.235 26.2053C29.2342 26.2223 29.2262 26.2366 29.2164 26.2463C29.1971 26.2656 29.1595 26.2767 29.1285 26.2512C28.9967 26.1429 28.865 26.0345 28.732 25.928C27.6722 25.0784 26.506 24.2799 25.1402 24.0852C24.5001 23.994 23.8332 24.0387 23.231 24.2776C22.9377 24.394 22.6779 24.5618 22.4283 24.7493C22.3034 24.843 22.1808 24.9413 22.0582 25.0403C21.9358 25.1391 21.813 25.2387 21.6871 25.3342C21.4468 25.5165 21.1901 25.6835 20.9049 25.7942C20.586 25.9179 20.244 25.9616 19.9068 25.9661C19.5522 25.9708 19.1959 25.934 18.8443 25.9104C18.4916 25.8867 18.1415 25.8757 17.7935 25.928C16.7689 26.0819 15.9602 26.7806 15.2047 27.4563C14.4638 28.1189 13.691 28.8435 12.6939 29.1125C12.6757 29.1175 12.6575 29.1145 12.6432 29.1047C12.6297 29.0956 12.6215 29.0821 12.6178 29.0686C12.6141 29.055 12.6136 29.0385 12.6207 29.0237C12.6282 29.008 12.6425 28.9964 12.6607 28.9915C12.7832 28.9584 12.9043 28.9192 13.0221 28.8723C13.5056 28.6798 13.9311 28.3848 14.3346 28.054C14.7398 27.7216 15.1163 27.358 15.5103 27.0198C15.8953 26.6894 16.3019 26.371 16.7584 26.1379C17.2675 25.8779 17.8103 25.7608 18.3805 25.7659C18.7366 25.7691 19.0987 25.8098 19.4537 25.8303C19.8105 25.8509 20.1643 25.8522 20.5123 25.7795C21.1533 25.6455 21.637 25.2145 22.1432 24.8079C22.3852 24.6134 22.6374 24.4247 22.9176 24.2815C23.1979 24.1382 23.4995 24.0386 23.8082 23.9807Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M23.6146 24.5793C24.2134 24.4314 24.8436 24.4452 25.4437 24.5667C26.7548 24.8321 27.8676 25.6264 28.8832 26.4446C28.8979 26.4565 28.9073 26.4739 28.9066 26.4924C28.9059 26.5095 28.8969 26.5237 28.8871 26.5334C28.8678 26.5524 28.8311 26.564 28.8002 26.5393C28.6646 26.4302 28.5288 26.3211 28.391 26.2151C27.3566 25.419 26.1959 24.7198 24.8744 24.6125C24.2462 24.5616 23.6008 24.6462 23.0326 24.9221C22.7638 25.0526 22.5232 25.2258 22.2885 25.4114C22.0548 25.5961 21.825 25.795 21.5814 25.9709C21.3469 26.1403 21.0934 26.2899 20.8158 26.384C20.5017 26.4905 20.1693 26.5228 19.8422 26.5227C19.4988 26.5225 19.1534 26.487 18.8129 26.4651C18.4713 26.4431 18.1324 26.4345 17.7953 26.4846C16.7887 26.6344 15.9876 27.3152 15.2445 27.9788C14.5207 28.6251 13.7752 29.3348 12.8168 29.635C12.7987 29.6406 12.7799 29.6379 12.765 29.6282C12.7512 29.619 12.7433 29.6045 12.7396 29.5911C12.7325 29.5645 12.7413 29.5263 12.7806 29.5139C12.9005 29.4764 13.0184 29.4326 13.1332 29.3821C13.5997 29.1767 14.0122 28.8812 14.4047 28.554C14.6008 28.3904 14.7914 28.2187 14.9818 28.0471C15.172 27.8756 15.362 27.7037 15.5551 27.5393C15.9331 27.2174 16.3335 26.9093 16.7816 26.6838C17.2737 26.4363 17.7984 26.321 18.348 26.3225C18.6945 26.3235 19.0444 26.3611 19.389 26.3831C19.7349 26.4051 20.0779 26.4115 20.4174 26.3538C21.0553 26.2452 21.5427 25.854 22.0394 25.4495C22.267 25.2641 22.5002 25.0779 22.7562 24.927C23.0234 24.7696 23.314 24.6536 23.6146 24.5793Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M23.3262 25.218C23.891 25.0247 24.5006 24.9902 25.0879 25.0657C26.3651 25.2299 27.4763 25.9163 28.4717 26.6829C28.503 26.707 28.5008 26.7455 28.4873 26.7688C28.4804 26.7807 28.4688 26.7923 28.4522 26.7971C28.4341 26.8024 28.4154 26.7979 28.4004 26.7864C28.2729 26.6882 28.144 26.5915 28.0137 26.4973C26.995 25.7608 25.8359 25.1669 24.5596 25.1545C23.9598 25.1488 23.3565 25.2771 22.836 25.5774C22.5875 25.7207 22.3628 25.898 22.1387 26.0803C21.9152 26.2621 21.6916 26.4492 21.4502 26.6116C21.2132 26.771 20.957 26.9034 20.6787 26.9797C20.3753 27.063 20.0596 27.0833 19.7491 27.0784C19.4178 27.0731 19.0833 27.0389 18.7539 27.0188C18.4234 26.9987 18.0952 26.9922 17.7696 27.0432C16.7959 27.1957 16.0153 27.8408 15.293 28.4836C14.5854 29.1134 13.8692 29.8078 12.9522 30.1428C12.9345 30.1493 12.9159 30.1476 12.9004 30.1379C12.886 30.1289 12.8777 30.1143 12.8741 30.1008C12.867 30.0744 12.8753 30.0365 12.9131 30.0227C13.0284 29.9805 13.1418 29.933 13.252 29.8792C13.6954 29.6626 14.0894 29.3688 14.4668 29.0491C14.6555 28.8892 14.8401 28.723 15.0244 28.5569C15.2086 28.3909 15.3931 28.2247 15.5811 28.0657C15.9488 27.7547 16.3381 27.4589 16.7725 27.2405C17.2481 27.0014 17.7563 26.8829 18.2881 26.8792C18.6183 26.8769 18.9491 26.9091 19.2764 26.9319C19.6046 26.9548 19.931 26.9685 20.2559 26.9319C20.5712 26.8963 20.8724 26.8038 21.1494 26.6497C21.4063 26.5068 21.639 26.3239 21.8692 26.137C22.3173 25.773 22.7646 25.4103 23.3262 25.218Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M24.7295 25.5911C25.9618 25.6519 27.0709 26.2239 28.0508 26.926C28.0835 26.9495 28.082 26.9883 28.0684 27.012C28.0614 27.024 28.0496 27.0363 28.0332 27.0413C28.0157 27.0465 27.9968 27.0425 27.9815 27.0315C27.8526 26.9391 27.7222 26.8489 27.5899 26.762C26.5892 26.1049 25.4351 25.6317 24.2237 25.7219C23.6504 25.7646 23.101 25.9443 22.625 26.2668C22.3999 26.4194 22.1904 26.5942 21.9776 26.7678C21.7654 26.9409 21.5492 27.1122 21.3125 27.2561C20.8001 27.5676 20.2343 27.6519 19.6475 27.6331C19.3341 27.623 19.0152 27.5901 18.7032 27.5725C18.3893 27.5548 18.0776 27.5515 17.7686 27.5999C16.8297 27.7468 16.0679 28.354 15.3682 28.9729C14.6775 29.5839 13.9908 30.2648 13.1192 30.634C13.0828 30.6494 13.0498 30.6289 13.0362 30.6057C13.0292 30.5938 13.0255 30.5776 13.0293 30.5608C13.0335 30.5425 13.0461 30.5282 13.0635 30.5208C13.1689 30.4762 13.2721 30.427 13.3731 30.3733C13.7964 30.1479 14.1753 29.8556 14.5401 29.5422C14.7223 29.3856 14.9009 29.224 15.0801 29.0627C15.2593 28.9015 15.4392 28.7403 15.6231 28.5862C15.9807 28.2864 16.3599 28.0027 16.7813 27.7922C17.2324 27.5671 17.7157 27.4476 18.2198 27.4368C18.5376 27.4299 18.8547 27.4567 19.169 27.4797C19.4838 27.5028 19.7965 27.5221 20.1094 27.5012C20.421 27.4805 20.727 27.4139 21.0078 27.2795C21.2628 27.1575 21.4952 26.9911 21.7188 26.8147C22.1472 26.4765 22.5608 26.0975 23.0752 25.8723C23.5948 25.6451 24.1672 25.5633 24.7295 25.5911Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M22.5562 26.7193C23.2879 26.2219 24.1784 26.0694 25.0445 26.1724C25.9646 26.282 26.8118 26.6668 27.5826 27.1607C27.6171 27.183 27.6161 27.2227 27.6021 27.2466C27.5951 27.2586 27.5836 27.2698 27.568 27.275C27.551 27.2805 27.5322 27.2783 27.5162 27.2681C27.0712 26.983 26.603 26.7306 26.106 26.5533C25.3081 26.2687 24.4203 26.167 23.5963 26.3824C23.1731 26.493 22.7923 26.6933 22.442 26.9556C22.267 27.0867 22.0995 27.2273 21.9283 27.3658C21.7576 27.5039 21.5836 27.6399 21.398 27.7613C21.3822 27.7717 21.3634 27.7746 21.3463 27.7691C21.3303 27.7639 21.3182 27.752 21.3111 27.7398C21.2974 27.7157 21.2974 27.6762 21.3316 27.6539C21.5451 27.5142 21.7438 27.3543 21.943 27.192C22.1419 27.0298 22.342 26.865 22.5562 26.7193Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M18.0897 28.0029C18.098 28.0061 18.105 28.0118 18.1111 28.0186C18.1225 28.0311 18.1278 28.0465 18.1277 28.0605C18.1277 28.0881 18.1079 28.1224 18.0672 28.125C17.6826 28.1499 17.3104 28.2433 16.9598 28.4033C16.3835 28.6664 15.8929 29.0586 15.4168 29.4785C14.9418 29.8975 14.4792 30.3452 13.9637 30.7109C13.9484 30.7218 13.9303 30.7259 13.9129 30.7207C13.8966 30.7157 13.8848 30.7035 13.8777 30.6914C13.8641 30.6678 13.8625 30.6288 13.8953 30.6055C14.2001 30.3892 14.4855 30.1469 14.7664 29.8984C15.2472 29.4729 15.719 29.0232 16.2557 28.6592C16.7986 28.291 17.4013 28.0417 18.0633 27.999L18.0897 28.0029Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M22.9174 27.0635C24.2594 26.3774 25.857 26.7382 27.1059 27.4268C27.1224 27.4359 27.1338 27.4514 27.1371 27.4688C27.1402 27.4849 27.1363 27.5006 27.1293 27.5127C27.1222 27.5248 27.1102 27.5355 27.0951 27.541C27.0791 27.5467 27.0608 27.546 27.0443 27.5371C26.6677 27.3295 26.2748 27.1511 25.8637 27.0273C25.2061 26.8295 24.4982 26.7589 23.8227 26.8887C23.4847 26.9537 23.1565 27.0689 22.8578 27.2393C22.5265 27.4282 22.236 27.6782 21.9369 27.9209C21.9058 27.946 21.8683 27.9342 21.849 27.915C21.8393 27.9052 21.8311 27.891 21.8305 27.874C21.8298 27.8555 21.8383 27.8381 21.8529 27.8262L22.3637 27.418C22.5387 27.2864 22.721 27.1639 22.9174 27.0635Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M23.1936 27.4913C24.2683 27.0715 25.4873 27.2485 26.5158 27.6964C26.5332 27.704 26.5459 27.7183 26.55 27.7365C26.5539 27.7533 26.5492 27.7694 26.5422 27.7814C26.5284 27.8047 26.4956 27.8246 26.4592 27.8087C26.1665 27.6813 25.8644 27.5781 25.5539 27.505C25.0137 27.3779 24.4473 27.3393 23.8996 27.4298C23.332 27.5237 22.8337 27.7659 22.3772 28.1144C22.3622 28.1258 22.3434 28.1303 22.3254 28.1251C22.3088 28.1202 22.2972 28.1078 22.2903 28.0958C22.2767 28.0724 22.2745 28.034 22.3059 28.0099L22.5149 27.8585C22.727 27.713 22.9508 27.5862 23.1936 27.4913Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M22.7742 28.2506C23.6926 27.7271 24.7972 27.7172 25.7908 27.9908C25.8089 27.9958 25.8234 28.0075 25.8308 28.0231C25.8379 28.0379 25.8375 28.0544 25.8338 28.068C25.83 28.0816 25.822 28.0959 25.8084 28.1051C25.794 28.1147 25.7758 28.1169 25.7576 28.1119C24.7902 27.8455 23.7221 27.856 22.8377 28.36C22.8212 28.3694 22.8023 28.3706 22.7859 28.3649C22.7707 28.3594 22.7588 28.3486 22.7517 28.3365C22.7447 28.3244 22.7409 28.3087 22.7439 28.2926C22.7471 28.2756 22.7579 28.261 22.7742 28.2516V28.2506Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M24.6407 28.3691C24.6596 28.3696 24.6765 28.3775 24.6875 28.3906C24.6978 28.403 24.7022 28.4186 24.7022 28.4326C24.7021 28.4467 24.6975 28.4622 24.6866 28.4746C24.6749 28.4878 24.6576 28.4956 24.6387 28.4951C24.2253 28.4846 23.8136 28.533 23.42 28.6582C23.4019 28.664 23.3831 28.6621 23.3682 28.6523C23.3543 28.6432 23.3465 28.6288 23.3428 28.6152C23.3356 28.5885 23.3447 28.5506 23.3838 28.5381L23.6924 28.4551C24.0034 28.3869 24.3223 28.361 24.6407 28.3691Z" fill="white" stroke="white" stroke-width="0.0699604"/>
|
||||
<path d="M10.8021 21.1729L10.2836 22.3862C9.72181 21.8971 8.71601 21.2538 7.29781 20.5765L4.87397 19.4221L3.32882 19.2361L3.88592 17.9325L9.86174 18.6839L5.08582 15.1249L5.64292 13.8214C5.75767 14.0246 5.92976 14.2879 6.15481 14.5382L10.4749 16.1948C11.585 16.6218 12.1865 16.7128 12.6962 16.7409L11.9377 18.5157C11.5865 18.1166 10.8287 17.6978 9.97353 17.3679L7.00847 16.2312C7.60761 16.8549 8.38141 17.4583 8.668 17.6757L10.2528 18.851L11.5563 19.4081L11.2092 20.2203L5.2334 19.469L6.99399 20.3163C9.03106 21.2936 10.3025 21.2321 10.8021 21.1729Z" fill="white"/>
|
||||
<path d="M6.8011 12.3553L8.15862 10.863C8.22086 11.1997 8.5141 11.6876 9.14326 12.26L11.5067 14.41C12.894 15.6721 13.637 15.8763 14.2241 15.231C14.9579 14.4244 14.2211 13.2087 12.987 12.086L11.7932 11C10.5348 9.85523 9.62314 9.67447 9.19328 9.72567L10.2646 8.54801C10.2909 8.94045 10.6082 9.77457 11.8665 10.9193L13.0603 12.0053C14.1735 13.018 15.3591 14.4208 14.2878 15.5985C13.6273 16.3245 12.4227 16.9681 10.3013 15.0382L8.28472 13.2037C7.65556 12.6313 7.14218 12.3854 6.8011 12.3553Z" fill="white"/>
|
||||
<path d="M12.3072 8.89449L12.2979 8.90014L11.6771 7.58056L15.212 5.43937L16.0939 6.60076L16.0846 6.60641C15.3743 6.23349 14.7857 5.9143 14.431 6.0654C14.1995 6.16736 14.0918 6.34735 14.3291 6.73908L17.0974 11.3093C17.5211 12.0088 17.9435 12.3904 18.2526 12.5219L16.5458 13.5557C16.5818 13.2152 16.4299 12.6698 16.0062 11.9703L13.2379 7.40008C13.0062 7.01768 12.7912 7.02045 12.6029 7.17272C12.2451 7.46597 12.3102 8.26798 12.3072 8.89449Z" fill="white"/>
|
||||
<path d="M16.8602 4.74679L18.8113 4.23393C18.6802 4.55026 18.6606 5.11916 18.8769 5.94177L19.6891 9.03183C20.1659 10.8458 20.6781 11.4215 21.5218 11.1997C22.5764 10.9225 22.6201 9.50163 22.1959 7.88805L21.7856 6.3272C21.3532 4.68198 20.6868 4.03408 20.2983 3.84304L21.8381 3.4383C21.6465 3.78181 21.4586 4.65426 21.8911 6.29948L22.3014 7.86033C22.684 9.31571 22.9149 11.1379 21.3752 11.5427C20.426 11.7922 19.0651 11.6764 18.336 8.90269L17.6429 6.26612C17.4267 5.44351 17.1299 4.95778 16.8602 4.74679Z" fill="white"/>
|
||||
<path d="M25.8937 11.1189C25.9205 10.487 25.9112 10.1919 25.6242 8.7281L25.3547 7.36327L24.5376 7.32856C24.4704 7.88234 24.4204 8.54599 24.3843 9.39578C24.3565 10.0495 24.4118 10.8049 24.4338 11.0569L22.9848 10.9953C23.2031 10.4807 23.472 9.80452 23.63 9.16728C24.1396 7.1916 24.6328 5.85916 24.9248 5.15122L24.9974 3.44074L25.869 3.47777L26.8323 8.03724C27.1864 9.72218 27.4349 10.5513 27.7349 11.1971L25.8937 11.1189ZM24.9609 5.32738C24.7857 5.85475 24.6532 6.40575 24.5422 7.21961L25.3375 7.2534L24.9609 5.32738Z" fill="white"/>
|
||||
<path d="M31.2852 12.4575L27.4487 11.2443C27.7421 11.0397 28.052 10.5659 28.3019 9.77574L29.6006 5.66888C29.857 4.8579 29.8654 4.28873 29.7501 3.96634L31.6735 4.57457C31.3938 4.77203 31.0735 5.24257 30.817 6.05355L29.0515 11.6368C29.8921 11.7997 31.1668 11.4937 31.7569 11.0741L31.2852 12.4575Z" fill="white"/>
|
||||
<path d="M34.9737 15.3594C35.4043 14.8962 35.5889 14.6657 36.3209 13.366L37.0021 12.153L36.4032 11.5961C35.9925 11.9737 35.5236 12.446 34.9444 13.0689C34.4989 13.548 34.0504 14.1584 33.9036 14.3644L32.8415 13.3768C33.3417 13.1271 33.9851 12.7874 34.5191 12.4053C36.1894 11.2335 37.4296 10.5403 38.1113 10.1915L39.2771 8.93773L39.916 9.53177L37.6883 13.6249C36.8636 15.1364 36.5144 15.9283 36.3233 16.6143L34.9737 15.3594ZM38.0244 10.349C37.5488 10.6363 37.0902 10.9693 36.4774 11.5163L37.0604 12.0583L38.0244 10.349Z" fill="white"/>
|
||||
<path d="M37.363 18.4245L36.2063 16.7717C36.5485 16.7851 37.089 16.6065 37.7858 16.1188L41.3058 13.6554C42.0027 13.1677 42.3556 12.7211 42.4602 12.395L43.6168 14.0478C43.2747 14.0344 42.7342 14.213 42.0374 14.7007L38.5174 17.1641C37.8205 17.6518 37.4676 18.0984 37.363 18.4245Z" fill="white"/>
|
||||
<path d="M37.2866 18.0655C37.6167 18.1563 38.1837 18.1051 38.9731 17.7885L42.9607 16.1891C43.7501 15.8724 44.1952 15.5176 44.3711 15.2239L45.1262 17.1063C45.8203 18.837 44.8723 20.6036 42.7672 21.448C40.6418 22.3005 38.7358 21.6786 38.0416 19.9479L37.2866 18.0655ZM38.1305 19.7595C38.5324 20.7615 40.5555 20.9135 42.276 20.2234C43.9561 19.5495 45.3336 18.0336 44.9317 17.0316L44.8424 16.8089L38.0412 19.5369L38.1305 19.7595Z" fill="white"/>
|
||||
<path d="M7.42171 34.772C9.38065 33.4642 11.1651 33.584 11.8644 34.6119C12.1974 35.1107 12.4428 35.7335 12.3312 36.2538L10.1909 37.6827L10.1788 37.6646C11.2518 36.6598 12.01 35.1834 11.4741 34.4004C11.0655 33.8079 9.97999 34.2441 8.78592 35.1068C6.94797 36.4388 6.23223 38.018 6.8377 38.9249C6.97091 39.1244 7.47932 39.611 8.5769 39.1929L8.57692 39.2322C7.04712 40.0438 6.05209 40.0263 5.4375 39.0468C4.78052 38.0038 5.48998 36.0617 7.42171 34.772Z" fill="white"/>
|
||||
<path d="M10.2633 38.6419C11.449 37.2598 13.3063 36.4681 14.3408 37.3557C15.4581 38.3142 14.99 40.4844 13.5415 42.1727C12.3558 43.5548 10.4985 44.3465 9.46396 43.4589C8.34667 42.5004 8.81482 40.3302 10.2633 38.6419ZM12.2151 38.075C10.7808 39.7468 9.35298 43.0189 10.0234 43.594C10.3461 43.8709 11.0087 43.4336 11.598 42.7467C13.0322 41.0749 14.4601 37.8028 13.7897 37.2277C13.4669 36.9508 12.8044 37.3881 12.2151 38.075Z" fill="white"/>
|
||||
<path d="M16.9474 47.7851L13.3024 46.0807C13.6201 45.9162 13.9893 45.487 14.3404 44.7363L16.1649 40.8345C16.5252 40.064 16.608 39.5009 16.5358 39.1661L18.3632 40.0207C18.0601 40.1799 17.6809 40.6045 17.3207 41.3749L14.8402 46.6794C15.6522 46.9508 16.9561 46.8141 17.596 46.4753L16.9474 47.7851Z" fill="white"/>
|
||||
<path d="M18.9723 44.1823C19.2793 42.3873 20.4657 40.7537 21.8093 40.9835C23.2603 41.2316 23.974 43.3338 23.5991 45.5265C23.2922 47.3215 22.1057 48.9551 20.7621 48.7254C19.3111 48.4773 18.5974 46.375 18.9723 44.1823ZM20.3554 42.693C19.9842 44.8642 20.4408 48.4049 21.3114 48.5538C21.7306 48.6255 22.0742 47.9098 22.2268 47.0177C22.598 44.8465 22.1414 41.3057 21.2707 41.1569C20.8516 41.0852 20.5079 41.8009 20.3554 42.693Z" fill="white"/>
|
||||
<path d="M27.3103 48.8188L25.2532 49.0657C25.4265 48.7704 25.5239 48.2095 25.4225 47.365L24.9104 43.0993C24.809 42.2548 24.5816 41.7329 24.3434 41.4869L26.7037 41.2036C27.6781 41.0866 28.4589 41.2785 28.5772 42.2637C28.6747 43.0757 28.1087 43.4841 27.5895 44.0077L28.5293 45.9816C28.9269 46.8235 29.4536 47.8256 29.8763 48.5107L28.0466 48.7304C27.992 48.2757 27.5905 47.1267 27.237 46.3784L26.7511 45.3494C26.6381 45.7803 26.6342 46.297 26.6966 46.8167C26.7837 47.5421 27.0141 48.2722 27.3103 48.8188ZM25.827 48.1731C25.9656 46.9484 26.5216 45.5417 26.8182 44.9021C27.1941 44.0991 27.3859 43.0437 27.2949 42.2858C27.2221 41.6795 26.9861 41.2686 26.5097 41.3257C26.2065 41.3621 26.0212 41.648 26.0013 42.3972C25.946 44.3149 25.8945 46.265 25.827 48.1731Z" fill="white"/>
|
||||
<path d="M34.3875 46.8697C34.1389 46.2882 34.0032 46.026 33.1124 44.8295L32.2802 43.7147L31.5281 44.0361C31.7066 44.5646 31.9479 45.1849 32.2822 45.967C32.5393 46.5686 32.9152 47.2262 33.0438 47.444L31.7102 48.0139C31.685 47.4555 31.6356 46.7295 31.5031 46.0865C31.11 44.0844 30.9797 42.6696 30.9375 41.9049L30.2647 40.3306L31.0669 39.9878L33.9039 43.6848C34.9506 45.0519 35.5327 45.6925 36.0821 46.1455L34.3875 46.8697ZM31.0462 42.0482C31.1158 42.5995 31.234 43.1538 31.4853 43.9358L32.2172 43.623L31.0462 42.0482Z" fill="white"/>
|
||||
<path d="M38.0277 44.9213C38.0099 44.5793 37.7828 44.0573 37.2337 43.4078L34.46 40.1267C33.9109 39.4771 33.434 39.1663 33.0998 39.0919L34.6487 37.7825C36.0728 36.5787 38.048 36.9222 39.5123 38.6543C40.9907 40.4031 41.0006 42.408 39.5766 43.6119L38.0277 44.9213ZM39.3698 43.5868C40.1942 42.8898 39.7014 40.9219 38.5047 39.5062C37.3361 38.1238 35.4635 37.2937 34.639 37.9906L34.4558 38.1455L39.1866 43.7417L39.3698 43.5868Z" fill="white"/>
|
||||
<path d="M39.6381 38.0155C38.1053 37.0323 37.0644 35.3023 37.8004 34.155C38.5952 32.9159 40.8092 33.0794 42.6817 34.2804C44.2145 35.2636 45.2554 36.9936 44.5194 38.1409C43.7246 39.38 41.5106 39.2165 39.6381 38.0155ZM38.8068 36.1608C40.6609 37.3501 44.099 38.3117 44.5759 37.5682C44.8055 37.2103 44.2807 36.6146 43.5189 36.1259C41.6648 34.9366 38.2267 33.975 37.7498 34.7185C37.5202 35.0764 38.045 35.6721 38.8068 36.1608Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 112 KiB |
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M24.8848 49.3501C18.6738 47.6859 20.671 40.2323 14.4602 38.5681C7.31156 36.6526 -1.65356 32.0343 0.262453 24.8836C1.92659 18.673 9.37809 20.6696 11.0422 14.4591C12.9568 7.31351 17.5757 -1.6537 24.7269 0.262468C30.9379 1.92669 28.9407 9.38038 35.1514 11.0445C42.2975 12.9593 51.2652 17.5782 49.3492 24.729C47.685 30.9397 40.231 28.9424 38.5669 35.1529C36.646 42.3108 32.0334 51.2655 24.8848 49.3501Z" fill="#E7FDA8"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 529 B |
@@ -0,0 +1,9 @@
|
||||
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.5" fill-rule="evenodd" clip-rule="evenodd" d="M38.1507 5.70485C38.7069 3.62907 37.475 1.49542 35.3992 0.939196L32.3924 0.133537C30.3166 -0.422669 28.183 0.809198 27.6268 2.88498L27.4194 3.6588C26.5222 7.0073 22.0244 7.59945 20.2911 4.59726L19.8905 3.90348C18.816 2.04239 16.4362 1.40473 14.5751 2.47922L11.8793 4.03567C10.0182 5.11017 9.38053 7.48994 10.455 9.35106L10.8556 10.0449C12.5889 13.0471 9.8272 16.6462 6.4787 15.749L5.70485 15.5416C3.62907 14.9854 1.49542 16.2173 0.939217 18.293L0.133558 21.2998C-0.422662 23.3756 0.809195 25.5093 2.88498 26.0655L3.6588 26.2729C7.00732 27.1701 7.59945 31.668 4.5973 33.4012L3.90348 33.8018C2.04238 34.8763 1.40473 37.256 2.47923 39.1171L4.03569 41.8129C5.11021 43.6741 7.48998 44.3117 9.35108 43.2372L10.0449 42.8366C13.047 41.1034 16.6462 43.8652 15.749 47.2136L15.5416 47.9874C14.9854 50.0632 16.2173 52.1969 18.293 52.7531L21.2998 53.5587C23.3756 54.115 25.5093 52.8831 26.0655 50.8072L26.2729 50.0335C27.1701 46.685 31.668 46.0929 33.4012 49.0949L33.8018 49.7887C34.8763 51.6499 37.256 52.2875 39.1172 51.213L41.8129 49.6566C43.6741 48.5821 44.3117 46.2023 43.2372 44.3412L42.8368 43.6474C41.1034 40.6453 43.8652 37.0461 47.2136 37.9433L47.9874 38.1507C50.0632 38.7069 52.1969 37.475 52.7531 35.3992L53.5588 32.3924C54.115 30.3166 52.8831 28.183 50.8072 27.6268L50.0335 27.4194C46.685 26.5222 46.0928 22.0244 49.0949 20.2911L49.7888 19.8905C51.6499 18.816 52.2875 16.4362 51.213 14.5751L49.6566 11.8793C48.5821 10.0182 46.2024 9.38051 44.3412 10.455L43.6474 10.8556C40.6453 12.5889 37.0461 9.82717 37.9433 6.47867L38.1507 5.70485Z" fill="url(#paint0_linear_23186_7063)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_23186_7063" x1="9.43651" y1="1.31419" x2="42.0264" y2="53.3317" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E9B8FF"/>
|
||||
<stop offset="1" stop-color="#F9ECFF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,9 @@
|
||||
<svg width="51" height="51" viewBox="0 0 51 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M33.0164 2.21246C33.1604 1.67521 32.8415 1.12298 32.3043 0.979039L30.7757 0.569432C30.2384 0.42548 29.6862 0.744302 29.5422 1.28155L27.0221 10.687C26.7356 11.7561 25.1846 11.6477 25.0497 10.549L23.8631 0.884413C23.7953 0.332367 23.2928 -0.060214 22.7408 0.00757466L21.17 0.200434C20.618 0.268223 20.2254 0.770695 20.2931 1.32275L21.5583 11.6261C21.6919 12.715 20.2351 13.2025 19.6865 12.2524L14.4961 3.26241C14.218 2.78073 13.6021 2.61569 13.1204 2.89379L11.7499 3.68505C11.2682 3.96315 11.1032 4.57908 11.3813 5.06076L16.0422 13.1338C16.5986 14.0975 15.4114 15.1186 14.5418 14.4243L7.25658 8.60848C6.8219 8.26146 6.18824 8.33254 5.84123 8.7672L4.85388 10.004C4.50688 10.4387 4.57795 11.0723 5.01262 11.4194L13.4073 18.121C14.2601 18.8018 13.5724 20.1632 12.5184 19.8808L2.14275 17.1006C1.6055 16.9567 1.05328 17.2755 0.909328 17.8128L0.499721 19.3414C0.355776 19.8786 0.67459 20.4309 1.21183 20.5749L11.5874 23.355C12.6415 23.6374 12.5563 25.1603 11.4774 25.3234L0.856561 26.93C0.30665 27.0131 -0.0717307 27.5263 0.0114729 28.0762L0.248146 29.6409C0.331276 30.191 0.844536 30.5694 1.3945 30.4861L10.6115 29.0921C11.7119 28.9256 12.2294 30.4035 11.2657 30.9601L3.19274 35.6208C2.711 35.8991 2.54601 36.5149 2.82411 36.9966L3.61537 38.3672C3.89346 38.8488 4.50939 39.0139 4.99106 38.7358L13.9811 33.5453C14.9312 32.9969 15.9492 34.1475 15.2889 35.0236L9.04159 43.3141C8.70689 43.7583 8.79564 44.3896 9.23981 44.7244L10.5037 45.6769C10.9479 46.0115 11.5793 45.9229 11.9141 45.4785L17.774 37.7023C18.4402 36.8181 19.8376 37.4998 19.5511 38.5689L17.0309 47.9743C16.887 48.5115 17.2058 49.0638 17.7431 49.2077L19.2717 49.6173C19.8089 49.7613 20.3612 49.4424 20.5052 48.9052L23.0253 39.4998C23.3118 38.4307 24.8628 38.539 24.9977 39.6378L26.1842 49.3022C26.2521 49.8545 26.7545 50.2469 27.3067 50.1793L28.8775 49.9863C29.4295 49.9184 29.8221 49.4161 29.7542 48.864L28.4892 38.5606C28.3554 37.4717 29.8122 36.9842 30.3609 37.9343L35.5511 46.9243C35.8294 47.406 36.4452 47.571 36.9269 47.293L38.2975 46.5016C38.7791 46.2235 38.9441 45.6078 38.6661 45.1259L34.0051 37.0531C33.4488 36.0892 34.636 35.0681 35.5056 35.7625L42.7907 41.5782C43.2255 41.9253 43.8591 41.8543 44.2061 41.4194L45.1935 40.1827C45.5404 39.748 45.4693 39.1144 45.0347 38.7675L36.64 32.0657C35.7874 31.385 36.4748 30.0236 37.5291 30.306L47.9046 33.0861C48.4418 33.2301 48.9941 32.9112 49.138 32.374L49.5476 30.8454C49.6916 30.3081 49.3727 29.7559 48.8355 29.6119L38.46 26.8318C37.4058 26.5493 37.4909 25.0265 38.5699 24.8633L49.1908 23.2569C49.7406 23.1736 50.119 22.6604 50.0359 22.1105L49.7992 20.5457C49.7161 19.9958 49.2029 19.6174 48.6528 19.7006L39.4358 21.0947C38.3356 21.2611 37.818 19.7832 38.7816 19.2268L46.8547 14.5658C47.3363 14.2877 47.5013 13.6718 47.2233 13.1901L46.4319 11.8196C46.1538 11.3379 45.5381 11.1729 45.0562 11.4509L36.0664 16.6414C35.1161 17.1899 34.0982 16.0393 34.7586 15.1631L41.0058 6.87268C41.3406 6.4285 41.2518 5.79703 40.8076 5.46232L39.5437 4.50992C39.0994 4.17514 38.468 4.26391 38.1332 4.70808L32.2734 12.4846C31.6072 13.3686 30.2098 12.6871 30.4963 11.6179L33.0164 2.21246Z" fill="url(#paint0_linear_23186_7072)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_23186_7072" x1="12.6705" y1="0.670555" x2="32.0854" y2="46.4041" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFD9A0"/>
|
||||
<stop offset="1" stop-color="#FFF5F1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 328 B After Width: | Height: | Size: 328 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 752 B After Width: | Height: | Size: 752 B |
|
Before Width: | Height: | Size: 179 B After Width: | Height: | Size: 179 B |
|
Before Width: | Height: | Size: 259 B After Width: | Height: | Size: 259 B |
|
Before Width: | Height: | Size: 193 B After Width: | Height: | Size: 193 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 487 B After Width: | Height: | Size: 487 B |
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.0001 20.8485C2.92376 28.4333 -4.43331 21.0763 3.15149 12C-4.43331 2.92372 2.92376 -4.43325 12.0001 3.15145C21.0748 -4.43325 28.4336 2.92372 20.8488 12C28.4336 21.0693 21.0748 28.4333 12.0001 20.8485Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 332 B |
@@ -1,19 +0,0 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_18446_66222)">
|
||||
<mask id="mask0_18446_66222" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24">
|
||||
<path d="M24 0H0V24H24V0Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_18446_66222)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.3772 0C12.6422 0 12.8572 0.214903 12.8572 0.48V5.12099C12.8572 5.64857 13.5846 5.78996 13.7822 5.3008L15.5207 0.997747C15.62 0.751954 15.8998 0.633203 16.1456 0.73251L16.845 1.01507C17.0908 1.11438 17.2096 1.39414 17.1102 1.63993L15.2568 6.22738C15.0608 6.7122 15.6714 7.11635 16.0412 6.7466L19.5397 3.24803C19.7273 3.06058 20.0311 3.06058 20.2186 3.24803L20.752 3.78139C20.9394 3.96884 20.9394 4.27276 20.752 4.46021L17.6102 7.60193C17.2352 7.97698 17.6558 8.59354 18.1418 8.38118L22.2132 6.60235C22.4562 6.49621 22.7392 6.6071 22.8452 6.85002L23.1473 7.54122C23.2534 7.78415 23.1425 8.06711 22.8996 8.17325L18.2081 10.223C17.7314 10.4312 17.8801 11.1429 18.4002 11.1429H23.52C23.7851 11.1429 24 11.3578 24 11.6229V12.3772C24 12.6422 23.7851 12.8572 23.52 12.8572H18.4003C17.8801 12.8572 17.7316 13.5688 18.2081 13.777L22.8996 15.8268C23.1425 15.9329 23.2534 16.2158 23.1473 16.4587L22.8452 17.1499C22.7392 17.3929 22.4562 17.5038 22.2132 17.3976L18.1418 15.6188C17.6558 15.4064 17.2352 16.023 17.6102 16.3981L20.752 19.5397C20.9394 19.7273 20.9394 20.0311 20.752 20.2186L20.2186 20.752C20.0311 20.9394 19.7273 20.9394 19.5397 20.752L16.0412 17.2534C15.6714 16.8836 15.0608 17.2878 15.2568 17.7726L17.1102 22.3601C17.2096 22.6058 17.0908 22.8856 16.845 22.9849L16.1456 23.2675C15.8998 23.3668 15.62 23.2481 15.5207 23.0022L13.7822 18.6992C13.5846 18.21 12.8572 18.3515 12.8572 18.879V23.52C12.8572 23.7851 12.6422 24 12.3772 24H11.6229C11.3578 24 11.1429 23.7851 11.1429 23.52V18.879C11.1429 18.3515 10.4154 18.21 10.2178 18.6992L8.47926 23.0022C8.37995 23.2481 8.10019 23.3668 7.8544 23.2675L7.15504 22.9849C6.90924 22.8856 6.7905 22.6058 6.8898 22.3601L8.74326 17.7726C8.93915 17.2878 8.32855 16.8836 7.9588 17.2534L4.46022 20.752C4.27277 20.9394 3.96884 20.9394 3.7814 20.752L3.24804 20.2186C3.06059 20.0311 3.06059 19.7273 3.24804 19.5397L6.38975 16.398C6.7648 16.023 6.3442 15.4064 5.85816 15.6188L1.78674 17.3976C1.54382 17.5038 1.26085 17.3929 1.15472 17.1499L0.852728 16.4587C0.746593 16.2158 0.857482 15.9329 1.1004 15.8268L5.79188 13.777C6.26849 13.5688 6.11982 12.8572 5.5997 12.8572H0.48C0.214903 12.8572 0 12.6422 0 12.3772V11.6229C0 11.3578 0.214903 11.1429 0.48 11.1429H5.59973C6.11983 11.1429 6.26851 10.4312 5.79191 10.223L1.1004 8.17325C0.857478 8.06711 0.74659 7.78415 0.852725 7.54122L1.15471 6.85002C1.26085 6.6071 1.54381 6.49621 1.78674 6.60235L5.85816 8.38118C6.3442 8.59355 6.7648 7.97698 6.38975 7.60193L3.24804 4.46022C3.06059 4.27277 3.06059 3.96884 3.24804 3.78139L3.78139 3.24804C3.96884 3.06059 4.27277 3.06059 4.46022 3.24804L7.9588 6.74662C8.32854 7.11636 8.93914 6.71221 8.74326 6.22739L6.8898 1.63993C6.7905 1.39414 6.90925 1.11438 7.15504 1.01507L7.85441 0.73251C8.10019 0.633203 8.37996 0.751954 8.47926 0.997747L10.2178 5.3008C10.4154 5.78996 11.1429 5.64857 11.1429 5.12099V0.48C11.1429 0.214903 11.3578 0 11.6229 0H12.3772ZM12 17.1428C14.8403 17.1428 17.1428 14.8403 17.1428 12C17.1428 9.15968 14.8403 6.85715 12 6.85715C9.15968 6.85715 6.85715 9.15968 6.85715 12C6.85715 14.8403 9.15968 17.1428 12 17.1428Z" fill="url(#paint0_linear_18446_66222)"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_18446_66222" x1="2.46" y1="1.92" x2="12" y2="24" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#ACAAFF"/>
|
||||
<stop offset="1" stop-color="#C0E8FF"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_18446_66222">
|
||||
<rect width="24" height="24" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.7 KiB |
@@ -36,7 +36,7 @@ export default {
|
||||
|
||||
export const Default = {
|
||||
args: {
|
||||
src: "assets/Avatar_1.png",
|
||||
src: "assets/marketing/avatar-1.svg",
|
||||
alt: "User Avatar",
|
||||
size: "medium",
|
||||
},
|
||||
@@ -44,7 +44,7 @@ export const Default = {
|
||||
|
||||
export const Sizes = {
|
||||
args: {
|
||||
src: "assets/Avatar_1.png",
|
||||
src: "assets/marketing/avatar-1.svg",
|
||||
alt: "User Avatar",
|
||||
},
|
||||
render: (args) => (
|
||||
@@ -73,9 +73,9 @@ export const DifferentAvatars = {
|
||||
render: (args) => (
|
||||
<div className="space-y-4">
|
||||
<div className="space-x-4">
|
||||
<Avatar {...args} src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar {...args} src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar {...args} src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar {...args} src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar {...args} src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar {...args} src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
</div>
|
||||
</div>
|
||||
),
|
||||
@@ -95,36 +95,36 @@ export const AllSizesWithDifferentAvatars = {
|
||||
<div>
|
||||
<h3 className="text-white font-semibold mb-3">Small Size</h3>
|
||||
<div className="space-x-4">
|
||||
<Avatar size="small" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="small" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="small" src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar size="small" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="small" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar size="small" src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="text-white font-semibold mb-3">Medium Size</h3>
|
||||
<div className="space-x-4">
|
||||
<Avatar size="medium" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="medium" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="medium" src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar size="medium" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="medium" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar size="medium" src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="text-white font-semibold mb-3">Large Size</h3>
|
||||
<div className="space-x-4">
|
||||
<Avatar size="large" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="large" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="large" src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="text-white font-semibold mb-3">XLarge Size</h3>
|
||||
<div className="space-x-4">
|
||||
<Avatar size="xlarge" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="xlarge" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="xlarge" src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar size="xlarge" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="xlarge" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar size="xlarge" src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -33,9 +33,9 @@ export const Default = {
|
||||
},
|
||||
render: (args) => (
|
||||
<AvatarContainer {...args}>
|
||||
<Avatar size={args.size} src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size={args.size} src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size={args.size} src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar size={args.size} src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size={args.size} src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar size={args.size} src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
</AvatarContainer>
|
||||
),
|
||||
};
|
||||
@@ -47,36 +47,36 @@ export const Sizes = {
|
||||
<div>
|
||||
<h3 className="text-white font-semibold mb-3">Small Size</h3>
|
||||
<AvatarContainer size="small">
|
||||
<Avatar size="small" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="small" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="small" src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar size="small" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="small" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar size="small" src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
</AvatarContainer>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="text-white font-semibold mb-3">Medium Size</h3>
|
||||
<AvatarContainer size="medium">
|
||||
<Avatar size="medium" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="medium" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="medium" src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar size="medium" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="medium" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar size="medium" src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
</AvatarContainer>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="text-white font-semibold mb-3">Large Size</h3>
|
||||
<AvatarContainer size="large">
|
||||
<Avatar size="large" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="large" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="large" src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
</AvatarContainer>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="text-white font-semibold mb-3">XLarge Size</h3>
|
||||
<AvatarContainer size="xlarge">
|
||||
<Avatar size="xlarge" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="xlarge" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="xlarge" src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar size="xlarge" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="xlarge" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar size="xlarge" src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
</AvatarContainer>
|
||||
</div>
|
||||
</div>
|
||||
@@ -98,38 +98,38 @@ export const DifferentGroupSizes = {
|
||||
<div>
|
||||
<h3 className="text-white font-semibold mb-3">2 Users</h3>
|
||||
<AvatarContainer size="large">
|
||||
<Avatar size="large" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="large" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
</AvatarContainer>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="text-white font-semibold mb-3">3 Users</h3>
|
||||
<AvatarContainer size="large">
|
||||
<Avatar size="large" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="large" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="large" src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
</AvatarContainer>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="text-white font-semibold mb-3">4 Users</h3>
|
||||
<AvatarContainer size="large">
|
||||
<Avatar size="large" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="large" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="large" src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar size="large" src="assets/Avatar_1.png" alt="User 4" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-1.svg" alt="User 4" />
|
||||
</AvatarContainer>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="text-white font-semibold mb-3">5 Users</h3>
|
||||
<AvatarContainer size="large">
|
||||
<Avatar size="large" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="large" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="large" src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar size="large" src="assets/Avatar_1.png" alt="User 4" />
|
||||
<Avatar size="large" src="assets/Avatar_2.png" alt="User 5" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-1.svg" alt="User 4" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-2.svg" alt="User 5" />
|
||||
</AvatarContainer>
|
||||
</div>
|
||||
</div>
|
||||
@@ -158,9 +158,9 @@ export const InContext = {
|
||||
<h3 className="text-white font-semibold mb-4">Team Members</h3>
|
||||
<div className="flex items-center space-x-4">
|
||||
<AvatarContainer size="medium">
|
||||
<Avatar size="medium" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="medium" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="medium" src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar size="medium" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="medium" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar size="medium" src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
</AvatarContainer>
|
||||
<span className="text-white">3 team members</span>
|
||||
</div>
|
||||
@@ -172,10 +172,10 @@ export const InContext = {
|
||||
</h3>
|
||||
<div className="flex items-center space-x-4">
|
||||
<AvatarContainer size="large">
|
||||
<Avatar size="large" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="large" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="large" src="assets/Avatar_3.png" alt="User 3" />
|
||||
<Avatar size="large" src="assets/Avatar_1.png" alt="User 4" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-3.svg" alt="User 3" />
|
||||
<Avatar size="large" src="assets/marketing/avatar-1.svg" alt="User 4" />
|
||||
</AvatarContainer>
|
||||
<span className="text-white">4 contributors</span>
|
||||
</div>
|
||||
@@ -185,8 +185,8 @@ export const InContext = {
|
||||
<h3 className="text-white font-semibold mb-4">Small Team</h3>
|
||||
<div className="flex items-center space-x-4">
|
||||
<AvatarContainer size="small">
|
||||
<Avatar size="small" src="assets/Avatar_1.png" alt="User 1" />
|
||||
<Avatar size="small" src="assets/Avatar_2.png" alt="User 2" />
|
||||
<Avatar size="small" src="assets/marketing/avatar-1.svg" alt="User 1" />
|
||||
<Avatar size="small" src="assets/marketing/avatar-2.svg" alt="User 2" />
|
||||
</AvatarContainer>
|
||||
<span className="text-white">2 members</span>
|
||||
</div>
|
||||
|
||||
@@ -30,7 +30,7 @@ export const Default = {
|
||||
backgroundColor: "bg-[var(--color-surface-default-brand-royal)]",
|
||||
labelLine1: "Decision-making",
|
||||
labelLine2: "support",
|
||||
panelContent: "assets/Feature_Support.png",
|
||||
panelContent: "assets/marketing/feature-support.png",
|
||||
},
|
||||
};
|
||||
|
||||
@@ -41,25 +41,25 @@ export const ColorVariants = {
|
||||
backgroundColor="bg-[var(--color-surface-default-brand-royal)]"
|
||||
labelLine1="Decision-making"
|
||||
labelLine2="support"
|
||||
panelContent="assets/Feature_Support.png"
|
||||
panelContent="assets/marketing/feature-support.png"
|
||||
/>
|
||||
<Mini
|
||||
backgroundColor="bg-[#D1FFE2]"
|
||||
labelLine1="Values alignment"
|
||||
labelLine2="exercises"
|
||||
panelContent="assets/Feature_Exercises.png"
|
||||
panelContent="assets/marketing/feature-exercises.png"
|
||||
/>
|
||||
<Mini
|
||||
backgroundColor="bg-[#F4CAFF]"
|
||||
labelLine1="Membership"
|
||||
labelLine2="guidance"
|
||||
panelContent="assets/Feature_Guidance.png"
|
||||
panelContent="assets/marketing/feature-guidance.png"
|
||||
/>
|
||||
<Mini
|
||||
backgroundColor="bg-[#CBDDFF]"
|
||||
labelLine1="Conflict resolution"
|
||||
labelLine2="tools"
|
||||
panelContent="assets/Feature_Tools.png"
|
||||
panelContent="assets/marketing/feature-tools.png"
|
||||
/>
|
||||
</div>
|
||||
),
|
||||
@@ -70,7 +70,7 @@ export const AsLink = {
|
||||
backgroundColor: "bg-[var(--color-surface-default-brand-royal)]",
|
||||
labelLine1: "Decision-making",
|
||||
labelLine2: "support",
|
||||
panelContent: "assets/Feature_Support.png",
|
||||
panelContent: "assets/marketing/feature-support.png",
|
||||
href: "#decision-making",
|
||||
ariaLabel: "Navigate to decision-making support tools",
|
||||
},
|
||||
|
||||
@@ -37,13 +37,13 @@ export default {
|
||||
<LogoWall
|
||||
logos={[
|
||||
{
|
||||
src: "assets/Section/Logo_CUBoulder.png",
|
||||
src: "assets/logos/partners/cu-boulder.svg",
|
||||
alt: "CU Boulder",
|
||||
size: "h-10 lg:h-12 xl:h-[60px]",
|
||||
order: "order-1 sm:order-2"
|
||||
},
|
||||
{
|
||||
src: "assets/Section/Logo_FoodNotBombs.png",
|
||||
src: "assets/logos/partners/food-not-bombs.svg",
|
||||
alt: "Food Not Bombs",
|
||||
size: "h-11 lg:h-14 xl:h-[70px]",
|
||||
order: "order-2 sm:order-1"
|
||||
|
||||
@@ -76,7 +76,7 @@ export const Default = {
|
||||
"The rules of decision-making must be open and available to everyone, and this can happen only if they are formalized.",
|
||||
author: "Jo Freeman",
|
||||
source: "The Tyranny of Structurelessness",
|
||||
avatarSrc: "assets/Quote_Avatar.svg",
|
||||
avatarSrc: "assets/marketing/quote-avatar.svg",
|
||||
},
|
||||
};
|
||||
|
||||
@@ -91,7 +91,7 @@ export const AllVariants = {
|
||||
quote="The rules of decision-making must be open and available to everyone."
|
||||
author="Jo Freeman"
|
||||
source="The Tyranny of Structurelessness"
|
||||
avatarSrc="assets/Quote_Avatar.svg"
|
||||
avatarSrc="assets/marketing/quote-avatar.svg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -102,7 +102,7 @@ export const AllVariants = {
|
||||
quote="The rules of decision-making must be open and available to everyone, and this can happen only if they are formalized."
|
||||
author="Jo Freeman"
|
||||
source="The Tyranny of Structurelessness"
|
||||
avatarSrc="assets/Quote_Avatar.svg"
|
||||
avatarSrc="assets/marketing/quote-avatar.svg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -113,7 +113,7 @@ export const AllVariants = {
|
||||
quote="The rules of decision-making must be open and available to everyone, and this can happen only if they are formalized."
|
||||
author="Jo Freeman"
|
||||
source="The Tyranny of Structurelessness"
|
||||
avatarSrc="assets/Quote_Avatar.svg"
|
||||
avatarSrc="assets/marketing/quote-avatar.svg"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -88,10 +88,12 @@ vi.mock("../../app/components/sections/AskOrganizer", () => {
|
||||
|
||||
// Mock asset utils
|
||||
vi.mock("../../lib/assetUtils", () => ({
|
||||
getAssetPath: vi.fn((asset) => `/assets/${asset}`),
|
||||
getAssetPath: vi.fn((asset) =>
|
||||
asset.startsWith("/") ? asset : `/${asset}`,
|
||||
),
|
||||
ASSETS: {
|
||||
CONTENT_SHAPE_1: "Content_Shape_1.svg",
|
||||
CONTENT_SHAPE_2: "Content_Shape_2.svg",
|
||||
CONTENT_SHAPE_1: "assets/shapes/content-shape-1.svg",
|
||||
CONTENT_SHAPE_2: "assets/shapes/content-shape-2.svg",
|
||||
},
|
||||
}));
|
||||
|
||||
@@ -232,8 +234,8 @@ describe("BlogPostPage", () => {
|
||||
expect(shapes).toHaveLength(2);
|
||||
|
||||
// Check shape sources
|
||||
expect(shapes[0]).toHaveAttribute("src", "/assets/Content_Shape_1.svg");
|
||||
expect(shapes[1]).toHaveAttribute("src", "/assets/Content_Shape_2.svg");
|
||||
expect(shapes[0]).toHaveAttribute("src", "/assets/shapes/content-shape-1.svg");
|
||||
expect(shapes[1]).toHaveAttribute("src", "/assets/shapes/content-shape-2.svg");
|
||||
});
|
||||
|
||||
it("applies correct styling to article content", async () => {
|
||||
|
||||
@@ -84,7 +84,7 @@ describe("LogoWall Component", () => {
|
||||
const foodNotBombsLogo = screen.getByAltText("Food Not Bombs");
|
||||
expect(foodNotBombsLogo).toHaveAttribute(
|
||||
"src",
|
||||
"/assets/Section/Logo_FoodNotBombs.png",
|
||||
"/assets/logos/partners/food-not-bombs.svg",
|
||||
);
|
||||
expect(foodNotBombsLogo).toHaveClass("h-11", "lg:h-14", "xl:h-[70px]");
|
||||
});
|
||||
|
||||