added michal's styles to the results page

This commit is contained in:
timhaller 2023-12-10 12:26:10 +01:00
parent bf49b94a03
commit 4157269251
28 changed files with 1099 additions and 338 deletions

View File

@ -1,4 +1,4 @@
import {NextResponse} from "next/server"; import {NextRequest, NextResponse} from "next/server";
import prisma from "@/lib/prisma"; import prisma from "@/lib/prisma";
interface IBody { interface IBody {
@ -80,5 +80,14 @@ export async function POST(req: Request){
createdAt: grade.createdAt createdAt: grade.createdAt
} }
}); });
return NextResponse.json({message: 'Server error'}, {status: 500}) }
export async function GET(req: NextRequest){
const key = req.nextUrl.searchParams.get("key");
if(!key) return NextResponse.json({error: "No key provided"}, {status: 400});
const grades = await prisma.grade.findMany({})
return NextResponse.json(grades, {status: 200});
} }

View File

@ -5,6 +5,9 @@ import { useRouter } from 'next/navigation';
import { useState, useEffect } from 'react'; import { useState, useEffect } from 'react';
import useSWR from 'swr'; import useSWR from 'swr';
import { fetcher } from '@/lib/fetcher'; import { fetcher } from '@/lib/fetcher';
import Image from "next/image";
import Logo from "/images/logo.svg";
import LogOut from "@images/logout.svg";
export default function Play() { export default function Play() {
const router = useRouter(); const router = useRouter();
@ -21,19 +24,19 @@ export default function Play() {
}, [router]); }, [router]);
return ( return (
<div> <div className={"w-full h-[100vh] text-[#F0F0F0] bg-black p-12 flex flex-col items-center justify-center gap-y-28"}>
<h1>Calendrier-avant</h1> <Image src={Logo} alt={"Logo"} width={100} height={200} className={"mx-auto w-full md:w-[400px]"}/>
<TestCard data={data} error={error} isLoading={isLoading} /> <TestCard data={data} error={error} isLoading={isLoading} />
{data && console.log(data)} {data && console.log(data)}
{data && data.status == 200 && password && <GradingForm password={password} data={data} />} {data && data.status == 200 && password && <GradingForm password={password} data={data} />}
<div> <div>
<button <button
onClick={(e) => { onClick={() => {
localStorage.clear(); localStorage.clear();
router.push('/'); router.push('/');
}} }}
> >
Se déconnecter <Image src={LogOut} alt={"Logo"} width={100} height={200} className={"mx-auto w-full md:w-[400px]"}/>
</button> </button>
</div> </div>
</div> </div>

View File

@ -1,6 +1,7 @@
"use server"; "use server";
import {Chart} from "@components/custom/chart"; import {Chart} from "@components/custom/chart";
import logo from "@images/logo.svg";
import Image from "next/image";
import Prisma from '@lib/prisma' import Prisma from '@lib/prisma'
interface data { interface data {
@ -9,12 +10,8 @@ interface data {
} }
export default async function Page({ params }: { params: { id: string } }) { export default async function Page({ params }: { params: { id: string } }) {
const grades = await Prisma.grade.findMany({
where: {
testId: parseInt(params.id)
}
})
const grades = await Prisma.grade.findMany({ where: { testId: parseInt(params.id) }})
const allGrades = ['1', '1.5', '2', '2.5', '3', '3.5', '4', '4.5', '5', '5.5', '6'] const allGrades = ['1', '1.5', '2', '2.5', '3', '3.5', '4', '4.5', '5', '5.5', '6']
let gradeOccurences = new Array(allGrades.length).fill(0) let gradeOccurences = new Array(allGrades.length).fill(0)
const gradeList = grades.map((grade) => grade.grade) const gradeList = grades.map((grade) => grade.grade)
@ -35,7 +32,11 @@ export default async function Page({ params }: { params: { id: string } }) {
console.log(grade); console.log(grade);
} }
return <div> return (
<Chart data={data}/> <div className={"p-4 md:p-12 w-full h-screen bg-black"}>
</div> <Image src={logo} alt={"Logo"} width={100} height={200} className={"mx-auto w-full md:w-[400px]"}/>
<Chart data={data}/>
</div>
)
} }

View File

@ -1,6 +1,6 @@
"use client" "use client"
import { Bar, BarChart, ResponsiveContainer, XAxis, YAxis } from "recharts" import {Santa} from "@components/custom/santa";
interface ChartProps { interface ChartProps {
data: { data: {
@ -11,25 +11,20 @@ interface ChartProps {
export function Chart({...props}: ChartProps) { export function Chart({...props}: ChartProps) {
return ( return (
<ResponsiveContainer width="100%" height={350}> <div className={"text-[#F0F0F0]"}>
<BarChart data={props.data}> <div className={"flex flex-row justify-between w-full items-end"}>
<XAxis {props.data.map((item, index) => (
dataKey="name" <Santa height={item.total} key={index}/>
stroke="#888888" ))}
fontSize={12} </div>
tickLine={false} <div className={"flex flex-row justify-between w-full items-end mt-2"}>
axisLine={false} {props.data.map((item, index) => (
/> <div className={"w-[100px] h-fit flex flex-col items-center"} key={index}>
<YAxis <div className={"h-[14px] w-[3pt] bg-white"}/>
stroke="#888888" <span className={""}>{item.name}</span>
fontSize={12} </div>
tickLine={false} ))}
axisLine={false} </div>
allowDecimals={false} </div>
tickFormatter={(value) => `${value}`}
/>
<Bar dataKey="total" fill="#80a256" radius={[4, 4, 0, 0]} />
</BarChart>
</ResponsiveContainer>
) )
} }

View File

@ -1,3 +1,4 @@
export { DayCard as DayCard } from './dayCard'; export { DayCard as DayCard } from './dayCard';
export { TestCard as TestCard } from './testCard'; export { TestCard as TestCard } from './testCard';
export { GradingForm } from "./gradingForm"; export { GradingForm } from "./gradingForm";
export { Santa } from "./santa";

View File

@ -0,0 +1,17 @@
import Image from "next/image";
import { santas } from "@santa/index";
interface SantaProps {
height: number
}
export function Santa({ ...props} : SantaProps) {
if (props.height <= 0 || props.height > 24) {
return <div className={"w-[100px] bg-blue-500"}/>
}
return (
<div className="flex flex-col items-center">
<Image src={santas[props.height - 1]} alt={"Santa"} width={100} height={200}/>
</div>
)
}

View File

@ -1,32 +1,50 @@
'use client'; 'use client';
import Calendar from "../../images/date.svg";
import Image from "next/image";
import { Ban, Snowflake, CircleOff } from "lucide-react";
export function TestCard({ data, error, isLoading }: { data: any; error: any; isLoading: boolean }) { export function TestCard({ data, error, isLoading }: { data: any; error: any; isLoading: boolean }) {
console.log(data);
if (isLoading) if (isLoading)
return ( return (
<div className="rounded-lg border-gray-700 border-2"> <div className={"w-fit h-fit relative"}>
<h2>Aujourd&apos;hui</h2> <Image src={Calendar} alt={"Calendrier absolute"} />
<h3>Chargement...</h3> <div className={"w-full h-full absolute top-0 left-0 p-4 flex flex-col place-content-end text-center"}>
<Snowflake width={36} height={36} color={"#000000"} className={"animate-spin place-self-center"} />
<span className={"text-black text-xs"}>Chargement</span>
</div>
</div> </div>
); );
if (error) if (error)
return ( return (
<div className="rounded-lg border-gray-700 border-2"> <div className={"w-fit h-fit relative"}>
<h2>Aujourd&apos;hui</h2> <Image src={Calendar} alt={"Calendrier absolute"} />
<h3>Une erreur est survenue, merci d&apos;essayer dans quelques minutes</h3> <div className={"w-full h-full absolute top-0 left-0 p-4 flex flex-col place-content-end text-center"}>
<Ban width={36} height={36} color={"#000000"} className={"place-self-center"}/>
<span className={"text-black text-xs"}>Erreur</span>
</div>
</div> </div>
); );
if (data.status == 404) if (data.status == 404)
return ( return (
<div className="rounded-lg border-gray-700 border-2"> <div className={"w-fit h-fit relative"}>
<h2>{"Aujourd'hui " + new Date().toLocaleDateString()}</h2> <Image src={Calendar} alt={"Calendrier absolute"} />
<h3>Pas de test prévu pour aujourd&apos;hui</h3> <div className={"w-full h-full absolute top-0 left-0 p-4 flex flex-col place-content-end text-center"}>
<CircleOff width={36} height={36} color={"#000000"} className={"place-self-center"}/>
<span className={"text-black text-xs"}>Pas de test</span>
</div>
</div> </div>
); );
return ( return (
<div className="rounded-lg border-gray-700 border-2"> <div className={"w-fit h-fit relative"}>
<h2>{"Aujourd'hui " + new Date(data.testOn).toLocaleDateString()}</h2> <Image src={Calendar} alt={"Calendrier absolute"} />
<h3>{data.testOf.firstName + ' ' + data.testOf.lastName}</h3> <div className={"w-full h-full absolute top-0 left-0 p-4 flex flex-col place-content-end text-center"}>
<span className={"text-black text-[36px] font-medium"}>{new Date().getDate()}</span>
<span className={"text-black text-xs"}>{data.testOf.firstName}</span>
</div>
</div> </div>
); );
} }

View File

@ -9,7 +9,7 @@ const Card = React.forwardRef<
<div <div
ref={ref} ref={ref}
className={cn( className={cn(
"rounded-lg border bg-card text-card-foreground shadow-sm", "rounded-lg border bg-black text-[#F0F0F0] shadow-sm",
className className
)} )}
{...props} {...props}

View File

@ -11,7 +11,7 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>(
<input <input
type={type} type={type}
className={cn( className={cn(
"flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50", "flex flex-1 h-[54px] w-full rounded-[20px] border-none bg-primary px-3 py-3 text-[14px] ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-textFaded placeholder:text-muted-foreground focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50",
className className
)} )}
ref={ref} ref={ref}

10
images/date.svg Normal file
View File

@ -0,0 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" width="121" height="124" fill="none" viewBox="0 0 121 124">
<path fill="#F0F0F0" fill-rule="evenodd" d="M121 40.257V92.19c0 9.554-7.631 17.311-17.03 17.311H17.03c-9.4 0-17.03-7.757-17.03-17.31V40.256c0-9.554 7.63-17.311 17.03-17.311h86.94c9.399 0 17.03 7.756 17.03 17.31Z" clip-rule="evenodd"/>
<mask id="a" width="121" height="88" x="0" y="22" maskUnits="userSpaceOnUse" style="mask-type:luminance">
<path fill="#fff" d="M121 40.257V92.19c0 9.554-7.631 17.311-17.03 17.311H17.03c-9.4 0-17.03-7.757-17.03-17.31V40.256c0-9.554 7.63-17.311 17.03-17.311h86.94c9.399 0 17.03 7.756 17.03 17.31Z"/>
</mask>
<g mask="url(#a)">
<path fill="#A70030" d="M121 22.946H0v22.777h121V22.946Z"/>
</g>
<path fill="#7CAA4F" fill-rule="evenodd" d="M31.37 18.39v9.111c0 2.515-2.008 4.556-4.481 4.556s-4.482-2.041-4.482-4.556v-9.11c0-2.515 2.009-4.556 4.482-4.556 2.473 0 4.481 2.04 4.481 4.555Zm67.223 0v9.111c0 2.515-2.008 4.556-4.482 4.556-2.473 0-4.481-2.041-4.481-4.556v-9.11c0-2.515 2.008-4.556 4.481-4.556 2.474 0 4.482 2.04 4.482 4.555Z" clip-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

8
images/logout.svg Normal file
View File

@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" width="215" height="38" fill="none" viewBox="0 0 215 38">
<path fill="#F0F0F0" fill-rule="evenodd" d="M14.133 28.342c-.073-.145-.34-.664-.597-.979-.587-.718-1.363-1.439-2.088-2.14-1.444-1.399-2.608-2.839-2.832-3.991-.246-1.267-.062-2.246.31-2.988.648-1.299 1.937-2.035 3.513-2.144 1.77-.124 3.9.62 5.155 1.767a1.9 1.9 0 0 1 .117 2.684 1.905 1.905 0 0 1-2.687.118c-.477-.436-1.242-.718-1.948-.775a2.191 2.191 0 0 0-.543.016c-.062.01-.155.044-.205.062-.005.09-.014.346.023.536.025.132.142.25.252.397.26.348.602.707.973 1.079.917.918 1.995 1.888 2.8 2.846 1.211 1.443 1.786 2.958 1.504 4.297-.267 1.267-1.326 2.72-4.26 3.735a7.578 7.578 0 0 1-3.722.293c-1.556-.267-2.954-1.05-4.19-2.003a1.899 1.899 0 0 1-.344-2.664 1.904 1.904 0 0 1 2.668-.344c.75.577 1.57 1.104 2.512 1.267.606.104 1.25.062 1.831-.14.666-.23 1.172-.462 1.531-.723.08-.057.176-.152.227-.206Z" clip-rule="evenodd"/>
<path fill="#F0F0F0" fill-rule="evenodd" d="M23.343 27.512c1.268 1.179 3.084 1.844 4.865 1.154a1.9 1.9 0 1 1 1.376 3.543c-3.937 1.525-8.063-.425-10.19-3.476-1.34-1.922-1.866-4.238-1.24-6.343.425-1.43 1.372-2.794 3.05-3.868 2.516-1.612 5.224-.872 6.882.713 1.197 1.144 1.8 2.72 1.591 4.157-.22 1.517-1.28 3.116-4.02 3.798-.763.19-1.535.285-2.314.322Zm-1.615-3.728c.159-.04.325-.06.496-.056.847.015 1.689-.02 2.513-.226.4-.1.72-.225.957-.394.112-.081.203-.157.219-.262.045-.316-.195-.614-.457-.866-.53-.507-1.393-.775-2.198-.26-.777.498-1.26 1.091-1.458 1.753a2.65 2.65 0 0 0-.072.311Zm35.287-4.35c-.156-2.747.117-5.525.516-7.712.236-1.29 1.306-4.66 2.933-6.125 1.15-1.036 2.511-1.401 4.037-.732 1.021.447 1.773 1.44 2.11 2.828.458 1.887.127 4.69.057 5.735-.222 3.308-.768 8.958-2.62 13.258a5.76 5.76 0 0 1-.04.09c.78.507 1.741.824 2.922.878.196.009.392 0 .587-.024-.144-.39-.266-.79-.364-1.197-1.052-4.344.772-8.794 5.153-8.777 1.901.008 2.97 1.053 3.48 2.517.512 1.466.263 3.527-.142 4.678-.496 1.41-1.455 2.812-2.675 3.958.625.327 1.377.418 2.254.148 1.297-.398 2.233-1.233 3.05-2.197 1.015-1.198 1.85-2.597 2.767-3.874.463-.645.942-1.263 1.458-1.829a9.314 9.314 0 0 1 1.3-1.58c2.644-2.571 6.594-3.461 9.931-.37 1.21 1.12.538 2.212.362 2.488-.251.392-.732.914-1.686.881a2.432 2.432 0 0 1-.745-.159c-.198-.073-.76-.302-.845-.337-2.513-.493-4.098.237-5.329 1.445-.707 1.197-.96 2.633-.266 3.848.708 1.24 1.847 1.928 3.236 2.218 2.641.55 3.994-.529 5.157-2.02 1.079-1.381 2.038-3.033 3.312-4.484a1.904 1.904 0 0 1 2.684-.178 1.9 1.9 0 0 1 .177 2.682c-1.224 1.395-2.136 2.989-3.172 4.317-2.009 2.573-4.376 4.353-8.935 3.403-2.497-.521-4.493-1.828-5.764-4.056a6.68 6.68 0 0 1-.273-.532c-1.386 1.76-3.011 3.263-5.3 3.966-2.794.858-5.108.028-6.752-1.624-.922.348-1.882.528-2.834.485-1.888-.087-3.445-.57-4.718-1.35-1.286 1.59-2.9 2.712-4.872 3.12-4.147.858-7.914-3.2-6.9-7.215.904-3.573 3.432-5.988 6.75-6.571Zm2.303 8.004c-.782-1.176-1.342-2.549-1.72-4.03l-.046-.183c-1.77.402-3.104 1.76-3.597 3.71-.36 1.423.97 2.869 2.44 2.565 1.23-.255 2.17-1.021 2.923-2.062Zm11.54-1.816c.534-.628.953-1.338 1.197-2.031.137-.39.246-.986.23-1.56a3.292 3.292 0 0 0-.097-.572c-1.249.062-1.55 1.365-1.527 2.64.01.491.075 1.011.197 1.523Zm-9.998-5.67a1.896 1.896 0 0 1 .324 2.099 14.853 14.853 0 0 0 .202.79c1.004-3.43 1.323-7.245 1.486-9.667.05-.743.306-2.556.134-4.044-.02-.17-.07-.382-.12-.56a2.41 2.41 0 0 0-.227.267c-.23.329-.428.712-.6 1.101-.423.953-.691 1.95-.785 2.466-.388 2.124-.664 4.898-.414 7.548Z" clip-rule="evenodd"/>
<path fill="#F0F0F0" fill-rule="evenodd" d="M107.784 18.077a2.03 2.03 0 0 1 .56-.224 2.25 2.25 0 0 1 1.172.05c.272.083.987.416 1.077.458.747.208 1.489.448 2.249.606.631.13 1.301.305 1.943.19.206-.177.694-.585.944-.717.86-.45 1.685-.421 2.479.193.452.348.834.92 1.077 1.668.171-.182.353-.354.546-.516 1.774-1.484 3.19-1.572 4.166-1.246 1.046.348 1.929 1.325 2.407 2.854.384 1.225.556 2.88.691 4.418.092 1.063.323 2.526.364 2.778a1.9 1.9 0 0 1-2.926 2.416c-.328-.346-.657-.944-.847-1.781-.229-1.016-.323-2.598-.481-4.156-.087-.855-.378-2.033-.542-2.65a3.95 3.95 0 0 0-.389.28c-.302.253-.536.57-.736.909-.422.714-.763 1.468-1.074 2.237-.621 1.534-.921 3.442-1.744 4.871-.366.637-.811.802-1.006.877a1.85 1.85 0 0 1-1.264.038c-.453-.143-1.032-.467-1.268-1.318a2.055 2.055 0 0 1-.072-.567c.001-.206.115-.822.138-1.084.054-.599.089-1.198.118-1.798.035-.74.349-2.485.396-4.03-1.133.257-2.323.123-3.45-.097.046.162.084.328.114.498.45 2.512-.556 5.834-2.526 7.862-1.491 1.534-3.471 2.362-5.719 1.897-7.466-1.543-8.556-10.168-4.597-13.808 1.712-1.575 4.378-2.395 7.969-1.202.08.027.157.058.231.094Zm-.321 3.54a1.894 1.894 0 0 1-1.111-.028c-1.875-.623-3.297-.432-4.191.391-2.124 1.953-1.215 6.464 2.791 7.292 1.164.241 2.084-.51 2.728-1.45.797-1.165 1.22-2.698 1.001-3.918-.112-.625-.495-1.101-.809-1.6a13.684 13.684 0 0 1-.409-.688Z" clip-rule="evenodd"/>
<path fill="#F0F0F0" fill-rule="evenodd" d="M130.523 19.794c.08-.099.73-.902 1.016-1.162.39-.354.79-.525 1.106-.593.461-.1.887-.043 1.277.132.395.178.831.496 1.098 1.175.222.565.34 1.215.391 1.904 1.298-1.1 2.824-1.538 4.464-.987 2.175.73 3.071 2.61 3.609 4.711.155.607.285 1.224.477 1.779.108.311.195.618.436.794.162.118.375.14.652.12-.378-1.119-.459-2.496-.078-4.172.982-4.32 4.395-5.448 6.741-4.836 1.443.376 2.585 1.396 3.006 2.85.349 1.203.223 2.827-1.07 4.68-.42.6-.901 1.172-1.422 1.701 1.21-.102 2.449-.508 3.417-1.135a1.9 1.9 0 1 1 2.071 3.187c-1.992 1.291-4.735 1.966-7.11 1.72-.999-.102-1.932-.365-2.747-.785a8.325 8.325 0 0 1-1.906.51c-1.661.232-2.808-.107-3.653-.67-.86-.573-1.446-1.43-1.842-2.473-.316-.83-.505-1.802-.764-2.723-.191-.683-.313-1.415-1.029-1.656-.211-.07-.399.004-.573.117-.283.184-.535.452-.775.757-1.245 1.582-2.038 4.056-2.325 5.152-.455 1.74-2.014 1.484-2.196 1.451-.364-.064-1.387-.318-1.558-1.638-.017-.123.045-.983.054-1.316a77.7 77.7 0 0 1 .083-2.102c.04-.77.163-1.686.243-2.621-.87.57-1.78 1.077-2.748 1.461a1.905 1.905 0 0 1-2.471-1.064 1.901 1.901 0 0 1 1.066-2.468c1.106-.439 2.105-1.097 3.06-1.8Zm18.038 6.285a9.902 9.902 0 0 0 1.966-2.064c.319-.457.511-.858.548-1.22.016-.156-.009-.29-.11-.364-.194-.142-.469-.156-.738-.096-.697.155-1.282.84-1.546 2.002-.156.682-.199 1.261-.12 1.742Z" clip-rule="evenodd"/>
<path fill="#F0F0F0" fill-rule="evenodd" d="M172.96 19.802c.183-1.81.45-3.718.939-5.467.717-2.57 1.92-4.803 3.798-6.184.749-.55 1.361-.411 1.658-.335.709.181 1.321.64 1.432 1.653a2.02 2.02 0 0 1-.042.675c-.044.192-.301.714-.376.951a32.767 32.767 0 0 0-.464 1.627c-.487 1.836-1.164 3.618-1.917 5.36a47.371 47.371 0 0 1-1.321 2.803c-.119 1.347-.194 2.622-.295 3.697-.064.674-.265 1.687-.232 2.631.007.186.024.369.063.54.019.082-.01.186.069.224.941.445 2.074-.094 3.225-.749.513-.291 1.022-.63 1.516-.996a8.064 8.064 0 0 1-.508-3.392c.121-1.682 1.264-3.818 2.872-5.042 1.279-.972 2.803-1.386 4.309-.952.792.228 1.33.636 1.703 1.11.533.679.754 1.555.641 2.533-.164 1.425-1.182 3.168-1.769 3.937-.526.691-1.336 1.61-2.315 2.56a4.642 4.642 0 0 0 1.74 1c2.78.85 5.559-1.461 6.865-3.816.487-.879.81-1.835.967-2.827a29.95 29.95 0 0 1-.166-1.274 2.45 2.45 0 0 1 .132-1.069c.339-.873.984-1.192 1.671-1.243.34-.025.988-.032 1.646.676 1.054 1.134 2.627 1.968 4.206 1.883.458-.024.9-.131 1.306-.338.133-.141.372-.391.476-.47a2.04 2.04 0 0 1 .812-.378 1.88 1.88 0 0 1 1.424.24c.341.207.761.562.907 1.321.074.383.074.94-.038 1.614-.158.946-.542 2.279-.823 3.567-.093.422-.156.99-.196 1.436.132-.052.27-.111.398-.176a1.9 1.9 0 1 1 1.714 3.393c-1.938.976-3.257.922-4.057.602-1.135-.454-1.855-1.51-1.925-3.105-.048-1.088.254-2.557.583-3.94a8.275 8.275 0 0 1-.377.029c-1.441.077-2.893-.264-4.206-.896a12.34 12.34 0 0 1-1.126 2.796c-2.098 3.784-6.839 6.974-11.305 5.61-1.329-.405-2.535-1.177-3.517-2.18-.548.398-1.111.768-1.678 1.09-2.362 1.343-4.806 1.794-6.737.88-1.319-.625-2.011-1.8-2.229-3.24a6.283 6.283 0 0 1-.063-.668c-1.758 2.057-3.802 3.754-6.111 4.611-2.323.862-4.147.675-5.494.014-2.234-1.097-3.363-3.666-3.17-6.347.277-3.847 3.148-7.667 8.11-6.79a1.901 1.901 0 1 1-.664 3.743c-2.315-.41-3.521 1.525-3.651 3.32-.078 1.083.151 2.22 1.053 2.663.612.3 1.436.227 2.491-.165 1.747-.648 3.261-1.948 4.587-3.5 1.356-1.586 2.507-3.44 3.459-5.25Zm11.332 3.441c.377-.414.696-.796.943-1.118a6.83 6.83 0 0 0 .861-1.523l.027-.076c-.287.11-.549.36-.791.607-.556.57-.986 1.334-1.032 1.98l-.008.13Z" clip-rule="evenodd"/>
<path fill="#F0F0F0" fill-rule="evenodd" d="M170.337 15.46a1.902 1.902 0 0 1-1.866-1.935 1.902 1.902 0 0 1 1.938-1.864c4.626.087 9.191.324 13.706-.847a1.9 1.9 0 1 1 .956 3.677c-4.854 1.26-9.759 1.062-14.734.969Zm-99.393.503a1.9 1.9 0 1 1-1.743-3.377c1.703-.878 3.231-1.82 4.684-3.088a1.905 1.905 0 0 1 2.684.182c.69.79.61 1.991-.182 2.68-1.69 1.475-3.46 2.583-5.443 3.603Z" clip-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 8.4 KiB

27
images/santa/index.ts Normal file
View File

@ -0,0 +1,27 @@
import santa1 from './santa-1.svg';
import santa2 from './santa-2.svg';
import santa3 from './santa-3.svg';
import santa4 from './santa-4.svg';
import santa5 from './santa-5.svg';
import santa6 from './santa-6.svg';
import santa7 from './santa-7.svg';
import santa8 from './santa-8.svg';
import santa9 from './santa-9.svg';
import santa10 from './santa-10.svg';
import santa11 from './santa-11.svg';
import santa12 from './santa-12.svg';
export const santas = [
santa1,
santa2,
santa3,
santa4,
santa5,
santa6,
santa7,
santa8,
santa9,
santa10,
santa11,
santa12,
];

13
images/santa/santa-1.svg Normal file
View File

@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" width="41" height="46" fill="none" viewBox="0 0 41 46">
<g clip-path="url(#a)">
<path fill="#3F1A0A" fill-rule="evenodd" d="M16.25 40.452c-.081.623.082 1.277-.101 1.888a7.295 7.295 0 0 1-.473 1.224c-.184.356-.468.681-.546 1.086-.032.168.014.351.02.52.003.15-.027.337.04.477.233.486 1.002.33 1.432.327 1.04-.008 2.077.004 3.108-.136.389-.053.887-.062 1.2-.334.288-.252.133-.692.09-1.016-.067-.483.031-1.1-.18-1.55-.117-.25-.355-.393-.514-.611-.36-.496-.01-.825-.056-1.354-.002-.025-.063-.495-.11-.505-.292-.067-.628-.022-.927-.034-1.017-.041-2.023.075-3.043.025l.06-.007Zm6.205-.383c-.085.574.085 1.161-.004 1.733-.042.268-.23.476-.32.726a4.918 4.918 0 0 0-.25 2.213c.035.294.112.656.384.831.696.45 2.016.112 2.808.138.638.022 1.26.04 1.897-.008.265-.02.566.031.754-.195.61-.737-.28-1.79-.529-2.487-.103-.29-.194-.592-.343-.864-.137-.25-.354-.46-.466-.723-.102-.239-.1-.495-.123-.75a10.299 10.299 0 0 1-.042-.767c0-.051.027-.204-.022-.239-.216-.152-.796.092-1.028.12-.905.11-1.823.22-2.736.236l.02.036Z" clip-rule="evenodd"/>
<path fill="#F1D88E" fill-rule="evenodd" d="M16.894 41.278c.36.016.733-.034 1.106-.073.419-.044.838-.073 1.24.012a.107.107 0 0 1 .082.089c.01.052.022.306.024.325.017.186 0 .382-.013.576-.01.178-.017.355.025.52a.125.125 0 0 1-.029.123.142.142 0 0 1-.097.043.487.487 0 0 1-.125-.014c-.048-.01-.1-.026-.135-.026-.188-.001-.375-.003-.563 0-.51.005-1.096.143-1.6.091a.107.107 0 0 1-.094-.098c-.006-.051-.002-.302-.002-.319.001-.354.006-.711.037-1.065a.102.102 0 0 1 .05-.19h.062a.09.09 0 0 1 .032.006Zm.06.205c-.03.347-.035.697-.036 1.045v.22c.477.029 1.015-.094 1.49-.099.188-.002.376 0 .565 0a.76.76 0 0 1 .151.025l.015.003a2.218 2.218 0 0 1-.01-.482c.01-.184.03-.37.013-.545a43.652 43.652 0 0 1-.017-.248c-.36-.063-.731-.034-1.104.005-.359.038-.719.085-1.067.076Zm6.319-.296-.066-.195a.102.102 0 0 1 .1-.134c.608.02 1.215.008 1.823.016.08.001.32-.024.487-.006.103.011.182.045.22.087a.28.28 0 0 1 .045.15c.014.18-.026.55-.024.614.008.26.062.514.078.772a.112.112 0 0 1-.063.115.162.162 0 0 1-.093.014c-.028-.002-.065-.016-.088-.014-.146.007-.29.02-.436.031-.642.054-1.29-.07-1.925.022a.096.096 0 0 1-.097-.04.118.118 0 0 1-.02-.077c.002-.081.046-.491.05-.514.058-.288-.004-.554.01-.841Zm.153 1.256c.6-.063 1.209.042 1.813-.008.147-.013.294-.025.442-.033l.043.003c-.021-.226-.064-.45-.07-.68-.003-.055.028-.344.026-.536a.991.991 0 0 0-.007-.102l-.025-.008a.702.702 0 0 0-.12-.013c-.153-.006-.335.013-.4.012-.56-.008-1.12.002-1.68-.013l.026.075a.101.101 0 0 1 .005.038c-.018.305.047.585-.013.889a10.2 10.2 0 0 0-.04.376Z" clip-rule="evenodd"/>
<path fill="#fff" fill-rule="evenodd" d="M15.075 38.006c-.096.3-.111.547-.046.855.088.414.21.852.535 1.151.114.105.26.136.399.193.521.214.984.2 1.542.231.34.02.679.052 1.02.062.488.016.922-.008 1.403-.062.23-.026.489-.044.677-.192.143-.113.194-.286.27-.443.09-.189.133-.377.198-.573.106-.32.216-.574.135-.913-.034-.145-.034-.588-.244-.602-.25-.017-.537.126-.79.148-.786.068-1.58.127-2.37.108a38.875 38.875 0 0 1-2.409-.116c-.236-.021-.487 0-.72-.043m7.447-.209c-.052.088-.322.08-.363.204-.159.478-.187 1.207.32 1.834.186.23.095.386.402.451.288.062.93.059 1.215.02.457-.062.964-.044 1.418-.132.472-.09 1.09-.07 1.455-.414.468-.441.705-.974.741-1.604.011-.19-.155-.689-.39-.79" clip-rule="evenodd"/>
<path fill="#600C13" fill-rule="evenodd" d="M12.714 33.132c.015.404.282 1.475.46 1.824.137.264.232.544.378.805.087.156.12.332.2.49.212.427.491.864.78 1.242.123.163.214.357.385.478.453.319 1.137.169 1.652.173 1.28.013 2.557.094 3.826-.105a.85.85 0 0 0 .547-.386c.09-.155.173-.43.393-.434.247-.005.375.261.543.396.166.132.382.164.586.188.6.073 1.26.12 1.862.058.342-.036 1.798-.183 2.172-.304.296-.096 1.092-.466 1.242-.517.313-.107.608-.372.858-.581.572-.478.579-1.052.643-1.719.055-.568.132-1.126.174-1.696l-16.7.088Z" clip-rule="evenodd"/>
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h41v46H0z"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

62
images/santa/santa-10.svg Normal file
View File

@ -0,0 +1,62 @@
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="92" fill="none" viewBox="0 0 42 92">
<path fill="#3F1A0A" fill-rule="evenodd" d="M16.25 86.452c-.081.623.082 1.277-.101 1.888a7.295 7.295 0 0 1-.473 1.224c-.184.356-.468.681-.546 1.086-.032.168.014.351.02.52.003.15-.027.337.04.477.233.486 1.002.33 1.432.327 1.04-.008 2.077.004 3.108-.136.389-.053.887-.062 1.2-.334.288-.252.133-.692.09-1.016-.067-.483.031-1.1-.18-1.55-.117-.25-.355-.393-.514-.611-.36-.496-.01-.825-.056-1.354-.002-.025-.063-.495-.11-.505-.292-.067-.628-.022-.927-.034-1.017-.041-2.023.075-3.043.025l.06-.007Zm6.205-.383c-.085.574.085 1.161-.004 1.733-.042.268-.23.475-.32.726a4.919 4.919 0 0 0-.25 2.213c.035.293.112.656.384.831.696.45 2.016.112 2.808.138.638.022 1.26.04 1.897-.008.265-.02.566.031.754-.195.61-.737-.28-1.79-.529-2.487-.103-.29-.194-.592-.343-.864-.137-.25-.354-.46-.466-.723-.102-.239-.1-.496-.123-.75a10.299 10.299 0 0 1-.042-.767c0-.051.027-.204-.022-.239-.216-.152-.796.092-1.028.12-.905.11-1.823.22-2.736.236l.02.036Z" clip-rule="evenodd"/>
<path fill="#F1D88E" fill-rule="evenodd" d="M16.894 87.278c.36.016.733-.034 1.106-.073.419-.044.838-.073 1.24.012a.107.107 0 0 1 .082.089c.01.052.022.306.024.325.017.186 0 .382-.013.576-.011.178-.017.355.025.52a.125.125 0 0 1-.029.123.142.142 0 0 1-.097.043.487.487 0 0 1-.125-.014c-.048-.01-.1-.026-.135-.026-.188-.001-.375-.002-.563 0-.51.005-1.096.143-1.6.091a.107.107 0 0 1-.095-.098c-.005-.051 0-.302 0-.319 0-.354.005-.711.036-1.065a.102.102 0 0 1 .05-.19h.062c.01 0 .022.002.032.005Zm.06.205c-.03.347-.035.697-.036 1.045v.22c.477.029 1.015-.094 1.49-.099.188-.002.376 0 .565 0a.76.76 0 0 1 .151.025l.015.003a2.218 2.218 0 0 1-.01-.482c.01-.184.03-.37.013-.545a43.652 43.652 0 0 1-.017-.248c-.36-.063-.731-.034-1.104.005-.359.038-.719.085-1.067.076Zm6.319-.296-.066-.195a.102.102 0 0 1 .1-.134c.608.02 1.215.008 1.823.017.08 0 .32-.025.487-.007.103.011.182.045.22.088a.28.28 0 0 1 .045.15c.014.18-.026.55-.024.613.008.26.062.514.078.772a.112.112 0 0 1-.063.115.162.162 0 0 1-.093.014c-.028-.002-.065-.016-.088-.014-.146.007-.29.02-.436.031-.642.054-1.29-.07-1.925.022a.096.096 0 0 1-.097-.04.118.118 0 0 1-.02-.077c.002-.081.046-.491.05-.514.058-.288-.004-.554.01-.841Zm.153 1.256c.6-.063 1.209.042 1.813-.008.147-.013.294-.025.442-.033l.043.003c-.021-.226-.064-.45-.07-.68-.003-.055.028-.344.026-.536 0-.037-.005-.08-.007-.102l-.025-.008a.702.702 0 0 0-.12-.013c-.153-.006-.335.013-.4.012-.56-.008-1.12.002-1.68-.013l.026.075a.101.101 0 0 1 .005.038c-.018.305.047.585-.013.889a10.2 10.2 0 0 0-.04.376Z" clip-rule="evenodd"/>
<path fill="#fff" fill-rule="evenodd" d="M15.075 84.006a1.55 1.55 0 0 0-.046.856c.088.413.21.85.535 1.15.114.105.26.136.399.193.521.214.984.2 1.542.231.34.02.679.052 1.02.062.488.016.922-.008 1.403-.062.23-.026.489-.044.677-.192.143-.113.194-.286.27-.443.09-.189.133-.377.198-.573.106-.32.216-.574.135-.913-.034-.145-.034-.588-.244-.602-.25-.017-.537.126-.79.148-.786.067-1.58.127-2.37.108a38.875 38.875 0 0 1-2.409-.116c-.236-.021-.487 0-.72-.042m7.447-.21c-.052.088-.322.08-.363.204-.159.478-.187 1.207.32 1.834.186.23.095.386.402.451.288.062.93.059 1.215.02.457-.062.964-.044 1.418-.132.472-.09 1.09-.07 1.455-.414.468-.441.705-.974.741-1.604.011-.19-.155-.689-.39-.79" clip-rule="evenodd"/>
<path fill="#600C13" fill-rule="evenodd" d="M12.714 79.132c.015.404.282 1.475.46 1.824.137.264.232.544.378.805.087.156.12.332.2.49.212.427.491.864.78 1.242.123.163.214.358.385.478.453.319 1.137.168 1.652.173 1.28.013 2.557.094 3.826-.105a.85.85 0 0 0 .547-.386c.09-.155.173-.43.393-.434.247-.004.375.261.543.396.166.132.382.164.586.188.6.073 1.26.12 1.862.058.342-.036 1.798-.183 2.172-.304.296-.096 1.092-.466 1.242-.517.313-.107.608-.372.858-.581.572-.478.579-1.052.643-1.719.055-.568.132-1.126.174-1.696l-16.7.088Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.888 76.766c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.401 7.694-.147.835-.196 5.068-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.092-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.839 76.676c.023-.044.07-.132.115-.234.407-.906 1.46-3.717 1.566-5.818.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.01.094-.417 1.023-1.763 2.002-2.65 2.564-1.19.753-5.443 2.227-6.283 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.044-.103a.102.102 0 0 1 .053-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.252-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.397.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.73 73.907c.242.4.826.722 1.305 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.164 1.8.345 2.717.418.781.061 1.568.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475a16.43 16.43 0 0 0 1.603-1.472c.231-.239.222-.246.409-.522.262-.388-.296-1.324-.346-1.274-.269.262-2.21 1.3-3.04 1.87-2.095 1.436-4.816 1.8-7.297 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.278 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.642 73.96c-.064-.105-.086-.277-.073-.474a3.08 3.08 0 0 1 .18-.805c.045-.12.093-.214.134-.267a.214.214 0 0 1 .09-.072.155.155 0 0 1 .083-.001c.053.011.16.06.308.137.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.599 3.027-1.86a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.513.513 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.191.283-.183.29-.42.536a16.76 16.76 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.678-.78-.064-1.566-.024-2.347-.086-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.827-.403-.766-.3-1.477-.829-2.112-1.338-.489-.392-1.08-.723-1.328-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.972 1.815-2.11 1.447-4.85 1.817-7.349 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.056 3.056 0 0 0-.23-.108l-.012.017a1.2 1.2 0 0 0-.084.185c-.078.208-.15.5-.167.748-.01.147-.004.277.043.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.79.393.899.163 1.792.344 2.706.416.782.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.546 16.546 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.225-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.067 75.28a.557.557 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .433.054.553.127a.555.555 0 0 1 .252.33c.026.088.046.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308 0-1.007.125-1.513.145-.335.014-.612-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.046.01.12.014.19.096.001.217 0 .313-.008.496-.04 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.008.233.014.346.01l.007-.185c.047-.504.067-.983.002-1.487l-.001-.015c-.201.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 69.326c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 69.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.617a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.108c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 66.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 66.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.599 3.027-1.86a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.865-6.14.677-.78-.064-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.403-.765-.3-1.476-.829-2.11-1.338-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.147-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 67.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.013-.613-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.007.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 62.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 62.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 59.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 59.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 60.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.013-.613-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 54.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 54.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 51.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 51.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 52.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 46.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 46.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 43.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 43.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 44.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 38.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 38.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 35.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 35.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 36.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 30.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 30.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 27.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 27.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.358 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859.026-.026.062-.04.11-.026a.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.277.044.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.478-.06-.225-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 28.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.134.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M4.342 22.636c-.95.555-1.382.26-2.408.157-.374-.037-1.026-.106-1.308.217-.696.8 1.275.963 1.636 1.058 0 0-.187.272-.207.297a3.348 3.348 0 0 1-.515.513c-.615.49-1.51.854-1.433 1.789.143 1.716 1.82 2.34 3.239 1.496.915-.544 1.619-1.975 2.703-2.653l-1.707-2.874Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M2.09 24.136c-.32-.058-.954-.15-1.34-.345-.218-.11-.359-.259-.373-.436-.009-.119.037-.257.172-.412.127-.147.32-.225.535-.26.294-.048.629-.014.86.01.411.04.728.112 1.02.148.417.051.782.025 1.326-.293a.103.103 0 0 1 .14.036l1.707 2.875a.101.101 0 0 1-.033.138c-.534.333-.972.852-1.391 1.355-.434.52-.848 1.021-1.315 1.298-.74.44-1.55.495-2.19.218-.646-.278-1.128-.89-1.203-1.793-.042-.503.175-.854.489-1.144.293-.27.672-.485.982-.732a3.27 3.27 0 0 0 .5-.498l.115-.165Zm2.215-1.362c-.548.3-.932.322-1.366.27-.291-.037-.606-.108-1.016-.15-.216-.02-.53-.055-.806-.01-.164.026-.315.08-.413.192-.088.101-.128.186-.122.263.009.116.119.198.262.27.445.227 1.23.304 1.444.36.037.01.073.034.076.093 0 .004.005.027-.014.058l-.008.012a15.25 15.25 0 0 1-.207.296 3.418 3.418 0 0 1-.53.529c-.307.244-.682.456-.971.723-.27.249-.46.547-.425.979.068.814.497 1.37 1.08 1.622.587.254 1.326.198 2.004-.205.449-.267.844-.753 1.262-1.254.41-.492.842-.999 1.356-1.344l-1.606-2.704Zm30.905 2.293c.459.427.765.995 1.21 1.44.544.544 1.374.985 2.104 1.232 1.393.472 2.669-.854 2.574-2.212-.058-.82-.752-1.181-1.39-1.562a3.589 3.589 0 0 0-.056-.033l-.082-.048a6.307 6.307 0 0 1-.64-.445c-.027-.021-.105-.04-.08-.064.371-.385 1.144-.279 1.379-.876.162-.412-.345-.75-.689-.786-.522-.056-1.122.249-1.658.289-.636.048-1.196-.165-1.814-.225l-.858 3.29Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M39.009 23.37c.195.152.402.3.614.427l.081.048c.02.01.038.022.057.033.325.194.664.384.93.63.278.257.478.574.509 1.012.1 1.427-1.246 2.81-2.71 2.316-.743-.252-1.588-.703-2.143-1.258-.444-.443-.75-1.01-1.207-1.437a.102.102 0 0 1-.03-.1l.859-3.29a.102.102 0 0 1 .109-.075c.612.06 1.166.272 1.796.225.262-.02.54-.105.816-.178.295-.077.588-.14.861-.111.23.025.526.17.686.381a.538.538 0 0 1 .087.543c-.13.33-.402.47-.699.576-.215.077-.444.133-.616.259Zm-.14.15a.617.617 0 0 1-.073-.038.129.129 0 0 1-.043-.05c-.02-.04-.02-.084.022-.128.197-.203.497-.282.78-.383.242-.087.473-.191.578-.46.065-.163-.01-.31-.13-.422a.881.881 0 0 0-.474-.224c-.25-.027-.517.034-.787.105-.288.076-.578.163-.852.184-.613.045-1.155-.145-1.745-.216l-.82 3.147c.435.422.737.97 1.168 1.4.533.534 1.348.966 2.064 1.208 1.323.448 2.529-.818 2.438-2.109-.026-.38-.202-.654-.444-.878-.256-.235-.583-.417-.896-.603a27.084 27.084 0 0 0-.055-.033l-.083-.049a6.381 6.381 0 0 1-.648-.45Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M10.416 24.074c.216.02.317.453.31.603-.005.128 20.129.036 20.133-.092.006-.169.132-.489.22-.48.302.028.738.536.982.71.63.45 1.325.836 2.035 1.149.101.045 1.005.367 1.029.349.43-.339.646-1.33.878-1.795.225-.45.386-.934.557-1.407.178-.49.336-1.029.614-1.474.09-.144.358-.388.251-.552-.281-.432-.906-.423-1.34-.584-.878-.325-3.696-1.168-4.693-1.883-.485-.348-2.249-1.573-2.712-1.952-.181-.148-.53-.52-.764-.54-.75-.069-14.506-.063-14.661-.022-.627.164-1.409 1.16-1.919 1.572-1.587 1.284-3.4 2.405-5.178 3.406-.586.33-1.214.603-1.83.876a8.727 8.727 0 0 1-.593.237c-.102.037-.343 0-.309.103.045.136 1.055 1.605 1.184 1.797.284.421.52.867.77 1.307.22.388.495.747.723 1.131.075.126.155.25.21.386.028.07.032.273.079.213.756-.964 1.981-1.427 3.009-2.122.1-.068.94-.942 1.015-.936Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M31.095 24.21a.493.493 0 0 0-.04.059.869.869 0 0 0-.094.32c0 .023-.008.07-.068.094-.026.01-.163.024-.397.034-2.137.086-13.041.148-17.68.114-1.167-.009-1.94-.024-2.082-.046-.065-.01-.09-.045-.096-.056a.1.1 0 0 1-.014-.056.885.885 0 0 0-.094-.374.347.347 0 0 0-.068-.094.127.127 0 0 0-.032-.023 1.264 1.264 0 0 0-.071.058c-.26.224-.819.799-.9.854-1.019.689-2.236 1.145-2.986 2.1a.12.12 0 0 1-.09.05.109.109 0 0 1-.083-.029.201.201 0 0 1-.05-.1c-.012-.048-.018-.122-.033-.158-.052-.132-.13-.25-.202-.372-.229-.385-.504-.745-.724-1.133-.25-.438-.484-.882-.766-1.3-.131-.195-1.15-1.685-1.196-1.823a.144.144 0 0 1 0-.097.152.152 0 0 1 .09-.089.498.498 0 0 1 .136-.026c.051-.004.109-.004.145-.017.198-.072.394-.15.587-.235.612-.271 1.238-.543 1.82-.871 1.774-.999 3.581-2.117 5.165-3.397.305-.246.707-.703 1.115-1.063.287-.254.578-.46.841-.529.017-.004.177-.011.454-.014 2.35-.03 13.568-.029 14.243.033.108.01.24.08.37.177.17.126.34.297.45.387.462.377 2.223 1.6 2.707 1.948.992.711 3.796 1.546 4.67 1.87.214.08.476.117.72.188.269.078.515.198.67.436.061.095.048.21-.012.326-.064.122-.184.247-.239.334-.274.44-.43.973-.604 1.456-.173.477-.335.963-.562 1.417-.14.278-.272.745-.448 1.146-.126.286-.276.54-.459.683-.009.008-.05.032-.119.016a14.84 14.84 0 0 1-1.014-.351A11.68 11.68 0 0 1 32 24.898c-.147-.105-.364-.331-.58-.501-.115-.091-.227-.168-.326-.188ZM3.552 22.322c.173.304 1.026 1.54 1.144 1.716.285.422.521.87.773 1.313.22.387.495.745.723 1.13.077.13.16.259.216.4l.015.052c.768-.882 1.933-1.34 2.92-2.008.08-.054.627-.62.88-.84a.73.73 0 0 1 .138-.1.128.128 0 0 1 .064-.013c.118.01.218.102.286.232.064.121.101.274.113.385.235.018.957.03 1.994.037 4.635.034 15.534-.027 17.67-.114.114-.004.217-.012.278-.017.023-.128.08-.287.142-.379.056-.085.129-.119.18-.114.137.013.3.107.46.234.213.169.427.392.573.496a11.46 11.46 0 0 0 2.017 1.138c.086.038.76.28.957.333.145-.13.26-.343.364-.576.178-.405.312-.875.452-1.155.224-.448.383-.926.553-1.396.18-.496.341-1.043.623-1.494.053-.084.17-.204.23-.322.024-.043.046-.085.022-.12-.127-.196-.334-.287-.556-.352-.248-.073-.515-.11-.733-.192-.883-.328-3.715-1.177-4.718-1.896-.486-.349-2.253-1.577-2.717-1.956-.108-.088-.275-.257-.443-.381-.095-.071-.187-.13-.266-.137-.674-.062-11.875-.063-14.222-.033a17.4 17.4 0 0 0-.41.01c-.236.064-.493.254-.75.482-.411.363-.816.821-1.123 1.07-1.592 1.286-3.41 2.41-5.192 3.415-.589.331-1.22.606-1.839.88a9.08 9.08 0 0 1-.6.24.728.728 0 0 1-.168.027.555.555 0 0 0-.05.005Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.822 14.371c-1.011.54-1.821 1.515-1.27 2.67.132.275.351.483.596.66.016.012.29.16.288.171-.033.288-.272.595-.367.866-.262.743.098 1.715.679 2.236.226.203.511.322.807.384.037.008.44.044.443.054.223.689-.305 1.761.527 2.288.679.43 1.913-.08 2.043-.011.062.032.175.334.264.415.582.523 1.643.924 2.414.679.422-.134.796-.525 1.008-.903.008-.014.055-.13.064-.13.243 0 .505.13.747.166.85.125 1.761-.177 2.328-.836.243-.282.429-.611.406-.995-.012-.201-.316-.41-.197-.573.295-.407 1.162-.089 1.63-1.017.375-.743.54-1.598.264-2.396a1.424 1.424 0 0 0-.322-.536c-.015-.016-.212-.163-.21-.17.106-.569 1.404-.712.857-2.276-.163-.469-.374-.88-.835-1.114a3.076 3.076 0 0 0-.633-.243c-.013-.004-.207-.043-.207-.049.03-.615.315-1.068.189-1.738-.154-.81-.708-1.467-.749-2.306-.034-.706.695-1.396.093-1.953-.564-.521-1.442-.601-2.16-.77-2.137-.5-4.244-.396-6.387.134-.26.064-2.422.651-2.54.879-.17.324.103.868.056 1.222-.056.42-.306.783-.305 1.215.001.617.302 1.152.413 1.748.136.725.106 1.516.136 2.256l-.07-.027Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.785 14.277c-.023-.699-.003-1.437-.13-2.117-.112-.601-.413-1.143-.415-1.765 0-.229.064-.439.137-.647.068-.19.143-.38.17-.583.027-.204-.06-.474-.097-.725-.028-.197-.026-.383.05-.53a.252.252 0 0 1 .072-.079 1.34 1.34 0 0 1 .264-.14c.627-.27 2.062-.66 2.271-.711 2.16-.534 4.283-.64 6.436-.134.733.171 1.63.26 2.206.794.335.31.31.656.195 1.025-.1.32-.272.656-.255.997.02.407.165.769.323 1.128.166.377.345.752.423 1.165.067.35.026.643-.036.93-.052.242-.121.48-.145.748l.125.028a3.2 3.2 0 0 1 .654.251c.485.248.713.678.885 1.172.174.498.168.86.077 1.138-.092.282-.272.481-.457.65-.113.103-.227.194-.318.286a.593.593 0 0 0-.14.199c.057.044.157.124.168.134.158.16.273.364.345.575.284.825.117 1.707-.27 2.475-.299.593-.749.712-1.131.803-.114.028-.221.052-.314.09a.415.415 0 0 0-.193.137c-.014.02-.008.04 0 .063a.541.541 0 0 0 .053.095c.072.113.157.234.164.35.024.411-.171.766-.43 1.067-.59.686-1.538 1-2.423.87-.217-.032-.45-.143-.67-.162l-.036.076c-.224.398-.62.808-1.066.95-.803.255-1.908-.156-2.514-.701-.06-.053-.131-.193-.192-.306a1.408 1.408 0 0 0-.052-.088.778.778 0 0 0-.047.005c-.064.01-.15.03-.252.052-.277.06-.663.143-1.033.133-.26-.007-.512-.06-.717-.189-.45-.285-.54-.715-.54-1.17 0-.384.07-.788-.012-1.113-.108-.012-.358-.04-.384-.045a1.828 1.828 0 0 1-.855-.409c-.608-.546-.98-1.566-.707-2.344.049-.14.135-.289.213-.44.059-.115.114-.23.139-.343-.076-.044-.226-.13-.237-.139-.258-.187-.488-.408-.627-.699-.578-1.21.254-2.238 1.314-2.802l.01-.005Zm-.104-6.27c-.073.144-.043.336-.006.531.043.232.1.468.075.654-.029.217-.107.42-.18.623-.065.187-.125.375-.125.58.002.61.302 1.138.412 1.728.136.73.107 1.526.137 2.27a.102.102 0 0 1-.14.1l-.024-.01c-.946.518-1.703 1.43-1.185 2.514.124.26.333.455.563.622.015.01.238.133.282.165.053.039.05.088.048.1-.018.155-.09.316-.171.474-.074.142-.155.282-.202.414-.248.707.099 1.63.652 2.126.213.19.48.302.76.36.032.008.36.037.428.05.069.013.088.063.09.073.115.353.04.805.04 1.236 0 .385.063.755.445.997.175.111.39.152.612.158.352.01.72-.071.984-.13.141-.03.255-.055.324-.06a.219.219 0 0 1 .116.017c.028.015.07.06.109.128.055.096.119.25.176.301.558.502 1.574.893 2.314.658.399-.127.749-.499.95-.855.007-.015.052-.12.068-.14a.104.104 0 0 1 .085-.043c.248 0 .515.13.762.167.816.12 1.691-.168 2.235-.8.226-.263.403-.567.382-.924a.31.31 0 0 0-.056-.135c-.037-.061-.082-.122-.114-.18-.064-.116-.08-.226-.008-.324.13-.18.36-.242.625-.305.335-.08.734-.177.996-.698.363-.719.525-1.545.26-2.318a1.326 1.326 0 0 0-.299-.497c-.014-.015-.173-.133-.203-.162a.105.105 0 0 1-.035-.098.635.635 0 0 1 .153-.295c.1-.118.243-.229.384-.358.16-.145.32-.317.4-.561.08-.248.079-.568-.075-1.01-.155-.443-.35-.835-.786-1.056a2.982 2.982 0 0 0-.611-.236c-.013-.003-.177-.037-.21-.048a.103.103 0 0 1-.074-.104c.015-.313.095-.586.155-.864.056-.262.095-.53.035-.85-.075-.397-.25-.757-.41-1.12-.168-.382-.32-.768-.34-1.2-.018-.365.158-.726.264-1.067.09-.292.127-.57-.14-.816-.55-.51-1.411-.58-2.112-.745-2.121-.497-4.212-.393-6.34.133-.18.044-1.288.344-1.977.597a3.4 3.4 0 0 0-.414.176.677.677 0 0 0-.084.057Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="M16.65 13.644c1.02.19 2.127-.014 3.157-.004.847.008 1.669.027 2.515-.026.492-.031.978-.034 1.437-.241.293-.133.543-.33.784-.54.231-.201.494-.392.647-.664.818-1.45-1.314-2.466-2.44-2.735-1.025-.244-2.143-.09-3.173.046-.555.073-1.136.12-1.669.298-.367.122-.693.329-1.048.477-.393.164-.86.207-1.225.43-1.211.738-.167 2.65.932 2.952l.082.007Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="m16.636 13.745-.078-.007a.088.088 0 0 1-.018-.003c-.691-.19-1.365-.985-1.517-1.76-.105-.534.033-1.057.559-1.377.369-.225.84-.27 1.239-.437.357-.15.684-.357 1.055-.48.54-.179 1.127-.228 1.688-.302 1.041-.137 2.172-.29 3.21-.043.692.165 1.753.608 2.312 1.255.392.453.546 1.004.194 1.628-.159.282-.43.482-.67.69-.248.216-.507.42-.809.556-.47.213-.967.219-1.473.25-.848.054-1.672.035-2.522.027-1.035-.01-2.146.192-3.17.003Zm.033-.201c1.014.189 2.114-.016 3.14-.006.844.008 1.663.028 2.506-.026.48-.03.954-.03 1.401-.232.284-.128.526-.32.76-.523.222-.194.478-.376.625-.637.302-.536.166-1.008-.17-1.397-.532-.616-1.546-1.033-2.205-1.19-1.013-.24-2.118-.087-3.135.048-.549.072-1.123.118-1.65.293-.366.121-.688.328-1.04.475-.39.162-.852.203-1.212.422-.444.27-.553.714-.465 1.165.137.7.737 1.424 1.361 1.6l.073.006c.004 0 .007 0 .01.002Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="M19.81 14.676c-.087-.48-.514-.72-.956-.824-.817-.19-1.721-.031-2.52-.296a2.187 2.187 0 0 1-.929-.647c-.008-.01-.076-.11-.08-.109-.169.064-.22.317-.234.468-.101 1.076.384 2.377 1.468 2.803.896.352 1.9-.104 2.635-.606.213-.146.62-.4.698-.671l-.081-.118Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m19.907 14.636.07.1a.1.1 0 0 1 .014.086.845.845 0 0 1-.246.357c-.159.15-.362.28-.493.37-.761.52-1.803.981-2.73.617-1.127-.443-1.638-1.79-1.533-2.907.01-.102.035-.244.094-.357a.395.395 0 0 1 .207-.197.102.102 0 0 1 .117.031c.013.016.07.1.078.109a2.076 2.076 0 0 0 .882.614c.39.13.806.154 1.224.171.435.018.872.026 1.287.123.474.11.925.375 1.03.883Zm-4.606-1.697a.346.346 0 0 0-.055.1.902.902 0 0 0-.053.24c-.097 1.033.361 2.287 1.404 2.697.864.34 1.83-.11 2.54-.595.123-.085.316-.207.467-.35a.74.74 0 0 0 .174-.222l-.052-.075a.103.103 0 0 1-.016-.04c-.08-.437-.477-.649-.879-.743-.402-.093-.826-.1-1.248-.117-.438-.018-.873-.046-1.281-.182a2.285 2.285 0 0 1-.977-.68l-.024-.033Zm5.096 1.941c.164.283.447.468.72.638.251.156.502.316.796.38 1.342.291 2.973-.595 3.02-2.041.013-.357-.071-.731-.17-1.073a9.412 9.412 0 0 0-.106-.31c-.095.043-.13.306-.166.384a.788.788 0 0 1-.478.431c-1.136.383-2.423-.266-3.23.893a3.153 3.153 0 0 0-.35.611l-.036.087Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m20.302 14.841.036-.086c.092-.227.22-.43.361-.631.425-.611.975-.749 1.57-.781.556-.03 1.152.038 1.711-.15a.687.687 0 0 0 .417-.376c.025-.056.05-.201.096-.299a.27.27 0 0 1 .122-.137.095.095 0 0 1 .117.024.117.117 0 0 1 .024.041c.019.048.1.291.106.31.101.352.187.737.174 1.104-.05 1.51-1.745 2.441-3.145 2.138-.306-.067-.567-.231-.829-.394-.286-.178-.581-.376-.754-.674a.101.101 0 0 1-.006-.089Zm4.334-2.114c-.02.07-.036.138-.052.173a.89.89 0 0 1-.538.486c-.577.194-1.192.13-1.766.16-.534.029-1.03.145-1.412.693a3.07 3.07 0 0 0-.34.592l-.016.04c.158.245.414.408.66.56.24.15.48.306.763.368 1.284.278 2.85-.561 2.896-1.946.012-.346-.07-.71-.166-1.04l-.03-.086Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="M20.009 14.911c-.218.126-.274.524-.52.508-.373-.023-.601.113-.674.595-.02.142-.198.201-.335.249a.441.441 0 0 1-.138.022c-.023 0-.084-.015-.069.002.424.46 1 .763 1.647.608.688-.163 1.374-.929.984-1.63-.2-.357-.576-.107-.824-.295l-.071-.059Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="m20.075 14.833.069.057a.298.298 0 0 0 .154.054c.07.008.144.006.216.009.184.007.358.044.48.264.215.386.137.792-.094 1.123-.223.32-.59.567-.956.654-.685.164-1.298-.15-1.746-.638a.1.1 0 0 1-.029-.087.1.1 0 0 1 .053-.077.127.127 0 0 1 .06-.015c.015 0 .044.007.058.007a.347.347 0 0 0 .106-.018.887.887 0 0 0 .192-.08c.037-.021.07-.046.076-.087.041-.274.133-.447.26-.55.132-.106.305-.145.521-.131.041.002.072-.02.1-.048a.71.71 0 0 0 .078-.106c.08-.127.162-.27.284-.341a.103.103 0 0 1 .117.01Zm-1.58 1.532c.38.349.864.56 1.401.432.32-.077.641-.294.836-.573.187-.268.257-.596.082-.91-.096-.172-.25-.157-.396-.16-.143-.002-.283-.014-.4-.103l-.004-.003-.008-.007a.636.636 0 0 0-.074.095c-.046.069-.088.145-.134.207-.082.113-.18.187-.315.178-.157-.01-.284.008-.378.085-.098.079-.157.215-.188.423a.306.306 0 0 1-.127.2 1.017 1.017 0 0 1-.295.136Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.334 12.1c-.586-.008-1.269.131-1.72.607-.606.642-.473 1.471.392 1.776.32.113.68.113 1.016.12.639.012 1.567-.174 1.924-.77.506-.846-.685-1.718-1.612-1.732Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.336 11.999c.586.01 1.271.344 1.61.803.24.323.314.706.088 1.083-.153.256-.403.443-.694.573-.42.187-.924.254-1.32.246-.347-.007-.718-.009-1.048-.125-.473-.167-.742-.481-.814-.838-.071-.353.052-.755.382-1.103.47-.498 1.183-.648 1.796-.639Zm-.003.204c-.56-.009-1.214.12-1.644.574-.277.293-.39.627-.33.925.06.295.29.547.681.685.31.11.659.107.984.114.37.007.84-.054 1.232-.23.251-.111.47-.27.602-.49.179-.299.114-.602-.076-.858-.306-.413-.923-.712-1.45-.72Z" clip-rule="evenodd"/>
<path fill="#000" fill-rule="evenodd" d="M17.27 11.564a.103.103 0 0 1-.144.002.102.102 0 0 1-.003-.144c.432-.44.978-.368 1.433-.012a.102.102 0 0 1 .017.143.103.103 0 0 1-.144.016c-.368-.287-.81-.361-1.159-.005Zm4.983-.15a.103.103 0 0 1-.143.024.101.101 0 0 1-.024-.142.787.787 0 0 1 .456-.33c.362-.087.76.156 1.025.475a.102.102 0 0 1-.014.144.103.103 0 0 1-.145-.014c-.214-.258-.525-.477-.819-.407a.589.589 0 0 0-.336.25Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="M27.4 5.999c-.197.426-.134.93-.025 1.371.109.441.245.94.552 1.289.696.79 1.998.938 2.809.26.579-.485.445-1.327.225-1.963-.173-.501-.466-1.044-.903-1.37-.573-.427-1.619-.507-2.3-.3l-.358.713Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="m27.308 5.953.358-.712a.104.104 0 0 1 .062-.052c.709-.215 1.795-.129 2.392.316.453.338.759.898.938 1.418.114.33.204.712.192 1.074-.012.38-.135.737-.448 1-.852.712-2.221.559-2.952-.271-.318-.361-.462-.876-.575-1.331-.114-.463-.175-.992.031-1.439l.002-.003Zm.184.09c-.186.404-.121.884-.018 1.303.106.426.234.909.53 1.246.66.75 1.896.893 2.666.249.266-.223.365-.528.376-.85.01-.339-.076-.695-.182-1.002-.166-.483-.447-1.008-.867-1.32-.54-.403-1.513-.48-2.168-.298l-.337.672Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="M14.258 8.1c.812-.77 2.05-1.101 3.117-1.296 1.835-.333 3.73-.484 5.582-.151.908.163 1.738.538 2.597.856.16.06.332.117.468.223.052.04.186.218.24.18.23-.162.175-.555.132-.79-.17-.915-1.035-1.198-1.636-1.777-.139-.134-.72-.59-.444-.822.214-.18.58-.059.778.08.662.466 1.126 1.27 2.012 1.399.395.057.998-.339.899-.777-.057-.248-.281-.443-.429-.64-.376-.499-.805-.944-1.187-1.433-.358-.457-.551-.979-1.002-1.372-.437-.383-1.03-.535-1.503-.871-.402-.286-.634-.714-1.165-.798-.582-.092-1.246.516-1.76.719-.415.163-.876.217-1.271.426-.386.204-.646.58-.988.846-.312.241-.713.358-1.01.62-.62.55-1.355 1.765-1.74 2.501-.31.597-.965.795-1.434 1.217-.426.383-.557 1.188-.39 1.725l.134-.064Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="m14.303 8.193-.135.063a.103.103 0 0 1-.142-.062c-.177-.57-.033-1.423.42-1.83.237-.214.522-.372.787-.55.247-.168.477-.355.624-.637.39-.746 1.136-1.974 1.764-2.53.298-.265.7-.382 1.014-.626.346-.27.612-.648 1.002-.855.399-.211.863-.266 1.281-.43.308-.121.668-.388 1.032-.562.264-.126.531-.203.783-.163.287.045.494.182.683.347.171.151.327.327.525.468.476.338 1.072.492 1.512.877.456.399.652.924 1.015 1.387.382.489.812.934 1.188 1.434.074.098.166.195.248.299a1 1 0 0 1 .199.38c.047.208-.034.41-.185.57-.213.228-.564.368-.83.33-.463-.068-.818-.31-1.143-.598-.306-.273-.585-.588-.913-.819a.852.852 0 0 0-.415-.151.328.328 0 0 0-.237.066c-.07.058-.033.138.018.22.117.187.351.374.432.451.298.287.663.501.973.757.33.272.602.59.691 1.075.028.15.06.362.027.544a.511.511 0 0 1-.2.346c-.037.027-.085.034-.14.01a.43.43 0 0 1-.117-.086c-.042-.04-.082-.088-.105-.106-.128-.1-.29-.152-.44-.208-.854-.316-1.678-.69-2.58-.851-1.84-.331-3.722-.18-5.545.152-1.048.19-2.267.512-3.065 1.27a.107.107 0 0 1-.027.018Zm-.104-.177c.826-.777 2.078-1.115 3.158-1.312 1.847-.335 3.753-.486 5.619-.152.913.165 1.749.541 2.614.861.17.063.35.126.495.238.023.018.061.06.102.101a.694.694 0 0 0 .051.046.347.347 0 0 0 .081-.184 1.415 1.415 0 0 0-.026-.474c-.08-.43-.326-.712-.62-.955-.315-.259-.684-.476-.986-.767-.087-.083-.337-.288-.463-.49-.111-.179-.128-.355.023-.483a.534.534 0 0 1 .382-.114c.19.01.39.096.522.19.334.235.619.554.931.832.295.262.615.487 1.036.548.21.03.482-.087.65-.266.103-.11.167-.246.135-.388a.778.778 0 0 0-.161-.299c-.082-.105-.176-.203-.25-.302-.376-.499-.804-.943-1.186-1.431-.354-.453-.543-.97-.988-1.36-.435-.38-1.026-.53-1.496-.863-.204-.145-.365-.326-.542-.481-.16-.14-.335-.26-.58-.3-.27-.042-.557.084-.839.238-.307.168-.606.373-.867.476-.411.162-.868.213-1.26.42-.38.202-.636.575-.973.837-.31.24-.709.355-1.004.616-.613.543-1.338 1.744-1.718 2.472-.163.315-.416.525-.69.711-.258.174-.535.326-.766.534-.37.333-.5 1.006-.391 1.505l.008-.004Z" clip-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 50 KiB

67
images/santa/santa-11.svg Normal file
View File

@ -0,0 +1,67 @@
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="100" fill="none" viewBox="0 0 42 100">
<path fill="#3F1A0A" fill-rule="evenodd" d="M16.25 94.452c-.081.623.082 1.277-.101 1.888a7.295 7.295 0 0 1-.473 1.224c-.184.356-.468.681-.546 1.086-.032.168.014.351.02.52.003.15-.027.337.04.477.233.486 1.002.33 1.432.327 1.04-.008 2.077.004 3.108-.136.389-.053.887-.062 1.2-.334.288-.252.133-.692.09-1.016-.067-.483.031-1.1-.18-1.55-.117-.25-.355-.393-.514-.611-.36-.496-.01-.825-.056-1.354-.002-.025-.063-.495-.11-.505-.292-.067-.628-.022-.927-.034-1.017-.041-2.023.075-3.043.025l.06-.007Zm6.205-.383c-.085.574.085 1.161-.004 1.733-.042.268-.23.475-.32.726a4.919 4.919 0 0 0-.25 2.213c.035.293.112.656.384.831.696.45 2.016.112 2.808.138.638.022 1.26.04 1.897-.008.265-.02.566.031.754-.195.61-.737-.28-1.79-.529-2.487-.103-.29-.194-.592-.343-.864-.137-.25-.354-.46-.466-.723-.102-.239-.1-.496-.123-.75a10.299 10.299 0 0 1-.042-.767c0-.051.027-.204-.022-.239-.216-.152-.796.092-1.028.12-.905.11-1.823.22-2.736.236l.02.036Z" clip-rule="evenodd"/>
<path fill="#F1D88E" fill-rule="evenodd" d="M16.894 95.278c.36.016.733-.034 1.106-.073.419-.044.838-.073 1.24.012a.107.107 0 0 1 .082.089c.01.052.022.306.024.325.017.186 0 .382-.013.576-.011.178-.017.355.025.52a.125.125 0 0 1-.029.123.142.142 0 0 1-.097.043.487.487 0 0 1-.125-.014c-.048-.01-.1-.026-.135-.026-.188-.001-.375-.002-.563 0-.51.005-1.096.143-1.6.091a.107.107 0 0 1-.095-.098c-.005-.051 0-.302 0-.319 0-.354.005-.711.036-1.065a.102.102 0 0 1 .05-.19h.062c.01 0 .022.002.032.005Zm.06.205c-.03.347-.035.697-.036 1.045v.22c.477.029 1.015-.094 1.49-.099.188-.002.376 0 .565 0a.76.76 0 0 1 .151.025l.015.003a2.218 2.218 0 0 1-.01-.482c.01-.184.03-.37.013-.545a43.652 43.652 0 0 1-.017-.248c-.36-.063-.731-.034-1.104.005-.359.038-.719.085-1.067.076Zm6.319-.296-.066-.195a.102.102 0 0 1 .1-.134c.608.02 1.215.008 1.823.017.08 0 .32-.025.487-.007.103.011.182.045.22.088a.28.28 0 0 1 .045.15c.014.18-.026.55-.024.613.008.26.062.514.078.772a.112.112 0 0 1-.063.115.162.162 0 0 1-.093.014c-.028-.002-.065-.016-.088-.014-.146.007-.29.02-.436.031-.642.054-1.29-.07-1.925.022a.096.096 0 0 1-.097-.04.118.118 0 0 1-.02-.077c.002-.081.046-.491.05-.514.058-.288-.004-.554.01-.841Zm.153 1.256c.6-.063 1.209.042 1.813-.008.147-.013.294-.025.442-.033l.043.003c-.021-.226-.064-.45-.07-.68-.003-.055.028-.344.026-.536 0-.037-.005-.08-.007-.102l-.025-.008a.702.702 0 0 0-.12-.013c-.153-.006-.335.013-.4.012-.56-.008-1.12.002-1.68-.013l.026.075a.101.101 0 0 1 .005.038c-.018.305.047.585-.013.889a10.2 10.2 0 0 0-.04.376Z" clip-rule="evenodd"/>
<path fill="#fff" fill-rule="evenodd" d="M15.075 92.006a1.55 1.55 0 0 0-.046.856c.088.413.21.85.535 1.15.114.105.26.136.399.193.521.214.984.2 1.542.231.34.02.679.052 1.02.062.488.016.922-.008 1.403-.062.23-.026.489-.044.677-.192.143-.113.194-.286.27-.443.09-.189.133-.377.198-.573.106-.32.216-.574.135-.913-.034-.145-.034-.588-.244-.602-.25-.017-.537.126-.79.148-.786.067-1.58.127-2.37.108a38.875 38.875 0 0 1-2.409-.116c-.236-.021-.487 0-.72-.042m7.447-.21c-.052.088-.322.08-.363.204-.159.478-.187 1.207.32 1.834.186.23.095.386.402.451.288.062.93.059 1.215.02.457-.062.964-.044 1.418-.132.472-.09 1.09-.07 1.455-.414.468-.441.705-.974.741-1.604.011-.19-.155-.689-.39-.79" clip-rule="evenodd"/>
<path fill="#600C13" fill-rule="evenodd" d="M12.714 87.132c.015.404.282 1.475.46 1.824.137.264.232.544.378.805.087.156.12.332.2.49.212.427.491.864.78 1.242.123.163.214.358.385.478.453.319 1.137.168 1.652.173 1.28.013 2.557.094 3.826-.105a.85.85 0 0 0 .547-.386c.09-.155.173-.43.393-.434.247-.004.375.261.543.396.166.132.382.164.586.188.6.073 1.26.12 1.862.058.342-.036 1.798-.183 2.172-.304.296-.096 1.092-.466 1.242-.517.313-.107.608-.372.858-.581.572-.478.579-1.052.643-1.719.055-.568.132-1.126.174-1.696l-16.7.088Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.888 84.766c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.401 7.694-.147.835-.196 5.068-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.092-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.839 84.676c.023-.044.07-.132.115-.234.407-.906 1.46-3.717 1.566-5.818.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.01.094-.417 1.023-1.763 2.002-2.65 2.564-1.19.753-5.443 2.227-6.283 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.044-.103a.102.102 0 0 1 .053-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.252-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.397.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.73 81.907c.242.4.826.722 1.305 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.164 1.8.345 2.717.418.781.061 1.568.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475a16.43 16.43 0 0 0 1.603-1.472c.231-.239.222-.246.409-.522.262-.388-.296-1.324-.346-1.274-.269.262-2.21 1.3-3.04 1.87-2.095 1.436-4.816 1.8-7.297 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.278 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.642 81.96c-.064-.105-.086-.277-.073-.474a3.08 3.08 0 0 1 .18-.805c.045-.12.093-.214.134-.267a.214.214 0 0 1 .09-.072.155.155 0 0 1 .083-.001c.053.011.16.06.308.137.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.599 3.027-1.86a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.513.513 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.191.283-.183.29-.42.536a16.76 16.76 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.678-.78-.064-1.566-.024-2.347-.086-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.827-.403-.766-.3-1.477-.829-2.112-1.338-.489-.392-1.08-.723-1.328-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.972 1.815-2.11 1.447-4.85 1.817-7.349 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.056 3.056 0 0 0-.23-.108l-.012.017a1.2 1.2 0 0 0-.084.185c-.078.208-.15.5-.167.748-.01.147-.004.277.043.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.79.393.899.163 1.792.344 2.706.416.782.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.546 16.546 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.225-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.067 83.28a.557.557 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .433.054.553.127a.555.555 0 0 1 .252.33c.026.088.046.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308 0-1.007.125-1.513.145-.335.014-.612-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.046.01.12.014.19.096.001.217 0 .313-.008.496-.04 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.008.233.014.346.01l.007-.185c.047-.504.067-.983.002-1.487l-.001-.015c-.201.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 77.326c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 77.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.617a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.108c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 74.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 74.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.599 3.027-1.86a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.865-6.14.677-.78-.064-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.403-.765-.3-1.476-.829-2.11-1.338-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.147-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 75.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.013-.613-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.007.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 70.326c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 70.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.617a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.108c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 67.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 67.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.599 3.027-1.86a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.865-6.14.677-.78-.064-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.403-.765-.3-1.476-.829-2.11-1.338-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.147-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 68.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.013-.613-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.007.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 62.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 62.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 59.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 59.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 60.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.013-.613-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 54.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 54.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 51.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 51.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 52.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 46.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 46.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 43.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 43.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 44.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 38.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 38.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 35.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 35.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 36.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 30.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 30.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 27.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 27.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.358 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859.026-.026.062-.04.11-.026a.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.277.044.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.478-.06-.225-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 28.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.134.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M4.342 22.636c-.95.555-1.382.26-2.408.157-.374-.037-1.026-.106-1.308.217-.696.8 1.275.963 1.636 1.058 0 0-.187.272-.207.297a3.348 3.348 0 0 1-.515.513c-.615.49-1.51.854-1.433 1.789.143 1.716 1.82 2.34 3.239 1.496.915-.544 1.619-1.975 2.703-2.653l-1.707-2.874Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M2.09 24.136c-.32-.058-.954-.15-1.34-.345-.218-.11-.359-.259-.373-.436-.009-.119.037-.257.172-.412.127-.147.32-.225.535-.26.294-.048.629-.014.86.01.411.04.728.112 1.02.148.417.051.782.025 1.326-.293a.103.103 0 0 1 .14.036l1.707 2.875a.101.101 0 0 1-.033.138c-.534.333-.972.852-1.391 1.355-.434.52-.848 1.021-1.315 1.298-.74.44-1.55.495-2.19.218-.646-.278-1.128-.89-1.203-1.793-.042-.503.175-.854.489-1.144.293-.27.672-.485.982-.732a3.27 3.27 0 0 0 .5-.498l.115-.165Zm2.215-1.362c-.548.3-.932.322-1.366.27-.291-.037-.606-.108-1.016-.15-.216-.02-.53-.055-.806-.01-.164.026-.315.08-.413.192-.088.101-.128.186-.122.263.009.116.119.198.262.27.445.227 1.23.304 1.444.36.037.01.073.034.076.093 0 .004.005.027-.014.058l-.008.012a15.25 15.25 0 0 1-.207.296 3.418 3.418 0 0 1-.53.529c-.307.244-.682.456-.971.723-.27.249-.46.547-.425.979.068.814.497 1.37 1.08 1.622.587.254 1.326.198 2.004-.205.449-.267.844-.753 1.262-1.254.41-.492.842-.999 1.356-1.344l-1.606-2.704Zm30.905 2.293c.459.427.765.995 1.21 1.44.544.544 1.374.985 2.104 1.232 1.393.472 2.669-.854 2.574-2.212-.058-.82-.752-1.181-1.39-1.562a3.589 3.589 0 0 0-.056-.033l-.082-.048a6.307 6.307 0 0 1-.64-.445c-.027-.021-.105-.04-.08-.064.371-.385 1.144-.279 1.379-.876.162-.412-.345-.75-.689-.786-.522-.056-1.122.249-1.658.289-.636.048-1.196-.165-1.814-.225l-.858 3.29Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M39.009 23.37c.195.152.402.3.614.427l.081.048c.02.01.038.022.057.033.325.194.664.384.93.63.278.257.478.574.509 1.012.1 1.427-1.246 2.81-2.71 2.316-.743-.252-1.588-.703-2.143-1.258-.444-.443-.75-1.01-1.207-1.437a.102.102 0 0 1-.03-.1l.859-3.29a.102.102 0 0 1 .109-.075c.612.06 1.166.272 1.796.225.262-.02.54-.105.816-.178.295-.077.588-.14.861-.111.23.025.526.17.686.381a.538.538 0 0 1 .087.543c-.13.33-.402.47-.699.576-.215.077-.444.133-.616.259Zm-.14.15a.617.617 0 0 1-.073-.038.129.129 0 0 1-.043-.05c-.02-.04-.02-.084.022-.128.197-.203.497-.282.78-.383.242-.087.473-.191.578-.46.065-.163-.01-.31-.13-.422a.881.881 0 0 0-.474-.224c-.25-.027-.517.034-.787.105-.288.076-.578.163-.852.184-.613.045-1.155-.145-1.745-.216l-.82 3.147c.435.422.737.97 1.168 1.4.533.534 1.348.966 2.064 1.208 1.323.448 2.529-.818 2.438-2.109-.026-.38-.202-.654-.444-.878-.256-.235-.583-.417-.896-.603a27.084 27.084 0 0 0-.055-.033l-.083-.049a6.381 6.381 0 0 1-.648-.45Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M10.416 24.074c.216.02.317.453.31.603-.005.128 20.129.036 20.133-.092.006-.169.132-.489.22-.48.302.028.738.536.982.71.63.45 1.325.836 2.035 1.149.101.045 1.005.367 1.029.349.43-.339.646-1.33.878-1.795.225-.45.386-.934.557-1.407.178-.49.336-1.029.614-1.474.09-.144.358-.388.251-.552-.281-.432-.906-.423-1.34-.584-.878-.325-3.696-1.168-4.693-1.883-.485-.348-2.249-1.573-2.712-1.952-.181-.148-.53-.52-.764-.54-.75-.069-14.506-.063-14.661-.022-.627.164-1.409 1.16-1.919 1.572-1.587 1.284-3.4 2.405-5.178 3.406-.586.33-1.214.603-1.83.876a8.727 8.727 0 0 1-.593.237c-.102.037-.343 0-.309.103.045.136 1.055 1.605 1.184 1.797.284.421.52.867.77 1.307.22.388.495.747.723 1.131.075.126.155.25.21.386.028.07.032.273.079.213.756-.964 1.981-1.427 3.009-2.122.1-.068.94-.942 1.015-.936Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M31.095 24.21a.493.493 0 0 0-.04.059.869.869 0 0 0-.094.32c0 .023-.008.07-.068.094-.026.01-.163.024-.397.034-2.137.086-13.041.148-17.68.114-1.167-.009-1.94-.024-2.082-.046-.065-.01-.09-.045-.096-.056a.1.1 0 0 1-.014-.056.885.885 0 0 0-.094-.374.347.347 0 0 0-.068-.094.127.127 0 0 0-.032-.023 1.264 1.264 0 0 0-.071.058c-.26.224-.819.799-.9.854-1.019.689-2.236 1.145-2.986 2.1a.12.12 0 0 1-.09.05.109.109 0 0 1-.083-.029.201.201 0 0 1-.05-.1c-.012-.048-.018-.122-.033-.158-.052-.132-.13-.25-.202-.372-.229-.385-.504-.745-.724-1.133-.25-.438-.484-.882-.766-1.3-.131-.195-1.15-1.685-1.196-1.823a.144.144 0 0 1 0-.097.152.152 0 0 1 .09-.089.498.498 0 0 1 .136-.026c.051-.004.109-.004.145-.017.198-.072.394-.15.587-.235.612-.271 1.238-.543 1.82-.871 1.774-.999 3.581-2.117 5.165-3.397.305-.246.707-.703 1.115-1.063.287-.254.578-.46.841-.529.017-.004.177-.011.454-.014 2.35-.03 13.568-.029 14.243.033.108.01.24.08.37.177.17.126.34.297.45.387.462.377 2.223 1.6 2.707 1.948.992.711 3.796 1.546 4.67 1.87.214.08.476.117.72.188.269.078.515.198.67.436.061.095.048.21-.012.326-.064.122-.184.247-.239.334-.274.44-.43.973-.604 1.456-.173.477-.335.963-.562 1.417-.14.278-.272.745-.448 1.146-.126.286-.276.54-.459.683-.009.008-.05.032-.119.016a14.84 14.84 0 0 1-1.014-.351A11.68 11.68 0 0 1 32 24.898c-.147-.105-.364-.331-.58-.501-.115-.091-.227-.168-.326-.188ZM3.552 22.322c.173.304 1.026 1.54 1.144 1.716.285.422.521.87.773 1.313.22.387.495.745.723 1.13.077.13.16.259.216.4l.015.052c.768-.882 1.933-1.34 2.92-2.008.08-.054.627-.62.88-.84a.73.73 0 0 1 .138-.1.128.128 0 0 1 .064-.013c.118.01.218.102.286.232.064.121.101.274.113.385.235.018.957.03 1.994.037 4.635.034 15.534-.027 17.67-.114.114-.004.217-.012.278-.017.023-.128.08-.287.142-.379.056-.085.129-.119.18-.114.137.013.3.107.46.234.213.169.427.392.573.496a11.46 11.46 0 0 0 2.017 1.138c.086.038.76.28.957.333.145-.13.26-.343.364-.576.178-.405.312-.875.452-1.155.224-.448.383-.926.553-1.396.18-.496.341-1.043.623-1.494.053-.084.17-.204.23-.322.024-.043.046-.085.022-.12-.127-.196-.334-.287-.556-.352-.248-.073-.515-.11-.733-.192-.883-.328-3.715-1.177-4.718-1.896-.486-.349-2.253-1.577-2.717-1.956-.108-.088-.275-.257-.443-.381-.095-.071-.187-.13-.266-.137-.674-.062-11.875-.063-14.222-.033a17.4 17.4 0 0 0-.41.01c-.236.064-.493.254-.75.482-.411.363-.816.821-1.123 1.07-1.592 1.286-3.41 2.41-5.192 3.415-.589.331-1.22.606-1.839.88a9.08 9.08 0 0 1-.6.24.728.728 0 0 1-.168.027.555.555 0 0 0-.05.005Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.822 14.371c-1.011.54-1.821 1.515-1.27 2.67.132.275.351.483.596.66.016.012.29.16.288.171-.033.288-.272.595-.367.866-.262.743.098 1.715.679 2.236.226.203.511.322.807.384.037.008.44.044.443.054.223.689-.305 1.761.527 2.288.679.43 1.913-.08 2.043-.011.062.032.175.334.264.415.582.523 1.643.924 2.414.679.422-.134.796-.525 1.008-.903.008-.014.055-.13.064-.13.243 0 .505.13.747.166.85.125 1.761-.177 2.328-.836.243-.282.429-.611.406-.995-.012-.201-.316-.41-.197-.573.295-.407 1.162-.089 1.63-1.017.375-.743.54-1.598.264-2.396a1.424 1.424 0 0 0-.322-.536c-.015-.016-.212-.163-.21-.17.106-.569 1.404-.712.857-2.276-.163-.469-.374-.88-.835-1.114a3.076 3.076 0 0 0-.633-.243c-.013-.004-.207-.043-.207-.049.03-.615.315-1.068.189-1.738-.154-.81-.708-1.467-.749-2.306-.034-.706.695-1.396.093-1.953-.564-.521-1.442-.601-2.16-.77-2.137-.5-4.244-.396-6.387.134-.26.064-2.422.651-2.54.879-.17.324.103.868.056 1.222-.056.42-.306.783-.305 1.215.001.617.302 1.152.413 1.748.136.725.106 1.516.136 2.256l-.07-.027Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.785 14.277c-.023-.699-.003-1.437-.13-2.117-.112-.601-.413-1.143-.415-1.765 0-.229.064-.439.137-.647.068-.19.143-.38.17-.583.027-.204-.06-.474-.097-.725-.028-.197-.026-.383.05-.53a.252.252 0 0 1 .072-.079 1.34 1.34 0 0 1 .264-.14c.627-.27 2.062-.66 2.271-.711 2.16-.534 4.283-.64 6.436-.134.733.171 1.63.26 2.206.794.335.31.31.656.195 1.025-.1.32-.272.656-.255.997.02.407.165.769.323 1.128.166.377.345.752.423 1.165.067.35.026.643-.036.93-.052.242-.121.48-.145.748l.125.028a3.2 3.2 0 0 1 .654.251c.485.248.713.678.885 1.172.174.498.168.86.077 1.138-.092.282-.272.481-.457.65-.113.103-.227.194-.318.286a.593.593 0 0 0-.14.199c.057.044.157.124.168.134.158.16.273.364.345.575.284.825.117 1.707-.27 2.475-.299.593-.749.712-1.131.803-.114.028-.221.052-.314.09a.415.415 0 0 0-.193.137c-.014.02-.008.04 0 .063a.541.541 0 0 0 .053.095c.072.113.157.234.164.35.024.411-.171.766-.43 1.067-.59.686-1.538 1-2.423.87-.217-.032-.45-.143-.67-.162l-.036.076c-.224.398-.62.808-1.066.95-.803.255-1.908-.156-2.514-.701-.06-.053-.131-.193-.192-.306a1.408 1.408 0 0 0-.052-.088.778.778 0 0 0-.047.005c-.064.01-.15.03-.252.052-.277.06-.663.143-1.033.133-.26-.007-.512-.06-.717-.189-.45-.285-.54-.715-.54-1.17 0-.384.07-.788-.012-1.113-.108-.012-.358-.04-.384-.045a1.828 1.828 0 0 1-.855-.409c-.608-.546-.98-1.566-.707-2.344.049-.14.135-.289.213-.44.059-.115.114-.23.139-.343-.076-.044-.226-.13-.237-.139-.258-.187-.488-.408-.627-.699-.578-1.21.254-2.238 1.314-2.802l.01-.005Zm-.104-6.27c-.073.144-.043.336-.006.531.043.232.1.468.075.654-.029.217-.107.42-.18.623-.065.187-.125.375-.125.58.002.61.302 1.138.412 1.728.136.73.107 1.526.137 2.27a.102.102 0 0 1-.14.1l-.024-.01c-.946.518-1.703 1.43-1.185 2.514.124.26.333.455.563.622.015.01.238.133.282.165.053.039.05.088.048.1-.018.155-.09.316-.171.474-.074.142-.155.282-.202.414-.248.707.099 1.63.652 2.126.213.19.48.302.76.36.032.008.36.037.428.05.069.013.088.063.09.073.115.353.04.805.04 1.236 0 .385.063.755.445.997.175.111.39.152.612.158.352.01.72-.071.984-.13.141-.03.255-.055.324-.06a.219.219 0 0 1 .116.017c.028.015.07.06.109.128.055.096.119.25.176.301.558.502 1.574.893 2.314.658.399-.127.749-.499.95-.855.007-.015.052-.12.068-.14a.104.104 0 0 1 .085-.043c.248 0 .515.13.762.167.816.12 1.691-.168 2.235-.8.226-.263.403-.567.382-.924a.31.31 0 0 0-.056-.135c-.037-.061-.082-.122-.114-.18-.064-.116-.08-.226-.008-.324.13-.18.36-.242.625-.305.335-.08.734-.177.996-.698.363-.719.525-1.545.26-2.318a1.326 1.326 0 0 0-.299-.497c-.014-.015-.173-.133-.203-.162a.105.105 0 0 1-.035-.098.635.635 0 0 1 .153-.295c.1-.118.243-.229.384-.358.16-.145.32-.317.4-.561.08-.248.079-.568-.075-1.01-.155-.443-.35-.835-.786-1.056a2.982 2.982 0 0 0-.611-.236c-.013-.003-.177-.037-.21-.048a.103.103 0 0 1-.074-.104c.015-.313.095-.586.155-.864.056-.262.095-.53.035-.85-.075-.397-.25-.757-.41-1.12-.168-.382-.32-.768-.34-1.2-.018-.365.158-.726.264-1.067.09-.292.127-.57-.14-.816-.55-.51-1.411-.58-2.112-.745-2.121-.497-4.212-.393-6.34.133-.18.044-1.288.344-1.977.597a3.4 3.4 0 0 0-.414.176.677.677 0 0 0-.084.057Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="M16.65 13.644c1.02.19 2.127-.014 3.157-.004.847.008 1.669.027 2.515-.026.492-.031.978-.034 1.437-.241.293-.133.543-.33.784-.54.231-.201.494-.392.647-.664.818-1.45-1.314-2.466-2.44-2.735-1.025-.244-2.143-.09-3.173.046-.555.073-1.136.12-1.669.298-.367.122-.693.329-1.048.477-.393.164-.86.207-1.225.43-1.211.738-.167 2.65.932 2.952l.082.007Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="m16.636 13.745-.078-.007a.088.088 0 0 1-.018-.003c-.691-.19-1.365-.985-1.517-1.76-.105-.534.033-1.057.559-1.377.369-.225.84-.27 1.239-.437.357-.15.684-.357 1.055-.48.54-.179 1.127-.228 1.688-.302 1.041-.137 2.172-.29 3.21-.043.692.165 1.753.608 2.312 1.255.392.453.546 1.004.194 1.628-.159.282-.43.482-.67.69-.248.216-.507.42-.809.556-.47.213-.967.219-1.473.25-.848.054-1.672.035-2.522.027-1.035-.01-2.146.192-3.17.003Zm.033-.201c1.014.189 2.114-.016 3.14-.006.844.008 1.663.028 2.506-.026.48-.03.954-.03 1.401-.232.284-.128.526-.32.76-.523.222-.194.478-.376.625-.637.302-.536.166-1.008-.17-1.397-.532-.616-1.546-1.033-2.205-1.19-1.013-.24-2.118-.087-3.135.048-.549.072-1.123.118-1.65.293-.366.121-.688.328-1.04.475-.39.162-.852.203-1.212.422-.444.27-.553.714-.465 1.165.137.7.737 1.424 1.361 1.6l.073.006c.004 0 .007 0 .01.002Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="M19.81 14.676c-.087-.48-.514-.72-.956-.824-.817-.19-1.721-.031-2.52-.296a2.187 2.187 0 0 1-.929-.647c-.008-.01-.076-.11-.08-.109-.169.064-.22.317-.234.468-.101 1.076.384 2.377 1.468 2.803.896.352 1.9-.104 2.635-.606.213-.146.62-.4.698-.671l-.081-.118Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m19.907 14.636.07.1a.1.1 0 0 1 .014.086.845.845 0 0 1-.246.357c-.159.15-.362.28-.493.37-.761.52-1.803.981-2.73.617-1.127-.443-1.638-1.79-1.533-2.907.01-.102.035-.244.094-.357a.395.395 0 0 1 .207-.197.102.102 0 0 1 .117.031c.013.016.07.1.078.109a2.076 2.076 0 0 0 .882.614c.39.13.806.154 1.224.171.435.018.872.026 1.287.123.474.11.925.375 1.03.883Zm-4.606-1.697a.346.346 0 0 0-.055.1.902.902 0 0 0-.053.24c-.097 1.033.361 2.287 1.404 2.697.864.34 1.83-.11 2.54-.595.123-.085.316-.207.467-.35a.74.74 0 0 0 .174-.222l-.052-.075a.103.103 0 0 1-.016-.04c-.08-.437-.477-.649-.879-.743-.402-.093-.826-.1-1.248-.117-.438-.018-.873-.046-1.281-.182a2.285 2.285 0 0 1-.977-.68l-.024-.033Zm5.096 1.941c.164.283.447.468.72.638.251.156.502.316.796.38 1.342.291 2.973-.595 3.02-2.041.013-.357-.071-.731-.17-1.073a9.412 9.412 0 0 0-.106-.31c-.095.043-.13.306-.166.384a.788.788 0 0 1-.478.431c-1.136.383-2.423-.266-3.23.893a3.153 3.153 0 0 0-.35.611l-.036.087Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m20.302 14.841.036-.086c.092-.227.22-.43.361-.631.425-.611.975-.749 1.57-.781.556-.03 1.152.038 1.711-.15a.687.687 0 0 0 .417-.376c.025-.056.05-.201.096-.299a.27.27 0 0 1 .122-.137.095.095 0 0 1 .117.024.117.117 0 0 1 .024.041c.019.048.1.291.106.31.101.352.187.737.174 1.104-.05 1.51-1.745 2.441-3.145 2.138-.306-.067-.567-.231-.829-.394-.286-.178-.581-.376-.754-.674a.101.101 0 0 1-.006-.089Zm4.334-2.114c-.02.07-.036.138-.052.173a.89.89 0 0 1-.538.486c-.577.194-1.192.13-1.766.16-.534.029-1.03.145-1.412.693a3.07 3.07 0 0 0-.34.592l-.016.04c.158.245.414.408.66.56.24.15.48.306.763.368 1.284.278 2.85-.561 2.896-1.946.012-.346-.07-.71-.166-1.04l-.03-.086Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="M20.009 14.911c-.218.126-.274.524-.52.508-.373-.023-.601.113-.674.595-.02.142-.198.201-.335.249a.441.441 0 0 1-.138.022c-.023 0-.084-.015-.069.002.424.46 1 .763 1.647.608.688-.163 1.374-.929.984-1.63-.2-.357-.576-.107-.824-.295l-.071-.059Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="m20.075 14.833.069.057a.298.298 0 0 0 .154.054c.07.008.144.006.216.009.184.007.358.044.48.264.215.386.137.792-.094 1.123-.223.32-.59.567-.956.654-.685.164-1.298-.15-1.746-.638a.1.1 0 0 1-.029-.087.1.1 0 0 1 .053-.077.127.127 0 0 1 .06-.015c.015 0 .044.007.058.007a.347.347 0 0 0 .106-.018.887.887 0 0 0 .192-.08c.037-.021.07-.046.076-.087.041-.274.133-.447.26-.55.132-.106.305-.145.521-.131.041.002.072-.02.1-.048a.71.71 0 0 0 .078-.106c.08-.127.162-.27.284-.341a.103.103 0 0 1 .117.01Zm-1.58 1.532c.38.349.864.56 1.401.432.32-.077.641-.294.836-.573.187-.268.257-.596.082-.91-.096-.172-.25-.157-.396-.16-.143-.002-.283-.014-.4-.103l-.004-.003-.008-.007a.636.636 0 0 0-.074.095c-.046.069-.088.145-.134.207-.082.113-.18.187-.315.178-.157-.01-.284.008-.378.085-.098.079-.157.215-.188.423a.306.306 0 0 1-.127.2 1.017 1.017 0 0 1-.295.136Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.334 12.1c-.586-.008-1.269.131-1.72.607-.606.642-.473 1.471.392 1.776.32.113.68.113 1.016.12.639.012 1.567-.174 1.924-.77.506-.846-.685-1.718-1.612-1.732Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.336 11.999c.586.01 1.271.344 1.61.803.24.323.314.706.088 1.083-.153.256-.403.443-.694.573-.42.187-.924.254-1.32.246-.347-.007-.718-.009-1.048-.125-.473-.167-.742-.481-.814-.838-.071-.353.052-.755.382-1.103.47-.498 1.183-.648 1.796-.639Zm-.003.204c-.56-.009-1.214.12-1.644.574-.277.293-.39.627-.33.925.06.295.29.547.681.685.31.11.659.107.984.114.37.007.84-.054 1.232-.23.251-.111.47-.27.602-.49.179-.299.114-.602-.076-.858-.306-.413-.923-.712-1.45-.72Z" clip-rule="evenodd"/>
<path fill="#000" fill-rule="evenodd" d="M17.27 11.564a.103.103 0 0 1-.144.002.102.102 0 0 1-.003-.144c.432-.44.978-.368 1.433-.012a.102.102 0 0 1 .017.143.103.103 0 0 1-.144.016c-.368-.287-.81-.361-1.159-.005Zm4.983-.15a.103.103 0 0 1-.143.024.101.101 0 0 1-.024-.142.787.787 0 0 1 .456-.33c.362-.087.76.156 1.025.475a.102.102 0 0 1-.014.144.103.103 0 0 1-.145-.014c-.214-.258-.525-.477-.819-.407a.589.589 0 0 0-.336.25Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="M27.4 5.999c-.197.426-.134.93-.025 1.371.109.441.245.94.552 1.289.696.79 1.998.938 2.809.26.579-.485.445-1.327.225-1.963-.173-.501-.466-1.044-.903-1.37-.573-.427-1.619-.507-2.3-.3l-.358.713Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="m27.308 5.953.358-.712a.104.104 0 0 1 .062-.052c.709-.215 1.795-.129 2.392.316.453.338.759.898.938 1.418.114.33.204.712.192 1.074-.012.38-.135.737-.448 1-.852.712-2.221.559-2.952-.271-.318-.361-.462-.876-.575-1.331-.114-.463-.175-.992.031-1.439l.002-.003Zm.184.09c-.186.404-.121.884-.018 1.303.106.426.234.909.53 1.246.66.75 1.896.893 2.666.249.266-.223.365-.528.376-.85.01-.339-.076-.695-.182-1.002-.166-.483-.447-1.008-.867-1.32-.54-.403-1.513-.48-2.168-.298l-.337.672Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="M14.258 8.1c.812-.77 2.05-1.101 3.117-1.296 1.835-.333 3.73-.484 5.582-.151.908.163 1.738.538 2.597.856.16.06.332.117.468.223.052.04.186.218.24.18.23-.162.175-.555.132-.79-.17-.915-1.035-1.198-1.636-1.777-.139-.134-.72-.59-.444-.822.214-.18.58-.059.778.08.662.466 1.126 1.27 2.012 1.399.395.057.998-.339.899-.777-.057-.248-.281-.443-.429-.64-.376-.499-.805-.944-1.187-1.433-.358-.457-.551-.979-1.002-1.372-.437-.383-1.03-.535-1.503-.871-.402-.286-.634-.714-1.165-.798-.582-.092-1.246.516-1.76.719-.415.163-.876.217-1.271.426-.386.204-.646.58-.988.846-.312.241-.713.358-1.01.62-.62.55-1.355 1.765-1.74 2.501-.31.597-.965.795-1.434 1.217-.426.383-.557 1.188-.39 1.725l.134-.064Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="m14.303 8.193-.135.063a.103.103 0 0 1-.142-.062c-.177-.57-.033-1.423.42-1.83.237-.214.522-.372.787-.55.247-.168.477-.355.624-.637.39-.746 1.136-1.974 1.764-2.53.298-.265.7-.382 1.014-.626.346-.27.612-.648 1.002-.855.399-.211.863-.266 1.281-.43.308-.121.668-.388 1.032-.562.264-.126.531-.203.783-.163.287.045.494.182.683.347.171.151.327.327.525.468.476.338 1.072.492 1.512.877.456.399.652.924 1.015 1.387.382.489.812.934 1.188 1.434.074.098.166.195.248.299a1 1 0 0 1 .199.38c.047.208-.034.41-.185.57-.213.228-.564.368-.83.33-.463-.068-.818-.31-1.143-.598-.306-.273-.585-.588-.913-.819a.852.852 0 0 0-.415-.151.328.328 0 0 0-.237.066c-.07.058-.033.138.018.22.117.187.351.374.432.451.298.287.663.501.973.757.33.272.602.59.691 1.075.028.15.06.362.027.544a.511.511 0 0 1-.2.346c-.037.027-.085.034-.14.01a.43.43 0 0 1-.117-.086c-.042-.04-.082-.088-.105-.106-.128-.1-.29-.152-.44-.208-.854-.316-1.678-.69-2.58-.851-1.84-.331-3.722-.18-5.545.152-1.048.19-2.267.512-3.065 1.27a.107.107 0 0 1-.027.018Zm-.104-.177c.826-.777 2.078-1.115 3.158-1.312 1.847-.335 3.753-.486 5.619-.152.913.165 1.749.541 2.614.861.17.063.35.126.495.238.023.018.061.06.102.101a.694.694 0 0 0 .051.046.347.347 0 0 0 .081-.184 1.415 1.415 0 0 0-.026-.474c-.08-.43-.326-.712-.62-.955-.315-.259-.684-.476-.986-.767-.087-.083-.337-.288-.463-.49-.111-.179-.128-.355.023-.483a.534.534 0 0 1 .382-.114c.19.01.39.096.522.19.334.235.619.554.931.832.295.262.615.487 1.036.548.21.03.482-.087.65-.266.103-.11.167-.246.135-.388a.778.778 0 0 0-.161-.299c-.082-.105-.176-.203-.25-.302-.376-.499-.804-.943-1.186-1.431-.354-.453-.543-.97-.988-1.36-.435-.38-1.026-.53-1.496-.863-.204-.145-.365-.326-.542-.481-.16-.14-.335-.26-.58-.3-.27-.042-.557.084-.839.238-.307.168-.606.373-.867.476-.411.162-.868.213-1.26.42-.38.202-.636.575-.973.837-.31.24-.709.355-1.004.616-.613.543-1.338 1.744-1.718 2.472-.163.315-.416.525-.69.711-.258.174-.535.326-.766.534-.37.333-.5 1.006-.391 1.505l.008-.004Z" clip-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 54 KiB

72
images/santa/santa-12.svg Normal file
View File

@ -0,0 +1,72 @@
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="108" fill="none" viewBox="0 0 42 108">
<path fill="#3F1A0A" fill-rule="evenodd" d="M16.25 102.452c-.081.622.082 1.277-.101 1.888a7.304 7.304 0 0 1-.473 1.224c-.184.356-.468.681-.546 1.086-.032.168.014.351.02.52.003.15-.027.337.04.477.233.486 1.002.33 1.432.327 1.04-.008 2.077.004 3.108-.137.389-.052.887-.061 1.2-.333.288-.252.133-.692.09-1.016-.067-.483.031-1.1-.18-1.55-.117-.249-.355-.393-.514-.611-.36-.496-.01-.825-.056-1.354-.002-.025-.063-.495-.11-.505-.292-.067-.628-.022-.927-.034-1.017-.041-2.023.075-3.043.025l.06-.007Zm6.205-.383c-.085.574.085 1.161-.004 1.733-.042.268-.23.475-.32.726a4.92 4.92 0 0 0-.25 2.213c.035.293.112.656.384.831.696.45 2.016.112 2.808.138.638.022 1.26.04 1.897-.008.265-.02.566.031.754-.195.61-.737-.28-1.789-.529-2.487-.103-.29-.194-.592-.343-.864-.137-.249-.354-.461-.466-.723-.102-.239-.1-.496-.123-.749a10.313 10.313 0 0 1-.042-.768c0-.052.027-.204-.022-.239-.216-.152-.796.092-1.028.12-.905.11-1.823.22-2.736.236l.02.036Z" clip-rule="evenodd"/>
<path fill="#F1D88E" fill-rule="evenodd" d="M16.894 103.278c.36.016.733-.034 1.106-.073.419-.044.838-.073 1.24.012a.108.108 0 0 1 .082.089c.01.052.022.306.024.325.017.186 0 .382-.013.576a1.7 1.7 0 0 0 .025.52.126.126 0 0 1-.029.124.142.142 0 0 1-.097.042.52.52 0 0 1-.125-.014c-.048-.011-.1-.026-.135-.026-.188-.001-.375-.002-.563 0-.51.005-1.096.143-1.6.091a.106.106 0 0 1-.095-.098c-.005-.051 0-.302 0-.319 0-.354.005-.711.036-1.065a.102.102 0 0 1 .05-.19h.062a.09.09 0 0 1 .032.006Zm.06.205c-.03.347-.035.697-.036 1.045v.221c.477.028 1.015-.095 1.49-.1.188-.002.376-.001.565 0a.766.766 0 0 1 .166.028 2.215 2.215 0 0 1-.01-.482c.01-.184.03-.369.013-.545a42.344 42.344 0 0 1-.017-.248c-.36-.063-.731-.034-1.104.005-.359.038-.719.085-1.067.076Zm6.319-.296v-.001l-.066-.194a.102.102 0 0 1 .1-.135c.608.021 1.216.009 1.824.017.078.001.32-.024.486-.006.103.011.182.045.22.088.018.022.04.074.045.149.014.18-.026.55-.024.614.008.26.062.514.078.772a.111.111 0 0 1-.063.115.153.153 0 0 1-.093.014c-.028-.002-.065-.016-.088-.014-.146.007-.29.019-.436.031-.642.054-1.29-.07-1.925.022a.096.096 0 0 1-.097-.039c-.003-.005-.023-.031-.02-.078.002-.081.046-.491.05-.514.058-.288-.004-.554.01-.841Zm.153 1.256c.6-.063 1.209.042 1.813-.008.147-.013.294-.025.442-.033l.043.003c-.021-.226-.064-.45-.07-.68-.003-.055.028-.344.026-.536a.989.989 0 0 0-.007-.102.6.6 0 0 0-.144-.021c-.154-.006-.336.013-.401.012-.56-.007-1.12.002-1.68-.013l.026.075a.097.097 0 0 1 .005.038c-.018.305.047.585-.013.889a10.2 10.2 0 0 0-.04.376Z" clip-rule="evenodd"/>
<path fill="#fff" fill-rule="evenodd" d="M15.075 100.006c-.096.3-.111.547-.046.855.088.414.21.851.535 1.151.114.105.26.136.399.193.521.214.984.2 1.542.231.34.019.679.052 1.02.062.488.016.922-.008 1.403-.062.23-.026.489-.044.677-.192.143-.113.194-.286.27-.443.09-.189.133-.377.198-.573.106-.32.216-.574.135-.913-.034-.145-.034-.588-.244-.602-.25-.017-.537.126-.79.148-.786.067-1.58.127-2.37.108a38.875 38.875 0 0 1-2.409-.116c-.236-.021-.487 0-.72-.042m7.447-.21c-.052.088-.322.08-.363.204-.159.478-.187 1.207.32 1.834.186.231.095.386.402.451.288.062.93.059 1.215.02.457-.062.964-.044 1.418-.131.472-.091 1.09-.072 1.455-.415.468-.441.705-.974.741-1.604.011-.19-.155-.689-.39-.79" clip-rule="evenodd"/>
<path fill="#600C13" fill-rule="evenodd" d="M12.714 95.132c.015.404.282 1.475.46 1.824.137.264.232.544.378.805.087.156.12.332.2.49.212.427.491.864.78 1.242.123.163.214.358.385.478.453.319 1.137.169 1.652.173 1.28.013 2.557.094 3.826-.104a.855.855 0 0 0 .547-.387c.09-.155.173-.43.393-.434.247-.004.375.261.543.396.166.132.382.164.586.188.6.073 1.26.12 1.862.058.342-.036 1.798-.183 2.172-.304.296-.096 1.092-.466 1.242-.517.313-.107.608-.372.858-.581.572-.478.579-1.052.643-1.719.055-.568.132-1.126.174-1.696l-16.7.088Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.888 92.766c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.401 7.694-.147.835-.196 5.068-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.092-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.839 92.676c.023-.044.07-.132.115-.234.407-.906 1.46-3.717 1.566-5.818.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.01.094-.417 1.023-1.763 2.002-2.65 2.564-1.19.753-5.443 2.227-6.283 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.044-.103a.102.102 0 0 1 .053-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.252-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.397.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.73 89.907c.242.4.826.722 1.305 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.164 1.8.345 2.717.418.781.061 1.568.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475a16.43 16.43 0 0 0 1.603-1.472c.231-.239.222-.246.409-.522.262-.388-.296-1.324-.346-1.274-.269.262-2.21 1.3-3.04 1.87-2.095 1.436-4.816 1.8-7.297 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.278 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.642 89.96c-.064-.105-.086-.277-.073-.474a3.08 3.08 0 0 1 .18-.805c.045-.12.093-.214.134-.267a.214.214 0 0 1 .09-.072.155.155 0 0 1 .083-.001c.053.011.16.06.308.137.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.599 3.027-1.86a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.513.513 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.191.283-.183.29-.42.536a16.76 16.76 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.678-.78-.064-1.566-.024-2.347-.086-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.827-.403-.766-.3-1.477-.829-2.112-1.338-.489-.392-1.08-.723-1.328-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.972 1.815-2.11 1.447-4.85 1.817-7.349 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.056 3.056 0 0 0-.23-.108l-.012.017a1.2 1.2 0 0 0-.084.185c-.078.208-.15.5-.167.748-.01.147-.004.277.043.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.79.393.899.163 1.792.344 2.706.416.782.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.546 16.546 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.225-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.067 91.28a.557.557 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .433.054.553.127a.555.555 0 0 1 .252.33c.026.088.046.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308 0-1.007.125-1.513.145-.335.014-.612-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.046.01.12.014.19.096.001.217 0 .313-.008.496-.04 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.008.233.014.346.01l.007-.185c.047-.504.067-.983.002-1.487l-.001-.015c-.201.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 85.326c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 85.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.617a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.108c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 82.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 82.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.599 3.027-1.86a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.865-6.14.677-.78-.064-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.403-.765-.3-1.476-.829-2.11-1.338-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.147-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 83.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.013-.613-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.007.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 78.326c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 78.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.617a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.108c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 75.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 75.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.599 3.027-1.86a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.865-6.14.677-.78-.064-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.403-.765-.3-1.476-.829-2.11-1.338-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.147-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 76.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.013-.613-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.007.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 70.326c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 70.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.617a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.108c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 67.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 67.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.599 3.027-1.86a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.865-6.14.677-.78-.064-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.403-.765-.3-1.476-.829-2.11-1.338-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.147-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 68.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.013-.613-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.007.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 62.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 62.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 59.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 59.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 60.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.013-.613-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 54.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 54.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 51.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 51.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 52.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 46.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 46.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 43.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 43.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 44.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 38.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 38.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 35.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 35.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 36.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 30.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 30.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 27.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 27.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.358 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859.026-.026.062-.04.11-.026a.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.277.044.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.478-.06-.225-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 28.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.134.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M4.342 22.636c-.95.555-1.382.26-2.408.157-.374-.037-1.026-.106-1.308.217-.696.8 1.275.963 1.636 1.058 0 0-.187.272-.207.297a3.348 3.348 0 0 1-.515.513c-.615.49-1.51.854-1.433 1.789.143 1.716 1.82 2.34 3.239 1.496.915-.544 1.619-1.975 2.703-2.653l-1.707-2.874Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M2.09 24.136c-.32-.058-.954-.15-1.34-.345-.218-.11-.359-.259-.373-.436-.009-.119.037-.257.172-.412.127-.147.32-.225.535-.26.294-.048.629-.014.86.01.411.04.728.112 1.02.148.417.051.782.025 1.326-.293a.103.103 0 0 1 .14.036l1.707 2.875a.101.101 0 0 1-.033.138c-.534.333-.972.852-1.391 1.355-.434.52-.848 1.021-1.315 1.298-.74.44-1.55.495-2.19.218-.646-.278-1.128-.89-1.203-1.793-.042-.503.175-.854.489-1.144.293-.27.672-.485.982-.732a3.27 3.27 0 0 0 .5-.498l.115-.165Zm2.215-1.362c-.548.3-.932.322-1.366.27-.291-.037-.606-.108-1.016-.15-.216-.02-.53-.055-.806-.01-.164.026-.315.08-.413.192-.088.101-.128.186-.122.263.009.116.119.198.262.27.445.227 1.23.304 1.444.36.037.01.073.034.076.093 0 .004.005.027-.014.058l-.008.012a15.25 15.25 0 0 1-.207.296 3.418 3.418 0 0 1-.53.529c-.307.244-.682.456-.971.723-.27.249-.46.547-.425.979.068.814.497 1.37 1.08 1.622.587.254 1.326.198 2.004-.205.449-.267.844-.753 1.262-1.254.41-.492.842-.999 1.356-1.344l-1.606-2.704Zm30.905 2.293c.459.427.765.995 1.21 1.44.544.544 1.374.985 2.104 1.232 1.393.472 2.669-.854 2.574-2.212-.058-.82-.752-1.181-1.39-1.562a3.589 3.589 0 0 0-.056-.033l-.082-.048a6.307 6.307 0 0 1-.64-.445c-.027-.021-.105-.04-.08-.064.371-.385 1.144-.279 1.379-.876.162-.412-.345-.75-.689-.786-.522-.056-1.122.249-1.658.289-.636.048-1.196-.165-1.814-.225l-.858 3.29Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M39.009 23.37c.195.152.402.3.614.427l.081.048c.02.01.038.022.057.033.325.194.664.384.93.63.278.257.478.574.509 1.012.1 1.427-1.246 2.81-2.71 2.316-.743-.252-1.588-.703-2.143-1.258-.444-.443-.75-1.01-1.207-1.437a.102.102 0 0 1-.03-.1l.859-3.29a.102.102 0 0 1 .109-.075c.612.06 1.166.272 1.796.225.262-.02.54-.105.816-.178.295-.077.588-.14.861-.111.23.025.526.17.686.381a.538.538 0 0 1 .087.543c-.13.33-.402.47-.699.576-.215.077-.444.133-.616.259Zm-.14.15a.617.617 0 0 1-.073-.038.129.129 0 0 1-.043-.05c-.02-.04-.02-.084.022-.128.197-.203.497-.282.78-.383.242-.087.473-.191.578-.46.065-.163-.01-.31-.13-.422a.881.881 0 0 0-.474-.224c-.25-.027-.517.034-.787.105-.288.076-.578.163-.852.184-.613.045-1.155-.145-1.745-.216l-.82 3.147c.435.422.737.97 1.168 1.4.533.534 1.348.966 2.064 1.208 1.323.448 2.529-.818 2.438-2.109-.026-.38-.202-.654-.444-.878-.256-.235-.583-.417-.896-.603a27.084 27.084 0 0 0-.055-.033l-.083-.049a6.381 6.381 0 0 1-.648-.45Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M10.416 24.074c.216.02.317.453.31.603-.005.128 20.129.036 20.133-.092.006-.169.132-.489.22-.48.302.028.738.536.982.71.63.45 1.325.836 2.035 1.149.101.045 1.005.367 1.029.349.43-.339.646-1.33.878-1.795.225-.45.386-.934.557-1.407.178-.49.336-1.029.614-1.474.09-.144.358-.388.251-.552-.281-.432-.906-.423-1.34-.584-.878-.325-3.696-1.168-4.693-1.883-.485-.348-2.249-1.573-2.712-1.952-.181-.148-.53-.52-.764-.54-.75-.069-14.506-.063-14.661-.022-.627.164-1.409 1.16-1.919 1.572-1.587 1.284-3.4 2.405-5.178 3.406-.586.33-1.214.603-1.83.876a8.727 8.727 0 0 1-.593.237c-.102.037-.343 0-.309.103.045.136 1.055 1.605 1.184 1.797.284.421.52.867.77 1.307.22.388.495.747.723 1.131.075.126.155.25.21.386.028.07.032.273.079.213.756-.964 1.981-1.427 3.009-2.122.1-.068.94-.942 1.015-.936Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M31.095 24.21a.493.493 0 0 0-.04.059.869.869 0 0 0-.094.32c0 .023-.008.07-.068.094-.026.01-.163.024-.397.034-2.137.086-13.041.148-17.68.114-1.167-.009-1.94-.024-2.082-.046-.065-.01-.09-.045-.096-.056a.1.1 0 0 1-.014-.056.885.885 0 0 0-.094-.374.347.347 0 0 0-.068-.094.127.127 0 0 0-.032-.023 1.264 1.264 0 0 0-.071.058c-.26.224-.819.799-.9.854-1.019.689-2.236 1.145-2.986 2.1a.12.12 0 0 1-.09.05.109.109 0 0 1-.083-.029.201.201 0 0 1-.05-.1c-.012-.048-.018-.122-.033-.158-.052-.132-.13-.25-.202-.372-.229-.385-.504-.745-.724-1.133-.25-.438-.484-.882-.766-1.3-.131-.195-1.15-1.685-1.196-1.823a.144.144 0 0 1 0-.097.152.152 0 0 1 .09-.089.498.498 0 0 1 .136-.026c.051-.004.109-.004.145-.017.198-.072.394-.15.587-.235.612-.271 1.238-.543 1.82-.871 1.774-.999 3.581-2.117 5.165-3.397.305-.246.707-.703 1.115-1.063.287-.254.578-.46.841-.529.017-.004.177-.011.454-.014 2.35-.03 13.568-.029 14.243.033.108.01.24.08.37.177.17.126.34.297.45.387.462.377 2.223 1.6 2.707 1.948.992.711 3.796 1.546 4.67 1.87.214.08.476.117.72.188.269.078.515.198.67.436.061.095.048.21-.012.326-.064.122-.184.247-.239.334-.274.44-.43.973-.604 1.456-.173.477-.335.963-.562 1.417-.14.278-.272.745-.448 1.146-.126.286-.276.54-.459.683-.009.008-.05.032-.119.016a14.84 14.84 0 0 1-1.014-.351A11.68 11.68 0 0 1 32 24.898c-.147-.105-.364-.331-.58-.501-.115-.091-.227-.168-.326-.188ZM3.552 22.322c.173.304 1.026 1.54 1.144 1.716.285.422.521.87.773 1.313.22.387.495.745.723 1.13.077.13.16.259.216.4l.015.052c.768-.882 1.933-1.34 2.92-2.008.08-.054.627-.62.88-.84a.73.73 0 0 1 .138-.1.128.128 0 0 1 .064-.013c.118.01.218.102.286.232.064.121.101.274.113.385.235.018.957.03 1.994.037 4.635.034 15.534-.027 17.67-.114.114-.004.217-.012.278-.017.023-.128.08-.287.142-.379.056-.085.129-.119.18-.114.137.013.3.107.46.234.213.169.427.392.573.496a11.46 11.46 0 0 0 2.017 1.138c.086.038.76.28.957.333.145-.13.26-.343.364-.576.178-.405.312-.875.452-1.155.224-.448.383-.926.553-1.396.18-.496.341-1.043.623-1.494.053-.084.17-.204.23-.322.024-.043.046-.085.022-.12-.127-.196-.334-.287-.556-.352-.248-.073-.515-.11-.733-.192-.883-.328-3.715-1.177-4.718-1.896-.486-.349-2.253-1.577-2.717-1.956-.108-.088-.275-.257-.443-.381-.095-.071-.187-.13-.266-.137-.674-.062-11.875-.063-14.222-.033a17.4 17.4 0 0 0-.41.01c-.236.064-.493.254-.75.482-.411.363-.816.821-1.123 1.07-1.592 1.286-3.41 2.41-5.192 3.415-.589.331-1.22.606-1.839.88a9.08 9.08 0 0 1-.6.24.728.728 0 0 1-.168.027.555.555 0 0 0-.05.005Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.822 14.371c-1.011.54-1.821 1.515-1.27 2.67.132.275.351.483.596.66.016.012.29.16.288.171-.033.288-.272.595-.367.866-.262.743.098 1.715.679 2.236.226.203.511.322.807.384.037.008.44.044.443.054.223.689-.305 1.761.527 2.288.679.43 1.913-.08 2.043-.011.062.032.175.334.264.415.582.523 1.643.924 2.414.679.422-.134.796-.525 1.008-.903.008-.014.055-.13.064-.13.243 0 .505.13.747.166.85.125 1.761-.177 2.328-.836.243-.282.429-.611.406-.995-.012-.201-.316-.41-.197-.573.295-.407 1.162-.089 1.63-1.017.375-.743.54-1.598.264-2.396a1.424 1.424 0 0 0-.322-.536c-.015-.016-.212-.163-.21-.17.106-.569 1.404-.712.857-2.276-.163-.469-.374-.88-.835-1.114a3.076 3.076 0 0 0-.633-.243c-.013-.004-.207-.043-.207-.049.03-.615.315-1.068.189-1.738-.154-.81-.708-1.467-.749-2.306-.034-.706.695-1.396.093-1.953-.564-.521-1.442-.601-2.16-.77-2.137-.5-4.244-.396-6.387.134-.26.064-2.422.651-2.54.879-.17.324.103.868.056 1.222-.056.42-.306.783-.305 1.215.001.617.302 1.152.413 1.748.136.725.106 1.516.136 2.256l-.07-.027Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.785 14.277c-.023-.699-.003-1.437-.13-2.117-.112-.601-.413-1.143-.415-1.765 0-.229.064-.439.137-.647.068-.19.143-.38.17-.583.027-.204-.06-.474-.097-.725-.028-.197-.026-.383.05-.53a.252.252 0 0 1 .072-.079 1.34 1.34 0 0 1 .264-.14c.627-.27 2.062-.66 2.271-.711 2.16-.534 4.283-.64 6.436-.134.733.171 1.63.26 2.206.794.335.31.31.656.195 1.025-.1.32-.272.656-.255.997.02.407.165.769.323 1.128.166.377.345.752.423 1.165.067.35.026.643-.036.93-.052.242-.121.48-.145.748l.125.028a3.2 3.2 0 0 1 .654.251c.485.248.713.678.885 1.172.174.498.168.86.077 1.138-.092.282-.272.481-.457.65-.113.103-.227.194-.318.286a.593.593 0 0 0-.14.199c.057.044.157.124.168.134.158.16.273.364.345.575.284.825.117 1.707-.27 2.475-.299.593-.749.712-1.131.803-.114.028-.221.052-.314.09a.415.415 0 0 0-.193.137c-.014.02-.008.04 0 .063a.541.541 0 0 0 .053.095c.072.113.157.234.164.35.024.411-.171.766-.43 1.067-.59.686-1.538 1-2.423.87-.217-.032-.45-.143-.67-.162l-.036.076c-.224.398-.62.808-1.066.95-.803.255-1.908-.156-2.514-.701-.06-.053-.131-.193-.192-.306a1.408 1.408 0 0 0-.052-.088.778.778 0 0 0-.047.005c-.064.01-.15.03-.252.052-.277.06-.663.143-1.033.133-.26-.007-.512-.06-.717-.189-.45-.285-.54-.715-.54-1.17 0-.384.07-.788-.012-1.113-.108-.012-.358-.04-.384-.045a1.828 1.828 0 0 1-.855-.409c-.608-.546-.98-1.566-.707-2.344.049-.14.135-.289.213-.44.059-.115.114-.23.139-.343-.076-.044-.226-.13-.237-.139-.258-.187-.488-.408-.627-.699-.578-1.21.254-2.238 1.314-2.802l.01-.005Zm-.104-6.27c-.073.144-.043.336-.006.531.043.232.1.468.075.654-.029.217-.107.42-.18.623-.065.187-.125.375-.125.58.002.61.302 1.138.412 1.728.136.73.107 1.526.137 2.27a.102.102 0 0 1-.14.1l-.024-.01c-.946.518-1.703 1.43-1.185 2.514.124.26.333.455.563.622.015.01.238.133.282.165.053.039.05.088.048.1-.018.155-.09.316-.171.474-.074.142-.155.282-.202.414-.248.707.099 1.63.652 2.126.213.19.48.302.76.36.032.008.36.037.428.05.069.013.088.063.09.073.115.353.04.805.04 1.236 0 .385.063.755.445.997.175.111.39.152.612.158.352.01.72-.071.984-.13.141-.03.255-.055.324-.06a.219.219 0 0 1 .116.017c.028.015.07.06.109.128.055.096.119.25.176.301.558.502 1.574.893 2.314.658.399-.127.749-.499.95-.855.007-.015.052-.12.068-.14a.104.104 0 0 1 .085-.043c.248 0 .515.13.762.167.816.12 1.691-.168 2.235-.8.226-.263.403-.567.382-.924a.31.31 0 0 0-.056-.135c-.037-.061-.082-.122-.114-.18-.064-.116-.08-.226-.008-.324.13-.18.36-.242.625-.305.335-.08.734-.177.996-.698.363-.719.525-1.545.26-2.318a1.326 1.326 0 0 0-.299-.497c-.014-.015-.173-.133-.203-.162a.105.105 0 0 1-.035-.098.635.635 0 0 1 .153-.295c.1-.118.243-.229.384-.358.16-.145.32-.317.4-.561.08-.248.079-.568-.075-1.01-.155-.443-.35-.835-.786-1.056a2.982 2.982 0 0 0-.611-.236c-.013-.003-.177-.037-.21-.048a.103.103 0 0 1-.074-.104c.015-.313.095-.586.155-.864.056-.262.095-.53.035-.85-.075-.397-.25-.757-.41-1.12-.168-.382-.32-.768-.34-1.2-.018-.365.158-.726.264-1.067.09-.292.127-.57-.14-.816-.55-.51-1.411-.58-2.112-.745-2.121-.497-4.212-.393-6.34.133-.18.044-1.288.344-1.977.597a3.4 3.4 0 0 0-.414.176.677.677 0 0 0-.084.057Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="M16.65 13.644c1.02.19 2.127-.014 3.157-.004.847.008 1.669.027 2.515-.026.492-.031.978-.034 1.437-.241.293-.133.543-.33.784-.54.231-.201.494-.392.647-.664.818-1.45-1.314-2.466-2.44-2.735-1.025-.244-2.143-.09-3.173.046-.555.073-1.136.12-1.669.298-.367.122-.693.329-1.048.477-.393.164-.86.207-1.225.43-1.211.738-.167 2.65.932 2.952l.082.007Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="m16.636 13.745-.078-.007a.088.088 0 0 1-.018-.003c-.691-.19-1.365-.985-1.517-1.76-.105-.534.033-1.057.559-1.377.369-.225.84-.27 1.239-.437.357-.15.684-.357 1.055-.48.54-.179 1.127-.228 1.688-.302 1.041-.137 2.172-.29 3.21-.043.692.165 1.753.608 2.312 1.255.392.453.546 1.004.194 1.628-.159.282-.43.482-.67.69-.248.216-.507.42-.809.556-.47.213-.967.219-1.473.25-.848.054-1.672.035-2.522.027-1.035-.01-2.146.192-3.17.003Zm.033-.201c1.014.189 2.114-.016 3.14-.006.844.008 1.663.028 2.506-.026.48-.03.954-.03 1.401-.232.284-.128.526-.32.76-.523.222-.194.478-.376.625-.637.302-.536.166-1.008-.17-1.397-.532-.616-1.546-1.033-2.205-1.19-1.013-.24-2.118-.087-3.135.048-.549.072-1.123.118-1.65.293-.366.121-.688.328-1.04.475-.39.162-.852.203-1.212.422-.444.27-.553.714-.465 1.165.137.7.737 1.424 1.361 1.6l.073.006c.004 0 .007 0 .01.002Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="M19.81 14.676c-.087-.48-.514-.72-.956-.824-.817-.19-1.721-.031-2.52-.296a2.187 2.187 0 0 1-.929-.647c-.008-.01-.076-.11-.08-.109-.169.064-.22.317-.234.468-.101 1.076.384 2.377 1.468 2.803.896.352 1.9-.104 2.635-.606.213-.146.62-.4.698-.671l-.081-.118Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m19.907 14.636.07.1a.1.1 0 0 1 .014.086.845.845 0 0 1-.246.357c-.159.15-.362.28-.493.37-.761.52-1.803.981-2.73.617-1.127-.443-1.638-1.79-1.533-2.907.01-.102.035-.244.094-.357a.395.395 0 0 1 .207-.197.102.102 0 0 1 .117.031c.013.016.07.1.078.109a2.076 2.076 0 0 0 .882.614c.39.13.806.154 1.224.171.435.018.872.026 1.287.123.474.11.925.375 1.03.883Zm-4.606-1.697a.346.346 0 0 0-.055.1.902.902 0 0 0-.053.24c-.097 1.033.361 2.287 1.404 2.697.864.34 1.83-.11 2.54-.595.123-.085.316-.207.467-.35a.74.74 0 0 0 .174-.222l-.052-.075a.103.103 0 0 1-.016-.04c-.08-.437-.477-.649-.879-.743-.402-.093-.826-.1-1.248-.117-.438-.018-.873-.046-1.281-.182a2.285 2.285 0 0 1-.977-.68l-.024-.033Zm5.096 1.941c.164.283.447.468.72.638.251.156.502.316.796.38 1.342.291 2.973-.595 3.02-2.041.013-.357-.071-.731-.17-1.073a9.412 9.412 0 0 0-.106-.31c-.095.043-.13.306-.166.384a.788.788 0 0 1-.478.431c-1.136.383-2.423-.266-3.23.893a3.153 3.153 0 0 0-.35.611l-.036.087Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m20.302 14.841.036-.086c.092-.227.22-.43.361-.631.425-.611.975-.749 1.57-.781.556-.03 1.152.038 1.711-.15a.687.687 0 0 0 .417-.376c.025-.056.05-.201.096-.299a.27.27 0 0 1 .122-.137.095.095 0 0 1 .117.024.117.117 0 0 1 .024.041c.019.048.1.291.106.31.101.352.187.737.174 1.104-.05 1.51-1.745 2.441-3.145 2.138-.306-.067-.567-.231-.829-.394-.286-.178-.581-.376-.754-.674a.101.101 0 0 1-.006-.089Zm4.334-2.114c-.02.07-.036.138-.052.173a.89.89 0 0 1-.538.486c-.577.194-1.192.13-1.766.16-.534.029-1.03.145-1.412.693a3.07 3.07 0 0 0-.34.592l-.016.04c.158.245.414.408.66.56.24.15.48.306.763.368 1.284.278 2.85-.561 2.896-1.946.012-.346-.07-.71-.166-1.04l-.03-.086Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="M20.009 14.911c-.218.126-.274.524-.52.508-.373-.023-.601.113-.674.595-.02.142-.198.201-.335.249a.441.441 0 0 1-.138.022c-.023 0-.084-.015-.069.002.424.46 1 .763 1.647.608.688-.163 1.374-.929.984-1.63-.2-.357-.576-.107-.824-.295l-.071-.059Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="m20.075 14.833.069.057a.298.298 0 0 0 .154.054c.07.008.144.006.216.009.184.007.358.044.48.264.215.386.137.792-.094 1.123-.223.32-.59.567-.956.654-.685.164-1.298-.15-1.746-.638a.1.1 0 0 1-.029-.087.1.1 0 0 1 .053-.077.127.127 0 0 1 .06-.015c.015 0 .044.007.058.007a.347.347 0 0 0 .106-.018.887.887 0 0 0 .192-.08c.037-.021.07-.046.076-.087.041-.274.133-.447.26-.55.132-.106.305-.145.521-.131.041.002.072-.02.1-.048a.71.71 0 0 0 .078-.106c.08-.127.162-.27.284-.341a.103.103 0 0 1 .117.01Zm-1.58 1.532c.38.349.864.56 1.401.432.32-.077.641-.294.836-.573.187-.268.257-.596.082-.91-.096-.172-.25-.157-.396-.16-.143-.002-.283-.014-.4-.103l-.004-.003-.008-.007a.636.636 0 0 0-.074.095c-.046.069-.088.145-.134.207-.082.113-.18.187-.315.178-.157-.01-.284.008-.378.085-.098.079-.157.215-.188.423a.306.306 0 0 1-.127.2 1.017 1.017 0 0 1-.295.136Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.334 12.1c-.586-.008-1.269.131-1.72.607-.606.642-.473 1.471.392 1.776.32.113.68.113 1.016.12.639.012 1.567-.174 1.924-.77.506-.846-.685-1.718-1.612-1.732Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.336 11.999c.586.01 1.271.344 1.61.803.24.323.314.706.088 1.083-.153.256-.403.443-.694.573-.42.187-.924.254-1.32.246-.347-.007-.718-.009-1.048-.125-.473-.167-.742-.481-.814-.838-.071-.353.052-.755.382-1.103.47-.498 1.183-.648 1.796-.639Zm-.003.204c-.56-.009-1.214.12-1.644.574-.277.293-.39.627-.33.925.06.295.29.547.681.685.31.11.659.107.984.114.37.007.84-.054 1.232-.23.251-.111.47-.27.602-.49.179-.299.114-.602-.076-.858-.306-.413-.923-.712-1.45-.72Z" clip-rule="evenodd"/>
<path fill="#000" fill-rule="evenodd" d="M17.27 11.564a.103.103 0 0 1-.144.002.102.102 0 0 1-.003-.144c.432-.44.978-.368 1.433-.012a.102.102 0 0 1 .017.143.103.103 0 0 1-.144.016c-.368-.287-.81-.361-1.159-.005Zm4.983-.15a.103.103 0 0 1-.143.024.101.101 0 0 1-.024-.142.787.787 0 0 1 .456-.33c.362-.087.76.156 1.025.475a.102.102 0 0 1-.014.144.103.103 0 0 1-.145-.014c-.214-.258-.525-.477-.819-.407a.589.589 0 0 0-.336.25Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="M27.4 5.999c-.197.426-.134.93-.025 1.371.109.441.245.94.552 1.289.696.79 1.998.938 2.809.26.579-.485.445-1.327.225-1.963-.173-.501-.466-1.044-.903-1.37-.573-.427-1.619-.507-2.3-.3l-.358.713Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="m27.308 5.953.358-.712a.104.104 0 0 1 .062-.052c.709-.215 1.795-.129 2.392.316.453.338.759.898.938 1.418.114.33.204.712.192 1.074-.012.38-.135.737-.448 1-.852.712-2.221.559-2.952-.271-.318-.361-.462-.876-.575-1.331-.114-.463-.175-.992.031-1.439l.002-.003Zm.184.09c-.186.404-.121.884-.018 1.303.106.426.234.909.53 1.246.66.75 1.896.893 2.666.249.266-.223.365-.528.376-.85.01-.339-.076-.695-.182-1.002-.166-.483-.447-1.008-.867-1.32-.54-.403-1.513-.48-2.168-.298l-.337.672Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="M14.258 8.1c.812-.77 2.05-1.101 3.117-1.296 1.835-.333 3.73-.484 5.582-.151.908.163 1.738.538 2.597.856.16.06.332.117.468.223.052.04.186.218.24.18.23-.162.175-.555.132-.79-.17-.915-1.035-1.198-1.636-1.777-.139-.134-.72-.59-.444-.822.214-.18.58-.059.778.08.662.466 1.126 1.27 2.012 1.399.395.057.998-.339.899-.777-.057-.248-.281-.443-.429-.64-.376-.499-.805-.944-1.187-1.433-.358-.457-.551-.979-1.002-1.372-.437-.383-1.03-.535-1.503-.871-.402-.286-.634-.714-1.165-.798-.582-.092-1.246.516-1.76.719-.415.163-.876.217-1.271.426-.386.204-.646.58-.988.846-.312.241-.713.358-1.01.62-.62.55-1.355 1.765-1.74 2.501-.31.597-.965.795-1.434 1.217-.426.383-.557 1.188-.39 1.725l.134-.064Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="m14.303 8.193-.135.063a.103.103 0 0 1-.142-.062c-.177-.57-.033-1.423.42-1.83.237-.214.522-.372.787-.55.247-.168.477-.355.624-.637.39-.746 1.136-1.974 1.764-2.53.298-.265.7-.382 1.014-.626.346-.27.612-.648 1.002-.855.399-.211.863-.266 1.281-.43.308-.121.668-.388 1.032-.562.264-.126.531-.203.783-.163.287.045.494.182.683.347.171.151.327.327.525.468.476.338 1.072.492 1.512.877.456.399.652.924 1.015 1.387.382.489.812.934 1.188 1.434.074.098.166.195.248.299a1 1 0 0 1 .199.38c.047.208-.034.41-.185.57-.213.228-.564.368-.83.33-.463-.068-.818-.31-1.143-.598-.306-.273-.585-.588-.913-.819a.852.852 0 0 0-.415-.151.328.328 0 0 0-.237.066c-.07.058-.033.138.018.22.117.187.351.374.432.451.298.287.663.501.973.757.33.272.602.59.691 1.075.028.15.06.362.027.544a.511.511 0 0 1-.2.346c-.037.027-.085.034-.14.01a.43.43 0 0 1-.117-.086c-.042-.04-.082-.088-.105-.106-.128-.1-.29-.152-.44-.208-.854-.316-1.678-.69-2.58-.851-1.84-.331-3.722-.18-5.545.152-1.048.19-2.267.512-3.065 1.27a.107.107 0 0 1-.027.018Zm-.104-.177c.826-.777 2.078-1.115 3.158-1.312 1.847-.335 3.753-.486 5.619-.152.913.165 1.749.541 2.614.861.17.063.35.126.495.238.023.018.061.06.102.101a.694.694 0 0 0 .051.046.347.347 0 0 0 .081-.184 1.415 1.415 0 0 0-.026-.474c-.08-.43-.326-.712-.62-.955-.315-.259-.684-.476-.986-.767-.087-.083-.337-.288-.463-.49-.111-.179-.128-.355.023-.483a.534.534 0 0 1 .382-.114c.19.01.39.096.522.19.334.235.619.554.931.832.295.262.615.487 1.036.548.21.03.482-.087.65-.266.103-.11.167-.246.135-.388a.778.778 0 0 0-.161-.299c-.082-.105-.176-.203-.25-.302-.376-.499-.804-.943-1.186-1.431-.354-.453-.543-.97-.988-1.36-.435-.38-1.026-.53-1.496-.863-.204-.145-.365-.326-.542-.481-.16-.14-.335-.26-.58-.3-.27-.042-.557.084-.839.238-.307.168-.606.373-.867.476-.411.162-.868.213-1.26.42-.38.202-.636.575-.973.837-.31.24-.709.355-1.004.616-.613.543-1.338 1.744-1.718 2.472-.163.315-.416.525-.69.711-.258.174-.535.326-.766.534-.37.333-.5 1.006-.391 1.505l.008-.004Z" clip-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 58 KiB

18
images/santa/santa-2.svg Normal file
View File

@ -0,0 +1,18 @@
<svg xmlns="http://www.w3.org/2000/svg" width="41" height="46" fill="none" viewBox="0 0 41 46">
<g clip-path="url(#a)">
<path fill="#3F1A0A" fill-rule="evenodd" d="M16.25 40.452c-.081.623.082 1.277-.101 1.888a7.295 7.295 0 0 1-.473 1.224c-.184.356-.468.681-.546 1.086-.032.168.014.351.02.52.003.15-.027.337.04.477.233.486 1.002.33 1.432.327 1.04-.008 2.077.004 3.108-.136.389-.053.887-.062 1.2-.334.288-.252.133-.692.09-1.016-.067-.483.031-1.1-.18-1.55-.117-.25-.355-.393-.514-.611-.36-.496-.01-.825-.056-1.354-.002-.025-.063-.495-.11-.505-.292-.067-.628-.022-.927-.034-1.017-.041-2.023.075-3.043.025l.06-.007Zm6.205-.383c-.085.574.085 1.161-.004 1.733-.042.268-.23.476-.32.726a4.918 4.918 0 0 0-.25 2.213c.035.294.112.656.384.831.696.45 2.016.112 2.808.138.638.022 1.26.04 1.897-.008.265-.02.566.031.754-.195.61-.737-.28-1.79-.529-2.487-.103-.29-.194-.592-.343-.864-.137-.25-.354-.46-.466-.723-.102-.239-.1-.495-.123-.75a10.299 10.299 0 0 1-.042-.767c0-.051.027-.204-.022-.239-.216-.152-.796.092-1.028.12-.905.11-1.823.22-2.736.236l.02.036Z" clip-rule="evenodd"/>
<path fill="#F1D88E" fill-rule="evenodd" d="M16.894 41.278c.36.016.733-.034 1.106-.073.419-.044.838-.073 1.24.012a.107.107 0 0 1 .082.089c.01.052.022.306.024.325.017.186 0 .382-.013.576-.01.178-.017.355.025.52a.125.125 0 0 1-.029.123.142.142 0 0 1-.097.043.487.487 0 0 1-.125-.014c-.048-.01-.1-.026-.135-.026-.188-.001-.375-.003-.563 0-.51.005-1.096.143-1.6.091a.107.107 0 0 1-.094-.098c-.006-.051-.002-.302-.002-.319.001-.354.006-.711.037-1.065a.102.102 0 0 1 .05-.19h.062a.09.09 0 0 1 .032.006Zm.06.205c-.03.347-.035.697-.036 1.045v.22c.477.029 1.015-.094 1.49-.099.188-.002.376 0 .565 0a.76.76 0 0 1 .151.025l.015.003a2.218 2.218 0 0 1-.01-.482c.01-.184.03-.37.013-.545a43.652 43.652 0 0 1-.017-.248c-.36-.063-.731-.034-1.104.005-.359.038-.719.085-1.067.076Zm6.319-.296-.066-.195a.102.102 0 0 1 .1-.134c.608.02 1.215.008 1.823.016.08.001.32-.024.487-.006.103.011.182.045.22.087a.28.28 0 0 1 .045.15c.014.18-.026.55-.024.614.008.26.062.514.078.772a.112.112 0 0 1-.063.115.162.162 0 0 1-.093.014c-.028-.002-.065-.016-.088-.014-.146.007-.29.02-.436.031-.642.054-1.29-.07-1.925.022a.096.096 0 0 1-.097-.04.118.118 0 0 1-.02-.077c.002-.081.046-.491.05-.514.058-.288-.004-.554.01-.841Zm.153 1.256c.6-.063 1.209.042 1.813-.008.147-.013.294-.025.442-.033l.043.003c-.021-.226-.064-.45-.07-.68-.003-.055.028-.344.026-.536a.991.991 0 0 0-.007-.102l-.025-.008a.702.702 0 0 0-.12-.013c-.153-.006-.335.013-.4.012-.56-.008-1.12.002-1.68-.013l.026.075a.101.101 0 0 1 .005.038c-.018.305.047.585-.013.889a10.2 10.2 0 0 0-.04.376Z" clip-rule="evenodd"/>
<path fill="#fff" fill-rule="evenodd" d="M15.075 38.006c-.096.3-.111.547-.046.855.088.414.21.852.535 1.151.114.105.26.136.399.193.521.214.984.2 1.542.231.34.02.679.052 1.02.062.488.016.922-.008 1.403-.062.23-.026.489-.044.677-.192.143-.113.194-.286.27-.443.09-.189.133-.377.198-.573.106-.32.216-.574.135-.913-.034-.145-.034-.588-.244-.602-.25-.017-.537.126-.79.148-.786.068-1.58.127-2.37.108a38.875 38.875 0 0 1-2.409-.116c-.236-.021-.487 0-.72-.043m7.447-.209c-.052.088-.322.08-.363.204-.159.478-.187 1.207.32 1.834.186.23.095.386.402.451.288.062.93.059 1.215.02.457-.062.964-.044 1.418-.132.472-.09 1.09-.07 1.455-.414.468-.441.705-.974.741-1.604.011-.19-.155-.689-.39-.79" clip-rule="evenodd"/>
<path fill="#600C13" fill-rule="evenodd" d="M12.714 33.132c.015.404.282 1.475.46 1.824.137.264.232.544.378.805.087.156.12.332.2.49.212.427.491.864.78 1.242.123.163.214.357.385.478.453.319 1.137.169 1.652.173 1.28.013 2.557.094 3.826-.105a.85.85 0 0 0 .547-.386c.09-.155.173-.43.393-.434.247-.005.375.261.543.396.166.132.382.164.586.188.6.073 1.26.12 1.862.058.342-.036 1.798-.183 2.172-.304.296-.096 1.092-.466 1.242-.517.313-.107.608-.372.858-.581.572-.478.579-1.052.643-1.719.055-.568.132-1.126.174-1.696l-16.7.088Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.888 30.766c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.401 7.694-.147.835-.196 5.068-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.092-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.839 30.676c.023-.044.07-.132.115-.234.407-.906 1.46-3.717 1.566-5.818.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.01.094-.417 1.023-1.763 2.002-2.65 2.564-1.19.752-5.443 2.227-6.283 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.044-.103a.102.102 0 0 1 .053-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.252-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.397.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.73 27.907c.242.4.826.721 1.305 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.164 1.8.345 2.717.418.781.061 1.568.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475a16.43 16.43 0 0 0 1.603-1.472c.231-.239.222-.246.409-.522.262-.388-.296-1.324-.346-1.274-.269.262-2.21 1.3-3.04 1.87-2.095 1.436-4.816 1.8-7.297 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.278 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.642 27.96c-.064-.105-.086-.277-.073-.474a3.08 3.08 0 0 1 .18-.805c.045-.12.093-.214.134-.267a.214.214 0 0 1 .09-.072.155.155 0 0 1 .083-.001c.053.011.16.06.308.137.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.598 3.027-1.86.026-.026.062-.04.11-.026a.143.143 0 0 1 .053.03.513.513 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.191.283-.183.29-.42.536a16.76 16.76 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.827-.403-.766-.3-1.477-.828-2.112-1.338-.489-.392-1.08-.723-1.328-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.972 1.815-2.11 1.447-4.85 1.817-7.349 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.056 3.056 0 0 0-.23-.108l-.012.017a1.2 1.2 0 0 0-.084.185c-.078.208-.15.5-.167.748-.01.147-.004.277.043.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.79.393.899.163 1.792.344 2.706.416.782.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.546 16.546 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.067 29.28a.557.557 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.046.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308 0-1.007.125-1.513.145-.335.014-.612-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.046.01.12.014.19.096.001.217 0 .313-.008.496-.04 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.008.233.014.346.01l.007-.185c.047-.505.067-.983.002-1.487l-.001-.015c-.201.022-.395.05-.501.051-.811.014-1.663.177-2.485.167Z" clip-rule="evenodd"/>
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h41v46H0z"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 7.8 KiB

16
images/santa/santa-3.svg Normal file
View File

@ -0,0 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" width="41" height="46" fill="none" viewBox="0 0 41 46">
<path fill="#3F1A0A" fill-rule="evenodd" d="M16.25 40.452c-.081.623.082 1.277-.101 1.888a7.295 7.295 0 0 1-.473 1.224c-.184.356-.468.681-.546 1.086-.032.168.014.351.02.52.003.15-.027.337.04.477.233.486 1.002.33 1.432.327 1.04-.008 2.077.004 3.108-.136.389-.053.887-.062 1.2-.334.288-.252.133-.692.09-1.016-.067-.483.031-1.1-.18-1.55-.117-.25-.355-.393-.514-.611-.36-.496-.01-.825-.056-1.354-.002-.025-.063-.495-.11-.505-.292-.067-.628-.022-.927-.034-1.017-.041-2.023.075-3.043.025l.06-.007Zm6.205-.383c-.085.574.085 1.161-.004 1.733-.042.268-.23.476-.32.726a4.918 4.918 0 0 0-.25 2.213c.035.294.112.656.384.831.696.45 2.016.112 2.808.138.638.022 1.26.04 1.897-.008.265-.02.566.031.754-.195.61-.737-.28-1.79-.529-2.487-.103-.29-.194-.592-.343-.864-.137-.25-.354-.46-.466-.723-.102-.239-.1-.495-.123-.75a10.299 10.299 0 0 1-.042-.767c0-.051.027-.204-.022-.239-.216-.152-.796.092-1.028.12-.905.11-1.823.22-2.736.236l.02.036Z" clip-rule="evenodd"/>
<path fill="#F1D88E" fill-rule="evenodd" d="M16.894 41.278c.36.016.733-.034 1.106-.073.419-.044.838-.073 1.24.012a.107.107 0 0 1 .082.089c.01.052.022.306.024.325.017.186 0 .382-.013.576-.01.178-.017.355.025.52a.125.125 0 0 1-.029.123.142.142 0 0 1-.097.043.487.487 0 0 1-.125-.014c-.048-.01-.1-.026-.135-.026-.188-.001-.375-.003-.563 0-.51.005-1.096.143-1.6.091a.107.107 0 0 1-.094-.098c-.006-.051-.002-.302-.002-.319.001-.354.006-.711.037-1.065a.102.102 0 0 1 .05-.19h.062a.09.09 0 0 1 .032.006Zm.06.205c-.03.347-.035.697-.036 1.045v.22c.477.029 1.015-.094 1.49-.099.188-.002.376 0 .565 0a.76.76 0 0 1 .151.025l.015.003a2.218 2.218 0 0 1-.01-.482c.01-.184.03-.37.013-.545a43.652 43.652 0 0 1-.017-.248c-.36-.063-.731-.034-1.104.005-.359.038-.719.085-1.067.076Zm6.319-.296-.066-.195a.102.102 0 0 1 .1-.134c.608.02 1.215.008 1.823.016.08.001.32-.024.487-.006.103.011.182.045.22.087a.28.28 0 0 1 .045.15c.014.18-.026.55-.024.614.008.26.062.514.078.772a.112.112 0 0 1-.063.115.162.162 0 0 1-.093.014c-.028-.002-.065-.016-.088-.014-.146.007-.29.02-.436.031-.642.054-1.29-.07-1.925.022a.096.096 0 0 1-.097-.04.118.118 0 0 1-.02-.077c.002-.081.046-.491.05-.514.058-.288-.004-.554.01-.841Zm.153 1.256c.6-.063 1.209.042 1.813-.008.147-.013.294-.025.442-.033l.043.003c-.021-.226-.064-.45-.07-.68-.003-.055.028-.344.026-.536a.991.991 0 0 0-.007-.102l-.025-.008a.702.702 0 0 0-.12-.013c-.153-.006-.335.013-.4.012-.56-.008-1.12.002-1.68-.013l.026.075a.101.101 0 0 1 .005.038c-.018.305.047.585-.013.889a10.2 10.2 0 0 0-.04.376Z" clip-rule="evenodd"/>
<path fill="#fff" fill-rule="evenodd" d="M15.075 38.006c-.096.3-.111.547-.046.855.088.414.21.852.535 1.151.114.105.26.136.399.193.521.214.984.2 1.542.231.34.02.679.052 1.02.062.488.016.922-.008 1.403-.062.23-.026.489-.044.677-.192.143-.113.194-.286.27-.443.09-.189.133-.377.198-.573.106-.32.216-.574.135-.913-.034-.145-.034-.588-.244-.602-.25-.017-.537.126-.79.148-.786.068-1.58.127-2.37.108a38.875 38.875 0 0 1-2.409-.116c-.236-.021-.487 0-.72-.043m7.447-.209c-.052.088-.322.08-.363.204-.159.478-.187 1.207.32 1.834.186.23.095.386.402.451.288.062.93.059 1.215.02.457-.062.964-.044 1.418-.132.472-.09 1.09-.07 1.455-.414.468-.441.705-.974.741-1.604.011-.19-.155-.689-.39-.79" clip-rule="evenodd"/>
<path fill="#600C13" fill-rule="evenodd" d="M12.714 33.132c.015.404.282 1.475.46 1.824.137.264.232.544.378.805.087.156.12.332.2.49.212.427.491.864.78 1.242.123.163.214.357.385.478.453.319 1.137.169 1.652.173 1.28.013 2.557.094 3.826-.105a.85.85 0 0 0 .547-.386c.09-.155.173-.43.393-.434.247-.005.375.261.543.396.166.132.382.164.586.188.6.073 1.26.12 1.862.058.342-.036 1.798-.183 2.172-.304.296-.096 1.092-.466 1.242-.517.313-.107.608-.372.858-.581.572-.478.579-1.052.643-1.719.055-.568.132-1.126.174-1.696l-16.7.088Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.888 30.766c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.401 7.694-.147.835-.196 5.068-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.092-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.839 30.676c.023-.044.07-.132.115-.234.407-.906 1.46-3.717 1.566-5.818.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.01.094-.417 1.023-1.763 2.002-2.65 2.564-1.19.752-5.443 2.227-6.283 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.044-.103a.102.102 0 0 1 .053-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.252-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.397.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.73 27.907c.242.4.826.721 1.305 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.164 1.8.345 2.717.418.781.061 1.568.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475a16.43 16.43 0 0 0 1.603-1.472c.231-.239.222-.246.409-.522.262-.388-.296-1.324-.346-1.274-.269.262-2.21 1.3-3.04 1.87-2.095 1.436-4.816 1.8-7.297 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.278 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.642 27.96c-.064-.105-.086-.277-.073-.474a3.08 3.08 0 0 1 .18-.805c.045-.12.093-.214.134-.267a.214.214 0 0 1 .09-.072.155.155 0 0 1 .083-.001c.053.011.16.06.308.137.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.598 3.027-1.86.026-.026.062-.04.11-.026a.143.143 0 0 1 .053.03.513.513 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.191.283-.183.29-.42.536a16.76 16.76 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.827-.403-.766-.3-1.477-.828-2.112-1.338-.489-.392-1.08-.723-1.328-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.972 1.815-2.11 1.447-4.85 1.817-7.349 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.056 3.056 0 0 0-.23-.108l-.012.017a1.2 1.2 0 0 0-.084.185c-.078.208-.15.5-.167.748-.01.147-.004.277.043.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.79.393.899.163 1.792.344 2.706.416.782.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.546 16.546 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.067 29.28a.557.557 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .433.054.553.127a.555.555 0 0 1 .252.33c.026.088.046.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308 0-1.007.125-1.513.145-.335.014-.612-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.046.01.12.014.19.096.001.217 0 .313-.008.496-.04 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.008.233.014.346.01l.007-.185c.047-.505.067-.983.002-1.487l-.001-.015c-.201.022-.395.05-.501.051-.811.014-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 23.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 23.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.962 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 20.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 20.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.358 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859.026-.026.062-.04.11-.026a.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.277.044.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.478-.06-.225-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 21.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.554.554 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.134.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.067-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

39
images/santa/santa-4.svg Normal file
View File

@ -0,0 +1,39 @@
<svg xmlns="http://www.w3.org/2000/svg" width="41" height="47" fill="none" viewBox="0 0 41 47">
<g clip-path="url(#a)">
<path fill="#3F1A0A" fill-rule="evenodd" d="M16.25 40.742c-.081.627.082 1.286-.101 1.901a7.35 7.35 0 0 1-.473 1.233c-.184.36-.468.687-.546 1.094-.032.17.014.354.02.524.003.151-.027.34.04.48.233.49 1.002.333 1.432.33 1.04-.008 2.077.003 3.108-.138.389-.053.887-.061 1.2-.335.288-.254.133-.698.09-1.024-.067-.487.031-1.107-.18-1.56-.117-.252-.355-.397-.514-.617-.36-.499-.01-.83-.056-1.363-.002-.025-.063-.498-.11-.509-.292-.067-.628-.022-.927-.034-1.017-.041-2.023.076-3.043.025l.06-.007Zm6.205-.386c-.085.579.085 1.17-.004 1.746-.042.27-.23.479-.32.731a4.986 4.986 0 0 0-.25 2.23c.035.295.112.66.384.836.696.453 2.016.112 2.808.14.638.02 1.26.04 1.897-.01.265-.02.566.032.754-.196.61-.742-.28-1.801-.529-2.505-.103-.292-.194-.596-.343-.87-.137-.25-.354-.464-.466-.728-.102-.24-.1-.499-.123-.754a10.444 10.444 0 0 1-.042-.774c0-.051.027-.206-.022-.24-.216-.153-.796.092-1.028.12-.905.111-1.823.222-2.736.238l.02.036Z" clip-rule="evenodd"/>
<path fill="#F1D88E" fill-rule="evenodd" d="M16.894 41.574c.36.017.733-.035 1.106-.073.419-.045.838-.074 1.24.012a.107.107 0 0 1 .082.09c.01.052.022.308.024.326.017.188 0 .386-.013.581a1.72 1.72 0 0 0 .025.523.126.126 0 0 1-.029.125.142.142 0 0 1-.097.043.487.487 0 0 1-.125-.015c-.048-.01-.1-.026-.135-.026-.188 0-.375-.002-.563 0-.51.005-1.096.145-1.6.093a.107.107 0 0 1-.094-.1c-.006-.05-.002-.304-.002-.32a12.8 12.8 0 0 1 .037-1.073.103.103 0 0 1 .05-.192h.062a.09.09 0 0 1 .032.006Zm.06.207c-.03.349-.035.702-.036 1.052v.223c.477.028 1.015-.096 1.49-.1.188-.003.376-.002.565 0a.75.75 0 0 1 .151.024l.015.003a2.243 2.243 0 0 1-.01-.486c.01-.184.03-.371.013-.548a44.427 44.427 0 0 1-.017-.25c-.36-.064-.731-.034-1.104.005-.359.038-.719.085-1.067.077Zm6.319-.299-.066-.196a.102.102 0 0 1 .1-.136c.608.022 1.216.01 1.824.018.078 0 .32-.025.486-.007.103.012.182.045.22.088.018.023.04.076.045.151.014.182-.026.554-.024.618.008.262.062.518.078.777a.113.113 0 0 1-.063.117.16.16 0 0 1-.093.014c-.028-.003-.065-.016-.088-.015-.146.007-.29.02-.436.032-.642.054-1.29-.07-1.925.022a.096.096 0 0 1-.097-.04.12.12 0 0 1-.02-.078c.002-.082.046-.494.05-.518.058-.29-.004-.558.01-.847Zm.153 1.265c.6-.063 1.209.043 1.813-.008.147-.012.294-.025.442-.033l.043.003c-.021-.227-.064-.453-.07-.685-.003-.055.028-.346.026-.54 0-.036-.005-.08-.007-.102a.226.226 0 0 0-.025-.008.712.712 0 0 0-.12-.014c-.153-.005-.335.014-.4.013-.56-.008-1.12.002-1.68-.013l.026.075a.103.103 0 0 1 .005.039c-.018.306.047.589-.013.895-.004.016-.027.236-.04.378Z" clip-rule="evenodd"/>
<path fill="#fff" fill-rule="evenodd" d="M15.075 38.279a1.56 1.56 0 0 0-.046.861c.088.416.21.857.535 1.16.114.105.26.136.399.193.521.215.984.202 1.542.233.34.02.679.052 1.02.063.488.016.922-.009 1.403-.063.23-.026.489-.044.677-.194.143-.113.194-.287.27-.445.09-.19.133-.38.198-.578.106-.322.216-.578.135-.92-.034-.145-.034-.592-.244-.606-.25-.017-.537.128-.79.15-.786.068-1.58.128-2.37.108a38.644 38.644 0 0 1-2.409-.117c-.236-.02-.487 0-.72-.042m7.447-.211c-.052.089-.322.08-.363.205-.159.481-.187 1.216.32 1.848.186.232.095.388.402.454.288.062.93.06 1.215.02.457-.063.964-.045 1.418-.133.472-.09 1.09-.072 1.455-.418.468-.444.705-.98.741-1.615.011-.19-.155-.693-.39-.796" clip-rule="evenodd"/>
<path fill="#600C13" fill-rule="evenodd" d="M12.714 33.37c.015.407.282 1.485.46 1.836.137.267.232.55.378.812.087.157.12.334.2.494.212.43.491.869.78 1.25.123.164.214.36.385.481.453.321 1.137.17 1.652.175 1.28.012 2.557.094 3.826-.106a.851.851 0 0 0 .547-.39c.09-.155.173-.432.393-.436.247-.005.375.263.543.399.166.133.382.165.586.19.6.072 1.26.12 1.862.057.342-.036 1.798-.184 2.172-.305.296-.097 1.092-.47 1.242-.521.313-.108.608-.375.858-.585.572-.482.579-1.06.643-1.731.055-.573.132-1.135.174-1.709l-16.7.089Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.888 30.986c.852 1.246 3.108 2.458 4.461 3.08 1.048.48 2.145.974 3.271 1.25 2.34.571 5.365.402 7.694-.15.835-.197 5.068-1.673 6.25-2.428.872-.556 2.2-1.52 2.61-2.534.003-.007-2.6-3.613-2.408-5.685.092-.981-20.065-1.27-20.143.287-.134 2.66-1.754 6.448-1.735 6.18Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.839 30.896c.023-.044.07-.133.115-.236.407-.912 1.46-3.744 1.566-5.859.006-.114.083-.228.244-.327.191-.117.512-.224.94-.317 2.754-.596 10.043-.665 14.772-.406 2.04.112 3.605.288 4.135.504.098.04.165.084.203.126a.189.189 0 0 1 .054.148c-.068.73.223 1.656.619 2.543.601 1.348 1.45 2.606 1.7 2.969l.073.107c.032.051.01.09.01.094-.417 1.031-1.763 2.017-2.65 2.583-1.19.758-5.443 2.243-6.283 2.442-2.343.554-5.386.723-7.741.148-1.132-.276-2.236-.773-3.29-1.256-1.353-.621-3.596-1.831-4.476-3.076-.023-.015-.049-.046-.044-.104a.102.102 0 0 1 .053-.083Zm.18.1c.878 1.21 3.057 2.373 4.373 2.977 1.042.477 2.133.97 3.252 1.243 2.326.568 5.332.399 7.646-.148.832-.197 5.043-1.666 6.219-2.416.843-.538 2.124-1.459 2.549-2.437a8.506 8.506 0 0 1-.04-.058c-.253-.367-1.11-1.639-1.719-3.002-.409-.917-.703-1.876-.636-2.635a.356.356 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.11c-.674-.176-2.077-.317-3.837-.414-4.711-.258-11.973-.193-14.718.401-.397.087-.698.182-.876.292-.086.053-.143.101-.146.162-.121 2.404-1.447 5.722-1.705 6.185Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.73 28.108c.242.403.826.726 1.305 1.113.627.507 1.328 1.034 2.084 1.331.566.223 1.213.293 1.809.402.903.164 1.8.347 2.717.42.781.062 1.568.022 2.347.086 2.29.188 3.886.124 6.097-.675.512-.185 3.046-1.122 3.497-1.485.577-.463 1.092-.95 1.603-1.483.231-.24.222-.248.409-.526.262-.39-.296-1.333-.346-1.283-.269.264-2.21 1.31-3.04 1.884-2.095 1.446-4.816 1.813-7.297 1.95-2.42.134-5.407-.218-7.59-1.336-.936-.48-3.18-1.926-3.317-1.878-.149.052-.477 1.15-.278 1.48Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.642 28.16c-.064-.105-.086-.279-.073-.477.018-.268.096-.585.18-.81.045-.121.093-.217.134-.27a.214.214 0 0 1 .09-.072.154.154 0 0 1 .083-.002c.053.012.16.06.308.14.674.36 2.26 1.362 3.008 1.746 2.168 1.11 5.134 1.458 7.538 1.325 2.462-.136 5.164-.497 7.243-1.932.827-.572 2.76-1.61 3.027-1.873.026-.026.062-.04.11-.026a.142.142 0 0 1 .053.03.52.52 0 0 1 .073.087c.101.144.261.454.325.75.047.218.04.427-.058.573-.192.285-.183.292-.42.54a16.806 16.806 0 0 1-1.612 1.491c-.456.366-3.01 1.314-3.527 1.5-2.226.806-3.834.872-6.14.682-.78-.064-1.566-.024-2.347-.086-.921-.073-1.821-.256-2.728-.422-.601-.11-1.256-.181-1.827-.406-.766-.302-1.477-.834-2.112-1.347-.489-.395-1.08-.729-1.328-1.14Zm21.6-2.012c-.456.344-2.196 1.292-2.973 1.828-2.109 1.457-4.85 1.83-7.348 1.969-2.437.135-5.444-.222-7.642-1.348-.75-.384-2.337-1.387-3.012-1.748a3.003 3.003 0 0 0-.23-.109 1.206 1.206 0 0 0-.097.204 2.9 2.9 0 0 0-.166.753c-.01.148-.004.279.043.358.238.395.813.707 1.282 1.086.62.5 1.31 1.022 2.058 1.316.56.22 1.2.288 1.79.395.899.165 1.792.347 2.706.42.782.062 1.568.022 2.348.086 2.273.187 3.858.124 6.053-.67.508-.183 3.02-1.108 3.468-1.468a16.615 16.615 0 0 0 1.593-1.473c.225-.235.216-.242.398-.513.08-.12.06-.3.012-.48a2.63 2.63 0 0 0-.282-.606Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.067 29.49a.553.553 0 0 1 .619-.493c.926.113 1.913-.128 2.846-.143.152-.002.504-.07.767-.07.236 0 .432.054.553.128a.558.558 0 0 1 .252.333c.026.088.045.493.048.557.073.582.054 1.137 0 1.722-.004.044-.011.498-.02.59-.037.377-.337.474-.376.487-.605.205-1.405.036-2.03.035-.308-.001-1.007.125-1.513.146-.335.013-.612-.03-.767-.104a.822.822 0 0 1-.453-.58c-.038-.156-.027-.347-.044-.485a5.692 5.692 0 0 1 .118-2.122Zm.998.638a4.725 4.725 0 0 0-.017 1.352c.006.045.01.12.014.191.096 0 .217 0 .313-.008.496-.042 1.076-.135 1.354-.135.296.001.633.047.968.07.117.008.233.014.346.01a7.52 7.52 0 0 1 .007-.186c.047-.508.067-.99.002-1.498l-.001-.015c-.201.022-.395.05-.501.052-.811.013-1.663.178-2.485.167Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M4.24 22.696c-.95.559-1.382.262-2.409.159-.373-.038-1.026-.108-1.307.218-.697.805 1.275.97 1.635 1.065 0 0-.187.275-.206.3-.152.19-.326.363-.516.516-.615.495-1.51.86-1.432 1.802.143 1.729 1.82 2.356 3.238 1.507.915-.548 1.619-1.99 2.703-2.672L4.24 22.696Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M1.988 24.207c-.321-.059-.954-.15-1.34-.347-.218-.112-.36-.261-.373-.44-.01-.119.036-.258.171-.415.128-.147.32-.227.536-.262.293-.048.628-.013.86.01.41.041.727.114 1.02.15.416.052.782.024 1.325-.295a.102.102 0 0 1 .14.036l1.708 2.895a.103.103 0 0 1-.034.14c-.533.335-.972.858-1.39 1.364-.435.524-.849 1.029-1.315 1.308-.741.443-1.55.498-2.191.22-.646-.281-1.127-.898-1.202-1.806-.042-.508.175-.86.488-1.153.293-.272.673-.489.982-.738.184-.147.352-.317.5-.501.01-.013.065-.092.115-.166Zm2.214-1.372c-.548.303-.932.325-1.366.271-.29-.036-.605-.108-1.015-.15-.217-.021-.531-.055-.806-.01-.165.027-.316.08-.414.194-.087.101-.128.187-.122.264.01.117.12.2.262.273.446.227 1.231.306 1.444.362.038.01.074.034.077.094 0 .003.004.027-.015.058l-.008.012c-.03.046-.188.276-.206.298a3.43 3.43 0 0 1-.531.533c-.306.246-.682.46-.971.728-.269.25-.46.55-.424.986.068.82.496 1.38 1.08 1.634.586.255 1.326.199 2.003-.207.45-.269.845-.759 1.262-1.263.411-.496.842-1.006 1.356-1.353l-1.606-2.724Zm30.905 2.309c.46.43.766 1.003 1.21 1.45.544.549 1.374.993 2.104 1.242 1.394.475 2.67-.86 2.574-2.228-.057-.825-.752-1.19-1.39-1.573a4.881 4.881 0 0 0-.138-.082 6.333 6.333 0 0 1-.639-.448c-.027-.021-.106-.04-.081-.065.372-.387 1.144-.28 1.38-.882.161-.415-.346-.754-.69-.791-.522-.056-1.122.25-1.658.29-.636.049-1.196-.165-1.814-.226l-.858 3.313Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M38.906 23.436a6.174 6.174 0 0 0 .752.511c.325.196.664.387.93.634.279.259.479.578.51 1.02.1 1.437-1.247 2.83-2.71 2.332-.744-.254-1.589-.708-2.143-1.266-.444-.447-.75-1.018-1.208-1.448a.103.103 0 0 1-.029-.1l.858-3.314a.102.102 0 0 1 .11-.076c.611.06 1.166.274 1.796.226.262-.02.54-.105.816-.178.294-.078.588-.142.86-.112.23.025.526.171.687.384a.544.544 0 0 1 .087.546c-.13.332-.403.474-.7.58-.215.078-.444.134-.616.261Zm-.14.151a.617.617 0 0 1-.073-.039.129.129 0 0 1-.042-.05c-.02-.04-.021-.084.022-.129.196-.205.496-.284.78-.386.241-.087.472-.192.578-.462.064-.165-.01-.314-.13-.426a.878.878 0 0 0-.474-.226c-.25-.027-.517.035-.787.106-.289.076-.579.164-.853.185-.612.046-1.155-.146-1.745-.217l-.82 3.169c.435.426.737.976 1.168 1.41.534.538 1.348.973 2.064 1.217 1.324.451 2.53-.824 2.439-2.124-.027-.383-.203-.659-.445-.884-.255-.238-.583-.42-.895-.608l-.056-.033-.082-.049a6.413 6.413 0 0 1-.648-.454Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M10.314 24.145c.216.02.316.456.31.607-.006.128 20.128.036 20.132-.093.006-.17.132-.492.22-.484.303.03.738.54.982.716.631.453 1.326.842 2.036 1.157.1.045 1.004.37 1.028.351.43-.34.646-1.34.878-1.807.226-.454.386-.94.558-1.417.177-.493.336-1.037.614-1.485.09-.145.357-.391.25-.556-.28-.435-.906-.426-1.34-.588-.877-.328-3.695-1.176-4.692-1.896-.485-.35-2.25-1.585-2.712-1.966-.182-.15-.53-.524-.765-.545-.75-.069-14.505-.063-14.66-.022-.628.166-1.409 1.169-1.92 1.584-1.587 1.293-3.4 2.422-5.177 3.43-.586.332-1.215.607-1.83.883a8.642 8.642 0 0 1-.594.238c-.102.038-.342 0-.308.104.045.136 1.054 1.616 1.184 1.81.284.424.519.873.77 1.316.22.39.494.752.723 1.14.075.126.155.25.21.388.027.071.032.274.078.215.757-.972 1.982-1.438 3.009-2.138.101-.069.94-.949 1.016-.942Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M30.992 24.281a.477.477 0 0 0-.039.06.879.879 0 0 0-.094.322.1.1 0 0 1-.069.095c-.025.01-.163.024-.396.034-2.137.087-13.042.149-17.68.115-1.167-.009-1.94-.024-2.082-.046-.065-.01-.09-.046-.096-.056a.1.1 0 0 1-.015-.057.897.897 0 0 0-.094-.377.348.348 0 0 0-.067-.095.125.125 0 0 0-.032-.023 1.335 1.335 0 0 0-.072.058c-.26.226-.819.805-.9.86-1.019.695-2.236 1.154-2.986 2.117a.12.12 0 0 1-.089.05.108.108 0 0 1-.084-.03.203.203 0 0 1-.05-.1c-.012-.049-.018-.124-.032-.16-.053-.133-.13-.252-.202-.375-.23-.387-.504-.75-.725-1.14-.25-.441-.483-.889-.765-1.31-.132-.197-1.151-1.697-1.197-1.835a.146.146 0 0 1 0-.099.153.153 0 0 1 .091-.09.49.49 0 0 1 .135-.025c.052-.005.11-.005.145-.018.199-.072.395-.15.587-.236.613-.274 1.238-.547 1.821-.878 1.773-1.005 3.58-2.131 5.164-3.42.305-.249.707-.709 1.116-1.072.286-.255.578-.463.841-.532.016-.005.177-.012.453-.015 2.35-.03 13.568-.028 14.244.034.108.01.24.08.37.178.17.127.34.3.45.39.462.38 2.223 1.612 2.707 1.961.991.717 3.795 1.558 4.669 1.885.214.08.476.117.72.188.27.08.516.2.67.44.062.096.049.21-.012.328-.064.122-.183.248-.238.337-.274.442-.43.979-.605 1.466-.173.48-.335.97-.562 1.427-.139.28-.271.75-.448 1.155-.126.288-.275.543-.458.687-.01.008-.051.032-.12.016-.167-.04-.922-.312-1.014-.353a11.657 11.657 0 0 1-2.053-1.168c-.148-.106-.365-.333-.58-.504-.115-.092-.227-.169-.327-.189Zm-27.542-1.9c.172.306 1.025 1.552 1.143 1.728.285.426.522.877.774 1.323.22.39.494.75.722 1.137.078.132.16.261.216.404a.361.361 0 0 1 .016.052c.767-.888 1.933-1.35 2.92-2.023.08-.054.626-.624.88-.846a.729.729 0 0 1 .137-.1.126.126 0 0 1 .065-.013c.117.01.218.102.286.233.063.123.1.276.113.388.234.018.956.03 1.994.038 4.635.034 15.533-.028 17.67-.115a6.84 6.84 0 0 0 .278-.017c.022-.13.08-.289.141-.382.057-.086.13-.12.18-.115.137.013.3.108.461.236.213.17.426.394.572.5.625.448 1.314.833 2.017 1.145.086.039.761.283.957.336.145-.131.261-.345.364-.58.178-.408.313-.882.452-1.164.224-.45.383-.933.553-1.406.18-.5.342-1.05.623-1.504.053-.085.17-.206.231-.324.023-.044.045-.086.022-.122-.127-.197-.334-.29-.556-.354-.248-.073-.515-.112-.734-.193-.883-.33-3.715-1.186-4.717-1.91-.486-.351-2.254-1.588-2.717-1.97-.108-.09-.276-.259-.443-.384-.095-.072-.187-.13-.266-.138-.675-.062-11.876-.063-14.222-.033a16.3 16.3 0 0 0-.41.01c-.236.064-.494.256-.75.485-.412.366-.817.828-1.123 1.077-1.593 1.297-3.41 2.43-5.192 3.44-.59.334-1.22.61-1.84.887a9.039 9.039 0 0 1-.6.242.726.726 0 0 1-.167.027.553.553 0 0 0-.05.005Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.72 14.372c-1.012.543-1.822 1.526-1.27 2.689.132.277.35.486.595.665.017.012.29.162.288.172-.033.29-.271.599-.367.873-.261.748.099 1.727.68 2.25.226.205.51.326.806.388.037.008.44.044.443.054.223.694-.305 1.774.527 2.305.68.433 1.914-.08 2.044-.012.061.033.174.338.264.418.582.527 1.642.931 2.414.684.422-.134.795-.528 1.007-.909.008-.014.055-.131.065-.131.243 0 .504.13.746.167.85.126 1.762-.178 2.329-.841.242-.284.428-.616.406-1.002-.012-.204-.317-.413-.198-.578.295-.41 1.162-.09 1.63-1.024.375-.749.54-1.61.265-2.413a1.437 1.437 0 0 0-.322-.54c-.016-.017-.212-.165-.21-.172.105-.572 1.404-.716.857-2.292-.164-.472-.375-.886-.835-1.122a3.063 3.063 0 0 0-.633-.245c-.013-.003-.208-.043-.207-.049.03-.62.315-1.075.188-1.75-.153-.817-.708-1.478-.748-2.323-.034-.711.695-1.406.092-1.967-.564-.525-1.442-.606-2.159-.775-2.137-.504-4.245-.399-6.388.135-.26.064-2.421.656-2.54.885-.17.326.104.874.057 1.23-.056.423-.307.79-.306 1.225.002.621.303 1.16.414 1.76.135.73.105 1.527.135 2.272l-.07-.027Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.682 14.277c-.022-.704-.002-1.447-.13-2.132-.111-.606-.413-1.15-.414-1.778 0-.23.063-.441.137-.651.067-.192.142-.383.17-.587.026-.206-.061-.478-.097-.73-.029-.2-.027-.386.05-.535a.255.255 0 0 1 .071-.079 1.33 1.33 0 0 1 .264-.141c.627-.273 2.062-.665 2.272-.717 2.159-.537 4.282-.643 6.436-.134.733.173 1.629.263 2.205.8.336.312.31.66.195 1.032-.1.322-.271.66-.255 1.004.02.41.166.774.324 1.136.166.38.345.757.423 1.173.066.353.026.648-.036.937-.053.245-.122.485-.145.754l.125.028c.228.06.444.145.653.253.486.249.713.682.886 1.18.174.501.168.866.076 1.146-.092.284-.272.485-.456.654-.113.104-.228.196-.319.29a.598.598 0 0 0-.14.199c.058.045.158.125.168.136.158.16.273.366.346.578.284.831.117 1.72-.27 2.493-.3.598-.75.718-1.131.81-.115.027-.222.051-.314.089a.415.415 0 0 0-.194.139c-.014.02-.007.04.001.063a.535.535 0 0 0 .052.096c.072.114.157.236.164.352.024.414-.17.771-.43 1.075-.59.69-1.537 1.008-2.422.877-.217-.033-.45-.145-.67-.164l-.036.076c-.224.402-.62.815-1.066.957-.803.257-1.908-.157-2.514-.706-.06-.053-.132-.194-.192-.308a1.464 1.464 0 0 0-.053-.088.767.767 0 0 0-.047.004c-.064.01-.15.03-.251.052-.277.062-.664.145-1.034.135-.26-.007-.511-.06-.717-.19-.45-.288-.54-.72-.54-1.178 0-.388.07-.794-.012-1.122-.108-.012-.358-.04-.384-.046a1.823 1.823 0 0 1-.854-.411c-.609-.55-.981-1.577-.708-2.361.05-.14.135-.291.213-.443a1.48 1.48 0 0 0 .14-.346 10.98 10.98 0 0 1-.237-.14c-.259-.188-.489-.41-.627-.703-.578-1.219.254-2.255 1.313-2.823l.011-.005Zm-.104-6.315c-.073.145-.042.339-.006.536.044.233.1.47.075.657-.028.22-.107.423-.179.629-.065.188-.126.377-.125.583.001.614.302 1.147.412 1.741.136.736.106 1.537.137 2.287a.103.103 0 0 1-.043.088.103.103 0 0 1-.097.012l-.025-.01c-.945.521-1.703 1.44-1.184 2.532.124.261.332.458.563.626.014.011.238.134.281.166.053.04.05.09.048.101a1.474 1.474 0 0 1-.17.477c-.074.144-.156.285-.202.418-.249.711.098 1.642.651 2.14.213.193.481.305.76.364.032.007.36.037.429.05a.112.112 0 0 1 .09.073c.114.356.04.81.04 1.245 0 .388.063.76.444 1.004.175.112.391.153.613.16.352.009.72-.072.983-.13a2.72 2.72 0 0 1 .325-.062.217.217 0 0 1 .116.017c.028.015.07.061.108.13.055.096.119.25.176.302.559.506 1.574.9 2.315.663.398-.127.748-.502.948-.862.009-.014.053-.12.07-.14a.104.104 0 0 1 .085-.044c.248 0 .514.132.761.169.817.12 1.692-.17 2.236-.807.225-.264.402-.57.381-.93a.315.315 0 0 0-.055-.135c-.038-.063-.083-.124-.115-.183-.063-.116-.08-.226-.008-.326.131-.181.36-.244.626-.307.334-.08.733-.178.996-.702.362-.724.525-1.556.259-2.335a1.337 1.337 0 0 0-.298-.501c-.015-.015-.173-.134-.204-.163a.106.106 0 0 1-.034-.099.641.641 0 0 1 .152-.297c.101-.119.243-.23.384-.36.16-.147.32-.32.4-.566.081-.249.08-.572-.075-1.016-.155-.446-.35-.841-.785-1.065a2.975 2.975 0 0 0-.612-.237c-.012-.003-.177-.037-.21-.048a.104.104 0 0 1-.074-.105c.016-.316.095-.59.155-.87.057-.264.096-.534.035-.856-.075-.4-.25-.763-.41-1.129-.167-.384-.319-.773-.34-1.208-.017-.367.158-.731.264-1.075.091-.294.128-.574-.139-.822-.55-.513-1.412-.584-2.112-.75-2.121-.5-4.213-.396-6.34.134-.18.045-1.288.347-1.977.602a3.374 3.374 0 0 0-.415.177.66.66 0 0 0-.084.057Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="M16.547 13.64c1.02.191 2.127-.014 3.158-.005.847.009 1.668.028 2.514-.025.493-.032.978-.035 1.437-.243.293-.134.544-.333.784-.544.232-.203.495-.395.647-.668.818-1.462-1.314-2.485-2.44-2.755-1.025-.246-2.143-.091-3.172.046-.555.073-1.136.122-1.67.3-.367.122-.692.33-1.047.48-.393.166-.86.21-1.225.433-1.212.744-.167 2.67.931 2.973l.083.007Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="m16.533 13.741-.078-.007a.088.088 0 0 1-.018-.003c-.69-.19-1.365-.991-1.517-1.772-.104-.538.033-1.064.56-1.387.368-.227.84-.272 1.238-.44.358-.15.685-.36 1.055-.484.54-.18 1.127-.23 1.688-.304 1.042-.138 2.173-.292 3.21-.043.692.165 1.754.612 2.313 1.264.391.457.545 1.01.193 1.64-.159.283-.43.485-.67.695-.247.217-.506.422-.808.56-.47.214-.968.22-1.473.252-.849.054-1.673.034-2.522.026-1.035-.01-2.146.194-3.171.003Zm.033-.202c1.015.19 2.115-.016 3.14-.006.844.008 1.663.028 2.507-.026.48-.03.953-.03 1.4-.234.285-.13.527-.323.76-.527.223-.195.478-.379.625-.641.302-.54.166-1.015-.17-1.407-.532-.62-1.546-1.04-2.205-1.198-1.013-.243-2.117-.088-3.135.047-.548.073-1.123.12-1.65.296-.365.122-.688.33-1.04.478-.39.164-.851.204-1.212.425-.443.273-.553.72-.465 1.174.137.705.738 1.433 1.362 1.61l.073.007c.003 0 .007 0 .01.002Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="M19.708 14.679c-.087-.483-.515-.726-.956-.83-.817-.191-1.722-.031-2.52-.298a2.182 2.182 0 0 1-.93-.652c-.007-.01-.076-.11-.079-.11-.17.065-.22.32-.234.473-.102 1.083.383 2.393 1.467 2.822.897.355 1.9-.104 2.636-.61.212-.147.62-.402.698-.676l-.082-.12Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m19.805 14.639.07.101a.102.102 0 0 1 .013.086.852.852 0 0 1-.246.36c-.159.15-.361.282-.492.372-.762.524-1.803.989-2.731.621-1.127-.445-1.638-1.802-1.532-2.927.01-.102.035-.246.093-.36a.396.396 0 0 1 .207-.198.102.102 0 0 1 .117.031c.014.017.071.1.078.11a2.072 2.072 0 0 0 .882.618c.39.131.806.156 1.225.173.434.017.871.026 1.286.123.474.112.926.378 1.03.89Zm-4.607-1.709a.347.347 0 0 0-.055.1.917.917 0 0 0-.052.241c-.098 1.042.36 2.305 1.403 2.717.865.343 1.83-.11 2.54-.6.124-.084.317-.208.467-.35a.747.747 0 0 0 .175-.225l-.052-.076a.105.105 0 0 1-.017-.04c-.08-.44-.476-.653-.879-.748-.402-.094-.826-.101-1.248-.118-.437-.018-.873-.046-1.281-.183a2.286 2.286 0 0 1-1-.718Zm5.097 1.954c.163.286.446.472.72.643.25.158.501.319.796.383 1.341.293 2.972-.599 3.02-2.056.012-.36-.072-.736-.17-1.08a9.732 9.732 0 0 0-.106-.313c-.096.044-.131.308-.167.387a.79.79 0 0 1-.477.434c-1.137.386-2.424-.268-3.23.9a3.184 3.184 0 0 0-.35.615l-.036.087Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m20.2 14.846.035-.087a3.29 3.29 0 0 1 .361-.636c.426-.615.975-.754 1.57-.787.556-.03 1.152.039 1.712-.15a.689.689 0 0 0 .417-.38c.024-.055.05-.202.095-.3a.272.272 0 0 1 .122-.138.096.096 0 0 1 .118.023.12.12 0 0 1 .024.042c.018.048.1.293.105.313.102.354.187.741.175 1.111-.05 1.52-1.746 2.459-3.145 2.153-.306-.067-.568-.232-.83-.396-.286-.18-.581-.379-.753-.679a.102.102 0 0 1-.006-.09Zm4.333-2.13c-.02.07-.036.14-.051.174a.892.892 0 0 1-.538.49c-.578.195-1.193.13-1.766.16-.534.03-1.031.147-1.413.7-.131.19-.253.381-.34.595l-.016.04c.159.247.415.411.66.565.241.152.48.308.764.37 1.283.28 2.85-.565 2.896-1.96.011-.348-.071-.714-.167-1.048l-.029-.086Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="M19.906 14.916c-.217.127-.274.527-.52.512-.372-.023-.6.113-.673.599-.021.143-.199.203-.336.25a.441.441 0 0 1-.137.023c-.023 0-.085-.015-.07.002.424.464 1 .768 1.647.613.688-.166 1.374-.937.984-1.642-.199-.36-.575-.108-.824-.298l-.07-.06Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="m19.972 14.837.07.058a.295.295 0 0 0 .153.054c.07.008.145.006.217.009.184.007.357.045.479.266.216.39.138.797-.093 1.13a1.69 1.69 0 0 1-.956.66c-.686.165-1.298-.152-1.747-.643a.102.102 0 0 1-.028-.087.1.1 0 0 1 .053-.078.125.125 0 0 1 .059-.015c.015 0 .045.007.059.007a.343.343 0 0 0 .106-.018c.062-.021.133-.045.191-.08.037-.022.07-.048.077-.088.04-.276.132-.45.26-.555.131-.106.304-.145.52-.131.042.002.072-.02.1-.049a.712.712 0 0 0 .078-.106c.081-.129.163-.272.285-.344a.102.102 0 0 1 .117.01Zm-1.58 1.543c.38.352.864.564 1.402.435.32-.077.64-.296.835-.577.187-.27.257-.6.083-.915-.097-.175-.25-.16-.396-.162-.143-.003-.284-.015-.401-.105a.017.017 0 0 1-.004-.003l-.007-.006a.637.637 0 0 0-.074.095c-.047.07-.088.146-.134.209-.083.114-.181.188-.316.18-.156-.01-.284.008-.378.085-.097.08-.156.216-.188.426a.309.309 0 0 1-.127.202 1.016 1.016 0 0 1-.276.13l-.019.006Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.232 12.085c-.587-.009-1.27.132-1.72.611-.607.647-.473 1.482.392 1.789.32.113.68.114 1.015.12.639.012 1.567-.175 1.924-.775.507-.852-.684-1.73-1.611-1.745Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.233 11.983c.586.01 1.272.347 1.611.809.24.325.313.71.087 1.09-.153.258-.403.446-.693.577-.42.189-.924.256-1.32.248-.347-.006-.719-.009-1.049-.126-.473-.167-.742-.484-.813-.843-.072-.356.052-.76.381-1.112.471-.501 1.183-.652 1.796-.643Zm-.003.205c-.56-.009-1.213.12-1.643.579-.277.295-.39.631-.33.931.059.297.29.551.68.69.31.11.66.108.984.114.37.008.841-.054 1.233-.23.25-.113.469-.272.601-.494.18-.301.114-.607-.076-.865-.305-.415-.922-.717-1.449-.725Z" clip-rule="evenodd"/>
<path fill="#000" fill-rule="evenodd" d="M17.168 11.544a.102.102 0 1 1-.147-.142c.431-.444.977-.37 1.432-.013a.103.103 0 0 1-.127.161c-.367-.29-.81-.364-1.158-.006Zm4.982-.15a.102.102 0 0 1-.167-.12c.138-.192.295-.293.456-.332.363-.087.76.158 1.025.48a.102.102 0 1 1-.158.13c-.214-.26-.525-.48-.819-.41a.59.59 0 0 0-.337.252Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="M27.297 5.94c-.197.428-.134.937-.025 1.381.11.444.246.946.553 1.298.695.795 1.998.945 2.808.261.58-.488.445-1.336.226-1.976-.173-.505-.467-1.051-.903-1.38-.574-.43-1.62-.51-2.301-.302l-.358.717Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="m27.205 5.894.358-.718a.105.105 0 0 1 .062-.052c.71-.217 1.796-.13 2.392.319.453.34.76.904.939 1.428.113.331.204.716.192 1.081-.012.382-.135.743-.449 1.006-.851.719-2.22.564-2.951-.272-.318-.363-.462-.881-.575-1.34-.114-.466-.175-1 .03-1.45l.002-.002Zm.185.09c-.187.408-.122.89-.018 1.313.105.428.233.915.53 1.254.66.755 1.896.9 2.665.25.266-.223.366-.531.376-.855.011-.341-.075-.7-.181-1.009-.167-.486-.447-1.015-.868-1.33-.539-.405-1.512-.484-2.167-.3l-.337.677Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="M14.156 8.057c.812-.777 2.05-1.11 3.117-1.306 1.835-.336 3.729-.488 5.582-.153.908.164 1.737.542 2.596.863.16.06.332.117.469.224.052.04.185.22.24.18.23-.162.174-.558.131-.794-.17-.922-1.035-1.207-1.635-1.79-.14-.135-.72-.594-.445-.828.214-.182.58-.059.778.081.662.47 1.127 1.28 2.012 1.409.395.057.999-.341.9-.783-.057-.25-.282-.446-.43-.644-.375-.503-.805-.951-1.187-1.443-.358-.461-.55-.986-1.001-1.383-.438-.385-1.031-.538-1.504-.877-.402-.287-.634-.719-1.165-.803-.581-.093-1.245.52-1.76.724-.415.164-.876.218-1.27.429-.386.206-.647.584-.989.852-.311.243-.712.36-1.009.625-.62.553-1.356 1.777-1.74 2.519-.311.6-.966.8-1.434 1.225-.426.386-.558 1.196-.39 1.737l.134-.064Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="m14.2 8.15-.135.063a.102.102 0 0 1-.142-.062c-.177-.574-.033-1.433.42-1.843.238-.216.522-.375.787-.555.247-.169.478-.357.625-.641.389-.751 1.135-1.988 1.763-2.549.298-.266.7-.384 1.014-.63.347-.27.612-.652 1.003-.86.398-.213.863-.269 1.28-.434.308-.122.668-.39 1.032-.566.265-.127.532-.205.784-.164.286.045.493.183.682.35.172.152.328.33.526.47.475.341 1.072.497 1.512.884.455.401.652.93 1.014 1.397.383.492.812.941 1.189 1.445.073.098.166.196.247.3a.993.993 0 0 1 .2.382c.046.21-.035.414-.186.576-.212.229-.564.37-.829.33-.464-.067-.819-.31-1.143-.6-.307-.275-.585-.593-.913-.825a.849.849 0 0 0-.415-.153.327.327 0 0 0-.238.066c-.069.059-.032.14.019.222.116.188.35.377.431.455.299.29.663.504.974.762.33.274.601.595.69 1.083.029.151.06.364.028.548a.516.516 0 0 1-.2.348c-.037.027-.085.034-.14.01a.43.43 0 0 1-.118-.086c-.041-.04-.081-.09-.104-.107-.128-.1-.29-.154-.441-.21-.854-.318-1.678-.694-2.58-.857-1.84-.333-3.722-.181-5.545.153-1.048.192-2.267.516-3.064 1.279a.108.108 0 0 1-.027.018Zm-.103-.18c.826-.78 2.077-1.122 3.157-1.32 1.847-.338 3.754-.49 5.62-.153.913.166 1.748.545 2.613.867.17.063.351.127.496.24.023.018.061.06.102.102a.694.694 0 0 0 .05.046.35.35 0 0 0 .082-.186 1.438 1.438 0 0 0-.027-.477c-.08-.434-.326-.717-.62-.961-.315-.261-.683-.48-.986-.773-.086-.084-.337-.29-.463-.494-.11-.18-.128-.357.024-.486a.53.53 0 0 1 .381-.115c.19.01.39.097.523.19.334.237.618.56.93.84.295.263.615.49 1.037.551.209.03.482-.088.65-.268.102-.11.166-.247.134-.39a.786.786 0 0 0-.16-.302c-.083-.105-.177-.205-.25-.304-.376-.502-.805-.95-1.187-1.441-.354-.456-.543-.977-.988-1.369-.435-.383-1.026-.534-1.496-.87-.204-.146-.365-.328-.542-.485-.16-.141-.335-.262-.579-.301-.27-.043-.558.084-.84.239-.306.17-.606.376-.866.48-.412.162-.869.214-1.26.423-.38.203-.636.578-.974.842-.31.242-.709.358-1.003.621-.613.547-1.338 1.757-1.718 2.49-.164.316-.416.528-.691.716-.258.175-.535.328-.765.537-.37.336-.5 1.014-.392 1.516l.008-.004Z" clip-rule="evenodd"/>
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h41v46.33H0z"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

37
images/santa/santa-5.svg Normal file
View File

@ -0,0 +1,37 @@
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="53" fill="none" viewBox="0 0 42 53">
<path fill="#3F1A0A" fill-rule="evenodd" d="M16.25 47.452c-.081.623.082 1.277-.101 1.888a7.295 7.295 0 0 1-.473 1.224c-.184.356-.468.681-.546 1.086-.032.168.014.351.02.52.003.15-.027.337.04.477.233.486 1.002.33 1.432.327 1.04-.008 2.077.004 3.108-.136.389-.053.887-.062 1.2-.334.288-.252.133-.692.09-1.016-.067-.483.031-1.1-.18-1.55-.117-.25-.355-.393-.514-.611-.36-.496-.01-.825-.056-1.354-.002-.025-.063-.495-.11-.505-.292-.067-.628-.022-.927-.034-1.017-.041-2.023.075-3.043.025l.06-.007Zm6.205-.383c-.085.574.085 1.161-.004 1.733-.042.268-.23.476-.32.726a4.918 4.918 0 0 0-.25 2.213c.035.294.112.656.384.831.696.45 2.016.112 2.808.138.638.022 1.26.04 1.897-.008.265-.02.566.031.754-.195.61-.737-.28-1.79-.529-2.487-.103-.29-.194-.592-.343-.864-.137-.25-.354-.46-.466-.723-.102-.239-.1-.495-.123-.75a10.299 10.299 0 0 1-.042-.767c0-.051.027-.204-.022-.239-.216-.152-.796.092-1.028.12-.905.11-1.823.22-2.736.236l.02.036Z" clip-rule="evenodd"/>
<path fill="#F1D88E" fill-rule="evenodd" d="M16.894 48.278c.36.016.733-.034 1.106-.073.419-.044.838-.073 1.24.012a.107.107 0 0 1 .082.089c.01.052.022.306.024.325.017.186 0 .382-.013.576-.01.178-.017.355.025.52a.125.125 0 0 1-.029.123.142.142 0 0 1-.097.043.487.487 0 0 1-.125-.014c-.048-.01-.1-.026-.135-.026-.188-.001-.375-.003-.563 0-.51.005-1.096.143-1.6.091a.107.107 0 0 1-.094-.098c-.006-.051-.002-.302-.002-.319.001-.354.006-.711.037-1.065a.102.102 0 0 1 .05-.19h.062a.09.09 0 0 1 .032.006Zm.06.205c-.03.347-.035.697-.036 1.045v.22c.477.029 1.015-.094 1.49-.099.188-.002.376 0 .565 0a.76.76 0 0 1 .151.025l.015.003a2.218 2.218 0 0 1-.01-.482c.01-.184.03-.37.013-.545a43.652 43.652 0 0 1-.017-.248c-.36-.063-.731-.034-1.104.005-.359.038-.719.085-1.067.076Zm6.319-.296-.066-.195a.102.102 0 0 1 .1-.134c.608.02 1.215.008 1.823.016.08.001.32-.024.487-.006.103.011.182.045.22.087a.28.28 0 0 1 .045.15c.014.18-.026.55-.024.614.008.26.062.514.078.772a.112.112 0 0 1-.063.115.162.162 0 0 1-.093.014c-.028-.002-.065-.016-.088-.014-.146.007-.29.02-.436.031-.642.054-1.29-.07-1.925.022a.096.096 0 0 1-.097-.04.118.118 0 0 1-.02-.077c.002-.081.046-.491.05-.514.058-.288-.004-.554.01-.841Zm.153 1.256c.6-.063 1.209.042 1.813-.008.147-.013.294-.025.442-.033l.043.003c-.021-.226-.064-.45-.07-.68-.003-.055.028-.344.026-.536a.991.991 0 0 0-.007-.102l-.025-.008a.702.702 0 0 0-.12-.013c-.153-.006-.335.013-.4.012-.56-.008-1.12.002-1.68-.013l.026.075a.101.101 0 0 1 .005.038c-.018.305.047.585-.013.889a10.2 10.2 0 0 0-.04.376Z" clip-rule="evenodd"/>
<path fill="#fff" fill-rule="evenodd" d="M15.075 45.006c-.096.3-.111.547-.046.855.088.414.21.852.535 1.151.114.105.26.136.399.193.521.214.984.2 1.542.231.34.02.679.052 1.02.062.488.016.922-.008 1.403-.062.23-.026.489-.044.677-.192.143-.113.194-.286.27-.443.09-.189.133-.377.198-.573.106-.32.216-.574.135-.913-.034-.145-.034-.588-.244-.602-.25-.017-.537.126-.79.148-.786.068-1.58.127-2.37.108a38.875 38.875 0 0 1-2.409-.116c-.236-.021-.487 0-.72-.043m7.447-.209c-.052.088-.322.08-.363.204-.159.478-.187 1.207.32 1.834.186.23.095.386.402.451.288.062.93.059 1.215.02.457-.062.964-.044 1.418-.132.472-.09 1.09-.07 1.455-.414.468-.441.705-.974.741-1.604.011-.19-.155-.689-.39-.79" clip-rule="evenodd"/>
<path fill="#600C13" fill-rule="evenodd" d="M12.714 40.132c.015.404.282 1.475.46 1.824.137.264.232.544.378.805.087.156.12.332.2.49.212.427.491.864.78 1.242.123.163.214.357.385.478.453.319 1.137.169 1.652.173 1.28.013 2.557.094 3.826-.105a.85.85 0 0 0 .547-.386c.09-.155.173-.43.393-.434.247-.005.375.261.543.396.166.132.382.164.586.188.6.073 1.26.12 1.862.058.342-.036 1.798-.183 2.172-.304.296-.096 1.092-.466 1.242-.517.313-.107.608-.372.858-.581.572-.478.579-1.052.643-1.719.055-.568.132-1.126.174-1.696l-16.7.088Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.888 37.766c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.401 7.694-.147.835-.196 5.068-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.092-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.839 37.676c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.01.094-.417 1.023-1.763 2.002-2.65 2.564-1.19.752-5.443 2.227-6.283 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.044-.103a.102.102 0 0 1 .053-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.252-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.397.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.73 34.907c.242.4.826.722 1.305 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.164 1.8.345 2.717.418.781.061 1.568.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475a16.43 16.43 0 0 0 1.603-1.472c.231-.239.222-.246.409-.522.262-.388-.296-1.324-.346-1.274-.269.262-2.21 1.3-3.04 1.87-2.095 1.436-4.816 1.8-7.297 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.278 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.642 34.96c-.064-.105-.086-.277-.073-.474a3.08 3.08 0 0 1 .18-.804c.045-.12.093-.215.134-.268a.214.214 0 0 1 .09-.072.155.155 0 0 1 .083-.001c.053.011.16.06.308.137.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.599 3.027-1.86a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.513.513 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.191.283-.183.29-.42.536a16.76 16.76 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.678-.78-.064-1.566-.024-2.347-.086-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.827-.403-.766-.3-1.477-.828-2.112-1.338-.489-.392-1.08-.723-1.328-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.972 1.815-2.11 1.447-4.85 1.817-7.349 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.056 3.056 0 0 0-.23-.108l-.012.017a1.2 1.2 0 0 0-.084.185c-.078.208-.15.5-.167.748-.01.147-.004.277.043.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.79.393.899.163 1.792.344 2.706.416.782.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.546 16.546 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.067 36.28a.557.557 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .433.054.553.127a.555.555 0 0 1 .252.33c.026.088.046.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308 0-1.007.125-1.513.145-.335.014-.612-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.496-.04 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.008.233.014.346.01l.007-.185c.047-.505.067-.983.002-1.487l-.001-.015c-.201.022-.395.05-.501.051-.811.014-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 30.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 30.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 27.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 27.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.358 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859.026-.026.062-.04.11-.026a.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.277.044.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.478-.06-.225-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 28.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.554.554 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.134.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.067-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M4.342 22.636c-.95.555-1.382.26-2.408.157-.374-.037-1.026-.106-1.308.217-.696.8 1.275.963 1.636 1.058 0 0-.187.272-.207.297a3.348 3.348 0 0 1-.515.513c-.615.49-1.51.854-1.433 1.789.143 1.716 1.82 2.34 3.239 1.496.915-.544 1.619-1.975 2.703-2.653l-1.707-2.874Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M2.09 24.136c-.32-.058-.954-.15-1.34-.345-.218-.11-.359-.259-.373-.436-.009-.119.037-.257.172-.412.127-.147.32-.225.535-.26.294-.048.629-.014.86.01.411.04.728.112 1.02.148.417.051.782.025 1.326-.293a.103.103 0 0 1 .14.036l1.707 2.875a.101.101 0 0 1-.033.138c-.534.333-.972.852-1.391 1.355-.434.52-.848 1.021-1.315 1.298-.74.44-1.55.495-2.19.218-.646-.278-1.128-.89-1.203-1.793-.042-.503.175-.854.489-1.144.293-.27.672-.485.982-.732a3.27 3.27 0 0 0 .5-.498l.115-.165Zm2.215-1.362c-.548.3-.932.322-1.366.27-.291-.037-.606-.108-1.016-.15-.216-.02-.53-.055-.806-.01-.164.026-.315.08-.413.192-.088.101-.128.186-.122.263.009.116.119.198.262.27.445.227 1.23.304 1.444.36.037.01.073.034.076.093 0 .004.005.027-.014.058l-.008.012a15.25 15.25 0 0 1-.207.296 3.418 3.418 0 0 1-.53.529c-.307.244-.682.456-.971.723-.27.249-.46.547-.425.979.068.814.497 1.37 1.08 1.622.587.254 1.326.198 2.004-.205.449-.267.844-.753 1.262-1.254.41-.492.842-.999 1.356-1.344l-1.606-2.704Zm30.905 2.293c.459.427.765.995 1.21 1.44.544.544 1.374.985 2.104 1.232 1.393.472 2.669-.854 2.574-2.212-.058-.82-.752-1.181-1.39-1.562a3.589 3.589 0 0 0-.056-.033l-.082-.048a6.33 6.33 0 0 1-.64-.445c-.027-.021-.105-.04-.08-.064.371-.385 1.144-.279 1.379-.876.162-.412-.345-.75-.689-.786-.522-.056-1.122.249-1.658.289-.636.048-1.196-.165-1.814-.225l-.858 3.29Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M39.009 23.37c.195.152.402.3.614.427l.081.048c.02.01.038.022.057.033.325.194.664.384.93.63.278.257.478.574.509 1.012.1 1.427-1.246 2.81-2.71 2.316-.743-.252-1.588-.703-2.143-1.258-.444-.443-.75-1.01-1.207-1.437a.102.102 0 0 1-.03-.1l.859-3.29a.102.102 0 0 1 .109-.075c.612.06 1.166.272 1.796.225.262-.02.54-.105.816-.178.295-.077.588-.14.861-.111.23.025.526.17.686.381a.538.538 0 0 1 .087.543c-.13.33-.402.47-.699.576-.215.077-.444.133-.616.259Zm-.14.15a.617.617 0 0 1-.073-.038.13.13 0 0 1-.043-.05c-.02-.04-.02-.084.022-.128.197-.203.497-.282.78-.383.242-.087.473-.191.578-.46.065-.163-.01-.31-.13-.422a.881.881 0 0 0-.474-.224c-.25-.027-.517.034-.787.105-.288.076-.578.163-.852.184-.613.045-1.155-.145-1.745-.216l-.82 3.147c.435.422.737.97 1.168 1.4.533.534 1.348.966 2.064 1.208 1.323.448 2.529-.818 2.438-2.109-.026-.38-.202-.654-.444-.878-.256-.235-.583-.417-.896-.603a26.976 26.976 0 0 0-.055-.033l-.083-.049a6.381 6.381 0 0 1-.648-.45Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M10.416 24.074c.216.02.317.453.31.603-.005.128 20.129.036 20.133-.092.006-.169.132-.489.22-.48.302.028.738.536.982.71.63.45 1.325.836 2.035 1.149.101.045 1.005.367 1.029.349.43-.339.646-1.33.878-1.795.225-.45.386-.934.557-1.407.178-.49.336-1.029.614-1.474.09-.144.358-.388.251-.552-.281-.432-.906-.423-1.34-.584-.878-.325-3.696-1.168-4.693-1.883-.485-.348-2.249-1.573-2.712-1.952-.181-.148-.53-.52-.764-.54-.75-.069-14.506-.063-14.661-.022-.627.164-1.409 1.16-1.919 1.572-1.587 1.284-3.4 2.405-5.178 3.406-.586.33-1.214.603-1.83.876a8.73 8.73 0 0 1-.593.237c-.102.037-.343 0-.309.103.045.136 1.055 1.605 1.184 1.797.284.421.52.867.77 1.307.22.388.495.747.723 1.131.075.126.155.25.21.386.028.07.032.273.079.213.756-.964 1.981-1.427 3.009-2.122.1-.068.94-.942 1.015-.936Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M31.095 24.21a.493.493 0 0 0-.04.059.869.869 0 0 0-.094.32c0 .023-.008.07-.068.094-.026.01-.163.024-.397.034-2.137.086-13.041.148-17.68.114-1.167-.009-1.94-.024-2.082-.046-.065-.01-.09-.045-.096-.056a.1.1 0 0 1-.014-.056.885.885 0 0 0-.094-.374.347.347 0 0 0-.068-.094.127.127 0 0 0-.032-.023 1.264 1.264 0 0 0-.071.058c-.26.224-.819.799-.9.854-1.019.689-2.236 1.145-2.986 2.1a.12.12 0 0 1-.09.05.109.109 0 0 1-.083-.029.201.201 0 0 1-.05-.1c-.012-.048-.018-.122-.033-.158-.052-.132-.13-.25-.202-.372-.229-.385-.504-.745-.724-1.133-.25-.438-.484-.882-.766-1.3-.131-.195-1.15-1.685-1.196-1.823a.144.144 0 0 1 0-.097.152.152 0 0 1 .09-.089.498.498 0 0 1 .136-.026c.051-.004.109-.004.145-.017.198-.072.394-.15.587-.235.612-.271 1.238-.543 1.82-.871 1.774-.999 3.581-2.117 5.165-3.397.305-.246.707-.703 1.115-1.063.287-.254.578-.46.841-.529.017-.004.177-.011.454-.014 2.35-.03 13.568-.029 14.243.033.108.01.24.08.37.177.17.126.34.297.45.387.462.377 2.223 1.6 2.707 1.948.992.711 3.796 1.546 4.67 1.87.214.08.476.117.72.188.269.078.515.198.67.436.061.095.048.21-.012.326-.064.122-.184.247-.239.334-.274.44-.43.973-.604 1.456-.173.477-.335.963-.562 1.417-.14.278-.272.745-.448 1.146-.126.286-.276.54-.459.683-.009.008-.05.032-.119.016a14.84 14.84 0 0 1-1.014-.351A11.68 11.68 0 0 1 32 24.898c-.147-.105-.364-.331-.58-.501-.115-.091-.227-.168-.326-.188ZM3.552 22.322c.173.304 1.026 1.54 1.144 1.716.285.422.521.87.773 1.313.22.387.495.745.723 1.13.077.13.16.259.216.4l.015.052c.768-.882 1.933-1.34 2.92-2.008.08-.054.627-.62.88-.84a.73.73 0 0 1 .138-.1.128.128 0 0 1 .064-.013c.118.01.218.102.286.232.064.121.101.274.113.385.235.018.957.03 1.994.037 4.635.034 15.534-.027 17.67-.114.114-.004.217-.012.278-.017.023-.128.08-.287.142-.379.056-.085.129-.119.18-.114.137.013.3.107.46.234.213.169.427.392.573.496a11.46 11.46 0 0 0 2.017 1.138c.086.038.76.28.957.333.145-.13.26-.343.364-.576.178-.405.312-.875.452-1.155.224-.448.383-.926.553-1.396.18-.496.341-1.043.623-1.494.053-.084.17-.204.23-.322.024-.043.046-.085.022-.12-.127-.196-.334-.287-.556-.352-.248-.073-.515-.11-.733-.192-.883-.328-3.715-1.177-4.718-1.896-.486-.349-2.253-1.577-2.717-1.956-.108-.088-.275-.257-.443-.381-.095-.071-.187-.13-.266-.137-.674-.062-11.875-.063-14.222-.033a17.4 17.4 0 0 0-.41.01c-.236.064-.493.254-.75.482-.411.363-.816.821-1.123 1.07-1.592 1.286-3.41 2.41-5.192 3.415-.589.331-1.22.606-1.839.88a9.08 9.08 0 0 1-.6.24.728.728 0 0 1-.168.027.555.555 0 0 0-.05.005Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.822 14.371c-1.011.54-1.821 1.515-1.27 2.67.132.275.351.483.596.66.016.012.29.16.288.171-.033.288-.272.595-.367.866-.262.743.098 1.715.679 2.236.226.203.511.322.807.384.037.008.44.044.443.054.223.689-.305 1.761.527 2.288.679.43 1.913-.08 2.043-.011.062.032.175.334.264.415.582.523 1.643.924 2.414.679.422-.134.796-.525 1.008-.903.008-.014.055-.13.064-.13.243 0 .505.13.747.166.85.125 1.762-.177 2.328-.836.243-.282.429-.611.406-.995-.012-.201-.316-.41-.197-.573.295-.407 1.162-.089 1.63-1.017.375-.743.54-1.598.264-2.396a1.424 1.424 0 0 0-.322-.536c-.015-.016-.212-.163-.21-.17.106-.569 1.404-.712.857-2.276-.163-.469-.374-.88-.835-1.114a3.076 3.076 0 0 0-.633-.243c-.013-.004-.207-.043-.207-.049.03-.615.315-1.068.189-1.738-.154-.81-.708-1.467-.749-2.306-.034-.706.695-1.396.093-1.953-.564-.521-1.442-.601-2.16-.77-2.137-.5-4.244-.396-6.387.134-.26.064-2.422.651-2.54.879-.17.324.103.868.056 1.222-.055.42-.306.783-.305 1.215.001.617.302 1.152.413 1.748.136.725.106 1.516.136 2.256l-.07-.027Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.785 14.277c-.023-.699-.003-1.437-.13-2.117-.112-.601-.413-1.143-.415-1.765 0-.229.064-.439.137-.647.068-.19.143-.38.17-.583.027-.204-.06-.474-.097-.725-.028-.197-.026-.383.05-.53a.252.252 0 0 1 .072-.079 1.34 1.34 0 0 1 .264-.14c.627-.27 2.062-.66 2.271-.711 2.16-.534 4.283-.64 6.436-.134.733.171 1.63.26 2.206.794.335.31.31.656.195 1.025-.1.32-.272.656-.255.997.02.407.165.769.323 1.128.166.377.345.752.423 1.165.067.35.026.643-.036.93-.052.242-.121.48-.145.748l.125.028a3.2 3.2 0 0 1 .654.251c.485.248.713.678.885 1.172.174.498.168.86.077 1.138-.092.282-.272.481-.457.65-.113.103-.227.194-.318.286a.593.593 0 0 0-.14.199c.057.044.157.124.168.134.158.16.273.364.345.575.284.825.117 1.707-.27 2.475-.299.593-.749.712-1.131.803-.114.028-.221.052-.314.09a.415.415 0 0 0-.193.137c-.014.02-.008.04 0 .063a.536.536 0 0 0 .053.095c.072.113.157.234.164.35.024.411-.171.766-.43 1.067-.59.686-1.537 1-2.423.87-.217-.032-.45-.143-.67-.162l-.036.076c-.224.398-.62.808-1.066.95-.803.255-1.908-.156-2.514-.701-.06-.053-.131-.193-.191-.306a1.454 1.454 0 0 0-.053-.088.767.767 0 0 0-.047.005c-.064.01-.15.03-.252.052-.277.06-.663.143-1.033.133-.26-.007-.512-.06-.717-.189-.45-.285-.54-.715-.54-1.17 0-.384.07-.788-.012-1.113-.108-.012-.358-.04-.384-.045a1.828 1.828 0 0 1-.855-.409c-.608-.546-.98-1.566-.707-2.344.049-.14.135-.289.213-.44.059-.115.114-.23.139-.343-.076-.044-.226-.13-.237-.139-.258-.187-.488-.408-.627-.699-.578-1.21.254-2.238 1.314-2.802a.093.093 0 0 1 .01-.005Zm-.104-6.27c-.073.144-.043.336-.006.531.043.232.1.468.075.654-.029.217-.107.42-.179.623-.066.187-.126.375-.126.58.002.61.302 1.138.412 1.728.136.73.107 1.526.137 2.27a.102.102 0 0 1-.14.1l-.024-.01c-.946.518-1.703 1.43-1.185 2.514.124.26.333.455.563.622.015.01.238.133.282.165.053.039.05.088.048.1-.018.155-.09.316-.171.474-.074.142-.155.282-.202.414-.248.707.099 1.63.652 2.126.213.19.48.302.76.36.032.008.36.037.428.05.069.013.088.063.09.073.115.353.04.805.04 1.236 0 .385.063.755.445.997.175.111.39.152.612.158.352.01.72-.071.984-.13.141-.03.255-.055.324-.06a.219.219 0 0 1 .116.017c.028.015.07.06.109.128.055.096.119.25.176.301.558.502 1.574.893 2.314.658.399-.127.749-.499.95-.855.007-.015.052-.12.068-.14a.104.104 0 0 1 .085-.043c.248 0 .515.13.762.167.816.12 1.691-.168 2.235-.8.226-.263.403-.567.382-.924a.31.31 0 0 0-.056-.135c-.037-.061-.082-.122-.114-.18-.064-.116-.08-.226-.008-.324.13-.18.36-.242.625-.305.335-.08.734-.177.996-.698.363-.719.525-1.545.26-2.318a1.326 1.326 0 0 0-.299-.497c-.014-.015-.173-.133-.203-.162a.105.105 0 0 1-.035-.098.635.635 0 0 1 .153-.295c.1-.118.243-.229.384-.358.16-.145.32-.317.4-.561.08-.248.079-.568-.075-1.01-.155-.443-.35-.835-.786-1.056a2.982 2.982 0 0 0-.611-.236c-.013-.003-.177-.037-.21-.048a.103.103 0 0 1-.074-.104c.015-.313.095-.586.155-.864.056-.262.095-.53.035-.85-.075-.397-.25-.757-.41-1.12-.168-.382-.32-.768-.34-1.2-.018-.365.158-.726.264-1.067.09-.292.127-.57-.14-.816-.55-.51-1.411-.58-2.112-.745-2.121-.497-4.212-.393-6.34.133-.18.044-1.288.344-1.977.597a3.4 3.4 0 0 0-.414.176.677.677 0 0 0-.084.057Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="M16.65 13.644c1.02.19 2.127-.014 3.157-.004.847.008 1.669.027 2.515-.026.492-.031.978-.034 1.437-.241.293-.133.543-.33.784-.54.231-.201.494-.392.647-.664.818-1.45-1.314-2.466-2.44-2.735-1.025-.244-2.143-.09-3.173.046-.555.073-1.136.12-1.669.298-.367.122-.693.329-1.048.477-.393.164-.86.207-1.225.43-1.211.738-.167 2.65.932 2.952l.082.007Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="m16.636 13.745-.078-.007a.088.088 0 0 1-.018-.003c-.691-.19-1.365-.985-1.517-1.76-.105-.534.033-1.057.559-1.377.369-.225.84-.27 1.239-.437.357-.15.685-.357 1.055-.48.54-.179 1.127-.228 1.688-.302 1.041-.137 2.172-.29 3.21-.043.692.165 1.753.608 2.312 1.255.392.453.546 1.004.194 1.628-.159.282-.43.482-.67.69-.248.216-.507.42-.809.556-.47.213-.967.219-1.473.25-.848.054-1.672.035-2.522.027-1.035-.01-2.146.192-3.17.003Zm.033-.201c1.014.189 2.114-.016 3.14-.006.844.008 1.663.028 2.506-.026.48-.03.954-.03 1.401-.232.284-.128.526-.32.76-.523.222-.194.478-.376.625-.637.302-.536.166-1.008-.17-1.397-.532-.616-1.546-1.033-2.205-1.19-1.013-.24-2.118-.087-3.135.048-.549.072-1.123.118-1.65.293-.366.121-.688.328-1.04.475-.39.162-.852.203-1.212.422-.444.27-.553.714-.465 1.165.137.7.737 1.424 1.361 1.6l.073.006c.004 0 .007 0 .01.002Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="M19.81 14.676c-.087-.48-.514-.72-.956-.824-.817-.19-1.721-.031-2.52-.296a2.187 2.187 0 0 1-.929-.647c-.008-.01-.076-.11-.08-.109-.169.064-.22.317-.234.468-.101 1.076.384 2.377 1.468 2.803.896.352 1.9-.104 2.635-.606.213-.146.62-.4.698-.671l-.081-.118Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m19.907 14.636.07.1a.1.1 0 0 1 .014.086.845.845 0 0 1-.246.357c-.159.15-.362.28-.493.37-.761.52-1.803.981-2.73.617-1.127-.443-1.638-1.79-1.533-2.907.01-.102.035-.244.094-.357a.395.395 0 0 1 .207-.197.102.102 0 0 1 .117.031c.013.016.07.1.078.109a2.076 2.076 0 0 0 .882.614c.39.13.806.154 1.224.171.435.018.872.026 1.287.123.474.11.925.375 1.03.883Zm-4.606-1.697a.346.346 0 0 0-.055.1.902.902 0 0 0-.053.24c-.097 1.033.361 2.287 1.404 2.697.864.34 1.83-.11 2.54-.595.123-.085.316-.207.467-.35a.74.74 0 0 0 .174-.222l-.052-.075a.103.103 0 0 1-.016-.04c-.08-.437-.477-.649-.879-.743-.402-.093-.826-.1-1.248-.117-.438-.018-.873-.046-1.281-.182a2.285 2.285 0 0 1-.977-.68l-.024-.033Zm5.096 1.941c.164.283.447.468.72.638.251.156.502.316.796.38 1.342.291 2.973-.595 3.02-2.041.013-.357-.071-.731-.17-1.073a9.412 9.412 0 0 0-.106-.31c-.095.043-.13.306-.166.384a.788.788 0 0 1-.478.431c-1.136.383-2.423-.266-3.23.893a3.153 3.153 0 0 0-.35.611l-.036.087Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m20.302 14.841.036-.086c.092-.227.22-.43.361-.631.425-.611.975-.749 1.57-.781.556-.03 1.152.038 1.711-.15a.687.687 0 0 0 .417-.376c.025-.056.05-.201.096-.299a.27.27 0 0 1 .122-.137.096.096 0 0 1 .117.024.12.12 0 0 1 .025.041c.018.048.1.291.105.31.101.352.187.737.174 1.104-.05 1.51-1.745 2.441-3.145 2.138-.306-.067-.567-.231-.829-.394-.286-.178-.581-.376-.754-.674a.101.101 0 0 1-.006-.089Zm4.334-2.114c-.02.07-.036.138-.052.173a.89.89 0 0 1-.538.486c-.577.194-1.192.13-1.766.16-.534.029-1.03.145-1.412.693-.132.19-.254.38-.34.592l-.016.04c.158.245.414.408.66.56.24.15.48.306.763.368 1.284.278 2.85-.561 2.896-1.946.012-.346-.07-.71-.166-1.04l-.03-.086Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="M20.009 14.911c-.218.126-.274.524-.52.508-.373-.023-.601.113-.674.595-.02.142-.198.201-.335.249a.441.441 0 0 1-.138.022c-.023 0-.084-.015-.069.002.424.46 1 .763 1.647.608.688-.163 1.374-.929.984-1.63-.2-.357-.576-.107-.824-.295l-.071-.059Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="m20.075 14.833.069.057a.298.298 0 0 0 .154.054c.07.008.144.006.216.009.184.007.358.044.48.264.215.386.137.792-.094 1.123-.223.32-.59.567-.956.654-.685.164-1.298-.15-1.746-.638a.1.1 0 0 1-.029-.087.1.1 0 0 1 .053-.077.127.127 0 0 1 .06-.015c.015 0 .044.007.058.007a.347.347 0 0 0 .106-.018.887.887 0 0 0 .192-.08c.037-.021.07-.046.076-.087.041-.274.133-.447.26-.55.132-.106.305-.145.521-.131.041.002.072-.02.1-.048a.704.704 0 0 0 .078-.106c.08-.127.162-.27.284-.341a.102.102 0 0 1 .117.01Zm-1.58 1.532c.38.349.864.56 1.401.432.32-.077.641-.294.836-.573.187-.268.257-.596.082-.91-.096-.172-.25-.157-.396-.16-.143-.002-.283-.014-.4-.103l-.004-.003-.008-.007a.63.63 0 0 0-.074.095c-.046.069-.088.145-.134.207-.082.113-.18.187-.315.178-.157-.01-.284.008-.378.085-.098.079-.157.215-.188.423a.306.306 0 0 1-.127.2 1.017 1.017 0 0 1-.295.136Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.334 12.1c-.586-.008-1.269.131-1.72.607-.606.642-.473 1.471.392 1.776.32.113.68.113 1.016.12.639.012 1.567-.174 1.924-.77.506-.846-.685-1.718-1.612-1.732Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.336 11.999c.586.01 1.271.344 1.61.803.24.323.314.706.088 1.083-.153.256-.403.443-.694.573-.42.187-.924.254-1.32.246-.347-.007-.718-.009-1.048-.125-.473-.167-.742-.481-.814-.838-.071-.353.052-.755.382-1.103.47-.498 1.183-.648 1.796-.639Zm-.003.204c-.56-.009-1.214.12-1.644.574-.277.293-.39.627-.33.925.06.295.29.547.681.685.31.11.659.107.984.114.37.007.84-.054 1.232-.23.251-.111.47-.27.602-.49.179-.299.114-.602-.076-.858-.306-.413-.923-.712-1.45-.72Z" clip-rule="evenodd"/>
<path fill="#000" fill-rule="evenodd" d="M17.27 11.564a.103.103 0 0 1-.144.002.102.102 0 0 1-.003-.144c.432-.44.978-.368 1.433-.012a.102.102 0 0 1 .017.143.103.103 0 0 1-.144.016c-.368-.287-.81-.361-1.159-.005Zm4.983-.15a.103.103 0 0 1-.143.024.101.101 0 0 1-.024-.142.787.787 0 0 1 .456-.33c.362-.087.76.156 1.025.475a.102.102 0 0 1-.014.144.103.103 0 0 1-.145-.014c-.214-.258-.525-.477-.819-.407a.59.59 0 0 0-.336.25Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="M27.4 5.999c-.197.426-.134.93-.025 1.371.11.441.245.94.552 1.289.696.79 1.998.938 2.809.26.579-.485.445-1.327.225-1.963-.173-.501-.466-1.044-.903-1.37-.573-.427-1.619-.507-2.3-.3l-.358.713Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="m27.308 5.953.358-.712a.104.104 0 0 1 .062-.052c.709-.215 1.795-.129 2.392.316.453.338.759.898.938 1.418.114.33.204.712.192 1.074-.012.38-.135.737-.448 1-.852.712-2.221.559-2.952-.271-.318-.361-.462-.876-.575-1.331-.114-.463-.175-.992.031-1.439l.002-.003Zm.184.09c-.186.404-.121.884-.018 1.303.106.426.234.909.53 1.246.66.75 1.896.893 2.666.249.266-.223.365-.528.376-.85.01-.339-.076-.695-.182-1.002-.166-.483-.446-1.008-.867-1.32-.54-.403-1.513-.48-2.168-.298l-.337.672Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="M14.258 8.1c.812-.77 2.05-1.101 3.117-1.296 1.835-.333 3.73-.484 5.582-.151.908.163 1.738.538 2.597.856.16.06.332.117.468.223.052.04.186.218.24.18.23-.162.175-.555.132-.79-.17-.915-1.035-1.198-1.635-1.777-.14-.134-.721-.59-.445-.822.214-.18.58-.059.778.08.662.466 1.126 1.27 2.012 1.399.395.057.998-.339.899-.777-.057-.248-.281-.443-.429-.64-.376-.499-.805-.944-1.187-1.433-.358-.457-.551-.979-1.002-1.372-.437-.383-1.03-.535-1.503-.871-.402-.286-.634-.714-1.165-.798-.582-.092-1.246.516-1.76.719-.415.163-.876.217-1.271.426-.386.204-.646.58-.988.846-.312.241-.713.358-1.009.62-.62.55-1.356 1.765-1.74 2.501-.312.597-.966.795-1.435 1.217-.426.383-.557 1.188-.39 1.725l.134-.064Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="m14.303 8.193-.135.063a.103.103 0 0 1-.142-.062c-.177-.57-.033-1.423.42-1.83.237-.214.522-.372.787-.55.247-.168.477-.355.624-.637.39-.746 1.136-1.974 1.764-2.53.298-.265.7-.382 1.014-.626.346-.27.612-.648 1.002-.855.399-.211.863-.266 1.282-.43.307-.121.667-.388 1.03-.562.265-.126.532-.203.784-.163.287.045.494.182.683.347.171.151.327.327.525.468.476.338 1.072.492 1.512.877.456.399.652.924 1.015 1.387.382.489.812.934 1.188 1.434.074.098.166.195.248.299a1 1 0 0 1 .199.38c.047.208-.034.41-.185.57-.213.228-.564.368-.83.33-.463-.068-.818-.31-1.143-.598-.306-.273-.585-.588-.913-.819a.853.853 0 0 0-.415-.151.328.328 0 0 0-.237.066c-.07.058-.033.138.018.22.117.187.352.374.432.451.298.287.663.501.973.757.33.272.602.59.691 1.075.028.15.06.362.027.544a.511.511 0 0 1-.2.346c-.037.027-.085.034-.14.01a.43.43 0 0 1-.117-.086c-.042-.04-.082-.088-.105-.106-.128-.1-.29-.152-.44-.208-.854-.316-1.678-.69-2.58-.851-1.84-.331-3.722-.18-5.545.152-1.048.19-2.267.512-3.065 1.27a.107.107 0 0 1-.027.018Zm-.104-.177c.827-.777 2.078-1.115 3.158-1.312 1.847-.335 3.753-.486 5.619-.152.913.165 1.749.541 2.614.861.17.063.35.126.495.238.023.018.061.06.102.101a.694.694 0 0 0 .051.046.347.347 0 0 0 .081-.184 1.418 1.418 0 0 0-.026-.474c-.08-.43-.326-.712-.62-.955-.315-.259-.684-.476-.986-.767-.087-.083-.337-.288-.463-.49-.111-.179-.128-.355.023-.483a.534.534 0 0 1 .382-.114c.19.01.39.096.522.19.334.235.619.554.931.832.295.262.615.487 1.036.548.21.03.482-.087.65-.266.103-.11.167-.246.135-.388a.778.778 0 0 0-.161-.299c-.082-.105-.176-.203-.25-.302-.376-.499-.804-.943-1.186-1.431-.354-.453-.543-.97-.988-1.36-.435-.38-1.026-.53-1.496-.863-.204-.145-.365-.326-.542-.481-.16-.14-.335-.26-.58-.3-.27-.042-.557.084-.839.238-.307.168-.606.373-.867.476-.411.162-.868.213-1.26.42-.38.202-.636.575-.973.837-.31.24-.709.355-1.004.616-.613.543-1.338 1.744-1.718 2.472-.163.315-.416.525-.69.711-.258.174-.535.326-.766.534-.37.333-.499 1.006-.391 1.505l.008-.004Z" clip-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

42
images/santa/santa-6.svg Normal file
View File

@ -0,0 +1,42 @@
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="60" fill="none" viewBox="0 0 42 60">
<path fill="#3F1A0A" fill-rule="evenodd" d="M16.25 54.452c-.081.623.082 1.277-.101 1.888a7.295 7.295 0 0 1-.473 1.224c-.184.356-.468.681-.546 1.086-.032.168.014.351.02.52.003.15-.027.337.04.477.233.486 1.002.33 1.432.327 1.04-.008 2.077.004 3.108-.136.389-.053.887-.062 1.2-.334.288-.252.133-.692.09-1.016-.067-.483.031-1.1-.18-1.55-.117-.25-.355-.393-.514-.611-.36-.496-.01-.825-.056-1.354-.002-.025-.063-.495-.11-.505-.292-.067-.628-.022-.927-.034-1.017-.041-2.023.075-3.043.025l.06-.007Zm6.205-.383c-.085.574.085 1.161-.004 1.733-.042.268-.23.476-.32.726a4.919 4.919 0 0 0-.25 2.213c.035.294.112.656.384.831.696.45 2.016.112 2.808.138.638.022 1.26.04 1.897-.008.265-.02.566.031.754-.195.61-.737-.28-1.79-.529-2.487-.103-.29-.194-.592-.343-.864-.137-.25-.354-.46-.466-.723-.102-.239-.1-.495-.123-.75a10.299 10.299 0 0 1-.042-.767c0-.051.027-.204-.022-.239-.216-.152-.796.092-1.028.12-.905.11-1.823.22-2.736.236l.02.036Z" clip-rule="evenodd"/>
<path fill="#F1D88E" fill-rule="evenodd" d="M16.894 55.278c.36.016.733-.034 1.106-.073.419-.044.838-.073 1.24.012a.107.107 0 0 1 .082.089c.01.052.022.306.024.325.017.186 0 .382-.013.576-.011.178-.017.355.025.52a.125.125 0 0 1-.029.123.142.142 0 0 1-.097.043.487.487 0 0 1-.125-.014c-.048-.01-.1-.026-.135-.026-.188-.001-.375-.003-.563 0-.51.005-1.096.143-1.6.091a.107.107 0 0 1-.095-.098c-.005-.051 0-.302 0-.319 0-.354.005-.711.036-1.065a.102.102 0 0 1 .05-.19h.062a.09.09 0 0 1 .032.006Zm.06.205c-.03.347-.035.697-.036 1.045v.22c.477.029 1.015-.094 1.49-.099.188-.002.376 0 .565 0a.76.76 0 0 1 .151.025l.015.003a2.218 2.218 0 0 1-.01-.482c.01-.184.03-.37.013-.545a43.652 43.652 0 0 1-.017-.248c-.36-.063-.731-.034-1.104.005-.359.038-.719.085-1.067.076Zm6.319-.296-.066-.195a.102.102 0 0 1 .1-.134c.608.02 1.215.008 1.823.016.08.001.32-.024.487-.006.103.011.182.045.22.087a.28.28 0 0 1 .045.15c.014.18-.026.55-.024.614.008.26.062.514.078.772a.112.112 0 0 1-.063.115.162.162 0 0 1-.093.014c-.028-.002-.065-.016-.088-.014-.146.007-.29.02-.436.031-.642.054-1.29-.07-1.925.022a.096.096 0 0 1-.097-.04.118.118 0 0 1-.02-.077c.002-.081.046-.491.05-.514.058-.288-.004-.554.01-.841Zm.153 1.256c.6-.063 1.209.042 1.813-.008.147-.013.294-.025.442-.033l.043.003c-.021-.226-.064-.45-.07-.68-.003-.055.028-.344.026-.536 0-.037-.005-.08-.007-.102l-.025-.008a.702.702 0 0 0-.12-.013c-.153-.006-.335.013-.4.012-.56-.008-1.12.002-1.68-.013l.026.075a.101.101 0 0 1 .005.038c-.018.305.047.585-.013.889a10.2 10.2 0 0 0-.04.376Z" clip-rule="evenodd"/>
<path fill="#fff" fill-rule="evenodd" d="M15.075 52.006c-.096.3-.111.547-.046.855.088.414.21.852.535 1.151.114.105.26.136.399.193.521.214.984.2 1.542.231.34.02.679.052 1.02.062.488.016.922-.008 1.403-.062.23-.026.489-.044.677-.192.143-.113.194-.286.27-.443.09-.189.133-.377.198-.573.106-.32.216-.574.135-.913-.034-.145-.034-.588-.244-.602-.25-.017-.537.126-.79.148-.786.068-1.58.127-2.37.108a38.875 38.875 0 0 1-2.409-.116c-.236-.021-.487 0-.72-.043m7.447-.209c-.052.088-.322.08-.363.204-.159.478-.187 1.207.32 1.834.186.23.095.386.402.451.288.062.93.059 1.215.02.457-.062.964-.044 1.418-.132.472-.09 1.09-.07 1.455-.414.468-.441.705-.974.741-1.604.011-.19-.155-.689-.39-.79" clip-rule="evenodd"/>
<path fill="#600C13" fill-rule="evenodd" d="M12.714 47.132c.015.404.282 1.475.46 1.824.137.264.232.544.378.805.087.156.12.332.2.49.212.427.491.864.78 1.242.123.163.214.357.385.478.453.319 1.137.169 1.652.173 1.28.013 2.557.094 3.826-.105a.85.85 0 0 0 .547-.386c.09-.155.173-.43.393-.434.247-.005.375.261.543.396.166.132.382.164.586.188.6.073 1.26.12 1.862.058.342-.036 1.798-.183 2.172-.304.296-.096 1.092-.466 1.242-.517.313-.107.608-.372.858-.581.572-.478.579-1.052.643-1.719.055-.568.132-1.126.174-1.696l-16.7.088Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.888 44.766c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.401 7.694-.147.835-.196 5.068-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.092-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.839 44.676c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.01.094-.417 1.023-1.763 2.002-2.65 2.564-1.19.752-5.443 2.227-6.283 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.044-.103a.102.102 0 0 1 .053-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.252-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.397.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.73 41.907c.242.4.826.722 1.305 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.164 1.8.345 2.717.418.781.061 1.568.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475a16.43 16.43 0 0 0 1.603-1.472c.231-.239.222-.246.409-.522.262-.388-.296-1.324-.346-1.274-.269.262-2.21 1.3-3.04 1.87-2.095 1.436-4.816 1.8-7.297 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.278 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.642 41.96c-.064-.105-.086-.277-.073-.474a3.08 3.08 0 0 1 .18-.804c.045-.12.093-.215.134-.268a.214.214 0 0 1 .09-.072.155.155 0 0 1 .083-.001c.053.011.16.06.308.137.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.599 3.027-1.86a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.513.513 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.191.283-.183.29-.42.536a16.76 16.76 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.678-.78-.064-1.566-.024-2.347-.086-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.827-.403-.766-.3-1.477-.828-2.112-1.338-.489-.392-1.08-.723-1.328-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.972 1.815-2.11 1.447-4.85 1.817-7.349 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.056 3.056 0 0 0-.23-.108l-.012.017a1.2 1.2 0 0 0-.084.185c-.078.208-.15.5-.167.748-.01.147-.004.277.043.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.79.393.899.163 1.792.344 2.706.416.782.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.546 16.546 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.067 43.28a.557.557 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .433.054.553.127a.555.555 0 0 1 .252.33c.026.088.046.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308 0-1.007.125-1.513.145-.335.014-.612-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.496-.04 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.008.233.014.346.01l.007-.185c.047-.505.067-.983.002-1.487l-.001-.015c-.201.022-.395.05-.501.051-.811.014-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 37.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 37.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 34.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 34.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 35.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 30.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 30.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 27.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 27.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.358 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859.026-.026.062-.04.11-.026a.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.277.044.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.478-.06-.225-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 28.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.134.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M4.342 22.636c-.95.555-1.382.26-2.408.157-.374-.037-1.026-.106-1.308.217-.696.8 1.275.963 1.636 1.058 0 0-.187.272-.207.297a3.348 3.348 0 0 1-.515.513c-.615.49-1.51.854-1.433 1.789.143 1.716 1.82 2.34 3.239 1.496.915-.544 1.619-1.975 2.703-2.653l-1.707-2.874Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M2.09 24.136c-.32-.058-.954-.15-1.34-.345-.218-.11-.359-.259-.373-.436-.009-.119.037-.257.172-.412.127-.147.32-.225.535-.26.294-.048.629-.014.86.01.411.04.728.112 1.02.148.417.051.782.025 1.326-.293a.103.103 0 0 1 .14.036l1.707 2.875a.101.101 0 0 1-.033.138c-.534.333-.972.852-1.391 1.355-.434.52-.848 1.021-1.315 1.298-.74.44-1.55.495-2.19.218-.646-.278-1.128-.89-1.203-1.793-.042-.503.175-.854.489-1.144.293-.27.672-.485.982-.732a3.27 3.27 0 0 0 .5-.498l.115-.165Zm2.215-1.362c-.548.3-.932.322-1.366.27-.291-.037-.606-.108-1.016-.15-.216-.02-.53-.055-.806-.01-.164.026-.315.08-.413.192-.088.101-.128.186-.122.263.009.116.119.198.262.27.445.227 1.23.304 1.444.36.037.01.073.034.076.093 0 .004.005.027-.014.058l-.008.012a15.25 15.25 0 0 1-.207.296 3.418 3.418 0 0 1-.53.529c-.307.244-.682.456-.971.723-.27.249-.46.547-.425.979.068.814.497 1.37 1.08 1.622.587.254 1.326.198 2.004-.205.449-.267.844-.753 1.262-1.254.41-.492.842-.999 1.356-1.344l-1.606-2.704Zm30.905 2.293c.459.427.765.995 1.21 1.44.544.544 1.374.985 2.104 1.232 1.393.472 2.669-.854 2.574-2.212-.058-.82-.752-1.181-1.39-1.562a3.589 3.589 0 0 0-.056-.033l-.082-.048a6.307 6.307 0 0 1-.64-.445c-.027-.021-.105-.04-.08-.064.371-.385 1.144-.279 1.379-.876.162-.412-.345-.75-.689-.786-.522-.056-1.122.249-1.658.289-.636.048-1.196-.165-1.814-.225l-.858 3.29Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M39.009 23.37c.195.152.402.3.614.427l.081.048c.02.01.038.022.057.033.325.194.664.384.93.63.278.257.478.574.509 1.012.1 1.427-1.246 2.81-2.71 2.316-.743-.252-1.588-.703-2.143-1.258-.444-.443-.75-1.01-1.207-1.437a.102.102 0 0 1-.03-.1l.859-3.29a.102.102 0 0 1 .109-.075c.612.06 1.166.272 1.796.225.262-.02.54-.105.816-.178.295-.077.588-.14.861-.111.23.025.526.17.686.381a.538.538 0 0 1 .087.543c-.13.33-.402.47-.699.576-.215.077-.444.133-.616.259Zm-.14.15a.617.617 0 0 1-.073-.038.129.129 0 0 1-.043-.05c-.02-.04-.02-.084.022-.128.197-.203.497-.282.78-.383.242-.087.473-.191.578-.46.065-.163-.01-.31-.13-.422a.881.881 0 0 0-.474-.224c-.25-.027-.517.034-.787.105-.288.076-.578.163-.852.184-.613.045-1.155-.145-1.745-.216l-.82 3.147c.435.422.737.97 1.168 1.4.533.534 1.348.966 2.064 1.208 1.323.448 2.529-.818 2.438-2.109-.026-.38-.202-.654-.444-.878-.256-.235-.583-.417-.896-.603a27.084 27.084 0 0 0-.055-.033l-.083-.049a6.381 6.381 0 0 1-.648-.45Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M10.416 24.074c.216.02.317.453.31.603-.005.128 20.129.036 20.133-.092.006-.169.132-.489.22-.48.302.028.738.536.982.71.63.45 1.325.836 2.035 1.149.101.045 1.005.367 1.029.349.43-.339.646-1.33.878-1.795.225-.45.386-.934.557-1.407.178-.49.336-1.029.614-1.474.09-.144.358-.388.251-.552-.281-.432-.906-.423-1.34-.584-.878-.325-3.696-1.168-4.693-1.883-.485-.348-2.249-1.573-2.712-1.952-.181-.148-.53-.52-.764-.54-.75-.069-14.506-.063-14.661-.022-.627.164-1.409 1.16-1.919 1.572-1.587 1.284-3.4 2.405-5.178 3.406-.586.33-1.214.603-1.83.876a8.727 8.727 0 0 1-.593.237c-.102.037-.343 0-.309.103.045.136 1.055 1.605 1.184 1.797.284.421.52.867.77 1.307.22.388.495.747.723 1.131.075.126.155.25.21.386.028.07.032.273.079.213.756-.964 1.981-1.427 3.009-2.122.1-.068.94-.942 1.015-.936Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M31.095 24.21a.493.493 0 0 0-.04.059.869.869 0 0 0-.094.32c0 .023-.008.07-.068.094-.026.01-.163.024-.397.034-2.137.086-13.041.148-17.68.114-1.167-.009-1.94-.024-2.082-.046-.065-.01-.09-.045-.096-.056a.1.1 0 0 1-.014-.056.885.885 0 0 0-.094-.374.347.347 0 0 0-.068-.094.127.127 0 0 0-.032-.023 1.264 1.264 0 0 0-.071.058c-.26.224-.819.799-.9.854-1.019.689-2.236 1.145-2.986 2.1a.12.12 0 0 1-.09.05.109.109 0 0 1-.083-.029.201.201 0 0 1-.05-.1c-.012-.048-.018-.122-.033-.158-.052-.132-.13-.25-.202-.372-.229-.385-.504-.745-.724-1.133-.25-.438-.484-.882-.766-1.3-.131-.195-1.15-1.685-1.196-1.823a.144.144 0 0 1 0-.097.152.152 0 0 1 .09-.089.498.498 0 0 1 .136-.026c.051-.004.109-.004.145-.017.198-.072.394-.15.587-.235.612-.271 1.238-.543 1.82-.871 1.774-.999 3.581-2.117 5.165-3.397.305-.246.707-.703 1.115-1.063.287-.254.578-.46.841-.529.017-.004.177-.011.454-.014 2.35-.03 13.568-.029 14.243.033.108.01.24.08.37.177.17.126.34.297.45.387.462.377 2.223 1.6 2.707 1.948.992.711 3.796 1.546 4.67 1.87.214.08.476.117.72.188.269.078.515.198.67.436.061.095.048.21-.012.326-.064.122-.184.247-.239.334-.274.44-.43.973-.604 1.456-.173.477-.335.963-.562 1.417-.14.278-.272.745-.448 1.146-.126.286-.276.54-.459.683-.009.008-.05.032-.119.016a14.84 14.84 0 0 1-1.014-.351A11.68 11.68 0 0 1 32 24.898c-.147-.105-.364-.331-.58-.501-.115-.091-.227-.168-.326-.188ZM3.552 22.322c.173.304 1.026 1.54 1.144 1.716.285.422.521.87.773 1.313.22.387.495.745.723 1.13.077.13.16.259.216.4l.015.052c.768-.882 1.933-1.34 2.92-2.008.08-.054.627-.62.88-.84a.73.73 0 0 1 .138-.1.128.128 0 0 1 .064-.013c.118.01.218.102.286.232.064.121.101.274.113.385.235.018.957.03 1.994.037 4.635.034 15.534-.027 17.67-.114.114-.004.217-.012.278-.017.023-.128.08-.287.142-.379.056-.085.129-.119.18-.114.137.013.3.107.46.234.213.169.427.392.573.496a11.46 11.46 0 0 0 2.017 1.138c.086.038.76.28.957.333.145-.13.26-.343.364-.576.178-.405.312-.875.452-1.155.224-.448.383-.926.553-1.396.18-.496.341-1.043.623-1.494.053-.084.17-.204.23-.322.024-.043.046-.085.022-.12-.127-.196-.334-.287-.556-.352-.248-.073-.515-.11-.733-.192-.883-.328-3.715-1.177-4.718-1.896-.486-.349-2.253-1.577-2.717-1.956-.108-.088-.275-.257-.443-.381-.095-.071-.187-.13-.266-.137-.674-.062-11.875-.063-14.222-.033a17.4 17.4 0 0 0-.41.01c-.236.064-.493.254-.75.482-.411.363-.816.821-1.123 1.07-1.592 1.286-3.41 2.41-5.192 3.415-.589.331-1.22.606-1.839.88a9.08 9.08 0 0 1-.6.24.728.728 0 0 1-.168.027.555.555 0 0 0-.05.005Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.822 14.371c-1.011.54-1.821 1.515-1.27 2.67.132.275.351.483.596.66.016.012.29.16.288.171-.033.288-.272.595-.367.866-.262.743.098 1.715.679 2.236.226.203.511.322.807.384.037.008.44.044.443.054.223.689-.305 1.761.527 2.288.679.43 1.913-.08 2.043-.011.062.032.175.334.264.415.582.523 1.643.924 2.414.679.422-.134.796-.525 1.008-.903.008-.014.055-.13.064-.13.243 0 .505.13.747.166.85.125 1.762-.177 2.328-.836.243-.282.429-.611.406-.995-.012-.201-.316-.41-.197-.573.295-.407 1.162-.089 1.63-1.017.375-.743.54-1.598.264-2.396a1.424 1.424 0 0 0-.322-.536c-.015-.016-.212-.163-.21-.17.106-.569 1.404-.712.857-2.276-.163-.469-.374-.88-.835-1.114a3.076 3.076 0 0 0-.633-.243c-.013-.004-.207-.043-.207-.049.03-.615.315-1.068.189-1.738-.154-.81-.708-1.467-.749-2.306-.034-.706.695-1.396.093-1.953-.564-.521-1.442-.601-2.16-.77-2.137-.5-4.244-.396-6.387.134-.26.064-2.422.651-2.54.879-.17.324.103.868.056 1.222-.055.42-.306.783-.305 1.215.001.617.302 1.152.413 1.748.136.725.106 1.516.136 2.256l-.07-.027Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.785 14.277c-.023-.699-.003-1.437-.13-2.117-.112-.601-.413-1.143-.415-1.765 0-.229.064-.439.137-.647.068-.19.143-.38.17-.583.027-.204-.06-.474-.097-.725-.028-.197-.026-.383.05-.53a.252.252 0 0 1 .072-.079 1.34 1.34 0 0 1 .264-.14c.627-.27 2.062-.66 2.271-.711 2.16-.534 4.283-.64 6.436-.134.733.171 1.63.26 2.206.794.335.31.31.656.195 1.025-.1.32-.272.656-.255.997.02.407.165.769.323 1.128.166.377.345.752.423 1.165.067.35.026.643-.036.93-.052.242-.121.48-.145.748l.125.028a3.2 3.2 0 0 1 .654.251c.485.248.713.678.885 1.172.174.498.168.86.077 1.138-.092.282-.272.481-.457.65-.113.103-.227.194-.318.286a.593.593 0 0 0-.14.199c.057.044.157.124.168.134.158.16.273.364.345.575.284.825.117 1.707-.27 2.475-.299.593-.749.712-1.131.803-.114.028-.221.052-.314.09a.415.415 0 0 0-.193.137c-.014.02-.008.04 0 .063a.536.536 0 0 0 .053.095c.072.113.157.234.164.35.024.411-.171.766-.43 1.067-.59.686-1.537 1-2.423.87-.217-.032-.45-.143-.67-.162l-.036.076c-.224.398-.62.808-1.066.95-.803.255-1.908-.156-2.514-.701-.06-.053-.131-.193-.191-.306a1.454 1.454 0 0 0-.053-.088.767.767 0 0 0-.047.005c-.064.01-.15.03-.252.052-.277.06-.663.143-1.033.133-.26-.007-.512-.06-.717-.189-.45-.285-.54-.715-.54-1.17 0-.384.07-.788-.012-1.113-.108-.012-.358-.04-.384-.045a1.828 1.828 0 0 1-.855-.409c-.608-.546-.98-1.566-.707-2.344.049-.14.135-.289.213-.44.059-.115.114-.23.139-.343-.076-.044-.226-.13-.237-.139-.258-.187-.488-.408-.627-.699-.578-1.21.254-2.238 1.314-2.802a.093.093 0 0 1 .01-.005Zm-.104-6.27c-.073.144-.043.336-.006.531.043.232.1.468.075.654-.029.217-.107.42-.179.623-.066.187-.126.375-.126.58.002.61.302 1.138.412 1.728.136.73.107 1.526.137 2.27a.102.102 0 0 1-.14.1l-.024-.01c-.946.518-1.703 1.43-1.185 2.514.124.26.333.455.563.622.015.01.238.133.282.165.053.039.05.088.048.1-.018.155-.09.316-.171.474-.074.142-.155.282-.202.414-.248.707.099 1.63.652 2.126.213.19.48.302.76.36.032.008.36.037.428.05.069.013.088.063.09.073.115.353.04.805.04 1.236 0 .385.063.755.445.997.175.111.39.152.612.158.352.01.72-.071.984-.13.141-.03.255-.055.324-.06a.219.219 0 0 1 .116.017c.028.015.07.06.109.128.055.096.119.25.176.301.558.502 1.574.893 2.314.658.399-.127.749-.499.95-.855.007-.015.052-.12.068-.14a.104.104 0 0 1 .085-.043c.248 0 .515.13.762.167.816.12 1.691-.168 2.235-.8.226-.263.403-.567.382-.924a.31.31 0 0 0-.056-.135c-.037-.061-.082-.122-.114-.18-.064-.116-.08-.226-.008-.324.13-.18.36-.242.625-.305.335-.08.734-.177.996-.698.363-.719.525-1.545.26-2.318a1.326 1.326 0 0 0-.299-.497c-.014-.015-.173-.133-.203-.162a.105.105 0 0 1-.035-.098.635.635 0 0 1 .153-.295c.1-.118.243-.229.384-.358.16-.145.32-.317.4-.561.08-.248.079-.568-.075-1.01-.155-.443-.35-.835-.786-1.056a2.982 2.982 0 0 0-.611-.236c-.013-.003-.177-.037-.21-.048a.103.103 0 0 1-.074-.104c.015-.313.095-.586.155-.864.056-.262.095-.53.035-.85-.075-.397-.25-.757-.41-1.12-.168-.382-.32-.768-.34-1.2-.018-.365.158-.726.264-1.067.09-.292.127-.57-.14-.816-.55-.51-1.411-.58-2.112-.745-2.121-.497-4.212-.393-6.34.133-.18.044-1.288.344-1.977.597a3.4 3.4 0 0 0-.414.176.677.677 0 0 0-.084.057Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="M16.65 13.644c1.02.19 2.127-.014 3.157-.004.847.008 1.669.027 2.515-.026.492-.031.978-.034 1.437-.241.293-.133.543-.33.784-.54.231-.201.494-.392.647-.664.818-1.45-1.314-2.466-2.44-2.735-1.025-.244-2.143-.09-3.173.046-.555.073-1.136.12-1.669.298-.367.122-.693.329-1.048.477-.393.164-.86.207-1.225.43-1.211.738-.167 2.65.932 2.952l.082.007Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="m16.636 13.745-.078-.007a.088.088 0 0 1-.018-.003c-.691-.19-1.365-.985-1.517-1.76-.105-.534.033-1.057.559-1.377.369-.225.84-.27 1.239-.437.357-.15.684-.357 1.055-.48.54-.179 1.127-.228 1.688-.302 1.041-.137 2.172-.29 3.21-.043.692.165 1.753.608 2.312 1.255.392.453.546 1.004.194 1.628-.159.282-.43.482-.67.69-.248.216-.507.42-.809.556-.47.213-.967.219-1.473.25-.848.054-1.672.035-2.522.027-1.035-.01-2.146.192-3.17.003Zm.033-.201c1.014.189 2.114-.016 3.14-.006.844.008 1.663.028 2.506-.026.48-.03.954-.03 1.401-.232.284-.128.526-.32.76-.523.222-.194.478-.376.625-.637.302-.536.166-1.008-.17-1.397-.532-.616-1.546-1.033-2.205-1.19-1.013-.24-2.118-.087-3.135.048-.549.072-1.123.118-1.65.293-.366.121-.688.328-1.04.475-.39.162-.852.203-1.212.422-.444.27-.553.714-.465 1.165.137.7.737 1.424 1.361 1.6l.073.006c.004 0 .007 0 .01.002Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="M19.81 14.676c-.087-.48-.514-.72-.956-.824-.817-.19-1.721-.031-2.52-.296a2.186 2.186 0 0 1-.929-.647c-.008-.01-.076-.11-.08-.109-.169.064-.22.317-.234.468-.101 1.076.384 2.377 1.468 2.803.896.352 1.9-.104 2.635-.606.213-.146.62-.4.698-.671l-.081-.118Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m19.907 14.636.07.1a.1.1 0 0 1 .014.086.845.845 0 0 1-.246.357c-.159.15-.362.28-.493.37-.761.52-1.803.981-2.73.617-1.127-.443-1.638-1.79-1.533-2.907.01-.102.035-.244.094-.357a.395.395 0 0 1 .207-.197.102.102 0 0 1 .117.031c.013.016.07.1.078.109a2.076 2.076 0 0 0 .882.614c.39.13.806.154 1.224.171.435.018.872.026 1.287.123.474.11.925.375 1.03.883Zm-4.606-1.697a.346.346 0 0 0-.055.1.902.902 0 0 0-.053.24c-.097 1.033.361 2.287 1.404 2.697.864.34 1.83-.11 2.54-.595.123-.085.316-.207.467-.35a.74.74 0 0 0 .174-.222l-.052-.075a.103.103 0 0 1-.016-.04c-.08-.437-.477-.649-.879-.743-.402-.093-.826-.1-1.248-.117-.438-.018-.873-.046-1.281-.182a2.285 2.285 0 0 1-.977-.68l-.024-.033Zm5.096 1.941c.164.283.447.468.72.638.251.156.502.316.796.38 1.342.291 2.973-.595 3.02-2.041.013-.357-.071-.731-.17-1.073a9.184 9.184 0 0 0-.106-.31c-.095.043-.13.306-.166.384a.788.788 0 0 1-.478.431c-1.136.383-2.423-.266-3.23.893a3.153 3.153 0 0 0-.35.611l-.036.087Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m20.302 14.841.036-.086c.092-.227.22-.43.361-.631.425-.611.975-.749 1.57-.781.556-.03 1.152.038 1.711-.15a.687.687 0 0 0 .417-.376c.025-.056.05-.201.096-.299a.27.27 0 0 1 .122-.137.096.096 0 0 1 .117.024.12.12 0 0 1 .025.041c.018.048.1.291.105.31.101.352.187.737.174 1.104-.05 1.51-1.745 2.441-3.145 2.138-.306-.067-.567-.231-.829-.394-.286-.178-.581-.376-.754-.674a.101.101 0 0 1-.006-.089Zm4.334-2.114c-.02.07-.036.138-.052.173a.89.89 0 0 1-.538.486c-.577.194-1.192.13-1.766.16-.534.029-1.03.145-1.412.693-.132.19-.254.38-.34.592l-.016.04c.158.245.414.408.66.56.24.15.48.306.763.368 1.284.278 2.85-.561 2.896-1.946.012-.346-.07-.71-.166-1.04l-.03-.086Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="M20.009 14.911c-.218.126-.274.524-.52.508-.373-.023-.601.113-.674.595-.02.142-.198.201-.335.249a.441.441 0 0 1-.138.022c-.023 0-.084-.015-.069.002.424.46 1 .763 1.647.608.688-.163 1.374-.929.984-1.63-.2-.357-.576-.107-.824-.295l-.071-.059Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="m20.075 14.833.069.057a.298.298 0 0 0 .154.054c.07.008.144.006.216.009.184.007.358.044.48.264.215.386.137.792-.094 1.123-.223.32-.59.567-.956.654-.685.164-1.298-.15-1.746-.638a.1.1 0 0 1-.029-.087.1.1 0 0 1 .053-.077.126.126 0 0 1 .06-.015c.015 0 .044.007.058.007a.347.347 0 0 0 .106-.018.887.887 0 0 0 .192-.08c.037-.021.07-.046.076-.087.041-.274.133-.447.26-.55.132-.106.305-.145.521-.131.041.002.072-.02.1-.048a.704.704 0 0 0 .078-.106c.08-.127.162-.27.284-.341a.103.103 0 0 1 .118.01Zm-1.58 1.532c.38.349.864.56 1.401.432.32-.077.641-.294.836-.573.187-.268.257-.596.082-.91-.096-.172-.25-.157-.396-.16-.143-.002-.283-.014-.4-.103l-.004-.003-.008-.007a.63.63 0 0 0-.074.095c-.046.069-.088.145-.134.207-.082.113-.18.187-.315.178-.157-.01-.284.008-.378.085-.098.079-.157.215-.188.423a.306.306 0 0 1-.127.2 1.017 1.017 0 0 1-.295.136Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.334 12.1c-.586-.008-1.269.131-1.72.607-.606.642-.473 1.471.392 1.776.32.113.68.113 1.016.12.639.012 1.567-.174 1.924-.77.506-.846-.685-1.718-1.612-1.732Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.336 11.999c.586.01 1.271.344 1.61.803.24.323.314.706.088 1.083-.153.256-.403.443-.694.573-.42.187-.924.254-1.32.246-.347-.007-.718-.009-1.048-.125-.473-.167-.742-.481-.814-.838-.071-.353.052-.755.382-1.103.47-.498 1.183-.648 1.796-.639Zm-.003.204c-.56-.009-1.214.12-1.644.574-.277.293-.39.627-.33.925.06.295.29.547.681.685.31.11.659.107.984.114.37.007.84-.054 1.232-.23.251-.111.47-.27.602-.49.179-.299.114-.602-.076-.858-.306-.413-.923-.712-1.45-.72Z" clip-rule="evenodd"/>
<path fill="#000" fill-rule="evenodd" d="M17.27 11.564a.103.103 0 0 1-.144.002.102.102 0 0 1-.003-.144c.432-.44.978-.368 1.433-.012a.102.102 0 0 1 .017.143.103.103 0 0 1-.144.016c-.368-.287-.81-.361-1.159-.005Zm4.983-.15a.103.103 0 0 1-.143.024.101.101 0 0 1-.024-.142.787.787 0 0 1 .456-.33c.362-.087.76.156 1.025.475a.102.102 0 0 1-.014.144.103.103 0 0 1-.145-.014c-.214-.258-.525-.477-.819-.407a.59.59 0 0 0-.336.25Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="M27.4 5.999c-.197.426-.134.93-.025 1.371.109.441.245.94.552 1.289.696.79 1.998.938 2.809.26.579-.485.445-1.327.225-1.963-.173-.501-.466-1.044-.903-1.37-.573-.427-1.619-.507-2.3-.3l-.358.713Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="m27.308 5.953.358-.712a.104.104 0 0 1 .062-.052c.709-.215 1.795-.129 2.392.316.453.338.759.898.938 1.418.114.33.204.712.192 1.074-.012.38-.135.737-.448 1-.852.712-2.221.559-2.952-.271-.318-.361-.462-.876-.575-1.331-.114-.463-.175-.992.031-1.439l.002-.003Zm.184.09c-.186.404-.121.884-.018 1.303.106.426.234.909.53 1.246.66.75 1.896.893 2.666.249.266-.223.365-.528.376-.85.01-.339-.076-.695-.182-1.002-.166-.483-.447-1.008-.867-1.32-.54-.403-1.513-.48-2.168-.298l-.337.672Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="M14.258 8.1c.812-.77 2.05-1.101 3.117-1.296 1.835-.333 3.73-.484 5.582-.151.908.163 1.738.538 2.597.856.16.06.332.117.468.223.052.04.186.218.24.18.23-.162.175-.555.132-.79-.17-.915-1.035-1.198-1.635-1.777-.14-.134-.721-.59-.445-.822.214-.18.58-.059.778.08.662.466 1.126 1.27 2.012 1.399.395.057.998-.339.899-.777-.057-.248-.281-.443-.429-.64-.376-.499-.805-.944-1.187-1.433-.358-.457-.551-.979-1.002-1.372-.437-.383-1.03-.535-1.503-.871-.402-.286-.634-.714-1.165-.798-.582-.092-1.246.516-1.76.719-.415.163-.876.217-1.271.426-.386.204-.646.58-.988.846-.312.241-.713.358-1.009.62-.62.55-1.356 1.765-1.74 2.501-.312.597-.966.795-1.435 1.217-.426.383-.557 1.188-.39 1.725l.134-.064Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="m14.303 8.193-.135.063a.103.103 0 0 1-.142-.062c-.177-.57-.033-1.423.42-1.83.237-.214.522-.372.787-.55.247-.168.477-.355.624-.637.39-.746 1.136-1.974 1.764-2.53.298-.265.7-.382 1.014-.626.346-.27.612-.648 1.002-.855.399-.211.863-.266 1.282-.43.307-.121.667-.388 1.03-.562.265-.126.532-.203.784-.163.287.045.494.182.683.347.171.151.327.327.525.468.476.338 1.072.492 1.512.877.456.399.652.924 1.015 1.387.382.489.812.934 1.188 1.434.074.098.166.195.248.299a1 1 0 0 1 .199.38c.047.208-.034.41-.185.57-.213.228-.564.368-.83.33-.463-.068-.818-.31-1.143-.598-.306-.273-.585-.588-.913-.819a.853.853 0 0 0-.415-.151.328.328 0 0 0-.237.066c-.07.058-.033.138.018.22.117.187.351.374.432.451.298.287.663.501.973.757.33.272.602.59.691 1.075.028.15.06.362.027.544a.511.511 0 0 1-.2.346c-.037.027-.085.034-.14.01a.43.43 0 0 1-.117-.086c-.042-.04-.082-.088-.105-.106-.128-.1-.29-.152-.44-.208-.854-.316-1.678-.69-2.58-.851-1.84-.331-3.722-.18-5.545.152-1.048.19-2.267.512-3.065 1.27a.107.107 0 0 1-.027.018Zm-.104-.177c.827-.777 2.078-1.115 3.158-1.312 1.847-.335 3.753-.486 5.619-.152.913.165 1.749.541 2.614.861.17.063.35.126.495.238.023.018.061.06.102.101a.694.694 0 0 0 .051.046.347.347 0 0 0 .081-.184 1.418 1.418 0 0 0-.026-.474c-.08-.43-.326-.712-.62-.955-.315-.259-.684-.476-.986-.767-.087-.083-.337-.288-.463-.49-.111-.179-.128-.355.023-.483a.534.534 0 0 1 .382-.114c.19.01.39.096.522.19.334.235.619.554.931.832.295.262.615.487 1.036.548.21.03.482-.087.65-.266.103-.11.167-.246.135-.388a.778.778 0 0 0-.161-.299c-.082-.105-.176-.203-.25-.302-.376-.499-.804-.943-1.186-1.431-.354-.453-.543-.97-.988-1.36-.435-.38-1.026-.53-1.496-.863-.204-.145-.365-.326-.542-.481-.16-.14-.335-.26-.58-.3-.27-.042-.557.084-.839.238-.307.168-.606.373-.867.476-.411.162-.868.213-1.26.42-.38.202-.636.575-.973.837-.31.24-.709.355-1.004.616-.613.543-1.338 1.744-1.718 2.472-.163.315-.416.525-.69.711-.258.174-.535.326-.766.534-.37.333-.499 1.006-.391 1.505l.008-.004Z" clip-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 35 KiB

47
images/santa/santa-7.svg Normal file
View File

@ -0,0 +1,47 @@
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="68" fill="none" viewBox="0 0 42 68">
<path fill="#3F1A0A" fill-rule="evenodd" d="M16.25 62.452c-.081.623.082 1.277-.101 1.888a7.295 7.295 0 0 1-.473 1.224c-.184.356-.468.681-.546 1.086-.032.168.014.351.02.52.003.15-.027.337.04.477.233.486 1.002.33 1.432.327 1.04-.008 2.077.004 3.108-.136.389-.053.887-.062 1.2-.334.288-.252.133-.692.09-1.016-.067-.483.031-1.1-.18-1.55-.117-.25-.355-.393-.514-.611-.36-.496-.01-.825-.056-1.354-.002-.025-.063-.495-.11-.505-.292-.067-.628-.022-.927-.034-1.017-.041-2.023.075-3.043.025l.06-.007Zm6.205-.383c-.085.574.085 1.161-.004 1.733-.042.268-.23.476-.32.726a4.919 4.919 0 0 0-.25 2.213c.035.293.112.656.384.831.696.45 2.016.112 2.808.138.638.022 1.26.04 1.897-.008.265-.02.566.031.754-.195.61-.737-.28-1.79-.529-2.487-.103-.29-.194-.592-.343-.864-.137-.25-.354-.46-.466-.723-.102-.239-.1-.495-.123-.75a10.299 10.299 0 0 1-.042-.767c0-.051.027-.204-.022-.239-.216-.152-.796.092-1.028.12-.905.11-1.823.22-2.736.236l.02.036Z" clip-rule="evenodd"/>
<path fill="#F1D88E" fill-rule="evenodd" d="M16.894 63.278c.36.016.733-.034 1.106-.073.419-.044.838-.073 1.24.012a.107.107 0 0 1 .082.089c.01.052.022.306.024.325.017.186 0 .382-.013.576-.011.178-.017.355.025.52a.125.125 0 0 1-.029.123.142.142 0 0 1-.097.043.487.487 0 0 1-.125-.014c-.048-.01-.1-.026-.135-.026-.188-.001-.375-.002-.563 0-.51.005-1.096.143-1.6.091a.107.107 0 0 1-.095-.098c-.005-.051 0-.302 0-.319 0-.354.005-.711.036-1.065a.102.102 0 0 1 .05-.19h.062a.09.09 0 0 1 .032.006Zm.06.205c-.03.347-.035.697-.036 1.045v.22c.477.029 1.015-.094 1.49-.099.188-.002.376 0 .565 0a.76.76 0 0 1 .151.025l.015.003a2.218 2.218 0 0 1-.01-.482c.01-.184.03-.37.013-.545a43.652 43.652 0 0 1-.017-.248c-.36-.063-.731-.034-1.104.005-.359.038-.719.085-1.067.076Zm6.319-.296-.066-.195a.102.102 0 0 1 .1-.134c.608.02 1.215.008 1.823.016.08.001.32-.024.487-.006.103.011.182.045.22.087a.28.28 0 0 1 .045.15c.014.18-.026.55-.024.614.008.26.062.514.078.772a.112.112 0 0 1-.063.115.162.162 0 0 1-.093.014c-.028-.002-.065-.016-.088-.014-.146.007-.29.02-.436.031-.642.054-1.29-.07-1.925.022a.096.096 0 0 1-.097-.04.118.118 0 0 1-.02-.077c.002-.081.046-.491.05-.514.058-.288-.004-.554.01-.841Zm.153 1.256c.6-.063 1.209.042 1.813-.008.147-.013.294-.025.442-.033l.043.003c-.021-.226-.064-.45-.07-.68-.003-.055.028-.344.026-.536 0-.037-.005-.08-.007-.102l-.025-.008a.702.702 0 0 0-.12-.013c-.153-.006-.335.013-.4.012-.56-.008-1.12.002-1.68-.013l.026.075a.101.101 0 0 1 .005.038c-.018.305.047.585-.013.889a10.2 10.2 0 0 0-.04.376Z" clip-rule="evenodd"/>
<path fill="#fff" fill-rule="evenodd" d="M15.075 60.006c-.096.3-.111.547-.046.855.088.414.21.852.535 1.151.114.105.26.136.399.193.521.214.984.2 1.542.231.34.02.679.052 1.02.062.488.016.922-.008 1.403-.062.23-.026.489-.044.677-.192.143-.113.194-.286.27-.443.09-.189.133-.377.198-.573.106-.32.216-.574.135-.913-.034-.145-.034-.588-.244-.602-.25-.017-.537.126-.79.148-.786.068-1.58.127-2.37.108a38.875 38.875 0 0 1-2.409-.116c-.236-.021-.487 0-.72-.043m7.447-.209c-.052.088-.322.08-.363.204-.159.478-.187 1.207.32 1.834.186.23.095.386.402.451.288.062.93.059 1.215.02.457-.062.964-.044 1.418-.132.472-.09 1.09-.07 1.455-.414.468-.441.705-.974.741-1.604.011-.19-.155-.689-.39-.79" clip-rule="evenodd"/>
<path fill="#600C13" fill-rule="evenodd" d="M12.714 55.132c.015.404.282 1.475.46 1.824.137.264.232.544.378.805.087.156.12.332.2.49.212.427.491.864.78 1.242.123.163.214.357.385.478.453.319 1.137.169 1.652.173 1.28.013 2.557.094 3.826-.105a.85.85 0 0 0 .547-.386c.09-.155.173-.43.393-.434.247-.005.375.261.543.396.166.132.382.164.586.188.6.073 1.26.12 1.862.058.342-.036 1.798-.183 2.172-.304.296-.096 1.092-.466 1.242-.517.313-.107.608-.372.858-.581.572-.478.579-1.052.643-1.719.055-.568.132-1.126.174-1.696l-16.7.088Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.888 52.766c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.401 7.694-.147.835-.196 5.068-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.092-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.839 52.676c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.01.094-.417 1.023-1.763 2.002-2.65 2.564-1.19.752-5.443 2.227-6.283 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.044-.103a.102.102 0 0 1 .053-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.252-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.397.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.73 49.907c.242.4.826.722 1.305 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.164 1.8.345 2.717.418.781.061 1.568.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475a16.43 16.43 0 0 0 1.603-1.472c.231-.239.222-.246.409-.522.262-.388-.296-1.324-.346-1.274-.269.262-2.21 1.3-3.04 1.87-2.095 1.436-4.816 1.8-7.297 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.278 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.642 49.96c-.064-.105-.086-.277-.073-.474a3.08 3.08 0 0 1 .18-.804c.045-.12.093-.215.134-.268a.214.214 0 0 1 .09-.072.155.155 0 0 1 .083-.001c.053.011.16.06.308.137.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.599 3.027-1.86a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.513.513 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.191.283-.183.29-.42.536a16.76 16.76 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.678-.78-.064-1.566-.024-2.347-.086-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.827-.403-.766-.3-1.477-.828-2.112-1.338-.489-.392-1.08-.723-1.328-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.972 1.815-2.11 1.447-4.85 1.817-7.349 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.056 3.056 0 0 0-.23-.108l-.012.017a1.2 1.2 0 0 0-.084.185c-.078.208-.15.5-.167.748-.01.147-.004.277.043.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.79.393.899.163 1.792.344 2.706.416.782.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.546 16.546 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.067 51.28a.557.557 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .433.054.553.127a.555.555 0 0 1 .252.33c.026.088.046.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308 0-1.007.125-1.513.145-.335.014-.612-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.496-.04 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.008.233.014.346.01l.007-.185c.047-.505.067-.983.002-1.487l-.001-.015c-.201.022-.395.05-.501.051-.811.014-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 45.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 45.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 42.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 42.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 43.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 38.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 38.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 35.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 35.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 36.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 30.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 30.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 27.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 27.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.358 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859.026-.026.062-.04.11-.026a.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.277.044.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.478-.06-.225-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 28.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.134.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M4.342 22.636c-.95.555-1.382.26-2.408.157-.374-.037-1.026-.106-1.308.217-.696.8 1.275.963 1.636 1.058 0 0-.187.272-.207.297a3.348 3.348 0 0 1-.515.513c-.615.49-1.51.854-1.433 1.789.143 1.716 1.82 2.34 3.239 1.496.915-.544 1.619-1.975 2.703-2.653l-1.707-2.874Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M2.09 24.136c-.32-.058-.954-.15-1.34-.345-.218-.11-.359-.259-.373-.436-.009-.119.037-.257.172-.412.127-.147.32-.225.535-.26.294-.048.629-.014.86.01.411.04.728.112 1.02.148.417.051.782.025 1.326-.293a.103.103 0 0 1 .14.036l1.707 2.875a.101.101 0 0 1-.033.138c-.534.333-.972.852-1.391 1.355-.434.52-.848 1.021-1.315 1.298-.74.44-1.55.495-2.19.218-.646-.278-1.128-.89-1.203-1.793-.042-.503.175-.854.489-1.144.293-.27.672-.485.982-.732a3.27 3.27 0 0 0 .5-.498l.115-.165Zm2.215-1.362c-.548.3-.932.322-1.366.27-.291-.037-.606-.108-1.016-.15-.216-.02-.53-.055-.806-.01-.164.026-.315.08-.413.192-.088.101-.128.186-.122.263.009.116.119.198.262.27.445.227 1.23.304 1.444.36.037.01.073.034.076.093 0 .004.005.027-.014.058l-.008.012a15.25 15.25 0 0 1-.207.296 3.418 3.418 0 0 1-.53.529c-.307.244-.682.456-.971.723-.27.249-.46.547-.425.979.068.814.497 1.37 1.08 1.622.587.254 1.326.198 2.004-.205.449-.267.844-.753 1.262-1.254.41-.492.842-.999 1.356-1.344l-1.606-2.704Zm30.905 2.293c.459.427.765.995 1.21 1.44.544.544 1.374.985 2.104 1.232 1.393.472 2.669-.854 2.574-2.212-.058-.82-.752-1.181-1.39-1.562a3.589 3.589 0 0 0-.056-.033l-.082-.048a6.307 6.307 0 0 1-.64-.445c-.027-.021-.105-.04-.08-.064.371-.385 1.144-.279 1.379-.876.162-.412-.345-.75-.689-.786-.522-.056-1.122.249-1.658.289-.636.048-1.196-.165-1.814-.225l-.858 3.29Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M39.009 23.37c.195.152.402.3.614.427l.081.048c.02.01.038.022.057.033.325.194.664.384.93.63.278.257.478.574.509 1.012.1 1.427-1.246 2.81-2.71 2.316-.743-.252-1.588-.703-2.143-1.258-.444-.443-.75-1.01-1.207-1.437a.102.102 0 0 1-.03-.1l.859-3.29a.102.102 0 0 1 .109-.075c.612.06 1.166.272 1.796.225.262-.02.54-.105.816-.178.295-.077.588-.14.861-.111.23.025.526.17.686.381a.538.538 0 0 1 .087.543c-.13.33-.402.47-.699.576-.215.077-.444.133-.616.259Zm-.14.15a.617.617 0 0 1-.073-.038.129.129 0 0 1-.043-.05c-.02-.04-.02-.084.022-.128.197-.203.497-.282.78-.383.242-.087.473-.191.578-.46.065-.163-.01-.31-.13-.422a.881.881 0 0 0-.474-.224c-.25-.027-.517.034-.787.105-.288.076-.578.163-.852.184-.613.045-1.155-.145-1.745-.216l-.82 3.147c.435.422.737.97 1.168 1.4.533.534 1.348.966 2.064 1.208 1.323.448 2.529-.818 2.438-2.109-.026-.38-.202-.654-.444-.878-.256-.235-.583-.417-.896-.603a27.084 27.084 0 0 0-.055-.033l-.083-.049a6.381 6.381 0 0 1-.648-.45Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M10.416 24.074c.216.02.317.453.31.603-.005.128 20.129.036 20.133-.092.006-.169.132-.489.22-.48.302.028.738.536.982.71.63.45 1.325.836 2.035 1.149.101.045 1.005.367 1.029.349.43-.339.646-1.33.878-1.795.225-.45.386-.934.557-1.407.178-.49.336-1.029.614-1.474.09-.144.358-.388.251-.552-.281-.432-.906-.423-1.34-.584-.878-.325-3.696-1.168-4.693-1.883-.485-.348-2.249-1.573-2.712-1.952-.181-.148-.53-.52-.764-.54-.75-.069-14.506-.063-14.661-.022-.627.164-1.409 1.16-1.919 1.572-1.587 1.284-3.4 2.405-5.178 3.406-.586.33-1.214.603-1.83.876a8.727 8.727 0 0 1-.593.237c-.102.037-.343 0-.309.103.045.136 1.055 1.605 1.184 1.797.284.421.52.867.77 1.307.22.388.495.747.723 1.131.075.126.155.25.21.386.028.07.032.273.079.213.756-.964 1.981-1.427 3.009-2.122.1-.068.94-.942 1.015-.936Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M31.095 24.21a.493.493 0 0 0-.04.059.869.869 0 0 0-.094.32c0 .023-.008.07-.068.094-.026.01-.163.024-.397.034-2.137.086-13.041.148-17.68.114-1.167-.009-1.94-.024-2.082-.046-.065-.01-.09-.045-.096-.056a.1.1 0 0 1-.014-.056.885.885 0 0 0-.094-.374.347.347 0 0 0-.068-.094.127.127 0 0 0-.032-.023 1.264 1.264 0 0 0-.071.058c-.26.224-.819.799-.9.854-1.019.689-2.236 1.145-2.986 2.1a.12.12 0 0 1-.09.05.109.109 0 0 1-.083-.029.201.201 0 0 1-.05-.1c-.012-.048-.018-.122-.033-.158-.052-.132-.13-.25-.202-.372-.229-.385-.504-.745-.724-1.133-.25-.438-.484-.882-.766-1.3-.131-.195-1.15-1.685-1.196-1.823a.144.144 0 0 1 0-.097.152.152 0 0 1 .09-.089.498.498 0 0 1 .136-.026c.051-.004.109-.004.145-.017.198-.072.394-.15.587-.235.612-.271 1.238-.543 1.82-.871 1.774-.999 3.581-2.117 5.165-3.397.305-.246.707-.703 1.115-1.063.287-.254.578-.46.841-.529.017-.004.177-.011.454-.014 2.35-.03 13.568-.029 14.243.033.108.01.24.08.37.177.17.126.34.297.45.387.462.377 2.223 1.6 2.707 1.948.992.711 3.796 1.546 4.67 1.87.214.08.476.117.72.188.269.078.515.198.67.436.061.095.048.21-.012.326-.064.122-.184.247-.239.334-.274.44-.43.973-.604 1.456-.173.477-.335.963-.562 1.417-.14.278-.272.745-.448 1.146-.126.286-.276.54-.459.683-.009.008-.05.032-.119.016a14.84 14.84 0 0 1-1.014-.351A11.68 11.68 0 0 1 32 24.898c-.147-.105-.364-.331-.58-.501-.115-.091-.227-.168-.326-.188ZM3.552 22.322c.173.304 1.026 1.54 1.144 1.716.285.422.521.87.773 1.313.22.387.495.745.723 1.13.077.13.16.259.216.4l.015.052c.768-.882 1.933-1.34 2.92-2.008.08-.054.627-.62.88-.84a.73.73 0 0 1 .138-.1.128.128 0 0 1 .064-.013c.118.01.218.102.286.232.064.121.101.274.113.385.235.018.957.03 1.994.037 4.635.034 15.534-.027 17.67-.114.114-.004.217-.012.278-.017.023-.128.08-.287.142-.379.056-.085.129-.119.18-.114.137.013.3.107.46.234.213.169.427.392.573.496a11.46 11.46 0 0 0 2.017 1.138c.086.038.76.28.957.333.145-.13.26-.343.364-.576.178-.405.312-.875.452-1.155.224-.448.383-.926.553-1.396.18-.496.341-1.043.623-1.494.053-.084.17-.204.23-.322.024-.043.046-.085.022-.12-.127-.196-.334-.287-.556-.352-.248-.073-.515-.11-.733-.192-.883-.328-3.715-1.177-4.718-1.896-.486-.349-2.253-1.577-2.717-1.956-.108-.088-.275-.257-.443-.381-.095-.071-.187-.13-.266-.137-.674-.062-11.875-.063-14.222-.033a17.4 17.4 0 0 0-.41.01c-.236.064-.493.254-.75.482-.411.363-.816.821-1.123 1.07-1.592 1.286-3.41 2.41-5.192 3.415-.589.331-1.22.606-1.839.88a9.08 9.08 0 0 1-.6.24.728.728 0 0 1-.168.027.555.555 0 0 0-.05.005Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.822 14.371c-1.011.54-1.821 1.515-1.27 2.67.132.275.351.483.596.66.016.012.29.16.288.171-.033.288-.272.595-.367.866-.262.743.098 1.715.679 2.236.226.203.511.322.807.384.037.008.44.044.443.054.223.689-.305 1.761.527 2.288.679.43 1.913-.08 2.043-.011.062.032.175.334.264.415.582.523 1.643.924 2.414.679.422-.134.796-.525 1.008-.903.008-.014.055-.13.064-.13.243 0 .505.13.747.166.85.125 1.762-.177 2.328-.836.243-.282.429-.611.406-.995-.012-.201-.316-.41-.197-.573.295-.407 1.162-.089 1.63-1.017.375-.743.54-1.598.264-2.396a1.424 1.424 0 0 0-.322-.536c-.015-.016-.212-.163-.21-.17.106-.569 1.404-.712.857-2.276-.163-.469-.374-.88-.835-1.114a3.076 3.076 0 0 0-.633-.243c-.013-.004-.207-.043-.207-.049.03-.615.315-1.068.189-1.738-.154-.81-.708-1.467-.749-2.306-.034-.706.695-1.396.093-1.953-.564-.521-1.442-.601-2.16-.77-2.137-.5-4.244-.396-6.387.134-.26.064-2.422.651-2.54.879-.17.324.103.868.056 1.222-.055.42-.306.783-.305 1.215.001.617.302 1.152.413 1.748.136.725.106 1.516.136 2.256l-.07-.027Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.785 14.277c-.023-.699-.003-1.437-.13-2.117-.112-.601-.413-1.143-.415-1.765 0-.229.064-.439.137-.647.068-.19.143-.38.17-.583.027-.204-.06-.474-.097-.725-.028-.197-.026-.383.05-.53a.252.252 0 0 1 .072-.079 1.34 1.34 0 0 1 .264-.14c.627-.27 2.062-.66 2.271-.711 2.16-.534 4.283-.64 6.436-.134.733.171 1.63.26 2.206.794.335.31.31.656.195 1.025-.1.32-.272.656-.255.997.02.407.165.769.323 1.128.166.377.345.752.423 1.165.067.35.026.643-.036.93-.052.242-.121.48-.145.748l.125.028a3.2 3.2 0 0 1 .654.251c.485.248.713.678.885 1.172.174.498.168.86.077 1.138-.092.282-.272.481-.457.65-.113.103-.227.194-.318.286a.593.593 0 0 0-.14.199c.057.044.157.124.168.134.158.16.273.364.345.575.284.825.117 1.707-.27 2.475-.299.593-.749.712-1.131.803-.114.028-.221.052-.314.09a.415.415 0 0 0-.193.137c-.014.02-.008.04 0 .063a.536.536 0 0 0 .053.095c.072.113.157.234.164.35.024.411-.171.766-.43 1.067-.59.686-1.537 1-2.423.87-.217-.032-.45-.143-.67-.162l-.036.076c-.224.398-.62.808-1.066.95-.803.255-1.908-.156-2.514-.701-.06-.053-.131-.193-.191-.306a1.454 1.454 0 0 0-.053-.088.767.767 0 0 0-.047.005c-.064.01-.15.03-.252.052-.277.06-.663.143-1.033.133-.26-.007-.512-.06-.717-.189-.45-.285-.54-.715-.54-1.17 0-.384.07-.788-.012-1.113-.108-.012-.358-.04-.384-.045a1.828 1.828 0 0 1-.855-.409c-.608-.546-.98-1.566-.707-2.344.049-.14.135-.289.213-.44.059-.115.114-.23.139-.343-.076-.044-.226-.13-.237-.139-.258-.187-.488-.408-.627-.699-.578-1.21.254-2.238 1.314-2.802a.093.093 0 0 1 .01-.005Zm-.104-6.27c-.073.144-.043.336-.006.531.043.232.1.468.075.654-.029.217-.107.42-.179.623-.066.187-.126.375-.126.58.002.61.302 1.138.412 1.728.136.73.107 1.526.137 2.27a.102.102 0 0 1-.14.1l-.024-.01c-.946.518-1.703 1.43-1.185 2.514.124.26.333.455.563.622.015.01.238.133.282.165.053.039.05.088.048.1-.018.155-.09.316-.171.474-.074.142-.155.282-.202.414-.248.707.099 1.63.652 2.126.213.19.48.302.76.36.032.008.36.037.428.05.069.013.088.063.09.073.115.353.04.805.04 1.236 0 .385.063.755.445.997.175.111.39.152.612.158.352.01.72-.071.984-.13.141-.03.255-.055.324-.06a.219.219 0 0 1 .116.017c.028.015.07.06.109.128.055.096.119.25.176.301.558.502 1.574.893 2.314.658.399-.127.749-.499.95-.855.007-.015.052-.12.068-.14a.104.104 0 0 1 .085-.043c.248 0 .515.13.762.167.816.12 1.691-.168 2.235-.8.226-.263.403-.567.382-.924a.31.31 0 0 0-.056-.135c-.037-.061-.082-.122-.114-.18-.064-.116-.08-.226-.008-.324.13-.18.36-.242.625-.305.335-.08.734-.177.996-.698.363-.719.525-1.545.26-2.318a1.326 1.326 0 0 0-.299-.497c-.014-.015-.173-.133-.203-.162a.105.105 0 0 1-.035-.098.635.635 0 0 1 .153-.295c.1-.118.243-.229.384-.358.16-.145.32-.317.4-.561.08-.248.079-.568-.075-1.01-.155-.443-.35-.835-.786-1.056a2.982 2.982 0 0 0-.611-.236c-.013-.003-.177-.037-.21-.048a.103.103 0 0 1-.074-.104c.015-.313.095-.586.155-.864.056-.262.095-.53.035-.85-.075-.397-.25-.757-.41-1.12-.168-.382-.32-.768-.34-1.2-.018-.365.158-.726.264-1.067.09-.292.127-.57-.14-.816-.55-.51-1.411-.58-2.112-.745-2.121-.497-4.212-.393-6.34.133-.18.044-1.288.344-1.977.597a3.4 3.4 0 0 0-.414.176.677.677 0 0 0-.084.057Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="M16.65 13.644c1.02.19 2.127-.014 3.157-.004.847.008 1.669.027 2.515-.026.492-.031.978-.034 1.437-.241.293-.133.543-.33.784-.54.231-.201.494-.392.647-.664.818-1.45-1.314-2.466-2.44-2.735-1.025-.244-2.143-.09-3.173.046-.555.073-1.136.12-1.669.298-.367.122-.693.329-1.048.477-.393.164-.86.207-1.225.43-1.211.738-.167 2.65.932 2.952l.082.007Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="m16.636 13.745-.078-.007a.088.088 0 0 1-.018-.003c-.691-.19-1.365-.985-1.517-1.76-.105-.534.033-1.057.559-1.377.369-.225.84-.27 1.239-.437.357-.15.684-.357 1.055-.48.54-.179 1.127-.228 1.688-.302 1.041-.137 2.172-.29 3.21-.043.692.165 1.753.608 2.312 1.255.392.453.546 1.004.194 1.628-.159.282-.43.482-.67.69-.248.216-.507.42-.809.556-.47.213-.967.219-1.473.25-.848.054-1.672.035-2.522.027-1.035-.01-2.146.192-3.17.003Zm.033-.201c1.014.189 2.114-.016 3.14-.006.844.008 1.663.028 2.506-.026.48-.03.954-.03 1.401-.232.284-.128.526-.32.76-.523.222-.194.478-.376.625-.637.302-.536.166-1.008-.17-1.397-.532-.616-1.546-1.033-2.205-1.19-1.013-.24-2.118-.087-3.135.048-.549.072-1.123.118-1.65.293-.366.121-.688.328-1.04.475-.39.162-.852.203-1.212.422-.444.27-.553.714-.465 1.165.137.7.737 1.424 1.361 1.6l.073.006c.004 0 .007 0 .01.002Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="M19.81 14.676c-.087-.48-.514-.72-.956-.824-.817-.19-1.721-.031-2.52-.296a2.186 2.186 0 0 1-.929-.647c-.008-.01-.076-.11-.08-.109-.169.064-.22.317-.234.468-.101 1.076.384 2.377 1.468 2.803.896.352 1.9-.104 2.635-.606.213-.146.62-.4.698-.671l-.081-.118Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m19.907 14.636.07.1a.1.1 0 0 1 .014.086.845.845 0 0 1-.246.357c-.159.15-.362.28-.493.37-.761.52-1.803.981-2.73.617-1.127-.443-1.638-1.79-1.533-2.907.01-.102.035-.244.094-.357a.395.395 0 0 1 .207-.197.102.102 0 0 1 .117.031c.013.016.07.1.078.109a2.076 2.076 0 0 0 .882.614c.39.13.806.154 1.224.171.435.018.872.026 1.287.123.474.11.925.375 1.03.883Zm-4.606-1.697a.346.346 0 0 0-.055.1.902.902 0 0 0-.053.24c-.097 1.033.361 2.287 1.404 2.697.864.34 1.83-.11 2.54-.595.123-.085.316-.207.467-.35a.74.74 0 0 0 .174-.222l-.052-.075a.103.103 0 0 1-.016-.04c-.08-.437-.477-.649-.879-.743-.402-.093-.826-.1-1.248-.117-.438-.018-.873-.046-1.281-.182a2.285 2.285 0 0 1-.977-.68l-.024-.033Zm5.096 1.941c.164.283.447.468.72.638.251.156.502.316.796.38 1.342.291 2.973-.595 3.02-2.041.013-.357-.071-.731-.17-1.073a9.184 9.184 0 0 0-.106-.31c-.095.043-.13.306-.166.384a.788.788 0 0 1-.478.431c-1.136.383-2.423-.266-3.23.893a3.153 3.153 0 0 0-.35.611l-.036.087Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m20.302 14.841.036-.086c.092-.227.22-.43.361-.631.425-.611.975-.749 1.57-.781.556-.03 1.152.038 1.711-.15a.687.687 0 0 0 .417-.376c.025-.056.05-.201.096-.299a.27.27 0 0 1 .122-.137.096.096 0 0 1 .117.024.12.12 0 0 1 .025.041c.018.048.1.291.105.31.101.352.187.737.174 1.104-.05 1.51-1.745 2.441-3.145 2.138-.306-.067-.567-.231-.829-.394-.286-.178-.581-.376-.754-.674a.101.101 0 0 1-.006-.089Zm4.334-2.114c-.02.07-.036.138-.052.173a.89.89 0 0 1-.538.486c-.577.194-1.192.13-1.766.16-.534.029-1.03.145-1.412.693-.132.19-.254.38-.34.592l-.016.04c.158.245.414.408.66.56.24.15.48.306.763.368 1.284.278 2.85-.561 2.896-1.946.012-.346-.07-.71-.166-1.04l-.03-.086Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="M20.009 14.911c-.218.126-.274.524-.52.508-.373-.023-.601.113-.674.595-.02.142-.198.201-.335.249a.441.441 0 0 1-.138.022c-.023 0-.084-.015-.069.002.424.46 1 .763 1.647.608.688-.163 1.374-.929.984-1.63-.2-.357-.576-.107-.824-.295l-.071-.059Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="m20.075 14.833.069.057a.298.298 0 0 0 .154.054c.07.008.144.006.216.009.184.007.358.044.48.264.215.386.137.792-.094 1.123-.223.32-.59.567-.956.654-.685.164-1.298-.15-1.746-.638a.1.1 0 0 1-.029-.087.1.1 0 0 1 .053-.077.126.126 0 0 1 .06-.015c.015 0 .044.007.058.007a.347.347 0 0 0 .106-.018.887.887 0 0 0 .192-.08c.037-.021.07-.046.076-.087.041-.274.133-.447.26-.55.132-.106.305-.145.521-.131.041.002.072-.02.1-.048a.704.704 0 0 0 .078-.106c.08-.127.162-.27.284-.341a.103.103 0 0 1 .118.01Zm-1.58 1.532c.38.349.864.56 1.401.432.32-.077.641-.294.836-.573.187-.268.257-.596.082-.91-.096-.172-.25-.157-.396-.16-.143-.002-.283-.014-.4-.103l-.004-.003-.008-.007a.63.63 0 0 0-.074.095c-.046.069-.088.145-.134.207-.082.113-.18.187-.315.178-.157-.01-.284.008-.378.085-.098.079-.157.215-.188.423a.306.306 0 0 1-.127.2 1.017 1.017 0 0 1-.295.136Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.334 12.1c-.586-.008-1.269.131-1.72.607-.606.642-.473 1.471.392 1.776.32.113.68.113 1.016.12.639.012 1.567-.174 1.924-.77.506-.846-.685-1.718-1.612-1.732Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.336 11.999c.586.01 1.271.344 1.61.803.24.323.314.706.088 1.083-.153.256-.403.443-.694.573-.42.187-.924.254-1.32.246-.347-.007-.718-.009-1.048-.125-.473-.167-.742-.481-.814-.838-.071-.353.052-.755.382-1.103.47-.498 1.183-.648 1.796-.639Zm-.003.204c-.56-.009-1.214.12-1.644.574-.277.293-.39.627-.33.925.06.295.29.547.681.685.31.11.659.107.984.114.37.007.84-.054 1.232-.23.251-.111.47-.27.602-.49.179-.299.114-.602-.076-.858-.306-.413-.923-.712-1.45-.72Z" clip-rule="evenodd"/>
<path fill="#000" fill-rule="evenodd" d="M17.27 11.564a.103.103 0 0 1-.144.002.102.102 0 0 1-.003-.144c.432-.44.978-.368 1.433-.012a.102.102 0 0 1 .017.143.103.103 0 0 1-.144.016c-.368-.287-.81-.361-1.159-.005Zm4.983-.15a.103.103 0 0 1-.143.024.101.101 0 0 1-.024-.142.787.787 0 0 1 .456-.33c.362-.087.76.156 1.025.475a.102.102 0 0 1-.014.144.103.103 0 0 1-.145-.014c-.214-.258-.525-.477-.819-.407a.59.59 0 0 0-.336.25Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="M27.4 5.999c-.197.426-.134.93-.025 1.371.109.441.245.94.552 1.289.696.79 1.998.938 2.809.26.579-.485.445-1.327.225-1.963-.173-.501-.466-1.044-.903-1.37-.573-.427-1.619-.507-2.3-.3l-.358.713Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="m27.308 5.953.358-.712a.104.104 0 0 1 .062-.052c.709-.215 1.795-.129 2.392.316.453.338.759.898.938 1.418.114.33.204.712.192 1.074-.012.38-.135.737-.448 1-.852.712-2.221.559-2.952-.271-.318-.361-.462-.876-.575-1.331-.114-.463-.175-.992.031-1.439l.002-.003Zm.184.09c-.186.404-.121.884-.018 1.303.106.426.234.909.53 1.246.66.75 1.896.893 2.666.249.266-.223.365-.528.376-.85.01-.339-.076-.695-.182-1.002-.166-.483-.447-1.008-.867-1.32-.54-.403-1.513-.48-2.168-.298l-.337.672Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="M14.258 8.1c.812-.77 2.05-1.101 3.117-1.296 1.835-.333 3.73-.484 5.582-.151.908.163 1.738.538 2.597.856.16.06.332.117.468.223.052.04.186.218.24.18.23-.162.175-.555.132-.79-.17-.915-1.035-1.198-1.635-1.777-.14-.134-.721-.59-.445-.822.214-.18.58-.059.778.08.662.466 1.126 1.27 2.012 1.399.395.057.998-.339.899-.777-.057-.248-.281-.443-.429-.64-.376-.499-.805-.944-1.187-1.433-.358-.457-.551-.979-1.002-1.372-.437-.383-1.03-.535-1.503-.871-.402-.286-.634-.714-1.165-.798-.582-.092-1.246.516-1.76.719-.415.163-.876.217-1.271.426-.386.204-.646.58-.988.846-.312.241-.713.358-1.009.62-.62.55-1.356 1.765-1.74 2.501-.312.597-.966.795-1.435 1.217-.426.383-.557 1.188-.39 1.725l.134-.064Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="m14.303 8.193-.135.063a.103.103 0 0 1-.142-.062c-.177-.57-.033-1.423.42-1.83.237-.214.522-.372.787-.55.247-.168.477-.355.624-.637.39-.746 1.136-1.974 1.764-2.53.298-.265.7-.382 1.014-.626.346-.27.612-.648 1.002-.855.399-.211.863-.266 1.282-.43.307-.121.667-.388 1.03-.562.265-.126.532-.203.784-.163.287.045.494.182.683.347.171.151.327.327.525.468.476.338 1.072.492 1.512.877.456.399.652.924 1.015 1.387.382.489.812.934 1.188 1.434.074.098.166.195.248.299a1 1 0 0 1 .199.38c.047.208-.034.41-.185.57-.213.228-.564.368-.83.33-.463-.068-.818-.31-1.143-.598-.306-.273-.585-.588-.913-.819a.853.853 0 0 0-.415-.151.328.328 0 0 0-.237.066c-.07.058-.033.138.018.22.117.187.351.374.432.451.298.287.663.501.973.757.33.272.602.59.691 1.075.028.15.06.362.027.544a.511.511 0 0 1-.2.346c-.037.027-.085.034-.14.01a.43.43 0 0 1-.117-.086c-.042-.04-.082-.088-.105-.106-.128-.1-.29-.152-.44-.208-.854-.316-1.678-.69-2.58-.851-1.84-.331-3.722-.18-5.545.152-1.048.19-2.267.512-3.065 1.27a.107.107 0 0 1-.027.018Zm-.104-.177c.827-.777 2.078-1.115 3.158-1.312 1.847-.335 3.753-.486 5.619-.152.913.165 1.749.541 2.614.861.17.063.35.126.495.238.023.018.061.06.102.101a.694.694 0 0 0 .051.046.347.347 0 0 0 .081-.184 1.418 1.418 0 0 0-.026-.474c-.08-.43-.326-.712-.62-.955-.315-.259-.684-.476-.986-.767-.087-.083-.337-.288-.463-.49-.111-.179-.128-.355.023-.483a.534.534 0 0 1 .382-.114c.19.01.39.096.522.19.334.235.619.554.931.832.295.262.615.487 1.036.548.21.03.482-.087.65-.266.103-.11.167-.246.135-.388a.778.778 0 0 0-.161-.299c-.082-.105-.176-.203-.25-.302-.376-.499-.804-.943-1.186-1.431-.354-.453-.543-.97-.988-1.36-.435-.38-1.026-.53-1.496-.863-.204-.145-.365-.326-.542-.481-.16-.14-.335-.26-.58-.3-.27-.042-.557.084-.839.238-.307.168-.606.373-.867.476-.411.162-.868.213-1.26.42-.38.202-.636.575-.973.837-.31.24-.709.355-1.004.616-.613.543-1.338 1.744-1.718 2.472-.163.315-.416.525-.69.711-.258.174-.535.326-.766.534-.37.333-.499 1.006-.391 1.505l.008-.004Z" clip-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 39 KiB

52
images/santa/santa-8.svg Normal file
View File

@ -0,0 +1,52 @@
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="76" fill="none" viewBox="0 0 42 76">
<path fill="#3F1A0A" fill-rule="evenodd" d="M16.25 70.452c-.081.623.082 1.277-.101 1.888a7.295 7.295 0 0 1-.473 1.224c-.184.356-.468.681-.546 1.086-.032.168.014.351.02.52.003.15-.027.337.04.477.233.486 1.002.33 1.432.327 1.04-.008 2.077.004 3.108-.136.389-.053.887-.062 1.2-.334.288-.252.133-.692.09-1.016-.067-.483.031-1.1-.18-1.55-.117-.25-.355-.393-.514-.611-.36-.496-.01-.825-.056-1.354-.002-.025-.063-.495-.11-.505-.292-.067-.628-.022-.927-.034-1.017-.041-2.023.075-3.043.025l.06-.007Zm6.205-.383c-.085.574.085 1.161-.004 1.733-.042.268-.23.475-.32.726a4.919 4.919 0 0 0-.25 2.213c.035.293.112.656.384.831.696.45 2.016.112 2.808.138.638.022 1.26.04 1.897-.008.265-.02.566.031.754-.195.61-.737-.28-1.79-.529-2.487-.103-.29-.194-.592-.343-.864-.137-.25-.354-.46-.466-.723-.102-.239-.1-.496-.123-.75a10.299 10.299 0 0 1-.042-.767c0-.051.027-.204-.022-.239-.216-.152-.796.092-1.028.12-.905.11-1.823.22-2.736.236l.02.036Z" clip-rule="evenodd"/>
<path fill="#F1D88E" fill-rule="evenodd" d="M16.894 71.278c.36.016.733-.034 1.106-.073.419-.044.838-.073 1.24.012a.107.107 0 0 1 .082.089c.01.052.022.306.024.325.017.186 0 .382-.013.576-.011.178-.017.355.025.52a.125.125 0 0 1-.029.123.142.142 0 0 1-.097.043.487.487 0 0 1-.125-.014c-.048-.01-.1-.026-.135-.026-.188-.001-.375-.002-.563 0-.51.005-1.096.143-1.6.091a.107.107 0 0 1-.095-.098c-.005-.051 0-.302 0-.319 0-.354.005-.711.036-1.065a.102.102 0 0 1 .05-.19h.062c.01 0 .022.002.032.005Zm.06.205c-.03.347-.035.697-.036 1.045v.22c.477.029 1.015-.094 1.49-.099.188-.002.376 0 .565 0a.76.76 0 0 1 .151.025l.015.003a2.218 2.218 0 0 1-.01-.482c.01-.184.03-.37.013-.545a43.652 43.652 0 0 1-.017-.248c-.36-.063-.731-.034-1.104.005-.359.038-.719.085-1.067.076Zm6.319-.296-.066-.195a.102.102 0 0 1 .1-.134c.608.02 1.215.008 1.823.017.08 0 .32-.025.487-.007.103.011.182.045.22.088a.28.28 0 0 1 .045.15c.014.18-.026.55-.024.613.008.26.062.514.078.772a.112.112 0 0 1-.063.115.162.162 0 0 1-.093.014c-.028-.002-.065-.016-.088-.014-.146.007-.29.02-.436.031-.642.054-1.29-.07-1.925.022a.096.096 0 0 1-.097-.04.118.118 0 0 1-.02-.077c.002-.081.046-.491.05-.514.058-.288-.004-.554.01-.841Zm.153 1.256c.6-.063 1.209.042 1.813-.008.147-.013.294-.025.442-.033l.043.003c-.021-.226-.064-.45-.07-.68-.003-.055.028-.344.026-.536 0-.037-.005-.08-.007-.102l-.025-.008a.702.702 0 0 0-.12-.013c-.153-.006-.335.013-.4.012-.56-.008-1.12.002-1.68-.013l.026.075a.101.101 0 0 1 .005.038c-.018.305.047.585-.013.889a10.2 10.2 0 0 0-.04.376Z" clip-rule="evenodd"/>
<path fill="#fff" fill-rule="evenodd" d="M15.075 68.006a1.55 1.55 0 0 0-.046.856c.088.413.21.85.535 1.15.114.105.26.136.399.193.521.214.984.2 1.542.231.34.02.679.052 1.02.062.488.016.922-.008 1.403-.062.23-.026.489-.044.677-.192.143-.113.194-.286.27-.443.09-.189.133-.377.198-.573.106-.32.216-.574.135-.913-.034-.145-.034-.588-.244-.602-.25-.017-.537.126-.79.148-.786.067-1.58.127-2.37.108a38.875 38.875 0 0 1-2.409-.116c-.236-.021-.487 0-.72-.042m7.447-.21c-.052.088-.322.08-.363.204-.159.478-.187 1.207.32 1.834.186.23.095.386.402.451.288.062.93.059 1.215.02.457-.062.964-.044 1.418-.132.472-.09 1.09-.07 1.455-.414.468-.441.705-.974.741-1.604.011-.19-.155-.689-.39-.79" clip-rule="evenodd"/>
<path fill="#600C13" fill-rule="evenodd" d="M12.714 63.132c.015.404.282 1.475.46 1.824.137.264.232.544.378.805.087.156.12.332.2.49.212.427.491.864.78 1.242.123.163.214.358.385.478.453.319 1.137.168 1.652.173 1.28.013 2.557.094 3.826-.105a.85.85 0 0 0 .547-.386c.09-.155.173-.43.393-.434.247-.004.375.261.543.396.166.132.382.164.586.188.6.073 1.26.12 1.862.058.342-.036 1.798-.183 2.172-.304.296-.096 1.092-.466 1.242-.517.313-.107.608-.372.858-.581.572-.478.579-1.052.643-1.719.055-.568.132-1.126.174-1.696l-16.7.088Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.888 60.766c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.401 7.694-.147.835-.196 5.068-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.092-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.839 60.676c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.01.094-.417 1.023-1.763 2.002-2.65 2.564-1.19.752-5.443 2.227-6.283 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.044-.103a.102.102 0 0 1 .053-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.252-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.397.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.73 57.907c.242.4.826.722 1.305 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.164 1.8.345 2.717.418.781.061 1.568.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475a16.43 16.43 0 0 0 1.603-1.472c.231-.239.222-.246.409-.522.262-.388-.296-1.324-.346-1.274-.269.262-2.21 1.3-3.04 1.87-2.095 1.436-4.816 1.8-7.297 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.278 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.642 57.96c-.064-.105-.086-.277-.073-.474a3.08 3.08 0 0 1 .18-.804c.045-.12.093-.215.134-.268a.214.214 0 0 1 .09-.072.155.155 0 0 1 .083-.001c.053.011.16.06.308.137.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.599 3.027-1.86a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.513.513 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.191.283-.183.29-.42.536a16.76 16.76 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.678-.78-.064-1.566-.024-2.347-.086-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.827-.403-.766-.3-1.477-.828-2.112-1.338-.489-.392-1.08-.723-1.328-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.972 1.815-2.11 1.447-4.85 1.817-7.349 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.056 3.056 0 0 0-.23-.108l-.012.017a1.2 1.2 0 0 0-.084.185c-.078.208-.15.5-.167.748-.01.147-.004.277.043.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.79.393.899.163 1.792.344 2.706.416.782.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.546 16.546 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.067 59.28a.557.557 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .433.054.553.127a.555.555 0 0 1 .252.33c.026.088.046.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308 0-1.007.125-1.513.145-.335.014-.612-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.496-.04 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.008.233.014.346.01l.007-.185c.047-.505.067-.983.002-1.487l-.001-.015c-.201.022-.395.05-.501.051-.811.014-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 53.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 53.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 50.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 50.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 51.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 46.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 46.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 43.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 43.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 44.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 38.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 38.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 35.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 35.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 36.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 30.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 30.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 27.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 27.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.358 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859.026-.026.062-.04.11-.026a.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.277.044.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.478-.06-.225-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 28.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.134.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M4.342 22.636c-.95.555-1.382.26-2.408.157-.374-.037-1.026-.106-1.308.217-.696.8 1.275.963 1.636 1.058 0 0-.187.272-.207.297a3.348 3.348 0 0 1-.515.513c-.615.49-1.51.854-1.433 1.789.143 1.716 1.82 2.34 3.239 1.496.915-.544 1.619-1.975 2.703-2.653l-1.707-2.874Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M2.09 24.136c-.32-.058-.954-.15-1.34-.345-.218-.11-.359-.259-.373-.436-.009-.119.037-.257.172-.412.127-.147.32-.225.535-.26.294-.048.629-.014.86.01.411.04.728.112 1.02.148.417.051.782.025 1.326-.293a.103.103 0 0 1 .14.036l1.707 2.875a.101.101 0 0 1-.033.138c-.534.333-.972.852-1.391 1.355-.434.52-.848 1.021-1.315 1.298-.74.44-1.55.495-2.19.218-.646-.278-1.128-.89-1.203-1.793-.042-.503.175-.854.489-1.144.293-.27.672-.485.982-.732a3.27 3.27 0 0 0 .5-.498l.115-.165Zm2.215-1.362c-.548.3-.932.322-1.366.27-.291-.037-.606-.108-1.016-.15-.216-.02-.53-.055-.806-.01-.164.026-.315.08-.413.192-.088.101-.128.186-.122.263.009.116.119.198.262.27.445.227 1.23.304 1.444.36.037.01.073.034.076.093 0 .004.005.027-.014.058l-.008.012a15.25 15.25 0 0 1-.207.296 3.418 3.418 0 0 1-.53.529c-.307.244-.682.456-.971.723-.27.249-.46.547-.425.979.068.814.497 1.37 1.08 1.622.587.254 1.326.198 2.004-.205.449-.267.844-.753 1.262-1.254.41-.492.842-.999 1.356-1.344l-1.606-2.704Zm30.905 2.293c.459.427.765.995 1.21 1.44.544.544 1.374.985 2.104 1.232 1.393.472 2.669-.854 2.574-2.212-.058-.82-.752-1.181-1.39-1.562a3.589 3.589 0 0 0-.056-.033l-.082-.048a6.307 6.307 0 0 1-.64-.445c-.027-.021-.105-.04-.08-.064.371-.385 1.144-.279 1.379-.876.162-.412-.345-.75-.689-.786-.522-.056-1.122.249-1.658.289-.636.048-1.196-.165-1.814-.225l-.858 3.29Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M39.009 23.37c.195.152.402.3.614.427l.081.048c.02.01.038.022.057.033.325.194.664.384.93.63.278.257.478.574.509 1.012.1 1.427-1.246 2.81-2.71 2.316-.743-.252-1.588-.703-2.143-1.258-.444-.443-.75-1.01-1.207-1.437a.102.102 0 0 1-.03-.1l.859-3.29a.102.102 0 0 1 .109-.075c.612.06 1.166.272 1.796.225.262-.02.54-.105.816-.178.295-.077.588-.14.861-.111.23.025.526.17.686.381a.538.538 0 0 1 .087.543c-.13.33-.402.47-.699.576-.215.077-.444.133-.616.259Zm-.14.15a.617.617 0 0 1-.073-.038.129.129 0 0 1-.043-.05c-.02-.04-.02-.084.022-.128.197-.203.497-.282.78-.383.242-.087.473-.191.578-.46.065-.163-.01-.31-.13-.422a.881.881 0 0 0-.474-.224c-.25-.027-.517.034-.787.105-.288.076-.578.163-.852.184-.613.045-1.155-.145-1.745-.216l-.82 3.147c.435.422.737.97 1.168 1.4.533.534 1.348.966 2.064 1.208 1.323.448 2.529-.818 2.438-2.109-.026-.38-.202-.654-.444-.878-.256-.235-.583-.417-.896-.603a27.084 27.084 0 0 0-.055-.033l-.083-.049a6.381 6.381 0 0 1-.648-.45Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M10.416 24.074c.216.02.317.453.31.603-.005.128 20.129.036 20.133-.092.006-.169.132-.489.22-.48.302.028.738.536.982.71.63.45 1.325.836 2.035 1.149.101.045 1.005.367 1.029.349.43-.339.646-1.33.878-1.795.225-.45.386-.934.557-1.407.178-.49.336-1.029.614-1.474.09-.144.358-.388.251-.552-.281-.432-.906-.423-1.34-.584-.878-.325-3.696-1.168-4.693-1.883-.485-.348-2.249-1.573-2.712-1.952-.181-.148-.53-.52-.764-.54-.75-.069-14.506-.063-14.661-.022-.627.164-1.409 1.16-1.919 1.572-1.587 1.284-3.4 2.405-5.178 3.406-.586.33-1.214.603-1.83.876a8.727 8.727 0 0 1-.593.237c-.102.037-.343 0-.309.103.045.136 1.055 1.605 1.184 1.797.284.421.52.867.77 1.307.22.388.495.747.723 1.131.075.126.155.25.21.386.028.07.032.273.079.213.756-.964 1.981-1.427 3.009-2.122.1-.068.94-.942 1.015-.936Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M31.095 24.21a.493.493 0 0 0-.04.059.869.869 0 0 0-.094.32c0 .023-.008.07-.068.094-.026.01-.163.024-.397.034-2.137.086-13.041.148-17.68.114-1.167-.009-1.94-.024-2.082-.046-.065-.01-.09-.045-.096-.056a.1.1 0 0 1-.014-.056.885.885 0 0 0-.094-.374.347.347 0 0 0-.068-.094.127.127 0 0 0-.032-.023 1.264 1.264 0 0 0-.071.058c-.26.224-.819.799-.9.854-1.019.689-2.236 1.145-2.986 2.1a.12.12 0 0 1-.09.05.109.109 0 0 1-.083-.029.201.201 0 0 1-.05-.1c-.012-.048-.018-.122-.033-.158-.052-.132-.13-.25-.202-.372-.229-.385-.504-.745-.724-1.133-.25-.438-.484-.882-.766-1.3-.131-.195-1.15-1.685-1.196-1.823a.144.144 0 0 1 0-.097.152.152 0 0 1 .09-.089.498.498 0 0 1 .136-.026c.051-.004.109-.004.145-.017.198-.072.394-.15.587-.235.612-.271 1.238-.543 1.82-.871 1.774-.999 3.581-2.117 5.165-3.397.305-.246.707-.703 1.115-1.063.287-.254.578-.46.841-.529.017-.004.177-.011.454-.014 2.35-.03 13.568-.029 14.243.033.108.01.24.08.37.177.17.126.34.297.45.387.462.377 2.223 1.6 2.707 1.948.992.711 3.796 1.546 4.67 1.87.214.08.476.117.72.188.269.078.515.198.67.436.061.095.048.21-.012.326-.064.122-.184.247-.239.334-.274.44-.43.973-.604 1.456-.173.477-.335.963-.562 1.417-.14.278-.272.745-.448 1.146-.126.286-.276.54-.459.683-.009.008-.05.032-.119.016a14.84 14.84 0 0 1-1.014-.351A11.68 11.68 0 0 1 32 24.898c-.147-.105-.364-.331-.58-.501-.115-.091-.227-.168-.326-.188ZM3.552 22.322c.173.304 1.026 1.54 1.144 1.716.285.422.521.87.773 1.313.22.387.495.745.723 1.13.077.13.16.259.216.4l.015.052c.768-.882 1.933-1.34 2.92-2.008.08-.054.627-.62.88-.84a.73.73 0 0 1 .138-.1.128.128 0 0 1 .064-.013c.118.01.218.102.286.232.064.121.101.274.113.385.235.018.957.03 1.994.037 4.635.034 15.534-.027 17.67-.114.114-.004.217-.012.278-.017.023-.128.08-.287.142-.379.056-.085.129-.119.18-.114.137.013.3.107.46.234.213.169.427.392.573.496a11.46 11.46 0 0 0 2.017 1.138c.086.038.76.28.957.333.145-.13.26-.343.364-.576.178-.405.312-.875.452-1.155.224-.448.383-.926.553-1.396.18-.496.341-1.043.623-1.494.053-.084.17-.204.23-.322.024-.043.046-.085.022-.12-.127-.196-.334-.287-.556-.352-.248-.073-.515-.11-.733-.192-.883-.328-3.715-1.177-4.718-1.896-.486-.349-2.253-1.577-2.717-1.956-.108-.088-.275-.257-.443-.381-.095-.071-.187-.13-.266-.137-.674-.062-11.875-.063-14.222-.033a17.4 17.4 0 0 0-.41.01c-.236.064-.493.254-.75.482-.411.363-.816.821-1.123 1.07-1.592 1.286-3.41 2.41-5.192 3.415-.589.331-1.22.606-1.839.88a9.08 9.08 0 0 1-.6.24.728.728 0 0 1-.168.027.555.555 0 0 0-.05.005Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.822 14.371c-1.011.54-1.821 1.515-1.27 2.67.132.275.351.483.596.66.016.012.29.16.288.171-.033.288-.272.595-.367.866-.262.743.098 1.715.679 2.236.226.203.511.322.807.384.037.008.44.044.443.054.223.689-.305 1.761.527 2.288.679.43 1.913-.08 2.043-.011.062.032.175.334.264.415.582.523 1.643.924 2.414.679.422-.134.796-.525 1.008-.903.008-.014.055-.13.064-.13.243 0 .505.13.747.166.85.125 1.761-.177 2.328-.836.243-.282.429-.611.406-.995-.012-.201-.316-.41-.197-.573.295-.407 1.162-.089 1.63-1.017.375-.743.54-1.598.264-2.396a1.424 1.424 0 0 0-.322-.536c-.015-.016-.212-.163-.21-.17.106-.569 1.404-.712.857-2.276-.163-.469-.374-.88-.835-1.114a3.076 3.076 0 0 0-.633-.243c-.013-.004-.207-.043-.207-.049.03-.615.315-1.068.189-1.738-.154-.81-.708-1.467-.749-2.306-.034-.706.695-1.396.093-1.953-.564-.521-1.442-.601-2.16-.77-2.137-.5-4.244-.396-6.387.134-.26.064-2.422.651-2.54.879-.17.324.103.868.056 1.222-.056.42-.306.783-.305 1.215.001.617.302 1.152.413 1.748.136.725.106 1.516.136 2.256l-.07-.027Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.785 14.277c-.023-.699-.003-1.437-.13-2.117-.112-.601-.413-1.143-.415-1.765 0-.229.064-.439.137-.647.068-.19.143-.38.17-.583.027-.204-.06-.474-.097-.725-.028-.197-.026-.383.05-.53a.252.252 0 0 1 .072-.079 1.34 1.34 0 0 1 .264-.14c.627-.27 2.062-.66 2.271-.711 2.16-.534 4.283-.64 6.436-.134.733.171 1.63.26 2.206.794.335.31.31.656.195 1.025-.1.32-.272.656-.255.997.02.407.165.769.323 1.128.166.377.345.752.423 1.165.067.35.026.643-.036.93-.052.242-.121.48-.145.748l.125.028a3.2 3.2 0 0 1 .654.251c.485.248.713.678.885 1.172.174.498.168.86.077 1.138-.092.282-.272.481-.457.65-.113.103-.227.194-.318.286a.593.593 0 0 0-.14.199c.057.044.157.124.168.134.158.16.273.364.345.575.284.825.117 1.707-.27 2.475-.299.593-.749.712-1.131.803-.114.028-.221.052-.314.09a.415.415 0 0 0-.193.137c-.014.02-.008.04 0 .063a.541.541 0 0 0 .053.095c.072.113.157.234.164.35.024.411-.171.766-.43 1.067-.59.686-1.538 1-2.423.87-.217-.032-.45-.143-.67-.162l-.036.076c-.224.398-.62.808-1.066.95-.803.255-1.908-.156-2.514-.701-.06-.053-.131-.193-.192-.306a1.408 1.408 0 0 0-.052-.088.778.778 0 0 0-.047.005c-.064.01-.15.03-.252.052-.277.06-.663.143-1.033.133-.26-.007-.512-.06-.717-.189-.45-.285-.54-.715-.54-1.17 0-.384.07-.788-.012-1.113-.108-.012-.358-.04-.384-.045a1.828 1.828 0 0 1-.855-.409c-.608-.546-.98-1.566-.707-2.344.049-.14.135-.289.213-.44.059-.115.114-.23.139-.343-.076-.044-.226-.13-.237-.139-.258-.187-.488-.408-.627-.699-.578-1.21.254-2.238 1.314-2.802l.01-.005Zm-.104-6.27c-.073.144-.043.336-.006.531.043.232.1.468.075.654-.029.217-.107.42-.18.623-.065.187-.125.375-.125.58.002.61.302 1.138.412 1.728.136.73.107 1.526.137 2.27a.102.102 0 0 1-.14.1l-.024-.01c-.946.518-1.703 1.43-1.185 2.514.124.26.333.455.563.622.015.01.238.133.282.165.053.039.05.088.048.1-.018.155-.09.316-.171.474-.074.142-.155.282-.202.414-.248.707.099 1.63.652 2.126.213.19.48.302.76.36.032.008.36.037.428.05.069.013.088.063.09.073.115.353.04.805.04 1.236 0 .385.063.755.445.997.175.111.39.152.612.158.352.01.72-.071.984-.13.141-.03.255-.055.324-.06a.219.219 0 0 1 .116.017c.028.015.07.06.109.128.055.096.119.25.176.301.558.502 1.574.893 2.314.658.399-.127.749-.499.95-.855.007-.015.052-.12.068-.14a.104.104 0 0 1 .085-.043c.248 0 .515.13.762.167.816.12 1.691-.168 2.235-.8.226-.263.403-.567.382-.924a.31.31 0 0 0-.056-.135c-.037-.061-.082-.122-.114-.18-.064-.116-.08-.226-.008-.324.13-.18.36-.242.625-.305.335-.08.734-.177.996-.698.363-.719.525-1.545.26-2.318a1.326 1.326 0 0 0-.299-.497c-.014-.015-.173-.133-.203-.162a.105.105 0 0 1-.035-.098.635.635 0 0 1 .153-.295c.1-.118.243-.229.384-.358.16-.145.32-.317.4-.561.08-.248.079-.568-.075-1.01-.155-.443-.35-.835-.786-1.056a2.982 2.982 0 0 0-.611-.236c-.013-.003-.177-.037-.21-.048a.103.103 0 0 1-.074-.104c.015-.313.095-.586.155-.864.056-.262.095-.53.035-.85-.075-.397-.25-.757-.41-1.12-.168-.382-.32-.768-.34-1.2-.018-.365.158-.726.264-1.067.09-.292.127-.57-.14-.816-.55-.51-1.411-.58-2.112-.745-2.121-.497-4.212-.393-6.34.133-.18.044-1.288.344-1.977.597a3.4 3.4 0 0 0-.414.176.677.677 0 0 0-.084.057Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="M16.65 13.644c1.02.19 2.127-.014 3.157-.004.847.008 1.669.027 2.515-.026.492-.031.978-.034 1.437-.241.293-.133.543-.33.784-.54.231-.201.494-.392.647-.664.818-1.45-1.314-2.466-2.44-2.735-1.025-.244-2.143-.09-3.173.046-.555.073-1.136.12-1.669.298-.367.122-.693.329-1.048.477-.393.164-.86.207-1.225.43-1.211.738-.167 2.65.932 2.952l.082.007Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="m16.636 13.745-.078-.007a.088.088 0 0 1-.018-.003c-.691-.19-1.365-.985-1.517-1.76-.105-.534.033-1.057.559-1.377.369-.225.84-.27 1.239-.437.357-.15.684-.357 1.055-.48.54-.179 1.127-.228 1.688-.302 1.041-.137 2.172-.29 3.21-.043.692.165 1.753.608 2.312 1.255.392.453.546 1.004.194 1.628-.159.282-.43.482-.67.69-.248.216-.507.42-.809.556-.47.213-.967.219-1.473.25-.848.054-1.672.035-2.522.027-1.035-.01-2.146.192-3.17.003Zm.033-.201c1.014.189 2.114-.016 3.14-.006.844.008 1.663.028 2.506-.026.48-.03.954-.03 1.401-.232.284-.128.526-.32.76-.523.222-.194.478-.376.625-.637.302-.536.166-1.008-.17-1.397-.532-.616-1.546-1.033-2.205-1.19-1.013-.24-2.118-.087-3.135.048-.549.072-1.123.118-1.65.293-.366.121-.688.328-1.04.475-.39.162-.852.203-1.212.422-.444.27-.553.714-.465 1.165.137.7.737 1.424 1.361 1.6l.073.006c.004 0 .007 0 .01.002Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="M19.81 14.676c-.087-.48-.514-.72-.956-.824-.817-.19-1.721-.031-2.52-.296a2.187 2.187 0 0 1-.929-.647c-.008-.01-.076-.11-.08-.109-.169.064-.22.317-.234.468-.101 1.076.384 2.377 1.468 2.803.896.352 1.9-.104 2.635-.606.213-.146.62-.4.698-.671l-.081-.118Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m19.907 14.636.07.1a.1.1 0 0 1 .014.086.845.845 0 0 1-.246.357c-.159.15-.362.28-.493.37-.761.52-1.803.981-2.73.617-1.127-.443-1.638-1.79-1.533-2.907.01-.102.035-.244.094-.357a.395.395 0 0 1 .207-.197.102.102 0 0 1 .117.031c.013.016.07.1.078.109a2.076 2.076 0 0 0 .882.614c.39.13.806.154 1.224.171.435.018.872.026 1.287.123.474.11.925.375 1.03.883Zm-4.606-1.697a.346.346 0 0 0-.055.1.902.902 0 0 0-.053.24c-.097 1.033.361 2.287 1.404 2.697.864.34 1.83-.11 2.54-.595.123-.085.316-.207.467-.35a.74.74 0 0 0 .174-.222l-.052-.075a.103.103 0 0 1-.016-.04c-.08-.437-.477-.649-.879-.743-.402-.093-.826-.1-1.248-.117-.438-.018-.873-.046-1.281-.182a2.285 2.285 0 0 1-.977-.68l-.024-.033Zm5.096 1.941c.164.283.447.468.72.638.251.156.502.316.796.38 1.342.291 2.973-.595 3.02-2.041.013-.357-.071-.731-.17-1.073a9.412 9.412 0 0 0-.106-.31c-.095.043-.13.306-.166.384a.788.788 0 0 1-.478.431c-1.136.383-2.423-.266-3.23.893a3.153 3.153 0 0 0-.35.611l-.036.087Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m20.302 14.841.036-.086c.092-.227.22-.43.361-.631.425-.611.975-.749 1.57-.781.556-.03 1.152.038 1.711-.15a.687.687 0 0 0 .417-.376c.025-.056.05-.201.096-.299a.27.27 0 0 1 .122-.137.095.095 0 0 1 .117.024.117.117 0 0 1 .024.041c.019.048.1.291.106.31.101.352.187.737.174 1.104-.05 1.51-1.745 2.441-3.145 2.138-.306-.067-.567-.231-.829-.394-.286-.178-.581-.376-.754-.674a.101.101 0 0 1-.006-.089Zm4.334-2.114c-.02.07-.036.138-.052.173a.89.89 0 0 1-.538.486c-.577.194-1.192.13-1.766.16-.534.029-1.03.145-1.412.693a3.07 3.07 0 0 0-.34.592l-.016.04c.158.245.414.408.66.56.24.15.48.306.763.368 1.284.278 2.85-.561 2.896-1.946.012-.346-.07-.71-.166-1.04l-.03-.086Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="M20.009 14.911c-.218.126-.274.524-.52.508-.373-.023-.601.113-.674.595-.02.142-.198.201-.335.249a.441.441 0 0 1-.138.022c-.023 0-.084-.015-.069.002.424.46 1 .763 1.647.608.688-.163 1.374-.929.984-1.63-.2-.357-.576-.107-.824-.295l-.071-.059Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="m20.075 14.833.069.057a.298.298 0 0 0 .154.054c.07.008.144.006.216.009.184.007.358.044.48.264.215.386.137.792-.094 1.123-.223.32-.59.567-.956.654-.685.164-1.298-.15-1.746-.638a.1.1 0 0 1-.029-.087.1.1 0 0 1 .053-.077.127.127 0 0 1 .06-.015c.015 0 .044.007.058.007a.347.347 0 0 0 .106-.018.887.887 0 0 0 .192-.08c.037-.021.07-.046.076-.087.041-.274.133-.447.26-.55.132-.106.305-.145.521-.131.041.002.072-.02.1-.048a.71.71 0 0 0 .078-.106c.08-.127.162-.27.284-.341a.103.103 0 0 1 .117.01Zm-1.58 1.532c.38.349.864.56 1.401.432.32-.077.641-.294.836-.573.187-.268.257-.596.082-.91-.096-.172-.25-.157-.396-.16-.143-.002-.283-.014-.4-.103l-.004-.003-.008-.007a.636.636 0 0 0-.074.095c-.046.069-.088.145-.134.207-.082.113-.18.187-.315.178-.157-.01-.284.008-.378.085-.098.079-.157.215-.188.423a.306.306 0 0 1-.127.2 1.017 1.017 0 0 1-.295.136Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.334 12.1c-.586-.008-1.269.131-1.72.607-.606.642-.473 1.471.392 1.776.32.113.68.113 1.016.12.639.012 1.567-.174 1.924-.77.506-.846-.685-1.718-1.612-1.732Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.336 11.999c.586.01 1.271.344 1.61.803.24.323.314.706.088 1.083-.153.256-.403.443-.694.573-.42.187-.924.254-1.32.246-.347-.007-.718-.009-1.048-.125-.473-.167-.742-.481-.814-.838-.071-.353.052-.755.382-1.103.47-.498 1.183-.648 1.796-.639Zm-.003.204c-.56-.009-1.214.12-1.644.574-.277.293-.39.627-.33.925.06.295.29.547.681.685.31.11.659.107.984.114.37.007.84-.054 1.232-.23.251-.111.47-.27.602-.49.179-.299.114-.602-.076-.858-.306-.413-.923-.712-1.45-.72Z" clip-rule="evenodd"/>
<path fill="#000" fill-rule="evenodd" d="M17.27 11.564a.103.103 0 0 1-.144.002.102.102 0 0 1-.003-.144c.432-.44.978-.368 1.433-.012a.102.102 0 0 1 .017.143.103.103 0 0 1-.144.016c-.368-.287-.81-.361-1.159-.005Zm4.983-.15a.103.103 0 0 1-.143.024.101.101 0 0 1-.024-.142.787.787 0 0 1 .456-.33c.362-.087.76.156 1.025.475a.102.102 0 0 1-.014.144.103.103 0 0 1-.145-.014c-.214-.258-.525-.477-.819-.407a.589.589 0 0 0-.336.25Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="M27.4 5.999c-.197.426-.134.93-.025 1.371.109.441.245.94.552 1.289.696.79 1.998.938 2.809.26.579-.485.445-1.327.225-1.963-.173-.501-.466-1.044-.903-1.37-.573-.427-1.619-.507-2.3-.3l-.358.713Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="m27.308 5.953.358-.712a.104.104 0 0 1 .062-.052c.709-.215 1.795-.129 2.392.316.453.338.759.898.938 1.418.114.33.204.712.192 1.074-.012.38-.135.737-.448 1-.852.712-2.221.559-2.952-.271-.318-.361-.462-.876-.575-1.331-.114-.463-.175-.992.031-1.439l.002-.003Zm.184.09c-.186.404-.121.884-.018 1.303.106.426.234.909.53 1.246.66.75 1.896.893 2.666.249.266-.223.365-.528.376-.85.01-.339-.076-.695-.182-1.002-.166-.483-.447-1.008-.867-1.32-.54-.403-1.513-.48-2.168-.298l-.337.672Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="M14.258 8.1c.812-.77 2.05-1.101 3.117-1.296 1.835-.333 3.73-.484 5.582-.151.908.163 1.738.538 2.597.856.16.06.332.117.468.223.052.04.186.218.24.18.23-.162.175-.555.132-.79-.17-.915-1.035-1.198-1.636-1.777-.139-.134-.72-.59-.444-.822.214-.18.58-.059.778.08.662.466 1.126 1.27 2.012 1.399.395.057.998-.339.899-.777-.057-.248-.281-.443-.429-.64-.376-.499-.805-.944-1.187-1.433-.358-.457-.551-.979-1.002-1.372-.437-.383-1.03-.535-1.503-.871-.402-.286-.634-.714-1.165-.798-.582-.092-1.246.516-1.76.719-.415.163-.876.217-1.271.426-.386.204-.646.58-.988.846-.312.241-.713.358-1.01.62-.62.55-1.355 1.765-1.74 2.501-.31.597-.965.795-1.434 1.217-.426.383-.557 1.188-.39 1.725l.134-.064Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="m14.303 8.193-.135.063a.103.103 0 0 1-.142-.062c-.177-.57-.033-1.423.42-1.83.237-.214.522-.372.787-.55.247-.168.477-.355.624-.637.39-.746 1.136-1.974 1.764-2.53.298-.265.7-.382 1.014-.626.346-.27.612-.648 1.002-.855.399-.211.863-.266 1.281-.43.308-.121.668-.388 1.032-.562.264-.126.531-.203.783-.163.287.045.494.182.683.347.171.151.327.327.525.468.476.338 1.072.492 1.512.877.456.399.652.924 1.015 1.387.382.489.812.934 1.188 1.434.074.098.166.195.248.299a1 1 0 0 1 .199.38c.047.208-.034.41-.185.57-.213.228-.564.368-.83.33-.463-.068-.818-.31-1.143-.598-.306-.273-.585-.588-.913-.819a.852.852 0 0 0-.415-.151.328.328 0 0 0-.237.066c-.07.058-.033.138.018.22.117.187.351.374.432.451.298.287.663.501.973.757.33.272.602.59.691 1.075.028.15.06.362.027.544a.511.511 0 0 1-.2.346c-.037.027-.085.034-.14.01a.43.43 0 0 1-.117-.086c-.042-.04-.082-.088-.105-.106-.128-.1-.29-.152-.44-.208-.854-.316-1.678-.69-2.58-.851-1.84-.331-3.722-.18-5.545.152-1.048.19-2.267.512-3.065 1.27a.107.107 0 0 1-.027.018Zm-.104-.177c.826-.777 2.078-1.115 3.158-1.312 1.847-.335 3.753-.486 5.619-.152.913.165 1.749.541 2.614.861.17.063.35.126.495.238.023.018.061.06.102.101a.694.694 0 0 0 .051.046.347.347 0 0 0 .081-.184 1.415 1.415 0 0 0-.026-.474c-.08-.43-.326-.712-.62-.955-.315-.259-.684-.476-.986-.767-.087-.083-.337-.288-.463-.49-.111-.179-.128-.355.023-.483a.534.534 0 0 1 .382-.114c.19.01.39.096.522.19.334.235.619.554.931.832.295.262.615.487 1.036.548.21.03.482-.087.65-.266.103-.11.167-.246.135-.388a.778.778 0 0 0-.161-.299c-.082-.105-.176-.203-.25-.302-.376-.499-.804-.943-1.186-1.431-.354-.453-.543-.97-.988-1.36-.435-.38-1.026-.53-1.496-.863-.204-.145-.365-.326-.542-.481-.16-.14-.335-.26-.58-.3-.27-.042-.557.084-.839.238-.307.168-.606.373-.867.476-.411.162-.868.213-1.26.42-.38.202-.636.575-.973.837-.31.24-.709.355-1.004.616-.613.543-1.338 1.744-1.718 2.472-.163.315-.416.525-.69.711-.258.174-.535.326-.766.534-.37.333-.5 1.006-.391 1.505l.008-.004Z" clip-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 42 KiB

57
images/santa/santa-9.svg Normal file
View File

@ -0,0 +1,57 @@
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="84" fill="none" viewBox="0 0 42 84">
<path fill="#3F1A0A" fill-rule="evenodd" d="M16.25 78.452c-.081.623.082 1.277-.101 1.888a7.295 7.295 0 0 1-.473 1.224c-.184.356-.468.681-.546 1.086-.032.168.014.351.02.52.003.15-.027.337.04.477.233.486 1.002.33 1.432.327 1.04-.008 2.077.004 3.108-.136.389-.053.887-.062 1.2-.334.288-.252.133-.692.09-1.016-.067-.483.031-1.1-.18-1.55-.117-.25-.355-.393-.514-.611-.36-.496-.01-.825-.056-1.354-.002-.025-.063-.495-.11-.505-.292-.067-.628-.022-.927-.034-1.017-.041-2.023.075-3.043.025l.06-.007Zm6.205-.383c-.085.574.085 1.161-.004 1.733-.042.268-.23.475-.32.726a4.919 4.919 0 0 0-.25 2.213c.035.293.112.656.384.831.696.45 2.016.112 2.808.138.638.022 1.26.04 1.897-.008.265-.02.566.031.754-.195.61-.737-.28-1.79-.529-2.487-.103-.29-.194-.592-.343-.864-.137-.25-.354-.46-.466-.723-.102-.239-.1-.496-.123-.75a10.299 10.299 0 0 1-.042-.767c0-.051.027-.204-.022-.239-.216-.152-.796.092-1.028.12-.905.11-1.823.22-2.736.236l.02.036Z" clip-rule="evenodd"/>
<path fill="#F1D88E" fill-rule="evenodd" d="M16.894 79.278c.36.016.733-.034 1.106-.073.419-.044.838-.073 1.24.012a.107.107 0 0 1 .082.089c.01.052.022.306.024.325.017.186 0 .382-.013.576-.011.178-.017.355.025.52a.125.125 0 0 1-.029.123.142.142 0 0 1-.097.043.487.487 0 0 1-.125-.014c-.048-.01-.1-.026-.135-.026-.188-.001-.375-.002-.563 0-.51.005-1.096.143-1.6.091a.107.107 0 0 1-.095-.098c-.005-.051 0-.302 0-.319 0-.354.005-.711.036-1.065a.102.102 0 0 1 .05-.19h.062c.01 0 .022.002.032.005Zm.06.205c-.03.347-.035.697-.036 1.045v.22c.477.029 1.015-.094 1.49-.099.188-.002.376 0 .565 0a.76.76 0 0 1 .151.025l.015.003a2.218 2.218 0 0 1-.01-.482c.01-.184.03-.37.013-.545a43.652 43.652 0 0 1-.017-.248c-.36-.063-.731-.034-1.104.005-.359.038-.719.085-1.067.076Zm6.319-.296-.066-.195a.102.102 0 0 1 .1-.134c.608.02 1.215.008 1.823.017.08 0 .32-.025.487-.007.103.011.182.045.22.088a.28.28 0 0 1 .045.15c.014.18-.026.55-.024.613.008.26.062.514.078.772a.112.112 0 0 1-.063.115.162.162 0 0 1-.093.014c-.028-.002-.065-.016-.088-.014-.146.007-.29.02-.436.031-.642.054-1.29-.07-1.925.022a.096.096 0 0 1-.097-.04.118.118 0 0 1-.02-.077c.002-.081.046-.491.05-.514.058-.288-.004-.554.01-.841Zm.153 1.256c.6-.063 1.209.042 1.813-.008.147-.013.294-.025.442-.033l.043.003c-.021-.226-.064-.45-.07-.68-.003-.055.028-.344.026-.536 0-.037-.005-.08-.007-.102l-.025-.008a.702.702 0 0 0-.12-.013c-.153-.006-.335.013-.4.012-.56-.008-1.12.002-1.68-.013l.026.075a.101.101 0 0 1 .005.038c-.018.305.047.585-.013.889a10.2 10.2 0 0 0-.04.376Z" clip-rule="evenodd"/>
<path fill="#fff" fill-rule="evenodd" d="M15.075 76.006a1.55 1.55 0 0 0-.046.856c.088.413.21.85.535 1.15.114.105.26.136.399.193.521.214.984.2 1.542.231.34.02.679.052 1.02.062.488.016.922-.008 1.403-.062.23-.026.489-.044.677-.192.143-.113.194-.286.27-.443.09-.189.133-.377.198-.573.106-.32.216-.574.135-.913-.034-.145-.034-.588-.244-.602-.25-.017-.537.126-.79.148-.786.067-1.58.127-2.37.108a38.875 38.875 0 0 1-2.409-.116c-.236-.021-.487 0-.72-.042m7.447-.21c-.052.088-.322.08-.363.204-.159.478-.187 1.207.32 1.834.186.23.095.386.402.451.288.062.93.059 1.215.02.457-.062.964-.044 1.418-.132.472-.09 1.09-.07 1.455-.414.468-.441.705-.974.741-1.604.011-.19-.155-.689-.39-.79" clip-rule="evenodd"/>
<path fill="#600C13" fill-rule="evenodd" d="M12.714 71.132c.015.404.282 1.475.46 1.824.137.264.232.544.378.805.087.156.12.332.2.49.212.427.491.864.78 1.242.123.163.214.358.385.478.453.319 1.137.168 1.652.173 1.28.013 2.557.094 3.826-.105a.85.85 0 0 0 .547-.386c.09-.155.173-.43.393-.434.247-.004.375.261.543.396.166.132.382.164.586.188.6.073 1.26.12 1.862.058.342-.036 1.798-.183 2.172-.304.296-.096 1.092-.466 1.242-.517.313-.107.608-.372.858-.581.572-.478.579-1.052.643-1.719.055-.568.132-1.126.174-1.696l-16.7.088Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.888 68.766c.852 1.237 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.401 7.694-.147.835-.196 5.068-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.092-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M8.839 68.676c.023-.044.07-.132.115-.234.407-.906 1.46-3.717 1.566-5.818.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.01.094-.417 1.023-1.763 2.002-2.65 2.564-1.19.753-5.443 2.227-6.283 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.044-.103a.102.102 0 0 1 .053-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.252-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.397.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.388-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.73 65.907c.242.4.826.722 1.305 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.164 1.8.345 2.717.418.781.061 1.568.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475a16.43 16.43 0 0 0 1.603-1.472c.231-.239.222-.246.409-.522.262-.388-.296-1.324-.346-1.274-.269.262-2.21 1.3-3.04 1.87-2.095 1.436-4.816 1.8-7.297 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.278 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.642 65.96c-.064-.105-.086-.277-.073-.474a3.08 3.08 0 0 1 .18-.805c.045-.12.093-.214.134-.267a.214.214 0 0 1 .09-.072.155.155 0 0 1 .083-.001c.053.011.16.06.308.137.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.918.827-.568 2.76-1.599 3.027-1.86a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.513.513 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.191.283-.183.29-.42.536a16.76 16.76 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.678-.78-.064-1.566-.024-2.347-.086-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.827-.403-.766-.3-1.477-.829-2.112-1.338-.489-.392-1.08-.723-1.328-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.972 1.815-2.11 1.447-4.85 1.817-7.349 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.056 3.056 0 0 0-.23-.108l-.012.017a1.2 1.2 0 0 0-.084.185c-.078.208-.15.5-.167.748-.01.147-.004.277.043.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.79.393.899.163 1.792.344 2.706.416.782.062 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.546 16.546 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.118.06-.299.012-.477-.06-.225-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.067 67.28a.557.557 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .433.054.553.127a.555.555 0 0 1 .252.33c.026.088.046.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308 0-1.007.125-1.513.145-.335.014-.612-.03-.767-.103a.818.818 0 0 1-.453-.575c-.038-.156-.027-.345-.044-.482a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.046.01.12.014.19.096.001.217 0 .313-.008.496-.04 1.076-.134 1.354-.133.296 0 .633.046.968.069.117.008.233.014.346.01l.007-.185c.047-.504.067-.983.002-1.487l-.001-.015c-.201.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 61.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.478 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 61.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.425-2.343.55-5.386.718-7.741.147-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 58.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 58.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 59.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 54.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 54.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 51.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 51.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 52.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 46.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 46.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 43.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 43.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 44.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 38.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 38.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.947l.073.107c.032.05.01.09.009.093-.416 1.024-1.763 2.003-2.65 2.565-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 35.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 35.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.359 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859a.104.104 0 0 1 .11-.026.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.342-2.196 1.282-2.973 1.815-2.109 1.446-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.276.044.355.238.392.813.702 1.282 1.079.62.496 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.477-.06-.226-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 36.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.203-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634c-.072.445-.073.88-.017 1.342.006.044.01.12.014.19.096 0 .217-.001.313-.01.495-.04 1.076-.133 1.354-.133.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.103 30.326c.852 1.236 3.108 2.44 4.461 3.057 1.048.477 2.145.968 3.271 1.24 2.34.568 5.365.4 7.694-.147.835-.196 5.067-1.662 6.25-2.41.872-.554 2.2-1.511 2.61-2.517.003-.007-2.6-3.588-2.408-5.645.091-.974-20.065-1.26-20.143.285-.134 2.642-1.754 6.402-1.735 6.137Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M9.054 30.236c.023-.044.07-.132.115-.235.407-.905 1.46-3.716 1.566-5.817.006-.113.083-.226.244-.324.191-.117.512-.223.94-.315 2.754-.592 10.043-.66 14.772-.403 2.04.111 3.605.286 4.135.5a.56.56 0 0 1 .203.125.186.186 0 0 1 .054.147c-.068.726.223 1.645.619 2.525.601 1.339 1.45 2.588 1.7 2.948l.073.106c.032.05.01.09.009.094-.416 1.023-1.763 2.002-2.65 2.564-1.188.752-5.442 2.227-6.282 2.424-2.343.551-5.386.718-7.741.148-1.132-.275-2.236-.767-3.29-1.247-1.353-.617-3.596-1.818-4.476-3.054-.023-.016-.049-.046-.045-.103a.102.102 0 0 1 .054-.083Zm.18.1c.878 1.2 3.057 2.355 4.373 2.955 1.042.474 2.133.963 3.252 1.234 2.326.564 5.332.396 7.646-.147.832-.196 5.043-1.654 6.219-2.399.843-.534 2.124-1.448 2.549-2.419a11.86 11.86 0 0 1-.04-.058c-.253-.364-1.11-1.627-1.719-2.98-.409-.91-.703-1.863-.636-2.616a.34.34 0 0 0-.054-.04 1.42 1.42 0 0 0-.307-.109c-.674-.176-2.077-.316-3.837-.411-4.711-.257-11.973-.192-14.718.398-.398.085-.698.18-.876.29-.086.052-.143.1-.146.16-.121 2.387-1.447 5.681-1.705 6.141Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.944 27.467c.243.4.827.721 1.306 1.106.627.503 1.328 1.026 2.084 1.322.566.22 1.213.29 1.809.398.903.163 1.8.345 2.717.418.781.061 1.567.021 2.347.085 2.29.187 3.886.123 6.097-.67.512-.184 3.046-1.114 3.497-1.475.577-.46 1.091-.942 1.603-1.472.231-.239.222-.246.409-.522.262-.388-.296-1.324-.347-1.274-.268.262-2.209 1.3-3.04 1.87-2.094 1.436-4.815 1.8-7.296 1.937-2.42.133-5.407-.217-7.59-1.327-.936-.477-3.18-1.912-3.317-1.864-.149.051-.477 1.142-.279 1.468Z" clip-rule="evenodd"/>
<path fill="#35190A" fill-rule="evenodd" d="M9.857 27.52c-.064-.105-.086-.277-.073-.474.018-.267.096-.581.18-.805.044-.12.093-.215.133-.267a.215.215 0 0 1 .091-.072.155.155 0 0 1 .083-.002c.053.012.16.06.308.138.674.358 2.26 1.353 3.008 1.735 2.168 1.102 5.134 1.447 7.538 1.315 2.462-.135 5.164-.493 7.243-1.919.827-.567 2.76-1.598 3.027-1.859.026-.026.062-.04.11-.026a.143.143 0 0 1 .053.03.518.518 0 0 1 .073.087c.101.143.261.45.325.744.047.216.04.425-.058.569-.192.283-.183.29-.42.536a16.748 16.748 0 0 1-1.612 1.48c-.456.364-3.01 1.305-3.527 1.49-2.226.8-3.834.866-6.14.677-.78-.063-1.566-.023-2.347-.085-.921-.073-1.821-.255-2.728-.419-.601-.11-1.256-.18-1.828-.404-.765-.299-1.476-.828-2.11-1.337-.49-.392-1.081-.724-1.33-1.132Zm21.6-1.998c-.456.341-2.196 1.282-2.973 1.815-2.109 1.447-4.85 1.817-7.348 1.954-2.437.134-5.444-.22-7.642-1.337-.75-.382-2.337-1.378-3.012-1.736a3.114 3.114 0 0 0-.23-.108l-.012.017c-.027.045-.056.11-.084.185-.078.208-.15.5-.168.748-.01.146-.003.277.044.355.238.392.813.702 1.282 1.079.62.497 1.31 1.014 2.058 1.306.56.219 1.2.286 1.789.393.9.163 1.793.344 2.707.416.781.061 1.568.022 2.348.085 2.273.186 3.858.124 6.053-.664.508-.183 3.02-1.1 3.468-1.458a16.556 16.556 0 0 0 1.593-1.463c.225-.233.216-.24.398-.509.08-.119.06-.299.012-.478-.06-.225-.214-.49-.282-.6Z" clip-rule="evenodd"/>
<path fill="#E5D162" fill-rule="evenodd" d="M18.282 28.84a.556.556 0 0 1 .618-.49c.927.113 1.914-.126 2.847-.142.152-.002.504-.069.767-.069.236 0 .432.054.553.127a.555.555 0 0 1 .252.33c.026.088.045.49.048.554.073.578.054 1.129 0 1.71-.004.043-.011.493-.02.586-.037.374-.337.47-.376.483-.605.204-1.405.035-2.03.034-.308-.001-1.007.125-1.513.145-.335.014-.613-.03-.767-.103a.818.818 0 0 1-.453-.576c-.038-.155-.027-.344-.044-.481a5.612 5.612 0 0 1 .118-2.107Zm.998.634a4.7 4.7 0 0 0-.017 1.341c.006.045.01.12.014.19.096.001.217 0 .313-.008.495-.041 1.076-.134 1.354-.134.296.001.633.047.968.07.117.008.233.014.345.01.004-.092.006-.17.008-.185.047-.505.066-.983.002-1.487l-.001-.015c-.202.022-.395.05-.501.051-.811.013-1.663.177-2.485.167Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M4.342 22.636c-.95.555-1.382.26-2.408.157-.374-.037-1.026-.106-1.308.217-.696.8 1.275.963 1.636 1.058 0 0-.187.272-.207.297a3.348 3.348 0 0 1-.515.513c-.615.49-1.51.854-1.433 1.789.143 1.716 1.82 2.34 3.239 1.496.915-.544 1.619-1.975 2.703-2.653l-1.707-2.874Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M2.09 24.136c-.32-.058-.954-.15-1.34-.345-.218-.11-.359-.259-.373-.436-.009-.119.037-.257.172-.412.127-.147.32-.225.535-.26.294-.048.629-.014.86.01.411.04.728.112 1.02.148.417.051.782.025 1.326-.293a.103.103 0 0 1 .14.036l1.707 2.875a.101.101 0 0 1-.033.138c-.534.333-.972.852-1.391 1.355-.434.52-.848 1.021-1.315 1.298-.74.44-1.55.495-2.19.218-.646-.278-1.128-.89-1.203-1.793-.042-.503.175-.854.489-1.144.293-.27.672-.485.982-.732a3.27 3.27 0 0 0 .5-.498l.115-.165Zm2.215-1.362c-.548.3-.932.322-1.366.27-.291-.037-.606-.108-1.016-.15-.216-.02-.53-.055-.806-.01-.164.026-.315.08-.413.192-.088.101-.128.186-.122.263.009.116.119.198.262.27.445.227 1.23.304 1.444.36.037.01.073.034.076.093 0 .004.005.027-.014.058l-.008.012a15.25 15.25 0 0 1-.207.296 3.418 3.418 0 0 1-.53.529c-.307.244-.682.456-.971.723-.27.249-.46.547-.425.979.068.814.497 1.37 1.08 1.622.587.254 1.326.198 2.004-.205.449-.267.844-.753 1.262-1.254.41-.492.842-.999 1.356-1.344l-1.606-2.704Zm30.905 2.293c.459.427.765.995 1.21 1.44.544.544 1.374.985 2.104 1.232 1.393.472 2.669-.854 2.574-2.212-.058-.82-.752-1.181-1.39-1.562a3.589 3.589 0 0 0-.056-.033l-.082-.048a6.307 6.307 0 0 1-.64-.445c-.027-.021-.105-.04-.08-.064.371-.385 1.144-.279 1.379-.876.162-.412-.345-.75-.689-.786-.522-.056-1.122.249-1.658.289-.636.048-1.196-.165-1.814-.225l-.858 3.29Z" clip-rule="evenodd"/>
<path fill="#60070C" fill-rule="evenodd" d="M39.009 23.37c.195.152.402.3.614.427l.081.048c.02.01.038.022.057.033.325.194.664.384.93.63.278.257.478.574.509 1.012.1 1.427-1.246 2.81-2.71 2.316-.743-.252-1.588-.703-2.143-1.258-.444-.443-.75-1.01-1.207-1.437a.102.102 0 0 1-.03-.1l.859-3.29a.102.102 0 0 1 .109-.075c.612.06 1.166.272 1.796.225.262-.02.54-.105.816-.178.295-.077.588-.14.861-.111.23.025.526.17.686.381a.538.538 0 0 1 .087.543c-.13.33-.402.47-.699.576-.215.077-.444.133-.616.259Zm-.14.15a.617.617 0 0 1-.073-.038.129.129 0 0 1-.043-.05c-.02-.04-.02-.084.022-.128.197-.203.497-.282.78-.383.242-.087.473-.191.578-.46.065-.163-.01-.31-.13-.422a.881.881 0 0 0-.474-.224c-.25-.027-.517.034-.787.105-.288.076-.578.163-.852.184-.613.045-1.155-.145-1.745-.216l-.82 3.147c.435.422.737.97 1.168 1.4.533.534 1.348.966 2.064 1.208 1.323.448 2.529-.818 2.438-2.109-.026-.38-.202-.654-.444-.878-.256-.235-.583-.417-.896-.603a27.084 27.084 0 0 0-.055-.033l-.083-.049a6.381 6.381 0 0 1-.648-.45Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M10.416 24.074c.216.02.317.453.31.603-.005.128 20.129.036 20.133-.092.006-.169.132-.489.22-.48.302.028.738.536.982.71.63.45 1.325.836 2.035 1.149.101.045 1.005.367 1.029.349.43-.339.646-1.33.878-1.795.225-.45.386-.934.557-1.407.178-.49.336-1.029.614-1.474.09-.144.358-.388.251-.552-.281-.432-.906-.423-1.34-.584-.878-.325-3.696-1.168-4.693-1.883-.485-.348-2.249-1.573-2.712-1.952-.181-.148-.53-.52-.764-.54-.75-.069-14.506-.063-14.661-.022-.627.164-1.409 1.16-1.919 1.572-1.587 1.284-3.4 2.405-5.178 3.406-.586.33-1.214.603-1.83.876a8.727 8.727 0 0 1-.593.237c-.102.037-.343 0-.309.103.045.136 1.055 1.605 1.184 1.797.284.421.52.867.77 1.307.22.388.495.747.723 1.131.075.126.155.25.21.386.028.07.032.273.079.213.756-.964 1.981-1.427 3.009-2.122.1-.068.94-.942 1.015-.936Z" clip-rule="evenodd"/>
<path fill="#BD111F" fill-rule="evenodd" d="M31.095 24.21a.493.493 0 0 0-.04.059.869.869 0 0 0-.094.32c0 .023-.008.07-.068.094-.026.01-.163.024-.397.034-2.137.086-13.041.148-17.68.114-1.167-.009-1.94-.024-2.082-.046-.065-.01-.09-.045-.096-.056a.1.1 0 0 1-.014-.056.885.885 0 0 0-.094-.374.347.347 0 0 0-.068-.094.127.127 0 0 0-.032-.023 1.264 1.264 0 0 0-.071.058c-.26.224-.819.799-.9.854-1.019.689-2.236 1.145-2.986 2.1a.12.12 0 0 1-.09.05.109.109 0 0 1-.083-.029.201.201 0 0 1-.05-.1c-.012-.048-.018-.122-.033-.158-.052-.132-.13-.25-.202-.372-.229-.385-.504-.745-.724-1.133-.25-.438-.484-.882-.766-1.3-.131-.195-1.15-1.685-1.196-1.823a.144.144 0 0 1 0-.097.152.152 0 0 1 .09-.089.498.498 0 0 1 .136-.026c.051-.004.109-.004.145-.017.198-.072.394-.15.587-.235.612-.271 1.238-.543 1.82-.871 1.774-.999 3.581-2.117 5.165-3.397.305-.246.707-.703 1.115-1.063.287-.254.578-.46.841-.529.017-.004.177-.011.454-.014 2.35-.03 13.568-.029 14.243.033.108.01.24.08.37.177.17.126.34.297.45.387.462.377 2.223 1.6 2.707 1.948.992.711 3.796 1.546 4.67 1.87.214.08.476.117.72.188.269.078.515.198.67.436.061.095.048.21-.012.326-.064.122-.184.247-.239.334-.274.44-.43.973-.604 1.456-.173.477-.335.963-.562 1.417-.14.278-.272.745-.448 1.146-.126.286-.276.54-.459.683-.009.008-.05.032-.119.016a14.84 14.84 0 0 1-1.014-.351A11.68 11.68 0 0 1 32 24.898c-.147-.105-.364-.331-.58-.501-.115-.091-.227-.168-.326-.188ZM3.552 22.322c.173.304 1.026 1.54 1.144 1.716.285.422.521.87.773 1.313.22.387.495.745.723 1.13.077.13.16.259.216.4l.015.052c.768-.882 1.933-1.34 2.92-2.008.08-.054.627-.62.88-.84a.73.73 0 0 1 .138-.1.128.128 0 0 1 .064-.013c.118.01.218.102.286.232.064.121.101.274.113.385.235.018.957.03 1.994.037 4.635.034 15.534-.027 17.67-.114.114-.004.217-.012.278-.017.023-.128.08-.287.142-.379.056-.085.129-.119.18-.114.137.013.3.107.46.234.213.169.427.392.573.496a11.46 11.46 0 0 0 2.017 1.138c.086.038.76.28.957.333.145-.13.26-.343.364-.576.178-.405.312-.875.452-1.155.224-.448.383-.926.553-1.396.18-.496.341-1.043.623-1.494.053-.084.17-.204.23-.322.024-.043.046-.085.022-.12-.127-.196-.334-.287-.556-.352-.248-.073-.515-.11-.733-.192-.883-.328-3.715-1.177-4.718-1.896-.486-.349-2.253-1.577-2.717-1.956-.108-.088-.275-.257-.443-.381-.095-.071-.187-.13-.266-.137-.674-.062-11.875-.063-14.222-.033a17.4 17.4 0 0 0-.41.01c-.236.064-.493.254-.75.482-.411.363-.816.821-1.123 1.07-1.592 1.286-3.41 2.41-5.192 3.415-.589.331-1.22.606-1.839.88a9.08 9.08 0 0 1-.6.24.728.728 0 0 1-.168.027.555.555 0 0 0-.05.005Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.822 14.371c-1.011.54-1.821 1.515-1.27 2.67.132.275.351.483.596.66.016.012.29.16.288.171-.033.288-.272.595-.367.866-.262.743.098 1.715.679 2.236.226.203.511.322.807.384.037.008.44.044.443.054.223.689-.305 1.761.527 2.288.679.43 1.913-.08 2.043-.011.062.032.175.334.264.415.582.523 1.643.924 2.414.679.422-.134.796-.525 1.008-.903.008-.014.055-.13.064-.13.243 0 .505.13.747.166.85.125 1.761-.177 2.328-.836.243-.282.429-.611.406-.995-.012-.201-.316-.41-.197-.573.295-.407 1.162-.089 1.63-1.017.375-.743.54-1.598.264-2.396a1.424 1.424 0 0 0-.322-.536c-.015-.016-.212-.163-.21-.17.106-.569 1.404-.712.857-2.276-.163-.469-.374-.88-.835-1.114a3.076 3.076 0 0 0-.633-.243c-.013-.004-.207-.043-.207-.049.03-.615.315-1.068.189-1.738-.154-.81-.708-1.467-.749-2.306-.034-.706.695-1.396.093-1.953-.564-.521-1.442-.601-2.16-.77-2.137-.5-4.244-.396-6.387.134-.26.064-2.422.651-2.54.879-.17.324.103.868.056 1.222-.056.42-.306.783-.305 1.215.001.617.302 1.152.413 1.748.136.725.106 1.516.136 2.256l-.07-.027Z" clip-rule="evenodd"/>
<path fill="#FDFEFE" fill-rule="evenodd" d="M14.785 14.277c-.023-.699-.003-1.437-.13-2.117-.112-.601-.413-1.143-.415-1.765 0-.229.064-.439.137-.647.068-.19.143-.38.17-.583.027-.204-.06-.474-.097-.725-.028-.197-.026-.383.05-.53a.252.252 0 0 1 .072-.079 1.34 1.34 0 0 1 .264-.14c.627-.27 2.062-.66 2.271-.711 2.16-.534 4.283-.64 6.436-.134.733.171 1.63.26 2.206.794.335.31.31.656.195 1.025-.1.32-.272.656-.255.997.02.407.165.769.323 1.128.166.377.345.752.423 1.165.067.35.026.643-.036.93-.052.242-.121.48-.145.748l.125.028a3.2 3.2 0 0 1 .654.251c.485.248.713.678.885 1.172.174.498.168.86.077 1.138-.092.282-.272.481-.457.65-.113.103-.227.194-.318.286a.593.593 0 0 0-.14.199c.057.044.157.124.168.134.158.16.273.364.345.575.284.825.117 1.707-.27 2.475-.299.593-.749.712-1.131.803-.114.028-.221.052-.314.09a.415.415 0 0 0-.193.137c-.014.02-.008.04 0 .063a.541.541 0 0 0 .053.095c.072.113.157.234.164.35.024.411-.171.766-.43 1.067-.59.686-1.538 1-2.423.87-.217-.032-.45-.143-.67-.162l-.036.076c-.224.398-.62.808-1.066.95-.803.255-1.908-.156-2.514-.701-.06-.053-.131-.193-.192-.306a1.408 1.408 0 0 0-.052-.088.778.778 0 0 0-.047.005c-.064.01-.15.03-.252.052-.277.06-.663.143-1.033.133-.26-.007-.512-.06-.717-.189-.45-.285-.54-.715-.54-1.17 0-.384.07-.788-.012-1.113-.108-.012-.358-.04-.384-.045a1.828 1.828 0 0 1-.855-.409c-.608-.546-.98-1.566-.707-2.344.049-.14.135-.289.213-.44.059-.115.114-.23.139-.343-.076-.044-.226-.13-.237-.139-.258-.187-.488-.408-.627-.699-.578-1.21.254-2.238 1.314-2.802l.01-.005Zm-.104-6.27c-.073.144-.043.336-.006.531.043.232.1.468.075.654-.029.217-.107.42-.18.623-.065.187-.125.375-.125.58.002.61.302 1.138.412 1.728.136.73.107 1.526.137 2.27a.102.102 0 0 1-.14.1l-.024-.01c-.946.518-1.703 1.43-1.185 2.514.124.26.333.455.563.622.015.01.238.133.282.165.053.039.05.088.048.1-.018.155-.09.316-.171.474-.074.142-.155.282-.202.414-.248.707.099 1.63.652 2.126.213.19.48.302.76.36.032.008.36.037.428.05.069.013.088.063.09.073.115.353.04.805.04 1.236 0 .385.063.755.445.997.175.111.39.152.612.158.352.01.72-.071.984-.13.141-.03.255-.055.324-.06a.219.219 0 0 1 .116.017c.028.015.07.06.109.128.055.096.119.25.176.301.558.502 1.574.893 2.314.658.399-.127.749-.499.95-.855.007-.015.052-.12.068-.14a.104.104 0 0 1 .085-.043c.248 0 .515.13.762.167.816.12 1.691-.168 2.235-.8.226-.263.403-.567.382-.924a.31.31 0 0 0-.056-.135c-.037-.061-.082-.122-.114-.18-.064-.116-.08-.226-.008-.324.13-.18.36-.242.625-.305.335-.08.734-.177.996-.698.363-.719.525-1.545.26-2.318a1.326 1.326 0 0 0-.299-.497c-.014-.015-.173-.133-.203-.162a.105.105 0 0 1-.035-.098.635.635 0 0 1 .153-.295c.1-.118.243-.229.384-.358.16-.145.32-.317.4-.561.08-.248.079-.568-.075-1.01-.155-.443-.35-.835-.786-1.056a2.982 2.982 0 0 0-.611-.236c-.013-.003-.177-.037-.21-.048a.103.103 0 0 1-.074-.104c.015-.313.095-.586.155-.864.056-.262.095-.53.035-.85-.075-.397-.25-.757-.41-1.12-.168-.382-.32-.768-.34-1.2-.018-.365.158-.726.264-1.067.09-.292.127-.57-.14-.816-.55-.51-1.411-.58-2.112-.745-2.121-.497-4.212-.393-6.34.133-.18.044-1.288.344-1.977.597a3.4 3.4 0 0 0-.414.176.677.677 0 0 0-.084.057Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="M16.65 13.644c1.02.19 2.127-.014 3.157-.004.847.008 1.669.027 2.515-.026.492-.031.978-.034 1.437-.241.293-.133.543-.33.784-.54.231-.201.494-.392.647-.664.818-1.45-1.314-2.466-2.44-2.735-1.025-.244-2.143-.09-3.173.046-.555.073-1.136.12-1.669.298-.367.122-.693.329-1.048.477-.393.164-.86.207-1.225.43-1.211.738-.167 2.65.932 2.952l.082.007Z" clip-rule="evenodd"/>
<path fill="#F0CECC" fill-rule="evenodd" d="m16.636 13.745-.078-.007a.088.088 0 0 1-.018-.003c-.691-.19-1.365-.985-1.517-1.76-.105-.534.033-1.057.559-1.377.369-.225.84-.27 1.239-.437.357-.15.684-.357 1.055-.48.54-.179 1.127-.228 1.688-.302 1.041-.137 2.172-.29 3.21-.043.692.165 1.753.608 2.312 1.255.392.453.546 1.004.194 1.628-.159.282-.43.482-.67.69-.248.216-.507.42-.809.556-.47.213-.967.219-1.473.25-.848.054-1.672.035-2.522.027-1.035-.01-2.146.192-3.17.003Zm.033-.201c1.014.189 2.114-.016 3.14-.006.844.008 1.663.028 2.506-.026.48-.03.954-.03 1.401-.232.284-.128.526-.32.76-.523.222-.194.478-.376.625-.637.302-.536.166-1.008-.17-1.397-.532-.616-1.546-1.033-2.205-1.19-1.013-.24-2.118-.087-3.135.048-.549.072-1.123.118-1.65.293-.366.121-.688.328-1.04.475-.39.162-.852.203-1.212.422-.444.27-.553.714-.465 1.165.137.7.737 1.424 1.361 1.6l.073.006c.004 0 .007 0 .01.002Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="M19.81 14.676c-.087-.48-.514-.72-.956-.824-.817-.19-1.721-.031-2.52-.296a2.187 2.187 0 0 1-.929-.647c-.008-.01-.076-.11-.08-.109-.169.064-.22.317-.234.468-.101 1.076.384 2.377 1.468 2.803.896.352 1.9-.104 2.635-.606.213-.146.62-.4.698-.671l-.081-.118Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m19.907 14.636.07.1a.1.1 0 0 1 .014.086.845.845 0 0 1-.246.357c-.159.15-.362.28-.493.37-.761.52-1.803.981-2.73.617-1.127-.443-1.638-1.79-1.533-2.907.01-.102.035-.244.094-.357a.395.395 0 0 1 .207-.197.102.102 0 0 1 .117.031c.013.016.07.1.078.109a2.076 2.076 0 0 0 .882.614c.39.13.806.154 1.224.171.435.018.872.026 1.287.123.474.11.925.375 1.03.883Zm-4.606-1.697a.346.346 0 0 0-.055.1.902.902 0 0 0-.053.24c-.097 1.033.361 2.287 1.404 2.697.864.34 1.83-.11 2.54-.595.123-.085.316-.207.467-.35a.74.74 0 0 0 .174-.222l-.052-.075a.103.103 0 0 1-.016-.04c-.08-.437-.477-.649-.879-.743-.402-.093-.826-.1-1.248-.117-.438-.018-.873-.046-1.281-.182a2.285 2.285 0 0 1-.977-.68l-.024-.033Zm5.096 1.941c.164.283.447.468.72.638.251.156.502.316.796.38 1.342.291 2.973-.595 3.02-2.041.013-.357-.071-.731-.17-1.073a9.412 9.412 0 0 0-.106-.31c-.095.043-.13.306-.166.384a.788.788 0 0 1-.478.431c-1.136.383-2.423-.266-3.23.893a3.153 3.153 0 0 0-.35.611l-.036.087Z" clip-rule="evenodd"/>
<path fill="#F6F4F4" fill-rule="evenodd" d="m20.302 14.841.036-.086c.092-.227.22-.43.361-.631.425-.611.975-.749 1.57-.781.556-.03 1.152.038 1.711-.15a.687.687 0 0 0 .417-.376c.025-.056.05-.201.096-.299a.27.27 0 0 1 .122-.137.095.095 0 0 1 .117.024.117.117 0 0 1 .024.041c.019.048.1.291.106.31.101.352.187.737.174 1.104-.05 1.51-1.745 2.441-3.145 2.138-.306-.067-.567-.231-.829-.394-.286-.178-.581-.376-.754-.674a.101.101 0 0 1-.006-.089Zm4.334-2.114c-.02.07-.036.138-.052.173a.89.89 0 0 1-.538.486c-.577.194-1.192.13-1.766.16-.534.029-1.03.145-1.412.693a3.07 3.07 0 0 0-.34.592l-.016.04c.158.245.414.408.66.56.24.15.48.306.763.368 1.284.278 2.85-.561 2.896-1.946.012-.346-.07-.71-.166-1.04l-.03-.086Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="M20.009 14.911c-.218.126-.274.524-.52.508-.373-.023-.601.113-.674.595-.02.142-.198.201-.335.249a.441.441 0 0 1-.138.022c-.023 0-.084-.015-.069.002.424.46 1 .763 1.647.608.688-.163 1.374-.929.984-1.63-.2-.357-.576-.107-.824-.295l-.071-.059Z" clip-rule="evenodd"/>
<path fill="#950D19" fill-rule="evenodd" d="m20.075 14.833.069.057a.298.298 0 0 0 .154.054c.07.008.144.006.216.009.184.007.358.044.48.264.215.386.137.792-.094 1.123-.223.32-.59.567-.956.654-.685.164-1.298-.15-1.746-.638a.1.1 0 0 1-.029-.087.1.1 0 0 1 .053-.077.127.127 0 0 1 .06-.015c.015 0 .044.007.058.007a.347.347 0 0 0 .106-.018.887.887 0 0 0 .192-.08c.037-.021.07-.046.076-.087.041-.274.133-.447.26-.55.132-.106.305-.145.521-.131.041.002.072-.02.1-.048a.71.71 0 0 0 .078-.106c.08-.127.162-.27.284-.341a.103.103 0 0 1 .117.01Zm-1.58 1.532c.38.349.864.56 1.401.432.32-.077.641-.294.836-.573.187-.268.257-.596.082-.91-.096-.172-.25-.157-.396-.16-.143-.002-.283-.014-.4-.103l-.004-.003-.008-.007a.636.636 0 0 0-.074.095c-.046.069-.088.145-.134.207-.082.113-.18.187-.315.178-.157-.01-.284.008-.378.085-.098.079-.157.215-.188.423a.306.306 0 0 1-.127.2 1.017 1.017 0 0 1-.295.136Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.334 12.1c-.586-.008-1.269.131-1.72.607-.606.642-.473 1.471.392 1.776.32.113.68.113 1.016.12.639.012 1.567-.174 1.924-.77.506-.846-.685-1.718-1.612-1.732Z" clip-rule="evenodd"/>
<path fill="#D97978" fill-rule="evenodd" d="M20.336 11.999c.586.01 1.271.344 1.61.803.24.323.314.706.088 1.083-.153.256-.403.443-.694.573-.42.187-.924.254-1.32.246-.347-.007-.718-.009-1.048-.125-.473-.167-.742-.481-.814-.838-.071-.353.052-.755.382-1.103.47-.498 1.183-.648 1.796-.639Zm-.003.204c-.56-.009-1.214.12-1.644.574-.277.293-.39.627-.33.925.06.295.29.547.681.685.31.11.659.107.984.114.37.007.84-.054 1.232-.23.251-.111.47-.27.602-.49.179-.299.114-.602-.076-.858-.306-.413-.923-.712-1.45-.72Z" clip-rule="evenodd"/>
<path fill="#000" fill-rule="evenodd" d="M17.27 11.564a.103.103 0 0 1-.144.002.102.102 0 0 1-.003-.144c.432-.44.978-.368 1.433-.012a.102.102 0 0 1 .017.143.103.103 0 0 1-.144.016c-.368-.287-.81-.361-1.159-.005Zm4.983-.15a.103.103 0 0 1-.143.024.101.101 0 0 1-.024-.142.787.787 0 0 1 .456-.33c.362-.087.76.156 1.025.475a.102.102 0 0 1-.014.144.103.103 0 0 1-.145-.014c-.214-.258-.525-.477-.819-.407a.589.589 0 0 0-.336.25Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="M27.4 5.999c-.197.426-.134.93-.025 1.371.109.441.245.94.552 1.289.696.79 1.998.938 2.809.26.579-.485.445-1.327.225-1.963-.173-.501-.466-1.044-.903-1.37-.573-.427-1.619-.507-2.3-.3l-.358.713Z" clip-rule="evenodd"/>
<path fill="#F4F4F4" fill-rule="evenodd" d="m27.308 5.953.358-.712a.104.104 0 0 1 .062-.052c.709-.215 1.795-.129 2.392.316.453.338.759.898.938 1.418.114.33.204.712.192 1.074-.012.38-.135.737-.448 1-.852.712-2.221.559-2.952-.271-.318-.361-.462-.876-.575-1.331-.114-.463-.175-.992.031-1.439l.002-.003Zm.184.09c-.186.404-.121.884-.018 1.303.106.426.234.909.53 1.246.66.75 1.896.893 2.666.249.266-.223.365-.528.376-.85.01-.339-.076-.695-.182-1.002-.166-.483-.447-1.008-.867-1.32-.54-.403-1.513-.48-2.168-.298l-.337.672Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="M14.258 8.1c.812-.77 2.05-1.101 3.117-1.296 1.835-.333 3.73-.484 5.582-.151.908.163 1.738.538 2.597.856.16.06.332.117.468.223.052.04.186.218.24.18.23-.162.175-.555.132-.79-.17-.915-1.035-1.198-1.636-1.777-.139-.134-.72-.59-.444-.822.214-.18.58-.059.778.08.662.466 1.126 1.27 2.012 1.399.395.057.998-.339.899-.777-.057-.248-.281-.443-.429-.64-.376-.499-.805-.944-1.187-1.433-.358-.457-.551-.979-1.002-1.372-.437-.383-1.03-.535-1.503-.871-.402-.286-.634-.714-1.165-.798-.582-.092-1.246.516-1.76.719-.415.163-.876.217-1.271.426-.386.204-.646.58-.988.846-.312.241-.713.358-1.01.62-.62.55-1.355 1.765-1.74 2.501-.31.597-.965.795-1.434 1.217-.426.383-.557 1.188-.39 1.725l.134-.064Z" clip-rule="evenodd"/>
<path fill="#9F0A1B" fill-rule="evenodd" d="m14.303 8.193-.135.063a.103.103 0 0 1-.142-.062c-.177-.57-.033-1.423.42-1.83.237-.214.522-.372.787-.55.247-.168.477-.355.624-.637.39-.746 1.136-1.974 1.764-2.53.298-.265.7-.382 1.014-.626.346-.27.612-.648 1.002-.855.399-.211.863-.266 1.281-.43.308-.121.668-.388 1.032-.562.264-.126.531-.203.783-.163.287.045.494.182.683.347.171.151.327.327.525.468.476.338 1.072.492 1.512.877.456.399.652.924 1.015 1.387.382.489.812.934 1.188 1.434.074.098.166.195.248.299a1 1 0 0 1 .199.38c.047.208-.034.41-.185.57-.213.228-.564.368-.83.33-.463-.068-.818-.31-1.143-.598-.306-.273-.585-.588-.913-.819a.852.852 0 0 0-.415-.151.328.328 0 0 0-.237.066c-.07.058-.033.138.018.22.117.187.351.374.432.451.298.287.663.501.973.757.33.272.602.59.691 1.075.028.15.06.362.027.544a.511.511 0 0 1-.2.346c-.037.027-.085.034-.14.01a.43.43 0 0 1-.117-.086c-.042-.04-.082-.088-.105-.106-.128-.1-.29-.152-.44-.208-.854-.316-1.678-.69-2.58-.851-1.84-.331-3.722-.18-5.545.152-1.048.19-2.267.512-3.065 1.27a.107.107 0 0 1-.027.018Zm-.104-.177c.826-.777 2.078-1.115 3.158-1.312 1.847-.335 3.753-.486 5.619-.152.913.165 1.749.541 2.614.861.17.063.35.126.495.238.023.018.061.06.102.101a.694.694 0 0 0 .051.046.347.347 0 0 0 .081-.184 1.415 1.415 0 0 0-.026-.474c-.08-.43-.326-.712-.62-.955-.315-.259-.684-.476-.986-.767-.087-.083-.337-.288-.463-.49-.111-.179-.128-.355.023-.483a.534.534 0 0 1 .382-.114c.19.01.39.096.522.19.334.235.619.554.931.832.295.262.615.487 1.036.548.21.03.482-.087.65-.266.103-.11.167-.246.135-.388a.778.778 0 0 0-.161-.299c-.082-.105-.176-.203-.25-.302-.376-.499-.804-.943-1.186-1.431-.354-.453-.543-.97-.988-1.36-.435-.38-1.026-.53-1.496-.863-.204-.145-.365-.326-.542-.481-.16-.14-.335-.26-.58-.3-.27-.042-.557.084-.839.238-.307.168-.606.373-.867.476-.411.162-.868.213-1.26.42-.38.202-.636.575-.973.837-.31.24-.709.355-1.004.616-.613.543-1.338 1.744-1.718 2.472-.163.315-.416.525-.69.711-.258.174-.535.326-.766.534-.37.333-.5 1.006-.391 1.505l.008-.004Z" clip-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 46 KiB

12
images/your-grade.svg Normal file
View File

@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" width="133" height="26" fill="none" viewBox="0 0 133 26">
<g clip-path="url(#a)">
<path fill="#F0F0F0" fill-rule="evenodd" d="M28.112 21.826c-.8.94-1.863 1.984-2.94 2.58-1.56.863-3.14.903-4.387-.495-.57-.64-.82-1.37-.799-2.147-1.415 1.309-3.066 2.706-4.575 3.335-1.694.705-3.253.598-4.456-.687-.59-.631-.93-1.474-1.008-2.5-.09-1.2.195-2.704.759-4.358.418-1.228.991-2.55 1.644-3.895-3.36 3.607-4.807 5.821-9.343 9.082a1.262 1.262 0 0 1-1.755-.28 1.246 1.246 0 0 1 .282-1.746c4.947-3.556 6.09-5.85 10.351-10.2 1.852-1.89 5.169-6.566 6.81-8.647.158-.2.556-.724.633-.784.604-.47 1.138-.253 1.39-.115.146.08.972.54.554 1.598-.927 2.346-6.247 10.099-8.185 15.789-.371 1.09-.615 2.092-.641 2.946-.018.58.04 1.076.35 1.407.314.335.716.358 1.144.252.478-.118.978-.373 1.487-.694 2.35-1.481 4.779-4.287 5.916-5.123 1-.737 2.017-1.427 3.152-1.945.48-.22 1.747-.754 1.926-.819.993-.356 1.505.492 1.54.551.134.235.2.507.147.823a1.155 1.155 0 0 1-.456.773c-.018.016-.124.1-.37.213-.893.412-3 1.983-4.144 3.623-.257.369-.465.738-.57 1.1-.084.285-.103.564.098.79.363.406.83.219 1.284-.032 1.328-.735 2.598-2.364 3.119-3.16.502-.768 1.677-2.83 1.912-3.079.608-.645 1.258-.406 1.488-.298.124.058 1.037.581.588 1.78-.245.656-.578 1.342-.763 2.01-.149.54-.181 1.074.427 1.476.577.382.734 1.159.35 1.733a1.262 1.262 0 0 1-1.744.348c-.56-.37-.953-.775-1.215-1.205Z" clip-rule="evenodd"/>
<path fill="#F0F0F0" fill-rule="evenodd" d="M9.812 10.483a1.254 1.254 0 0 1-1.207-1.299 1.255 1.255 0 0 1 1.306-1.2c4.158.163 8.042.433 12.208-.155a1.257 1.257 0 0 1 1.42 1.063 1.252 1.252 0 0 1-1.067 1.413c-4.32.61-8.348.346-12.66.178Zm38.985 6.81c1.096-.986 2.168-1.845 3.035-2.307 1.265-.674 2.32-.579 2.947-.074 1.245 1 1.2 2.632.555 4.422-.307.852-.726 1.746-.88 2.547-.063.328-.13.645.162.835.231.152.48.03.745-.11.385-.202.771-.518 1.158-.886 1.816-1.728 3.562-4.49 4.444-5.218.95-.784 2.04-1.453 3.178-1.934.538-.228 1.988-.656 2.214-.655.6.003.907.306 1.068.564 1.89-.413 3.145.102 3.903.945.044.05.087.1.128.153a4.303 4.303 0 0 0 1.009-.214c2.791-.962 4.99-3.42 7.069-5.4.601-.574 1.209-1.13 1.787-1.716.694-.849 1.243-1.464 1.529-1.72.389-.35.707-.323.769-.327.45-.03.754.147.97.363.147.145.672.716.195 1.52a7.926 7.926 0 0 1-.205.271 19.073 19.073 0 0 1-1.49 1.666c-1.778 2.195-4.55 6.025-6.018 9.054-.396.817-.695 1.568-.83 2.202-.04.193-.065.371-.065.533 0 .07-.021.136.01.182.153.22.399.297.68.32.336.027.712-.023 1.116-.119.952-.226 2.019-.699 3.087-1.298-.04-.722.126-1.51.473-2.295.613-1.384 1.787-2.774 3.025-3.659 1.96-1.4 4.033-1.434 5.078.181.231.358.367.916.052 1.622-.383.856-1.943 2.51-3.994 4.074-.365.278-.745.553-1.135.822.573.155 1.329.198 2.3.13 1.022-.071 2.136-.296 3.058-.754a1.261 1.261 0 0 1 1.686.56c.31.618.057 1.37-.564 1.677-1.209.6-2.664.917-4.005 1.011-2.474.172-4.007-.34-4.9-1.125-1.703.928-3.41 1.588-4.77 1.67-1.421.085-2.549-.372-3.26-1.403-.356-.516-.525-1.232-.42-2.12.107-.898.505-2.042 1.113-3.296.206-.426.437-.867.686-1.316a11.45 11.45 0 0 1-2.204 1.053 6.562 6.562 0 0 1-1.06.267c.003.3-.019.613-.068.933-.55 3.577-4.475 8.089-9.913 6.13-1.526-.55-2.293-1.382-2.622-2.252a2.862 2.862 0 0 1-.15-.573c-.728.843-1.497 1.627-2.254 2.164-1.389.988-2.783 1.2-3.987.41-1.518-.994-1.571-2.62-.964-4.437.293-.88.734-1.81.941-2.645a2.689 2.689 0 0 0 .088-.628c-.298.145-.825.417-1.222.71-2.724 2.007-6.439 6.23-7.336 6.926-.57.443-1.03.384-1.228.343a1.25 1.25 0 0 1-.785-.501 1.285 1.285 0 0 1-.253-.818c.004-.165.063-.475.236-.858.312-.689 1.109-2 1.409-2.62.096-.2.206-.405.326-.617a17.25 17.25 0 0 1-2.167 1.027 1.26 1.26 0 0 1-1.63-.706 1.249 1.249 0 0 1 .709-1.62 14.09 14.09 0 0 0 4.177-2.523c.405-.356 1.113-1.29 1.537-1.697.3-.287.585-.433.757-.487.62-.193 1.068.016 1.388.373.16.178.425.544.316 1.22-.104.64-.372 1.336-.733 2.048Zm20.925.666c-.951-.18-1.863-.553-2.63-1.117.024.017.09.059.09.059s-.286-.25-.487-.448c-1.038.64-2.892 2.078-4.001 3.586-.303.411-.55.824-.678 1.226-.073.232-.116.454-.04.657.13.345.52.564 1.125.781 3.629 1.307 6.204-1.77 6.572-4.157.03-.203.05-.4.05-.587Zm14.643.72c.819-.65 1.624-1.442 2.198-2.043a4.618 4.618 0 0 0-.53.332 7.123 7.123 0 0 0-1.668 1.712Zm27.421-2.181a4.637 4.637 0 0 1-.329-.585c-.608-1.293-.149-2.626.952-3.63a5.938 5.938 0 0 1 2.872-1.393c.822-.138 1.593-.04 2.178.263.885.459 1.287 1.076 1.417 1.7.165.796-.156 1.79-1.098 2.756a8.966 8.966 0 0 1-1.048.9c.508.068 1.048.095 1.605.094 3.756-.01 8.219-1.36 9.945-1.88a1.26 1.26 0 0 1 1.567.835 1.25 1.25 0 0 1-.839 1.559c-1.85.556-6.641 1.975-10.667 1.986-1.693.005-3.246-.26-4.487-.86-2.98 1.501-6.69 2.682-9.082 2.646a1.255 1.255 0 0 1-1.238-1.269 1.255 1.255 0 0 1 1.277-1.23c1.841.027 4.579-.79 6.975-1.892Zm2.244-1.179c.33-.2.64-.401.924-.604.472-.335.87-.668 1.155-.993.084-.095.17-.23.229-.329a.47.47 0 0 0-.042-.024c-.17-.088-.4-.05-.639-.006a3.367 3.367 0 0 0-1.167.473 2.332 2.332 0 0 0-.644.58c-.097.136-.185.282-.112.438.081.171.18.326.296.465Z" clip-rule="evenodd"/>
<path fill="#F0F0F0" fill-rule="evenodd" d="M129.457 15.645a4.147 4.147 0 0 0-.113-.091 3.045 3.045 0 0 0-.515-.298c-.661-.316-1.556-.59-2.61-.885a1.25 1.25 0 1 1 .68-2.407c1.494.418 2.708.827 3.509 1.297.825.483 1.301 1.073 1.486 1.705.266.908-.04 2.187-1.726 3.744-.509.47-1.305.44-1.777-.066a1.246 1.246 0 0 1 .066-1.766c.377-.348.659-.654.847-.934.064-.094.125-.233.153-.299ZM75.41 11.503c-.694 0-1.257-.56-1.257-1.25s.563-1.25 1.257-1.25c3.633 0 7.21 0 10.805-.59a1.257 1.257 0 0 1 1.445 1.029 1.251 1.251 0 0 1-1.035 1.437c-3.733.614-7.444.624-11.215.624Z" clip-rule="evenodd"/>
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M.5.668h132v25H.5z"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

705
package-lock.json generated
View File

@ -9,6 +9,7 @@
"version": "0.1.0", "version": "0.1.0",
"dependencies": { "dependencies": {
"@prisma/client": "^5.6.0", "@prisma/client": "^5.6.0",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2", "@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5", "@radix-ui/react-toast": "^1.1.5",
"chart.js": "^4.4.0", "chart.js": "^4.4.0",
@ -20,12 +21,12 @@
"react": "^18", "react": "^18",
"react-chartjs-2": "^5.2.0", "react-chartjs-2": "^5.2.0",
"react-dom": "^18", "react-dom": "^18",
"recharts": "^2.10.3",
"socket.io": "^4.7.2", "socket.io": "^4.7.2",
"socket.io-client": "^4.7.2", "socket.io-client": "^4.7.2",
"swr": "^2.2.4", "swr": "^2.2.4",
"tailwind-merge": "^2.1.0", "tailwind-merge": "^2.1.0",
"tailwindcss-animate": "^1.0.7" "tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^20", "@types/node": "^20",
@ -126,6 +127,40 @@
"node": "^12.22.0 || ^14.17.0 || >=16.0.0" "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
} }
}, },
"node_modules/@floating-ui/core": {
"version": "1.5.2",
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.5.2.tgz",
"integrity": "sha512-Ii3MrfY/GAIN3OhXNzpCKaLxHQfJF9qvwq/kEJYdqDxeIHa01K8sldugal6TmeeXl+WMvhv9cnVzUTaFFJF09A==",
"dependencies": {
"@floating-ui/utils": "^0.1.3"
}
},
"node_modules/@floating-ui/dom": {
"version": "1.5.3",
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.5.3.tgz",
"integrity": "sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==",
"dependencies": {
"@floating-ui/core": "^1.4.2",
"@floating-ui/utils": "^0.1.3"
}
},
"node_modules/@floating-ui/react-dom": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.4.tgz",
"integrity": "sha512-CF8k2rgKeh/49UrnIBs4BdxPUV6vize/Db1d/YbCLyp9GiVZ0BEwf5AiDSxJRCr6yOkGqTFHtmrULxkEfYZ7dQ==",
"dependencies": {
"@floating-ui/dom": "^1.5.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
},
"node_modules/@floating-ui/utils": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.1.6.tgz",
"integrity": "sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A=="
},
"node_modules/@humanwhocodes/config-array": { "node_modules/@humanwhocodes/config-array": {
"version": "0.11.13", "version": "0.11.13",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz",
@ -419,6 +454,14 @@
"resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-5.6.0-32.e95e739751f42d8ca026f6b910f5a2dc5adeaeee.tgz", "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-5.6.0-32.e95e739751f42d8ca026f6b910f5a2dc5adeaeee.tgz",
"integrity": "sha512-UoFgbV1awGL/3wXuUK3GDaX2SolqczeeJ5b4FVec9tzeGbSWJboPSbT0psSrmgYAKiKnkOPFSLlH6+b+IyOwAw==" "integrity": "sha512-UoFgbV1awGL/3wXuUK3GDaX2SolqczeeJ5b4FVec9tzeGbSWJboPSbT0psSrmgYAKiKnkOPFSLlH6+b+IyOwAw=="
}, },
"node_modules/@radix-ui/number": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.1.tgz",
"integrity": "sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==",
"dependencies": {
"@babel/runtime": "^7.13.10"
}
},
"node_modules/@radix-ui/primitive": { "node_modules/@radix-ui/primitive": {
"version": "1.0.1", "version": "1.0.1",
"resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.1.tgz", "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.1.tgz",
@ -427,6 +470,29 @@
"@babel/runtime": "^7.13.10" "@babel/runtime": "^7.13.10"
} }
}, },
"node_modules/@radix-ui/react-arrow": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.0.3.tgz",
"integrity": "sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@radix-ui/react-primitive": "1.0.3"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-collection": { "node_modules/@radix-ui/react-collection": {
"version": "1.0.3", "version": "1.0.3",
"resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.0.3.tgz", "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.0.3.tgz",
@ -487,6 +553,23 @@
} }
} }
}, },
"node_modules/@radix-ui/react-direction": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.1.tgz",
"integrity": "sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==",
"dependencies": {
"@babel/runtime": "^7.13.10"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-dismissable-layer": { "node_modules/@radix-ui/react-dismissable-layer": {
"version": "1.0.5", "version": "1.0.5",
"resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.5.tgz", "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.5.tgz",
@ -514,6 +597,98 @@
} }
} }
}, },
"node_modules/@radix-ui/react-focus-guards": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.0.1.tgz",
"integrity": "sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==",
"dependencies": {
"@babel/runtime": "^7.13.10"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-focus-scope": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.0.4.tgz",
"integrity": "sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@radix-ui/react-compose-refs": "1.0.1",
"@radix-ui/react-primitive": "1.0.3",
"@radix-ui/react-use-callback-ref": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-id": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.0.1.tgz",
"integrity": "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@radix-ui/react-use-layout-effect": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-popper": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.1.3.tgz",
"integrity": "sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@floating-ui/react-dom": "^2.0.0",
"@radix-ui/react-arrow": "1.0.3",
"@radix-ui/react-compose-refs": "1.0.1",
"@radix-ui/react-context": "1.0.1",
"@radix-ui/react-primitive": "1.0.3",
"@radix-ui/react-use-callback-ref": "1.0.1",
"@radix-ui/react-use-layout-effect": "1.0.1",
"@radix-ui/react-use-rect": "1.0.1",
"@radix-ui/react-use-size": "1.0.1",
"@radix-ui/rect": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-portal": { "node_modules/@radix-ui/react-portal": {
"version": "1.0.4", "version": "1.0.4",
"resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.0.4.tgz", "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.0.4.tgz",
@ -584,6 +759,49 @@
} }
} }
}, },
"node_modules/@radix-ui/react-select": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-2.0.0.tgz",
"integrity": "sha512-RH5b7af4oHtkcHS7pG6Sgv5rk5Wxa7XI8W5gvB1N/yiuDGZxko1ynvOiVhFM7Cis2A8zxF9bTOUVbRDzPepe6w==",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@radix-ui/number": "1.0.1",
"@radix-ui/primitive": "1.0.1",
"@radix-ui/react-collection": "1.0.3",
"@radix-ui/react-compose-refs": "1.0.1",
"@radix-ui/react-context": "1.0.1",
"@radix-ui/react-direction": "1.0.1",
"@radix-ui/react-dismissable-layer": "1.0.5",
"@radix-ui/react-focus-guards": "1.0.1",
"@radix-ui/react-focus-scope": "1.0.4",
"@radix-ui/react-id": "1.0.1",
"@radix-ui/react-popper": "1.1.3",
"@radix-ui/react-portal": "1.0.4",
"@radix-ui/react-primitive": "1.0.3",
"@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-use-callback-ref": "1.0.1",
"@radix-ui/react-use-controllable-state": "1.0.1",
"@radix-ui/react-use-layout-effect": "1.0.1",
"@radix-ui/react-use-previous": "1.0.1",
"@radix-ui/react-visually-hidden": "1.0.3",
"aria-hidden": "^1.1.1",
"react-remove-scroll": "2.5.5"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-slot": { "node_modules/@radix-ui/react-slot": {
"version": "1.0.2", "version": "1.0.2",
"resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz", "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz",
@ -706,6 +924,59 @@
} }
} }
}, },
"node_modules/@radix-ui/react-use-previous": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.0.1.tgz",
"integrity": "sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==",
"dependencies": {
"@babel/runtime": "^7.13.10"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-use-rect": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.0.1.tgz",
"integrity": "sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@radix-ui/rect": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-use-size": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.0.1.tgz",
"integrity": "sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@radix-ui/react-use-layout-effect": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-visually-hidden": { "node_modules/@radix-ui/react-visually-hidden": {
"version": "1.0.3", "version": "1.0.3",
"resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz", "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz",
@ -729,6 +1000,14 @@
} }
} }
}, },
"node_modules/@radix-ui/rect": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.0.1.tgz",
"integrity": "sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==",
"dependencies": {
"@babel/runtime": "^7.13.10"
}
},
"node_modules/@rushstack/eslint-patch": { "node_modules/@rushstack/eslint-patch": {
"version": "1.6.0", "version": "1.6.0",
"resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.6.0.tgz", "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.6.0.tgz",
@ -761,60 +1040,6 @@
"@types/node": "*" "@types/node": "*"
} }
}, },
"node_modules/@types/d3-array": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz",
"integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg=="
},
"node_modules/@types/d3-color": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz",
"integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A=="
},
"node_modules/@types/d3-ease": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz",
"integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA=="
},
"node_modules/@types/d3-interpolate": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz",
"integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==",
"dependencies": {
"@types/d3-color": "*"
}
},
"node_modules/@types/d3-path": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.0.2.tgz",
"integrity": "sha512-WAIEVlOCdd/NKRYTsqCpOMHQHemKBEINf8YXMYOtXH0GA7SY0dqMB78P3Uhgfy+4X+/Mlw2wDtlETkN6kQUCMA=="
},
"node_modules/@types/d3-scale": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz",
"integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==",
"dependencies": {
"@types/d3-time": "*"
}
},
"node_modules/@types/d3-shape": {
"version": "3.1.6",
"resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz",
"integrity": "sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==",
"dependencies": {
"@types/d3-path": "*"
}
},
"node_modules/@types/d3-time": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz",
"integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw=="
},
"node_modules/@types/d3-timer": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz",
"integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw=="
},
"node_modules/@types/json5": { "node_modules/@types/json5": {
"version": "0.0.29", "version": "0.0.29",
"resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
@ -1070,6 +1295,17 @@
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
"dev": true "dev": true
}, },
"node_modules/aria-hidden": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.3.tgz",
"integrity": "sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==",
"dependencies": {
"tslib": "^2.0.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/aria-query": { "node_modules/aria-query": {
"version": "5.3.0", "version": "5.3.0",
"resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz",
@ -1595,116 +1831,6 @@
"integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==", "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==",
"devOptional": true "devOptional": true
}, },
"node_modules/d3-array": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz",
"integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==",
"dependencies": {
"internmap": "1 - 2"
},
"engines": {
"node": ">=12"
}
},
"node_modules/d3-color": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
"integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
"engines": {
"node": ">=12"
}
},
"node_modules/d3-ease": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz",
"integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==",
"engines": {
"node": ">=12"
}
},
"node_modules/d3-format": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz",
"integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==",
"engines": {
"node": ">=12"
}
},
"node_modules/d3-interpolate": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
"integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
"dependencies": {
"d3-color": "1 - 3"
},
"engines": {
"node": ">=12"
}
},
"node_modules/d3-path": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz",
"integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==",
"engines": {
"node": ">=12"
}
},
"node_modules/d3-scale": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
"integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
"dependencies": {
"d3-array": "2.10.0 - 3",
"d3-format": "1 - 3",
"d3-interpolate": "1.2.0 - 3",
"d3-time": "2.1.1 - 3",
"d3-time-format": "2 - 4"
},
"engines": {
"node": ">=12"
}
},
"node_modules/d3-shape": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz",
"integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
"dependencies": {
"d3-path": "^3.1.0"
},
"engines": {
"node": ">=12"
}
},
"node_modules/d3-time": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
"integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
"dependencies": {
"d3-array": "2 - 3"
},
"engines": {
"node": ">=12"
}
},
"node_modules/d3-time-format": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz",
"integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
"dependencies": {
"d3-time": "1 - 3"
},
"engines": {
"node": ">=12"
}
},
"node_modules/d3-timer": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
"integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
"engines": {
"node": ">=12"
}
},
"node_modules/damerau-levenshtein": { "node_modules/damerau-levenshtein": {
"version": "1.0.8", "version": "1.0.8",
"resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
@ -1727,11 +1853,6 @@
} }
} }
}, },
"node_modules/decimal.js-light": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz",
"integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg=="
},
"node_modules/deep-is": { "node_modules/deep-is": {
"version": "0.1.4", "version": "0.1.4",
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
@ -1778,6 +1899,11 @@
"node": ">=6" "node": ">=6"
} }
}, },
"node_modules/detect-node-es": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz",
"integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ=="
},
"node_modules/didyoumean": { "node_modules/didyoumean": {
"version": "1.2.2", "version": "1.2.2",
"resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
@ -1812,14 +1938,6 @@
"node": ">=6.0.0" "node": ">=6.0.0"
} }
}, },
"node_modules/dom-helpers": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz",
"integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==",
"dependencies": {
"@babel/runtime": "^7.1.2"
}
},
"node_modules/electron-to-chromium": { "node_modules/electron-to-chromium": {
"version": "1.4.601", "version": "1.4.601",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.601.tgz", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.601.tgz",
@ -2431,25 +2549,12 @@
"node": ">=0.10.0" "node": ">=0.10.0"
} }
}, },
"node_modules/eventemitter3": {
"version": "4.0.7",
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="
},
"node_modules/fast-deep-equal": { "node_modules/fast-deep-equal": {
"version": "3.1.3", "version": "3.1.3",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
"dev": true "dev": true
}, },
"node_modules/fast-equals": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.0.1.tgz",
"integrity": "sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/fast-glob": { "node_modules/fast-glob": {
"version": "3.3.2", "version": "3.3.2",
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
@ -2645,6 +2750,14 @@
"url": "https://github.com/sponsors/ljharb" "url": "https://github.com/sponsors/ljharb"
} }
}, },
"node_modules/get-nonce": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz",
"integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==",
"engines": {
"node": ">=6"
}
},
"node_modules/get-symbol-description": { "node_modules/get-symbol-description": {
"version": "1.0.0", "version": "1.0.0",
"resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
@ -2924,12 +3037,12 @@
"node": ">= 0.4" "node": ">= 0.4"
} }
}, },
"node_modules/internmap": { "node_modules/invariant": {
"version": "2.0.3", "version": "2.2.4",
"resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
"integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
"engines": { "dependencies": {
"node": ">=12" "loose-envify": "^1.0.0"
} }
}, },
"node_modules/is-array-buffer": { "node_modules/is-array-buffer": {
@ -3416,11 +3529,6 @@
"url": "https://github.com/sponsors/sindresorhus" "url": "https://github.com/sponsors/sindresorhus"
} }
}, },
"node_modules/lodash": {
"version": "4.17.21",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
},
"node_modules/lodash.merge": { "node_modules/lodash.merge": {
"version": "4.6.2", "version": "4.6.2",
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
@ -4088,6 +4196,7 @@
"version": "15.8.1", "version": "15.8.1",
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
"integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
"dev": true,
"dependencies": { "dependencies": {
"loose-envify": "^1.4.0", "loose-envify": "^1.4.0",
"object-assign": "^4.1.1", "object-assign": "^4.1.1",
@ -4157,40 +4266,74 @@
"node_modules/react-is": { "node_modules/react-is": {
"version": "16.13.1", "version": "16.13.1",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
"integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
"dev": true
}, },
"node_modules/react-lifecycles-compat": { "node_modules/react-remove-scroll": {
"version": "3.0.4", "version": "2.5.5",
"resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz",
"integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" "integrity": "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==",
},
"node_modules/react-smooth": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-2.0.5.tgz",
"integrity": "sha512-BMP2Ad42tD60h0JW6BFaib+RJuV5dsXJK9Baxiv/HlNFjvRLqA9xrNKxVWnUIZPQfzUwGXIlU/dSYLU+54YGQA==",
"dependencies": { "dependencies": {
"fast-equals": "^5.0.0", "react-remove-scroll-bar": "^2.3.3",
"react-transition-group": "2.9.0" "react-style-singleton": "^2.2.1",
"tslib": "^2.1.0",
"use-callback-ref": "^1.3.0",
"use-sidecar": "^1.1.2"
},
"engines": {
"node": ">=10"
}, },
"peerDependencies": { "peerDependencies": {
"prop-types": "^15.6.0", "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" },
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
} }
}, },
"node_modules/react-transition-group": { "node_modules/react-remove-scroll-bar": {
"version": "2.9.0", "version": "2.3.4",
"resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz", "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz",
"integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==", "integrity": "sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==",
"dependencies": { "dependencies": {
"dom-helpers": "^3.4.0", "react-style-singleton": "^2.2.1",
"loose-envify": "^1.4.0", "tslib": "^2.0.0"
"prop-types": "^15.6.2", },
"react-lifecycles-compat": "^3.0.4" "engines": {
"node": ">=10"
}, },
"peerDependencies": { "peerDependencies": {
"react": ">=15.0.0", "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": ">=15.0.0" "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/react-style-singleton": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz",
"integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==",
"dependencies": {
"get-nonce": "^1.0.0",
"invariant": "^2.2.4",
"tslib": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
} }
}, },
"node_modules/read-cache": { "node_modules/read-cache": {
@ -4212,37 +4355,6 @@
"node": ">=8.10.0" "node": ">=8.10.0"
} }
}, },
"node_modules/recharts": {
"version": "2.10.3",
"resolved": "https://registry.npmjs.org/recharts/-/recharts-2.10.3.tgz",
"integrity": "sha512-G4J96fKTZdfFQd6aQnZjo2nVNdXhp+uuLb00+cBTGLo85pChvm1+E67K3wBOHDE/77spcYb2Cy9gYWVqiZvQCg==",
"dependencies": {
"clsx": "^2.0.0",
"eventemitter3": "^4.0.1",
"lodash": "^4.17.19",
"react-is": "^16.10.2",
"react-smooth": "^2.0.5",
"recharts-scale": "^0.4.4",
"tiny-invariant": "^1.3.1",
"victory-vendor": "^36.6.8"
},
"engines": {
"node": ">=14"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/recharts-scale": {
"version": "0.4.5",
"resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.5.tgz",
"integrity": "sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==",
"dependencies": {
"decimal.js-light": "^2.4.1"
}
},
"node_modules/reflect.getprototypeof": { "node_modules/reflect.getprototypeof": {
"version": "1.0.4", "version": "1.0.4",
"resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz",
@ -4845,11 +4957,6 @@
"node": ">=0.8" "node": ">=0.8"
} }
}, },
"node_modules/tiny-invariant": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz",
"integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw=="
},
"node_modules/to-regex-range": { "node_modules/to-regex-range": {
"version": "5.0.1", "version": "5.0.1",
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
@ -5056,6 +5163,47 @@
"punycode": "^2.1.0" "punycode": "^2.1.0"
} }
}, },
"node_modules/use-callback-ref": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.0.tgz",
"integrity": "sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==",
"dependencies": {
"tslib": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/use-sidecar": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz",
"integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==",
"dependencies": {
"detect-node-es": "^1.1.0",
"tslib": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/use-sync-external-store": { "node_modules/use-sync-external-store": {
"version": "1.2.0", "version": "1.2.0",
"resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz",
@ -5077,27 +5225,6 @@
"node": ">= 0.8" "node": ">= 0.8"
} }
}, },
"node_modules/victory-vendor": {
"version": "36.7.0",
"resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-36.7.0.tgz",
"integrity": "sha512-nqYuTkLSdTTeACyXcCLbL7rl0y6jpzLPtTNGOtSnajdR+xxMxBdjMxDjfNJNlhR+ZU8vbXz+QejntcbY7h9/ZA==",
"dependencies": {
"@types/d3-array": "^3.0.3",
"@types/d3-ease": "^3.0.0",
"@types/d3-interpolate": "^3.0.1",
"@types/d3-scale": "^4.0.2",
"@types/d3-shape": "^3.1.0",
"@types/d3-time": "^3.0.0",
"@types/d3-timer": "^3.0.0",
"d3-array": "^3.1.6",
"d3-ease": "^3.0.1",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-shape": "^3.1.0",
"d3-time": "^3.0.0",
"d3-timer": "^3.0.1"
}
},
"node_modules/watchpack": { "node_modules/watchpack": {
"version": "2.4.0", "version": "2.4.0",
"resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz",
@ -5259,6 +5386,14 @@
"funding": { "funding": {
"url": "https://github.com/sponsors/sindresorhus" "url": "https://github.com/sponsors/sindresorhus"
} }
},
"node_modules/zod": {
"version": "3.22.4",
"resolved": "https://registry.npmjs.org/zod/-/zod-3.22.4.tgz",
"integrity": "sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==",
"funding": {
"url": "https://github.com/sponsors/colinhacks"
}
} }
} }
} }

View File

@ -10,6 +10,7 @@
}, },
"dependencies": { "dependencies": {
"@prisma/client": "^5.6.0", "@prisma/client": "^5.6.0",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2", "@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5", "@radix-ui/react-toast": "^1.1.5",
"chart.js": "^4.4.0", "chart.js": "^4.4.0",
@ -21,12 +22,12 @@
"react": "^18", "react": "^18",
"react-chartjs-2": "^5.2.0", "react-chartjs-2": "^5.2.0",
"react-dom": "^18", "react-dom": "^18",
"recharts": "^2.10.3",
"socket.io": "^4.7.2", "socket.io": "^4.7.2",
"socket.io-client": "^4.7.2", "socket.io-client": "^4.7.2",
"swr": "^2.2.4", "swr": "^2.2.4",
"tailwind-merge": "^2.1.0", "tailwind-merge": "^2.1.0",
"tailwindcss-animate": "^1.0.7" "tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^20", "@types/node": "^20",

View File

@ -23,6 +23,8 @@
"@components/*": ["./components/*"], "@components/*": ["./components/*"],
"@lib/*": ["lib/*"], "@lib/*": ["lib/*"],
"@styles/*": ["/styles/*"], "@styles/*": ["/styles/*"],
"@santa/*": ["images/santa/*"],
"@images/*": ["images/*"],
} }
}, },
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],