From 0f9401e8bc5e94967c585f858106f62938b5570d Mon Sep 17 00:00:00 2001 From: Kavin Phabiani Date: Tue, 10 Dec 2024 13:41:22 -0800 Subject: [PATCH 1/5] calendar variable change --- .github/workflows/pull-request.yaml | 4 ++++ src/lib/google-calendar.ts | 9 ++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 77ad646..ff22ec5 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -37,6 +37,10 @@ jobs: name: build runs-on: ubuntu-latest + env: + NEXT_PUBLIC_GOOGLE_CALENDAR_API_KEY: ${{secrets.NEXT_PUBLIC_GOOGLE_CALENDAR_API_KEY}} + NEXT_PUBLIC_CALENDAR_ID: ${{secrets.NEXT_PUBLIC_CALENDAR_ID}} + steps: - uses: actions/checkout@v4 - uses: acm-ucr/build@v2 diff --git a/src/lib/google-calendar.ts b/src/lib/google-calendar.ts index 51fef18..05dace5 100644 --- a/src/lib/google-calendar.ts +++ b/src/lib/google-calendar.ts @@ -10,8 +10,11 @@ export class GoogleCalendarService { constructor() { this.auth = new JWT({ - email: process.env.GOOGLE_CLIENT_EMAIL, - key: process.env.GOOGLE_PRIVATE_KEY?.replace(/\\n/g, "\n"), + email: process.env.NEXT_PUBLIC_GOOGLE_CALENDAR_EMAIL, + key: process.env.GNEXT_PUBLIC_GOOGLE_CALENDAR_API_KEY?.replace( + /\\n/g, + "\n", + ), scopes: SCOPES, }); @@ -21,7 +24,7 @@ export class GoogleCalendarService { async getEvents(timeMin: Date, timeMax: Date): Promise { try { const response = await this.calendar.events.list({ - calendarId: process.env.GOOGLE_CALENDAR_ID, + calendarId: process.env.NEXT_PUBLIC_GOOGLE_CALENDAR_EMAIL, timeMin: timeMin.toISOString(), timeMax: timeMax.toISOString(), singleEvents: true, From 66f3c0105bcdc2c79070e11635ae89b94b4c0fc8 Mon Sep 17 00:00:00 2001 From: Kavin Phabiani Date: Tue, 10 Dec 2024 13:49:20 -0800 Subject: [PATCH 2/5] naming changes --- .github/workflows/pull-request.yaml | 2 +- src/lib/google-calendar.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index ff22ec5..19c8638 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -39,7 +39,7 @@ jobs: env: NEXT_PUBLIC_GOOGLE_CALENDAR_API_KEY: ${{secrets.NEXT_PUBLIC_GOOGLE_CALENDAR_API_KEY}} - NEXT_PUBLIC_CALENDAR_ID: ${{secrets.NEXT_PUBLIC_CALENDAR_ID}} + NEXT_PUBLIC_CALENDAR_EMAIL: ${{secrets.NEXT_PUBLIC_CALENDAR_EMAIL}} steps: - uses: actions/checkout@v4 diff --git a/src/lib/google-calendar.ts b/src/lib/google-calendar.ts index 05dace5..0f5463e 100644 --- a/src/lib/google-calendar.ts +++ b/src/lib/google-calendar.ts @@ -11,7 +11,7 @@ export class GoogleCalendarService { constructor() { this.auth = new JWT({ email: process.env.NEXT_PUBLIC_GOOGLE_CALENDAR_EMAIL, - key: process.env.GNEXT_PUBLIC_GOOGLE_CALENDAR_API_KEY?.replace( + key: process.env.NEXT_PUBLIC_GOOGLE_CALENDAR_API_KEY?.replace( /\\n/g, "\n", ), From 110a235292c45d23617fda20b21fd32339bc5c58 Mon Sep 17 00:00:00 2001 From: Stanley Lew <135681592+stanleylew5@users.noreply.github.com> Date: Tue, 17 Dec 2024 17:07:03 -0800 Subject: [PATCH 3/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 453fb37..6f8d190 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Iranian Student Association Website ![Next.js](https://img.shields.io/badge/next.js-000000?style=for-the-badge&logo=nextdotjs&logoColor=white) -![TypeScript](https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge&logo=typescript&logoColor=white) +![TypeScript](https://img.shields.io/badge/typescript-%23407ACC.svg?style=for-the-badge&logo=typescript&logoColor=white) ![TailwindCSS](https://img.shields.io/badge/tailwindcss-%2338B2AC.svg?style=for-the-badge&logo=tailwind-css&logoColor=white) ![Figma](https://img.shields.io/badge/figma-%23F24E1E.svg?style=for-the-badge&logo=figma&logoColor=white)
From 784b8ca97a1f78e8a3e1051730783179213fb0fe Mon Sep 17 00:00:00 2001 From: Marcus Hsieh <80995617+MarcusHsieh@users.noreply.github.com> Date: Fri, 27 Dec 2024 05:16:49 -0800 Subject: [PATCH 4/5] Static calendar --- src/app/api/calendar/route.ts | 33 --- src/app/join-us/page.tsx | 65 ++--- src/components/join-us/Events.tsx | 102 ++++++++ src/components/join-us/WrappedEvents.tsx | 16 ++ src/components/join-us/calendar/Calendar.tsx | 39 +++ .../join-us/calendar/CustomEvents.tsx | 132 ++++++++++ .../join-us/calendar/CustomHeader.tsx | 22 ++ .../join-us/calendar/CustomToolbar.tsx | 38 +++ src/components/join-us/calendar/Modal.tsx | 22 ++ src/components/join-us/calendar/button.tsx | 56 ----- .../join-us/calendar/calendarGrid.tsx | 81 ------ .../join-us/calendar/calendarHeader.tsx | 13 - .../join-us/calendar/calendarWrapper.tsx | 232 ------------------ src/lib/calendar-types.ts | 14 -- src/lib/google-auth.ts | 8 - src/lib/google-calendar.ts | 50 ---- 16 files changed, 387 insertions(+), 536 deletions(-) delete mode 100644 src/app/api/calendar/route.ts create mode 100644 src/components/join-us/Events.tsx create mode 100644 src/components/join-us/WrappedEvents.tsx create mode 100644 src/components/join-us/calendar/Calendar.tsx create mode 100644 src/components/join-us/calendar/CustomEvents.tsx create mode 100644 src/components/join-us/calendar/CustomHeader.tsx create mode 100644 src/components/join-us/calendar/CustomToolbar.tsx create mode 100644 src/components/join-us/calendar/Modal.tsx delete mode 100644 src/components/join-us/calendar/button.tsx delete mode 100644 src/components/join-us/calendar/calendarGrid.tsx delete mode 100644 src/components/join-us/calendar/calendarHeader.tsx delete mode 100644 src/components/join-us/calendar/calendarWrapper.tsx delete mode 100644 src/lib/calendar-types.ts delete mode 100644 src/lib/google-auth.ts delete mode 100644 src/lib/google-calendar.ts diff --git a/src/app/api/calendar/route.ts b/src/app/api/calendar/route.ts deleted file mode 100644 index c22cb11..0000000 --- a/src/app/api/calendar/route.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { NextResponse } from "next/server"; -import { GoogleCalendarService } from "@/lib/google-calendar"; - -export const revalidate = 60; - -export async function GET(req: Request) { - try { - const url = new URL(req.url); - const timeMin = url.searchParams.get("timeMin"); - const timeMax = url.searchParams.get("timeMax"); - - if (!timeMin || !timeMax) { - return NextResponse.json( - { error: "Missing timeMin or timeMax query parameters" }, - { status: 400 }, - ); - } - - const calendarService = new GoogleCalendarService(); - const events = await calendarService.getEvents( - new Date(timeMin), - new Date(timeMax), - ); - - return NextResponse.json({ events }); - } catch (error) { - console.error("Error fetching calendar events:", error); - return NextResponse.json( - { error: "Failed to fetch calendar events" }, - { status: 500 }, - ); - } -} diff --git a/src/app/join-us/page.tsx b/src/app/join-us/page.tsx index e24f4ac..1f89355 100644 --- a/src/app/join-us/page.tsx +++ b/src/app/join-us/page.tsx @@ -1,63 +1,30 @@ -"use client"; - import React from "react"; import BackgroundComponent from "@/components/join-us/background"; import Socials from "@/components/join-us/socials"; -import Calendar from "@/components/join-us/calendar/calendarWrapper"; -import Title from "@/components/join-us/title"; -import { motion } from "framer-motion"; - -const animation = { - hidden: { opacity: 0, y: 30 }, - show: { opacity: 1, y: 0 }, -}; +import WrappedEvents from "@/components/join-us/WrappedEvents"; const page = () => { return ( -
- {/* Background */} -
- -
- -
-
- - - </motion.div> + <div> + <div className="relative flex min-h-screen flex-col"> + <div className="absolute inset-0 -z-10"> + <BackgroundComponent /> + </div> - {/* Socials */} - <motion.div - variants={animation} - initial="hidden" - whileInView="show" - transition={{ duration: 0.8 }} - className="mx-auto w-full max-w-sm sm:max-w-md md:max-w-2xl" - > + <div className="flex flex-grow flex-col items-center space-y-12"> + <div className="mt-8 rounded-lg px-4 py-2 text-4xl tracking-widest text-black"> + Join Us + </div> + <div className="mx-auto w-full max-w-2xl"> <Socials /> - </motion.div> + </div> - {/* Event Calendar Heading */} - <motion.div - variants={animation} - initial="hidden" - whileInView="show" - viewport={{ once: true, margin: "-100px" }} - transition={{ duration: 1, delay: 0.4 }} - className="mt-6 rounded-lg px-4 py-2 text-center text-2xl font-bold tracking-widest text-black sm:mt-8 sm:text-3xl md:text-4xl lg:mt-10 lg:text-5xl" - > + <div className="mt-8 rounded-lg px-4 text-4xl tracking-widest text-black"> Event Calendar - </motion.div> + </div> - {/* Calendar */} - <div className="w-full max-w-2xl md:max-w-4xl"> - <Calendar /> + <div className="w-full max-w-4xl"> + <WrappedEvents /> </div> </div> </div> diff --git a/src/components/join-us/Events.tsx b/src/components/join-us/Events.tsx new file mode 100644 index 0000000..acdcde7 --- /dev/null +++ b/src/components/join-us/Events.tsx @@ -0,0 +1,102 @@ +"use client"; + +import { useState, useEffect } from "react"; +import Calendar from "./calendar/Calendar"; + +type CalendarEvent = { + id: string; + name: string; + date: Date; + location?: string; + isAllDay: boolean; + details?: string; + title: string; +}; + +type GoogleCalendarEvent = { + id: string; + summary: string; + start: { + dateTime?: string; + date?: string; + }; + location?: string; + description?: string; +}; + +const Events = () => { + const [currentMonth, setCurrentMonth] = useState(new Date()); + const [events, setEvents] = useState<CalendarEvent[]>([]); + const [loading, setLoading] = useState(true); + + const handleMonthChange = (newDate: Date) => { + setCurrentMonth(newDate); + }; + + useEffect(() => { + const fetchGoogleCalendarEvents = async () => { + setLoading(true); + + const startDate = new Date( + currentMonth.getFullYear(), + currentMonth.getMonth(), + 1, + ).toISOString(); + const endDate = new Date( + currentMonth.getFullYear(), + currentMonth.getMonth() + 1, + 0, + ).toISOString(); + + try { + const res = await fetch( + `https://www.googleapis.com/calendar/v3/calendars/${process.env.NEXT_PUBLIC_GOOGLE_CALENDAR_EMAIL}/events?key=${process.env.NEXT_PUBLIC_GOOGLE_CALENDAR_API_KEY}&singleEvents=true&orderBy=startTime&timeMin=${startDate}&timeMax=${endDate}&maxResults=10`, + ); + + const data = await res.json(); + + console.log("API Response:", data); + + if (data.items) { + const eventsData = data.items.map((event: GoogleCalendarEvent) => ({ + id: event.id, + name: event.summary, + date: new Date(event.start.dateTime ?? event.start.date ?? ""), + location: event.location, + isAllDay: !event.start.dateTime, + details: event.description, + })); + + setEvents(eventsData); + } else { + console.error("No events found in the API response."); + setEvents([]); + } + } catch (error) { + console.error("Error fetching events:", error); + } finally { + setLoading(false); + } + }; + + fetchGoogleCalendarEvents(); + }, [currentMonth]); + + return ( + <div className="flex min-h-screen flex-col items-center"> + {loading ? ( + <p className="text-center text-lg md:text-xl lg:text-2xl"> + Loading events... + </p> + ) : ( + <Calendar + currentMonth={currentMonth} + events={events} + onMonthChange={handleMonthChange} + /> + )} + </div> + ); +}; + +export default Events; diff --git a/src/components/join-us/WrappedEvents.tsx b/src/components/join-us/WrappedEvents.tsx new file mode 100644 index 0000000..931bf4a --- /dev/null +++ b/src/components/join-us/WrappedEvents.tsx @@ -0,0 +1,16 @@ +"use client"; + +import React from "react"; +import Events from "./Events"; + +const WrappedEvents = () => { + return ( + <div className="flex min-h-screen flex-col px-1 py-1"> + <div className="w-full min-w-[300px] max-w-4xl rounded-lg p-4"> + <Events /> + </div> + </div> + ); +}; + +export default WrappedEvents; diff --git a/src/components/join-us/calendar/Calendar.tsx b/src/components/join-us/calendar/Calendar.tsx new file mode 100644 index 0000000..f194386 --- /dev/null +++ b/src/components/join-us/calendar/Calendar.tsx @@ -0,0 +1,39 @@ +"use client"; + +import React from "react"; +import CustomHeader from "./CustomHeader"; +import CustomToolbar from "./CustomToolbar"; +import CustomEvents from "./CustomEvents"; + +interface Event { + id: string; + name: string; + date: Date; + location?: string; + isAllDay: boolean; + details?: string; + title: string; +} + +interface CalendarProps { + currentMonth: Date; + events: Event[]; + onMonthChange: (date: Date) => void; +} + +const Calendar = ({ currentMonth, events, onMonthChange }: CalendarProps) => { + return ( + <div className="relative mx-auto flex w-full max-w-4xl flex-col overflow-hidden rounded-3xl border-4 border-isa-dark-red bg-isa-beige-100 bg-opacity-80 p-5 text-center shadow-lg drop-shadow-md backdrop-blur-0"> + <CustomHeader currentMonth={currentMonth} /> + <CustomToolbar + onMonthChange={onMonthChange} + currentMonth={currentMonth} + /> + <div className="mt-4"> + <CustomEvents currentMonth={currentMonth} events={events} /> + </div> + </div> + ); +}; + +export default Calendar; diff --git a/src/components/join-us/calendar/CustomEvents.tsx b/src/components/join-us/calendar/CustomEvents.tsx new file mode 100644 index 0000000..cafd6e6 --- /dev/null +++ b/src/components/join-us/calendar/CustomEvents.tsx @@ -0,0 +1,132 @@ +import { useState } from "react"; +import Modal from "./Modal"; + +interface Event { + id: string; + name: string; + date: Date; + location?: string; + isAllDay: boolean; + details?: string; +} + +interface CustomEventsProps { + currentMonth: Date; + events: Event[]; +} + +const CustomEvents = ({ currentMonth, events }: CustomEventsProps) => { + const [selectedEvent, setSelectedEvent] = useState<Event | null>(null); + + const daysInMonth = new Date( + currentMonth.getFullYear(), + currentMonth.getMonth() + 1, + 0, + ).getDate(); + + const dayLabels = ["SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT"]; + + // find events for a specific day + const getEventsForDay = (day: number) => { + return events.filter( + (event) => + new Date(event.date).getDate() === day && + new Date(event.date).getMonth() === currentMonth.getMonth() && + new Date(event.date).getFullYear() === currentMonth.getFullYear(), + ); + }; + + const renderCalendarDays = () => { + // get empty slots + const emptyDays = new Array( + new Date(currentMonth.getFullYear(), currentMonth.getMonth(), 1).getDay(), + ).fill(null); + // get month days + const monthDays = new Array(daysInMonth) + .fill(null) + .map((_, index) => index + 1); + + return [...emptyDays, ...monthDays]; + }; + + return ( + <div className=""> + {/* calendar days*/} + <div className="mb-2 grid grid-cols-7 gap-1 text-xs md:text-sm lg:text-base"> + {dayLabels.map((label) => ( + <div key={label} className="text-center font-bold text-isa-dark-red"> + {label} + </div> + ))} + </div> + + {/* the grid */} + <div className="grid grid-cols-7 gap-1 lg:gap-2"> + {renderCalendarDays().map((day, index) => { + const dayEvents = day ? getEventsForDay(day) : []; + + return ( + <div + key={index} + className="flex aspect-square flex-col justify-between rounded-lg border border-isa-dark-red bg-white bg-opacity-20 p-1 text-xs sm:text-sm md:text-base lg:text-lg" + > + {day && ( + <div className="flex h-full flex-col justify-between"> + <div className="ml-1 mt-1 text-left font-bold text-isa-dark-red"> + {day} + </div> + {dayEvents.length > 0 && ( + <ul className="mt-1 max-h-full space-y-1 overflow-y-auto"> + {dayEvents.map((event, idx) => ( + <li + key={idx} + className="cursor-pointer overflow-hidden text-ellipsis whitespace-nowrap rounded bg-isa-light-beige p-1 text-xs text-isa-dark-red sm:text-sm" + onClick={() => setSelectedEvent(event)} + style={{ textOverflow: "ellipsis" }} + > + {event.name} + </li> + ))} + </ul> + )} + </div> + )} + </div> + ); + })} + </div> + + {/* modal */} + {selectedEvent && ( + <Modal onClose={() => setSelectedEvent(null)}> + <h2 className="text-lg font-bold">{selectedEvent.name}</h2> + + {selectedEvent.isAllDay ? ( + <p className="mt-2">All Day Event</p> + ) : ( + <p className="mt-2"> + Date: {new Date(selectedEvent.date).toLocaleDateString()} + <br /> + Time:{" "} + {new Date(selectedEvent.date).toLocaleTimeString([], { + hour: "2-digit", + minute: "2-digit", + hour12: true, + })} + </p> + )} + + {selectedEvent.location && ( + <p className="mt-1">Location: {selectedEvent.location}</p> + )} + + {selectedEvent.details && ( + <p className="mt-1">Details: {selectedEvent.details}</p> + )} + </Modal> + )} + </div> + ); +}; + +export default CustomEvents; diff --git a/src/components/join-us/calendar/CustomHeader.tsx b/src/components/join-us/calendar/CustomHeader.tsx new file mode 100644 index 0000000..7286710 --- /dev/null +++ b/src/components/join-us/calendar/CustomHeader.tsx @@ -0,0 +1,22 @@ +"use client"; + +// this for showing the curr month + year + +type CustomHeaderProps = { + currentMonth: Date; +}; + +const CustomHeader = ({ currentMonth }: CustomHeaderProps) => { + const month = currentMonth.toLocaleString("default", { month: "long" }); + const year = currentMonth.getFullYear(); + + return ( + <div className="flex items-center justify-center p-4"> + <h2 className="text-3xl font-bold text-isa-dark-red"> + {month} {year} + </h2> + </div> + ); +}; + +export default CustomHeader; diff --git a/src/components/join-us/calendar/CustomToolbar.tsx b/src/components/join-us/calendar/CustomToolbar.tsx new file mode 100644 index 0000000..8c972c8 --- /dev/null +++ b/src/components/join-us/calendar/CustomToolbar.tsx @@ -0,0 +1,38 @@ +"use client"; + +// this for nav between months + +import { FaArrowLeft, FaArrowRight } from "react-icons/fa"; + +type CustomToolbarProps = { + onMonthChange: (date: Date) => void; + currentMonth: Date; +}; + +const CustomToolbar = ({ onMonthChange, currentMonth }: CustomToolbarProps) => { + const navigateMonth = (direction: number) => { + const newDate = new Date( + currentMonth.setMonth(currentMonth.getMonth() + direction), + ); + onMonthChange(newDate); + }; + + return ( + <div className="flex justify-between p-4"> + <button + onClick={() => navigateMonth(-1)} + className="text-xl text-isa-dark-red" + > + <FaArrowLeft /> + </button> + <button + onClick={() => navigateMonth(1)} + className="text-xl text-isa-dark-red" + > + <FaArrowRight /> + </button> + </div> + ); +}; + +export default CustomToolbar; diff --git a/src/components/join-us/calendar/Modal.tsx b/src/components/join-us/calendar/Modal.tsx new file mode 100644 index 0000000..fcd3741 --- /dev/null +++ b/src/components/join-us/calendar/Modal.tsx @@ -0,0 +1,22 @@ +type ModalProps = { + onClose: () => void; + children: React.ReactNode; +}; + +const Modal = ({ onClose, children }: ModalProps) => { + return ( + <div className="fixed inset-0 flex items-center justify-center bg-opacity-95 backdrop-blur-3xl"> + <div className="max-w-sm rounded-lg bg-isa-beige-100 p-6 shadow-lg"> + {children} + <button + onClick={onClose} + className="mt-4 rounded bg-isa-light-red px-4 py-2 text-isa-bright-yellow" + > + Close + </button> + </div> + </div> + ); +}; + +export default Modal; diff --git a/src/components/join-us/calendar/button.tsx b/src/components/join-us/calendar/button.tsx deleted file mode 100644 index 57c9fe4..0000000 --- a/src/components/join-us/calendar/button.tsx +++ /dev/null @@ -1,56 +0,0 @@ -import * as React from "react"; -import { Slot } from "@radix-ui/react-slot"; -import { cva, type VariantProps } from "class-variance-authority"; - -import { cn } from "@/lib/utils"; - -const buttonVariants = cva( - "inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50", - { - variants: { - variant: { - default: "bg-primary text-primary-foreground hover:bg-primary/90", - destructive: - "bg-destructive text-destructive-foreground hover:bg-destructive/90", - outline: - "border border-input bg-background hover:bg-accent hover:text-accent-foreground", - secondary: - "bg-secondary text-secondary-foreground hover:bg-secondary/80", - ghost: "hover:bg-accent hover:text-accent-foreground", - link: "text-primary underline-offset-4 hover:underline", - }, - size: { - default: "h-10 px-4 py-2", - sm: "h-9 rounded-md px-3", - lg: "h-11 rounded-md px-8", - icon: "h-10 w-10", - }, - }, - defaultVariants: { - variant: "default", - size: "default", - }, - }, -); - -export interface ButtonProps - extends React.ButtonHTMLAttributes<HTMLButtonElement>, - VariantProps<typeof buttonVariants> { - asChild?: boolean; -} - -const Button = React.forwardRef<HTMLButtonElement, ButtonProps>( - ({ className, variant, size, asChild = false, ...props }, ref) => { - const Comp = asChild ? Slot : "button"; - return ( - <Comp - className={cn(buttonVariants({ variant, size, className }))} - ref={ref} - {...props} - /> - ); - }, -); -Button.displayName = "Button"; - -export { Button, buttonVariants }; diff --git a/src/components/join-us/calendar/calendarGrid.tsx b/src/components/join-us/calendar/calendarGrid.tsx deleted file mode 100644 index 6102ffd..0000000 --- a/src/components/join-us/calendar/calendarGrid.tsx +++ /dev/null @@ -1,81 +0,0 @@ -import { - format, - startOfMonth, - endOfMonth, - eachDayOfInterval, - isSameMonth, - isSameDay, -} from "date-fns"; -import { CalendarEvent } from "@/lib/calendar-types"; -import { cn } from "@/lib/utils"; - -interface CalendarGridProps { - currentDate: Date; - events: CalendarEvent[]; - loading: boolean; - onEventClick: (event: CalendarEvent) => void; -} - -export function CalendarGrid({ - currentDate, - events, - loading, - onEventClick, -}: CalendarGridProps) { - const monthStart = startOfMonth(currentDate); - const monthEnd = endOfMonth(currentDate); - const days = eachDayOfInterval({ start: monthStart, end: monthEnd }); - - const startingDayIndex = monthStart.getDay(); - const previousPadding = Array(startingDayIndex).fill(null); - - const getEventsForDay = (date: Date) => { - return events.filter((event) => isSameDay(new Date(event.start), date)); - }; - - return ( - <div className="grid grid-cols-7 gap-2 p-4"> - {previousPadding.map((_, index) => ( - <div - key={`padding-${index}`} - className="aspect-square rounded-2xl border border-isa-dark-red bg-isa-beige-100" - /> - ))} - - {days.map((day) => { - const dayEvents = getEventsForDay(day); - const isCurrentMonth = isSameMonth(day, currentDate); - - return ( - <div - key={day.toString()} - className={cn( - "aspect-square rounded-2xl border border-isa-dark-red bg-isa-beige-100 p-2", - !isCurrentMonth && "opacity-50", - )} - > - <div className="text-sm font-medium text-isa-dark-red"> - {format(day, "d")} - </div> - <div className="mt-1 space-y-1"> - {loading ? ( - <div className="h-5 animate-pulse rounded-lg bg-isa-light-beige" /> - ) : ( - dayEvents.map((event) => ( - <div - key={event.id} - className="cursor-pointer overflow-hidden truncate text-ellipsis whitespace-nowrap rounded-lg bg-isa-dark-red p-1 text-xs text-white" - title={event.summary} - onClick={() => onEventClick(event)} - > - {event.summary} - </div> - )) - )} - </div> - </div> - ); - })} - </div> - ); -} diff --git a/src/components/join-us/calendar/calendarHeader.tsx b/src/components/join-us/calendar/calendarHeader.tsx deleted file mode 100644 index f63419a..0000000 --- a/src/components/join-us/calendar/calendarHeader.tsx +++ /dev/null @@ -1,13 +0,0 @@ -export function CalendarHeader() { - const days = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]; - - return ( - <div className="grid grid-cols-7 gap-4 text-center"> - {days.map((day) => ( - <div key={day} className="text-md font-semibold text-isa-dark-red"> - {day} - </div> - ))} - </div> - ); -} diff --git a/src/components/join-us/calendar/calendarWrapper.tsx b/src/components/join-us/calendar/calendarWrapper.tsx deleted file mode 100644 index 1c0e78f..0000000 --- a/src/components/join-us/calendar/calendarWrapper.tsx +++ /dev/null @@ -1,232 +0,0 @@ -"use client"; - -import { useEffect, useState } from "react"; -import { format, addMonths, subMonths } from "date-fns"; -import { CalendarHeader } from "./calendarHeader"; -import { CalendarGrid } from "./calendarGrid"; -import { CalendarEvent } from "@/lib/calendar-types"; -import { ChevronLeft, ChevronRight } from "lucide-react"; -import { Button } from "./button"; -import { motion, AnimatePresence } from "framer-motion"; - -const CalendarWrapper = () => { - const [currentDate, setCurrentDate] = useState(new Date()); - const [events, setEvents] = useState<CalendarEvent[]>([]); - const [loading, setLoading] = useState(true); - const [selectedEvent, setSelectedEvent] = useState<CalendarEvent | null>( - null, - ); - - useEffect(() => { - fetchEvents(); - }, [currentDate]); - - const fetchEvents = async () => { - try { - setLoading(true); - - const timeMin = new Date( - currentDate.getFullYear(), - currentDate.getMonth(), - 1, - ).toISOString(); - const timeMax = new Date( - currentDate.getFullYear(), - currentDate.getMonth() + 1, - 0, - ).toISOString(); - - const response = await fetch( - `/api/calendar?timeMin=${timeMin}&timeMax=${timeMax}`, - ); - const contentType = response.headers.get("content-type"); - - if (contentType && contentType.includes("application/json")) { - const data = await response.json(); - if (data.events) { - setEvents( - data.events.map((event: CalendarEvent) => { - const isAllDay = isAllDayEvent( - new Date(event.start), - new Date(event.end), - ); - const start = new Date(event.start); - const end = new Date(event.end); - - if (isAllDay) { - const localStart = new Date( - start.getTime() + start.getTimezoneOffset() * 60000, - ); - const localEnd = new Date( - end.getTime() + end.getTimezoneOffset() * 60000, - ); - - return { - ...event, - start: localStart, - end: localEnd, - }; - } - - return { - ...event, - start, - end, - }; - }), - ); - } - } else { - const text = await response.text(); - console.error("Error fetching events: Response is not JSON", text); - } - } catch (error) { - console.error("Error fetching events:", error); - } finally { - setLoading(false); - } - }; - - const nextMonth = () => setCurrentDate(addMonths(currentDate, 1)); - const prevMonth = () => setCurrentDate(subMonths(currentDate, 1)); - - const handleEventClick = (event: CalendarEvent) => { - setSelectedEvent(event); - }; - - const closeEventDetails = () => { - setSelectedEvent(null); - }; - - const isAllDayEvent = (start: Date, end: Date) => { - const startMidnight = new Date(start).setHours(0, 0, 0, 0); - const endMidnight = new Date(end).setHours(0, 0, 0, 0); - return endMidnight - startMidnight === 24 * 60 * 60 * 1000; - }; - - return ( - <motion.div - initial={{ opacity: 0, scale: 0.95 }} - animate={{ opacity: 1, scale: 1 }} - transition={{ duration: 0.5, ease: "easeInOut" }} - className="relative mx-auto mb-8 flex w-full max-w-4xl flex-col overflow-hidden rounded-3xl border-4 border-isa-dark-red bg-isa-beige-100 bg-opacity-80 p-4 shadow-2xl drop-shadow-md" - > - {/* HEADER */} - <motion.div - initial={{ y: -20, opacity: 0 }} - animate={{ y: 0, opacity: 1 }} - transition={{ duration: 0.5 }} - className="mb-1 border-b border-isa-dark-red p-6" - > - <div className="mb-4 flex items-center justify-between"> - <h2 className="text-3xl font-semibold text-isa-dark-red"> - {format(currentDate, "MMMM yyyy")} - </h2> - <div className="flex gap-2"> - <Button - variant="outline" - size="icon" - onClick={prevMonth} - className="h-8 w-8 text-isa-dark-red" - > - <ChevronLeft className="h-8 w-8" /> - </Button> - <Button - variant="outline" - size="icon" - onClick={nextMonth} - className="h-8 w-8 text-isa-dark-red" - > - <ChevronRight className="h-8 w-8" /> - </Button> - </div> - </div> - <CalendarHeader /> - </motion.div> - - {/* GRID PART */} - <motion.div - initial={{ y: 20, opacity: 0 }} - animate={{ y: 0, opacity: 1 }} - transition={{ duration: 0.5, delay: 0.2 }} - > - <CalendarGrid - currentDate={currentDate} - events={events} - loading={loading} - onEventClick={handleEventClick} - /> - </motion.div> - - {/* EVENT DETAILS MODAL */} - <AnimatePresence> - {selectedEvent && ( - <motion.div - initial={{ opacity: 0 }} - animate={{ opacity: 1 }} - exit={{ opacity: 0 }} - transition={{ duration: 0.3 }} - className="fixed inset-0 flex items-center justify-center bg-black bg-opacity-20" - > - <motion.div - initial={{ scale: 0.95 }} - animate={{ scale: 1 }} - exit={{ scale: 0.95 }} - transition={{ duration: 0.3 }} - className="w-80 rounded-2xl bg-isa-beige-100 p-6 shadow-xl drop-shadow-xl" - > - <h3 className="text-lg font-semibold text-isa-dark-red"> - {selectedEvent.summary} - </h3> - {/* ALL DAY EVENTS */} - {isAllDayEvent(selectedEvent.start, selectedEvent.end) ? ( - <p className="text-isa-dark-red">Time: All day</p> - ) : ( - <> - {format(selectedEvent.start, "yyyy-MM-dd") === - format(selectedEvent.end, "yyyy-MM-dd") ? ( - <> - <p className="text-isa-dark-red">{`Date: ${format( - selectedEvent.start, - "PP", - )}`}</p> - <p className="text-isa-dark-red"> - {`Time: ${format( - selectedEvent.start, - "p", - )} - ${format(selectedEvent.end, "p")}`} - </p> - </> - ) : ( - <> - <p className="text-isa-dark-red"> - {`Starts: ${format(selectedEvent.start, "PP")}`} - </p> - <p className="text-isa-dark-red"> - {`Ends: ${format(selectedEvent.end, "PP")}`} - </p> - </> - )} - </> - )} - {selectedEvent.location && ( - <p className="text-isa-dark-red">{`Location: ${selectedEvent.location}`}</p> - )} - {selectedEvent.description && ( - <p className="text-isa-dark-red">{`Details: ${selectedEvent.description}`}</p> - )} - <Button - onClick={closeEventDetails} - className="mt-4 bg-isa-dark-red text-white" - > - Close - </Button> - </motion.div> - </motion.div> - )} - </AnimatePresence> - </motion.div> - ); -}; - -export default CalendarWrapper; diff --git a/src/lib/calendar-types.ts b/src/lib/calendar-types.ts deleted file mode 100644 index 6389877..0000000 --- a/src/lib/calendar-types.ts +++ /dev/null @@ -1,14 +0,0 @@ -export interface CalendarEvent { - id: string; - summary: string; - start: Date; - end: Date; - location?: string; - description?: string; -} - -export interface CalendarState { - events: CalendarEvent[]; - loading: boolean; - error: string | null; -} diff --git a/src/lib/google-auth.ts b/src/lib/google-auth.ts deleted file mode 100644 index 3275834..0000000 --- a/src/lib/google-auth.ts +++ /dev/null @@ -1,8 +0,0 @@ -export const GOOGLE_CALENDAR_CONFIG = { - apiKey: process.env.NEXT_PUBLIC_GOOGLE_API_KEY, - clientId: process.env.NEXT_PUBLIC_GOOGLE_CLIENT_ID, - scopes: "https://www.googleapis.com/auth/calendar.readonly", - discoveryDocs: [ - "https://www.googleapis.com/discovery/v1/apis/calendar/v3/rest", - ], -}; diff --git a/src/lib/google-calendar.ts b/src/lib/google-calendar.ts deleted file mode 100644 index 0f5463e..0000000 --- a/src/lib/google-calendar.ts +++ /dev/null @@ -1,50 +0,0 @@ -import { google } from "googleapis"; -import { JWT } from "google-auth-library"; -import { CalendarEvent } from "./calendar-types"; - -const SCOPES = ["https://www.googleapis.com/auth/calendar.readonly"]; - -export class GoogleCalendarService { - private auth: JWT; - private calendar; - - constructor() { - this.auth = new JWT({ - email: process.env.NEXT_PUBLIC_GOOGLE_CALENDAR_EMAIL, - key: process.env.NEXT_PUBLIC_GOOGLE_CALENDAR_API_KEY?.replace( - /\\n/g, - "\n", - ), - scopes: SCOPES, - }); - - this.calendar = google.calendar({ version: "v3", auth: this.auth }); - } - - async getEvents(timeMin: Date, timeMax: Date): Promise<CalendarEvent[]> { - try { - const response = await this.calendar.events.list({ - calendarId: process.env.NEXT_PUBLIC_GOOGLE_CALENDAR_EMAIL, - timeMin: timeMin.toISOString(), - timeMax: timeMax.toISOString(), - singleEvents: true, - orderBy: "startTime", - fields: "items(id,summary,start,end,description,location)", - }); - - return (response.data.items || []).map((event) => ({ - id: event.id!, - summary: event.summary || "Untitled Event", - start: new Date( - event.start?.dateTime || event.start?.date || Date.now(), - ), - end: new Date(event.end?.dateTime || event.end?.date || Date.now()), - description: event.description || undefined, - location: event.location || undefined, - })); - } catch (error) { - console.error("Error fetching calendar events:", error); - throw error; - } - } -} From abafc65dfd19a4ce8d1f4c73cbb8c61859a00227 Mon Sep 17 00:00:00 2001 From: Kavin Phabiani <kavinphab@gmail.com> Date: Fri, 27 Dec 2024 00:42:20 -0800 Subject: [PATCH 5/5] picture, anmation and text cahnge --- public/philanthropy/ISCC.svg | 58 +--------------------------- src/components/philanthropy/page.tsx | 10 ++--- src/data/landing/tempEvents.ts | 20 ++++------ 3 files changed, 14 insertions(+), 74 deletions(-) diff --git a/public/philanthropy/ISCC.svg b/public/philanthropy/ISCC.svg index ae850e3..9a4252f 100644 --- a/public/philanthropy/ISCC.svg +++ b/public/philanthropy/ISCC.svg @@ -1,57 +1 @@ -<svg width="343" height="215" viewBox="0 0 343 215" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M59.7858 137.429C61.6758 132.779 63.3989 128.223 65.4097 123.796C66.4465 121.512 66.7824 121.589 68.8681 122.933C75.333 127.095 82.1073 130.56 89.7661 131.945C94.1719 132.743 98.5946 132.765 102.957 131.675C107.803 130.464 110.495 127.552 110.708 123.525C110.86 120.644 109.656 118.431 107.355 116.785C103.397 113.95 98.7275 112.949 94.1453 111.702C88.9564 110.288 83.6395 109.186 78.6489 107.248C65.5426 102.158 59.4257 92.0804 59.1599 78.2805C58.9013 64.8505 64.9916 55.0601 76.7203 48.7498C84.4443 44.5954 92.8571 43.4523 101.521 43.6069C110.971 43.7761 120.201 45.1295 129.005 48.6846C131.134 49.545 133.099 50.8017 135.153 51.8482C136.606 52.5877 136.961 53.784 136.533 55.2317C135.939 57.2569 135.429 59.3354 134.571 61.2519C132.794 65.2226 130.805 69.0992 128.92 73.0216C128.249 74.4209 127.407 74.5248 126.001 73.8651C117.716 69.9813 109.064 67.4316 99.8199 67.7893C97.1203 67.8932 94.3435 68.4974 91.7962 69.4134C88.6302 70.5541 87.0013 73.1473 86.9457 76.5864C86.8901 79.9312 88.751 82.0991 91.6584 83.1624C95.8056 84.6754 100.035 86.0142 104.313 87.1066C111.735 89.0038 118.987 91.2007 125.725 95.0023C144.497 105.595 144.774 132.378 129.225 145.213C122.248 150.973 114.101 153.762 105.265 154.789C90.7134 156.48 76.8991 153.863 63.7639 147.478C63.0147 147.113 62.2848 146.705 61.5646 146.286C57.8162 144.097 57.8186 144.094 59.0197 139.969C59.2542 139.169 59.5007 138.374 59.7858 137.429Z" fill="#0294AE"/> -<path d="M208.654 44.0057C216.746 44.8757 224.455 46.582 231.374 50.6543C237.305 54.1441 236.653 53.3756 234.601 58.8955C232.578 64.3357 230.002 69.5849 227.401 74.7859C226.07 77.4491 225.811 77.3017 223.126 75.9217C216.265 72.3981 209.118 69.8266 201.29 69.771C187.329 69.6719 176.296 78.2225 173.128 91.8459C171.064 100.72 171.697 109.491 175.933 117.679C180.951 127.375 190.98 132.4 201.882 131.273C209.246 130.512 215.762 127.776 221.71 123.508C222.283 123.097 222.858 122.694 223.957 121.829C224.593 122.691 225.304 123.511 225.855 124.427C229.253 130.075 232.605 135.752 236 141.402C236.638 142.463 236.232 143.118 235.452 143.877C231.188 148.014 226.145 150.907 220.668 153.046C206.051 158.759 191.203 159.591 176.223 154.641C163.874 150.559 154.903 142.398 149.441 130.725C142.268 115.393 140.542 99.2727 144.972 82.9183C150.173 63.7194 162.917 51.5823 181.958 45.9947C190.644 43.4402 199.526 43.1888 208.654 44.0057Z" fill="#0294AE"/> -<path d="M234.812 107.473C233.929 98.0788 234.418 88.9796 237.431 80.1487C243.669 61.8778 256.384 50.4416 274.952 45.7023C289.641 41.9538 304.246 42.8456 318.413 48.4115C321.243 49.5232 323.79 51.3551 326.456 52.8753C327.495 53.4674 327.715 54.3133 327.382 55.4854C325.393 62.4868 322.669 69.1596 318.795 75.3465C317.872 76.8232 317.031 77.1906 315.274 76.2287C308.456 72.4947 301.227 69.9185 293.341 69.7734C281.216 69.5535 272.158 74.8511 267.078 85.7701C261.761 97.1991 262.368 108.87 268.847 119.673C274.331 128.815 283.208 132.01 293.61 131.23C300.99 130.676 307.489 127.759 313.437 123.491C314.007 123.08 314.582 122.674 315.421 122.075C316.451 123.271 317.666 124.344 318.464 125.666C321.577 130.817 324.547 136.054 327.597 141.243C328.228 142.313 328.015 143.062 327.128 143.908C322.882 147.956 317.92 150.864 312.506 152.988C297.771 158.769 282.799 159.639 267.704 154.561C254.878 150.245 246.013 141.506 240.411 129.33C237.24 122.44 235.657 115.139 234.812 107.473Z" fill="#0294AE"/> -<path d="M12.5721 91.1089C9.78073 86.007 6.68966 81.0406 4.28013 75.7647C1.77875 70.2883 0.756456 64.4107 2.04944 58.3445C3.67835 50.7026 8.10831 45.2456 15.5327 42.9158C24.9291 39.9673 34.5721 39.8102 43.8453 43.404C51.7482 46.466 55.7697 52.7593 56.4512 61.1649C57.0675 68.7488 54.6266 75.5496 50.9337 81.9879C49.3097 84.8204 47.4971 87.5417 45.6361 90.5119C43.4175 93.5982 41.3318 96.4886 39.1398 99.4323C35.8022 103.422 32.571 107.362 29.2286 111.366C26.7103 114.039 24.3539 116.693 21.8574 119.209C21.3692 119.699 20.3469 119.794 19.559 119.832C17.2099 119.953 14.8536 119.958 12.4996 120.006C9.23937 119.958 5.97429 120.004 2.72372 119.803C1.79325 119.745 0.906294 118.974 0 118.53C0.432604 117.701 0.688785 116.688 1.32682 116.074C4.97133 112.577 8.70526 109.177 12.5939 105.585C14.7907 103.244 16.8039 101.061 18.9307 98.8184C20.0714 97.4481 21.1251 96.1575 22.1184 94.8235C24.3636 91.8001 26.5798 88.7549 28.8637 85.4899C28.6558 85.1998 28.39 85.1394 28.0033 85.1201C25.0451 88.8733 22.2296 92.6025 19.3415 96.2735C18.8968 96.8391 18.1138 97.1363 17.4347 97.4384C15.7792 95.2512 14.1769 93.1801 12.5721 91.1089ZM36.549 70.2013C36.885 67.4921 37.4384 64.7853 37.494 62.0712C37.5447 59.6278 36.5659 57.3585 34.3183 56.0582C31.162 54.2336 27.7568 54.2263 24.5279 55.6933C21.4151 57.1071 20.5596 60.0484 20.5403 63.2192C20.4967 70.4019 23.7908 76.3786 27.5175 82.1934C28.0589 83.0368 28.4359 83.9866 29.0014 85.1104C32.5106 80.8303 34.6809 75.7671 36.549 70.2013Z" fill="#FDC210"/> -<path d="M12.499 120.173C14.853 119.956 17.2093 119.951 19.5585 119.83C20.3463 119.789 21.3686 119.697 21.8568 119.206C24.3534 116.691 26.7097 114.037 29.3392 111.436C29.6582 111.683 29.75 111.922 29.8395 112.152C29.837 112.142 29.8491 112.159 29.7428 112.176C29.5784 112.319 29.5229 112.444 29.5253 112.684C31.6955 114.89 33.7546 117.046 35.9587 119.037C36.5412 119.564 37.5635 119.774 38.3997 119.825C40.8141 119.968 43.2357 119.953 45.6573 119.999C45.4132 130.882 45.1522 141.765 44.9492 152.647C44.9226 154.069 44.3184 154.823 42.9892 155.004C40.7706 155.306 38.5399 155.792 36.3189 155.768C29.3996 155.693 22.4803 155.403 15.5611 155.219C13.705 155.168 12.9316 154.472 12.922 152.423C12.8736 141.728 12.6561 131.034 12.499 120.173Z" fill="#0394AD"/> -<path d="M42.7439 5.76734C49.9822 13.385 49.5085 25.0146 43.22 31.7478C37.7919 37.5577 31.0708 39.4041 23.5812 37.1469C15.8741 34.8243 11.2919 29.2802 10.3372 21.2952C9.41404 13.5784 12.3915 7.29958 18.9603 3.04121C26.5345 -1.86728 35.6941 -0.745893 42.7439 5.76734Z" fill="#FFC210"/> -<path d="M45.8292 119.953C43.236 119.951 40.8144 119.968 38.4 119.825C37.5614 119.777 36.5415 119.564 35.9591 119.037C33.755 117.043 31.6959 114.89 29.5957 112.618C29.7117 112.367 29.7939 112.27 29.8519 112.157C29.8519 112.157 29.8374 112.14 29.9703 112.14C33.3465 108.125 36.5923 104.113 39.983 100.036C40.5824 100.326 41.0827 100.633 41.4814 101.039C42.8783 102.468 44.2414 103.93 45.6166 105.38C49.4351 108.991 53.2874 112.567 57.0431 116.243C57.6787 116.867 57.8962 117.916 58.3071 118.769C57.4153 119.134 56.5356 119.772 55.6293 119.813C52.4246 119.956 49.2103 119.893 45.8292 119.953Z" fill="#FCC212"/> -<path d="M45.6772 105.228C44.2416 103.93 42.8785 102.468 41.4816 101.039C41.0828 100.633 40.5826 100.324 39.9663 99.9107C39.6183 99.6932 39.4322 99.5337 39.2461 99.3766C41.3318 96.4861 43.415 93.5957 45.5684 90.6617C45.6699 95.4372 45.7037 100.256 45.6772 105.228Z" fill="#1099B2"/> -<path d="M12.5464 91.278C14.1777 93.18 15.7801 95.2512 17.4597 97.581C17.9624 98.1852 18.3902 98.5332 18.818 98.8812C16.8048 101.064 14.7916 103.246 12.6648 105.472C12.5392 100.827 12.5295 96.1382 12.5464 91.278Z" fill="#0D99B1"/> -<path d="M36.5057 70.3486C34.6811 75.767 32.5108 80.8302 29.0016 85.1079C28.4361 83.9841 28.0567 83.0367 27.5177 82.1908C23.7935 76.3736 20.497 70.3994 20.5405 63.2167C20.5598 60.0459 21.4153 57.1046 24.5282 55.6908C27.757 54.2238 31.1647 54.2311 34.3186 56.0557C36.5662 57.356 37.5425 59.6253 37.4942 62.0687C37.441 64.7852 36.8852 67.4895 36.5057 70.3486Z" fill="#0594AB"/> -<path d="M18.9318 98.8183C18.3905 98.5331 17.9627 98.1851 17.5107 97.6993C18.1149 97.1386 18.898 96.8413 19.3427 96.2758C22.2307 92.6047 25.0439 88.8756 28.1011 85.248C28.4805 85.4607 28.6449 85.5912 28.8068 85.7217C26.5785 88.7572 24.3647 91.8024 22.1196 94.8257C21.1263 96.1574 20.0701 97.448 18.9318 98.8183Z" fill="#389B92"/> -<path d="M39.1396 99.4297C39.432 99.5337 39.6181 99.6932 39.8187 99.9759C36.5923 104.113 33.3466 108.125 29.9727 112.149C29.7504 111.92 29.6586 111.68 29.4531 111.369C32.5708 107.359 35.802 103.422 39.1396 99.4297Z" fill="#389B92"/> -<path d="M28.8606 85.4898C28.6407 85.5888 28.4788 85.4583 28.2178 85.2046C28.3869 85.1393 28.6528 85.1997 28.8606 85.4898Z" fill="#0594AB"/> -<path d="M29.7428 112.173C29.7935 112.27 29.7114 112.364 29.5374 112.505C29.5229 112.444 29.5784 112.318 29.7428 112.173Z" fill="#389B92"/> -<path d="M335.497 214.61C335.108 214.61 334.913 214.416 334.913 214.026V201.565C334.913 201.175 335.108 200.981 335.497 200.981H336.588C336.977 200.981 337.172 201.175 337.172 201.565V203.122H337.224C337.639 202.344 338.128 201.755 338.69 201.357C339.253 200.959 339.954 200.76 340.793 200.76C341.347 200.76 341.737 200.807 341.962 200.903C342.161 200.981 342.234 201.11 342.182 201.292L341.884 202.357C341.84 202.512 341.728 202.573 341.546 202.538C341.243 202.478 340.958 202.447 340.69 202.447C339.677 202.447 338.842 202.906 338.184 203.823C337.527 204.732 337.198 205.974 337.198 207.549V214.026C337.198 214.416 337.003 214.61 336.614 214.61H335.497Z" fill="#149BB3"/> -<path d="M318.06 207.795C318.06 205.649 318.596 203.94 319.669 202.668C320.742 201.396 322.278 200.76 324.277 200.76C325.939 200.76 327.315 201.344 328.405 202.512C329.504 203.672 330.054 205.528 330.054 208.081C330.054 208.47 329.876 208.665 329.522 208.665H320.474C320.621 210.335 321.071 211.499 321.824 212.157C322.577 212.806 323.429 213.131 324.381 213.131C325.385 213.131 326.155 212.962 326.692 212.624C327.228 212.287 327.622 211.954 327.873 211.625C328.15 211.261 328.418 211.192 328.678 211.417L329.444 212.079C329.643 212.252 329.643 212.49 329.444 212.793C329.279 213.044 328.808 213.446 328.029 214C327.259 214.554 326.043 214.831 324.381 214.831C322.218 214.831 320.621 214.195 319.591 212.923C318.57 211.651 318.06 209.942 318.06 207.795ZM320.422 206.978H327.756C327.722 205.766 327.41 204.706 326.822 203.797C326.233 202.88 325.368 202.421 324.225 202.421C323.222 202.421 322.369 202.759 321.668 203.434C320.967 204.1 320.552 205.282 320.422 206.978Z" fill="#149BB3"/> -<path d="M302.88 207.795C302.88 205.762 303.382 204.083 304.386 202.759C305.398 201.426 306.943 200.76 309.02 200.76C310.422 200.76 311.49 201.011 312.226 201.513C312.97 202.006 313.507 202.512 313.836 203.032C314.017 203.317 313.978 203.546 313.719 203.72L312.901 204.252C312.641 204.433 312.382 204.317 312.122 203.901C311.871 203.503 311.516 203.161 311.058 202.876C310.608 202.59 309.928 202.447 309.02 202.447C307.834 202.447 306.917 202.884 306.268 203.758C305.619 204.632 305.294 205.978 305.294 207.795C305.294 209.613 305.619 210.958 306.268 211.832C306.917 212.707 307.834 213.144 309.02 213.144C309.98 213.144 310.716 212.962 311.227 212.598C311.737 212.226 312.109 211.824 312.343 211.391C312.568 210.984 312.823 210.868 313.109 211.041L313.978 211.56C314.238 211.716 314.277 211.949 314.095 212.261C313.879 212.633 313.386 213.157 312.615 213.832C311.854 214.498 310.655 214.831 309.02 214.831C306.943 214.831 305.398 214.169 304.386 212.845C303.382 211.512 302.88 209.829 302.88 207.795Z" fill="#149BB3"/> -<path d="M287.7 214.61C287.311 214.61 287.116 214.416 287.116 214.026V201.565C287.116 201.175 287.311 200.981 287.7 200.981H288.791C289.18 200.981 289.375 201.175 289.375 201.565V202.603H289.427C289.989 201.98 290.595 201.517 291.244 201.214C291.893 200.911 292.702 200.76 293.672 200.76C295.247 200.76 296.376 201.206 297.059 202.097C297.752 202.98 298.098 204.191 298.098 205.732V214.026C298.098 214.416 297.903 214.61 297.514 214.61H296.397C296.008 214.61 295.813 214.416 295.813 214.026V206.355C295.813 204.658 295.532 203.585 294.97 203.135C294.407 202.677 293.693 202.447 292.828 202.447C291.703 202.447 290.85 202.785 290.271 203.46C289.691 204.126 289.401 205.273 289.401 206.9V214.026C289.401 214.416 289.206 214.61 288.817 214.61H287.7Z" fill="#149BB3"/> -<path d="M270.651 210.976C270.651 209.435 271.37 208.306 272.806 207.588C274.251 206.87 276.406 206.45 279.271 206.329V205.446C279.271 204.632 279.085 203.932 278.712 203.343C278.349 202.746 277.622 202.447 276.532 202.447C275.839 202.447 275.286 202.517 274.87 202.655C274.455 202.785 274.074 202.962 273.728 203.187C273.39 203.404 273.066 203.685 272.754 204.031C272.521 204.291 272.3 204.304 272.092 204.07L271.417 203.291C271.227 203.075 271.292 202.815 271.612 202.512C272.071 202.08 272.516 201.755 272.949 201.539C273.382 201.322 273.918 201.141 274.559 200.994C275.208 200.838 275.865 200.76 276.532 200.76C278.34 200.76 279.63 201.227 280.4 202.162C281.17 203.088 281.555 204.36 281.555 205.978V214.026C281.555 214.416 281.361 214.61 280.971 214.61H279.803C279.465 214.61 279.297 214.416 279.297 214.026V213.39H279.271C278.587 213.927 277.916 214.303 277.259 214.52C276.61 214.727 275.883 214.831 275.078 214.831C273.659 214.831 272.564 214.494 271.794 213.819C271.032 213.135 270.651 212.187 270.651 210.976ZM273.014 211.028C273.014 211.564 273.126 211.997 273.351 212.326C273.576 212.646 273.888 212.854 274.286 212.949C274.684 213.035 275.099 213.079 275.532 213.079C276.198 213.079 276.83 213.014 277.427 212.884C278.024 212.754 278.639 212.412 279.271 211.858V208.029C277.523 208.159 276.276 208.319 275.532 208.509C274.788 208.691 274.182 209.011 273.715 209.47C273.248 209.92 273.014 210.439 273.014 211.028Z" fill="#149BB3"/> -<path d="M250.683 205.303C250.683 202.274 251.431 199.903 252.928 198.19C254.434 196.468 256.593 195.607 259.406 195.607C261.05 195.607 262.409 195.888 263.482 196.45C264.555 197.004 265.325 197.766 265.792 198.735C266.035 199.237 265.996 199.583 265.675 199.774L264.65 200.371C264.304 200.57 263.997 200.405 263.728 199.877C263.443 199.332 262.975 198.822 262.326 198.346C261.677 197.87 260.747 197.632 259.536 197.632C257.372 197.632 255.797 198.307 254.811 199.657C253.833 200.998 253.344 202.88 253.344 205.303C253.344 207.726 253.833 209.613 254.811 210.963C255.797 212.304 257.372 212.975 259.536 212.975C260.782 212.975 261.777 212.689 262.521 212.118C263.274 211.547 263.819 210.95 264.157 210.327C264.425 209.825 264.736 209.674 265.091 209.873L266.169 210.483C266.48 210.664 266.506 211.011 266.247 211.521C265.736 212.516 264.905 213.347 263.754 214.013C262.603 214.671 261.154 215 259.406 215C256.593 215 254.434 214.143 252.928 212.43C251.431 210.708 250.683 208.332 250.683 205.303Z" fill="#149BB3"/> -<path d="M224.698 214.611C224.309 214.611 224.114 214.416 224.114 214.026V196.035C224.114 195.646 224.309 195.451 224.698 195.451H225.815C226.204 195.451 226.399 195.646 226.399 196.035V201.824C226.399 202.084 226.39 202.344 226.373 202.603H226.425C226.987 201.98 227.593 201.517 228.242 201.214C228.891 200.912 229.7 200.76 230.67 200.76C232.245 200.76 233.374 201.206 234.058 202.097C234.75 202.98 235.096 204.191 235.096 205.732V214.026C235.096 214.416 234.901 214.611 234.512 214.611H233.396C233.006 214.611 232.811 214.416 232.811 214.026V206.355C232.811 204.659 232.53 203.586 231.968 203.136C231.405 202.677 230.691 202.448 229.826 202.448C228.701 202.448 227.848 202.785 227.269 203.46C226.689 204.126 226.399 205.273 226.399 206.9V214.026C226.399 214.416 226.204 214.611 225.815 214.611H224.698Z" fill="#149BB3"/> -<path d="M211.752 202.694C211.363 202.694 211.168 202.543 211.168 202.24V201.435C211.168 201.132 211.363 200.981 211.752 200.981H213.284V199.812C213.284 199.639 213.327 199.475 213.414 199.319L214.322 197.671C214.487 197.368 214.621 197.216 214.725 197.216H215.179C215.439 197.216 215.568 197.368 215.568 197.671V200.981H218.333C218.723 200.981 218.917 201.132 218.917 201.435V202.24C218.917 202.543 218.723 202.694 218.333 202.694H215.568V210.963C215.568 211.872 215.703 212.464 215.971 212.741C216.248 213.01 216.577 213.144 216.957 213.144C217.252 213.144 217.602 213.057 218.009 212.884C218.424 212.711 218.71 212.564 218.866 212.443C219.021 212.322 219.142 212.361 219.229 212.56L219.657 213.559C219.727 213.732 219.675 213.871 219.502 213.974C219.164 214.174 218.671 214.368 218.022 214.559C217.373 214.74 216.724 214.831 216.075 214.831C215.175 214.831 214.482 214.507 213.998 213.858C213.522 213.209 213.284 212.291 213.284 211.106V202.694H211.752Z" fill="#149BB3"/> -<path d="M205.167 214.611C204.778 214.611 204.583 214.416 204.583 214.027V201.565C204.583 201.176 204.778 200.981 205.167 200.981H206.283C206.673 200.981 206.868 201.176 206.868 201.565V214.027C206.868 214.416 206.673 214.611 206.283 214.611H205.167ZM205.167 198.514C204.778 198.514 204.583 198.32 204.583 197.93V196.814C204.583 196.425 204.778 196.23 205.167 196.23H206.283C206.673 196.23 206.868 196.425 206.868 196.814V197.93C206.868 198.32 206.673 198.514 206.283 198.514H205.167Z" fill="#149BB3"/> -<path d="M182.887 201.617C182.775 201.193 182.891 200.981 183.238 200.981H184.601C184.912 200.981 185.107 201.15 185.185 201.487L187.093 210.054C187.153 210.305 187.244 210.699 187.365 211.236C187.495 211.772 187.586 212.166 187.638 212.417H187.69C187.733 212.175 187.807 211.811 187.911 211.327C188.023 210.842 188.127 210.418 188.222 210.054L190.507 201.487C190.593 201.15 190.788 200.981 191.091 200.981H192.259C192.562 200.981 192.757 201.15 192.843 201.487L195.128 210.054C195.223 210.418 195.323 210.842 195.427 211.327C195.539 211.811 195.617 212.175 195.66 212.417H195.712C195.764 212.166 195.851 211.772 195.972 211.236C196.102 210.699 196.197 210.305 196.257 210.054L198.165 201.487C198.243 201.15 198.438 200.981 198.75 200.981H200.113C200.459 200.981 200.576 201.193 200.463 201.617L197.244 213.819C197.105 214.347 196.872 214.611 196.543 214.611H194.985C194.656 214.611 194.423 214.347 194.284 213.819L192.077 205.239C191.922 204.633 191.822 204.209 191.779 203.966C191.744 203.724 191.714 203.495 191.688 203.278H191.662C191.636 203.495 191.602 203.724 191.558 203.966C191.524 204.209 191.428 204.633 191.273 205.239L189.066 213.819C188.927 214.347 188.694 214.611 188.365 214.611H186.807C186.478 214.611 186.245 214.347 186.106 213.819L182.887 201.617Z" fill="#149BB3"/> -<path d="M157.344 214.61C156.954 214.61 156.76 214.416 156.76 214.026V201.565C156.76 201.175 156.954 200.981 157.344 200.981H158.434C158.824 200.981 159.018 201.175 159.018 201.565V202.603H159.07C159.633 201.98 160.239 201.517 160.888 201.214C161.537 200.911 162.346 200.76 163.315 200.76C164.89 200.76 166.019 201.206 166.703 202.097C167.395 202.98 167.742 204.191 167.742 205.732V214.026C167.742 214.416 167.547 214.61 167.157 214.61H166.041C165.652 214.61 165.457 214.416 165.457 214.026V206.355C165.457 204.658 165.176 203.585 164.613 203.135C164.051 202.677 163.337 202.447 162.471 202.447C161.346 202.447 160.494 202.785 159.914 203.46C159.334 204.126 159.044 205.273 159.044 206.9V214.026C159.044 214.416 158.85 214.61 158.46 214.61H157.344Z" fill="#149BB3"/> -<path d="M139.906 207.795C139.906 205.649 140.443 203.94 141.516 202.668C142.589 201.396 144.125 200.76 146.124 200.76C147.786 200.76 149.162 201.344 150.252 202.512C151.351 203.672 151.9 205.528 151.9 208.081C151.9 208.47 151.723 208.665 151.368 208.665H142.321C142.468 210.335 142.918 211.499 143.671 212.157C144.424 212.806 145.276 213.131 146.228 213.131C147.232 213.131 148.002 212.962 148.538 212.624C149.075 212.287 149.469 211.954 149.72 211.625C149.997 211.261 150.265 211.192 150.525 211.417L151.29 212.079C151.489 212.252 151.489 212.49 151.29 212.793C151.126 213.044 150.654 213.446 149.875 214C149.105 214.554 147.889 214.831 146.228 214.831C144.064 214.831 142.468 214.195 141.438 212.923C140.417 211.651 139.906 209.942 139.906 207.795ZM142.269 206.978H149.603C149.568 205.766 149.257 204.706 148.668 203.797C148.08 202.88 147.214 202.421 146.072 202.421C145.068 202.421 144.216 202.759 143.515 203.434C142.814 204.1 142.399 205.282 142.269 206.978Z" fill="#149BB3"/> -<path d="M129.996 214.61C129.607 214.61 129.412 214.416 129.412 214.026V201.565C129.412 201.175 129.607 200.981 129.996 200.981H131.087C131.476 200.981 131.671 201.175 131.671 201.565V203.122H131.723C132.138 202.344 132.627 201.755 133.19 201.357C133.752 200.959 134.453 200.76 135.292 200.76C135.846 200.76 136.236 200.807 136.461 200.903C136.66 200.981 136.733 201.11 136.681 201.292L136.383 202.357C136.34 202.512 136.227 202.573 136.045 202.538C135.742 202.478 135.457 202.447 135.189 202.447C134.176 202.447 133.341 202.906 132.683 203.823C132.026 204.732 131.697 205.974 131.697 207.549V214.026C131.697 214.416 131.502 214.61 131.113 214.61H129.996Z" fill="#149BB3"/> -<path d="M112.273 207.796C112.273 205.935 112.723 204.299 113.623 202.889C114.523 201.47 115.839 200.76 117.57 200.76C118.565 200.76 119.361 200.924 119.958 201.253C120.555 201.582 121.092 202.032 121.568 202.603H121.594C121.576 202.344 121.568 202.08 121.568 201.812V196.035C121.568 195.646 121.762 195.451 122.152 195.451H123.268C123.658 195.451 123.852 195.646 123.852 196.035V214.026C123.852 214.416 123.658 214.611 123.268 214.611H122.178C121.866 214.611 121.697 214.416 121.672 214.026L121.594 212.988H121.568C121.092 213.559 120.555 214.009 119.958 214.338C119.361 214.667 118.565 214.831 117.57 214.831C115.839 214.831 114.523 214.126 113.623 212.715C112.723 211.296 112.273 209.656 112.273 207.796ZM114.688 207.796C114.688 209.388 114.96 210.677 115.506 211.664C116.059 212.65 116.994 213.144 118.309 213.144C119.244 213.144 120.019 212.828 120.633 212.196C121.256 211.556 121.568 210.587 121.568 209.288V206.303C121.568 205.005 121.256 204.04 120.633 203.408C120.019 202.768 119.244 202.448 118.309 202.448C116.994 202.448 116.059 202.941 115.506 203.927C114.96 204.914 114.688 206.203 114.688 207.796Z" fill="#149BB3"/> -<path d="M105.767 214.611C105.377 214.611 105.183 214.416 105.183 214.026V197.826C105.183 197.653 105.226 197.489 105.312 197.333L106.221 195.685C106.386 195.382 106.52 195.23 106.623 195.23H107.078C107.337 195.23 107.467 195.382 107.467 195.685V214.026C107.467 214.416 107.273 214.611 106.883 214.611H105.767Z" fill="#149BB3"/> -<path d="M97.9347 214.611C97.5453 214.611 97.3506 214.416 97.3506 214.027V201.565C97.3506 201.176 97.5453 200.981 97.9347 200.981H99.0511C99.4405 200.981 99.6352 201.176 99.6352 201.565V214.027C99.6352 214.416 99.4405 214.611 99.0511 214.611H97.9347ZM97.9347 198.514C97.5453 198.514 97.3506 198.32 97.3506 197.93V196.814C97.3506 196.425 97.5453 196.23 97.9347 196.23H99.0511C99.4405 196.23 99.6352 196.425 99.6352 196.814V197.93C99.6352 198.32 99.4405 198.514 99.0511 198.514H97.9347Z" fill="#149BB3"/> -<path d="M81.4298 214.611C81.0404 214.611 80.8457 214.416 80.8457 214.026V196.035C80.8457 195.646 81.0404 195.451 81.4298 195.451H82.5462C82.9356 195.451 83.1303 195.646 83.1303 196.035V201.824C83.1303 202.084 83.1217 202.344 83.1044 202.603H83.1563C83.7188 201.98 84.3246 201.517 84.9736 201.214C85.6226 200.912 86.4318 200.76 87.401 200.76C88.976 200.76 90.1053 201.206 90.789 202.097C91.4813 202.98 91.8274 204.191 91.8274 205.732V214.026C91.8274 214.416 91.6327 214.611 91.2433 214.611H90.127C89.7375 214.611 89.5428 214.416 89.5428 214.026V206.355C89.5428 204.659 89.2616 203.586 88.6991 203.136C88.1366 202.677 87.4226 202.448 86.5572 202.448C85.4322 202.448 84.5798 202.785 84 203.46C83.4202 204.126 83.1303 205.273 83.1303 206.9V214.026C83.1303 214.416 82.9356 214.611 82.5462 214.611H81.4298Z" fill="#149BB3"/> -<path d="M60.1387 205.303C60.1387 202.274 60.8872 199.903 62.3843 198.19C63.8901 196.468 66.0493 195.607 68.8618 195.607C70.506 195.607 71.8646 195.888 72.9377 196.45C74.0108 197.004 74.781 197.766 75.2483 198.735C75.4906 199.237 75.4517 199.583 75.1315 199.774L74.106 200.371C73.7598 200.57 73.4526 200.405 73.1843 199.877C72.8988 199.332 72.4315 198.822 71.7824 198.346C71.1334 197.87 70.2031 197.632 68.9916 197.632C66.8281 197.632 65.2531 198.307 64.2666 199.657C63.2887 200.998 62.7997 202.88 62.7997 205.303C62.7997 207.726 63.2887 209.613 64.2666 210.963C65.2531 212.304 66.8281 212.975 68.9916 212.975C70.2377 212.975 71.2329 212.689 71.9771 212.118C72.73 211.547 73.2752 210.95 73.6127 210.327C73.881 209.825 74.1925 209.674 74.5473 209.873L75.6247 210.483C75.9363 210.664 75.9622 211.011 75.7026 211.521C75.192 212.516 74.3613 213.347 73.2103 214.013C72.0593 214.671 70.6098 215 68.8618 215C66.0493 215 63.8901 214.143 62.3843 212.43C60.8872 210.708 60.1387 208.332 60.1387 205.303Z" fill="#149BB3"/> -<path d="M39.424 214.61C39.0346 214.61 38.8398 214.416 38.8398 214.026V201.565C38.8398 201.175 39.0346 200.981 39.424 200.981H40.5144C40.9038 200.981 41.0985 201.175 41.0985 201.565V203.122H41.1504C41.5658 202.344 42.0547 201.755 42.6172 201.357C43.1797 200.959 43.8807 200.76 44.7201 200.76C45.274 200.76 45.6634 200.807 45.8884 200.903C46.0874 200.981 46.161 201.11 46.1091 201.292L45.8105 202.357C45.7672 202.512 45.6547 202.573 45.473 202.538C45.1701 202.478 44.8846 202.447 44.6163 202.447C43.6038 202.447 42.7687 202.906 42.111 203.823C41.4533 204.732 41.1245 205.974 41.1245 207.549V214.026C41.1245 214.416 40.9297 214.61 40.5403 214.61H39.424Z" fill="#149BB3"/> -<path d="M21.3379 207.795C21.3379 205.762 21.8744 204.083 22.9475 202.759C24.0292 201.426 25.6086 200.76 27.6855 200.76C29.7624 200.76 31.3374 201.426 32.4105 202.759C33.4922 204.083 34.0331 205.762 34.0331 207.795C34.0331 209.829 33.4922 211.512 32.4105 212.845C31.3374 214.169 29.7624 214.831 27.6855 214.831C25.6086 214.831 24.0292 214.169 22.9475 212.845C21.8744 211.512 21.3379 209.829 21.3379 207.795ZM23.7523 207.795C23.7523 209.613 24.1114 210.958 24.8297 211.832C25.548 212.707 26.4999 213.144 27.6855 213.144C28.8711 213.144 29.823 212.707 30.5413 211.832C31.2595 210.958 31.6187 209.613 31.6187 207.795C31.6187 205.978 31.2595 204.632 30.5413 203.758C29.823 202.884 28.8711 202.447 27.6855 202.447C26.4999 202.447 25.548 202.884 24.8297 203.758C24.1114 204.632 23.7523 205.978 23.7523 207.795Z" fill="#149BB3"/> -<path d="M11.0773 202.694C10.6879 202.694 10.4932 202.543 10.4932 202.24V201.435C10.4932 201.132 10.6879 200.981 11.0773 200.981H12.4662V199.047C12.4662 197.601 12.8557 196.606 13.6345 196.061C14.4134 195.507 15.3047 195.23 16.3086 195.23C16.9057 195.23 17.386 195.261 17.7494 195.321C18.1215 195.382 18.5586 195.516 19.0605 195.723C19.2509 195.801 19.3071 195.94 19.2292 196.139L18.8268 197.164C18.7576 197.337 18.6061 197.372 18.3725 197.268C18.1821 197.182 17.9485 197.104 17.6715 197.035C17.3946 196.957 17.0961 196.918 16.7759 196.918C16.0576 196.918 15.5384 197.091 15.2182 197.437C14.9066 197.783 14.7509 198.445 14.7509 199.423V200.981H17.1263C17.5158 200.981 17.7105 201.132 17.7105 201.435V202.24C17.7105 202.543 17.5158 202.694 17.1263 202.694H14.7509V214.026C14.7509 214.416 14.5561 214.611 14.1667 214.611H13.0504C12.661 214.611 12.4662 214.416 12.4662 214.026V202.694H11.0773Z" fill="#149BB3"/> -<path d="M279.756 173.34C279.6 172.916 279.717 172.704 280.107 172.704H281.522C281.807 172.704 282.002 172.873 282.106 173.211L284.832 181.778C284.91 182.012 285.026 182.379 285.182 182.881C285.347 183.375 285.463 183.816 285.533 184.205H285.559C285.628 183.816 285.71 183.465 285.805 183.154C285.909 182.834 286.061 182.375 286.26 181.778L289.012 173.211C289.124 172.873 289.319 172.704 289.596 172.704H291.011C291.4 172.704 291.517 172.916 291.361 173.34L286.987 185.542C286.164 187.836 285.429 189.441 284.78 190.358C284.131 191.284 283.162 191.747 281.872 191.747C281.197 191.747 280.661 191.648 280.262 191.449C280.081 191.362 280.02 191.228 280.081 191.046L280.418 189.995C280.479 189.813 280.596 189.761 280.769 189.839C281.124 189.986 281.465 190.06 281.794 190.06C282.4 190.06 282.893 189.731 283.274 189.073C283.655 188.424 283.958 187.771 284.183 187.113L284.442 186.347L279.756 173.34Z" fill="#149BB3"/> -<path d="M268.342 174.418C267.953 174.418 267.758 174.266 267.758 173.964V173.159C267.758 172.856 267.953 172.704 268.342 172.704H269.874V171.536C269.874 171.363 269.917 171.199 270.003 171.043L270.912 169.394C271.077 169.091 271.211 168.94 271.315 168.94H271.769C272.028 168.94 272.158 169.091 272.158 169.394V172.704H274.923C275.313 172.704 275.507 172.856 275.507 173.159V173.964C275.507 174.266 275.313 174.418 274.923 174.418H272.158V182.687C272.158 183.595 272.292 184.188 272.561 184.465C272.838 184.733 273.166 184.867 273.547 184.867C273.841 184.867 274.192 184.781 274.599 184.608C275.014 184.435 275.3 184.288 275.455 184.166C275.611 184.045 275.732 184.084 275.819 184.283L276.247 185.283C276.316 185.456 276.265 185.594 276.091 185.698C275.754 185.897 275.261 186.092 274.612 186.282C273.963 186.464 273.314 186.555 272.665 186.555C271.765 186.555 271.072 186.23 270.588 185.581C270.112 184.932 269.874 184.015 269.874 182.829V174.418H268.342Z" fill="#149BB3"/> -<path d="M252.149 179.519C252.149 177.373 252.686 175.664 253.759 174.392C254.832 173.12 256.368 172.484 258.367 172.484C260.029 172.484 261.405 173.068 262.495 174.236C263.594 175.396 264.144 177.252 264.144 179.805C264.144 180.194 263.966 180.389 263.611 180.389H254.564C254.711 182.059 255.161 183.223 255.914 183.881C256.667 184.53 257.519 184.854 258.471 184.854C259.475 184.854 260.245 184.686 260.782 184.348C261.318 184.011 261.712 183.677 261.963 183.349C262.24 182.985 262.508 182.916 262.768 183.141L263.534 183.803C263.733 183.976 263.733 184.214 263.534 184.517C263.369 184.768 262.897 185.17 262.119 185.724C261.348 186.278 260.133 186.555 258.471 186.555C256.308 186.555 254.711 185.919 253.681 184.647C252.66 183.375 252.149 181.665 252.149 179.519ZM254.512 178.701H261.846C261.811 177.49 261.5 176.43 260.911 175.521C260.323 174.604 259.458 174.145 258.315 174.145C257.311 174.145 256.459 174.483 255.758 175.158C255.057 175.824 254.642 177.005 254.512 178.701Z" fill="#149BB3"/> -<path d="M245.642 186.334C245.252 186.334 245.058 186.14 245.058 185.75V173.289C245.058 172.899 245.252 172.704 245.642 172.704H246.758C247.148 172.704 247.342 172.899 247.342 173.289V185.75C247.342 186.14 247.148 186.334 246.758 186.334H245.642ZM245.642 170.238C245.252 170.238 245.058 170.043 245.058 169.654V168.538C245.058 168.148 245.252 167.953 245.642 167.953H246.758C247.148 167.953 247.342 168.148 247.342 168.538V169.654C247.342 170.043 247.148 170.238 246.758 170.238H245.642Z" fill="#149BB3"/> -<path d="M229.139 179.519C229.139 177.486 229.641 175.807 230.644 174.483C231.657 173.15 233.202 172.484 235.279 172.484C236.681 172.484 237.749 172.735 238.485 173.237C239.229 173.73 239.766 174.236 240.094 174.755C240.276 175.041 240.237 175.27 239.978 175.443L239.16 175.975C238.9 176.157 238.641 176.04 238.381 175.625C238.13 175.227 237.775 174.885 237.317 174.6C236.867 174.314 236.187 174.171 235.279 174.171C234.093 174.171 233.176 174.608 232.527 175.482C231.878 176.356 231.553 177.702 231.553 179.519C231.553 181.337 231.878 182.682 232.527 183.556C233.176 184.43 234.093 184.867 235.279 184.867C236.239 184.867 236.975 184.686 237.485 184.322C237.996 183.95 238.368 183.548 238.602 183.115C238.827 182.708 239.082 182.591 239.368 182.764L240.237 183.284C240.497 183.439 240.536 183.673 240.354 183.985C240.138 184.357 239.644 184.88 238.874 185.555C238.113 186.222 236.914 186.555 235.279 186.555C233.202 186.555 231.657 185.893 230.644 184.569C229.641 183.236 229.139 181.553 229.139 179.519Z" fill="#149BB3"/> -<path d="M212.375 179.519C212.375 177.486 212.912 175.807 213.985 174.483C215.066 173.15 216.646 172.484 218.723 172.484C220.8 172.484 222.375 173.15 223.448 174.483C224.529 175.807 225.07 177.486 225.07 179.519C225.07 181.553 224.529 183.236 223.448 184.569C222.375 185.893 220.8 186.555 218.723 186.555C216.646 186.555 215.066 185.893 213.985 184.569C212.912 183.236 212.375 181.553 212.375 179.519ZM214.789 179.519C214.789 181.337 215.149 182.682 215.867 183.556C216.585 184.43 217.537 184.867 218.723 184.867C219.908 184.867 220.86 184.43 221.578 183.556C222.297 182.682 222.656 181.337 222.656 179.519C222.656 177.702 222.297 176.356 221.578 175.482C220.86 174.608 219.908 174.171 218.723 174.171C217.537 174.171 216.585 174.608 215.867 175.482C215.149 176.356 214.789 177.702 214.789 179.519Z" fill="#149BB3"/> -<path d="M195.678 184.932C195.22 184.517 195.099 184.153 195.315 183.842L195.99 182.868C196.224 182.531 196.6 182.557 197.119 182.946C197.803 183.457 198.513 183.876 199.248 184.205C199.992 184.534 200.892 184.699 201.948 184.699C202.727 184.699 203.385 184.582 203.921 184.348C204.458 184.114 204.886 183.781 205.206 183.349C205.535 182.907 205.7 182.375 205.7 181.752C205.7 181.302 205.63 180.887 205.492 180.506C205.362 180.116 205.15 179.792 204.856 179.532C204.562 179.273 204.254 179.069 203.934 178.922C203.406 178.68 202.614 178.399 201.559 178.078C200.512 177.758 199.594 177.412 198.807 177.04C198.028 176.668 197.405 176.218 196.938 175.69C196.479 175.162 196.172 174.621 196.016 174.067C195.869 173.505 195.795 172.864 195.795 172.146C195.795 171.047 196.115 170.1 196.756 169.303C197.396 168.507 198.179 167.979 199.105 167.72C200.04 167.46 200.988 167.33 201.948 167.33C203.047 167.33 204.003 167.473 204.817 167.759C205.63 168.044 206.357 168.416 206.998 168.875C207.448 169.195 207.551 169.533 207.309 169.888L206.647 170.835C206.448 171.121 206.059 171.06 205.479 170.653C205.038 170.342 204.497 170.052 203.856 169.784C203.225 169.507 202.597 169.368 201.974 169.368C201.178 169.368 200.516 169.463 199.988 169.654C199.46 169.836 199.045 170.147 198.742 170.588C198.439 171.03 198.288 171.54 198.288 172.12C198.288 172.484 198.322 172.821 198.391 173.133C198.461 173.436 198.638 173.747 198.924 174.067C199.209 174.388 199.555 174.634 199.962 174.807C200.507 175.041 201.351 175.318 202.493 175.638C203.644 175.95 204.648 176.335 205.505 176.793C206.301 177.217 206.872 177.663 207.218 178.13C207.573 178.589 207.846 179.091 208.036 179.636C208.235 180.173 208.335 180.778 208.335 181.453C208.335 182.682 208.019 183.708 207.387 184.53C206.755 185.352 206.007 185.923 205.141 186.243C204.276 186.564 203.19 186.724 201.883 186.724C200.317 186.724 199.019 186.542 197.989 186.178C196.959 185.815 196.189 185.4 195.678 184.932Z" fill="#149BB3"/> -<path d="M177.404 186.334C177.015 186.334 176.82 186.139 176.82 185.75V169.55C176.82 169.377 176.864 169.213 176.95 169.057L177.859 167.408C178.023 167.105 178.157 166.954 178.261 166.954H178.716C178.975 166.954 179.105 167.105 179.105 167.408V185.75C179.105 186.139 178.91 186.334 178.521 186.334H177.404Z" fill="#149BB3"/> -<path d="M160.355 182.7C160.355 181.159 161.074 180.03 162.51 179.312C163.955 178.593 166.11 178.174 168.975 178.052V177.17C168.975 176.356 168.789 175.655 168.417 175.067C168.053 174.47 167.326 174.171 166.236 174.171C165.543 174.171 164.99 174.24 164.574 174.379C164.159 174.509 163.778 174.686 163.432 174.911C163.094 175.127 162.77 175.409 162.458 175.755C162.225 176.014 162.004 176.027 161.796 175.794L161.121 175.015C160.931 174.799 160.996 174.539 161.316 174.236C161.775 173.803 162.22 173.479 162.653 173.262C163.086 173.046 163.622 172.864 164.263 172.717C164.912 172.562 165.569 172.484 166.236 172.484C168.044 172.484 169.334 172.951 170.104 173.886C170.874 174.812 171.259 176.084 171.259 177.702V185.75C171.259 186.139 171.065 186.334 170.675 186.334H169.507C169.169 186.334 169.001 186.139 169.001 185.75V185.114H168.975C168.291 185.65 167.62 186.027 166.963 186.243C166.314 186.451 165.587 186.555 164.782 186.555C163.363 186.555 162.268 186.217 161.498 185.542C160.736 184.859 160.355 183.911 160.355 182.7ZM162.718 182.751C162.718 183.288 162.83 183.721 163.055 184.05C163.28 184.37 163.592 184.577 163.99 184.673C164.388 184.759 164.804 184.802 165.236 184.802C165.903 184.802 166.534 184.737 167.131 184.608C167.729 184.478 168.343 184.136 168.975 183.582V179.753C167.227 179.883 165.98 180.043 165.236 180.233C164.492 180.415 163.886 180.735 163.419 181.194C162.952 181.644 162.718 182.163 162.718 182.751Z" fill="#149BB3"/> -<path d="M145.177 186.334C144.787 186.334 144.593 186.139 144.593 185.75V173.288C144.593 172.899 144.787 172.704 145.177 172.704H146.267C146.657 172.704 146.851 172.899 146.851 173.288V174.327H146.903C147.466 173.704 148.072 173.241 148.721 172.938C149.37 172.635 150.179 172.484 151.148 172.484C152.723 172.484 153.852 172.929 154.536 173.821C155.228 174.703 155.575 175.915 155.575 177.455V185.75C155.575 186.139 155.38 186.334 154.99 186.334H153.874C153.485 186.334 153.29 186.139 153.29 185.75V178.078C153.29 176.382 153.009 175.309 152.446 174.859C151.884 174.4 151.17 174.171 150.304 174.171C149.179 174.171 148.327 174.509 147.747 175.184C147.167 175.85 146.877 176.997 146.877 178.624V185.75C146.877 186.139 146.683 186.334 146.293 186.334H145.177Z" fill="#149BB3"/> -<path d="M127.091 179.519C127.091 177.486 127.627 175.807 128.7 174.483C129.782 173.15 131.361 172.484 133.438 172.484C135.515 172.484 137.09 173.15 138.163 174.483C139.245 175.807 139.786 177.486 139.786 179.519C139.786 181.553 139.245 183.236 138.163 184.569C137.09 185.893 135.515 186.555 133.438 186.555C131.361 186.555 129.782 185.893 128.7 184.569C127.627 183.236 127.091 181.553 127.091 179.519ZM129.505 179.519C129.505 181.337 129.864 182.682 130.583 183.556C131.301 184.43 132.253 184.867 133.438 184.867C134.624 184.867 135.576 184.43 136.294 183.556C137.012 182.682 137.372 181.337 137.372 179.519C137.372 177.702 137.012 176.356 136.294 175.482C135.576 174.608 134.624 174.171 133.438 174.171C132.253 174.171 131.301 174.608 130.583 175.482C129.864 176.356 129.505 177.702 129.505 179.519Z" fill="#149BB3"/> -<path d="M120.581 186.334C120.192 186.334 119.997 186.14 119.997 185.75V173.289C119.997 172.899 120.192 172.704 120.581 172.704H121.698C122.087 172.704 122.282 172.899 122.282 173.289V185.75C122.282 186.14 122.087 186.334 121.698 186.334H120.581ZM120.581 170.238C120.192 170.238 119.997 170.043 119.997 169.654V168.538C119.997 168.148 120.192 167.953 120.581 167.953H121.698C122.087 167.953 122.282 168.148 122.282 168.538V169.654C122.282 170.043 122.087 170.238 121.698 170.238H120.581Z" fill="#149BB3"/> -<path d="M107.635 174.418C107.245 174.418 107.051 174.266 107.051 173.964V173.159C107.051 172.856 107.245 172.704 107.635 172.704H109.167V171.536C109.167 171.363 109.21 171.199 109.296 171.043L110.205 169.394C110.37 169.091 110.504 168.94 110.608 168.94H111.062C111.321 168.94 111.451 169.091 111.451 169.394V172.704H114.216C114.606 172.704 114.8 172.856 114.8 173.159V173.964C114.8 174.266 114.606 174.418 114.216 174.418H111.451V182.687C111.451 183.595 111.585 184.188 111.854 184.465C112.131 184.733 112.459 184.867 112.84 184.867C113.134 184.867 113.485 184.781 113.892 184.608C114.307 184.435 114.593 184.288 114.748 184.166C114.904 184.045 115.025 184.084 115.112 184.283L115.54 185.283C115.609 185.456 115.558 185.594 115.384 185.698C115.047 185.897 114.554 186.092 113.905 186.282C113.256 186.464 112.607 186.555 111.958 186.555C111.058 186.555 110.365 186.23 109.881 185.581C109.405 184.932 109.167 184.015 109.167 182.829V174.418H107.635Z" fill="#149BB3"/> -<path d="M91.833 182.7C91.833 181.159 92.5513 180.03 93.9878 179.312C95.433 178.593 97.5878 178.174 100.452 178.052V177.17C100.452 176.356 100.266 175.655 99.8941 175.067C99.5306 174.47 98.8037 174.171 97.7133 174.171C97.021 174.171 96.4671 174.24 96.0518 174.379C95.6364 174.509 95.2556 174.686 94.9095 174.911C94.572 175.127 94.2474 175.409 93.9359 175.755C93.7022 176.014 93.4816 176.027 93.2739 175.794L92.5989 175.015C92.4085 174.799 92.4734 174.539 92.7936 174.236C93.2522 173.803 93.6979 173.479 94.1306 173.262C94.5633 173.046 95.0998 172.864 95.7402 172.717C96.3893 172.562 97.047 172.484 97.7133 172.484C99.522 172.484 100.811 172.951 101.582 173.886C102.352 174.812 102.737 176.084 102.737 177.702V185.75C102.737 186.139 102.542 186.334 102.153 186.334H100.984C100.647 186.334 100.478 186.139 100.478 185.75V185.114H100.452C99.7686 185.65 99.0979 186.027 98.4402 186.243C97.7912 186.451 97.0643 186.555 96.2595 186.555C94.8402 186.555 93.7455 186.217 92.9753 185.542C92.2138 184.859 91.833 183.911 91.833 182.7ZM94.1955 182.751C94.1955 183.288 94.308 183.721 94.533 184.05C94.758 184.37 95.0695 184.577 95.4676 184.673C95.8657 184.759 96.2811 184.802 96.7138 184.802C97.3801 184.802 98.0119 184.737 98.609 184.608C99.2061 184.478 99.8205 184.136 100.452 183.582V179.753C98.7042 179.883 97.458 180.043 96.7138 180.233C95.9695 180.415 95.3638 180.735 94.8965 181.194C94.4292 181.644 94.1955 182.163 94.1955 182.751Z" fill="#149BB3"/> -<path d="M76.6535 186.334C76.264 186.334 76.0693 186.139 76.0693 185.75V173.288C76.0693 172.899 76.264 172.704 76.6535 172.704H77.7439C78.1333 172.704 78.328 172.899 78.328 173.288V174.327H78.3799C78.9424 173.704 79.5482 173.241 80.1972 172.938C80.8463 172.635 81.6554 172.484 82.6246 172.484C84.1996 172.484 85.329 172.929 86.0126 173.821C86.7049 174.703 87.0511 175.915 87.0511 177.455V185.75C87.0511 186.139 86.8564 186.334 86.4669 186.334H85.3506C84.9612 186.334 84.7665 186.139 84.7665 185.75V178.078C84.7665 176.382 84.4852 175.309 83.9227 174.859C83.3602 174.4 82.6463 174.171 81.7809 174.171C80.6559 174.171 79.8035 174.509 79.2237 175.184C78.6439 175.85 78.354 176.997 78.354 178.624V185.75C78.354 186.139 78.1592 186.334 77.7698 186.334H76.6535Z" fill="#149BB3"/> -<path d="M65.421 186.334C65.0316 186.334 64.8369 186.139 64.8369 185.75V173.288C64.8369 172.899 65.0316 172.704 65.421 172.704H66.5114C66.9009 172.704 67.0956 172.899 67.0956 173.288V174.846H67.1475C67.5629 174.067 68.0518 173.479 68.6143 173.081C69.1768 172.683 69.8778 172.484 70.7172 172.484C71.2711 172.484 71.6605 172.531 71.8855 172.626C72.0845 172.704 72.1581 172.834 72.1061 173.016L71.8076 174.08C71.7643 174.236 71.6518 174.297 71.4701 174.262C71.1672 174.201 70.8816 174.171 70.6134 174.171C69.6009 174.171 68.7658 174.63 68.1081 175.547C67.4504 176.456 67.1215 177.698 67.1215 179.273V185.75C67.1215 186.139 66.9268 186.334 66.5374 186.334H65.421Z" fill="#149BB3"/> -<path d="M47.9834 179.519C47.9834 177.373 48.5199 175.664 49.593 174.392C50.6661 173.12 52.2022 172.484 54.2012 172.484C55.8627 172.484 57.2387 173.068 58.3291 174.236C59.4281 175.396 59.9776 177.252 59.9776 179.805C59.9776 180.194 59.8002 180.389 59.4454 180.389H50.3978C50.5449 182.059 50.9949 183.223 51.7478 183.881C52.5007 184.53 53.3531 184.854 54.305 184.854C55.3089 184.854 56.0791 184.686 56.6156 184.348C57.1522 184.011 57.5459 183.677 57.7969 183.349C58.0738 182.985 58.3421 182.916 58.6017 183.141L59.3675 183.803C59.5666 183.976 59.5666 184.214 59.3675 184.517C59.2031 184.768 58.7315 185.17 57.9526 185.724C57.1824 186.278 55.9666 186.555 54.305 186.555C52.1416 186.555 50.5449 185.919 49.5151 184.647C48.494 183.375 47.9834 181.665 47.9834 179.519ZM50.3459 178.701H57.68C57.6454 177.49 57.3339 176.43 56.7454 175.521C56.157 174.604 55.2916 174.145 54.1493 174.145C53.1454 174.145 52.293 174.483 51.5921 175.158C50.8911 175.824 50.4757 177.005 50.3459 178.701Z" fill="#149BB3"/> -<path d="M36.3605 174.418C35.9711 174.418 35.7764 174.266 35.7764 173.964V173.159C35.7764 172.856 35.9711 172.704 36.3605 172.704H37.8922V171.536C37.8922 171.363 37.9355 171.199 38.022 171.043L38.9307 169.394C39.0951 169.091 39.2293 168.94 39.3331 168.94H39.7874C40.047 168.94 40.1768 169.091 40.1768 169.394V172.704H42.9418C43.3312 172.704 43.5259 172.856 43.5259 173.159V173.964C43.5259 174.266 43.3312 174.418 42.9418 174.418H40.1768V182.687C40.1768 183.595 40.311 184.188 40.5793 184.465C40.8562 184.733 41.185 184.867 41.5658 184.867C41.86 184.867 42.2105 184.781 42.6172 184.608C43.0326 184.435 43.3182 184.288 43.474 184.166C43.6297 184.045 43.7509 184.084 43.8374 184.283L44.2658 185.283C44.335 185.456 44.2831 185.594 44.11 185.698C43.7725 185.897 43.2793 186.092 42.6302 186.282C41.9812 186.464 41.3321 186.555 40.6831 186.555C39.7831 186.555 39.0908 186.23 38.6062 185.581C38.1302 184.932 37.8922 184.015 37.8922 182.829V174.418H36.3605Z" fill="#149BB3"/> -<path d="M21.1037 186.334C20.7142 186.334 20.5195 186.139 20.5195 185.75V173.288C20.5195 172.899 20.7142 172.704 21.1037 172.704H22.1941C22.5835 172.704 22.7782 172.899 22.7782 173.288V174.327H22.8301C23.3926 173.704 23.9984 173.241 24.6474 172.938C25.2965 172.635 26.1056 172.484 27.0748 172.484C28.6498 172.484 29.7791 172.929 30.4628 173.821C31.1551 174.703 31.5013 175.915 31.5013 177.455V185.75C31.5013 186.139 31.3066 186.334 30.9171 186.334H29.8008C29.4114 186.334 29.2166 186.139 29.2166 185.75V178.078C29.2166 176.382 28.9354 175.309 28.3729 174.859C27.8104 174.4 27.0965 174.171 26.2311 174.171C25.1061 174.171 24.2537 174.509 23.6739 175.184C23.0941 175.85 22.8041 176.997 22.8041 178.624V185.75C22.8041 186.139 22.6094 186.334 22.22 186.334H21.1037Z" fill="#149BB3"/> -<path d="M12.7652 186.334C12.3326 186.334 12.1162 186.096 12.1162 185.62V168.434C12.1162 167.958 12.3326 167.72 12.7652 167.72H13.9595C14.3922 167.72 14.6085 167.958 14.6085 168.434V185.62C14.6085 186.096 14.3922 186.334 13.9595 186.334H12.7652Z" fill="#149BB3"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="1046" height="1048" xmlns:v="https://vecta.io/nano"><path d="M495.898-.203l3.97-.017 8.305-.02 8.306-.041C541.205-.482 565.59.967 590 5.25l3.691.636C663.85 18.352 730.357 46.056 788 88l2.207 1.602c11.996 8.748 23.31 18.127 34.281 28.132l4.159 3.668c5.888 5.033 11.363 10.456 16.825 15.94l4.771 4.765c5.462 5.458 10.774 10.988 15.756 16.893l2.738 3.168c6.333 7.429 12.427 15.004 18.262 22.832l1.476 1.971C915.79 223.609 937.351 264.098 953 307l1.198 3.269c15.874 43.906 25.843 91.888 26.005 138.63l.017 3.97.02 8.305.041 8.306c.201 24.726-1.248 49.111-5.531 73.521l-.636 3.691C961.648 616.85 933.944 683.357 892 741l-1.602 2.207c-8.748 11.996-18.127 23.31-28.132 34.281l-3.668 4.159c-5.033 5.888-10.456 11.363-15.94 16.825l-4.765 4.771C832.435 808.706 826.904 814.018 821 819l-3.168 2.738C810.403 828.072 802.828 834.165 795 840l-1.971 1.476c-40.646 30.303-85.686 52.961-133.592 69.274l-2.889.995c-12.36 4.089-24.895 6.974-37.548 10.255l252 1v37h90v35h85v53H0v-53h87v-35h86v-37l235-1-30-8-15.25-4.812-3.712-1.254C314.635 892.73 272.511 870.129 235 842l-1.854-1.391c-10.501-7.912-20.685-16.131-30.345-25.055l-4.489-3.997c-5.874-5.021-11.336-10.429-16.785-15.9l-4.771-4.765C171.294 785.435 165.982 779.904 161 774l-2.738-3.168C151.928 763.403 145.835 755.828 140 748l-1.476-1.971C111.21 709.391 89.649 668.902 74 626l-1.198-3.269c-15.874-43.906-25.843-91.888-26.005-138.63l-.017-3.97-.02-8.305-.041-8.306c-.201-24.726 1.248-49.111 5.531-73.521l.636-3.691C65.352 316.15 93.056 249.643 135 192l1.602-2.207c8.748-11.996 18.127-23.31 28.132-34.281l3.668-4.159c5.033-5.888 10.456-11.363 15.94-16.825l4.765-4.771c5.458-5.462 10.988-10.774 16.893-15.756l3.168-2.738C216.597 104.928 224.172 98.835 232 93l1.971-1.476C270.609 64.21 311.098 42.649 354 27l3.269-1.198C401.174 9.928 449.157-.041 495.898-.203z" fill="#fefdfd"/><path d="M495.898-.203l3.97-.017 8.305-.02 8.306-.041C541.205-.482 565.59.967 590 5.25l3.691.636C663.85 18.352 730.357 46.056 788 88l2.207 1.602c11.996 8.748 23.31 18.127 34.281 28.132l4.159 3.668c5.888 5.033 11.363 10.456 16.825 15.94l4.771 4.765c5.462 5.458 10.774 10.988 15.756 16.893l2.738 3.168c6.333 7.429 12.427 15.004 18.262 22.832l1.476 1.971C915.79 223.609 937.351 264.098 953 307l1.198 3.269c15.874 43.906 25.843 91.888 26.005 138.63l.017 3.97.02 8.305.041 8.306c.201 24.726-1.248 49.111-5.531 73.521l-.636 3.691C961.648 616.85 933.944 683.357 892 741l-1.602 2.207c-8.748 11.996-18.127 23.31-28.132 34.281l-3.668 4.159c-5.033 5.888-10.456 11.363-15.94 16.825l-4.765 4.771C832.435 808.706 826.904 814.018 821 819l-3.168 2.738C810.403 828.072 802.828 834.165 795 840l-1.971 1.476c-48.354 36.049-103.328 61.979-161.529 77.587l-3.307.907c-6.182 1.594-11.741 2.307-18.129 2.036L608 922l-1 1c-1.489.087-2.981.107-4.473.098l-2.725-.01-2.865-.025-2.877-.014L587 923v-1l1.905-.32 8.782-1.493 2.994-.502C635.944 913.637 670.568 902.012 703 887l2.824-1.25c19.536-8.67 38.298-19.045 56.176-30.75l5.5-3.437c5.681-3.622 11.098-7.54 16.5-11.562l3.793-2.789c7.299-5.394 14.417-10.899 21.222-16.909C812.796 817 812.796 817 815 817v-2c1.576-1.391 3.214-2.712 4.875-4 5.791-4.627 10.963-9.679 16.125-15l5-5 2.391-2.398 5.844-5.766c7.081-6.949 13.624-14.031 19.766-21.836l3.227-3.957 1.732-2.118 3.35-4.093c5.164-6.342 10.098-12.789 14.566-19.645 2.534-3.852 5.15-7.579 7.938-11.25C914.449 699.948 925.817 676.516 936 654l1.348-2.852c6.75-14.368 11.786-29.279 16.544-44.402 3.061-9.727 3.061-9.727 4.659-13.637 2.38-6.179 3.512-12.774 4.887-19.234l.462-2.15c4.196-19.536 7.665-38.765 9.1-58.725l-.48 3.863C964.081 582.78 941.756 643.464 909 701h-2l-.711 2.551c-1.494 3.997-3.505 7.143-5.914 10.637l-1.347 1.985c-12.304 18.035-25.399 36.189-40.431 52.054a179.16 179.16 0 0 0-5.605 6.293c-4.805 5.519-10.008 10.646-15.189 15.808l-5.199 5.206C826.907 801.234 821.183 806.821 815 812l-2.949 2.52c-7.199 6.028-14.528 11.86-22.051 17.48l-2.023 1.512C772.329 845.144 756.017 855.498 739 865l-1.807 1.081C733.04 868.55 729.81 869.519 725 870l-1 1c-4.695.335-8.679-.089-13-2-1.437-3.625-1.437-3.625-2-7l3-1 1-4c3.644-2.429 5.712-2.162 10-2l1-4h3l1-3c3.063-1.187 3.063-1.187 6-2v-3l-6 1c-4.143-6.913-7.984-13.88-11.527-21.117-1.856-3.632-3.954-7.081-6.082-10.559C705 803.315 705 803.315 705 799h2v-2l-1.875-.437C703 796 703 796 701 795v-2h-5v-2h3v-2h2l.535-1.703c2.213-3.47 5.401-4.995 8.902-7.047A230.27 230.27 0 0 0 730 767l3.094-2.285c4.46-3.306 8.866-6.604 13.031-10.277C749 752 749 752 751 752v-2c1.431-1.245 2.923-2.421 4.438-3.562 5.279-4.112 9.926-8.625 14.563-13.437 2.697-2.761 5.405-5.355 8.375-7.812 3.983-3.386 7.255-7.203 10.625-11.187l2.617-2.992c10.938-12.524 21.697-25.3 29.93-39.797L823 669h2l.797-2.184c1.234-2.888 2.707-5.272 4.453-7.879 3.13-4.824 5.72-9.747 8.223-14.918 1.527-3.019 3.209-5.879 4.965-8.77 3.824-6.457 6.713-13.18 9.627-20.078l3.014-6.739c3.496-7.639 6.684-15.128 8.996-23.227 1.041-3.605 2.22-7.155 3.426-10.707 2.027-5.981 3.834-11.997 5.508-18.086L875 554l3-1 .078-3.234c.3-8.723 1.143-17.138 2.859-25.703l.515-2.599c.799-3.786 1.363-6.186 3.548-9.464.275-2.323.275-2.323.195-4.887l-.02-2.842-.051-2.959-.027-2.994L885 491c-1.49 2.98-1.29 6.1-1.437 9.375-.366 6.982-1.223 13.756-2.562 20.625-2-2-2-2-2.125-5.125L879 513h-2v6h-2c-2.425-3.637-2.204-5.196-2.082-9.512l.109-3.964.16-4.212.074-2.134c.368-10.302 1.276-20.143 3.738-30.178 5.082-21.039 1.289-43.147-3-64l-1.332-6.687c-2.478-12.295-5.016-24.488-8.59-36.516C862.482 356.175 861 350.864 861 345h-2c-1.292-4.12-2.263-7.668-2-12h-2l-.586-2.047-.789-2.703-.773-2.672c-.77-2.557-.77-2.557-1.953-4.719C850 319 850 319 850 316h-2l-1.437-4.25-.809-2.391c-1.924-6.02-1.924-6.02-.754-8.359h2v4l1.861.245c2.139.755 2.139.755 3.353 2.503l1.013 2.325 1.174 2.67 1.224 2.943 1.291 3.039c3.589 8.658 6.717 17.459 9.709 26.336l.672 1.973 1.867 5.624 1.077 3.27c.778 3.144.901 5.845.759 9.07h2l1 4 1-5h-2l-.516-1.778C856.354 306.983 830.23 253.597 791 211l-3.687-4.187-1.703-1.945-3.094-3.672c-3.192-3.861-6.607-7.12-10.426-10.359-2.925-2.569-5.621-5.342-8.328-8.137-1.855-1.89-1.855-1.89-4.762-3.699v-2l-1.648-.699c-3.006-1.663-5.419-3.85-7.977-6.113C737.734 160.118 724.944 151.307 712 143l-2.918-1.875C651.146 104.704 584.141 86.521 516 86.563l-3.578-.001c-19.768.04-39.272 1.181-58.797 4.376l-3.314.53L441 93l-2.415.395c-36.336 5.993-72.471 19.94-104.653 37.554l-4.885 2.591c-18.866 9.896-37.093 22.237-53.273 36.09-2.797 2.391-5.652 4.695-8.523 6.996-4.079 3.322-7.815 6.824-11.477 10.598-1.592 1.596-3.215 3.042-4.961 4.465C240.3 200.331 231.473 211.408 223 222l-3.016 3.707c-7.061 8.685-7.061 8.685-13.437 17.875a239.18 239.18 0 0 1-3.844 5.805A315.89 315.89 0 0 0 187 275l-1.335 2.397c-4.001 7.235-7.692 14.598-11.29 22.041l-1.695 3.447c-3.094 6.396-5.693 12.727-7.829 19.502-.85 2.613-.85 2.613-2.354 6.117-2.155 5.035-3.775 10.217-5.434 15.434l-1.077 3.386c-2.45 7.789-4.681 15.563-6.493 23.529l-1.769 7.519c-2.4 10.182-4.488 20.235-5.723 30.629l-.523 3.949L140 425l-.274 2.533c-.974 10.497-.912 21.012-.911 31.546l-.039 9.76c-.08 29.476 4.046 57.528 10.787 86.16l.593 2.528 1.724 7.222.511 2.163c1.187 4.854 2.795 9.436 4.61 14.087l1.656 4.715c3.627 10.324 7.571 20.451 11.969 30.473l1.342 3.072c3.017 6.779 6.418 13.265 10.033 19.74l3.313 6.25c5.926 11.001 12.308 21.659 19.688 31.75l3.23 4.484c5.612 7.747 11.186 15.338 17.746 22.313 2.89 3.146 5.489 6.501 8.102 9.879 2.165 2.618 4.49 4.953 6.922 7.324l6.313 6.188 1.666 1.615c1.379 1.362 2.705 2.776 4.021 4.197v2l1.792.828c2.141 1.137 3.722 2.325 5.528 3.93l1.857 1.635 1.948 1.733c8.349 7.331 16.913 14.304 25.875 20.875l2.801 2.102c8.468 6.265 17.342 11.756 26.379 17.164l2.89 1.73 2.586 1.537L327 788l2.308 1.438L331 791v4h-4v6h-2v-4h-2v2h-2v2h-2v3l2.938.75C325 806 325 806 325.875 807.633c.188 3.569-1.323 6.337-2.812 9.492l-1.949 4.273-1.044 2.261-3.213 7.255-1.065 2.445-2.037 4.7c-1.603 3.643-3.146 6.882-5.754 9.941l-6-1c2.066 3.099 2.561 3.499 5.809 4.789l2.264.914 2.365.922 2.354.945c3.052 1.22 6.09 2.39 9.209 3.43v-2l-3-1c-1.468-5.473-.44-8.119 2-13 1.601 4.002.293 7.046-1 11h4v-4h3l2-10h2l2 4 2-1 2 1-1-11 16 1v1h-14l.68 3.473c.613 4.916-.67 8.472-2.555 12.965l-.855 2.178c-2.064 5.179-2.064 5.179-3.27 6.385-1.666.041-3.334.043-5 0 .909 2.392.909 2.392 4.273 3.184l6.18 1.873c6.514 2.034 6.514 2.034 8.547 4.943v2l1.813.375C352 872 352 872 355 874l1 3c-3.856.22-6.492-.396-10-2v2c-3 2-3 2-6 2v2h3v2l-8-2v4h2v2c-7.786-2.35-14.894-5.673-22.187-9.25l-3.646-1.777-7.069-3.458-7.41-3.574c-6.973-3.365-13.52-7.185-20.01-11.391-3.172-2.047-6.32-3.911-9.724-5.55-3.915-1.906-7.336-4.225-10.828-6.812l-3.687-2.684-1.789-1.308c-2.15-1.56-4.335-3.066-6.523-4.571-12.085-8.466-23.558-17.465-34.589-27.264l-5.661-4.924c-11.826-10.392-23.699-21.123-33.914-33.133l-4.922-5.672c-6.139-6.985-12.072-14.055-17.66-21.488l-4.727-6.07C134.574 727.946 127.827 716.996 121 706l-1.308-2.1-5.044-8.197-3.109-4.969c-5.254-8.302-9.208-17.307-13.354-26.194l-3.921-8.322L90 647l-1.624-3.516c-4.735-10.433-8.453-21.078-11.938-31.984l-.852-2.642C64.862 575.589 56.355 539.989 54 505l-.167-2.43C49.588 435.752 57.721 369.867 81 307l1.078-3.074c1.943-5.529 4.18-10.834 6.656-16.145 1.234-2.713 2.349-5.451 3.453-8.219 8.052-19.518 18.66-38.076 30.055-55.809l3.266-5.227C133.871 204.932 143.754 192.218 154 180l2.117-2.789L158 175h2l.285-1.734c.88-2.789 2.213-4.338 4.152-6.516l1.871-2.141C168 163 168 163 170 163l.615-1.599c1.996-3.462 4.714-6.015 7.537-8.819l1.863-1.869 3.921-3.911 5.885-5.898c6.374-6.38 12.777-12.492 19.874-18.072 2.313-1.84 4.5-3.774 6.679-5.77 5.605-5.035 11.601-9.548 17.625-14.062l1.624-1.224C244.637 95 244.637 95 247 95v-2l1.441-.742a129.95 129.95 0 0 0 12.388-7.526c14.87-10.199 30.799-18.908 47.046-26.708l7.21-3.519c9.843-4.799 19.68-9.168 30.003-12.818 2.613-.938 5.202-1.933 7.794-2.926L363 35l1.955-.718C386.231 26.568 408.764 21.143 431 17l2.604-.499c45.106-8.527 96.621-11.732 141.968-2.952 3.088.573 6.178.892 9.303 1.201 39.445 4.551 80.085 16.962 115.902 34.184l7.977 3.75c9.183 4.304 18.241 8.63 26.906 13.914 2.039 1.222 4.064 2.271 6.215 3.277 5.781 2.8 11.068 6.516 16.434 10.027l7.004 4.41C776.677 91.541 787.609 99.436 798 108l3.738 2.992c7.366 5.901 14.534 11.916 21.418 18.375 2.164 2.004 4.351 3.938 6.586 5.859 4.838 4.215 9.358 8.727 13.883 13.273l2.484 2.473C859 163.884 859 163.884 859 167l3 1c1.77 1.871 1.77 1.871 3.813 4.438l2.398 3.008L871 179l1.626 2.058C880.361 190.85 887.911 200.731 895 211l1.544 2.21C910.15 232.745 921.73 253.532 932 275l1.715 3.488C942.652 297.032 949.404 316.528 956 336l-.496-1.766c-.697-3.092-.565-6.077-.504-9.234h-2l-.959-2.604C943.693 299.776 935.176 277.406 924 256l-1.078-2.076C912.294 233.47 912.294 233.47 900 214l-3.75-5.687c-14.624-22.042-14.624-22.042-31.914-41.977-1.463-1.463-2.555-2.996-3.711-4.711-2.87-4.094-6.314-7.385-9.937-10.812C849 149 849 149 849 147h-2l-3.461-4.234c-2.229-2.557-4.789-4.652-7.367-6.848-2.324-2.053-4.496-4.209-6.672-6.418-6.333-6.398-13.115-12.064-20.203-17.605C807 110 807 110 805.086 108.063c-2.561-2.532-5.349-4.7-8.211-6.875l-1.74-1.329c-4.184-3.179-8.435-6.247-12.764-9.225l-4.648-3.266c-6.444-4.61-13.119-8.798-19.855-12.961-3.097-1.916-6.141-3.899-9.18-5.906-7.929-5.04-16.309-9.267-24.687-13.5l-2.886-1.459C705.425 45.669 689.487 39.001 673 33l-3.158-1.175c-24.669-9.163-49.791-15.146-75.655-19.7l-2.489-.441C566.569 7.275 541.49 5.783 516 5.813h-2.678C462.583 5.885 413.169 14.139 365 30l-3.307 1.088c-10.115 3.358-20.12 6.744-29.681 11.49-2.548 1.203-5.083 2.26-7.703 3.289-17.386 6.882-33.632 15.903-49.626 25.523l-7.42 4.395-4.074 2.402-1.812 1.061c-2.129 1.271-4.087 2.456-5.824 4.24-1.988 1.938-4.285 3.117-6.7 4.454-10.188 5.824-19.329 13.736-28.355 21.175l-1.817 1.495-4.519 3.771C212 116 212 116 210 116v2c-1.617 1.433-3.296 2.796-5 4.125-4.476 3.564-8.53 7.27-12.441 11.441C191 135 191 135 189 135l-1 3h-2l-1 3h-2l-.715 1.711c-1.578 2.81-3.526 4.685-5.848 6.914-3.128 2.886-3.128 2.886-5.437 6.375h-2l-.825 1.79c-1.146 2.156-2.349 3.747-3.968 5.565l-1.648 1.87-1.746 1.962c-19.014 21.688-34.729 45.72-49.028 70.707l-3.753 6.45c-4.837 8.252-9.023 16.668-12.907 25.406l-.905 2.024c-15.587 34.925-28.424 72.1-34.521 109.976l-1.77 10.007c-1.89 10.221-3.124 20.463-4.117 30.806l-.263 2.71c-1.831 19.278-2.051 38.445-1.593 57.792l.096 5.077c1.048 59.732 16.622 125.92 44.749 178.589l4.271 8.27c5.93 11.585 11.998 22.983 18.93 34l1.719 2.785c12.467 20.672 12.467 20.672 28.063 38.883C151 752 151 752 151 755l3 1c1.396 1.55 2.719 3.166 4 4.813 4.601 5.761 9.495 11.199 14.519 16.593l4.672 5.067 3.184 3.465 1.478 1.611c4.497 4.88 9.146 9.52 14.085 13.952l2.613 2.348c1.991 1.749 4.006 3.434 6.074 5.09L207 811v2l1.625.75c3.917 2.062 7.425 4.274 10.523 7.457 3.619 3.545 7.53 6.58 11.539 9.668l2.279 1.777c41.136 31.859 89.205 56.326 138.658 72.223l2.02.65c30.584 9.807 61.392 16.3 93.355 19.475v1H177v31h2l-1 12H93v-1h84v-5H91v36H4v45h1036v1h-5v2h7v-2h4v3H0v-53h87v-35h86v-37l235-1-30-8-15.25-4.812-3.712-1.254C314.635 892.73 272.511 870.129 235 842l-1.854-1.391c-10.501-7.912-20.685-16.131-30.345-25.055l-4.489-3.997c-5.874-5.021-11.336-10.429-16.785-15.9l-4.771-4.765C171.294 785.435 165.982 779.904 161 774l-2.738-3.168C151.928 763.403 145.835 755.828 140 748l-1.476-1.971C111.21 709.391 89.649 668.902 74 626l-1.198-3.269c-15.874-43.906-25.843-91.888-26.005-138.63l-.017-3.97-.02-8.305-.041-8.306c-.201-24.726 1.248-49.111 5.531-73.521l.636-3.691C65.352 316.15 93.056 249.643 135 192l1.602-2.207c8.748-11.996 18.127-23.31 28.132-34.281l3.668-4.159c5.033-5.888 10.456-11.363 15.94-16.825l4.765-4.771c5.458-5.462 10.988-10.774 16.893-15.756l3.168-2.738C216.597 104.928 224.172 98.835 232 93l1.971-1.476C270.609 64.21 311.098 42.649 354 27l3.269-1.198C401.174 9.928 449.157-.041 495.898-.203z" fill="#fefefe"/><path d="M624.532 17.417l7.179 1.618C675.066 28.836 718.686 48.119 756 72l2.384 1.523 7.929 5.102 2.534 1.632C774.06 83.645 779.059 87.228 784 91l5.25 3.813L795 99l1.664 1.204 5.024 3.671 3.074 2.242L807 108v2l1.609.688c3.181 1.746 5.871 3.993 8.641 6.313l1.68 1.367c1.398 1.164 2.739 2.394 4.07 3.633v2l1.766.77c2.476 1.364 4.04 2.873 5.984 4.918 2.74 2.817 5.526 5.493 8.5 8.063 5.631 4.866 5.631 4.866 7.75 7.25v2h2c1.551 1.793 1.551 1.793 3.313 4.188 2.684 3.56 5.487 6.701 8.688 9.813 3 3.621 3 3.621 3 6l1.829.807c2.244 1.233 3.337 2.288 4.905 4.283l1.477 1.86 1.538 1.988 1.611 2.05c4.353 5.571 8.57 11.23 12.639 17.012l2.172 3.074c4.729 6.759 9.272 13.613 13.695 20.574l4.078 6.328c3.225 4.956 6.084 9.906 8.641 15.234 1.338 2.638 2.802 5.17 4.309 7.715 10.325 17.622 18.052 36.825 25.293 55.887l1.386 3.645c2.163 5.8 4.095 11.495 5.426 17.542h2l1.563 6.75.879 3.797c.515 3.184.445 4.498-.441 7.453l-.927-2.892C949.596 319.974 942.739 300.287 934 281l-1.142-2.567C926.778 264.8 919.51 251.889 912 239l-1.314-2.269A315.01 315.01 0 0 0 894 211l-1.241-1.732C885.116 198.631 877.094 188.296 869 178l-1.319-1.687c-3.692-4.721-7.427-9.084-11.681-13.312l-3.894-4.25c-5.311-5.85-10.777-11.531-16.356-17.125l-1.966-1.98c-4.431-4.417-9.035-8.574-13.784-12.645l-3.492-3.027c-16.874-14.542-34.502-28.3-53.449-40.066l-7.461-4.75c-8.186-5.277-16.296-10.25-25.09-14.453-3.256-1.581-6.433-3.257-9.614-4.981C702.325 49.68 682.781 42.278 663 35l-3.593-1.325c-7.315-2.66-14.637-5.042-22.157-7.05l-3.281-.878c-9.453-2.465-18.97-4.568-28.531-6.56l-2.109-.445c-9.103-1.91-18.17-3.324-27.419-4.313-3.939-.432-7.858-.959-11.785-1.492-17-2.18-34.2-2.178-51.312-2.187l-3.316-.002c-58.067.057-118.295 11.063-171.504 34.936-3.025 1.331-6.078 2.488-9.18 3.629-26.994 10.302-53.451 25.248-76.675 42.374C250 93 250 93 247 93v2c-2.446 1.825-4.908 3.547-7.437 5.25-12.09 8.331-23.392 17.648-34.191 27.59l-3.988 3.536c-6.021 5.142-11.601 10.69-17.186 16.296l-4.969 4.963-3.162 3.166-1.499 1.493C171.956 159.9 171.956 159.9 170 163h-2l-.687 1.688c-1.666 2.934-3.935 4.935-6.312 7.313l-1 3c-1.637 1.696-3.308 3.359-5 5-11.288 12.62-21.138 26.596-30 41l-3.562 5.563c-14.381 22.631-26.897 46.771-36.293 71.91l-.78 2.085C70.49 337.929 60.271 376.286 56 416l-.312 2.829C52.691 447.231 53.049 476.524 55 505l.147 2.184c3.698 49.759 17.316 104.164 39.831 148.755 1.045 2.107 2.044 4.23 3.03 6.365 7.964 17.232 17.203 33.414 27.49 49.359l4.428 6.961c4.971 7.834 10.121 15.242 16.074 22.375l3.25 4.25c4.582 5.917 9.506 11.546 14.406 17.199l3.25 3.77C178.141 779.215 189.915 791.85 203 803l3.477 3.035c7.046 6.156 14.117 12.243 21.523 17.965l2.609 2.027C239.813 833.057 249.4 839.528 259 846l2.406 1.63c3.809 2.565 7.587 5.043 11.656 7.182 3.901 2.081 7.761 4.216 11.599 6.408C301.605 870.873 319.273 878.9 337 887v-2h-2v-4c5.75.875 5.75.875 8 2v-2h-3v-2l6-2v-2l2.188.438L351 876l5 1v-2l-3-1c-4.666-2.45-4.666-2.45-6.18-4.945-2.605-2.94-5.781-3.594-9.445-4.617-2.533-.713-4.907-1.498-7.375-2.437l-1-3 2.293-.027c3.07-.764 3.07-.764 4.508-4.289a153.57 153.57 0 0 0 1.512-4.246l.799-2.096c1.775-4.948 2.231-9.092 1.889-14.342l-1-1v10h-3l-2 2-1-6h-2l.125 2.75c-.12 3.128-.516 4.636-2.125 7.25h-3v4h-4l1-8c-1.755 2.685-2.006 3.92-1.75 7.188L322 855l2 1v2c-7.63-1.272-14.446-3.819-21-8l-1-3h6c5.4-10.496 10.33-21.16 15-32l1.254-2.883c.87-2.469.643-3.694-.254-6.117h-3v-2h-2v-3h2v-2h2v-2h2v4h2v-6h4c-.152-1.907-.152-1.907-1-4-2.032-1.682-2.032-1.682-4.637-3.102l-2.92-1.721-3.131-1.803C310.19 778.982 301.471 773.359 293 767l-2.164-1.594L285 761l-3.02-2.27c-6.136-4.637-11.985-9.42-17.641-14.645-2.264-2.018-4.597-3.837-7.027-5.648-3.71-2.823-6.652-5.897-9.633-9.469-1.645-1.928-3.368-3.697-5.18-5.469-2.998-2.951-5.764-6.039-8.504-9.23-1.456-1.655-2.948-3.279-4.461-4.883-7.537-7.991-14.088-16.502-20.535-25.387l-2.699-3.676c-7.831-10.734-14.645-21.99-21.086-33.604-1.97-3.547-4.011-6.998-6.215-10.407-5.002-8.225-8.335-17.439-12-26.312l-1.664-3.957c-4.006-9.716-7.31-19.642-10.544-29.637l-1.524-4.466c-2.677-7.59-4.437-15.425-6.267-23.252l-.539-2.297c-6.191-26.53-8.832-52.971-8.722-80.225l-.013-9.494c-.008-10.408.282-20.736 1.164-31.109l.235-2.778c.568-6.023 1.578-11.877 2.875-17.785h1c.128 6.771-.255 13.336-.984 20.063-1.113 11.26-1.322 22.442-1.276 33.751l-.013 9.554c-.013 17.661 1.005 35.218 4.086 52.633l.514 2.983c8.386 47.39 24.858 94.114 51.131 134.615C201 665.671 201 665.671 201 668h2c1.236 1.681 2.386 3.424 3.5 5.188 9.365 14.377 20.492 27.528 32.137 40.105C240 715 240 715 240 717l1.688.75c4.35 2.351 7.504 5.393 10.688 9.125 2.736 3.205 5.575 5.961 8.852 8.605C263 737 263 737 265.395 739.41c9.951 9.891 21.852 18.069 33.363 26.031 2.491 1.732 4.942 3.514 7.379 5.32C309 772.665 312.008 774.31 315 776l5.152 2.953C361.067 802.316 404.316 819.243 451 827l2.752.487c60.09 10.465 122.695 4.588 180.248-15.112l2.095-.715c7.209-2.474 14.163-5.08 20.905-8.66a117.08 117.08 0 0 1 4.313-1.687C685.387 791.748 708.098 778.249 729 763l1.968-1.419C752.366 746.108 772.84 728.108 790 708l1.3-1.511c6.673-7.671 6.673-7.671 12.763-15.801L806 688h2l.699-2.094c1.579-3.527 3.769-6.37 6.113-9.406C845.52 635.617 863.944 588.007 877 539h1c-.451 7.531-1.999 14.358-4.187 21.563l-.942 3.166c-2.286 7.586-4.784 15.079-7.511 22.517a240.29 240.29 0 0 0-2.793 8.184c-1.509 4.56-3.383 8.893-5.379 13.258l-2.137 4.73-1.056 2.341-2.639 6.167c-2.565 6.192-5.294 11.928-8.867 17.598-1.608 2.676-2.952 5.411-4.301 8.227-2.99 6.124-6.584 11.738-10.332 17.414-1.807 2.643-1.807 2.643-2.855 4.836h-2l-.754 2.129c-6.904 15.907-21.388 30.251-32.722 43.123l-6.124 7.209c-1.415 1.555-2.888 2.848-4.525 4.164-2.879 2.208-2.879 2.208-4.75 4.75-2.352 2.905-4.922 5.161-7.762 7.578-3.772 3.267-7.397 6.698-11.043 10.105C753 750 753 750 751 750v2c-2.067 1.793-4.14 3.468-6.312 5.125l-1.94 1.498c-11.212 8.621-22.814 16.573-34.67 24.276l-2.453 1.602-2.086 1.344c-1.694 1.093-1.694 1.093-2.539 3.156h-2v2h-3v2h5v2l3 1 3 1v2h-2c4.993 10.225 10.295 20.155 16 30l3.438 6.125 1.434 2.57c1.037 2.118 1.667 4.001 2.129 6.305l6-1v3l-2.937 1.375c-3.133 1.283-3.133 1.283-4.062 3.625h-3l-1 4-3.312.438c-3.619.445-3.619.445-6.687 1.563-.372 1.323-.706 2.657-1 4l-2 1 1 3v4l6.438.563 3.621.316L724 870l1-1 3.156-.344c4.182-.714 6.721-1.982 10.344-4.156l1.813-1.077 3.781-2.272 5.621-3.331C764.067 849.388 777.72 840.029 791 830l2.218-1.674c8.668-6.572 17.109-13.244 25.009-20.729a182.57 182.57 0 0 1 6.324-5.637c5.356-4.663 10.341-9.703 15.349-14.731l4.989-4.982c5.579-5.575 11.037-11.203 16.111-17.248l2.52-2.949c8.945-10.683 17.377-21.713 25.48-33.051l1.734-2.414c3.485-4.907 6.814-9.905 10.078-14.961l1.168-1.804c1.84-2.872 3.579-5.726 5.02-8.821h2l.746-2.582c1.356-3.697 3.212-6.809 5.316-10.105 4.545-7.338 8.221-14.958 11.828-22.789 1.714-3.719 3.569-7.34 5.484-10.961C956.903 605.676 968.034 550.905 974 497h1c.26 8.561-.706 16.95-1.687 25.438l-.268 2.338c-1.646 14.23-4.006 28.222-7.045 42.224l-.662 3.108-1.963 9.017-.588 2.675-.576 2.52-.491 2.165c-.823 2.875-1.872 5.623-2.938 8.416-1.215 3.263-2.259 6.576-3.305 9.896l-1.406 4.406-2.158 6.805C949.006 625.2 945.931 634.183 942 643l-1.232 2.77L937 654l-1.292 2.802c-9.82 21.155-20.605 41.87-33.708 61.198l-1.283 1.914c-6.24 9.301-12.772 18.3-19.717 27.086l-2.016 2.57c-5.497 6.949-11.227 13.697-16.984 20.43l-1.977 2.324c-4.958 5.762-10.34 11.053-15.773 16.363-2.271 2.242-2.271 2.242-4.062 4.688-2.357 2.828-4.894 5.066-7.691 7.445-1.985 1.733-3.916 3.493-5.836 5.297l-1.766 1.656-3.501 3.315C817.221 815 817.221 815 815 815v2c-1.66 1.523-1.66 1.523-4.062 3.375l-2.754 2.145-1.536 1.19-5.3 4.24C794.401 833.577 787.402 838.978 780 844l-4.937 3.5c-10.031 7.009-20.53 13.283-31.062 19.5l-1.778 1.052C733.016 873.474 723.607 878.339 714 883l-3.469 1.707c-34.387 16.535-72.177 29.651-109.844 35.98l-2.279.393L593 922l6.938.063 3.902.035c3.023.268 3.023.268 4.16-1.098 2.671-.141 5.324-.042 8 0v1l255 1v37h90v35h85v50h-4v2h-7v-2L4 1044c-1.127-12.397-1.127-12.397-1.133-16.973l-.004-3.037.012-3.053-.012-3.064.004-3.033.003-2.676c.18-4.4.691-8.782 1.129-13.164h87l-1-10-.125-9.687-.012-2.432.004-2.393.003-2.108c.171-3.145.684-6.262 1.129-9.38h86v5l1 1-.035-2.117-.027-2.758-.035-2.742C178 959 178 959 179 957h-2v-31l278-1-30-5c-51.868-11.149-102.622-29.163-148-57l-2.911-1.775C262.094 853.892 250.222 846.48 239 838l-2.146-1.619-13.074-10.001-4.777-3.638L217 821v-2l-2.187-.75c-5.212-2.316-8.872-6.218-12.812-10.25l-4.062-4.125-1.973-2.008c-1.933-1.921-1.933-1.921-4.211-3.484L190 797v-2l-1.73-.742c-6.501-3.603-11.527-10.429-16.32-16.027-1.976-2.261-4.009-4.463-6.053-6.662-4.207-4.526-8.232-9.065-11.775-14.143-1.081-1.584-1.081-1.584-3.121-2.426l-3-5c-1.162-1.5-2.351-2.978-3.562-4.437-8.192-10.128-15.476-20.876-22.394-31.904l-2.927-4.584c-10.698-16.898-19.768-34.814-28.139-52.958l-2.458-5.233C81.874 636.732 76.675 621.901 72 607l-.844-2.678C66.093 588.081 62.315 571.68 59 555l-.483-2.357C54.024 530.636 51.296 507.456 51 485l-.03-2.064c-.292-20.722-.395-41.323 2.03-61.936l.341-3.01L56 397l.288-2.052c1.747-12.307 4.259-24.284 7.337-36.323l.661-2.61C72.762 322.617 84.25 291.154 99 260l.938-2.014C105.752 245.531 112.956 233.785 120 222l1.437-2.404c7.502-12.471 15.966-24.153 24.974-35.577l3.148-4.07c4.246-5.57 8.76-10.881 13.354-16.165 2.19-2.527 4.23-4.998 6.087-7.784h2l.727-1.723c1.532-2.74 3.384-4.545 5.648-6.715 2.397-2.336 4.618-4.554 6.688-7.187 2.227-2.73 4.696-4.851 7.375-7.129 2.084-1.827 4.11-3.685 6.125-5.586l1.901-1.791 3.788-3.602C207.78 118 207.78 118 210 118v-2c2.026-1.749 4.059-3.383 6.188-5l1.922-1.482 3.962-3.041 5.26-4.075a530.91 530.91 0 0 1 17.168-12.84l1.744-1.252A138.71 138.71 0 0 1 256 82l5.875-3.875C271.948 71.575 282.49 65.81 293 60l2.226-1.232c12.79-7.047 25.881-13.5 39.586-18.572 3.306-1.24 6.553-2.59 9.813-3.945C430.557 1.507 529.268-4.256 624.532 17.417z" fill="#fefefd"/><path d="M258.833 230.769l6.855.481 2.416.199L274 232c.625 2.313.625 2.313 1 5l-2 3-1.34 7.332C271 250 271 250 269.49 252.329c-2.275 5.605-1.978 11.078-1.994 17.073l-.03 3.969-.022 8.319-.062 8.445c-.606 19.988-.606 19.988 5.127 38.836 2.411 4.899 3.251 10.068 4.24 15.403l1.172 6.023.487 2.615L279 355l2 1-.219-1.703c-.716-6.488-.95-12.962-1.031-19.484l-.064-2.554c-.032-5.767.997-9.972 3.314-15.259h2l.563-1.75c2.348-3.675 6.13-5.464 10.203-6.852 3.215-.573 6.346-.57 9.609-.586l3.898-.043c6.453.399 11.37 2.369 15.727 7.23 8.848 13.503 6.011 29.766 5 45 2.712-2.37 3.864-4.607 5.188-7.937l1.281-3.184L338 345l3.109-7.795 2.125-5.349.997-2.512.887-2.244c.882-2.1.882-2.1 1.926-4.004 2.124-4.655 2.353-10.071 3.081-15.096l.551-3.543c1.852-11.212 1.852-11.212 1.324-22.457-1.953-2.204-1.953-2.204-4-4v-2l7 1 .25-7.125.102-2.016c.075-3.812-.238-5.691-2.383-8.891-2.524-3.807-2.226-5.867-1.719-10.344l.391-3.773L352 242l3-1 2 9v-10l2.188.438 5.16 1.008c2.675.559 5.277 1.234 7.902 1.992l2.641.746C377 245 377 245 378 247c.438 5.589-.226 9.218-3 14-2.687.938-2.687.938-5 1 .274 6.174 1.138 9.968 5 15 .694 1.319 1.375 2.646 2 4l3-6h2c.485 6.304-.776 10.824-3.125 16.68-2.325 8.823-.602 18.65.063 27.633l.264 3.783c.366 5.057.774 9.936 1.799 14.904l.621 11.504c.197 3.713.197 3.713 2.379 7.496l1-14 10 1 .375-2.437L396 339c4.989-2.495 11.285-1.565 16.395.117 2.91 1.222 5.77 2.497 8.605 3.883l-1-8-2.125-.5c-4.128-2.154-6.566-5.492-8.875-9.5v-3h2l-.25-2.625c.324-4.378 2.146-7.271 5.25-10.375 1.666-.041 3.334-.043 5 0l.813 3.438L423 316l3 1c-.554-14.027-.554-14.027-7-26l-1.883-2.242c-1.671-1.955-3.373-3.868-5.117-5.758 2.426-.866 3.571-1.174 6-.187l4 2.375c2.429.987 3.574.679 6-.187l4-21h2v15c4.106-3.079 5.123-4.691 7.25-9.187l1.578-3.293L444 264h2l-.875 4.25-.492 2.391C444 273 444 273 442.93 275.109c-1.15 1.988-1.15 1.988-.93 4.891l6-11h2c-.677 8.123-.677 8.123-4 12a65.76 65.76 0 0 0-1 4l5.859-1.562C453 283 453 283 457 283v2c-2.65 1.924-5.353 3.702-8.115 5.459-5.558 3.67-7.597 6.838-9.053 13.209l-1.02 5.52-.52 2.942C435.17 330.736 435.17 330.736 441 348l6.816 9.012c3.925 5.371 6.574 11.081 8.684 17.363 2.11 5.1 5.02 6.689 9.563 9.563 5.211 3.659 8.016 8.532 10.938 14.063v2l3.375.25c3.625.75 3.625.75 5.063 2.813L486 405h2c-1.019-6.34-2.875-9.534-7.441-14.043-3.292-4.134-2.86-9.735-3.184-14.832l-.156-2.066c-.348-5.374-.652-10.822 2.344-15.496L481 357l-3-1v-3l1.828-.805 2.422-1.07 2.391-1.055c2.323-1.014 2.323-1.014 4.316-2.168 2.538-1.121 4.717-1.285 7.48-1.465 2.818-.192 5.385-.392 8.125-1.094 4.524-.638 7.879 2.096 11.437 4.656 4.231 4.443 4.539 8.621 4.824 14.512.081 2.62.081 2.62 1.176 5.488.068 1.728.085 3.458.063 5.188l-.027 2.73L522 380l3 1c-.589 3.988-1.854 6.839-3.875 10.313A78.71 78.71 0 0 0 515 405c3.177-.944 4.706-1.597 6.688-4.312 3.306-6.77 4.455-12.695 4.438-20.25l.008-3.316c-.043-3.005-.043-3.005-.617-5.434-.613-3.194-.702-6.282-.806-9.528-.412-12.615-1.44-25.887-7.71-37.16l-2.113-1.883c-2.55-2.861-2.3-4.601-2.137-8.367l.109-3.266L513 309l1.887.535c2.078.64 2.078.64 3.926-.098 3.344-.669 6.005.522 9.188 1.563v2l1.938.375L532 314c1.383 2.767.946 5.247.833 8.272-.352 10.733 1.326 18.06 6.167 27.724 2.415 5.027 2.296 9.553 2 15.004l1.875-1.5C545 362 545 362 547 362v-2c6.434-6.63 13.928-12.654 23.43-13.195l3.445.07 3.492.055L580 347l-.176-2.414c-.414-9.734-.414-9.734 2.551-13.273C585 329 585 329 587 328c1.061-2.777 1.924-5.594 2.805-8.434C591 317 591 317 592.844 315.684c2.318-.735 4.356-1.026 6.781-1.184 4.472-.357 8.692-1.144 13.051-2.195 2.717-.356 4.699-.065 7.324.695a181.01 181.01 0 0 1 4 4l2.563.688c3.036 1.635 3.14 2.61 4.188 5.813L632 328l1 2c.083 1.448.107 2.901.098 4.352l-.01 2.578-.025 2.695-.014 2.719L633 349h-2l-.402 3.359-.535 4.391-.264 2.211c-.419 3.415-.916 6.715-1.799 10.039l7-1 1.188-3.437c1.48-4.034 3.482-7.501 5.824-11.094 1.681-4.199 1.798-8.239.264-12.463-1.012-2.078-2.115-4.069-3.276-6.068l-2.473-4.457-1.274-2.252c-1.949-3.465-3.82-6.971-5.691-10.478l-.998-1.84c-1.327-2.465-2.559-4.895-3.58-7.504-1.145-2.798-2.633-5.133-4.297-7.656-2.283-3.471-4.241-6.868-6-10.625-2.438-4.509-5.401-5.765-9.984-7.762-6.145-3.099-12.18-8.061-14.828-14.551-.791-3.446-1.139-6.298-.875-9.812l3 1 .938 3.438c.672 3.625.672 3.625 3.188 5L598 268l-1-2c-.04-2.333-.043-4.667 0-7l3-1 .125 3.813c.201 2.206.201 2.206.875 4.188 2.783 1.85 2.783 1.85 6 3l1.875 2.125c2.635 2.325 4.669 2.273 8.086 2.535 3.408.568 5.396 2.16 8.039 4.34v2l8-1c14.716 30.765 14.716 30.765 18.105 40.688.882 2.529.882 2.529 2.895 5.313l3 1 .279-1.666c1.145-5.981 3.206-10.7 6.221-15.959 5.161-9.102 6.73-16.521 6.961-27.047.539-3.328.539-3.328 2.145-5.293 3.301-1.427 5.764-1.171 9.332-.848l3.652.293c3.116.475 5.562 1.206 8.41 2.52-1.494 4.731-1.494 4.731-4 6.063l-2 .938c-.702 1.315-1.363 2.652-2 4l-2.875 4.625c-5.049 8.493-7.377 15.36-7.77 25.256-.394 9.043-1.431 17.046-7.355 24.119-.75 3.301-.43 5.182 1.141 8.172 3.093 4.852 6.436 9.142 10.859 12.828 3.112.686 3.112.686 6 1l.262-2.711c.934-8.037 2.547-14.347 6.738-21.289h2l.563-1.687c3.391-5.456 9.6-8.15 15.438-10.312 6.156-1.423 12.706-2.514 18.609.199 3.847 2.495 6.87 4.925 9.391 8.801v2h5l.664-2.492c2.107-7.418 4.499-14.385 9.336-20.508h2l.813-1.75C758 313 758 313 759.543 311.305c2.535-4.01 1.935-8.557 2.051-13.187L762 295l3-2c.543-5.863-.463-11.311-1.562-17.07-.451-3.02-.51-5.881-.437-8.93 3.175.34 4.023 1.025 6.25 3.438C771 273 771 273 771 275c2.949-.552 2.949-.552 6-2 1.723-2.78 1.723-2.78 2.75-6.062 2.089-5.857 2.089-5.857 4.25-6.937l-1 12 1.207-2.371 1.605-3.066 1.582-3.059C789 261 789 261 792 260c-.535 5.348-2.467 9.358-5 14l1 1 6-7c0 4.023-1.762 5.709-4 9-.716 1.646-1.403 3.307-2 5l3.188-1.5c3.067-1.328 5.434-1.807 8.813-1.5-1.395 4.185-3.495 4.547-7.375 6.5-5.403 2.497-5.403 2.497-9.625 6.5-.573 2.272-.573 2.272-.687 4.688l-.199 2.449L782 301l-4 1-.414 3.012c-2.941 20.534-9.24 37.082-19.586 54.988h-2l-.793 2.102c-1.333 3.201-2.906 6.205-4.52 9.273-12.114 23.829-17.465 55.241-9.062 81.125l.777 2.305c.943 3.464.796 6.627.598 10.195-2.714 1.357-4.848 1.112-7.883 1.098l-3.535-.01-3.707-.025-3.73-.014L715 466l-.125 6.813-.07 3.832c-.081 3.489-.081 3.489 2.195 6.355v3h-3c.267 11.034.561 22.032 2.375 32.938l.345 2.125c.767 4.249 2.018 8.094 3.594 12.109 4.257 11.34 3.654 25.795 1.937 37.641-.486 3.687-.486 3.687 1.75 6.875l2 2.313c-.13 3.578-.772 6.395-2.031 9.738-1.104 3.718-1.302 7.177-1.348 11.02l-.05 2.234-.091 4.707-.161 7.33-.375 17.484-.194 8.237-.006 2.262c-.178 5.189-1.789 8.149-4.872 12.137L716 657c.679 2.084.679 2.084 2 4l1.875 3.438c3.642 5.077 9.461 6.511 15.125 8.563 3.688 1.5 3.688 1.5 6 3 .875 2.688.875 2.688 1 5-6.905 5.889-12.238 7.47-21.105 7.652l-2.912.083-6.069.138-9.302.269-5.904.135-2.813.1c-6.388.079-6.388.079-8.987-2.266-.995-2.317-1.165-3.738-.97-6.237L684 677l-2-2c-.336-2.766-.336-2.766-.375-6.25l-.086-3.391c.202-3.661 1.176-6.832 2.281-10.32 2.846-9.536 3.896-19.277 5.045-29.139l1.197-9.701c1.315-10.766 2.183-21.417 2.207-32.27l.008-2.953c-.126-12.402-3.65-23.13-8.769-34.319-3.342-7.32-5.19-14.607-6.509-22.532-.94-5.533-.94-5.533-4-10.125-6.898-3.774-14.278-3.944-22-3-4.762 1.626-7.212 3.508-9.569 7.973-1.941 4.678-1.871 9.226-1.872 14.23l-.04 2.908-.081 9.139-.092 9.182-.044 5.699-.031 2.6-.013 2.284C639 567 639 567 637 570c-.28 2.676-.28 2.676-.187 5.563l.02 2.941c.007 2.495.007 2.495 1.168 4.496.788 7.851.788 7.851-1.5 11.188L635 596c-.339 3.19-.298 5.318.992 8.27 2.219 6.013 2.159 13.474.027 19.504-2.162 4.005-4.679 7.124-8.02 10.227-1.701 5.103-1.424 9.909.063 15 1.199 4.384.974 7.558-.062 12l-4 4c-.922 2.526-1.623 5.055-2.289 7.66C621 675 621 675 619 678h-2l.105 2.668.082 3.52.105 3.48c-.322 3.665-1.081 5.429-3.293 8.332-4.005 2.67-7.366 2.588-12 2-3.163-.947-6.224-2.028-9.301-3.223-2.837-.817-4-.849-6.699.223l-2.5 1.5c-5.066 3.039-10.718 3.192-16.5 2.5-2.756-1.215-4.859-2.859-7-5-.444-5.509-.05-9.357 2-14.5 1.901-4.866 3.246-9.295 2-14.5-2.25-2.75-2.25-2.75-5-5-2.341-3.59-3.009-5.435-2.937-9.75.938-3.25.938-3.25 2.996-4.453L561 645l.125-5.062.07-2.848c-.08-3.156-.08-3.156-1.182-6.309-1.052-3.926-1.327-7.311-1.424-11.369l-.06-2.19-.162-7.093-.126-4.947-.306-12.966-.322-13.253L557 553l-4-1-1.277 1.715-1.66 2.223-1.652 2.215c-2.144 2.81-2.144 2.81-5.473 3.285-5.276-.586-8.025-3.023-11.937-6.437l-1.023 3.289-1.352 4.336-.672 2.16-.664 2.129-.603 1.936c-.686 2.15-.686 2.15-1.75 4.621-1.416 5.339-1.221 10.584-1.202 16.084l-.006 3.683.011 7.701-.013 11.745.008 7.496-.012 3.53c.049 8.588.905 15.475 5.278 23.041 3.631 6.354 5.588 9.846 5 17.25-1.562 1.688-1.562 1.688-3 3 0 3.584.836 4.827 3.313 7.438L537 677c4 5.158 4 5.158 4 8.188-1.365 2.475-2.511 3.437-5 4.813-5.347 1.312-8.848.805-14-1-2.294-1.424-4.412-2.831-6.562-4.437-3.988-2.928-7.941-5.46-12.437-7.562l.125-3.125c.007-3.833-.468-7.465-1.062-11.25-1.583-10.6-2.139-21.186-2.016-31.898l.034-3.252.132-6.327c.088-5.676-.355-9.121-3.212-14.147-1.682-7.718-1.308-15.907-1.43-23.777-.178-6.631-.872-12.469-2.918-18.793-1.039-3.867-.848-7.448-.653-11.429h-2c-1.241 7.695-2.181 15.347-2.746 23.117l-.175 2.404-.681 9.806c-.856 12.62-2.247 24.927-5.586 37.173-1.692 7.287-1.348 10.855 2.188 17.375 4.337 8.212 3.809 13.841 1.313 22.625-1.657 5.055-3.836 9.545-6.359 14.211-1.034 2.483-1.127 4.067-.953 6.727V690c-4.163 3.6-8.343 3.456-13.562 3.375l-2.287.035c-4.314-.023-7.041-.293-10.15-3.41.369-6.147 1.901-8.69 6-13l-1-2c.031-1.397.099-2.793.188-4.187.082-5.08-1.46-7.598-4.187-11.812-3.114-9.143-.861-19.701 1.266-28.789 1.707-7.465 1.843-14.896 1.922-22.523l.04-2.239c.008-6.15-.584-12.183-1.219-18.292-1.097-10.796-1.363-21.498-1.32-32.344l.004-2.804c.028-11.521.314-22.926 1.621-34.383l.356-3.126c.67-4.969 1.606-8.231 4.331-12.499.174-2.179.174-2.179-1-4-2.298-1.573-2.298-1.573-5.062-2.75l-2.785-1.297L448 493c-.475-6.075.955-9.733 3.75-15.062 8.41-16.884 12.669-37.096 8.355-55.82-.925-2.452-1.958-4.765-3.105-7.117v-2h-2l-1.25-2.187c-1.644-3.058-1.644-3.058-5-5.062-2.75-2.75-2.75-2.75-2.949-4.891.361-3.255 1-6.245 2.012-9.359.53-7.067-5.7-16.061-9.812-21.5-2.074-1.295-2.074-1.295-4-2 .552 8.934 1.994 13.697 8.34 20.02 1.66 1.98 1.66 1.98 1.91 5.543-1.2 3.299-2.569 6.324-4.207 9.422-1.681 3.248-2.931 6.535-4.043 10.016l-.852 2.586c-2.64 9.399-2.349 18.563-2.156 28.254.057 3.865-.291 7.352-.992 11.16-.757 9.588-1.355 18.457 3.887 26.844 1.915 3.71 1.443 7.069 1.113 11.156l-6 1 .582 2.148c2.028 7.756 3.42 15.481 4.543 23.414l.512 3.459c2.168 14.947 2.639 29.686 2.916 44.764l.167 8.242.041 2.551.051 2.379.038 2.08c.095 1.979.095 1.979.653 3.908.578 2.383.64 4.533.659 6.985l.029 2.966.013 3.194.017 3.32.02 6.968.072 10.547c.101 21.915.101 21.915-3.312 32.076l-5 1 .469 2.063c.813 4.493.975 9.01 1.25 13.563.162 3.298.162 3.298 1.063 6.063.219 2.313.219 2.313-1.367 4.598-4.393 3.121-9.245 2.253-14.414 1.715-3.451-.712-6.788-1.532-10-3-1.927-3.854-1.506-8.318-.293-12.352l.855-2.336c1.288-3.543 1.758-5.656.438-9.312l-1.013-2.136c-1.252-3.634-1.427-7.134-1.584-10.938l-.119-2.318-.346-7.295-.357-7.327-.214-4.551c-.131-3.845-.131-3.845-1.367-7.435-.23-7.139-.23-7.139.498-9.862.89-3.789.693-7.637.69-11.513v-2.691c-.064-7.451-.762-14.608-2.187-21.934l-.441-2.312L404 563l-2-1-.519 3.485-1.935 12.848-.832 5.552-1.207 7.998-.366 2.491A68.63 68.63 0 0 1 394 607c-.574 5.356.286 9.031 2 14.125 2.63 8.53 5.126 23.622 1 31.875a101.17 101.17 0 0 1-6 2l-.078 3.359-.172 4.391-.043 2.211c-.164 3.605-.324 5.601-2.738 8.363L386 675l-.25 3.063L385 681c-5.772 3.148-11.489 3.846-18 3-3.625-1.5-3.625-1.5-6-3 .424-5.088 1.623-8.719 4.063-13.203 2.114-4.052 2.662-8.306 1.938-12.797l-3-4c-.582-2.227-.582-2.227-.812-4.625l-.27-2.352c.073-2.697.461-4.741 1.086-7.34 1.403-6.598 1.094-13.142.83-19.835l-.205-6.522-.145-4.189-.134-3.79c-.335-3.201-1.092-5.419-2.351-8.346-.468-5.9.199-8.735 3-14 1.245-6.846 1.186-13.666 1.185-20.596l.039-6.404c.028-6.951-.327-13.509-1.76-20.336-.881-5.048-.834-10.115-.84-15.226l-.074-3.209c-.024-6.381.801-11.281 3.49-17.088.915-2.041 1.487-3.96 1.959-6.141-5.733-2.397-10.805-3.584-17-4-.125-6.625-.125-6.625 1-10h2l.191-2.742a193 193 0 0 1 3.5-23.602l.472-2.237 2.448-11.185c2.46-11.145 4.036-21.211-.112-32.11-2.7-7.749-4.658-16.311-1.695-24.293 1.734-2.829 3.037-3.779 6.195-4.832 1.32-14.126 1.113-28.264 1.063-42.437l-.014-7.455L367 308c-7.67 7.314-7.674 18.488-8.062 28.438-1.133 26.758-1.133 26.758-9.937 35.563.051 3.336.198 6.663.355 9.996-.073 3.281-.952 5.53-2.34 8.488-2.69 6.265-2.584 12.538-2.482 19.24l.008 6.305c-.067 8.445-.067 8.445 3.459 15.971 2.353 6.556 3.081 14.143 2 21-2.366 4.793-5.697 7.922-10 11 .932 5.176 2.516 10.116 4.063 15.137 2.188 9.017 2.124 18.175 2.123 27.411l.039 6.16c.031 7.343-.412 14.377-1.446 21.662-1.422 10.66-1.488 21.457-1.841 32.193l-.236 6.713-.352 9.964-.853 22.436-.111 2.821c-.772 18.063-.772 18.063-5.385 25.503-.957 4.698-1.098 9.215-1 14h-2c-.334 3.332-.334 3.332 0 7l1.813 1.813c2.881 2.881 3.361 5.584 4.391 9.461.814 2.784 1.877 5.325 3.047 7.977 1.616 3.96 2.37 6.6.75 10.75-1.824 2.005-3.281 2.902-5.981 3.27-2.388.098-4.754.09-7.144.043l-2.496.01c-6.112-.055-6.112-.055-8.379-2.322-.606-2.058-1.012-4.12-1.437-6.223L317 678l-2-1c-1.717-4.465-1.528-9.398-.051-13.879 1.71-5.767 1.764-11.775 2.051-17.746l.27-3.68c.525-6.073.525-6.073-1.543-11.553-1.775-1.524-1.775-1.524-4.726-3.142-4.389-5.999-3.458-13.316-2.766-20.392.934-9.661.962-19.286.954-28.983l.002-2.672c-.001-13.421-.478-26.626-2.19-39.953h-1a304.9 304.9 0 0 0-2.625 34.313l-.117 4.772c-.302 13.066-.331 26.132-.221 39.201.048 6.985-.043 13.79-1.037 20.714l-7 1-.187 9.688-.076 2.764c-.056 5.173.183 8.214 3.264 12.549-.173 3.282-.363 5.907-2.035 8.777-1.754 4.041-1.212 8.561-1.23 12.91C294 685 294 685 291.563 687.418c-4.617 2.05-8.329 2.065-13.312 1.895l-2.613-.029c-6.297-.113-6.297-.113-8.637-1.283-.608-9.426 1.602-16.14 7.563-23.496 4.256-5.982 4.637-11.444 4.875-18.629l.193-3.477L280 634l-3.312.188C273 634 273 634 271.288 632.948c-1.951-2.951-1.656-5.893-1.581-9.308l.013-2.269.054-4.896.072-7.853.184-19.588c.316-28.558.374-56.865-5.457-84.968-1.135-6.063-1.379-11.359.929-17.127 1.905-5.528 1.894-10.734 1.825-16.533l-.006-3.347-.041-7.009-.047-10.453c-.039-11.466-.242-22.924-.656-34.383l-.103-3.115c-.256-6.315-1.092-11.896-2.803-17.983-.823-3.818-.853-7.544-.922-11.43-.195-7.725-1.911-14.572-4.187-21.937-4.102-13.271-5.732-25.705-6.222-39.557-.152-4.199-.5-8.072-1.34-12.193-.732-13.79.922-26.547 4.188-39.937 1.264-5.715 2.271-11.269-.531-16.637l-3.32-5.02c-2.032-3.66-1.791-6.31-1.336-10.406l1.813-.75c2.335-1.073 2.335-1.073 3.281-3.344C257 231 257 231 258.833 230.769z" fill="#ec1b24"/><path d="M512.602 90.739l11.371-.013c13.155-.008 26.007.358 39.027 2.273l3.896.552c14.208 2.102 28.247 4.492 41.966 8.789 2.302.71 4.614 1.371 6.931 2.026 15.36 4.39 30.46 9.722 44.906 16.574 2.238 1.03 4.491 1.892 6.801 2.746 8.504 3.345 16.486 7.953 24.5 12.313l2.021 1.096c7.672 4.19 14.906 8.777 22.03 13.822a220.11 220.11 0 0 0 7.449 5.02c10.001 6.631 19.275 14.412 28.5 22.063l3.176 2.609 3.199 2.641 2.898 2.391c2.708 2.343 5.221 4.803 7.727 7.359l2.313 2.188C773 197 773 197 773 199l1.699.711c7.649 4.286 13.662 12.646 19.301 19.289l2.805 3.211 3.008 3.477 1.457 1.657c2.628 3.065 4.493 5.8 5.731 9.655h2c1.34 1.625 1.34 1.625 2.938 4l1.887 2.781L816 247l2.52 3.594C845.78 289.483 845.78 289.483 845 299l-4 1-3-9h-2v-4h-2c-2.042-2.905-3-4.401-3-8h-2l-1-5h-2l-.77-1.645-1.043-2.168-1.02-2.145c-1.186-2.075-2.448-3.404-4.168-5.043-4-5.6-4-5.6-4-8h-2c-1.297-1.723-1.297-1.723-2.75-4.062-2.447-3.821-5.076-7.195-8.148-10.527C801 239 801 239 801 237h-2v-2h-2v-2h-2l-1.812-2.75c-1.966-3.274-1.966-3.274-4.625-5.187C786 223 786 223 783.813 219.688c-3.466-5.111-9.176-9.592-15.121-11.383L767 208v-2l-2.562-.625c-3.739-1.496-5.929-3.313-8.824-6.035-1.687-1.566-1.687-1.566-4.613-2.34-1.535-1.594-1.535-1.594-3.062-3.5-2.115-2.681-2.115-2.681-4.937-4.5-1.07-2.215-1.07-2.215-2.125-4.937l-1.07-2.715C739 179 739 179 739 177l-1.734-.348c-2.48-.714-4.329-1.725-6.516-3.09l-2.141-1.309L727 171v-2l-1.566-.711c-3.282-1.738-6.304-3.83-9.371-5.914-5.052-3.399-10.133-6.736-15.312-9.937l-3.141-1.941c-2.591-1.6-2.591-1.6-5.609-2.496v-2l-2.207-.375c-2.717-.608-4.937-1.511-7.48-2.625-5.257-2.007-9.953-2.308-15.5-2.437-7.061-.206-11.254-1.013-16.812-5.562l-5.062-3.062-2.535-1.516c-5.627-3.346-5.627-3.346-11.402-6.422v-2l-1.898-.402-2.477-.535-2.461-.527C622 120 622 120 620 119c-2.204-.23-4.414-.411-6.625-.562l-3.602-.254L607 118l1 2c2.314.731 4.648 1.401 7 2v2l1.766.406c9.735 2.587 18.573 8.62 27.234 13.594l-1 3h-2v2h-2v2h-2c-2.084 5.279-2.579 10.395-3 16h2c3 5.75 3 5.75 3 8h2l2 6h3l1 6-13.187.25-3.717.102c-8.71.092-15.938-1.31-24.096-4.352a98.74 98.74 0 0 0 2 6c1.926.752 1.926.752 4 1 3.703 3.038 4.14 6.879 5.063 11.375 1.287 7.057 1.287 7.057 3.938 13.625 3.421 1.879 6.988 2.48 10.813 3.125l2.957.508L637 213v2h2c.712 6.53-.546 9.61-4.492 14.824-1.598 2.306-2.558 4.544-3.508 7.176h-2l-1 6h-2v4h-2l-.125 2.375c-1.641 6.797-5.624 13.002-10.875 17.625h-2v2l-4.937-.937-2.777-.527C601 267 601 267 600 266c-.141-2.671-.042-5.324 0-8l-2 1c-.113 5.083-.113 5.083 1 10-2.312-.5-2.312-.5-5-2-1.009-2.039-1.682-4.042-2.324-6.223-.525-1.984-.525-1.984-2.676-2.777 2.013 10.755 5.198 16.78 14.207 22.965 2.025 1.239 2.025 1.239 5.418 2.348 4.644 2.322 5.976 5.222 8.375 9.688l3.688 6.375 1.762 3.086c1.446 2.591 1.446 2.591 3.551 4.539a81.94 81.94 0 0 1 1.672 4.305c3.031 7.826 7.367 14.981 11.547 22.238 5.938 10.666 5.938 10.666 4.781 17.457-1.207 2.688-1.207 2.688-2.812 5-2.78 4.245-4.585 8.193-6.187 13l-9 1 .934-2.051c1.226-3.39 1.681-6.562 2.129-10.137.838-6.613.838-6.613 1.938-8.812h2l-.312-9.125-.068-2.594c-.22-5.197-.983-8.682-3.619-13.281-.187-2.875-.187-2.875 0-5l-2.687-.75C623 317 623 317 620.813 314.813c-4.411-2.842-8.808-1.755-13.812-.812l-2 1c-1.621.203-3.247.365-4.875.5-3.149.263-6.078.65-9.125 1.5l-.445 2.23c-1.543 6.711-2.83 9.911-8.555 13.77-1.351 2.702-1.339 5.118-1.562 8.125l-.254 3.32L580 347l-2.492.078c-9.619.489-18.351 1.982-25.508 8.922l-1.687 2.25L549 360h-2v2c-3.462 3-3.462 3-6 3l-.262-2.457c-.885-6.975-2.337-12.729-5.52-19.008-3.189-6.634-3.471-12.162-3.344-19.41l.027-2.953L532 314l-1.937-.375L528 313l-1-2c-2.023-.468-2.023-.468-4.375-.625l-2.398-.227c-1.739-.116-3.484-.148-5.227-.148l-2-1c.14 7.858.566 12.06 6 18 5.316 11.174 6.213 22.838 6.659 35.008.156 4.126.486 7.946 1.341 11.992.574 10.43.029 21.222-6.437 29.938C519 405 519 405 515 405c.453-5.891 3.085-10.026 6-15 2.407-4.279 2.407-4.279 3-9l-2-1c-.439-2.221-.439-2.221-.711-5.137l-.336-3.189-.633-6.664c-.765-7.145-1.651-11.45-6.898-16.541-6.848-3.968-15.078-2.39-22.422-.469-2.863 1.146-5.436 2.401-8.082 3.977C481 353 481 353 478 353l1 3 2 1-.957 1.582c-3.264 7.568-2.31 17.434-1.043 25.418l.285 2.438c1.165 4.175 4.145 6.799 7 9.965 2.055 3.112 2.05 4.941 1.715 8.598h-2l-1.812-1.937c-1.984-2.286-1.984-2.286-4.605-2.328C477 400 477 400 475.156 397.418l-1.656-3.23c-3.017-5.842-6.195-8.666-11.625-12.25-4.608-3.105-6.121-5.045-7.625-10.437-2.468-7.81-6.493-14.509-11.937-20.625-7.294-9.068-7.314-18.695-6.312-29.875.473-3.938 1.075-7.842 1.75-11.75l.475-2.813c1.561-8.181 4.487-12.948 11.4-17.812l2.914-2.086C455 285 455 285 457 285v-2l-2.625 1c-3.332.987-5.927 1.164-9.375 1 .75-5.75.75-5.75 3-8 .673-1.967.673-1.967 1.125-4.125L450 269h-2l-.812 2.125c-3.53 8.546-3.53 8.546-6.187 9.875.649-6.005 2.858-11.401 5-17h-2l-.687 2.5c-1.564 4.17-3.511 8.016-6.312 11.5l-3 1v-15h-2l-.148 2.055c-1.406 17.5-1.406 17.5-4.852 20.945-4.156-.346-7.318-2.159-11-4h-3l1.355 1.469C424.011 295.174 426.263 302.722 426 317l-4-1-1-6c-2.33-.502-2.33-.502-5 0-3.264 3.808-4.527 7.036-5 12h-2c2.749 5.192 5.526 10.263 11 13 .594 2.649.742 5.292 1 8-2.733-.616-4.84-1.382-7.437-2.562-5.667-2.215-11.579-1.684-17.562-1.437l-1 5-10-1 .07 2.992.055 3.883.07 3.867C385 357 385 357 383 359c-1.755-4.597-2.33-8.658-2.562-13.562-.206-4.915-.206-4.915-.919-9.769-1.044-5.381-1.2-10.896-1.581-16.356l-.275-3.725c-1.408-19.855-1.408-19.855 1.275-26.713C380.663 284.156 381.615 280 382 275h-2l-2 6h-3l-2.148-5.176c-.92-2.09-.92-2.09-2.852-4.824-.195-2.262-.195-2.262-.125-4.687l.055-2.449L370 262l2.375-.625c2.825-1.158 2.825-1.158 3.938-3.937.841-4.206.858-8.166.688-12.437-3.993-.902-7.94-1.299-12.012-1.621C363 243 363 243 361 241l-4-1 1 12c-2.398-2.398-2.343-3.333-2.625-6.625l-.227-2.477L355 241l-2 1c-1.133 6.023-2.176 11.952.938 17.375L356 262c.41 5.16-.152 9.91-1 15l-7-1 2.5 2.25c4.385 5.297 2.784 12.638 2.196 19.08-.402 3.422-.879 6.825-1.383 10.233l-.451 3.459c-1.129 7.752-3.375 14-6.861 20.979-1.074 2.503-2.064 5.028-3.062 7.563l-.759 1.913-3.378 8.599-1.051 2.676-.891 2.297C334 357 334 357 332 360h-2l.063-2.456.156-9.22.132-5.873c.09-8.86-.338-18.718-5.615-26.255-1.414-1.498-1.414-1.498-3.737-3.196l-1.5-1.75c-5.113-4.261-15.35-2.71-21.5-2.25-5.925 1.442-9.404 3.082-13 8h-2c-2.605 7.876-2.224 15.806-2.125 24l.027 4.371L281 356l-3-1c-.812-2.31-.812-2.31-1.43-5.363l-.723-3.381-.723-3.568-1.43-6.863-.625-3.091c-.959-3.345-2.175-6.131-3.637-9.272-2.947-6.94-3.142-13.198-3.062-20.66l-.007-3.987.039-8.287.009-10.549.021-10.177-.015-3.788c.086-6.398.559-11.388 3.616-17.071 1.411-2.84 1.92-5.763 2.527-8.855.583-2.778 1.479-5.417 2.438-8.086h2v-2c3.87-3.985 8.17-7.275 13-10 3.239-2.157 6.307-4.307 9.063-7.062C301 211 301 211 303.938 209.125c3.383-2.347 5.515-4.908 8.063-8.125 2.125-2.375 2.125-2.375 4-4h3v-2h2v-2c14.666-13.558 33.909-15.286 53-15l-1.129-1.723c-2.332-3.806-3.808-6.524-4.184-11.027 1.594-3.947 3.054-5.174 6.723-7.184 6.509-2.68 13.537-4.315 20.59-4.066v2l-5 1v2l-6 4-1 2 3.563-1c7.089-1.735 11.968-1.169 18.438 2l.262-2.422c.757-5.918 1.728-10.984 4.301-16.391 3.289-7.206 3.329-14.393 3.438-22.187l-1.937-.437C410 124 410 124 409 123c-8.921-1.322-15.498 1.314-23 6l-5 4c-1.518.935-3.059 1.835-4.625 2.688l-2.289 1.262C372 138 372 138 369 139v2c-8.508 6.124-17.08 5.483-27.074 4.966-2.148-.058-2.148-.058-4.926 1.034v2c-1.68 1.289-1.68 1.289-3.875 2.625l-2.18 1.352C329 154 329 154 327 154v2c-1.746 1.137-3.55 2.183-5.375 3.188-5.134 2.895-9.92 6.035-14.664 9.527C305 170 305 170 303 170l-1 3c-1.645 1.035-1.645 1.035-3.812 2.063-5.52 2.875-9.852 6.731-14.488 10.828-2.417 1.889-3.715 2.741-6.699 3.109v2c-3.462 3-3.462 3-6 3v2c-5.476 5-5.476 5-8 5l-.687 1.75c-1.642 2.814-3.748 4.277-6.312 6.25l-1 2h-2v2l-5 4-1 2h-2v2l-5 4-1 2h-2l-.844 1.734c-1.139 2.232-2.356 4.374-3.656 6.516l-1.281 2.141L230 239h-2l-.75 1.625c-1.557 2.957-3.284 5.672-5.25 8.375h-2l-.853 1.777c-1.055 2.045-2.197 3.891-3.494 5.789l-1.334 1.971-2.773 4.063-1.33 1.967-1.215 1.78c-1.171 1.8-1.171 1.8-2 4.654h-2l-.875 2.188L201 281h-2l-.75 2.5c-1.439 4.03-3.286 7.707-5.25 11.5l-1.75 3.5L190 301h-2l-.437 1.75L186 309h-2l-.375 2.875C183 315 183 315 181 317v-16l-6 2c1.516-5.148 3.77-9.62 6.313-14.312l1.215-2.267L191 271h2l.37-1.774c.639-2.259 1.46-3.853 2.704-5.835l1.264-2.024 1.35-2.116 1.385-2.189c3.104-4.867 6.35-9.53 9.928-14.061l2.27-3.012c4.605-6.107 9.357-11.933 14.551-17.559 2.155-2.402 4.131-4.887 6.117-7.43 4.379-5.416 9.202-10.327 14.125-15.25l2.291-2.293c4.726-4.68 9.591-9.136 14.647-13.457l1.651-1.43c22.403-19.39 47.918-37.461 74.744-50.312 2.014-.972 4.008-1.986 5.992-3.016C364.203 120.006 382.862 112.965 402 107l2.411-.768c35.244-11.138 71.325-15.617 108.191-15.493z" fill="#fefefd"/><path d="M659 114l2.446 1.03c14.111 5.969 27.361 13.201 40.554 20.97l2.574 1.509c5.719 3.387 11.263 6.974 16.739 10.741l2.495 1.714c11.61 8.034 22.507 16.818 33.193 26.036l2.242 1.934c13.984 12.159 26.958 24.911 38.582 39.363l4.383 5.344c31.201 37.376 54.306 82.982 68.293 129.484l.773 2.566C873 360.597 873 360.597 873 364h2v9c-2-4-2-4-2-8h-2l-.559-2.621c-3.87-16.806-9.654-33.432-17.25-48.926C852 311 852 311 851.027 308.234L850 306l-3-1v-4h-2c-.424 4.659 1.129 7.79 3 12v3h2l2.5 5.688 1.406 3.199c1.043 2.97 1.324 5.005 1.094 8.113h2l2 12h2c12.852 50.664 12.852 50.664 14.641 65.328a46.19 46.19 0 0 0 1.359 6.547c4.821 18.175 4.426 37.8-.027 55.926-1.358 5.63-2.04 11.044-1.937 16.824.163 14.02-2.408 26.733-5.848 40.25l-.668 2.643c-4.263 16.713-4.263 16.713-7.674 24.466-1.313 3.131-2.187 6.379-3.13 9.637-1.572 5.232-3.635 10.236-5.82 15.238-2.088 4.997-3.969 10.079-5.895 15.141h-2l-.375 1.75c-.631 2.273-1.514 4.175-2.625 6.25h-2l-.375 2.313C838 610 838 610 836 613h-2l-1 6h-2l-.805 2.137c-1.26 3.019-2.735 5.815-4.32 8.676l-1.633 2.957L823 635h-2l-.867 1.734L815 647h-2l-.551 2.047-.762 2.703-.738 2.672c-.981 2.665-2.043 4.481-3.949 6.578h-2v2h-2l-.437 1.875C802 667 802 667 801 669h-2l-.187 1.688c-1.157 3.294-3.296 4.908-5.812 7.313l-2.937 3.5c-1.961 2.331-3.943 4.336-6.312 6.25-2.887 2.138-2.887 2.138-4.75 5.25h-2v2l-3.125 1.688A32.91 32.91 0 0 0 767 701.75c-3.62 2.715-5.58 2.692-10 2.25-1.161-5.648-.683-9.724.813-15.25 2.97-11.43 4.516-22.442 5.125-34.25l.492-8.488.131-2.209c.777-12.68 1.979-25.331 3.111-37.983l1.055-14.079c.37-3.732 1.215-7.146 2.272-10.74h2l.313-3.5c.548-4.512 1.965-8.306 3.688-12.5h2l1-8h2l.313-3.187c.445-3.731 1.299-7.242 2.25-10.875 3.419-14.602 1.252-28.929-3.562-42.937l-.875-3.312c-1.118-3.664-2.522-7.007-4.125-10.477L774 484l-1.037-1.979c-1.433-4.494-1.322-8.881-1.377-13.572l-.059-3.073-.152-9.689-.117-6.58L771 433l-1.812-.437c-1.749-.45-3.474-.991-5.187-1.562l-5.375-.062c-5.107-.384-5.107-.384-7.316-2.746-1.246-2.191-1.246-2.191-2.211-4.379-.963-1.983-.963-1.983-3.102-2.687L744 421c-4.043 4.043-4.289 9.392-4.625 14.875l-.227 3.492L739 442h-1c-2.966-26.903 1.21-59.647 18-82h2l.758-2.02c1.524-3.657 3.314-7.142 5.117-10.668 6.6-13.102 10.379-25.906 13.125-40.312l1-5 3-1-.027-1.758c.129-3.401.262-6.186 2.301-9 4.056-3.638 8.753-5.928 13.688-8.164 2.197-.908 2.197-.908 3.039-3.078l-1.863.656-2.449.844-2.426.844C791 282 791 282 788 282c.49-5.222 3.172-8.721 6-13l-7 8c-1.293-3.88-.38-4.894 1.375-8.5 1.365-2.836 2.629-5.512 3.625-8.5-4.234 3.607-6.469 8.146-9 13h-1l1-12-1.277 2.809-1.66 3.629-1.652 3.621C777 274 777 274 776 275c-2.25.5-2.25.5-5 0-1.482-1.694-2.629-3.444-3.789-5.371-1.204-1.945-1.204-1.945-4.211-2.629l.656 3.656.844 4.844.434 2.398c.879 5.104 1.479 9.923 1.066 15.102l-3 2c-.36 3.083-.36 3.083-.312 6.625-.404 8.206-3.013 11.917-8.812 17.375-5.39 5.75-7.065 13.539-8.875 21-1.84.641-1.84.641-4 1-2.562-2.25-2.562-2.25-5-5-3.288-3.574-6.539-6.649-11.52-7.359-9.725-.272-18.537 2.728-26.48 8.359l-3 4h-2l-.875 2.75C691 347 691 347 689.996 348.82c-1.255 2.745-1.623 5.322-2.059 8.305-.84 5.681-.84 5.681-1.937 7.875-2.5.5-2.5.5-6 0-6.156-4.608-12.2-11.465-13.562-19.187C667 343 667 343 668.93 340.688c5.068-6.579 5.169-15.722 5.445-23.75.549-13.697 7.136-24.449 16.625-33.937.712-1.648 1.386-3.313 2-5l-5.625-1-3.164-.562c-6.452-.955-6.452-.955-12.211 1.563-.476 3.309-.476 3.309-.5 7.125-.254 10.511-4.735 18.662-9.271 27.984-2.04 4.237-3.875 8.371-5.229 12.891-1.848-.238-1.848-.238-4-1-3.553-4.868-5.384-10.974-7.312-16.625-2.147-6.249-4.854-12.021-7.921-17.87-1.963-3.765-3.537-7.42-4.766-11.505l-8 1v-2l-2.437-.937C620 276 620 276 619 275l-3.75-.187c-3.517-.367-5.01-1.133-7.25-3.875L606 268l5 1v-2l2.625-1.875c5.474-4.316 8.22-11.659 10.375-18.125h2v-4h2l1-6h2l.313-2.23c.75-3.02 1.817-4.623 3.688-7.082 3.048-4.346 3.808-7.421 4-12.687h-2v-2l-2.23-.113c-10.106-.681-10.106-.681-13.77-3.887-3.538-4.883-4.308-10.151-5.461-15.937-1.116-5.217-1.116-5.217-4.539-9.062l-3-1c-2-3-2-3-2-6 3.366-.316 5.148.066 8.281 1.469 6.174 2.39 12.682 2.102 19.219 2.219l3.938.104L647 181l-1-6h-3c-2-3-2-3-2-6h-2c-3-5.75-3-5.75-3-8h-2c-.327-6.131-.394-10.627 3-16h2v-2h2v-2l2-1v-2c-10.904-5.969-10.904-5.969-22.168-11.211-1.985-.855-3.907-1.807-5.832-2.789v-2l-7-1-1-3c8.912-.51 15.831.333 24 4v2l2.563.688c3.453 1.318 5.792 2.89 8.711 5.082 2.426 1.729 5.044 2.947 7.727 4.23 2.734 1.59 5.368 3.245 8 5 2.743.152 5.444.223 8.188.25 9.483.27 17.216 2.92 25.813 6.75v2l2.17.3c3.234.8 5.329 2.066 8.103 3.903l3 1.973 3.102 2.074 3.078 2.027L720 164l2.286 1.529c1.609 1.103 3.169 2.278 4.714 3.471v2l2.813.813c3.044 1.134 4.085 1.884 6.188 4.188l3 1c1.168 1.961 1.168 1.961 2.188 4.375l1.043 2.398C743 186 743 186 743 189l1.75.75c2.579 1.433 4.311 3.034 6.25 5.25v2l1.75.316c2.599.789 4.134 1.931 6.25 3.621 2.574 2.046 5.011 3.681 8 5.063v2l2.156.273c8.297 2.12 14.303 8.851 18.844 15.727 1.053.931 2.137 1.829 3.25 2.688C794 229 794 229 794.875 231.313L795 233h2v2h2v2h2c1.551 1.723 1.551 1.723 3.313 4.063l1.867 2.477L808 246l1.57 2.086C813 252.731 813 252.731 813 255h2c1.289 1.68 1.289 1.68 2.625 3.875l1.352 2.18C820 263 820 263 820 265l3 1c2.075 2.921 3 4.375 3 8h2l1 5h2c3 5.75 3 5.75 3 8h2v4h2l1.25 3.438c1.288 3.682 1.288 3.682 3.859 4.285L845 299c-1.878-6.308-4.307-11.913-7.562-17.625l-1.32-2.344c-4.337-7.598-9.13-14.849-14.118-22.031l-1.973-2.871c-3.196-4.614-6.495-9.12-9.961-13.535C809 239 809 239 809 237h-2c-1.191-1.363-1.191-1.363-2.562-3.312-8.799-12.109-18.77-23.208-29.437-33.687l-2.625-2.687c-2.417-2.413-2.417-2.413-5.375-4.812-2.848-2.374-5.379-4.879-8-7.5-14.461-13.659-30.577-25.358-47.37-35.962l-4.263-2.776c-20.052-13.169-41.916-23.521-64.481-31.576l-5.722-2.17C626.612 108.413 615.892 105.08 605 102l-2.028-.586C589.899 97.677 576.453 95.797 563 94l-3.823-.553c-12.972-1.754-25.926-1.752-38.997-1.708a1826.43 1826.43 0 0 1-11.333-.013c-20.75-.014-41.243.841-61.598 5.086l-3.979.803C432.762 99.754 422.328 102.107 412 105l-2.746.769c-12.959 3.679-25.477 8.04-37.896 13.25l-7.065 2.869-4.48 1.801-1.996.791c-4.361 1.777-8.418 3.9-12.511 6.225-2.273 1.278-4.568 2.493-6.884 3.691C309.495 149.354 282.98 167.953 259 190l-2.371 2.094c-9.843 8.693-19.208 17.779-27.375 28.082-2.579 3.232-5.254 6.37-7.941 9.512-3.952 4.648-7.769 9.344-11.312 14.313l-1.598 2.215c-3.552 4.992-6.945 10.082-10.277 15.223l-1.193 1.829c-1.649 2.566-2.963 4.826-3.932 7.734h-2l-.742 2.543c-1.404 3.858-3.308 7.249-5.383 10.77-4.796 8.349-8.953 16.898-12.875 25.688l-.996 2.213C157.779 341.827 149.616 373.135 144 405h-1c-.405-7.975.776-15.229 2.5-23l.802-3.678c2.855-12.668 6.658-24.989 10.698-37.322l1.48-4.641c1.879-5.844 3.879-11.562 6.5-17.119 1.027-2.258 1.938-4.537 2.835-6.85 2.14-5.383 4.554-10.606 7.059-15.828l1.238-2.619c8.129-17.031 17.468-34.363 28.941-49.389 1.47-1.931 2.88-3.869 4.266-5.859 8.029-11.528 17.03-21.987 26.527-32.324 1.708-1.882 3.358-3.779 4.965-5.746C250.344 189.187 262.403 179.249 274 170l2.523-2.125C293.568 153.543 312.572 141.793 332 131l3.258-1.852c21.724-12.025 44.607-20.665 68.235-28.052l6.17-1.959C488.659 73.565 583.3 81.394 659 114z" fill="#e9ddb8"/><path d="M624.532 17.417l7.179 1.618C675.066 28.836 718.686 48.119 756 72l2.384 1.523 7.929 5.102 2.534 1.632C774.06 83.645 779.059 87.228 784 91l5.25 3.813L795 99l1.664 1.204 5.024 3.671 3.074 2.242L807 108v2l1.609.688c3.181 1.746 5.871 3.993 8.641 6.313l1.68 1.367c1.398 1.164 2.739 2.394 4.07 3.633v2l1.766.77c2.476 1.364 4.04 2.873 5.984 4.918 2.74 2.817 5.526 5.493 8.5 8.063 5.631 4.866 5.631 4.866 7.75 7.25v2h2c1.551 1.793 1.551 1.793 3.313 4.188 2.684 3.56 5.487 6.701 8.688 9.813 3 3.621 3 3.621 3 6l1.829.807c2.244 1.233 3.337 2.288 4.905 4.283l1.477 1.86 1.538 1.988 1.611 2.05c4.353 5.571 8.57 11.23 12.639 17.012l2.172 3.074c4.729 6.759 9.272 13.613 13.695 20.574l4.078 6.328c3.225 4.956 6.084 9.906 8.641 15.234 1.338 2.638 2.802 5.17 4.309 7.715 10.325 17.622 18.052 36.825 25.293 55.887l1.386 3.645c2.163 5.8 4.095 11.495 5.426 17.542h2l1.563 6.75.879 3.797c.515 3.184.445 4.498-.441 7.453l-.927-2.892C949.596 319.974 942.739 300.287 934 281l-1.142-2.567C926.778 264.8 919.51 251.889 912 239l-1.314-2.269A315.01 315.01 0 0 0 894 211l-1.241-1.732C885.116 198.631 877.094 188.296 869 178l-1.319-1.687c-3.692-4.721-7.427-9.084-11.681-13.312l-3.894-4.25c-5.311-5.85-10.777-11.531-16.356-17.125l-1.966-1.98c-4.431-4.417-9.035-8.574-13.784-12.645l-3.492-3.027c-16.874-14.542-34.502-28.3-53.449-40.066l-7.461-4.75c-8.186-5.277-16.296-10.25-25.09-14.453-3.256-1.581-6.433-3.257-9.614-4.981C702.325 49.68 682.781 42.278 663 35l-3.593-1.325c-7.315-2.66-14.637-5.042-22.157-7.05l-3.281-.878c-9.453-2.465-18.97-4.568-28.531-6.56l-2.109-.445c-9.103-1.91-18.17-3.324-27.419-4.313-3.939-.432-7.858-.959-11.785-1.492-17-2.18-34.2-2.178-51.312-2.187l-3.316-.002c-58.067.057-118.295 11.063-171.504 34.936-3.025 1.331-6.078 2.488-9.18 3.629-26.994 10.302-53.451 25.248-76.675 42.374C250 93 250 93 247 93v2c-2.446 1.825-4.908 3.547-7.437 5.25-12.09 8.331-23.392 17.648-34.191 27.59l-3.988 3.536c-6.021 5.142-11.601 10.69-17.186 16.296l-4.969 4.963-3.162 3.166-1.499 1.493C171.956 159.9 171.956 159.9 170 163h-2l-.687 1.688c-1.666 2.934-3.935 4.935-6.312 7.313l-1 3c-1.637 1.696-3.308 3.359-5 5-11.288 12.62-21.138 26.596-30 41l-3.562 5.563c-14.381 22.631-26.897 46.771-36.293 71.91l-.78 2.085C70.49 337.929 60.271 376.286 56 416l-.312 2.829C52.691 447.231 53.049 476.524 55 505l.147 2.184c3.698 49.759 17.316 104.164 39.831 148.755 1.045 2.107 2.044 4.23 3.03 6.365 7.964 17.232 17.203 33.414 27.49 49.359l4.428 6.961c4.971 7.834 10.121 15.242 16.074 22.375l3.25 4.25c4.582 5.917 9.506 11.546 14.406 17.199l3.25 3.77C178.141 779.215 189.915 791.85 203 803l3.477 3.035c7.046 6.156 14.117 12.243 21.523 17.965l2.609 2.027C239.813 833.057 249.4 839.528 259 846l2.406 1.63c3.809 2.565 7.587 5.043 11.656 7.182 3.901 2.081 7.761 4.216 11.599 6.408C301.605 870.873 319.273 878.9 337 887v-2h-2v-4c5.75.875 5.75.875 8 2v-2h-3v-2l6-2v-2l2.188.438L351 876l5 1v-2l-3-1c-4.666-2.45-4.666-2.45-6.18-4.945-2.605-2.94-5.781-3.594-9.445-4.617-2.533-.713-4.907-1.498-7.375-2.437l-1-3 2.293-.027c3.07-.764 3.07-.764 4.508-4.289a153.57 153.57 0 0 0 1.512-4.246l.799-2.096c1.775-4.948 2.231-9.092 1.889-14.342l-1-1v10h-3l-2 2-1-6h-2l.125 2.75c-.12 3.128-.516 4.636-2.125 7.25h-3v4h-4l1-8c-1.755 2.685-2.006 3.92-1.75 7.188L322 855l2 1v2c-7.63-1.272-14.446-3.819-21-8l-1-3h6c5.4-10.496 10.33-21.16 15-32l1.254-2.883c.87-2.469.643-3.694-.254-6.117h-3v-2h-2v-3h2v-2h2v-2h2v4h2v-6h4c-.152-1.907-.152-1.907-1-4-2.032-1.682-2.032-1.682-4.637-3.102l-2.92-1.721-3.131-1.803C310.19 778.982 301.471 773.359 293 767l-2.164-1.594L285 761l-3.02-2.27c-6.136-4.637-11.985-9.42-17.641-14.645-2.264-2.018-4.597-3.837-7.027-5.648-3.71-2.823-6.652-5.897-9.633-9.469-1.645-1.928-3.368-3.697-5.18-5.469-2.998-2.951-5.764-6.039-8.504-9.23-1.456-1.655-2.948-3.279-4.461-4.883-7.537-7.991-14.088-16.502-20.535-25.387l-2.699-3.676c-7.831-10.734-14.645-21.99-21.086-33.604-1.97-3.547-4.011-6.998-6.215-10.407-5.002-8.225-8.335-17.439-12-26.312l-1.664-3.957c-4.006-9.716-7.31-19.642-10.544-29.637l-1.524-4.466c-2.677-7.59-4.437-15.425-6.267-23.252l-.539-2.297c-6.191-26.53-8.832-52.971-8.722-80.225l-.013-9.494c-.008-10.408.282-20.736 1.164-31.109l.235-2.778c.568-6.023 1.578-11.877 2.875-17.785h1c.128 6.771-.255 13.336-.984 20.063-1.113 11.26-1.322 22.442-1.276 33.751l-.013 9.554c-.013 17.661 1.005 35.218 4.086 52.633l.514 2.983c8.386 47.39 24.858 94.114 51.131 134.615C201 665.671 201 665.671 201 668h2c1.236 1.681 2.386 3.424 3.5 5.188 9.365 14.377 20.492 27.528 32.137 40.105C240 715 240 715 240 717l1.688.75c4.35 2.351 7.504 5.393 10.688 9.125 2.736 3.205 5.575 5.961 8.852 8.605C263 737 263 737 265.395 739.41c9.951 9.891 21.852 18.069 33.363 26.031 2.491 1.732 4.942 3.514 7.379 5.32C309 772.665 312.008 774.31 315 776l5.152 2.953C361.067 802.316 404.316 819.243 451 827l2.752.487c60.09 10.465 122.695 4.588 180.248-15.112l2.095-.715c7.209-2.474 14.163-5.08 20.905-8.66a117.08 117.08 0 0 1 4.313-1.687C685.387 791.748 708.098 778.249 729 763l1.968-1.419C752.366 746.108 772.84 728.108 790 708l1.3-1.511c6.673-7.671 6.673-7.671 12.763-15.801L806 688h2l.699-2.094c1.579-3.527 3.769-6.37 6.113-9.406C845.52 635.617 863.944 588.007 877 539h1c-.451 7.531-1.999 14.358-4.187 21.563l-.942 3.166c-2.286 7.586-4.784 15.079-7.511 22.517a240.29 240.29 0 0 0-2.793 8.184c-1.509 4.56-3.383 8.893-5.379 13.258l-2.137 4.73-1.056 2.341-2.639 6.167c-2.565 6.192-5.294 11.928-8.867 17.598-1.608 2.676-2.952 5.411-4.301 8.227-2.99 6.124-6.584 11.738-10.332 17.414-1.807 2.643-1.807 2.643-2.855 4.836h-2l-.754 2.129c-6.904 15.907-21.388 30.251-32.722 43.123l-6.124 7.209c-1.415 1.555-2.888 2.848-4.525 4.164-2.879 2.208-2.879 2.208-4.75 4.75-2.352 2.905-4.922 5.161-7.762 7.578-3.772 3.267-7.397 6.698-11.043 10.105C753 750 753 750 751 750v2c-2.067 1.793-4.14 3.468-6.312 5.125l-1.94 1.498c-11.212 8.621-22.814 16.573-34.67 24.276l-2.453 1.602-2.086 1.344c-1.694 1.093-1.694 1.093-2.539 3.156h-2v2h-3v2h5v2l3 1 3 1v2h-2c4.993 10.225 10.295 20.155 16 30l3.438 6.125 1.434 2.57c1.037 2.118 1.667 4.001 2.129 6.305l6-1v3l-2.937 1.375c-3.133 1.283-3.133 1.283-4.062 3.625h-3l-1 4-3.312.438c-3.619.445-3.619.445-6.687 1.563-.372 1.323-.706 2.657-1 4l-2 1 1 3v4l6.438.563 3.621.316L724 870l1-1 3.156-.344c4.182-.714 6.721-1.982 10.344-4.156l1.813-1.077 3.781-2.272 5.621-3.331C764.067 849.388 777.72 840.029 791 830l2.218-1.674c8.668-6.572 17.109-13.244 25.009-20.729a182.57 182.57 0 0 1 6.324-5.637c5.356-4.663 10.341-9.703 15.349-14.731l4.989-4.982c5.579-5.575 11.037-11.203 16.111-17.248l2.52-2.949c8.945-10.683 17.377-21.713 25.48-33.051l1.734-2.414c3.485-4.907 6.814-9.905 10.078-14.961l1.168-1.804c1.84-2.872 3.579-5.726 5.02-8.821h2l.746-2.582c1.356-3.697 3.212-6.809 5.316-10.105 4.545-7.338 8.221-14.958 11.828-22.789 1.714-3.719 3.569-7.34 5.484-10.961C956.903 605.676 968.034 550.905 974 497h1c.26 8.561-.706 16.95-1.687 25.438l-.268 2.338c-1.646 14.23-4.006 28.222-7.045 42.224l-.662 3.108-1.963 9.017-.588 2.675-.576 2.52-.491 2.165c-.823 2.875-1.872 5.623-2.938 8.416-1.215 3.263-2.259 6.576-3.305 9.896l-1.406 4.406-2.158 6.805C949.006 625.2 945.931 634.183 942 643l-1.232 2.77L937 654l-1.292 2.802c-9.82 21.155-20.605 41.87-33.708 61.198l-1.283 1.914c-6.24 9.301-12.772 18.3-19.717 27.086l-2.016 2.57c-5.497 6.949-11.227 13.697-16.984 20.43l-1.977 2.324c-4.958 5.762-10.34 11.053-15.773 16.363-2.271 2.242-2.271 2.242-4.062 4.688-2.357 2.828-4.894 5.066-7.691 7.445-1.985 1.733-3.916 3.493-5.836 5.297l-1.766 1.656-3.501 3.315C817.221 815 817.221 815 815 815v2c-1.66 1.523-1.66 1.523-4.062 3.375l-2.754 2.145-1.536 1.19-5.3 4.24C794.401 833.577 787.402 838.978 780 844l-4.937 3.5c-10.031 7.009-20.53 13.283-31.062 19.5l-1.778 1.052C733.016 873.474 723.607 878.339 714 883l-3.469 1.707c-34.387 16.535-72.177 29.651-109.844 35.98l-2.279.393L593 922l6.938.063 3.902.035c3.023.268 3.023.268 4.16-1.098 2.671-.141 5.324-.042 8 0v1l255 1v37h90v35h85v50h-4v2h-7v-2L4 1044c-1.127-12.397-1.127-12.397-1.133-16.973l-.004-3.037.012-3.053-.012-3.064.004-3.033.003-2.676c.18-4.4.691-8.782 1.129-13.164h87l-1-10-.125-9.687-.012-2.432.004-2.393.003-2.108c.171-3.145.684-6.262 1.129-9.38h86v5H92l1 5a124.65 124.65 0 0 1 .133 5.711l.004 3.273-.012 3.391.012 3.367-.004 3.281-.003 2.966c-.144 3.355-.655 6.686-1.129 10.01H5v32h1028v-32l-78-1c-1.446-5.062-2.267-8.289-2.449-13.301l-.131-3.459-.107-3.553-.143-3.611c-.305-8.806-.305-8.806.83-11.076h-86l-1-10h-2c-1.532-3.065-1.146-6.266-1.125-9.625l.006-2.187c.039-4.804.328-9.442 1.119-14.187h2v-2H178l1 10c.063 2.886.098 5.742.063 8.625l-.014 2.176L179 957h-2v-31l278-1-30-5c-51.868-11.149-102.622-29.163-148-57l-2.911-1.775C262.094 853.892 250.222 846.48 239 838l-2.146-1.619-13.074-10.001-4.777-3.638L217 821v-2l-2.187-.75c-5.212-2.316-8.872-6.218-12.812-10.25l-4.062-4.125-1.973-2.008c-1.933-1.921-1.933-1.921-4.211-3.484L190 797v-2l-1.73-.742c-6.501-3.603-11.527-10.429-16.32-16.027-1.976-2.261-4.009-4.463-6.053-6.662-4.207-4.526-8.232-9.065-11.775-14.143-1.081-1.584-1.081-1.584-3.121-2.426l-3-5c-1.162-1.5-2.351-2.978-3.562-4.437-8.192-10.128-15.476-20.876-22.394-31.904l-2.927-4.584c-10.698-16.898-19.768-34.814-28.139-52.958l-2.458-5.233C81.874 636.732 76.675 621.901 72 607l-.844-2.678C66.093 588.081 62.315 571.68 59 555l-.483-2.357C54.024 530.636 51.296 507.456 51 485l-.03-2.064c-.292-20.722-.395-41.323 2.03-61.936l.341-3.01L56 397l.288-2.052c1.747-12.307 4.259-24.284 7.337-36.323l.661-2.61C72.762 322.617 84.25 291.154 99 260l.938-2.014C105.752 245.531 112.956 233.785 120 222l1.437-2.404c7.502-12.471 15.966-24.153 24.974-35.577l3.148-4.07c4.246-5.57 8.76-10.881 13.354-16.165 2.19-2.527 4.23-4.998 6.087-7.784h2l.727-1.723c1.532-2.74 3.384-4.545 5.648-6.715 2.397-2.336 4.618-4.554 6.688-7.187 2.227-2.73 4.696-4.851 7.375-7.129 2.084-1.827 4.11-3.685 6.125-5.586l1.901-1.791 3.788-3.602C207.78 118 207.78 118 210 118v-2c2.026-1.749 4.059-3.383 6.188-5l1.922-1.482 3.962-3.041 5.26-4.075a530.91 530.91 0 0 1 17.168-12.84l1.744-1.252A138.71 138.71 0 0 1 256 82l5.875-3.875C271.948 71.575 282.49 65.81 293 60l2.226-1.232c12.79-7.047 25.881-13.5 39.586-18.572 3.306-1.24 6.553-2.59 9.813-3.945C430.557 1.507 529.268-4.256 624.532 17.417z" fill="#fafbfa"/><path d="M589 258l3 1 .938 3.438c.672 3.625.672 3.625 3.188 5L598 268l-1-2v-7l3-1 .125 3.813c.201 2.206.201 2.206.875 4.188 2.783 1.85 2.783 1.85 6 3l1.875 2.125c2.635 2.325 4.669 2.273 8.086 2.535 3.408.568 5.396 2.16 8.039 4.34v2l8-1c14.716 30.765 14.716 30.765 18.105 40.688.882 2.529.882 2.529 2.895 5.313l3 1 .279-1.666c1.145-5.981 3.206-10.7 6.221-15.959 5.161-9.102 6.73-16.521 6.961-27.047.539-3.328.539-3.328 2.145-5.293 3.301-1.427 5.764-1.171 9.332-.848l3.652.293c3.116.475 5.562 1.206 8.41 2.52-1.494 4.731-1.494 4.731-4 6.063l-2 .938c-.702 1.315-1.363 2.652-2 4l-2.875 4.625c-5.049 8.493-7.377 15.36-7.77 25.256-.394 9.043-1.431 17.046-7.355 24.119-.75 3.301-.43 5.182 1.141 8.172 3.093 4.852 6.436 9.142 10.859 12.828 3.112.686 3.112.686 6 1l.262-2.711c.934-8.037 2.547-14.347 6.738-21.289h2l.563-1.687c3.391-5.456 9.6-8.15 15.438-10.312 6.156-1.423 12.706-2.514 18.609.199 3.847 2.495 6.87 4.925 9.391 8.801v2h5l.664-2.492c2.107-7.418 4.499-14.385 9.336-20.508h2l.813-1.75C758 313 758 313 759.543 311.305c2.535-4.01 1.935-8.557 2.051-13.187L762 295l3-2c.543-5.863-.463-11.311-1.562-17.07-.451-3.02-.51-5.881-.437-8.93 3.175.34 4.023 1.025 6.25 3.438C771 273 771 273 771 275c2.949-.552 2.949-.552 6-2 1.723-2.78 1.723-2.78 2.75-6.062 2.089-5.857 2.089-5.857 4.25-6.937l-1 12 1.207-2.371 1.605-3.066 1.582-3.059C789 261 789 261 792 260c-.535 5.348-2.467 9.358-5 14l1 1 6-7c0 4.023-1.762 5.709-4 9-.716 1.646-1.403 3.307-2 5l3.188-1.5c3.067-1.328 5.434-1.807 8.813-1.5-1.395 4.185-3.495 4.547-7.375 6.5-5.403 2.497-5.403 2.497-9.625 6.5-.573 2.272-.573 2.272-.687 4.688l-.199 2.449L782 301l-4 1-.414 3.012c-2.941 20.534-9.24 37.082-19.586 54.988h-2l-.793 2.102c-1.333 3.201-2.906 6.205-4.52 9.273-12.114 23.829-17.465 55.241-9.062 81.125l.777 2.305c.943 3.464.796 6.627.598 10.195-2.714 1.357-4.848 1.112-7.883 1.098l-3.535-.01-3.707-.025-3.73-.014L715 466l-.125 6.813-.07 3.832c-.081 3.489-.081 3.489 2.195 6.355v3h-3c.267 11.034.561 22.032 2.375 32.938l.345 2.125c.767 4.249 2.018 8.094 3.594 12.109 4.257 11.34 3.654 25.795 1.937 37.641-.486 3.687-.486 3.687 1.75 6.875l2 2.313c-.13 3.578-.772 6.395-2.031 9.738-1.104 3.718-1.302 7.177-1.348 11.02l-.05 2.234-.091 4.707-.161 7.33-.375 17.484-.194 8.237-.006 2.262c-.178 5.189-1.789 8.149-4.872 12.137L716 657c.679 2.084.679 2.084 2 4l1.875 3.438c3.642 5.077 9.461 6.511 15.125 8.563 3.688 1.5 3.688 1.5 6 3 .875 2.688.875 2.688 1 5-6.905 5.889-12.238 7.47-21.105 7.652l-2.912.083-6.069.138-9.302.269-5.904.135-2.813.1c-6.388.079-6.388.079-8.987-2.266-.995-2.317-1.165-3.738-.97-6.237L684 677l-2-2c-.336-2.766-.336-2.766-.375-6.25l-.086-3.391c.202-3.661 1.176-6.832 2.281-10.32 2.846-9.536 3.896-19.277 5.045-29.139l1.197-9.701c1.315-10.766 2.183-21.417 2.207-32.27l.008-2.953c-.126-12.402-3.65-23.13-8.769-34.319-3.342-7.32-5.19-14.607-6.509-22.532-.94-5.533-.94-5.533-4-10.125-6.898-3.774-14.278-3.944-22-3-4.762 1.626-7.212 3.508-9.569 7.973-1.941 4.678-1.871 9.226-1.872 14.23l-.04 2.908-.081 9.139-.092 9.182-.044 5.699-.031 2.6-.013 2.284C639 567 639 567 637 570c-.28 2.676-.28 2.676-.187 5.563l.02 2.941c.007 2.495.007 2.495 1.168 4.496.788 7.851.788 7.851-1.5 11.188L635 596c-.339 3.19-.298 5.318.992 8.27 2.219 6.013 2.159 13.474.027 19.504-2.162 4.005-4.679 7.124-8.02 10.227-1.701 5.103-1.424 9.909.063 15 1.199 4.384.974 7.558-.062 12l-4 4c-.922 2.526-1.623 5.055-2.289 7.66C621 675 621 675 619 678h-2l.105 2.668.082 3.52.105 3.48c-.322 3.665-1.081 5.429-3.293 8.332-4.005 2.67-7.366 2.588-12 2-3.163-.947-6.224-2.028-9.301-3.223-2.837-.817-4-.849-6.699.223l-2.5 1.5c-5.066 3.039-10.718 3.192-16.5 2.5-2.756-1.215-4.859-2.859-7-5-.444-5.509-.05-9.357 2-14.5 1.901-4.866 3.246-9.295 2-14.5-2.25-2.75-2.25-2.75-5-5-2.341-3.59-3.009-5.435-2.937-9.75.938-3.25.938-3.25 2.996-4.453L561 645l.125-5.062.07-2.848c-.08-3.156-.08-3.156-1.182-6.309-1.052-3.926-1.327-7.311-1.424-11.369l-.06-2.19-.162-7.093-.126-4.947-.306-12.966-.322-13.253L557 553l-4-1-1.277 1.715-1.66 2.223-1.652 2.215C547 560 547 560 546 561c-3.588.271-6.169.405-9.437-1.187C535 558 535 558 534.75 555.313L535 553h-2v-4h2v-6h-2v2c-4 0-4 0-6.25-2l-1.75-2v8h2l-2 5-2-2v-3l-2-1v-7h2v-2h2v-6l2-1-1.094-3.367c-2.544-8.07-4.586-15.074-3.906-23.633l2.082-.621 2.73-.816 2.707-.809c1.835-.558 3.661-1.147 5.48-1.754l-.437-3.137c-3.311-25.859-3.378-51.453 6.012-75.967 1.912-5.029 2.971-9.528 3.426-14.896h4v-2l-1.812.563C544 406 544 406 541 405v-8l-6 2v-2h-2v-2h-2v2h-6l.125 2.313C525 402 525 402 523 405l-4-1 1.398-1.262c1.69-1.835 2.39-3.219 3.227-5.551l.727-1.957c1.431-4.924 1.786-9.683 1.773-14.793l.008-3.316c-.043-3.005-.043-3.005-.617-5.434-.613-3.194-.702-6.282-.806-9.528-.412-12.615-1.44-25.887-7.71-37.16l-2.113-1.883c-2.55-2.861-2.3-4.601-2.137-8.367l.109-3.266L513 309l1.887.535c2.078.64 2.078.64 3.926-.098 3.344-.669 6.005.522 9.188 1.563v2l1.938.375L532 314c1.383 2.767.946 5.247.833 8.272-.352 10.733 1.326 18.06 6.167 27.724 2.415 5.027 2.296 9.553 2 15.004l1.875-1.5C545 362 545 362 547 362v-2c6.434-6.63 13.928-12.654 23.43-13.195l3.445.07 3.492.055L580 347l-.176-2.414c-.414-9.734-.414-9.734 2.551-13.273C585 329 585 329 587 328c1.061-2.777 1.924-5.594 2.805-8.434C591 317 591 317 592.844 315.684c2.318-.735 4.356-1.026 6.781-1.184 4.472-.357 8.692-1.144 13.051-2.195 2.717-.356 4.699-.065 7.324.695a181.01 181.01 0 0 1 4 4l2.563.688c3.036 1.635 3.14 2.61 4.188 5.813L632 328l1 2c.083 1.448.107 2.901.098 4.352l-.01 2.578-.025 2.695-.014 2.719L633 349h-2l-.402 3.359-.535 4.391-.264 2.211c-.419 3.415-.916 6.715-1.799 10.039l7-1 1.188-3.437c1.48-4.034 3.482-7.501 5.824-11.094 1.681-4.199 1.798-8.239.264-12.463-1.012-2.078-2.115-4.069-3.276-6.068l-2.473-4.457-1.274-2.252c-1.949-3.465-3.82-6.971-5.691-10.478l-.998-1.84c-1.327-2.465-2.559-4.895-3.58-7.504-1.145-2.798-2.633-5.133-4.297-7.656-2.283-3.471-4.241-6.868-6-10.625-2.438-4.509-5.401-5.765-9.984-7.762-6.145-3.099-12.18-8.061-14.828-14.551-.791-3.446-1.139-6.298-.875-9.812z" fill="#ec1b24"/><path d="M403.5 121.688l2.781-.051c3.386.452 5.138 1.099 7.719 3.363 2.19 10.118-.639 19.16-4.531 28.402-1.712 4.193-2.675 8.154-3.469 12.598-4.75-.875-4.75-.875-7-2-5.116-.205-9.949.291-15 1 1.098-2.993 1.677-3.846 4.625-5.25L391 159v-2l5-1v-2l-8.562 1.75-2.424.477c-5.35 1.135-9.496 2.645-14.014 5.773-1.224 3.414-1.637 5.551-.148 8.938.996 1.72 2.069 3.394 3.148 5.063v2l-2.348.196c-25.289 1.576-25.289 1.576-46.98 13.448C323 193 323 193 321 193v2h-2v2l-3 1c-1.586 1.635-1.586 1.635-3.062 3.563-1.535 1.941-1.535 1.941-2.937 3.438h-2l-.625 1.75c-1.891 3.095-4.275 4.442-7.375 6.25h-2l-1 3c-1.453 1.281-1.453 1.281-3.25 2.5l-1.906 1.305c-1.508.977-3.047 1.906-4.594 2.82-2.279 1.272-2.279 1.272-3.937 3.063L282 227h-2l-1 3h-2v2c-4.541 1.514-9.141.574-13.84.053-2.526-.257-2.526-.257-6.16-.053-1.904 1.816-1.904 1.816-3 4l-3 1c-.613 5.52-.126 8.237 3 12.875 4.79 7.515 3.417 13.51 1.605 21.854l-1.632 6.904c-1.675 7.199-2.135 14.177-2.098 21.555l-.012 2.365A56.13 56.13 0 0 0 253 314c.224 3.309.32 6.623.438 9.938.579 12.919 2.301 24.44 6.125 36.813 2.527 8.177 4.076 15.619 4.227 24.171.078 4.294.549 8.011 1.711 12.142 1.569 6.048 1.872 11.92 2.078 18.152l.119 3.305c.386 11.504.523 23.007.543 34.516l.072 10.554.016 6.816.037 3.135c-.017 5.679-.686 10.243-2.688 15.56-2.84 7.958.179 17.766 1.724 25.747 4.477 24.705 3.852 49.743 3.735 74.74l-.04 14.725L271 633h-2l.176-3.734c.326-9.971.243-18.474-5.176-27.266l-3-3v-2l-3-1-1-2-3-1.375c-3-1.625-3-1.625-3.875-3.812L250 587h-3c-1.379-1.629-2.713-3.297-4-5l-2-1v-2h-2c-2.125-1.875-2.125-1.875-4-4v-2h-3l-1-6h-2l-.777-2.027c-2.922-7.33-6.356-14.202-10.187-21.095-1.979-3.617-3.546-6.713-4.035-10.877h-2c-1.765-3.088-2-4.233-2-8h-2l-1-6h-2c-1.953-11.622-3.298-23.076-3.312-34.875l-.016-3.002c.054-5.703.705-10.652 2.328-16.123h2l.375-3.187c.536-3.272 1.264-5.818 2.625-8.812h2l.313-2.375c.712-3.752 1.774-7.246 2.969-10.867 1.795-6.887 1.901-13.81 1.906-20.883l.037-2.629c.011-4.826-.345-8.714-2.225-13.246h-3c-1.834 5.967-3.539 11.931-5 18h-3l-.734-3.148c-1.693-7.099-3.481-13.84-6.402-20.551-.937-2.496-1.379-4.859-1.801-7.488-.75-4.303-2.183-6.969-4.898-10.352-1.354-1.7-2.195-3.523-3.164-5.461l-1.387-1.293c-1.967-2.081-3.042-4.202-4.301-6.77l-1.324-2.66C178 361 178 361 178 359h-2c-1.257-2.906-2-4.796-2-8h-2c-1.597-3.193-1.379-6.525-1-10a100.68 100.68 0 0 1 3-6c.795-2.65 1.394-5.298 2-8h2v-4h2l.313-2.5c.804-4.093 2.151-7.625 3.688-11.5h2l.438-2.312C187 304 187 304 188 301l2-1 2.004-4.68c2.096-4.882 4.593-9.584 6.996-14.32h2l.313-2.187c.755-3.09 1.843-5.23 3.688-7.812h2l.362-1.777c.662-2.304 1.509-3.817 2.853-5.789l1.33-1.971 1.393-2.025 1.381-2.037 2.552-3.746L220 249h2l.75-2.187c1.373-3.089 2.974-5.323 5.25-7.812h2l.688-2.062c1.625-3.636 3.641-6.966 6.313-9.937h2l.75-1.875c1.456-2.476 2.628-3.076 5.25-4.125v-2h2l.75-1.875c1.456-2.476 2.628-3.076 5.25-4.125v-2h2l.688-1.75c1.66-2.846 3.704-4.248 6.313-6.25l2.563-2.625c2.14-2.085 3.708-3.263 6.438-4.375v-2c3.462-3 3.462-3 6-3v-2c1.652-1.262 1.652-1.262 3.938-2.687a113.42 113.42 0 0 0 9.688-6.937c2.644-2.099 5.222-3.95 8.188-5.562 3.14-1.599 3.14-1.599 5.063-3.687 5.817-5.817 13.898-10.272 21.125-14.125h2v-2c1.68-1.289 1.68-1.289 3.875-2.625l2.18-1.352C335 149 335 149 337 149v-2c3.141-2.094 3.645-2.228 7.168-2.055l2.459.074 5.063.234c5.431.146 9.003-.621 13.71-3.383C367 141 367 141 369 141v-2c1.723-1.367 1.723-1.367 4.063-2.875l2.5-1.613c3.103-1.924 6.257-3.719 9.438-5.512l6.008-3.852c4.177-2.408 7.662-3.441 12.492-3.461z" fill="#e9ddb9"/><path d="M624.532 17.417l7.179 1.618C675.066 28.836 718.686 48.119 756 72l2.384 1.523 7.929 5.102 2.534 1.632C774.06 83.645 779.059 87.228 784 91l5.25 3.813L795 99l1.664 1.204 5.024 3.671 3.074 2.242L807 108v2l1.609.688c3.181 1.746 5.871 3.993 8.641 6.313l1.68 1.367c1.398 1.164 2.739 2.394 4.07 3.633v2l1.766.77c2.476 1.364 4.04 2.873 5.984 4.918 2.74 2.817 5.526 5.493 8.5 8.063 5.631 4.866 5.631 4.866 7.75 7.25v2h2c1.551 1.793 1.551 1.793 3.313 4.188 2.684 3.56 5.487 6.701 8.688 9.813 3 3.621 3 3.621 3 6l1.829.807c2.244 1.233 3.337 2.288 4.905 4.283l1.477 1.86 1.538 1.988 1.611 2.05c4.353 5.571 8.57 11.23 12.639 17.012l2.172 3.074c4.729 6.759 9.272 13.613 13.695 20.574l4.078 6.328c3.225 4.956 6.084 9.906 8.641 15.234 1.338 2.638 2.802 5.17 4.309 7.715 10.325 17.622 18.052 36.825 25.293 55.887l1.386 3.645c2.163 5.8 4.095 11.495 5.426 17.542h2l1.563 6.75.879 3.797c.515 3.184.445 4.498-.441 7.453l-.927-2.892C949.596 319.974 942.739 300.287 934 281l-1.142-2.567C926.778 264.8 919.51 251.889 912 239l-1.314-2.269A315.01 315.01 0 0 0 894 211l-1.241-1.732C885.116 198.631 877.094 188.296 869 178l-1.319-1.687c-3.692-4.721-7.427-9.084-11.681-13.312l-3.894-4.25c-5.311-5.85-10.777-11.531-16.356-17.125l-1.966-1.98c-4.431-4.417-9.035-8.574-13.784-12.645l-3.492-3.027c-16.874-14.542-34.502-28.3-53.449-40.066l-7.461-4.75c-8.186-5.277-16.296-10.25-25.09-14.453-3.256-1.581-6.433-3.257-9.614-4.981C702.325 49.68 682.781 42.278 663 35l-3.593-1.325c-7.315-2.66-14.637-5.042-22.157-7.05l-3.281-.878c-9.453-2.465-18.97-4.568-28.531-6.56l-2.109-.445c-9.103-1.91-18.17-3.324-27.419-4.313-3.939-.432-7.858-.959-11.785-1.492-17-2.18-34.2-2.178-51.312-2.187l-3.316-.002c-58.067.057-118.295 11.063-171.504 34.936-3.025 1.331-6.078 2.488-9.18 3.629-26.994 10.302-53.451 25.248-76.675 42.374C250 93 250 93 247 93v2c-2.446 1.825-4.908 3.547-7.437 5.25-12.09 8.331-23.392 17.648-34.191 27.59l-3.988 3.536c-6.021 5.142-11.601 10.69-17.186 16.296l-4.969 4.963-3.162 3.166-1.499 1.493C171.956 159.9 171.956 159.9 170 163h-2l-.687 1.688c-1.666 2.934-3.935 4.935-6.312 7.313l-1 3c-1.637 1.696-3.308 3.359-5 5-11.288 12.62-21.138 26.596-30 41l-3.562 5.563c-14.381 22.631-26.897 46.771-36.293 71.91l-.78 2.085C70.49 337.929 60.271 376.286 56 416l-.312 2.829C52.691 447.231 53.049 476.524 55 505l.147 2.184c3.698 49.759 17.316 104.164 39.831 148.755 1.045 2.107 2.044 4.23 3.03 6.365 7.964 17.232 17.203 33.414 27.49 49.359l4.428 6.961c4.971 7.834 10.121 15.242 16.074 22.375l3.25 4.25c4.582 5.917 9.506 11.546 14.406 17.199l3.25 3.77C178.141 779.215 189.915 791.85 203 803l3.477 3.035c7.046 6.156 14.117 12.243 21.523 17.965l2.609 2.027C239.813 833.057 249.4 839.528 259 846l2.406 1.63c3.809 2.565 7.587 5.043 11.656 7.182 3.901 2.081 7.761 4.216 11.599 6.408C341.123 893.388 405.992 915.144 471 920l3.069.257c14.06 1.045 28.151 1.034 42.244 1.056l2.051.004c21.824.032 43.061-.899 64.637-4.316l7.57-1.062c38.329-5.595 77.089-17.362 112.18-33.687l3.412-1.58c7.912-3.696 15.671-7.607 23.342-11.779 2.951-1.596 5.918-3.11 8.934-4.578 17.843-8.816 34.881-20.523 50.547-32.746l6.578-5.04c7.865-6.006 15.478-12.121 22.664-18.93a182.57 182.57 0 0 1 6.324-5.637c5.356-4.663 10.341-9.703 15.349-14.731l4.989-4.982c5.579-5.575 11.037-11.203 16.111-17.248l2.52-2.949c8.945-10.683 17.377-21.713 25.48-33.051l1.734-2.414c3.485-4.907 6.814-9.905 10.078-14.961l1.168-1.804c1.84-2.872 3.579-5.726 5.02-8.821h2l.746-2.582c1.356-3.697 3.212-6.809 5.316-10.105 4.545-7.338 8.221-14.958 11.828-22.789 1.714-3.719 3.569-7.34 5.484-10.961C956.903 605.676 968.034 550.905 974 497h1c.26 8.561-.706 16.95-1.687 25.438l-.268 2.338c-1.646 14.23-4.006 28.222-7.045 42.224l-.662 3.108-1.963 9.017-.588 2.675-.576 2.52-.491 2.165c-.823 2.875-1.872 5.623-2.938 8.416-1.215 3.263-2.259 6.576-3.305 9.896l-1.406 4.406-2.158 6.805C949.006 625.2 945.931 634.183 942 643l-1.232 2.77L937 654l-1.292 2.802c-9.82 21.155-20.605 41.87-33.708 61.198l-1.283 1.914c-6.24 9.301-12.772 18.3-19.717 27.086l-2.016 2.57c-5.497 6.949-11.227 13.697-16.984 20.43l-1.977 2.324c-4.958 5.762-10.34 11.053-15.773 16.363-2.271 2.242-2.271 2.242-4.062 4.688-2.357 2.828-4.894 5.066-7.691 7.445-1.985 1.733-3.916 3.493-5.836 5.297l-1.766 1.656-3.501 3.315C817.221 815 817.221 815 815 815v2c-1.66 1.523-1.66 1.523-4.062 3.375l-2.754 2.145-1.536 1.19-5.3 4.24C794.401 833.577 787.402 838.978 780 844l-4.937 3.5c-10.031 7.009-20.53 13.283-31.062 19.5l-1.778 1.052C733.016 873.474 723.607 878.339 714 883l-3.469 1.707c-34.387 16.535-72.177 29.651-109.844 35.98l-2.279.393L593 922l6.938.063 3.902.035c3.023.268 3.023.268 4.16-1.098 2.671-.141 5.324-.042 8 0v1l255 1v37h90v35h85v50h-4v2h-7v-2L4 1044c-1.127-12.397-1.127-12.397-1.133-16.973l-.004-3.037.012-3.053-.012-3.064.004-3.033.003-2.676c.18-4.4.691-8.782 1.129-13.164h87l-1-10-.125-9.687-.012-2.432.004-2.393.003-2.108c.171-3.145.684-6.262 1.129-9.38h86v5H92l1 5a124.65 124.65 0 0 1 .133 5.711l.004 3.273-.012 3.391.012 3.367-.004 3.281-.003 2.966c-.144 3.355-.655 6.686-1.129 10.01H5v32h1028v-32l-78-1c-1.446-5.062-2.267-8.289-2.449-13.301l-.131-3.459-.107-3.553-.143-3.611c-.305-8.806-.305-8.806.83-11.076h-86l-1-10h-2c-1.532-3.065-1.146-6.266-1.125-9.625l.006-2.187c.039-4.804.328-9.442 1.119-14.187h2v-2H178l1 10c.063 2.886.098 5.742.063 8.625l-.014 2.176L179 957h-2v-31l278-1-30-5c-51.868-11.149-102.622-29.163-148-57l-2.911-1.775C262.094 853.892 250.222 846.48 239 838l-2.146-1.619-13.074-10.001-4.777-3.638L217 821v-2l-2.187-.75c-5.212-2.316-8.872-6.218-12.812-10.25l-4.062-4.125-1.973-2.008c-1.933-1.921-1.933-1.921-4.211-3.484L190 797v-2l-1.73-.742c-6.501-3.603-11.527-10.429-16.32-16.027-1.976-2.261-4.009-4.463-6.053-6.662-4.207-4.526-8.232-9.065-11.775-14.143-1.081-1.584-1.081-1.584-3.121-2.426l-3-5c-1.162-1.5-2.351-2.978-3.562-4.437-8.192-10.128-15.476-20.876-22.394-31.904l-2.927-4.584c-10.698-16.898-19.768-34.814-28.139-52.958l-2.458-5.233C81.874 636.732 76.675 621.901 72 607l-.844-2.678C66.093 588.081 62.315 571.68 59 555l-.483-2.357C54.024 530.636 51.296 507.456 51 485l-.03-2.064c-.292-20.722-.395-41.323 2.03-61.936l.341-3.01L56 397l.288-2.052c1.747-12.307 4.259-24.284 7.337-36.323l.661-2.61C72.762 322.617 84.25 291.154 99 260l.938-2.014C105.752 245.531 112.956 233.785 120 222l1.437-2.404c7.502-12.471 15.966-24.153 24.974-35.577l3.148-4.07c4.246-5.57 8.76-10.881 13.354-16.165 2.19-2.527 4.23-4.998 6.087-7.784h2l.727-1.723c1.532-2.74 3.384-4.545 5.648-6.715 2.397-2.336 4.618-4.554 6.688-7.187 2.227-2.73 4.696-4.851 7.375-7.129 2.084-1.827 4.11-3.685 6.125-5.586l1.901-1.791 3.788-3.602C207.78 118 207.78 118 210 118v-2c2.026-1.749 4.059-3.383 6.188-5l1.922-1.482 3.962-3.041 5.26-4.075a530.91 530.91 0 0 1 17.168-12.84l1.744-1.252A138.71 138.71 0 0 1 256 82l5.875-3.875C271.948 71.575 282.49 65.81 293 60l2.226-1.232c12.79-7.047 25.881-13.5 39.586-18.572 3.306-1.24 6.553-2.59 9.813-3.945C430.557 1.507 529.268-4.256 624.532 17.417z" fill="#e12028"/><path d="M607 118c8.912-.51 15.831.333 24 4v2l2.563.688c3.453 1.318 5.792 2.89 8.711 5.082 2.426 1.729 5.044 2.947 7.727 4.23 2.734 1.59 5.368 3.245 8 5 2.743.152 5.444.223 8.188.25 9.483.27 17.216 2.92 25.813 6.75v2l2.17.3c3.234.8 5.329 2.066 8.103 3.903l3 1.973 3.102 2.074 3.078 2.027L720 164l2.286 1.529c1.609 1.103 3.169 2.278 4.714 3.471v2l2.813.813c3.044 1.134 4.085 1.884 6.188 4.188l3 1c1.168 1.961 1.168 1.961 2.188 4.375l1.043 2.398C743 186 743 186 743 189l1.75.75c2.579 1.433 4.311 3.034 6.25 5.25v2l1.75.316c2.599.789 4.134 1.931 6.25 3.621 2.574 2.046 5.011 3.681 8 5.063v2l2.156.273c8.297 2.12 14.303 8.851 18.844 15.727 1.053.931 2.137 1.829 3.25 2.688C794 229 794 229 794.875 231.313L795 233h2v2h2v2h2c1.551 1.723 1.551 1.723 3.313 4.063l1.867 2.477L808 246l1.57 2.086C813 252.731 813 252.731 813 255h2c1.727 2.555 1.727 2.555 3.625 5.875l1.914 3.305C822 267 822 267 822 269h-6l-1-4h-4l-1 4h-3v2h-2v2h2v2l-1.863.586-2.449.789-2.426.773c-2.489.84-2.489.84-5.262 2.852-2.696 1.517-3.828 2-7 2 .49-5.222 3.172-8.721 6-13l-7 8c-1.293-3.88-.38-4.894 1.375-8.5 1.365-2.836 2.629-5.512 3.625-8.5-4.234 3.607-6.469 8.146-9 13h-1l1-12-1.277 2.809-1.66 3.629-1.652 3.621C777 274 777 274 776 275c-2.25.5-2.25.5-5 0-1.482-1.694-2.629-3.444-3.789-5.371-1.204-1.945-1.204-1.945-4.211-2.629l.656 3.656.844 4.844.434 2.398c.879 5.104 1.479 9.923 1.066 15.102l-3 2c-.36 3.083-.36 3.083-.312 6.625-.404 8.206-3.013 11.917-8.812 17.375-5.39 5.75-7.065 13.539-8.875 21-1.84.641-1.84.641-4 1-2.562-2.25-2.562-2.25-5-5-3.288-3.574-6.539-6.649-11.52-7.359-9.725-.272-18.537 2.728-26.48 8.359l-3 4h-2l-.875 2.75C691 347 691 347 689.996 348.82c-1.255 2.745-1.623 5.322-2.059 8.305-.84 5.681-.84 5.681-1.937 7.875-2.5.5-2.5.5-6 0-6.156-4.608-12.2-11.465-13.562-19.187C667 343 667 343 668.93 340.688c5.068-6.579 5.169-15.722 5.445-23.75.549-13.697 7.136-24.449 16.625-33.937.712-1.648 1.386-3.313 2-5l-5.625-1-3.164-.562c-6.452-.955-6.452-.955-12.211 1.563-.476 3.309-.476 3.309-.5 7.125-.254 10.511-4.735 18.662-9.271 27.984-2.04 4.237-3.875 8.371-5.229 12.891-1.848-.238-1.848-.238-4-1-3.553-4.868-5.384-10.974-7.312-16.625-2.147-6.249-4.854-12.021-7.921-17.87-1.963-3.765-3.537-7.42-4.766-11.505l-8 1v-2l-2.437-.937C620 276 620 276 619 275l-3.75-.187c-3.517-.367-5.01-1.133-7.25-3.875L606 268l5 1v-2l2.625-1.875c5.474-4.316 8.22-11.659 10.375-18.125h2v-4h2l1-6h2l.313-2.23c.75-3.02 1.817-4.623 3.688-7.082 3.048-4.346 3.808-7.421 4-12.687h-2v-2l-2.23-.113c-10.106-.681-10.106-.681-13.77-3.887-3.538-4.883-4.308-10.151-5.461-15.937-1.116-5.217-1.116-5.217-4.539-9.062l-3-1c-2-3-2-3-2-6 3.366-.316 5.148.066 8.281 1.469 6.174 2.39 12.682 2.102 19.219 2.219l3.938.104L647 181l-1-6h-3c-2-3-2-3-2-6h-2c-3-5.75-3-5.75-3-8h-2c-.327-6.131-.394-10.627 3-16h2v-2h2v-2l2-1v-2c-10.904-5.969-10.904-5.969-22.168-11.211-1.985-.855-3.907-1.807-5.832-2.789v-2l-7-1-1-3z" fill="#e9ddb8"/><path d="M495.898-.203l3.97-.017 8.305-.02 8.306-.041C541.205-.482 565.59.967 590 5.25l3.691.636C663.85 18.352 730.357 46.056 788 88l2.207 1.602c11.996 8.748 23.31 18.127 34.281 28.132l4.159 3.668c5.888 5.033 11.363 10.456 16.825 15.94l4.771 4.765c5.462 5.458 10.774 10.988 15.756 16.893l2.738 3.168c6.333 7.429 12.427 15.004 18.262 22.832l1.476 1.971C915.79 223.609 937.351 264.098 953 307l1.198 3.269c15.874 43.906 25.843 91.888 26.005 138.63l.017 3.97.02 8.305.041 8.306c.201 24.726-1.248 49.111-5.531 73.521l-.636 3.691C961.648 616.85 933.944 683.357 892 741l-1.602 2.207c-8.748 11.996-18.127 23.31-28.132 34.281l-3.668 4.159c-5.033 5.888-10.456 11.363-15.94 16.825l-4.765 4.771C832.435 808.706 826.904 814.018 821 819l-3.168 2.738C810.403 828.072 802.828 834.165 795 840l-1.971 1.476c-48.354 36.049-103.328 61.979-161.529 77.587l-3.307.907c-6.182 1.594-11.741 2.307-18.129 2.036L608 922l-1 1c-1.489.087-2.981.107-4.473.098l-2.725-.01-2.865-.025-2.877-.014L587 923v-1l1.905-.32 8.782-1.493 2.994-.502C635.944 913.637 670.568 902.012 703 887l2.824-1.25c19.536-8.67 38.298-19.045 56.176-30.75l5.5-3.437c5.681-3.622 11.098-7.54 16.5-11.562l3.793-2.789c7.299-5.394 14.417-10.899 21.222-16.909C812.796 817 812.796 817 815 817v-2c1.576-1.391 3.214-2.712 4.875-4 5.791-4.627 10.963-9.679 16.125-15l5-5 2.391-2.398 5.844-5.766c7.081-6.949 13.624-14.031 19.766-21.836l3.227-3.957 1.732-2.118 3.35-4.093c5.164-6.342 10.098-12.789 14.566-19.645 2.534-3.852 5.15-7.579 7.938-11.25C914.449 699.948 925.817 676.516 936 654l1.348-2.852c6.75-14.368 11.786-29.279 16.544-44.402 3.061-9.727 3.061-9.727 4.659-13.637 2.38-6.179 3.513-12.774 4.887-19.234l.463-2.157L967 557l.663-3.172c5.312-25.837 6.869-51.752 6.712-78.078l-.009-3.999c.958-31.739.958-31.739-4.366-62.751l-.494-5.19c-1.611-18.162-5.757-36.247-10.698-53.775-1.036-3.889-1.762-7.796-2.414-11.766-.357-2.249-.357-2.249-.941-4.336-.696-2.969-.511-5.899-.453-8.934h-2l-.959-2.604C943.693 299.776 935.176 277.406 924 256l-1.078-2.076C912.294 233.47 912.294 233.47 900 214l-3.75-5.687c-14.624-22.042-14.624-22.042-31.914-41.977-1.463-1.463-2.555-2.996-3.711-4.711-2.87-4.094-6.314-7.385-9.937-10.812C849 149 849 149 849 147h-2l-3.461-4.234c-2.229-2.557-4.789-4.652-7.367-6.848-2.324-2.053-4.496-4.209-6.672-6.418-6.333-6.398-13.115-12.064-20.203-17.605C807 110 807 110 805.086 108.063c-2.561-2.532-5.349-4.7-8.211-6.875l-1.74-1.329c-4.184-3.179-8.435-6.247-12.764-9.225l-4.648-3.266c-6.444-4.61-13.119-8.798-19.855-12.961-3.097-1.916-6.141-3.899-9.18-5.906-7.929-5.04-16.309-9.267-24.687-13.5l-2.886-1.459C705.425 45.669 689.487 39.001 673 33l-3.158-1.175c-24.669-9.163-49.791-15.146-75.655-19.7l-2.489-.441C566.569 7.275 541.49 5.783 516 5.813h-2.678C462.583 5.885 413.169 14.139 365 30l-3.307 1.088c-10.115 3.358-20.12 6.744-29.681 11.49-2.548 1.203-5.083 2.26-7.703 3.289-17.386 6.882-33.632 15.903-49.626 25.523l-7.42 4.395-4.074 2.402-1.812 1.061c-2.129 1.271-4.087 2.456-5.824 4.24-1.988 1.938-4.285 3.117-6.7 4.454-10.188 5.824-19.329 13.736-28.355 21.175l-1.817 1.495-4.519 3.771C212 116 212 116 210 116v2c-1.617 1.433-3.296 2.796-5 4.125-4.476 3.564-8.53 7.27-12.441 11.441C191 135 191 135 189 135l-1 3h-2l-1 3h-2l-.715 1.711c-1.578 2.81-3.526 4.685-5.848 6.914-3.128 2.886-3.128 2.886-5.437 6.375h-2l-.825 1.79c-1.146 2.156-2.349 3.747-3.968 5.565l-1.648 1.87-1.746 1.962c-19.014 21.688-34.729 45.72-49.028 70.707l-3.753 6.45c-4.837 8.252-9.023 16.668-12.907 25.406l-.905 2.024c-15.587 34.925-28.424 72.1-34.521 109.976l-1.77 10.007c-1.89 10.221-3.124 20.463-4.117 30.806l-.263 2.71c-1.831 19.278-2.051 38.445-1.593 57.792l.096 5.077c1.048 59.732 16.622 125.92 44.749 178.589l4.271 8.27c5.93 11.585 11.998 22.983 18.93 34l1.719 2.785c12.467 20.672 12.467 20.672 28.063 38.883C151 752 151 752 151 755l3 1c1.396 1.55 2.719 3.166 4 4.813 4.601 5.761 9.495 11.199 14.519 16.593l4.672 5.067 3.184 3.465 1.478 1.611c4.497 4.88 9.146 9.52 14.085 13.952l2.613 2.348c1.991 1.749 4.006 3.434 6.074 5.09L207 811v2l1.625.75c3.917 2.062 7.425 4.274 10.523 7.457 3.619 3.545 7.53 6.58 11.539 9.668l2.279 1.777c41.136 31.859 89.205 56.326 138.658 72.223l2.02.65c30.584 9.807 61.392 16.3 93.355 19.475v1H177v31h2l-1 12H93v-1h84v-5H91v36H4v45h1036v1h-5v2h7v-2h4v3H0v-53h87v-35h86v-37l235-1-30-8-15.25-4.812-3.712-1.254C314.635 892.73 272.511 870.129 235 842l-1.854-1.391c-10.501-7.912-20.685-16.131-30.345-25.055l-4.489-3.997c-5.874-5.021-11.336-10.429-16.785-15.9l-4.771-4.765C171.294 785.435 165.982 779.904 161 774l-2.738-3.168C151.928 763.403 145.835 755.828 140 748l-1.476-1.971C111.21 709.391 89.649 668.902 74 626l-1.198-3.269c-15.874-43.906-25.843-91.888-26.005-138.63l-.017-3.97-.02-8.305-.041-8.306c-.201-24.726 1.248-49.111 5.531-73.521l.636-3.691C65.352 316.15 93.056 249.643 135 192l1.602-2.207c8.748-11.996 18.127-23.31 28.132-34.281l3.668-4.159c5.033-5.888 10.456-11.363 15.94-16.825l4.765-4.771c5.458-5.462 10.988-10.774 16.893-15.756l3.168-2.738C216.597 104.928 224.172 98.835 232 93l1.971-1.476C270.609 64.21 311.098 42.649 354 27l3.269-1.198C401.174 9.928 449.157-.041 495.898-.203z" fill="#faf6f4"/><path d="M142 405h1c.128 6.771-.255 13.336-.984 20.063-1.113 11.26-1.322 22.442-1.276 33.751l-.013 9.554c-.013 17.661 1.005 35.218 4.086 52.633l.514 2.983c8.386 47.39 24.858 94.114 51.131 134.615C201 665.671 201 665.671 201 668h2c1.236 1.681 2.386 3.424 3.5 5.188 9.365 14.377 20.492 27.528 32.137 40.105C240 715 240 715 240 717l1.688.75c4.35 2.351 7.504 5.393 10.688 9.125 2.736 3.205 5.575 5.961 8.852 8.605C263 737 263 737 265.395 739.41c9.951 9.891 21.852 18.069 33.363 26.031 2.491 1.732 4.942 3.514 7.379 5.32C309 772.665 312.008 774.31 315 776l5.152 2.953C361.067 802.316 404.316 819.243 451 827l2.752.487c60.09 10.465 122.695 4.588 180.248-15.112l2.095-.715c7.209-2.474 14.163-5.08 20.905-8.66a117.08 117.08 0 0 1 4.313-1.687C685.387 791.748 708.098 778.249 729 763l1.968-1.419C752.366 746.108 772.84 728.108 790 708l1.3-1.511c6.673-7.671 6.673-7.671 12.763-15.801L806 688h2l.699-2.094c1.579-3.527 3.769-6.37 6.113-9.406C845.52 635.617 863.944 588.007 877 539h1c-.451 7.531-1.999 14.358-4.187 21.563l-.942 3.166c-2.286 7.586-4.784 15.079-7.511 22.517a240.29 240.29 0 0 0-2.793 8.184c-1.509 4.56-3.383 8.893-5.379 13.258l-2.137 4.73-1.056 2.341-2.639 6.167c-2.565 6.192-5.294 11.928-8.867 17.598-1.608 2.676-2.952 5.411-4.301 8.227-2.99 6.124-6.584 11.738-10.332 17.414-1.807 2.643-1.807 2.643-2.855 4.836h-2l-.754 2.129c-6.904 15.907-21.388 30.251-32.722 43.123l-6.124 7.209c-1.415 1.555-2.888 2.848-4.525 4.164-2.879 2.208-2.879 2.208-4.75 4.75-2.352 2.905-4.922 5.161-7.762 7.578-3.772 3.267-7.397 6.698-11.043 10.105C753 750 753 750 751 750v2c-2.067 1.793-4.14 3.468-6.312 5.125l-1.94 1.498c-11.212 8.621-22.814 16.573-34.67 24.276l-2.453 1.602-2.086 1.344c-1.694 1.093-1.694 1.093-2.539 3.156h-2v2h-3v2h5v2l3 1 3 1v2h-2c4.993 10.225 10.295 20.155 16 30l3.438 6.125 1.434 2.57c1.037 2.118 1.667 4.001 2.129 6.305l6-1v3l-2.937 1.375c-3.133 1.283-3.133 1.283-4.062 3.625h-3l-1 4c-6.625 1-6.625 1-10 1l2-4-1.75 1.063c-2.25.938-2.25.938-4.234.781-2.829-1.184-3.268-2.645-4.516-5.406l-1.273-2.723L702 843c-2.508-5.76-2.508-5.76-7-10-3.894-.519-5.667-.187-9.125 1.75-5.494 4.295-5.494 4.295-8.875 10.25-.168 2.667-.168 2.667 0 5l8 1-2 4h-2v9l-4-1v2h-2v2h-4l-1.172-3.613-1.578-4.699-.766-2.381c-1.548-4.555-1.548-4.555-4.453-8.314-3.361-1.642-6.455-1.822-10.031-.992-2.931 1.72-5.47 3.739-8 6l-1-4-4.937 3.813-2.777 2.145c-2.517 1.91-2.517 1.91-3.285 5.043l4 1 2 7-3-1-1-6-3.437.563a33.45 33.45 0 0 1-8.875 0c-8.521-1.087-16.473-1.978-23.687 3.438-3.584 3.674-4.27 6.582-4.437 11.563.146 4.287.756 6.974 3.438 10.438v2h-5l-1-3-1 7h2v4h-2v-3l-5-1-4-28-4-1 1-2-2-2 1-2h2l1-9c-5.322-.296-5.322-.296-10 2l1 8-7 2v2h2v2h-9l-1-5c-4.811 1.526-4.811 1.526-8 5h-7l-1 8c-2.962-.613-4.381-1.254-7-3-7.164-.745-13.739-.73-20 3l-2.187 2.188L510 877h-4v4h-4l-1-4h-2l-.625-3.875c-.489-2.198-.489-2.198-1.375-4.125-3.921-2.139-7.591-2.367-12-2-3.276.924-3.276.924-6 2v-5l-2.012.656-2.676.844-2.637.844c-2.67.655-4.94.775-7.676.656l-1-3c-3.417-.167-3.417-.167-7 0l-2 2h-3l1-5-13 3v5l-6-1c-1.125-4.75-1.125-4.75 0-7h-2v-4h-25v2h-5l1-7-2.312-.437C397 851 397 851 394 850l1-8-2.484 1.094-3.266 1.406-3.234 1.406C383 847 383 847 379 847v3h3l-1 5h-3v4h-3v2l-4-1-.078-3.105-.172-4.082-.043-2.041c-.235-4.82-1.241-7.413-4.707-10.771-3.015-1.005-5.042-1.103-8.187-1.062l-2.73.027L353 839l1-6h-15v10h-3l-2 2-1-6h-2l.125 2.75c-.12 3.128-.516 4.636-2.125 7.25h-3v4h-4l1-8c-1.755 2.685-2.006 3.92-1.75 7.188L322 855l2 1v2c-7.63-1.272-14.446-3.819-21-8l-1-3h6c5.4-10.496 10.33-21.16 15-32l1.254-2.883c.87-2.469.643-3.694-.254-6.117h-3v-2h-2v-3h2v-2h2v-2h2v4h2v-6h4c-.152-1.907-.152-1.907-1-4-2.032-1.682-2.032-1.682-4.637-3.102l-2.92-1.721-3.131-1.803C310.19 778.982 301.471 773.359 293 767l-2.164-1.594L285 761l-3.02-2.27c-6.136-4.637-11.985-9.42-17.641-14.645-2.264-2.018-4.597-3.837-7.027-5.648-3.71-2.823-6.652-5.897-9.633-9.469-1.645-1.928-3.368-3.697-5.18-5.469-2.998-2.951-5.764-6.039-8.504-9.23-1.456-1.655-2.948-3.279-4.461-4.883-7.537-7.991-14.088-16.502-20.535-25.387l-2.699-3.676c-7.831-10.734-14.645-21.99-21.086-33.604-1.97-3.547-4.011-6.998-6.215-10.407-5.002-8.225-8.335-17.439-12-26.312l-1.664-3.957c-4.006-9.716-7.31-19.642-10.544-29.637l-1.524-4.466c-2.677-7.59-4.437-15.425-6.267-23.252l-.539-2.297c-6.191-26.53-8.832-52.971-8.722-80.225l-.013-9.494c-.008-10.408.282-20.736 1.164-31.109l.235-2.778c.568-6.023 1.578-11.877 2.875-17.785zm231 446l-1 6h3v-2h2v-4h-4z" fill="#fcfcfc"/><path d="M365 308h2c.837 11.33 1.13 22.658 1.177 34.017l.031 4.401c.066 7.636-.082 15.22-.907 22.816l-.382 3.585c-1.127 3.9-2.92 5.519-5.919 8.181-3.245 6.49-1.385 15.481.791 22.117.675 1.912 1.395 3.808 2.116 5.704 3.125 10.108.499 20.567-1.728 30.592l-2.421 11.244-.472 2.205C357.581 460.863 356.21 468.91 355 477h-2l-1 10 4-.187c5.001.008 8.52.948 13 3.188.844 1.984.844 1.984 1 4l-2 2c-3.358 6.907-3.426 13.838-3.312 21.375l-.01 3.211c.034 5.031.295 9.759 1.33 14.688 1.328 6.592 1.257 13.152 1.198 19.844l-.02 6.43c-.058 16.333-.058 16.333-2.748 21.391-1.922 4.096-1.796 6.55-1.437 11.063l.989 2.3c1.258 3.361 1.369 6.251 1.495 9.837l.073 2.059.131 4.304.23 6.49c.231 6.869.146 13.288-1.473 20.018-.567 2.538-.553 4.79-.257 7.367l.23 2.398c.686 2.623 1.954 4.086 3.582 6.227.886 7.468-1.648 12.623-5.125 19.094-1.099 2.395-1.02 4.302-.875 6.906 7.238 3.86 15.501 2.222 23 0l-.25-2.75c.25-3.25.25-3.25 2.227-4.945 2.835-3.229 2.619-6.329 2.648-10.43.135-7.635.135-7.635 2.375-9.875 2.625-.125 2.625-.125 5 0-.046 11.242-3.558 21.411-7 32h-2l-2 8h-2l-1 5h-2l-1 5c-6.115.097-11.933-.23-18-1l2.211 5.113c.654 1.564 1.232 3.16 1.789 4.762l1 2.125 3 1c.212 3.112.316 5.35-1.062 8.188C367 725 367 725 363.5 726.438c-3.479 1.293-3.479 1.293-5.437 3.563-4.046 11.425 1.172 23.561 5.938 34l1 3h2c1.508 1.68 1.508 1.68 3.125 3.875l1.633 2.18C373 775 373 775 373 777h2v2h2v2h2v2l4 2v2h2v2l1.875.813C389 791 389 791 391 794c-8.168-.743-15.902-2.741-23-7l-1-3c-1.917-1.167-1.917-1.167-4-2l-2-1v-2h-2v-2l-1.625-.75c-5.234-2.755-8.726-5.628-12.375-10.25l-2-.937c-3.012-1.6-4.167-4.23-6-7.062-2.474-2.664-4.942-4.955-7.812-7.187L327 749v-2l-4-2v-2h-2c-1.159-1.765-2.226-3.591-3.25-5.437-2.682-4.756-5.514-9.279-8.684-13.723C308 722 308 722 308 719h-2l-3-7.875-.867-2.262C300 703.227 300 703.227 300 701h-2c-7.057-24.258-7.057-24.258-1-36-.216-4.257-.627-6.44-3-10-.135-2.177-.135-2.177.023-4.668l.156-2.705.195-2.814.172-2.85L295 635l7-1-.016-3.544.334-59.4.103-4.526c.174-8.023.616-15.972 1.492-23.952l.231-2.211c.614-5.126.614-5.126 2.855-7.367 3.559 13.523 3.164 27.672 3.13 41.562l.006 7.897c.003 8.904-.221 17.676-1.137 26.541-.554 7.129-.675 12.364 3.516 18.379 1.441 1.731 1.441 1.731 3.562 2.85C318 632 318 632 318.394 634.708l-.152 3.245-.148 3.566-.219 3.73-.148 3.684c-.29 6.042-.907 11.318-2.727 17.066-.238 3.048-.238 3.048-.125 5.938l.055 2.902.07 2.16 3 1c.949 2.066.949 2.066 1.688 4.563l.762 2.504L321 687l8.75.25 2.5.102c4.999.109 4.999.109 9.328-2.203 1.663-2.084 1.663-2.084 1.422-4.773-1.096-3.698-2.527-7.154-4.027-10.703-1.272-3.494-1.819-6.961-2.285-10.641-.514-2.226-.514-2.226-2.75-3.312L332 655l1-7h2l-.324-2.16c-.802-6.41-.745-10.156 2.324-15.84 3.376-7.127 3.153-15.4 3.5-23.16l.122-2.592.378-8.31.268-5.782 1.232-34.843c.194-7.515.411-14.88 1.563-22.312 1.053-8.046 1.163-16.022 1.188-24.125l.015-2.061c.073-12.157-.704-24.036-4.582-35.63-.743-2.373-1.233-4.74-1.684-7.184l1.426-1.137 1.887-1.551 1.863-1.512c2.946-2.908 4.649-5.451 5.188-9.598.025-10.704.025-10.704-3.882-20.398-2.603-4.928-1.961-10.423-1.927-15.878l-.052-6.273c-.036-7.187.55-12.977 3.623-19.524 1.313-3.195 1.122-6.039.875-9.443-.435-6.07-.435-6.07 1.867-9.336L352 367c5.246-9.275 5.866-20.349 6.164-30.797.644-22.011.644-22.011 6.836-28.203z" fill="#e9ddb8"/><path d="M609.848 920.902L616 921v1l255 1v37h90v35h85v50h-4v2h-7v-2L4 1044c-1.127-12.397-1.127-12.397-1.133-16.973l-.004-3.037.012-3.053-.012-3.064.004-3.033.003-2.676c.18-4.4.691-8.782 1.129-13.164h87l-1-10-.125-9.687-.012-2.432.004-2.393.003-2.108c.171-3.145.684-6.262 1.129-9.38h86v5H92l1 5a124.65 124.65 0 0 1 .133 5.711l.004 3.273-.012 3.391.012 3.367-.004 3.281-.003 2.966c-.144 3.355-.655 6.686-1.129 10.01H5v32h1028v-32l-78-1c-1.446-5.062-2.267-8.289-2.449-13.301l-.131-3.459-.107-3.553-.143-3.611c-.305-8.806-.305-8.806.83-11.076h-86l-1-10h-2c-1.532-3.065-1.146-6.266-1.125-9.625l.006-2.187c.039-4.804.328-9.442 1.119-14.187h2l1-7H567v-1c10.434-1.954 20.783-2.374 31.375-2.658l3.333-.096 3.015-.073c2.512-.191 2.744-1.145 5.126-1.271z" fill="#ede1de"/><path d="M262 378h1l.367 3.656.508 4.844.238 2.398.254 2.383.222 2.158c.393 2.758.393 2.758 1.412 6.15 1.327 5.192 1.451 10.354 1.608 15.691l.112 3.29c.364 11.486.499 22.973.518 34.464l.072 10.554.016 6.816.037 3.135c-.017 5.679-.686 10.243-2.688 15.56-2.84 7.958.179 17.766 1.724 25.747 4.477 24.705 3.852 49.743 3.735 74.74l-.04 14.725L271 633h-2l.176-3.734c.326-9.971.243-18.474-5.176-27.266l-3-3v-2l-3-1-1-2-3-1.375c-3-1.625-3-1.625-3.875-3.812L250 587h-3c-1.379-1.629-2.713-3.297-4-5l-2-1v-2h-2c-2.125-1.875-2.125-1.875-4-4v-2h-3l-1-6h-2l-.777-2.027c-2.922-7.33-6.356-14.202-10.187-21.095-1.979-3.617-3.546-6.713-4.035-10.877h-2c-1.765-3.088-2-4.233-2-8h-2l-1-6h-2c-1.953-11.622-3.298-23.076-3.312-34.875l-.016-3.002c.054-5.703.705-10.652 2.328-16.123h2l.375-3.187c.536-3.272 1.264-5.818 2.625-8.812h2l.313-2.375c.712-3.752 1.774-7.246 2.969-10.867 1.805-6.928 1.901-13.893 1.906-21.008l.037-2.68.006-2.586.012-2.321c-.273-2.431-1.128-4.008-2.243-6.163.375-2.25.375-2.25 1-4l2.484-.184 3.266-.254 3.234-.246c2.452-.257 4.655-.635 7.016-1.316v-2h2l.551-2.012c2.858-10.04 2.858-10.04 5.449-12.988 6.073-3.09 11.265-3.373 18-3v2h2v2h3v-5z" fill="#e9ddb8"/><path d="M256 256c.369 8.236-.283 15.6-2.246 23.613-1.534 6.892-1.914 13.544-1.879 20.574l-.012 2.365A56.13 56.13 0 0 0 253 314c.224 3.309.32 6.623.438 9.938.641 14.306 2.747 26.757 7.262 40.363 2.093 6.623 2.593 11.856 1.3 18.7h-3v-2h-2v-2l-6.75.938-3.797.527L243 381l-2.355.305c-1.829.565-1.829.565-2.586 2.551l-.621 2.332c-1.121 3.855-2.527 7.264-4.437 10.813h-2v2c-5.03 2.98-10.315 2.329-16 2.313l-3.312.049-3.187.002-2.906.009c-3.025-.434-4.398-1.278-6.594-3.372-1.092-4.94-.038-9.47 2-14 .527-2.173.973-4.357 1.426-6.547.592-2.527 1.375-4.93 2.199-7.391 1.557-5.018 1.924-9.834 1.375-15.062-1.663-1.663-3.783-1.36-6.062-1.562l-2.785-.254L195 353c1.311-4.234 2.944-8.074 5-12h2v-2h2l.813-2.937L206 333l3-1 .375-3.125c.564-3.496 1.412-6.559 2.625-9.875l-5.875 1.313-3.305.738c-3.115.728-3.115.728-4.82 3.949h-2v2h-2v4h-2l-.875 3.313C190 338 190 338 188 341h-2c.491-10.638 1.451-19.861 5-30h2l.313-2.687c.717-3.453 1.816-5.361 3.688-8.312l1.375-3.312c1.721-4.133 3.85-8.162 6.625-11.687h2v-2h2l1-5 3-1v-2h2v-2c1.68-1.289 1.68-1.289 3.875-2.625l2.18-1.352C223 268 223 268 225 268v-2c5.009-3.006 8.327-3.293 14-3 .883 3.053 1.163 5.825 1.188 9l.043 2.563c-.248 2.622-.985 4.146-2.23 6.438-.383 1.991-.726 3.991-1 6h2c1.075-2.652 2.095-5.284 3-8h2v-2h2l.875-3.312C248 270 248 270 250 267c.456-2.509.456-2.509.625-5.187l.227-2.73L251 257c3.875-1 3.875-1 5-1z" fill="#fefdfc"/><path d="M624.532 17.417l7.179 1.618C675.066 28.836 718.686 48.119 756 72l2.384 1.523 7.929 5.102 2.534 1.632C774.06 83.645 779.059 87.228 784 91l5.25 3.813L795 99l1.664 1.204 5.024 3.671 3.074 2.242L807 108v2l1.609.688c3.181 1.746 5.871 3.993 8.641 6.313l1.68 1.367c1.398 1.164 2.739 2.394 4.07 3.633v2l1.766.77c2.476 1.364 4.04 2.873 5.984 4.918 2.74 2.817 5.526 5.493 8.5 8.063 5.631 4.866 5.631 4.866 7.75 7.25v2h2c1.551 1.793 1.551 1.793 3.313 4.188 2.684 3.56 5.487 6.701 8.688 9.813 3 3.621 3 3.621 3 6l1.829.807c2.244 1.233 3.337 2.288 4.905 4.283l1.477 1.86 1.538 1.988 1.611 2.05c4.353 5.571 8.57 11.23 12.639 17.012l2.172 3.074c4.729 6.759 9.272 13.613 13.695 20.574l4.078 6.328c3.225 4.956 6.084 9.906 8.641 15.234 1.338 2.638 2.802 5.17 4.309 7.715 10.325 17.622 18.052 36.825 25.293 55.887l1.386 3.645c2.163 5.8 4.095 11.495 5.426 17.542h2l1.563 6.75.879 3.797c.515 3.184.445 4.498-.441 7.453l-.927-2.892C949.596 319.974 942.739 300.287 934 281l-1.142-2.567C926.778 264.8 919.51 251.889 912 239l-1.314-2.269A315.01 315.01 0 0 0 894 211l-1.241-1.732C885.116 198.631 877.094 188.296 869 178l-1.319-1.687c-3.692-4.721-7.427-9.084-11.681-13.312l-3.894-4.25c-5.311-5.85-10.777-11.531-16.356-17.125l-1.966-1.98c-4.431-4.417-9.035-8.574-13.784-12.645l-3.492-3.027c-16.874-14.542-34.502-28.3-53.449-40.066l-7.461-4.75c-8.186-5.277-16.296-10.25-25.09-14.453-3.256-1.581-6.433-3.257-9.614-4.981C702.325 49.68 682.781 42.278 663 35l-3.593-1.325c-7.315-2.66-14.637-5.042-22.157-7.05l-3.281-.878c-9.453-2.465-18.97-4.568-28.531-6.56l-2.109-.445c-9.103-1.91-18.17-3.324-27.419-4.313-3.939-.432-7.858-.959-11.785-1.492-17-2.18-34.2-2.178-51.312-2.187l-3.316-.002c-58.067.057-118.295 11.063-171.504 34.936-3.025 1.331-6.078 2.488-9.18 3.629-26.994 10.302-53.451 25.248-76.675 42.374C250 93 250 93 247 93v2c-2.446 1.825-4.908 3.547-7.437 5.25-12.09 8.331-23.392 17.648-34.191 27.59l-3.988 3.536c-6.021 5.142-11.601 10.69-17.186 16.296l-4.969 4.963-3.162 3.166-1.499 1.493C171.956 159.9 171.956 159.9 170 163h-2l-.687 1.688c-1.666 2.934-3.935 4.935-6.312 7.313l-1 3c-1.637 1.696-3.308 3.359-5 5-11.288 12.62-21.138 26.596-30 41l-3.562 5.563c-14.381 22.631-26.897 46.771-36.293 71.91l-.78 2.085C70.49 337.929 60.271 376.286 56 416l-.312 2.829C52.691 447.231 53.049 476.524 55 505l.147 2.184c3.698 49.759 17.316 104.164 39.831 148.755 1.045 2.107 2.044 4.23 3.03 6.365 7.964 17.232 17.203 33.414 27.49 49.359l4.428 6.961c4.971 7.834 10.121 15.242 16.074 22.375l3.25 4.25c4.582 5.917 9.506 11.546 14.406 17.199l3.25 3.77C178.141 779.215 189.915 791.85 203 803l3.477 3.035C216.972 815.205 227.654 823.89 239 832l-2 1 1 3c-3.696-1.649-6.722-3.934-9.937-6.375l-3.09-2.336L222 825l-2.879-2.164L217 821v-2l-2.187-.75c-5.212-2.316-8.872-6.218-12.812-10.25l-4.062-4.125-1.973-2.008c-1.933-1.921-1.933-1.921-4.211-3.484L190 797v-2l-1.73-.742c-6.501-3.603-11.527-10.429-16.32-16.027-1.976-2.261-4.009-4.463-6.053-6.662-4.207-4.526-8.232-9.065-11.775-14.143-1.081-1.584-1.081-1.584-3.121-2.426l-3-5c-1.162-1.5-2.351-2.978-3.562-4.437-8.192-10.128-15.476-20.876-22.394-31.904l-2.927-4.584c-10.698-16.898-19.768-34.814-28.139-52.958l-2.458-5.233C81.874 636.732 76.675 621.901 72 607l-.844-2.678C66.093 588.081 62.315 571.68 59 555l-.483-2.357C54.024 530.636 51.296 507.456 51 485l-.03-2.064c-.292-20.722-.395-41.323 2.03-61.936l.341-3.01L56 397l.288-2.052c1.747-12.307 4.259-24.284 7.337-36.323l.661-2.61C72.762 322.617 84.25 291.154 99 260l.938-2.014C105.752 245.531 112.956 233.785 120 222l1.437-2.404c7.502-12.471 15.966-24.153 24.974-35.577l3.148-4.07c4.246-5.57 8.76-10.881 13.354-16.165 2.19-2.527 4.23-4.998 6.087-7.784h2l.727-1.723c1.532-2.74 3.384-4.545 5.648-6.715 2.397-2.336 4.618-4.554 6.688-7.187 2.227-2.73 4.696-4.851 7.375-7.129 2.084-1.827 4.11-3.685 6.125-5.586l1.901-1.791 3.788-3.602C207.78 118 207.78 118 210 118v-2c2.026-1.749 4.059-3.383 6.188-5l1.922-1.482 3.962-3.041 5.26-4.075a530.91 530.91 0 0 1 17.168-12.84l1.744-1.252A138.71 138.71 0 0 1 256 82l5.875-3.875C271.948 71.575 282.49 65.81 293 60l2.226-1.232c12.79-7.047 25.881-13.5 39.586-18.572 3.306-1.24 6.553-2.59 9.813-3.945C430.557 1.507 529.268-4.256 624.532 17.417z" fill="#e12a36"/><path d="M4 1038h1038v5H4v-5z" fill="#d7252d"/><path d="M87 973h2l-.035 3.727-.027 4.898-.025 2.449c-.018 4.429.192 8.565 1.088 12.926-3.742 2.495-6.631 2.268-10.96 2.227l-2.454.001-8.035-.033-5.57-.009-14.663-.049-17.591-.045L4 999v45h1036v1h-5v2h7v-2h4v3H0v-53h87v-22z" fill="#fef8fa"/><path d="M142 405h1c.128 6.771-.255 13.336-.984 20.063-1.113 11.26-1.322 22.442-1.276 33.751l-.013 9.554c-.013 17.661 1.005 35.218 4.086 52.633l.514 2.983c8.386 47.39 24.858 94.114 51.131 134.615C201 665.671 201 665.671 201 668h2c1.236 1.681 2.386 3.424 3.5 5.188 9.365 14.377 20.492 27.528 32.137 40.105C240 715 240 715 240 717l1.688.75c4.35 2.351 7.504 5.393 10.688 9.125 2.736 3.205 5.575 5.961 8.852 8.605C263 737 263 737 265.395 739.41c9.951 9.891 21.852 18.069 33.363 26.031 2.491 1.732 4.942 3.514 7.379 5.32C309 772.665 312.008 774.31 315 776l5.152 2.953C361.067 802.316 404.316 819.243 451 827l2.752.487c60.09 10.465 122.695 4.588 180.248-15.112l2.095-.715c7.209-2.474 14.163-5.08 20.905-8.66a117.08 117.08 0 0 1 4.313-1.687C685.387 791.748 708.098 778.249 729 763l1.968-1.419C752.366 746.108 772.84 728.108 790 708l1.3-1.511c6.673-7.671 6.673-7.671 12.763-15.801L806 688h2l.699-2.094c1.579-3.527 3.769-6.37 6.113-9.406C845.52 635.617 863.944 588.007 877 539h1c-.451 7.531-1.999 14.358-4.187 21.563l-.942 3.166c-2.286 7.586-4.784 15.079-7.511 22.517a240.29 240.29 0 0 0-2.793 8.184c-1.509 4.56-3.383 8.893-5.379 13.258l-2.137 4.73-1.056 2.341-2.639 6.167c-2.565 6.192-5.294 11.928-8.867 17.598-1.608 2.676-2.952 5.411-4.301 8.227-2.99 6.124-6.584 11.738-10.332 17.414-1.807 2.643-1.807 2.643-2.855 4.836h-2l-.754 2.129c-6.904 15.907-21.388 30.251-32.722 43.123l-6.124 7.209c-1.415 1.555-2.888 2.848-4.525 4.164-2.879 2.208-2.879 2.208-4.75 4.75-2.352 2.905-4.922 5.161-7.762 7.578-3.772 3.267-7.397 6.698-11.043 10.105C753 750 753 750 751 750v2c-2.067 1.793-4.14 3.468-6.312 5.125l-1.94 1.498C728.409 769.648 713.493 779.677 698 789l-2.809 1.734c-14.289 8.641-29.774 15.09-45.186 21.43l-5.299 2.289c-15.738 6.756-32.204 11.604-48.967 14.986l-9.439 2.026c-24.762 5.276-48.881 7.041-74.176 7.098l-3.844.026c-24.045.114-47.636-2.288-71.156-7.401l-3.581-.762c-15.939-3.489-31.433-8.26-46.857-13.55l-2.765-.947c-5.538-1.948-10.869-4.187-16.192-6.661l-7.984-3.592c-23.472-10.407-46.342-23-66.746-38.676l-3.875-2.875L285 761l-3.031-2.277c-6.132-4.636-11.977-9.415-17.629-14.637-2.264-2.018-4.597-3.837-7.027-5.648-3.71-2.823-6.652-5.897-9.633-9.469-1.645-1.928-3.368-3.697-5.18-5.469-2.998-2.951-5.764-6.039-8.504-9.23-1.456-1.655-2.948-3.279-4.461-4.883-7.537-7.991-14.088-16.502-20.535-25.387l-2.699-3.676c-7.831-10.734-14.645-21.99-21.086-33.604-1.97-3.547-4.011-6.998-6.215-10.407-5.002-8.225-8.335-17.439-12-26.312l-1.664-3.957c-4.006-9.716-7.31-19.642-10.544-29.637l-1.524-4.466c-2.677-7.59-4.437-15.425-6.267-23.252l-.539-2.297c-6.191-26.53-8.832-52.971-8.722-80.225l-.013-9.494c-.008-10.408.282-20.736 1.164-31.109l.235-2.778c.568-6.023 1.578-11.877 2.875-17.785z" fill="#e32936"/><path d="M689 183c1.195 1.91 1.195 1.91 2.125 4.063 1.223 3.12 1.223 3.12 3.875 4.938v2l11 2-1-9h-2c-3-3.462-3-3.462-3-6 3.625.574 6.331 1.534 9.5 3.375l2.34 1.355L714 187l3.063 1.688L719 190v2l2.168.707c3.352 1.53 5.469 3.452 8.145 5.98 4.021 3.765 8.094 7.411 12.324 10.938C743 211 743 211 743 213l2.313.875C748 215 748 215 751 217v2h4l-1-10 2.063 2.125c5.756 5.692 11.331 9.858 18.582 13.578C777 226 777 226 779 228l2.277.855c3.264 1.372 5.56 3.202 8.285 5.457l2.816 2.301c3.914 3.564 6.778 6.86 8.371 11.949l.734 2.254C802 253 802 253 802 257c-4.827.337-6.957-.497-11-3l-5.633-1.348c-8.28-2.282-16.013-6.285-23.367-10.652l-3.062-1.812L757 239c3.344 6.173 7.314 11.629 11.684 17.113C770 258 770 258 770 260c-4.75-.875-4.75-.875-7-2v-2l-4-1v-2l-1.734-.371c-2.365-.657-4.338-1.566-6.516-2.691l-2.141-1.098L747 248v-2l-3.812-1.062c-5.962-1.971-11.158-5.21-16.187-8.937l-1-2-3-1c-1.648-2.602-2-3.862-2-7h-2l-1.437-1.937c-1.472-2.346-1.472-2.346-4.562-3.062v-2l-2.562-.812C707 217 707 217 703.832 215.453c-4.194-1.805-8.062-1.948-12.582-1.891l-2.409.01c-5.634.133-10.004 1.275-15.185 3.529-7.112 2.405-14.758 1.516-21.656-1.102l-2-1c.125-1.75.125-1.75 1-4 5.222-4 5.222-4 8-4v-2h2l-.105-1.977c-.171-5.513-.044-9.299 3.105-14.023l1.219-1.848c3.286-4.445 6.14-6.167 11.605-7.012 4.537-.293 8.311.485 12.176 2.859z" fill="#fefdfb"/><path d="M683.688 950.75l3.857-.062c14.168-.058 27.506 1.754 38.268 11.563 6.918 7.336 8.577 16.384 8.555 26.133-.607 5.977-2.882 11.193-5.367 16.617h-2l-.809 1.813c-3.483 6.396-10.493 9.977-17.191 12.188-5.417 1.17-10.7 1.128-16.211 1.098l-2.934-.004-9.23-.031-6.277-.014L659 1020v-4l3.438-.375L666 1015c1.297-2.593 1.12-4.464 1.114-7.368v-3.397l-.016-3.681-.004-3.758-.025-9.893-.02-10.095L667 957l-7-2v-3c7.903-1.069 15.718-1.218 23.688-1.25z" fill="#e91d24"/><path d="M659 114l2.446 1.03c14.111 5.969 27.361 13.201 40.554 20.97l2.574 1.509c5.719 3.387 11.263 6.974 16.739 10.741l2.495 1.714c11.61 8.034 22.507 16.818 33.193 26.036l2.242 1.934c13.984 12.159 26.958 24.911 38.582 39.363l4.383 5.344c31.201 37.376 54.306 82.982 68.293 129.484l.773 2.566C873 360.597 873 360.597 873 364h2v9c-2-4-2-4-2-8h-2l-.559-2.621c-3.834-16.649-9.553-33.095-17.039-48.461-2.147-4.467-4.013-9.052-5.91-13.629-1.325-2.921-2.796-5.671-4.417-8.436-1.139-1.963-2.224-3.949-3.302-5.947C834.34 275.897 828.495 266.353 822 257l-1.973-2.871c-3.196-4.614-6.495-9.12-9.961-13.535C809 239 809 239 809 237h-2c-1.191-1.363-1.191-1.363-2.562-3.312-8.799-12.109-18.77-23.208-29.437-33.687l-2.625-2.687c-2.417-2.413-2.417-2.413-5.375-4.812-2.848-2.374-5.379-4.879-8-7.5-14.461-13.659-30.577-25.358-47.37-35.962l-4.263-2.776c-20.052-13.169-41.916-23.521-64.481-31.576l-5.722-2.17C626.612 108.413 615.892 105.08 605 102l-2.028-.586C589.899 97.677 576.453 95.797 563 94l-3.823-.553c-12.972-1.754-25.926-1.752-38.997-1.708a1826.43 1826.43 0 0 1-11.333-.013c-20.75-.014-41.243.841-61.598 5.086l-3.979.803C432.762 99.754 422.328 102.107 412 105l-2.746.769c-12.959 3.679-25.477 8.04-37.896 13.25l-7.065 2.869-4.48 1.801-1.996.791c-4.361 1.777-8.418 3.9-12.511 6.225-2.273 1.278-4.568 2.493-6.884 3.691C309.495 149.354 282.98 167.953 259 190l-2.371 2.094c-9.843 8.693-19.208 17.779-27.375 28.082-2.579 3.232-5.254 6.37-7.941 9.512-3.952 4.648-7.769 9.344-11.312 14.313l-1.598 2.215c-3.552 4.992-6.945 10.082-10.277 15.223l-1.193 1.829c-1.649 2.566-2.963 4.826-3.932 7.734h-2l-.742 2.543c-1.404 3.858-3.308 7.249-5.383 10.77-4.796 8.349-8.953 16.898-12.875 25.688l-.996 2.213C157.779 341.827 149.616 373.135 144 405h-1c-.405-7.975.776-15.229 2.5-23l.802-3.678c2.855-12.668 6.658-24.989 10.698-37.322l1.48-4.641c1.879-5.844 3.879-11.562 6.5-17.119 1.027-2.258 1.938-4.537 2.835-6.85 2.14-5.383 4.554-10.606 7.059-15.828l1.238-2.619c8.129-17.031 17.468-34.363 28.941-49.389 1.47-1.931 2.88-3.869 4.266-5.859 8.029-11.528 17.03-21.987 26.527-32.324 1.708-1.882 3.358-3.779 4.965-5.746C250.344 189.187 262.403 179.249 274 170l2.523-2.125C293.568 153.543 312.572 141.793 332 131l3.258-1.852c21.724-12.025 44.607-20.665 68.235-28.052l6.17-1.959C488.659 73.565 583.3 81.394 659 114z" fill="#de2a35"/><path d="M434 368c6.659 1.991 8.818 7.2 12 13 2.253 4.566 3.468 7.985 2 13-.876 3.097-1.483 5.792-1 9 1.885 2.228 3.838 3.805 6.215 5.492L455 410v3h2c7.982 14.852 6.757 32.766 2.137 48.555L458 465l-.98 3.07c-1.577 4.623-3.473 8.871-5.77 13.18-2.207 4.225-2.763 7.031-2.25 11.75l1.898.805 2.477 1.07 2.461 1.055C458 497 458 497 460 499c-.297 2.224-.919 3.853-1.996 5.819-1.947 4.229-2.052 8.97-2.567 13.556l-.392 3.412C453.582 535.49 453.26 549.23 453 563h-2l-.375 2.625C450 569 450 569 448.988 571.547c-1.346 4.704-1.327 9.209-1.426 14.078-.649 20.461-.649 20.461-4.562 24.375-.089 2.594-.115 5.16-.098 7.754l.004 2.35.031 7.459.014 5.045L443 645l-4 2 .492-2.769c.751-5.294.651-10.594.641-15.93l.003-3.372-.005-7.027.006-10.763-.004-6.838.006-3.251-.01-3.025-.002-2.655c-.122-2.269-.555-4.181-1.127-6.37-.105-2.74-.162-5.459-.176-8.199l-.064-5.057-.034-2.684c-.358-25.328-2.716-50.196-7.726-75.06l6-1c-.258-5.339-.728-8.827-3.562-13.375-4.302-7.859-3.499-18.883-1.902-27.52.559-3.733.445-7.283.348-11.049-.256-10.797.44-19.818 4.116-30.056l1.309-3.695c3.139-8.476 3.139-8.476 5.691-12.305.366-3.565.028-6.012-2-9l-3-1c-4.63-4.986-4.109-10.586-4-17z" fill="#fcfcfb"/><path d="M628 109c4.94.76 9.464 2.513 14.125 4.25l2.572.952c5.416 2.029 10.705 4.222 15.932 6.704 2.263 1.044 4.535 1.919 6.871 2.781 8.504 3.345 16.486 7.953 24.5 12.313l2.021 1.096c7.672 4.19 14.906 8.777 22.03 13.822a220.11 220.11 0 0 0 7.449 5.02c10.001 6.631 19.275 14.412 28.5 22.063l3.176 2.609 3.199 2.641 2.898 2.391c2.708 2.343 5.221 4.803 7.727 7.359l2.313 2.188C773 197 773 197 773 199l1.699.711c7.649 4.286 13.662 12.646 19.301 19.289l2.805 3.211 3.008 3.477 1.457 1.657c2.628 3.065 4.493 5.8 5.731 9.655h2c1.34 1.625 1.34 1.625 2.938 4l1.887 2.781L816 247l2.52 3.594C845.78 289.483 845.78 289.483 845 299l-4 1-3-9h-2v-4h-2c-2.042-2.905-3-4.401-3-8h-2l-1-5h-2l-.77-1.645-1.043-2.168-1.02-2.145c-1.186-2.075-2.448-3.404-4.168-5.043-4-5.6-4-5.6-4-8h-2c-1.297-1.723-1.297-1.723-2.75-4.062-2.447-3.821-5.076-7.195-8.148-10.527C801 239 801 239 801 237h-2v-2h-2v-2h-2l-1.812-2.75c-1.966-3.274-1.966-3.274-4.625-5.187C786 223 786 223 783.813 219.688c-3.466-5.111-9.176-9.592-15.121-11.383L767 208v-2l-2.562-.625c-3.739-1.496-5.929-3.313-8.824-6.035-1.687-1.566-1.687-1.566-4.613-2.34-1.535-1.594-1.535-1.594-3.062-3.5-2.115-2.681-2.115-2.681-4.937-4.5-1.07-2.215-1.07-2.215-2.125-4.937l-1.07-2.715C739 179 739 179 739 177l-1.734-.348c-2.48-.714-4.329-1.725-6.516-3.09l-2.141-1.309L727 171v-2l-1.566-.711c-3.282-1.738-6.304-3.83-9.371-5.914-5.052-3.399-10.133-6.736-15.312-9.937l-3.141-1.941c-2.591-1.6-2.591-1.6-5.609-2.496v-2l-2.207-.375c-2.717-.608-4.937-1.511-7.48-2.625-5.257-2.007-9.953-2.308-15.5-2.437-7.061-.206-11.254-1.013-16.812-5.562l-5.062-3.062-2.535-1.516c-5.627-3.346-5.627-3.346-11.402-6.422v-2l-3-1h3l.313-1.812c.776-2.47 1.758-3.51 3.688-5.187l-4-1v-2h-3v-2z" fill="#faf9f6"/><path d="M544 407c5.872 1.574 10.163 3 14 8 1.836 4.503 2.271 8.391 2.344 13.234l.044 2.055.112 6.461c-.43 16.091-.43 16.091 5.125 30.688 3.025 5.096 3.467 9.759 2.375 15.563-1.732 3.921-3.981 6.981-7 10-.84 5.734.328 11.368 1.66 16.934C563 512 563 512 562 514h-3l-.297-2.414c-1.012-8.649-1.012-8.649-5.703-15.586-4.576-1.105-6.553-.847-10.602 1.523-5.316 3.967-9.599 7.954-11.398 14.477-.631 5.677.374 9.574 2.332 14.879.868 2.757.888 5.255.668 8.121h-3c-6.979-7.695-9.596-18.034-9.141-28.27L522 505l2.082-.621 2.73-.816 2.707-.809c1.835-.558 3.661-1.147 5.48-1.754l-.437-3.137c-3.311-25.859-3.378-51.453 6.012-75.967 1.912-5.029 2.971-9.528 3.426-14.896z" fill="#fcfbfb"/><path d="M402 951h31v4l-6 2-1 24h30l-1-25-7-1v-4h31l-1 4-6 1-.052 22.192-.024 10.304-.022 11.84-.016 3.747v3.458l-.007 3.055c-.041 2.418-.041 2.418 1.12 4.404a101.17 101.17 0 0 0 6 2v3h-31v-3l2.938-.875c3.169-.767 3.169-.767 4.063-3.125l.316-5.883.115-3.184.131-4.058L456 987h-30l.438 13.438.131 4.244.115 3.315.111 3.412c-.082 2.521-.082 2.521 1.205 3.592a235.65 235.65 0 0 0 7 1v4h-32v-4l2.938-.375L409 1015c1.265-2.529 1.141-4.306 1.161-7.136l.029-3.246.013-3.52.017-3.602.02-7.553.072-11.581.016-7.326.037-3.513-.009-3.256.011-2.869c-.436-2.841-1.079-3.709-3.367-5.397-2.606-.722-2.606-.722-5-1v-4z" fill="#ed1a26"/><path d="M974 497h1c.26 8.561-.706 16.95-1.687 25.438l-.268 2.338c-1.646 14.23-4.006 28.222-7.045 42.224l-.662 3.108-1.963 9.017-.588 2.675-.576 2.52-.491 2.165c-.823 2.875-1.872 5.623-2.938 8.416-1.215 3.263-2.259 6.576-3.305 9.896l-1.406 4.406-2.158 6.805C949.006 625.2 945.931 634.183 942 643l-1.232 2.77L937 654l-1.292 2.802c-9.82 21.155-20.605 41.87-33.708 61.198l-1.283 1.914c-6.24 9.301-12.772 18.3-19.717 27.086l-2.016 2.57c-5.497 6.949-11.227 13.697-16.984 20.43l-1.977 2.324c-4.958 5.762-10.34 11.053-15.773 16.363-2.271 2.242-2.271 2.242-4.062 4.688-2.357 2.828-4.894 5.066-7.691 7.445-1.985 1.733-3.916 3.493-5.836 5.297l-1.766 1.656-3.501 3.315C817.221 815 817.221 815 815 815v2c-1.66 1.523-1.66 1.523-4.062 3.375l-2.754 2.145-1.536 1.19-5.3 4.24C794.401 833.577 787.402 838.978 780 844l-4.937 3.5c-10.031 7.009-20.53 13.283-31.062 19.5l-1.778 1.052C733.016 873.474 723.607 878.339 714 883l-3.469 1.707c-35.338 16.993-73.823 29.819-112.469 36.48l-2.994.537c-4.742.825-9.234 1.513-14.068 1.275v-2h-14v2h-70v-1l1.701-.011c28.341-.202 56.242-.845 84.299-4.989l3.83-.531c39.661-5.539 79.615-17.329 115.92-34.219l3.412-1.58c7.912-3.696 15.671-7.607 23.342-11.779 2.951-1.596 5.918-3.11 8.934-4.578 17.843-8.816 34.881-20.523 50.547-32.746l6.578-5.04c7.865-6.006 15.478-12.121 22.664-18.93a182.57 182.57 0 0 1 6.324-5.637c5.356-4.663 10.341-9.703 15.349-14.731l4.989-4.982c5.579-5.575 11.037-11.203 16.111-17.248l2.52-2.949c8.945-10.683 17.377-21.713 25.48-33.051l1.734-2.414c3.485-4.907 6.814-9.905 10.078-14.961l1.168-1.804c1.84-2.872 3.579-5.726 5.02-8.821h2l.746-2.582c1.356-3.697 3.212-6.809 5.316-10.105 4.545-7.338 8.221-14.958 11.828-22.789 1.714-3.719 3.569-7.34 5.484-10.961C956.903 605.676 968.034 550.905 974 497z" fill="#e02c3a"/><path d="M91 963h86v5H92l1 5a124.65 124.65 0 0 1 .133 5.711l.004 3.273-.012 3.391.012 3.367-.004 3.281-.003 2.966c-.144 3.355-.655 6.686-1.129 10.01H5v32h1030v1H4c-.753-3.767-1.128-6.633-1.133-10.387l-.004-3.096.012-3.205-.012-3.146.004-3.115.003-2.792c.176-4.432.688-8.845 1.129-13.259h87l-1-10-.125-9.687-.012-2.432.004-2.393.003-2.108c.171-3.145.684-6.262 1.129-9.38z" fill="#feabb5"/><path d="M7 1039h1033v4h-25v-2H7v-2z" fill="#f01820"/><path d="M885 480h1l.165 13.287.062 4.513.067 6.516.048 3.951c-.391 4.29-1.507 6.865-3.341 10.732a120.72 120.72 0 0 0-1.625 7.438l-.385 2.063c-1.121 6.408-1.43 12.773-1.584 19.269-.406 3.23-.406 3.23-1.937 5.18L876 554c-1.333-2.667-.671-4.167 0-7l-.655 2.149L868 573l-.708 2.301C861.56 593.801 854.139 611.926 845 629l-1.652 3.098L839 640l-1.48 2.672L834 649h-3l-1-5-1 5h-6v-10l-4 1v3l-2-1 4-7h2l.285-1.609c.949-3.175 2.489-5.778 4.152-8.641l1.871-3.266L831 619h2l1-6h2c1.075-2.652 2.095-5.284 3-8h2c1.075-2.652 2.095-5.284 3-8h2l.188-2.375c.736-3.285 1.632-5.383 3.188-8.312 2.362-4.507 3.719-8.875 4.949-13.797.894-3.33 2.292-6.36 3.676-9.516 4.268-12.031 7.632-24.237 10.688-36.625l.971-3.91L872 513l3 2v4h2v-6h2l1 6c1.7-6.865 2.344-13.6 2.658-20.641.246-5.167.246-5.167 1.342-7.359a142.02 142.02 0 0 0 .563-5.625l.254-3.039L885 480z" fill="#fbfbf8"/><path d="M689 955.75c9.041.094 15.681 2.916 22.688 8.625 6.973 8.633 6.254 21.131 5.313 31.625-.899 3.386-2.138 6.057-4 9l-1.004 2.094c-2.209 4.228-5.995 6.072-10.309 7.656-5.469 1.656-10.243 2.342-15.625-.062C684 1013 684 1013 683 1010c-.093-1.728-.128-3.459-.129-5.19l-.01-3.205.006-3.457-.003-3.545.005-7.419-.006-11.403.004-7.195-.006-3.469.01-3.186.002-2.819c.243-4.05 2.593-3.303 6.127-3.362z" fill="#fcfdfc"/><path d="M609.848 920.902L616 921v1l255 1v4h-3v34h87v7h-88l-1-9h-2c-1.532-3.065-1.146-6.266-1.125-9.625l.006-2.187c.039-4.804.328-9.442 1.119-14.187h2l1-7H567v-1c10.434-1.954 20.783-2.374 31.375-2.658l3.333-.096 3.015-.073c2.512-.191 2.744-1.145 5.126-1.271z" fill="#fef2f4"/><path d="M187 931h673l-1 4H567v-2l-3.058.003c-57.744.061-115.487-.01-173.231-.222l-2.263-.008-57.117-.218-33.088-.127-2.396-.009-11.913-.045L187 932v-1z" fill="#f2e4e2"/><path d="M437 487l1 2c2.527.656 2.527.656 5 1v2l3 1v2l1.875.813C450 497 450 497 452 500l6 3-.367 2.5-1.346 9.5-.83 5.438c-2.054 14.088-2.116 28.351-2.457 42.563h-2l-.375 2.625C450 569 450 569 448.988 571.547c-1.346 4.704-1.327 9.209-1.426 14.078-.649 20.461-.649 20.461-4.562 24.375-.089 2.594-.115 5.16-.098 7.754l.004 2.35.031 7.459.014 5.045L443 645l-4 2 .492-2.769c.751-5.294.651-10.594.641-15.93l.003-3.372-.005-7.027.006-10.763-.004-6.838.006-3.251-.01-3.025-.002-2.655c-.122-2.269-.555-4.181-1.127-6.37-.105-2.74-.162-5.459-.176-8.199l-.064-5.057-.034-2.684c-.358-25.328-2.716-50.196-7.726-75.06l6-1v-6z" fill="#e9dbb5"/><path d="M96 266l2 1c-1.771 5.73-4.216 11.056-6.727 16.488C72.484 324.927 60.854 370.866 56 416l-.312 2.829C52.691 447.231 53.049 476.524 55 505l.147 2.184c3.698 49.759 17.316 104.164 39.831 148.755 1.045 2.107 2.044 4.23 3.03 6.365 7.964 17.232 17.203 33.414 27.49 49.359l4.428 6.961c4.971 7.834 10.121 15.242 16.074 22.375l3.25 4.25c4.582 5.917 9.506 11.546 14.406 17.199l3.25 3.77C178.141 779.215 189.915 791.85 203 803l3.477 3.035C216.972 815.205 227.654 823.89 239 832l-2 1 1 3c-3.696-1.649-6.722-3.934-9.937-6.375l-3.09-2.336L222 825l-2.879-2.164L217 821v-2l-2.187-.75c-5.212-2.316-8.872-6.218-12.812-10.25l-4.062-4.125-1.973-2.008c-1.933-1.921-1.933-1.921-4.211-3.484L190 797v-2l-1.73-.742c-6.501-3.603-11.527-10.429-16.32-16.027-1.976-2.261-4.009-4.463-6.053-6.662-4.207-4.526-8.232-9.065-11.775-14.143-1.081-1.584-1.081-1.584-3.121-2.426l-3-5c-1.162-1.5-2.351-2.978-3.562-4.437-8.192-10.128-15.476-20.876-22.394-31.904l-2.927-4.584c-10.698-16.898-19.768-34.814-28.139-52.958l-2.458-5.233C81.874 636.732 76.675 621.901 72 607l-.844-2.678C66.093 588.081 62.315 571.68 59 555l-.483-2.357C54.024 530.636 51.296 507.456 51 485l-.03-2.064c-.292-20.722-.395-41.323 2.03-61.936l.341-3.01L56 397l.288-2.052c1.747-12.307 4.259-24.284 7.337-36.323l.661-2.61A525.73 525.73 0 0 1 96 266z" fill="#dc3041"/><path d="M365 308h2c.837 11.33 1.13 22.658 1.177 34.017l.031 4.401c.066 7.636-.082 15.22-.907 22.816l-.382 3.585c-1.127 3.9-2.92 5.519-5.919 8.181-3.235 6.47-1.407 15.48.793 22.093l.707 2.032c4.488 13.139 1.955 23.856-1.5 36.875-2.563-1.281-2.593-2.156-3.5-4.812l-.785-2.184L356 433c-1.008-2.555-1.448-3.645-3.75-5.125-2.719-1.057-5.48-1.959-8.25-2.875l-.22-11.841-.132-5.972c-.072-7.162.431-12.535 3.47-19.033 1.313-3.208 1.129-6.05.882-9.467-.435-6.07-.435-6.07 1.867-9.336L352 367c5.246-9.275 5.866-20.349 6.164-30.797.644-22.011.644-22.011 6.836-28.203z" fill="#faf9f9"/><path d="M87 973h2l-.035 3.727-.027 4.898-.025 2.449c-.018 4.429.192 8.565 1.088 12.926-3.742 2.495-6.631 2.268-10.96 2.227l-2.454.001-8.035-.033-5.57-.009-14.663-.049-14.961-.04L4 999l-.06 2.715-.257 10.188-.104 4.369c-.215 9.732-.96 19.111-2.578 28.728h6v2h1008v1H0v-53h87v-22z" fill="#f2fbf4"/><path d="M370 953l1 17h-4l-.812-2.047c-2.324-5.29-4.213-9.203-9.75-11.395-6.774-1.552-13.859-1.998-20 1.629-6.136 4.631-9.632 10.367-11.437 17.813-1.199 10.667-.393 20.799 4.813 30.313 3.584 4.403 7.539 8.275 13.188 9.688 6.276.511 12.058.122 18-2 1.35-1.783 1.35-1.783 2-4l4-5c.709-1.311 1.395-2.638 2-4h4l-.375 5.688-.211 3.199c-.417 3.134-.825 5.377-2.414 8.113-10.477 5.293-27.66 4.697-38.801 2.121-6.431-2.476-11.394-6.235-16.199-11.121l-1.547-1.348c-5.877-6.683-7.286-16.671-6.934-25.227 1.43-10.198 6.322-18.453 14.285-24.883 14.276-9.804 33.237-10.175 49.195-4.543z" fill="#ea202a"/><path d="M581 849c.125 6.75.125 6.75-1 9h-2l1 2.438c1 2.563 1 2.563 1 3.563l3 1 4 28 4 1v3l-9.312 1-2.67.289-2.568.273-2.365.254C572 899 572 899 569 899l-3.687.324-2.117.178-4.391.406c-5.316.417-5.316.417-7.73-1.189-4.637-7.419-3.257-17.345-3.074-25.719h-5v-3c1.645-1.465 1.645-1.465 3.813-2.937 2.396-1.637 4.06-2.884 5.762-5.254L554 860h3l1 5h9v-2h-2v-2l6-3-1-7c3.625-3.625 6.183-3.019 11-2z" fill="#fcf8f8"/><path d="M573 951h32v4h-6v2h-2l.262 22.906.084 7.796.142 11.192.019 3.532.06 3.275.034 2.887c.221 2.446.221 2.446 1.7 4.217 2.886 2.028 6.18 1.624 9.574 1.569l2.145.035c4.515-.025 7.452-.556 10.98-3.41 1.738-2.231 1.738-2.231 3.125-4.687 1.445-2.449 1.445-2.449 2.875-4.312h3c.462 6.932-.991 10.633-3 18h-56l1-4 3.438-.375L580 1015c1.278-2.555 1.141-4.383 1.161-7.244l.029-3.317.013-3.595.017-3.676.02-7.707.072-11.832.016-7.473.037-3.595-.009-3.317.011-2.929L581 958c-2.918-1.945-4.625-2.453-8-3v-4z" fill="#ea1c26"/><path d="M510 951h32v4l-7 2-.052 21.801-.024 10.122-.022 11.631-.016 3.681v3.397l-.007 3.001c-.037 2.385-.037 2.385 1.12 4.366a101.17 101.17 0 0 0 6 2v3h-32v-3c2.906-1.257 4.796-2 8-2l.155-21.749.071-10.099.067-11.609.047-3.665.001-3.397.02-2.994c-.423-2.915-1.033-3.746-3.361-5.487l-5-2v-3z" fill="#eb1c25"/><path d="M237 833c3.172.622 5.346 1.7 8.012 3.512l2.299 1.549 2.377 1.627 2.318 1.568 4.648 3.151c8.013 5.513 8.013 5.513 16.408 10.406 3.901 2.081 7.761 4.216 11.599 6.408C341.42 893.557 405.798 914.56 471 920v1l-17 1 8 2v1c-63.329-2.474-131.57-29.224-185-62l-2.911-1.775c-9.946-6.08-19.882-12.205-29.464-18.85l-3.211-2.227c-2.562-2.28-3.465-3.89-4.414-7.148z" fill="#e22d38"/><path d="M338 832l16 1v1h-14l.68 3.473c.613 4.916-.67 8.472-2.555 12.965l-.855 2.178c-2.064 5.179-2.064 5.179-3.27 6.385-1.666.041-3.334.043-5 0 .909 2.392.909 2.392 4.273 3.184l6.18 1.873c6.514 2.034 6.514 2.034 8.547 4.943v2l1.813.375C352 872 352 872 355 874l1 3c-3.856.22-6.492-.396-10-2v2c-3 2-3 2-6 2v2h3v2l-8-2v4h2v2c-7.876-2.37-15.062-5.758-22.437-9.375l-3.525-1.711L291 866c1-3 1-3 4-5 2.48-.195 2.48-.195 5.188-.125l2.73.055L305 861v-2l10-1-4-1-1-4 14 5v-2l-3-1c-1.468-5.473-.44-8.119 2-13 1.601 4.002.293 7.046-1 11h4v-4h3l2-10h2l2 4 2-1 2 1-1-11z" fill="#fbf9fa"/><path d="M527 6l1 2 2-1c3.286-.239 6.581-.185 9.875-.187l2.762-.037 2.668-.006 2.437-.012c2.482.267 4.11 1.002 6.258 2.243l-2.812-.062c-3.21-.095-3.21-.095-6.187 1.063l-5.665.022-3.518-.061-3.798-.082-3.888-.072-10.224-.202-10.437-.201L487 9v2l-2.477.196c-49.919 4.053-100.596 13.879-146.531 34.488-3.025 1.331-6.078 2.488-9.18 3.629a128.41 128.41 0 0 0-11.605 5l-2.544 1.245-4.953 2.497c-4.868 2.412-8.272 3.432-13.71 2.946 3.125-2.645 6.088-3.844 10-5v-3c9.504-4.615 18.958-9.189 28.883-12.84 3.285-1.223 6.506-2.564 9.742-3.91 26.599-10.755 55.006-19.217 83.356-23.754l6.448-1.125C465.069 5.792 495.96 6.066 527 6z" fill="#e32a37"/><path d="M597 277l3 1.75c1.997 1.164 3.939 2.224 6.07 3.125 5.871 2.5 7.994 5.591 10.93 11.125l3.688 6.375 1.762 3.086c1.446 2.591 1.446 2.591 3.551 4.539a81.94 81.94 0 0 1 1.672 4.305c3.031 7.826 7.367 14.981 11.547 22.238 5.938 10.666 5.938 10.666 4.781 17.457-1.207 2.688-1.207 2.688-2.812 5-2.78 4.245-4.585 8.193-6.187 13l-9 1 .934-2.051c1.226-3.39 1.681-6.562 2.129-10.137.838-6.613.838-6.613 1.938-8.812h2l-.312-9.125-.068-2.594c-.22-5.197-.983-8.682-3.619-13.281-.187-2.875-.187-2.875 0-5l-2.687-.75C623 317 623 317 620.375 314.875c-2.394-2.288-2.394-2.288-6.375-1.875v-6l-1.812-.437c-1.749-.45-3.474-.991-5.187-1.562v-2l-2.75-.875c-2.572-.89-4.863-1.84-7.25-3.125v-2l-5-1-1-3h-3c-.61-7.203-.61-7.203 2.25-10.937 2.43-1.823 3.783-2.733 6.75-3.062v-2z" fill="#eadab5"/><path d="M877 539h1c-.451 7.531-1.999 14.358-4.187 21.563l-.942 3.166c-2.286 7.586-4.784 15.079-7.511 22.517a240.29 240.29 0 0 0-2.793 8.184c-1.509 4.56-3.383 8.893-5.379 13.258l-2.137 4.73-1.056 2.341-2.639 6.167c-2.565 6.192-5.294 11.928-8.867 17.598-1.608 2.676-2.952 5.411-4.301 8.227-2.99 6.124-6.584 11.738-10.332 17.414-1.807 2.643-1.807 2.643-2.855 4.836h-2l-.754 2.129c-6.904 15.907-21.388 30.251-32.722 43.123l-6.124 7.209c-1.415 1.555-2.888 2.848-4.525 4.164-2.879 2.208-2.879 2.208-4.75 4.75-2.352 2.905-4.922 5.161-7.762 7.578-3.772 3.267-7.397 6.698-11.043 10.105C753 750 753 750 751 750v2c-2.067 1.793-4.14 3.468-6.312 5.125l-1.94 1.498C687.635 801 687.635 801 674 801l-1-2c-2.025-.652-2.025-.652-4-1l2.77-1.187c20.172-8.938 39.424-20.821 57.23-33.812l1.968-1.419C752.366 746.108 772.84 728.108 790 708l1.3-1.511c6.673-7.671 6.673-7.671 12.763-15.801L806 688h2l.699-2.094c1.579-3.527 3.769-6.37 6.113-9.406C845.52 635.617 863.944 588.007 877 539z" fill="#dd2f40"/><path d="M845 301h2v4l1.861.245c2.139.755 2.139.755 3.353 2.503l1.013 2.325 1.174 2.67 1.224 2.943 1.291 3.039c3.589 8.658 6.717 17.459 9.709 26.336l.672 1.973 1.867 5.624 1.077 3.27c.778 3.144.901 5.845.759 9.07h2l1 8h2c8.093 32.503 11.609 65.524 11 99h-1l-1-27-4 1 .625 3.063c.877 6.643-.591 13.372-1.625 19.938l-2-2c.015-1.823.015-1.823.359-4.02 2.62-19.428-.445-38.946-4.359-57.98l-1.332-6.687c-2.478-12.295-5.016-24.488-8.59-36.516C862.482 356.175 861 350.864 861 345h-2c-1.292-4.12-2.263-7.668-2-12h-2l-.586-2.047-.789-2.703-.773-2.672c-.77-2.557-.77-2.557-1.953-4.719C850 319 850 319 850 316h-2l-1.437-4.25-.809-2.391c-1.924-6.02-1.924-6.02-.754-8.359z" fill="#f5edeb"/><path d="M142 405h1c.128 6.771-.255 13.336-.984 20.063-1.113 11.26-1.322 22.442-1.276 33.751l-.013 9.554c-.013 17.661 1.005 35.218 4.086 52.633l.514 2.983c8.386 47.39 24.858 94.114 51.131 134.615C201 665.671 201 665.671 201 668h2c1.236 1.681 2.386 3.424 3.5 5.188 9.365 14.377 20.492 27.528 32.137 40.105C240 715 240 715 240 717l1.688.75c5.209 2.815 8.682 6.771 12.465 11.211 2.715 2.997 5.718 5.484 8.848 8.039l-3 4c-4.548-3.713-8.45-7.526-12.25-11.996-1.68-1.924-3.427-3.717-5.25-5.504-2.998-2.951-5.764-6.039-8.504-9.23-1.456-1.655-2.948-3.279-4.461-4.883-7.537-7.991-14.088-16.502-20.535-25.387l-2.699-3.676c-7.831-10.734-14.645-21.99-21.086-33.604-1.97-3.547-4.011-6.998-6.215-10.407-5.002-8.225-8.335-17.439-12-26.312l-1.664-3.957c-4.006-9.716-7.31-19.642-10.544-29.637l-1.524-4.466c-2.677-7.59-4.437-15.425-6.267-23.252l-.539-2.297c-6.191-26.53-8.832-52.971-8.722-80.225l-.013-9.494c-.008-10.408.282-20.736 1.164-31.109l.235-2.778c.568-6.023 1.578-11.877 2.875-17.785z" fill="#dd3346"/><path d="M612.375 859.813l2.836-.043c4.019.332 6.717 1.151 9.59 4.043 3.389 4.904 5.117 8.729 4.723 14.758-1.143 5.305-3.794 9.122-8.086 12.367-6.34 2.763-13.276 3.175-19.812.875-3.879-2.678-6.133-5.336-7.625-9.812-.502-5.24-.649-9.627 1.625-14.437 4.93-5.319 9.559-7.701 16.75-7.75z" fill="#e12731"/><path d="M91 963h86v5H92l1 5 .133 5.746.004 3.287-.012 3.404.012 3.393-.004 3.291-.003 2.982C93 998 93 998 92 1004H4v-5h87l-1-10-.125-9.687-.012-2.432.004-2.393.003-2.108c.171-3.145.684-6.262 1.129-9.38z" fill="#ec1c24"/><path d="M447 923l20 2v1H177v31h2l-1 12H93v-1h84v-5H91v36l-4-1 3-1-1.062-3c-1.767-6.822-.56-14.069.063-21h-2v-13h86v-33h2v-2h272v-2z" fill="#f9dfe2"/><path d="M402 562l3 1c3.025 9.244 3.089 18.735 3.125 28.375l.014 2.669-.006 2.542-.003 2.283c-.131 2.161-.567 4.046-1.129 6.131-.397 5.149-.397 5.149 1 10a176.92 176.92 0 0 1 .316 7.195l.063 2.144.183 6.786.131 4.598L409 647h-1l-1-6c-2.874 2.716-2.874 2.716-5 6h-2l-1 6h-2l.063-1.981c.323-11.633.6-22.152-3.161-33.261-1.859-5.682-1.082-10.286.461-15.992 1.923-7.554 3.09-15.195 4.262-22.891l.979-6.33.871-5.663C401 564 401 564 402 562z" fill="#efd4b3"/><path d="M662.125 387.75c3.58 2.387 4.496 6.634 5.441 10.664 2.193 13.08-1.936 23.624-7.574 35.149-3.051 6.317-5.197 12.645-6.992 19.437h-2c-1.31-2.619-1.11-4.565-1.105-7.496l-.045-3.385-.016-7.008c-.142-7.557-1.518-12.564-5.55-18.987C643 414 643 414 643 412h2v-2h2l.227-1.687c1.109-6.438 3.496-10.444 7.773-15.312l1.363-1.645c1.811-2.035 3-3.281 5.762-3.605z" fill="#faf6f5"/><path d="M183 927h281l-1 2c-6.409 1.179-12.789 1.139-19.288 1.12l-3.387.003c-3.734.002-7.468-.004-11.202-.009-2.681 0-5.362 0-8.043 0-5.766.001-11.533-.003-17.299-.008l-25.012-.012-40.584-.018-39.414-.021-2.456-.001-12.197-.004L183 930v-3z" fill="#e61d22"/><path d="M783 260c1.532 4.084.631 7.795 0 12l1.207-2.371 1.605-3.066 1.582-3.059C789 261 789 261 792 260c-.535 5.348-2.467 9.358-5 14l1 1 6-7c0 4.023-1.762 5.709-4 9-.716 1.646-1.403 3.307-2 5l3.188-1.5c3.067-1.328 5.434-1.807 8.813-1.5-1.395 4.185-3.495 4.547-7.375 6.5-5.403 2.497-5.403 2.497-9.625 6.5-.573 2.272-.573 2.272-.687 4.688l-.199 2.449L782 301l-4 1-.375 2.75c-.773 5.433-1.71 10.84-2.625 16.25h-1l-1-16h4v-4h2v-2h-4v2h-2v-8h-4v6l-2 1v-3h-4v2l3 1-1 4h-2v7h-2l.313-7.875.068-2.262c.097-1.963.35-3.917.619-5.863l3-2c.543-5.863-.463-11.311-1.562-17.07-.451-3.02-.51-5.881-.437-8.93 3.175.34 4.023 1.025 6.25 3.438C771 273 771 273 771 275c2.946-.553 2.946-.553 6-2 1.758-2.777 1.758-2.777 2.813-6.062 2.178-5.928 2.178-5.928 3.188-6.937z" fill="#e71d24"/><path d="M340 834h14l-1 5 2-1c5.34-.35 8.665-.468 13 3 2.33 2.33 2.956 3.462 3.227 6.77-.25 3.567-1.154 5.879-2.664 9.105-2.145 4.859-3.258 8.841-3.562 14.125h2v3c-4.49-.587-8.225-1.764-12.375-3.562l-3.211-1.379L349 868v-2h5l.586-2.23.789-2.957.773-2.918C357 855 357 855 358.094 852.344c1.114-2.881 1.049-5.282.906-8.344l-7-1c-3.078 6.944-5.628 13.517-7 21h2v3c-6.107-1.765-12.074-3.696-18-6v-2l2.293-.027c3.07-.764 3.07-.764 4.508-4.289a153.57 153.57 0 0 0 1.512-4.246l.799-2.096c1.777-4.954 2.143-9.091 1.889-14.342z" fill="#ec1b23"/><path d="M258.833 230.769l6.855.481 2.416.199L274 232c.625 2.313.625 2.313 1 5l-2 3-1.34 7.332C271 250 271 250 269.481 252.78c-1.593 3.463-1.851 5.624-1.837 9.405l-.009 3.641.037 3.892.006 4.034.041 8.432.044 10.773.034 10.323.013 3.892.029 3.641.021 3.189c.144 3.068.575 5.981 1.14 8.997h-2l-1 2c-1.562-2.25-1.562-2.25-3-5l1-4 .133-8.668.003-2.532-.005-5.283.006-8.117-.004-5.131.006-2.465c.34-3.705.34-3.705-1.139-6.804-.141-2.671-.042-5.324 0-8h-2l-1-3-1 3h-2l-.184 2.117-.254 2.758-.246 2.742C256 279 256 279 255 281h-2c.492-3.852 1.117-7.545 2.063-11.312 1.293-5.914 2.502-11.69-.406-17.262l-3.32-5.02c-2.032-3.66-1.791-6.31-1.336-10.406l1.813-.75c2.335-1.073 2.335-1.073 3.281-3.344C257 231 257 231 258.833 230.769z" fill="#ed1a23"/><path d="M479 864v5l2.625-1.5c3.605-1.602 5.491-1.985 9.375-1.5 3.082 1.185 5.274 2.109 7.375 4.688 1.56 5.772.454 11.509-.375 17.313-.08 2.674-.047 5.324 0 8l3 1v3l-18-1v-3l4-1v-22h-8c-.78 2.807-1.171 5.42-1.316 8.328l-.127 2.422-.119 2.5-.131 2.547L477 895h3v3l-19-1v-3l4-1 3-23h-2v-3l5.375-1.5 3.023-.844C477 864 477 864 479 864z" fill="#ed1b23"/><path d="M661 846c6.521 3.624 7.373 10.309 9.316 16.998l.84 2.67.713 2.446c1.013 2.172 1.013 2.172 3.746 2.657L678 871v2l-7.312 2.5-2.092.723C665.611 877.232 663.173 878 660 878l.813-3.687c.796-6.654-2.044-12.387-4.812-18.312-1.184-1.416-1.184-1.416-4.562-1.062L648 855c.421 6.426 1.767 11.638 4.16 17.617C653 875 653 875 653 878h4v2l-6.75 2.5-1.922.723C644.967 884.448 642.631 885 639 885l1-3h2c-1.053-5.263-2.337-10.375-3.937-15.5l-.965-3.094L636 861l-3-1c.546-3.795 2.054-5.31 4.938-7.75l2.152-1.859C642 849 642 849 644 849l2 3 1.25-1.312c4.645-4.479 7.302-5.728 13.75-4.687z" fill="#ec1e2a"/><path d="M262 738c4.621 2.884 8.951 5.837 12.938 9.563 6.504 5.954 13.812 10.892 20.998 15.977l5.205 3.711c4.491 3.196 9.058 6.044 13.859 8.75l5.152 2.953C344.973 793.126 370.039 804.501 397 814l-4 2 2.875.25L399 817c1.195 2.047 1.195 2.047 2 4-11.481-2.882-22.4-6.746-33.14-11.688l-8.114-3.636c-23.472-10.407-46.342-23-66.746-38.676l-3.875-2.875L285 761l-2.996-2.242C274.63 753.2 267.724 747.333 261 741l1-3z" fill="#df2b37"/><path d="M533 870.875c2.865 3.044 3.123 4.625 3.098 8.695l-.01 2.715-.025 2.84-.014 2.863L536 895l5 1 1 3c-4.094 2.978-6.975 3.465-12 3l-3-2c-2.284.346-3.934.967-6 2-2.934.284-5.15.49-8 0-3.327-2.745-3.921-4.346-4.437-8.625.438-3.375.438-3.375 1.547-4.949 2.666-2.011 5.38-2.695 8.578-3.613l3.574-1.043L525 883v-8l-6-2-.812 2.875C517 879 517 879 514 881c-2.687.125-2.687.125-5 0 .072-3.079.238-5.242 2.484-7.477 6.287-4.594 14.497-7.035 21.516-2.648z" fill="#f61525"/><path d="M695 832c5.736 3.577 7.131 8.391 9.404 14.42.762 1.905 1.671 3.749 2.596 5.58 3.018 1.14 4.948.981 8 0-1.318 3.955-2.545 6.582-6 9a71.74 71.74 0 0 1-5 .438c-4.259.2-4.259.2-7.5 3.063L695 867c-2.889 1.444-4.796 1.377-8 1-3.323-2.456-4.776-3.926-5.625-8 1.044-5.012 4.726-7.238 8.5-10.437 2.464-2.417 2.464-2.417 2.125-5.75-.787-3.103-.787-3.103-4-4.812-2.153.308-2.153.308-4 1l.25 2.688c-.302 4.003-1.547 5.441-4.25 8.313l-4-1c.579-5.907 1.295-9.768 5.988-13.641 7.729-5.56 7.729-5.56 13.012-4.359z" fill="#e9212e"/><path d="M322 802c7.668 2.339 14.771 5.548 22 9v2l-3.125-.25c-2.739.448-3.639.936-5.324 3.18-1.303 2.577-2.48 5.183-3.597 7.846-1.144 2.668-2.365 5.295-3.587 7.928l-2.805 6.172-1.4 3.026c-3.195 6.839-3.195 6.839-2.163 14.099l2 1v2c-7.63-1.272-14.446-3.819-21-8l-1-3h6c5.4-10.496 10.333-21.159 15-32l1.246-2.887c.891-2.497.792-3.692-.246-6.113l-2-1v-3z" fill="#ea1d28"/><path d="M177 926h288v1l-282 1c3.386 1.129 5.905 1.11 9.476 1.09l2.022-.006 4.424-.021 12.586-.041 2.771-.008 34.22.078 6.933.03 18.169.08 19.21.084 32.103.141 32.999.146 2.07.009 10.288.045L455 930v1H178l1 10 .063 8.625-.014 2.176L179 957h-2v-31z" fill="#ca2d33"/><path d="M885 480h1l.165 13.287.062 4.513.067 6.516.048 3.951c-.391 4.29-1.507 6.865-3.341 10.732a120.72 120.72 0 0 0-1.625 7.438l-.385 2.063c-1.121 6.408-1.43 12.773-1.584 19.269-.406 3.23-.406 3.23-1.937 5.18L876 554c-1.333-2.667-.671-4.167 0-7l-.703 2.292-3.172 10.333-1.105 3.605-1.074 3.496-.984 3.206L866 579c-3-3.75-3-3.75-3-6h3l.113-2.484.199-3.266.176-3.234c.543-3.198 1.362-4.642 3.512-7.016-3.432.264-3.432.264-7 1-1.827 2.741-2.298 3.872-2.875 6.938-.847 3.711-2.093 5.637-5.125 8.063a89.32 89.32 0 0 1 2.305-7.977l.77-2.285 1.578-4.656c3.521-10.456 6.393-20.995 9.035-31.707l.971-3.91L872 513l3 2v4h2v-6h2l1 6c1.7-6.865 2.344-13.6 2.658-20.641.246-5.167.246-5.167 1.342-7.359a142.02 142.02 0 0 0 .563-5.625l.254-3.039L885 480z" fill="#fbf8f5"/><path d="M451 563h2c4.964 50.536 4.964 50.536-.125 73-1.864 8.967-1.666 18.278 1.125 27h-3l-.402-1.934-.535-2.504-.527-2.496c-.343-2.043-.343-2.043-1.535-3.066a95.19 95.19 0 0 1 .313-5.812l.238-3.207c.419-2.777 1.03-4.587 2.449-6.98h-2l-.125-5.187-.07-2.918c.204-3.023.927-5.162 2.195-7.895h-2l-.375 2.313C448 626 448 626 446 629c-2.826-5.425-3.211-9.945-2.812-16l.129-2.012a53.37 53.37 0 0 1 1.711-9.816c1.316-4.94 1.264-9.838 1.348-14.922.241-8.443 1.1-15.48 4.625-23.25z" fill="#fbf7f4"/><path d="M400 919h19v2h11v2h17v2H175v2h-2v-4l235-1-8-2v-1z" fill="#fdfdfd"/><path d="M425.305 856.828c2.532 1.408 4.379 2.539 5.695 5.172l.063 4.625-.027 2.477L431 871c-4.398 1.373-7.925.243-12.25-.937l-2.258-.592L411 868c.114 4.759.36 8.078 3.125 12.063 3.605 2.429 5.603 2.404 9.875 1.938 2.31-.429 2.31-.429 4-1-.379 2.746-.778 3.8-2.875 5.688-4.145 2.56-8.367 3.066-13.125 2.313-5.172-2.218-8.547-4.857-11-10-.363-2.973-.363-2.973-.312-6.062l.012-3.098c.295-2.781.872-4.466 2.301-6.84h2v-3h2v-2c5.334-3.183 12.509-3.254 18.305-1.172z" fill="#ea2433"/><path d="M704 798l.915 1.769 4.21 8.106 1.438 2.781c2.863 5.493 5.878 10.847 9.099 16.138 1.614 2.66 3.151 5.355 4.651 8.081l1.488 2.68c1.068 2.177 1.731 4.078 2.199 6.445l6-1v3l-6.75 3.438-1.922.986c-3.062 1.547-5.934 2.968-9.328 3.576l1.313-2.375c1.066-5.621-1.581-8.775-4.312-13.625l-2.391-4.59c-4.93-9.551-4.93-9.551-10.172-18.934l-1.129-1.958c-1.635-1.897-2.875-2.146-5.309-2.518 1.269-4.189 5.008-12 10-12z" fill="#e5262c"/><path d="M772 190c9.828 7.817 18.027 17.57 25.859 27.332l4.344 5.305c31.206 37.371 54.31 82.987 68.297 129.488l.773 2.566C873 360.597 873 360.597 873 364h2v9c-2-4-2-4-2-8h-2l-.559-2.621c-3.834-16.649-9.553-33.095-17.039-48.461-2.147-4.467-4.013-9.052-5.91-13.629-1.325-2.921-2.796-5.671-4.417-8.436-1.139-1.963-2.224-3.949-3.302-5.947C834.34 275.897 828.495 266.353 822 257l-1.973-2.871c-3.196-4.614-6.495-9.12-9.961-13.535C809 239 809 239 809 237h-2c-1.191-1.363-1.191-1.363-2.562-3.312C795.641 221.581 785.675 210.469 775 200l-4-4 2-1-1-5z" fill="#dd2f3b"/><path d="M559 362c7.335-1.027 12.454 1.892 18.73 5.273 2.725 1.439 5.387 2.652 8.27 3.727v-6h3l2 8.75.578 2.5.547 2.422.508 2.222C593 383 593 383 593 387h-3l-3-9c-3.149 2.702-3.149 2.702-4 6h-15l-1-3c-2.745-1.735-5.463-2.433-8.625-3.062-2.357-.474-4.222-.861-6.375-1.937.405-5.666 2.313-7.945 6-12l1-2z" fill="#fceff0"/><path d="M573 951h32v4h-6v2h-2l.262 22.906.084 7.796.142 11.192.019 3.532.06 3.275.034 2.887c.221 2.446.221 2.446 1.7 4.217 2.886 2.028 6.18 1.624 9.574 1.569l2.145.035c4.515-.025 7.452-.556 10.98-3.41 1.738-2.231 1.738-2.231 3.125-4.687 1.445-2.449 1.445-2.449 2.875-4.312h3c.462 6.932-.991 10.633-3 18h-56l1-4 4 1-1 1 10 1v-2h11l-.976-3.304c-1.311-5.271-1.357-10.428-1.403-15.837l-.051-3.165-.132-9.944-.143-9.987-.08-6.197-.041-2.833-.029-2.484c-.073-2.26-.073-2.26-.718-4.42C593 957 593 957 594 955l-2.309.254c-6.461.637-12.27.709-18.691-.254v-4z" fill="#ec304a"/><path d="M861 167c2.137-.395 2.137-.395 5 0a58.88 58.88 0 0 1 5.813 6.313l1.601 1.942c4.428 5.419 8.6 10.994 12.586 16.746l1.261 1.804c5.733 8.207 11.313 16.497 16.677 24.95l4 6.211c3.228 4.96 6.089 9.913 8.648 15.246 1.338 2.638 2.802 5.17 4.309 7.715 10.325 17.622 18.052 36.825 25.293 55.887l1.386 3.645c2.163 5.8 4.095 11.495 5.426 17.542h2l1.563 6.75.879 3.797c.515 3.184.445 4.498-.441 7.453l-.927-2.892C949.596 319.974 942.739 300.287 934 281l-1.142-2.567C926.778 264.8 919.51 251.889 912 239l-1.314-2.269A315.01 315.01 0 0 0 894 211l-1.241-1.732c-9.725-13.535-19.957-26.71-30.501-39.616C861 168 861 168 861 167z" fill="#dc2e3e"/><path d="M589 258l3 1 .938 3.438c.672 3.625.672 3.625 3.188 5L598 268l-1-2v-7l3-1 .125 3.813c.201 2.206.201 2.206.875 4.188 2.783 1.85 2.783 1.85 6 3l1.875 2.125c2.635 2.325 4.669 2.273 8.086 2.535 3.408.568 5.396 2.16 8.039 4.34v2l8-1 2 6h-2l-1-4h-8v2h2v2h3v4h-2l-1 6h-3v-6h2v-4h-4v2h-2v6l2 1 1 6c-3-1-3-1-4.473-3.766l-1.59-3.484c-2.818-5.697-5.425-8.163-11.305-10.527-6.169-2.865-12.152-8.023-14.758-14.41-.791-3.446-1.139-6.298-.875-9.812z" fill="#dd282a"/><path d="M232 210l2 1-1 2 2 1-2.055 2.168c-5.944 6.339-11.451 12.857-16.668 19.805a322.85 322.85 0 0 1-5.965 7.652c-3.157 4.047-5.895 8.3-8.605 12.656-2.097 3.34-4.309 6.594-6.543 9.844-1.326 1.974-1.326 1.974-2.164 4.875h-2l-.742 2.543c-1.404 3.858-3.308 7.249-5.383 10.77-4.796 8.349-8.953 16.898-12.875 25.688l-.996 2.213C157.779 341.827 149.616 373.135 144 405h-1c-.405-7.975.776-15.229 2.5-23l.802-3.678c2.855-12.668 6.658-24.989 10.698-37.322l1.48-4.641c1.879-5.844 3.879-11.562 6.5-17.119 1.027-2.258 1.938-4.537 2.835-6.85 2.14-5.383 4.554-10.606 7.059-15.828l1.238-2.619c8.129-17.031 17.468-34.363 28.941-49.389 1.47-1.931 2.88-3.869 4.266-5.859a248.68 248.68 0 0 1 16.234-20.855c2.212-2.568 4.346-5.179 6.445-7.84z" fill="#df2d3c"/><path d="M190 139c-.557 3.863-2.241 5.581-5 8.258l-2.437 2.395-2.562 2.473-5 4.883-2.25 2.176c-1.821 1.708-1.821 1.708-2.75 3.816h-2l-.687 1.688c-1.666 2.934-3.935 4.935-6.312 7.313l-1 3-5 5c-11.288 12.62-21.138 26.596-30 41l-3.562 5.563C113.13 239.636 105.849 253.119 99 267h-2c.629-4.337 2.222-7.942 4.188-11.812l1.038-2.057C107.692 242.502 113.862 232.25 120 222l1.432-2.395c7.503-12.474 15.968-24.159 24.978-35.585l3.148-4.07c4.246-5.57 8.76-10.881 13.354-16.165 2.19-2.527 4.23-4.998 6.087-7.784h2l.727-1.719c1.534-2.749 3.391-4.591 5.648-6.781l2.336-2.281L182 143l2.039-2.281C186 139 186 139 190 139z" fill="#dd3243"/><path d="M955 969c2 2 2 2 2.23 5.781l-.043 4.719-.002 2.32c-.044 5.826-.601 11.333-1.186 17.18h86v5h-87c-.792-3.962-1.128-7.061-1.133-11.035l-.004-3.451.012-3.576-.012-3.588.004-3.447.003-3.141c.114-2.423.432-4.449 1.129-6.761z" fill="#ef1a22"/><path d="M716 959h3v2h2l2 3h4c1.449 1.645 1.449 1.645 2.688 3.813l1.262 2.145c2.118 4.119 2.215 7.527 2.238 12.105l.043 3.785C733 989 733 989 731 991h-4v2h4v4h-5c-1.354-2.709-1.065-5.009-1-8h-2v6h-2l1 14-5 1v-3h-2v-4h3l.11-12.061.041-4.097.044-5.913.032-3.586c-.346-5.094-1.574-9.69-5.227-13.343 1.313-2.5 1.313-2.5 3-5z" fill="#ec1b24"/><path d="M370 953l1 17h-4l-.812-2.047c-2.324-5.29-4.213-9.203-9.75-11.395-6.774-1.552-13.859-1.998-20 1.629-6.136 4.631-9.632 10.367-11.437 17.813-1.054 9.376-.364 18.163 3 27l1 4h-2v-2h-2c-1.759-4.546-2.237-8.287-2.195-13.148l.009-1.992.062-6.234.027-4.254L323 969h2l-1-6h-3v-2l-5 2c14.098-14.927 35.244-16.62 54-10z" fill="#dc2b31"/><path d="M845 301h2v4l1.861.245c2.139.755 2.139.755 3.353 2.503l1.013 2.325 1.174 2.67 1.224 2.943 1.291 3.039c3.589 8.658 6.717 17.459 9.709 26.336l.672 1.973 1.867 5.624 1.077 3.27c.778 3.144.901 5.845.759 9.07h2c2.616 9.483 2.616 9.483 2 14-2 2.375-2 2.375-4 4v-2h-2l-2.875-10.937-.816-3.096C861 350.521 861 350.521 861 345h-2c-1.292-4.12-2.263-7.668-2-12h-2l-.586-2.047-.789-2.703-.773-2.672c-.77-2.557-.77-2.557-1.953-4.719C850 319 850 319 850 316h-2l-1.437-4.25-.809-2.391c-1.924-6.02-1.924-6.02-.754-8.359z" fill="#faf7f3"/><path d="M503.063 101.938l3.201.014L514 102v2c-8.062 2.949-16.106 5.715-24.355 8.105-2.827.829-2.827.829-5.645 2.895a62.54 62.54 0 0 1-4.125 1.289l-2.391.664-2.484.672-2.484.695C466.397 120 466.397 120 463 120v2l-7 1v-3h2l1-5h2l.688-1.75c3.008-5.156 7.506-6.925 13.063-8.437l3.484-.98c8.276-1.829 16.376-1.964 24.828-1.895z" fill="#e6debe"/><path d="M306 533c7.834 7.834 4.238 32.997 4.25 43.875-.002 14.798-.575 29.41-2.25 44.125h-2v-20l-2 1c-.312 2.714-.513 5.339-.625 8.063l-.117 2.299L303 618h-1l.318-45.866.103-4.69c.591-28.468.591-28.468 3.578-34.444z" fill="#f4d2b2"/><path d="M699 813c3.933 3.427 5.984 7.303 8.313 11.875l1.167 2.264 2.361 4.611 3.37 6.339 1.977 3.723 1.793 3.332c1.02 2.855 1.02 2.855.258 5.117L717 852l-1 2 1.898-1.094 2.477-1.406 2.461-1.406C725 849 725 849 727 849v2h-3l-1 4c-6.625 1-6.625 1-10 1l2-4-1.75 1.063c-2.25.938-2.25.938-4.234.781-2.829-1.184-3.268-2.645-4.516-5.406l-1.273-2.723L702 843c-2.508-5.76-2.508-5.76-7-10-4.221-.367-7.177.201-11 2l-1-2h2v-2l4.75-.562 2.672-.316c2.462-.116 4.244.143 6.578.879v2h2v-4h-4l-.125-5.75-.07-3.234c.19-2.94.669-4.539 2.195-7.016z" fill="#fbf7f7"/><path d="M974 497h1c.26 8.561-.706 16.95-1.687 25.438l-.268 2.338c-1.646 14.23-4.006 28.222-7.045 42.224l-.662 3.108-1.963 9.017-.588 2.675-.576 2.52-.491 2.165c-.823 2.875-1.872 5.623-2.938 8.416-1.215 3.263-2.259 6.576-3.305 9.896l-1.406 4.406-2.158 6.805C949.006 625.2 945.93 634.182 942 643l-1.204 2.719c-3.221 7.175-6.632 14.259-10.046 21.343l-1.641 3.412L924 681h-3c.61-4.389 2.329-7.884 4.375-11.75 5.739-11.176 10.704-22.695 15.625-34.25l1.012-2.365C960.204 589.608 968.889 543.182 974 497z" fill="#d83744"/><path d="M432 264h2v15c4.106-3.079 5.123-4.691 7.25-9.187l1.578-3.293L444 264h2l-.875 4.25-.492 2.391C444 273 444 273 442.93 275.109c-1.15 1.988-1.15 1.988-.93 4.891l6-11h2c-.677 8.123-.677 8.123-4 12a65.76 65.76 0 0 0-1 4l5.859-1.562C453 283 453 283 457 283v2c-2.076 1.561-4.146 3.013-6.312 4.438-5.181 3.367-5.181 3.367-9.687 7.563l2-6-4 2v-2h-6v-6h-3l-1 4h-8v2h2c3.435 3.847 4.134 7.282 4.098 12.328l-.01 2.422-.025 2.5-.014 2.547L427 317h-1l-.262-3.656c-.796-12.108-.796-12.108-6.738-22.344l-1.883-2.242c-1.671-1.955-3.373-3.868-5.117-5.758 2.426-.866 3.571-1.174 6-.187l4 2.375c2.429.987 3.574.679 6-.187l4-21z" fill="#f11728"/><path d="M463 866l3 1v3h2c.27 7.832-.769 15.273-2 23l-5 1v3h-6v-2h-2v2h-8v-3l7 1v-3l-4-1c-.394-7.742 1.058-14.521 3-22 2.867.573 3.861.861 6 3 2.603-.32 2.603-.32 5-1l1-5z" fill="#f8f9f9"/><path d="M554 860h3v7h10l-1 5h-8l.375 8.813.094 2.525.117 2.432.095 2.238c.227 2.306.227 2.306 2.319 4.993 3.584.25 3.584.25 7 0-.125 1.813-.125 1.813-1 4-4.732 3.232-8.464 3.545-14 3-2.821-1.505-3.066-3.178-4.187-6.187-1.539-6.755-.963-13.931-.812-20.812h-5v-3c1.645-1.465 1.645-1.465 3.813-2.937 2.396-1.637 4.06-2.884 5.762-5.254L554 860z" fill="#ed1a26"/><path d="M452 861l-1 5 2.063-1.562c3.739-1.83 5.942-1.299 9.938-.437.188 3.375.188 3.375 0 7-3 2-3 2-4.875 1.813-2.576-.985-4.777-2.375-7.125-3.812-1.283 7.411-2.255 14.473-2 22l3 1v3l-20-3v-3l4-1c1.822-7.115 3.401-13.64 3-21v-4l4.25-1 2.391-.562C448 861 448 861 452 861z" fill="#df2523"/><path d="M395 842l-1 8 2.313.438C399 851 399 851 402 852v3c-6.625.125-6.625.125-10-1-3.776 11.045-3.776 11.045-3 22 3.029.658 3.029.658 6 1v3c-5.395 1.798-10.295 1.67-15.5-.375-2.631-2.763-2.961-3.221-3.187-6.812.435-7.825 3.283-15.41 5.688-22.812h-3v-3l2.555-.84 3.32-1.098 3.305-1.09C393.9 842 393.9 842 395 842z" fill="#f11925"/><path d="M331 791l2.656 1.363c12.28 6.245 24.796 11.954 37.344 17.637v1c-3.312 1.125-3.312 1.125-7 2l-3-2v2h-2v-2l-3.937.438-2.215.246c-1.859.135-1.859.135-2.848 1.316-2 .041-4 .043-6 0l-1-2c-2.114-1.125-2.114-1.125-4.691-2.164l-2.861-1.211-3.01-1.25-3.021-1.273L322 802l-1 4v-2h-2v-3h2v-2h2v-2h2v4h2v-6h4v-4z" fill="#faf4f5"/><path d="M624 306c2.674 1.337 2.685 2.454 3.672 5.242 3.013 7.858 7.355 15.024 11.547 22.301 5.938 10.666 5.938 10.666 4.781 17.457-1.207 2.688-1.207 2.688-2.812 5-2.78 4.245-4.585 8.193-6.187 13l-9 1 .934-2.051c1.226-3.39 1.681-6.562 2.129-10.137.838-6.613.838-6.613 1.938-8.812h2l-.312-9.125-.068-2.594c-.22-5.197-.983-8.682-3.619-13.281-.187-2.875-.187-2.875 0-5l-2.812-.75c-3.352-1.315-4.375-2.23-6.187-5.25l4-1v-6z" fill="#e5dbb4"/><path d="M867 963h88v5h-88v-5z" fill="#e12125"/><path d="M441 350c7.334 5.29 12.421 13.762 14.625 22.5 1.61 6.336 5.26 8.117 10.625 11.625C469 386 469 386 471 389h-3l1 4h-6v-2h-3v-2l-5-2v4h3v4c-3.634 2.326-6.771 2.163-11 2l.75-3.437c.687-5.308-1.37-8.943-3.75-13.562l-2-5h2v2h6l1-10h-1l-2 6h-3v-8h2v-2h-4v-4h3l-1-2-3-1-1-6z" fill="#ea1c22"/><path d="M96 266l2 1c-1.771 5.73-4.216 11.056-6.727 16.488-26.525 58.498-37.929 123.247-37.336 187.137l.071 10.998.053 6.752c.036 5.649-.207 11.039-1.062 16.625h-1c-2.047-27.786-2.257-56.317 1-84l.341-3.01L56 397l.288-2.052c1.747-12.307 4.259-24.284 7.337-36.323l.661-2.61A525.73 525.73 0 0 1 96 266z" fill="#d45767"/><path d="M411 957h6v52h-4v4l2.625-1c3.332-.987 5.927-1.164 9.375-1l2 8h-18l1-6 .205-5.822.06-3.396.051-3.618.063-3.741.183-11.798.131-8.012L411 957z" fill="#ee1a20"/><path d="M490 553h2l.367 2.852.508 3.773.492 3.727c.502 3.549.502 3.549 1.646 6.389 1.128 3.727 1.336 7.206 1.4 11.064l.059 2.194.152 6.876.117 4.688L497 606l-8-1-1-15-1 15h-2c-.12-8.14.217-16.195.813-24.312l.261-3.583c.654-8.241 1.712-16.119 3.926-24.104z" fill="#fbf9f8"/><path d="M142 405h1c.128 6.771-.255 13.336-.984 20.063-1.113 11.26-1.322 22.442-1.276 33.751l-.013 9.554c-.013 17.661 1.005 35.218 4.086 52.633l.514 2.983c2.934 16.583 6.992 32.85 11.674 49.017l1.145 4.004L159 580l-3 1c-3.526-10.82-6.557-21.665-9.125-32.75l-.523-2.244c-6.133-26.393-8.721-52.737-8.612-79.84l-.013-9.494c-.008-10.408.282-20.736 1.164-31.109l.235-2.778c.568-6.023 1.578-11.877 2.875-17.785z" fill="#d15466"/><path d="M259 279h2v26l-2 1v-5h-2l.125 2.75C257 307 257 307 256 308.938c-2.386 4.921-.83 10.069.555 15.063.679 3.049.575 5.887.445 9h2l1 20h-3c-5.138-8.964-4.306-21.724-4.658-31.802-.162-4.914-.162-4.914-.861-9.768-.739-3.735-.624-7.445-.605-11.242l-.012-2.33c.009-5.037.42-9.872 1.137-14.857l1 2 4-2v10h2v-14z" fill="#ef1b23"/><path d="M583 865l4 28 4 1v3l-19 2v-3l2-1c.394-10.58.394-10.58-1-21l-3-2c1.212-3.635 2.108-3.952 5.375-5.75l2.398-1.359C580 864 580 864 583 865z" fill="#ea1a2d"/><path d="M525 957h2v2l3-1c.95 2.85 1.097 4.442 1.022 7.38l-.061 2.669-.082 2.87-.072 2.947-.245 9.323-.158 6.318L530 1005h-2v8h3v-8h2l.563 5.875.316 3.305C534 1017 534 1017 533 1019h-12v-6h4l-.508-2.28c-.676-5.107-.502-10.101-.371-15.244l.072-3.337.245-10.514.158-7.145L525 957z" fill="#ed1b1f"/><path d="M599 823v2h-4v2l-8 1 6 1v1c-9.644 2.139-19.296 4.183-29.062 5.688l-2.179.336C535.54 839.877 508.423 838.429 482 838v-1l1.947-.025 20.05-.293 7.484-.104 10.753-.164 3.384-.035 3.154-.06 2.772-.04c2.573-.292 4.235-.978 6.455-2.278l-3-2 2.31-.196C557.404 830.055 579.314 823 599 823z" fill="#db2d35"/><path d="M955 963h2c2.226 11.132 1.609 22.654 2 34h83v2h-86v-28c-1.286 2.572-1.21 4.569-1.316 7.445l-.127 3.262-.119 3.418-.131 3.441L954 997h-1l-.562-12.875-.17-3.707-.146-3.535-.143-3.269C952 971 952 971 953 969h-86v-1h88v-5z" fill="#f3e7de"/><path d="M580 335h1v12h2v16h-7v2l2 1-2 1c-1.883-.742-1.883-.742-4.125-1.875-4.387-2.062-8.058-2.775-12.875-3.125l-2 5-1-2 2-4h18c-2.391-2.391-3.696-2.597-7-3l-3 1-2-2 1-1-6-1v2l-4-1c.891-2.873 1.429-4.596 3.926-6.363 7.215-2.869 13.33-2.966 21.074-2.637v-12z" fill="#e6212a"/><path d="M369 1001h4l-.375 5.688-.211 3.199c-.417 3.134-.825 5.377-2.414 8.113-10.129 5.117-28.273 5.222-38.977 1.98-4.569-1.84-7.52-3.477-11.023-6.98l10 1v-5l-2-1c3.554 0 3.893.528 6.375 2.875 5.209 4.592 9.173 5.477 16.051 5.313 3.826-.279 6.946-.892 10.574-2.187 1.35-1.783 1.35-1.783 2-4l4-5c.709-1.311 1.395-2.638 2-4z" fill="#e62430"/><path d="M92 963h85v4H92v-4z" fill="#e91d1d"/><path d="M624 911c-3.135 1.858-5.375 2.201-9 2v2h8c-7.442 3.991-16.459 4.685-24.687 6.125l-3.049.551c-4.806.843-9.362 1.575-14.264 1.324v-2h-14v2h-70v-1l1.701-.011c28.318-.202 56.271-.737 84.299-4.989l2.114-.318c16.192-2.184 16.192-2.184 32.061-5.854 2.834-.831 4.117-.911 6.824.172z" fill="#d64147"/><path d="M867 926h1v35h87v2h-88l-1-4h-2c-1.532-3.065-1.146-6.266-1.125-9.625l.006-2.187c.039-4.804.328-9.442 1.119-14.187h2l1-7z" fill="#f4dbdb"/><path d="M338 832l16 1v1h-14l.68 3.473c.613 4.916-.67 8.472-2.555 12.965l-.855 2.178c-2.064 5.179-2.064 5.179-3.27 6.385-1.666.041-3.334.043-5 0 .822 2.191.822 2.191 3.066 2.852l2.496.773 2.504.789L339 864v1h-8v-2h-4v-2h-10v-3l-6-1-1-4 14 5v-2l-3-1c-1.468-5.473-.44-8.119 2-13 1.601 4.002.293 7.046-1 11h4v-4h3l2-10h2l2 4 2-1 2 1-1-11z" fill="#f7faf8"/><path d="M533 475l2 1v17l9 3-7.625 7.438c-4.11 4.434-5.891 8.282-5.68 14.418.45 3.169 1.532 6.031 2.637 9.023.868 2.757.888 5.255.668 8.121h-3c-6.979-7.695-9.596-18.034-9.141-28.27L522 505l2.082-.621 2.73-.816 2.707-.809c1.835-.558 3.661-1.147 5.48-1.754l-.437-3.91-.562-5.152-.289-2.568c-.521-4.824-.816-9.518-.711-14.369z" fill="#f9faf8"/><path d="M877 539h1c-.451 7.531-1.999 14.358-4.187 21.563l-.942 3.166c-2.286 7.586-4.784 15.079-7.511 22.517a240.29 240.29 0 0 0-2.793 8.184c-1.509 4.56-3.383 8.893-5.379 13.258l-2.137 4.73-1.056 2.341-2.639 6.167c-2.565 6.192-5.294 11.928-8.867 17.598-1.608 2.676-2.952 5.411-4.301 8.227-2.99 6.124-6.584 11.738-10.332 17.414-1.807 2.643-1.807 2.643-2.855 4.836l-4-1 1.035-1.642C847.344 626.092 864.745 585.001 877 539z" fill="#df334d"/><path d="M392 854l9 1v4h5v-2l3 1h-2v2h-2v3h-2c-1.204 3.754-1.099 7.332-1.062 11.25l.027 3.828L402 881h-2l-2-8-1 9-6-1 4-1v-3l-2.875.188L389 877c-2.235-3.352-2.144-4.66-1.559-8.527 1.117-4.946 2.85-9.705 4.559-14.473z" fill="#fbf1f0"/><path d="M53 497h1l.18 1.847A548.86 548.86 0 0 0 60.063 541l.393 2.195L63 557l.516 2.771c1.294 6.727 2.953 13.35 4.671 19.979l.912 3.539c2.308 8.801 4.929 17.468 7.854 26.083l.859 2.569.77 2.24C79 616 79 616 78 618l-2 1c-7.386-20.919-12.696-42.254-17-64l-.5-2.486C54.882 534.293 52.252 515.6 53 497z" fill="#d44459"/><path d="M521 335c5.065 7.598 4.335 18.148 4.658 27.006.156 4.126.487 7.947 1.342 11.994.574 10.43.029 21.222-6.437 29.938C519 405 519 405 515 405c.453-5.891 3.085-10.026 6-15 2.407-4.279 2.407-4.279 3-9l-2-1c-.439-2.206-.439-2.206-.711-5.102l-.336-3.176-.633-6.625c-.684-6.369-1.64-10.812-5.32-16.098h5v4h2l-1-18z" fill="#f7e8e3"/><path d="M518 885l1 2c2.025.652 2.025.652 4 1l-3 1v6l5 2 1-10 2 1-1 7h2v-2h2v-2h3l1-2 2 7h5c-.336 2.519-.574 3.672-2.625 5.25-3.241 1.023-5.998.996-9.375.75l-3-2c-2.284.346-3.934.967-6 2-2.934.284-5.15.49-8 0-3.327-2.745-3.921-4.346-4.437-8.625.438-3.375.438-3.375 1.563-5.187 2.495-1.58 5.049-2.371 7.875-3.187z" fill="#e91e2f"/><path d="M763 267c3.175.34 4.023 1.025 6.25 3.438C771 273 771 273 771 275c4.393-1.012 4.393-1.012 7.375-4.125L779 269h2v7h2v3h4v2l-2 2h-3v-2h-3v4h7v2h-2v2h-5l-1-3-3-1v2h-4v2h-4v-4h-2l-1-5.625-.562-3.164c-.425-3.117-.513-6.07-.437-9.211z" fill="#f51624"/><path d="M455 957h3c1.151 6.88 1.325 13.737 1.518 20.701l.104 2.756.076 2.499c.129 2.267.129 2.267 2.303 4.044v-4h2l-1 22h-3l-1 4v-4h-2v-20h-2v-2h-30v-23h1v21h30l-1-24z" fill="#e92d3b"/><path d="M365 308h2c.902 12.207 1.111 24.39 1.125 36.625l.008 2.246c.021 7.771-.041 15.418-1.133 23.129h-1v-21l-3 1-1-22c-.886 2.659-1.18 4.481-1.316 7.23l-.127 2.432-.119 2.525-.131 2.561L360 349h-2c.187-34.187.187-34.187 7-41z" fill="#fbf2ef"/><path d="M455 81h32l1 3 45 1v1l-3.69.06c-30.037.323-30.037.323-59.96 2.665l-7.87.849L448 91v-2h7v-8z" fill="#f8e1e3"/><path d="M463 957h2v16h5v9h-2l-1 23h2v4h2v4h-12l1-8h3l-.035-3.289-.027-4.336-.025-2.16c-.019-4.188.261-8.088 1.088-12.215h-2l1 5-2-1c-.043-1.666-.041-3.334 0-5l1-1a65.57 65.57 0 0 0 .063-4.332l-.023-2.67-.078-5.586-.023-2.682-.035-2.456c.096-2.23.476-4.137 1.098-6.274z" fill="#e91c22"/><path d="M606 864c2.75-.312 2.75-.312 6 0 5.379 4.61 6.731 12.173 7.375 18.938-.375 3.063-.375 3.063-1.562 5-2.518 1.476-3.937 1.553-6.812 1.063-4.185-2.954-5.835-7.16-7-12-.527-4.934-.476-8.62 2-13z" fill="#fafbfc"/><path d="M651.375 853.688C655 854 655 854 656.59 855.684c3.402 5.589 6.402 12.705 5.41 19.316l-2 3 5-1-2 4h-7v2h-8c3.188-2.125 5.265-2.502 9-3v-2h-4l-3-8.125-.867-2.305c-1.564-4.32-2.598-7.901-2.133-12.57 1-1 1-1 4.375-1.312z" fill="#f9f8f6"/><path d="M760 311h1c1.121 6.013.93 11.661.563 17.75l-.309 5.609-.146 2.483c-.086 1.717-.108 3.438-.108 5.157l-1 3h-3v-12h-8l-.375 1.625c-.747 2.839-1.678 5.597-2.625 8.375h-7l-2-6 2 1v2h5l.664-2.492c2.107-7.418 4.499-14.385 9.336-20.508h2l.875-1.875C758 313 758 313 760 311z" fill="#ed1b24"/><path d="M551 861h2c-1.589 4.289-4.431 6.323-8 9h-2v3h5l.184 3.219c.609 10.418.609 10.418 1.816 20.781h-3l-2-22h-4v2h2l.563 4.313.316 2.426C544 886 544 886 543 889h-3v4h-2v2h6l-2 4-1-2c-1.658-.373-3.326-.707-5-1-1-1-1-1-1.034-2.854l.112-2.407.078-2.643.234-5.508c.108-4.583.109-7.615-2.906-11.232L530 869c4.389.51 7.337 1.522 11 4l1-8h7l2-4z" fill="#fbf4f3"/><path d="M402 562l3 1c3.025 9.244 3.089 18.735 3.125 28.375l.014 2.669-.006 2.542-.003 2.283c-.131 2.161-.567 4.046-1.129 6.131-.397 5.149-.397 5.149 1 10 .084 1.667.107 3.338.098 5.008l-.01 2.988-.025 3.129-.014 3.152L408 637h-1v-20h-2v4h-2c-.042-2.333-.041-4.667 0-7l1-1c.072-2.02.084-4.042.063-6.062l-.027-3.348L404 601h2v-12h-3v6h-2v-12h-2c.779-14.781.779-14.781 3-21z" fill="#efd0ae"/><path d="M513 309l1.887.535c2.078.64 2.078.64 3.926-.098 3.344-.669 6.005.522 9.188 1.563v2l1.938.375L532 314c1.322 2.645 1.097 4.678 1.063 7.625l-.027 3.039L533 327h-2l-.148-1.934-.227-2.504-.211-2.496L530 318l-2-1-1 12h2v4h-2l.125 2.875C527 339 527 339 525 341c-1.354-2.709-1.065-5.009-1-8h2l-.496-1.609c-.617-2.929-.599-5.649-.566-8.641l.027-3.266L525 317h-2l-2 10c-3 0-3 0-5.687-2.25-3.676-4.556-2.715-10.221-2.312-15.75z" fill="#f31726"/><path d="M597 957c1.699 2.963 2.244 5.057 2.211 8.461l-.01 2.649-.041 2.835-.016 2.928-.082 9.252-.071 9.273-.053 5.769-.02 2.63-.025 2.319c-.013 1.975-.013 1.975 1.107 3.884h17v-2h9c-1.31 3.931-2.832 6.312-6 9-3.672 1.224-7.111 1.261-10.937 1.313l-2.17.088c-3.345.04-5.402-.025-8.101-2.089-2.189-2.824-2.279-4.185-2.246-7.723l.001-3.275.063-3.517.017-3.615.123-11.432.055-7.75.195-19zm-16-108c.125 6.75.125 6.75-1 9h-2l2 5c-2.962 3.126-5.096 5.048-9 7v13h-2v-6h-2v-2h2v-6h-2v-2h-10v-5l1 3h9v-2h-2v-2l6-3-1-7c3.625-3.625 6.183-3.019 11-2z" fill="#f7faf4"/><path d="M91 963l1 4h85v1H92l1 5 .133 5.746.004 3.287-.012 3.404.012 3.393-.004 3.291-.003 2.982C93 998 93 998 92 1004H4v-5l1 4h86l-1-14-.125-9.937-.012-2.377c.008-4.665.365-9.084 1.137-13.686z" fill="#bb3844"/><path d="M374 332l3 1v10h-2v4h4l1-9h1l.148 3c.376 6.855.83 13.396 2.852 20h-3v-4h-2l-1 2v-2h-2v-8h-4l-1 6h-2v16h-2l-1 3 .199-2.323c.695-8.493 1.091-16.973 1.364-25.49l.131-3.869L368 333l1 2 2.313-1.562L374 332z" fill="#e72a33"/><path d="M692 847c2.799 2.528 4.458 4.204 5 8h4v3l3-1v2l-2.25 1.313c-3.029 1.859-4.611 3.885-6.75 6.688-2.889 1.444-4.796 1.377-8 1-3.323-2.456-4.776-3.926-5.625-8 .837-4.016 2.553-5.337 5.625-8l2.813-2.812L692 847z" fill="#e02429"/><path d="M469 669h8v4h-2l1 4h2l1-4 2 1-.875 1.469c-2.093 3.779-3.379 6.472-3.062 10.844L477 690c-4.157 3.604-8.346 3.456-13.562 3.375l-2.287.035c-4.314-.023-7.041-.293-10.15-3.41.369-6.4.369-6.4 3.563-9.437L457 679l-2 6h-2v4h21l-1-3-4-1v-16z" fill="#e81f24"/><path d="M352 842c6.72.72 6.72.72 8 2-.267 8.01-2.925 14.659-6 22h-5l1 3-4-1 1-4h-2c.351-7.021 1.79-16.79 7-22z" fill="#f8f3f3"/><path d="M514.688 4.813l2.662-.001c19.233.01 38.574.571 57.65 3.189v1l-3.902.184-5.035.254-2.576.119-2.451.127-2.269.111c-1.79.023-1.79.023-2.766 1.205a184.96 184.96 0 0 1-7.926.094l-2.538-.011-34.723-.583-6.967-.145L487 10V9l2.213.007 20.658.045 10.62.024 12.212.022 3.848.016h3.579l3.149.007c2.41-.107 4.421-.426 6.721-1.12l-2.004.016-8.934.047-3.154.025-2.998.01-2.777.016C528 8 528 8 527 7c-1.565-.093-3.135-.117-4.703-.114h-3.033l-3.299.016-3.359.004-10.669.031-7.213.014L477 7V6c12.571-.822 25.09-1.2 37.688-1.187z" fill="#d5323a"/><path d="M87 973h2l-.035 3.727-.027 4.898-.025 2.449c-.018 4.429.192 8.565 1.088 12.926-3.348 2.232-4.471 2.246-8.375 2.188l-2.836-.02C76 999 76 999 73.728 998.502c-3.099-.57-6.02-.664-9.171-.708l-3.882-.06-4.164-.051-4.283-.063-11.24-.153-11.483-.161L7 997v-2h80v-22z" fill="#fef8fd"/><path d="M182 282h1c-.517 5.674-2.097 9.926-4.625 15l-2.195 4.551-3.112 6.341C158.104 338.363 149.92 371.723 144 405h-1c-.405-7.975.776-15.229 2.5-23l.802-3.678c2.855-12.668 6.658-24.989 10.698-37.322l1.48-4.641c1.879-5.845 3.88-11.563 6.501-17.121 1.023-2.248 1.927-4.517 2.819-6.821 2.205-5.549 4.729-10.917 7.324-16.293l1.34-2.797L182 282z" fill="#d25065"/><path d="M783 260c1.159 4.635.7 7.333 0 12l1.207-2.371 1.605-3.066 1.582-3.059C789 261 789 261 792 260c-.535 5.348-2.467 9.358-5 14l1 1 6-7c0 4.023-1.762 5.709-4 9-.716 1.646-1.403 3.307-2 5l3.188-1.5c3.067-1.328 5.434-1.807 8.813-1.5-1.395 4.185-3.495 4.547-7.375 6.5-5.403 2.497-5.403 2.497-9.625 6.5-.573 2.272-.573 2.272-.687 4.688l-.199 2.449L782 301h-1l-1-10h2v-2h2v-2h2v-2h-7v-4h3l1 1c2.054-.409 2.054-.409 4-1v-2h-4v-3h-2v-7l-2-1 4-8z" fill="#e0232b"/><path d="M353 487c6.158-.33 10.423.26 16 3 .848 1.984.848 1.984 1 4l-2 2c-3.358 6.907-3.426 13.838-3.312 21.375l-.01 3.211c.042 6.187.604 11.988 1.884 18.043.59 3.189.582 6.139.439 9.371-1.461-2.647-2-3.894-2-7l-3-1c-1.226-2.453-1.114-4.051-1.098-6.789l.01-2.852.025-2.984.014-3.008L361 517h1l-.035-2.414c-.09-10.524-.09-10.524 1.035-15.586h-2l-1 2 1-8h-4v-3l-4-1v-2z" fill="#ead9b4"/><path d="M507 949h36v2l3 1c-1 2.5-1 2.5-3 5-2.794.468-5.142.234-8 0 2-2 2-2 4.625-2.125L542 955v-4h-32l1 3 7 3c1.269 2.539 1.127 4.311 1.129 7.152l.01 3.256-.006 3.529.003 3.609-.005 7.566.006 11.614-.004 7.336.006 3.529-.01 3.256-.002 2.875C519 1013 519 1013 518 1015c-1.848.633-1.848.633-4.062 1.125l-2.223.508L510 1017l4-4h3v-52h-2v-4l-3.187.125c-3.553-.116-5.661-.597-8.812-2.125v-4h4v-2z" fill="#fdf9ee"/><path d="M316 830c2.27 3.404 2.365 5.165 2.625 9.188l.227 3.293L319 845h-2v2h3l2-7 2 2-1.562 3.125c-1.555 3.609-1.622 6.049-.437 9.875l2 1v2c-7.63-1.272-14.446-3.819-21-8l-1-3h6l3.438-6.812.986-1.947c1.368-2.723 2.611-5.345 3.576-8.24z" fill="#e42428"/><path d="M522 572l2 1-.013 2.224-.09 20.831-.047 10.707-.039 10.348-.037 5.836c-.001 8.962.699 15.984 5.289 23.867 1.597 2.768 2.925 5.151 3.938 8.188l-2 2v-4h-5l-.375-1.937L525 649l-2-1v-5h-3l.007-2.416.045-22.514.024-11.575.019-11.165.011-4.265.008-5.962.007-3.432c.062-2.644.062-2.644-1.12-4.67 1.438-2.625 1.438-2.625 3-5z" fill="#e91a30"/><path d="M673 973h2v32h2v8h-7v2h18v2h11v2c-11.648 1.628-23.307.655-35 0v-2h4l1-8h6l-.988-1.538c-1.385-3.369-1.236-6.215-1.208-9.853l.009-2.135.062-6.724.027-4.57L673 973z" fill="#f11824"/><path d="M370 851h1l1 9 3 1v-2h3v-4h3l-.656 2.273c-2.738 9.739-2.738 9.739-2.344 19.727 2.962 2.793 6.024 3.432 10 4v2h-8l-2-4h-3v-2h-2v-2h2v-4h-4l-2-6h-3l1 6h-2c-.732-7.616 1.808-13.161 5-20zm3 0h4v4h-2v2h-3l1-6z" fill="#fcf5f6"/><path d="M494.758 85.871l3.357-.01 3.58.006 3.712-.003 7.751.005 11.876-.006 7.535.004 3.592-.006 3.338.01 2.933.002c2.341.116 4.327.462 6.567 1.127v2h2v2h-16v-2l-1.789.045-18.445.437-6.882.166-9.897.231-3.103.082-2.911.061-2.55.061c-2.57-.087-4.92-.512-7.424-1.082l1-2c3.937-.899 7.731-1.126 11.758-1.129z" fill="#dd272d"/><path d="M657 851h3v3l5-1 2.5 6.875.723 1.973C670 866.773 670 866.773 670 869l8 2v2l-7.312 2.5-2.092.723C665.611 877.232 663.173 878 660 878l.254-1.758c.969-7.432-.162-13.051-2.254-20.242l-1-5z" fill="#eb1a20"/><path d="M462 666l1 3h-2l1.02 1.715c1.13 2.634 1.063 4.037.668 6.848l-.301 2.316C462 682 462 682 461 685h2l.438-1.875C464 681 464 681 465 679h2v-6h-2v-4h4v16h5v4h-21v-4h2l2-6h2l-.105-2.082-.082-2.73-.105-2.707c.342-2.897 1.047-3.706 3.293-5.48z" fill="#f21724"/><path d="M456 989h1v16h2v8h13l1 2a101.17 101.17 0 0 0 6 2v3h-31v-3l2.938-.875c3.169-.767 3.169-.767 4.063-3.125l.316-5.445.127-3.262.119-3.418.131-3.441L456 989z" fill="#db2432"/><path d="M711 813c6.56 8.383 14.9 20.45 17 31l6-1v3l-6.75 3.438-1.922.986c-3.062 1.547-5.934 2.968-9.328 3.576l1.125-2.562c1.061-4.168.19-6.414-1.125-10.437l1-2h4l1-4h-3c-1.835-3.336-3.182-6.423-4-10.125-.741-3.302-1.9-5.202-4-7.875v-4z" fill="#e32532"/><path d="M487 833h52c-2 3-2 3-5 4l-5.206.114h-3.215l-3.466-.016-3.552-.004-11.249-.031-7.619-.014L481 837v-2h6v-2z" fill="#ee1a24"/><path d="M554.125 548.563C558 549 558 549 560 551c.272 2.183.272 2.183.303 4.93l.05 3.119.025 3.396.051 3.509.132 11.171.191 14.57.048 3.547c.118 7.525.411 15.003.988 22.506.349 5.415.293 10.829.209 16.252-3.166-4.748-3.152-8.574-3.297-14.247l-.06-2.189-.178-7.142-.13-4.96-.33-13.04-.342-13.312L557 553l-4-1-1.277 1.715-1.66 2.223-1.652 2.215C547 560 547 560 546 561c-3.437.188-3.437.188-7 0l-2-2h9l-.25-2.187c.478-5.379 3.021-8.114 8.375-8.25z" fill="#e31c36"/><path d="M434 368c6.659 1.991 8.818 7.2 12 13 2.253 4.566 3.468 7.985 2 13l-.621 7.012C447 403 447 403 445 405v-6h-2v2l-3 1 .938-2.062c1.494-4.131 2.667-8.022 1.313-12.312-1.247-1.935-1.247-1.935-4.25-2.625-4.63-4.986-4.109-10.586-4-17z" fill="#faeeed"/><path d="M661 846c5.282 3.125 6.544 7.062 8.313 12.625l.799 2.352C672 866.628 672 866.628 672 869h-2l-2.5-5.75-1.406-3.234C665 857 665 857 665 853l-5 1v-3h-3l.945 2.047 1.18 2.703 1.195 2.672c.68 2.578.68 2.578-.203 4.906L659 865l-.621-1.934-.816-2.504-.809-2.496c-.575-2.029-.575-2.029-1.754-3.066-2.333-.041-4.667-.042-7 0l-.875 2.688c-.956 2.816-1.993 5.563-3.125 8.313h-1l-1-7h3l-1-5-5-1c1.375-2 1.375-2 3-4h2l2 3 1.25-1.312c4.645-4.479 7.302-5.728 13.75-4.687z" fill="#e5242f"/><path d="M141 424c2 2 2 2 2.234 4.739l-.023 3.53-.01 3.994-.041 4.334-.016 4.423-.065 11.653-.096 18.665-.045 6.536-.02 3.984-.025 3.528c-.192 2.54-.192 2.54 1.107 3.612l.563 7.313.129 2.17c.342 6.175.414 12.334.309 18.518-2.185-3.603-2.606-7.267-3.062-11.375l-.473-3.898L141 501l-.276-2.78c-.942-10.963-.875-21.928-.854-32.924l-.006-10.063c-.003-10.452.003-20.83 1.137-31.232z" fill="#fdf4ea"/><path d="M682.167 950.87l6.081-.006 3.92.004 3.54.003c3.181.125 6.169.532 9.292 1.129v1h-41v2h4c1.038 3.114 1.127 5.275 1.129 8.541l.01 3.438-.006 3.712.003 3.807-.005 7.971.004 10.226-.001 9.746.006 3.718-.01 3.428-.002 3.028C669 1015 669 1015 668 1017h-4v2h23v1h-28v-4l3.438-.375L666 1015c1.297-2.593 1.12-4.464 1.114-7.368v-3.397l-.016-3.681-.004-3.758-.025-9.893-.02-10.095L667 957l-7-2v-3c7.403-1.026 14.697-1.154 22.167-1.13z" fill="#c82e35"/><path d="M685 838c2.438.063 2.438.063 5 1 1.875 2.313 1.875 2.313 3 5-.281 2.584-.731 3.725-2.559 5.598l-1.879 1.465c-3.313 2.607-5.378 4.49-5.937 8.875.157 3.092.157 3.092 1.875 5.438 3.633 2.361 6.218 1.91 10.5 1.625v2h-11v-2h-5l-1 4h-5l-1-4h3v-2h2v-2h3l1-8h2l1-3-4-2 1.5-2.187c1.606-3.011 1.59-4.492 1.5-7.812l2-2z" fill="#f3f0f2"/><path d="M624 281h8l1 4h2l1 7-2-1-1 6h-2v-2h-2v2h-2v4h-2v2h-3c-1-3-1-3 0-6l-2-1c-2-3-2-3-1.625-6.187L619 287h2v-2h4v4h-2v6h3l1-6h2v-4h-3v-2h-2v-2z" fill="#f21823"/><path d="M519 873c2.375-.125 2.375-.125 5 0 2 2 2 2 2.195 3.945L526 883l-3.562 1.313c-6.684 2.103-6.684 2.103-12.437 5.688-.24 4.233-.325 7.367 2 11-3.875-.875-3.875-.875-5-2-.235-6.224-.235-6.224.566-8.871.578-2.839.068-5.051-.504-7.879l-.59-2.984L506 877h3v4c3.431-.55 3.431-.55 7-2 1.994-2.984 1.994-2.984 3-6z" fill="#fbe8e7"/><path d="M405 617h2v20h2v10h-1l-1-6c-2.874 2.716-2.874 2.716-5 6h-2l-.184-3.148c-.455-7.636-.957-15.248-1.816-22.852h7v-4z" fill="#e7dcb5"/><path d="M527 6l1 2 2-1c3.286-.239 6.581-.185 9.875-.187l2.762-.037 2.668-.006 2.437-.012c2.482.267 4.11 1.002 6.258 2.243l-2.812-.062c-3.21-.095-3.21-.095-6.187 1.063l-5.665.022-3.518-.061-3.798-.082-3.888-.072-10.224-.202-10.437-.201L487 9v2h-16V7l56-1z" fill="#ec1b22"/><path d="M430 285h3v6h6v2h2l2-4 3 1-3 1c-1.225 3.008-1.225 3.008-2 6h-2v-2h-8v4h7v2h-3v10h-2v-10l-4 1-1 9h-1l-.367-3.359-.508-4.391-.238-2.211c-.438-3.707-.885-6.844-2.887-10.039h-2v-2h8l1-4z" fill="#f61527"/><path d="M255 343l7 28h-2l-1-8h-2v2h-4l-1 7-3 1v-24h2l.375-2.437L252 344c2-1 2-1 3-1z" fill="#f6f7f6"/><path d="M599 687h16c0 7 0 7-1.437 9.438-3.902 2.379-7.106 2.243-11.562 1.563-4.079-1.136-8.041-2.5-12-4v-1h7v-4h2v-2z" fill="#e82029"/><path d="M554 860h3v7h10l-1 5h-8v10h-1v-9h-7l-1 16h-1v-16h-5v-3c1.645-1.465 1.645-1.465 3.813-2.937 2.396-1.637 4.06-2.884 5.762-5.254L554 860z" fill="#d92d37"/><path d="M448 861h4l-1 5 2.063-1.562c3.739-1.83 5.942-1.299 9.938-.437.188 3.375.188 3.375 0 7-3 2-3 2-4.875 1.813-2.576-.985-4.777-2.375-7.125-3.812-1.283 7.411-2.255 14.473-2 22l3 1v3l-9-1c-.125-6.75-.125-6.75 1-9h3v-10h2c.167-3.417.167-3.417 0-7l-2-2 2-1-1-4z" fill="#de2832"/><path d="M716 521h1l2.203 8.82 1.406 5.547c1.803 7.019 2.551 13.48 2.516 20.695l.012 2.393c-.007 3.981-.152 7.659-1.137 11.545h-1v-23h-2v10h-3c-1.726-5.916-2.143-12.572.5-18.187L718 537h-3c-1.461-2.647-2-3.894-2-7l2-1c.465-1.895.465-1.895.625-4.062L716 521z" fill="#e82b36"/><path d="M360 845l.938 1.938c.897 1.999.897 1.999 2.063 3.063l-1 7-.562 3.438L361 863h4v8h2v3c-4.49-.587-8.225-1.764-12.375-3.562l-3.211-1.379L349 868v-2h5l.551-2.055A596.48 596.48 0 0 1 360 845z" fill="#e4252e"/><path d="M838 277c2.209 2.8 3.926 5.595 5.523 8.781l1.397 2.781 1.454 2.937 1.503 3.029c3.316 6.73 6.437 13.462 9.122 20.471l1.859 4.754C870.835 350.578 870.835 350.578 873 364h2v9c-2-4-2-4-2-8h-2l-.559-2.621c-3.834-16.649-9.553-33.095-17.039-48.461-1.626-3.384-3.078-6.831-4.527-10.293-2.394-5.627-5.078-10.687-8.266-15.898l-1.422-2.414-1.332-2.199c-1.012-2.501-.772-3.623.145-6.113z" fill="#ce636d"/><path d="M310 625l3.438 2.938 1.934 1.652L318 632c.094 4.376-.148 8.752-.312 13.125l-.107 3.711c-.221 6.1-.7 11.372-2.58 17.164-.237 2.819-.237 2.819-.125 5.438l.055 2.621L315 676h-2l-.184-3.508-.254-4.617-.119-2.305c-.238-4.255-.646-8.374-1.443-12.57h2v-16h-6v-2h7l-1.437-1.062c-2.241-2.779-2.234-5.452-2.562-8.937z" fill="#eed7b2"/><path d="M919 246c2.733 3.36 4.658 7.009 6.563 10.875l1.044 2.115L930 266l1.17 2.432c5.461 11.449 10.324 23.09 14.83 34.943l1.421 3.727c2.218 5.918 4.23 11.72 5.579 17.898h2l1.563 6.75.879 3.797c.515 3.184.445 4.498-.441 7.453l-.927-2.892c-6.476-20.13-13.31-39.835-22.073-59.108l-1.239-2.745c-4.071-8.969-8.283-17.628-13.644-25.908C918 250 918 250 918.32 247.684L919 246z" fill="#cb4050"/><path d="M96 266l2 1c-1.771 5.73-4.216 11.056-6.727 16.488-5.815 12.825-10.32 26.227-14.773 39.574l-.717 2.136c-3.436 10.275-6.52 20.577-9.033 31.124l-.629 2.611-.518 2.252C65 363 65 363 63 365c1.193-8.024 2.831-15.765 5.063-23.562l.923-3.24C75.256 316.506 82.854 295.642 92 275l1.212-2.737L96 266z" fill="#cc485d"/><path d="M691.938 831.563c3.934.562 5.227 1.654 8.063 4.438 1.821 3.325 3.069 6.879 4.404 10.42.762 1.905 1.671 3.749 2.596 5.58 3.018 1.14 4.948.981 8 0-1.305 3.914-2.628 6.54-6 9-3.75.25-3.75.25-7 0l-1-2h3l1-6-2-1c-.722-1.644-1.394-3.311-2-5h-2v-2l-4-1c-.221-3.97.117-5.233 2-9h-12c4-3 4-3 6.938-3.437z" fill="#e51d1f"/><path d="M357 351h1l.125 6.688.07 3.762c-.187 3.4-.538 5.594-2.195 8.551l-3 1v2h-3l1.125 3.313c1.394 5.477.126 10.288-1.125 15.688l-1 5h-2v16h-2v12h-1l-.22-11.841-.132-5.972c-.072-7.162.431-12.535 3.47-19.033 1.313-3.208 1.129-6.05.882-9.467-.436-6.078-.436-6.078 1.863-9.297L352 367c2.542-5.092 4.402-10.318 5-16z" fill="#fdf1ea"/><path d="M413 285c6.409 4.876 11.123 9.817 12.813 17.875.337 4.696.274 9.42.188 14.125l-4-1-1-6-4-1v-2h4v-4h-3v-2l-3-1v-8h-4l2-7z" fill="#f9f6f4"/><path d="M357.375 950.75l3.336-.016C364 951 364 951 370 953l1 17h-4l-.812-2.047c-2.114-4.813-3.636-8.211-8.5-10.578L354 956v-2l-7-1c3.492-2.147 6.317-2.269 10.375-2.25z" fill="#f1191e"/><path d="M306 549h2c1.43 2.861 1.13 5.317 1.133 8.512l.004 3.986-.006 2.086.006 6.235-.004 4.006-.003 3.659c-.384 10.446-.384 10.446-4.129 14.517-1.163-3.488-1.162-6.636-1.168-10.266l-.01-2.156-.007-4.519-.039-6.86-.006-4.402-.022-2.049c.022-4.638.825-8.385 2.252-12.747z" fill="#ebdbba"/><path d="M165 767c3.191 1.395 5.191 3.004 7.539 5.563l1.995 2.151 2.091 2.286 4.313 4.641 2.109 2.271c4.924 5.264 9.866 10.547 15.578 14.963L201 801v4c-2.939-1.352-5.292-2.899-7.75-5l-1.859-1.562C190 797 190 797 190 795l-1.73-.742c-6.652-3.687-11.812-10.74-16.695-16.477-1.432-1.62-2.922-3.07-4.512-4.531C165 771 165 771 165 767z" fill="#e52d41"/><path d="M450 562h1c-.403 3.356-.773 6.421-2.012 9.578-1.355 4.69-1.327 9.189-1.426 14.047-.649 20.461-.649 20.461-4.562 24.375-.089 2.594-.115 5.16-.098 7.754l.004 2.35.031 7.459.014 5.045L443 645l-4 2 .48-2.869c.673-4.731.748-9.448.836-14.22l.063-2.862.183-8.985.131-6.119L441 597h3c1.292-4.915 1.111-9.773 1.063-14.812l-.014-2.678L445 573h2l.148-1.898.227-2.477.211-2.461C448 564 448 564 450 562z" fill="#eed3b9"/><path d="M544 407c5.988 1.698 10.083 2.896 14 8 1.829 4.495 2.282 8.4 2.379 13.234l.051 2.055.132 6.461.191 8.484.048 2.048c.143 5.274.539 10.485 1.198 15.718-4.777-4.777-4.172-12.736-4.195-19.098l.07-8.965.027-4.646L558 419h-2l-1-6h-8v8h-4v2h-2l3-16z" fill="#fae7df"/><path d="M549 87c8.665.592 17.176 1.69 25.75 3.063l3.594.564L587 92v1l-6 1 3 2c-3.944 1.315-7.086.436-11.062-.312C563.661 94.031 554.373 92.942 545 92v-1h6v-2h-2v-2z" fill="#eb1b2b"/><path d="M344 479c1.52 1.797 1.52 1.797 3 4-.312 3.25-.312 3.25-1 6h2v2h3v2h-4l1 20 3-3 .188 6.813.105 3.832c-.322 3.69-.7 4.039-3.293 6.355-.148 2.071-.148 2.071.313 4.188L349 535h-2v6h-2l-1 6h-1l.438-5.375.246-3.023.57-5.693c.84-7.184.898-14.342.876-21.565l.006-6.226c.004-8.747-.387-17.4-1.137-26.117z" fill="#e3e0b4"/><path d="M259 279h2v26l-2 1v-5h-4v-8h-2v21h-1c-1.167-4.621-1.148-9.082-1.125-13.812l-.012-2.33c.009-5.037.42-9.872 1.137-14.857l1 2 4-2v10h2v-14z" fill="#e42d32"/><path d="M974 497h1c.26 8.561-.706 16.95-1.687 25.438l-.268 2.338C970.532 546.501 966.025 567.73 961 589l-1-2h-2l.664-2.699c5.066-20.9 9.581-41.964 12.336-63.301l.41-3.175L974 497z" fill="#d15668"/><path d="M699 831v2h4l2 7.875.578 2.262C707 848.773 707 848.773 707 851h4v-4l1.875-.312c2.49-.563 2.49-.563 4.125-3.687 1.188 3.25 1.188 3.25 2 7-1.449 2.234-1.449 2.234-3 4l1.898-1.094 2.477-1.406 2.461-1.406C725 849 725 849 727 849v2h-3l-1 4c-6.625 1-6.625 1-10 1l2-4-1.75 1.063c-2.25.938-2.25.938-4.234.781-2.829-1.184-3.268-2.645-4.516-5.406l-1.273-2.723L702 843c-2.508-5.76-2.508-5.76-7-10-4.221-.367-7.177.201-11 2l-1-2h2v-2c5.021-.779 8.977-1.13 14 0z" fill="#f7efe9"/><path d="M722 577l3 1c1.111 3.94 1.087 5.779-.441 9.641-2.295 6.571-2.072 13.406-2.154 20.284l-.137 7.252-.335 20.315c-.162 8.719-.351 15.986-6.934 22.508l-1-2c.585-1.199 1.228-2.368 1.895-3.523 3.367-7.239 2.749-15.278 2.793-23.102l.102-7.092.047-4.384c.046-4.383.493-8.57 1.163-12.899l.316-4.621.127-2.393.119-2.424.131-2.506L721 587h2c.08-3.522.04-6.62-1-10z" fill="#f11630"/><path d="M355 341v8h-2v8h2l-1 8h-3v2h-4v-8h-2v-10h5v-6c3.875-2 3.875-2 5-2z" fill="#f11923"/><path d="M305.375 307.813l3.898-.043c3.664.227 6.379.744 9.727 2.23l2 3h-3v-2h-7v-2h-9v2h-7v2h-6l-1 4h3v4h2v6h-2l-1-4h-3v8c-2-2-2-2-2.125-4.625L285 324l-2-1-2 6c-1.124-3.304-.896-5.051.438-8.25l.871-2.141L283 317h2l.563-1.75c2.348-3.675 6.13-5.464 10.203-6.852 3.215-.573 6.346-.57 9.609-.586z" fill="#e41e23"/><path d="M266 257h1l.031 2.237.308 20.921.158 10.754.156 10.387.081 5.872.06 3.639.047 3.19c.162 3.064.596 5.985 1.158 8.999h-2l-1 2c-1.562-2.25-1.562-2.25-3-5l1-4 .133-8.668.003-2.532-.005-5.283.006-8.117-.004-5.131.006-2.465c.34-3.705.34-3.705-1.139-6.804-.141-2.671-.042-5.324 0-8h2l-.035-2.117-.027-2.758-.035-2.742C265 259 265 259 266 257z" fill="#ea1e35"/><path d="M533 957h1l.031 2.113.308 19.688.158 10.122.186 11.631.051 3.681.06 3.397.047 3.001c.006 2.385.006 2.385 1.158 4.366a101.17 101.17 0 0 0 6 2v3h-32v-3c2.906-1.257 4.796-2 8-2l1-8h1l1 12h12v-62z" fill="#d6454c"/><path d="M365 501h1l-.016 2.187-.047 9.75-.025 3.443-.01 3.271-.016 3.031c-.148 2.279-.148 2.279 1.114 3.317l1-16 3-1v32h-5c-1.778-8.051-2.281-15.707-2.187-23.937l.002-3.361c.048-8.849.048-8.849 1.186-12.701z" fill="#e02628"/><path d="M497 607c4.245 6.367 4.245 6.367 4.125 10.629l-.051 2.849-.074 3.084c-.198 15.512.613 31.159 3.014 46.502-.017 2.417-.811 3.869-2.014 5.935v-3h-2v-4h-2c-.87-2.997-1.118-5.65-1.098-8.766l.01-2.695.025-2.789.014-2.836L497 645l2 2c0-4.953-.219-9.908-.372-14.858l-.125-4.283-.186-6.171-.111-3.738c-.011-2.88-.011-2.88-1.205-4.949-.04-2-.043-4 0-6z" fill="#f3fefd"/><path d="M395 842l-1 8 2.313.438C399 851 399 851 402 852v3c-6.625.125-6.625.125-10-1l-1 2-1-3h-7l-2 8c-1.138-4.55-.428-6.631 1-11h-3v-3l2.555-.84 3.32-1.098 3.305-1.09C393.9 842 393.9 842 395 842z" fill="#f21428"/><path d="M455 409c1.938.75 1.938.75 4 2 .75 2.125.75 2.125 1 4l1-2h8v4h-3l-.437 2.625-1.102 5.984c-.594 4.369-.481 8.615-.398 13.016.085 7.704-.346 14.836-2.062 22.375h-3l.438-1.816c2.917-14.242 4.046-30.899-2.437-44.184v-2h-2v-4z" fill="#e81d25"/><path d="M487 3h48v2l-3.228.06C510.119 5.475 488.585 6.155 467 8l-6.766.563L455 9V7c6.613-2.438 12.952-2.228 19.938-2.125l3.518.027L487 5V3z" fill="#fefef1"/><path d="M392 647h1v6l-2 2c-.259 3.364-.366 6.687-.391 10.059-.119 3.588-.228 5.505-2.633 8.258L386 675l-.25 3.063L385 681c-5.949 3.245-11.331 3.369-18 3v-1l4.75-1 2.672-.562C377 681 377 681 381 681v-2h-2v-4h-4v-4h8v-2h5l-1-2c-.262-5.237.025-9.062 2-14h2l1-6z" fill="#e8272d"/><path d="M439 397l2 3c-.793 2.68-.793 2.68-2.187 5.875-4.683 11.668-6.034 21.669-5.825 34.15.132 9.761-.8 19.297-1.987 28.975h-1c-1.285-11.617-.506-22.439 1-34h-2c1.825-19.65 1.825-19.65 5-26h2v-6h2l-.062-2.437C438 398 438 398 439 397z" fill="#f01933"/><path d="M531 957h2v48h-2v8h-3c-.981-3.053-.981-4.947 0-8h2l-.007-1.778-.048-18.248-.021-6.818-.022-9.777-.016-3.1v-2.851l-.007-2.523C530 958 530 958 531 957z" fill="#f0162d"/><path d="M580 957l2 1 .11 23.389.041 7.962.044 11.423.031 3.614v3.336l.013 2.947C582 1013 582 1013 580 1015c-.819-6.927-1.148-13.742-1.133-20.715l-.003-2.962.005-6.139-.006-9.413.004-5.986-.006-2.841.01-2.632.002-2.311C579 960 579 960 580 957z" fill="#fbe0dc"/><path d="M704 798l3 5.938 1.688 3.34C710 810 710 810 710 811h-5l1 3h-2l1.625 2.25L707 819c-.914 2.172-.914 2.172-2 4l-1.023-1.863-1.352-2.449-1.336-2.426c-1.93-3.837-1.93-3.837-5.414-5.949L694 810c1.269-4.189 5.008-12 10-12z" fill="#ec1b29"/><path d="M405 866c1.26 2.521.919 3.854.563 6.625l-.309 2.477L405 877h2v-2l3 1-1 4c6.419 1.802 12.443 3.098 19 1-.379 2.746-.778 3.8-2.875 5.688-4.168 2.574-8.342 2.852-13.125 2.313-3-1.375-3-1.375-5-3v-2l-2-2h2v-3l-3-1-.625-4.312-.352-2.426C403 869 403 869 405 866z" fill="#f2171e"/><path d="M533.063 870.875C535 873 535 873 535 875h-4v-2h-2l-2 11-5 1 3-2c.363-1.977.363-1.977.188-4.125L525 875l-6-2-.812 2.875C517 879 517 879 514 881h-5c.072-3.079.238-5.242 2.484-7.477 6.336-4.63 14.49-6.988 21.578-2.648z" fill="#dc2b38"/><path d="M471 7v4h6v1l-13.375 1.5-3.793.434c-6.978.767-13.811 1.288-20.832 1.066v-4l9.5-1.437 2.688-.408C465.479 7 465.479 7 471 7z" fill="#da303b"/><path d="M333 637c2.326 3.634 2.163 6.771 2 11h-2c-.334 3.332-.334 3.332 0 7l1.813 1.813c2.932 2.932 3.466 5.839 4.527 9.781.644 2.53.644 2.53 1.848 5.344C342 674 342 674 342 677h-2l-2-8h-2v-8h-3v2h-4l1-8h-3v-2h-2c-1.125-3.75-1.125-3.75 0-6l3 1 1.375-2.5L331 643h2v-6z" fill="#e71f26"/><path d="M644 301l1 2h2v-2h2v2h4v8h-2v6h2l1-4h3v4h2l-2 9c-4-1-4-1-5.344-2.898C644 306.703 644 306.703 644 301z" fill="#f0d3b3"/><path d="M484.931 87.998c2.48 1.201 4.183 1.244 6.93 1.23h2.911l3.119-.031 3.211-.009 10.148-.062 6.883-.027L535 89v2l-1.715.031-17.914.341-6.656.125c-12.597.23-25.15.549-37.715 1.503v-1h6v-2l-10-1v-1c14.051-2.007 14.051-2.007 17.931-.002z" fill="#e23f47"/><path d="M237 833c3.151.621 5.324 1.682 7.977 3.477l2.27 1.524 2.378 1.625 2.429 1.644 4.77 3.247 5.582 3.766 2.719 1.844 2.32 1.57L269 853v2h2v2c-3.648-.565-6.218-1.5-9.328-3.477L259.259 852l-2.509-1.625-2.568-1.648c-15.668-10.146-15.668-10.146-16.893-13.914L237 833z" fill="#e0303d"/><path d="M417 657h2v4h-2v6h2v2h-3l-1 6h4v2h-3v2h4v2l-4.937-.875-2.777-.492L410 679c-1.962-3.924-1.425-8.4-.328-12.527.73-2.179 1.495-4.331 2.328-6.473l5-1v-2z" fill="#db292e"/><path d="M565 673h2v8l-3 1-1 5h15v2h-11l-2 5 2 1v2h14c-4.897 2.448-8.611 2.721-14 2-2.755-1.22-4.859-2.859-7-5-.792-8.055 1.575-13.772 5-21z" fill="#e21f24"/><path d="M274.563 556.938L277 557l.063 4.313.035 2.426C277 566 277 566 276 569l-.316 5.543-.127 3.252-.119 3.393-.131 3.428L275 593h-1v-20h-2v46h-1l-.052-23.808-.024-11.054-.019-10.659-.011-4.075-.008-5.69-.007-3.277c.166-3.362.304-3.416 3.683-3.499z" fill="#f1313b"/><path d="M126 213c1.103 3.736 1.103 3.736.18 6.113l-1.305 2.199-1.418 2.406-3.895 5.594c-2.814 3.816-4.751 7.968-6.816 12.223-2.373 4.709-4.97 9.28-7.587 13.857-2.176 3.816-4.233 7.657-6.159 11.608h-2c.629-4.338 2.222-7.942 4.188-11.812l1.029-2.041c3.419-6.651 7.147-13.122 10.909-19.584l1.774-3.048c3.513-5.973 7.183-11.799 11.101-17.514z" fill="#d7384d"/><path d="M331 333h6l-2 12h2l1-4 2 1-2.312 6.188-1.301 3.48c-1.252 3.008-2.515 5.667-4.387 8.332h-2c-.095-9.072-.145-17.982 1-27z" fill="#f2fef0"/><path d="M402 951h31l-1 4v-2h-20v2h11v2h-4v16h-2v-16h-6l-1 2-1.187-1.437c-2.221-1.914-3.946-2.175-6.812-2.562v-4z" fill="#e12123"/><path d="M568 3l6.875.375 3.867.211C582 4 582 4 584 6l-1 3h13l1 3-7-.812-2.276-.263-13.493-1.69C561.481 7.543 548.856 6.412 536 6V5h32V3z" fill="#fce8e8"/><path d="M573 951h32v4h-6v2h-4l-1 4c-1.125-3.75-1.125-3.75 0-6l-2.309.254c-6.461.637-12.27.709-18.691-.254v-4z" fill="#f21b2c"/><path d="M667 301c.983 2.948 1 4.941 1 8l1 2h-2l-2 6h-4v4h-2v6h2v2l-10-1-1-3-2 1-1 3h-2c-1.138-4.266-2-7.565-2-12h2v4h3v-3h2l2.832 5.371c1.158 1.952 1.158 1.952 4.168 2.629l.5-3.5c1.655-7.692 5.858-14.597 9.5-21.5z" fill="#e02628"/><path d="M1023 999h19v5h-87v-1l69-1-1-3z" fill="#cd2a33"/><path d="M679 955h16v1l-11 1-.055 22.479-.021 7.65-.022 10.984-.016 3.466v3.215l-.007 2.833c.17 3.347.737 4.989 3.12 7.373h-6v-58h-2v-2z" fill="#e82f43"/><path d="M613 861c7.259-.615 7.259-.615 10.938 2.438L626 866l1 1c.141 2.671.042 5.324 0 8l-3-1-1 3h-3l-2-6h-2c-3-6.625-3-6.625-3-10z" fill="#f11922"/><path d="M367 637h2c1.056 5.763.948 11.106.563 16.938l-.158 2.65L369 663h2c1.134 3.325 2.147 6.588 3 10h-10l-1 8 4 1c-1.666.043-3.334.041-5 0l-1-1c.312-5.096 1.631-8.733 4.063-13.203 2.152-4.125 2.493-8.23 1.938-12.797-1.42-2.227-1.42-2.227-3-4v-4h3v-10z" fill="#de2b30"/><path d="M871 390h1c1.927 9.111 3.592 18.252 5.125 27.438l.517 3.084L879 429l.334 2.125c.787 5.526.814 10.995.791 16.563l.012 2.799-.004 2.713-.003 2.432c-.138 2.534-.577 4.895-1.129 7.368h-1l-1-34h-2c-1.14-5.355-2.141-10.508-2-16 .118-4.656-.636-8.885-1.555-13.437-.567-3.262-.592-6.262-.445-9.562z" fill="#e7dec4"/><path d="M441 350c8.103 5.844 13.161 15.359 15.43 24.977.539 2.31.539 2.31 2.57 5.023-5.75-1.875-5.75-1.875-8-3v-10h-1l-2 6h-3v-8h2v-2h-4v-4h3l-1-2-3-1-1-6z" fill="#e4212b"/><path d="M492 550l3 1v10l2-4h3l1 10h-2v-6h-2v8h2l-2 31h-1l-.044-2.304-.268-10.509-.068-3.623c-.202-6.742-.884-12.721-2.969-19.15-1.04-3.86-.846-7.44-.65-11.414l-2-1h2v-2z" fill="#d32d2f"/><path d="M877 539h1c-.451 7.531-1.999 14.358-4.187 21.563l-.942 3.166c-2.313 7.675-4.851 15.25-7.601 22.779-1.002 2.756-1.942 5.511-2.832 8.305-1.806 5.527-4.151 10.846-6.437 16.188l-2-3c.456-1.9.456-1.9 1.457-4.086l1.11-2.526 1.245-2.763C866.07 579.43 871.628 559.167 877 539z" fill="#ca5163"/><path d="M460 919h43v2h45v1l-22.461.104-10.44.047c-18.459.12-36.702-.453-55.099-2.151v-1z" fill="#fbe3de"/><path d="M665 391h2c1.592 3.518 2.243 6.227 2.195 10.082l-.02 2.822-.051 2.908-.027 2.967L669 417h2v-20h2v16h2v4h-2v8h2v4h-4v-4h-2c-1.79-5.37-2.105-10.24-2-15.875.117-6.278-.364-12.049-2-18.125z" fill="#de2429"/><path d="M598 254l1.813 1.5c2.158 1.783 2.158 1.783 5.188 1.5v4h2v2h8l-2 4h-2v2l-4.937-.937-2.777-.527C601 267 601 267 600 266c-.141-2.671-.042-5.324 0-8l-2 1c-.113 5.083-.113 5.083 1 10-2.437-.75-2.437-.75-5-2-.812-2.125-.812-2.125-1-4l1 2h2v-5h-2v-2h2l2-4z" fill="#f2fcf8"/><path d="M612.688 859.938l3.012.027L618 860v1h-5l1 5-2-1c-2-.04-4-.043-6 0-1.816 5.448-1.429 11.464 0 17l-2 1c-1.204-3.754-1.099-7.332-1.062-11.25l.027-3.828L603 865h-3v4h-3l1 18c-3-2-3-2-4-5-.502-5.24-.649-9.627 1.625-14.437 5.079-5.48 9.681-7.712 17.063-7.625z" fill="#d62f3b"/><path d="M553 551c3.875.875 3.875.875 5 2l.313 6.843.064 2.168.193 7.133.137 4.944.277 10.383.367 13.306.278 10.22.136 4.905.18 6.866.105 3.948c-.042 2.684-.228 4.754-1.051 7.284-1.579-1.579-1.209-3.228-1.297-5.421l-.121-2.855-.117-3.118-.13-3.205-.265-6.752-.408-10.225-.26-6.568-.123-3.051c-.353-9.358-.591-18.717.221-28.055l.281-3.328L557 556l-6-1 2-4z" fill="#fbeee4"/><path d="M628 1002h3c.462 6.932-.991 10.633-3 18h-56l1-4 4 1-1 1 51 1v-6l-5-1 2.813-5 1.582-2.812L628 1002z" fill="#d6323f"/><path d="M666 957c2.204 3.306 2.252 4.315 2.259 8.158l.019 3.185-.012 3.438.006 3.53-.011 7.394.013 11.337-.008 7.176.012 3.438-.019 3.185-.005 2.806C668 1013 668 1013 666 1016c-3.625.188-3.625.188-7 0l1-3h5l1-56z" fill="#f9d8d1"/><path d="M446 265h3v2h2v2h2v4h-2v8l6-1 3 5h-3v-2l-2.625 1c-3.332.987-5.927 1.164-9.375 1 .75-5.75.75-5.75 3-8 .673-1.967.673-1.967 1.125-4.125L450 269h-2l-.812 2.125c-3.53 8.546-3.53 8.546-6.187 9.875.606-5.76 2.757-10.72 5-16z" fill="#faebe4"/><path d="M183 141c-1.526 3.651-3.725 5.901-6.562 8.625-3.128 2.886-3.128 2.886-5.437 6.375h-2l-.68 1.609c-1.768 3.202-4.081 5.872-6.445 8.641l-1.418 1.68L157 172l-2-4 2-3h4l.25-2.187c.907-3.402 2.35-5.267 4.75-7.812h2l.125-2.125c1.525-5.01 5.369-7.824 9.563-10.75C180 141 180 141 183 141z" fill="#faf7ee"/><path d="M423 983h32v2h2l1 4h-2v-2l-2.706.032-9.946.078-4.304.041-6.188.044-3.761.032C426 987 426 987 423 985v-2z" fill="#eb1c1e"/><path d="M412 329c7.481 4.499 7.481 4.499 8.754 8.18.246 2.195.246 2.195.246 5.82-2.733-.616-4.84-1.382-7.437-2.562-5.667-2.215-11.579-1.684-17.562-1.437l-1 5-4-1h3l-1-5c3.421-2.281 4.682-2.219 8.688-2.125l3.012.055L407 336l1-3h3l1-4z" fill="#f4f2ea"/><path d="M490 553h2l.367 2.852.508 3.773.492 3.727c.502 3.549.502 3.549 1.646 6.389 1.128 3.727 1.336 7.206 1.4 11.064l.059 2.194.152 6.876.117 4.688L497 606l-2-1-.076-2.443-.362-11.057-.119-3.844c-.213-6.279-.51-12.441-1.443-18.656h-2l-1 4h-3c.779-13.633.779-13.633 3-20z" fill="#fae1dd"/><path d="M430 275h1l1 10h-2l-1 4h-8v2h2c3.435 3.847 4.134 7.282 4.098 12.328l-.01 2.422-.025 2.5-.014 2.547L427 317h-1l-.262-3.656c-.796-12.108-.796-12.108-6.738-22.344l-1.883-2.242c-1.671-1.955-3.373-3.868-5.117-5.758 2.426-.866 3.571-1.174 6-.187l4 2.375c2.288 1.158 2.288 1.158 6-.187l2-10z" fill="#e43045"/><path d="M955 963h1l-.199 1.744c-.749 6.955-1.105 13.893-1.364 20.881l-.131 3.332L954 997h-1l-.562-12.875-.17-3.707-.146-3.535-.143-3.269C952 971 952 971 953 969h-86v-1h88v-5z" fill="#fea7b5"/><path d="M366 564h1c.278 13.598.278 13.598-2.562 18.938-2.904 6.188-1.501 11.872.563 18.063h-2v20h-1c-1.057-6.86-1.116-13.568-1.062-20.5l.014-3.359L361 589h-2c-.292-5.547.809-10.62 2-16h2v4h2l1-13z" fill="#f1ccac"/><path d="M242 205l2 3-1 3h-4v2h-3v7l-5-1v10h-2v6l-4-1 1-3h-3c-.316-2.137-.316-2.137 0-5 1.63-2.136 3.183-3.926 5.063-5.812l3.027-3.164 1.503-1.552 5.532-6.159L242 205z" fill="#f3fcfb"/><path d="M357 240l5 1 1 2-3 2-1 2h10l-1 4h-7v-2h-2v6l-6-2v5l-2-2 .375-7.125.336-3.883L352 242l3-1 2 9v-10z" fill="#d72524"/><path d="M477 375c2 4 2 4 1.688 7.688-.206 5.777 3.722 9.194 7.313 13.313 2.29 3.435 2.178 4.985 2 9h-2l-1.812-1.937c-2.009-2.275-2.009-2.275-4.75-2.5-2.437-.562-2.437-.562-4.25-3C474 395 474 395 474 393h2l1-18z" fill="#f4f6f3"/><path d="M66 333h3v4h-3l.125 3.625c.095 2.753-.186 4.551-1.094 7.188-1.162 3.591-1.443 6.8-1.656 10.563l-.227 3.773L63 365h-4v12l-2-1c-1.526-5.231-.511-9.324.836-14.426l.602-2.388 1.276-4.964 1.949-7.63 1.234-4.83.59-2.314c1.394-5.331 1.394-5.331 2.511-6.448z" fill="#f5fdfa"/><path d="M681.938 275.188l3.652.293c3.116.475 5.562 1.206 8.41 2.52l-2 5-2-3c-2.563-.73-2.563-.73-5-1v4h-6l1.063 2.313C681 288 681 288 680 291v-2h-3l-1-9 3-1v-2h-5l-.375 1.75c-.631 2.273-1.514 4.175-2.625 6.25-.25-3.312-.25-3.312 0-7 3.296-3.63 6.272-3.236 10.938-2.812z" fill="#e71d21"/><path d="M378 25c-2.877 1.918-5.182 2.857-8.437 3.945l-3.211 1.074L363 31.125l-3.352 1.129-3.211 1.066-2.941.977C351 35 351 35 348 35c1.818-4.242 4.317-7.039 8.34-9.336 7.721-3.088 13.645-2.55 21.66-.664z" fill="#fcfaf7"/><path d="M471 1011l4 2v-2h4v2h8v7c-3.226 1.613-6.747 1.121-10.289 1.098l-2.48-.004-7.856-.031-5.32-.014L448 1021v-1h31l-1-3-3-.937-3-1.062c-.875-2.125-.875-2.125-1-4z" fill="#f9e6e4"/><path d="M620 313l1 2-2.375-.562c-2.596-.697-2.596-.697-4.625.563h-6v2l-11 1c-1.073 7.549-1.073 7.549 0 15h-4l-1-9h-3c.498-3.683 1.063-5.65 4-8 2.301-1.15 3.94-1.239 6.5-1.437 4.504-.398 8.783-1.198 13.176-2.258 2.711-.355 4.71-.088 7.324.695z" fill="#e02434"/><path d="M257 83l1 4-3.812 3-2.145 1.688C250 93 250 93 247 93v2c-1.609 1.508-1.609 1.508-3.75 3.125l-2.109 1.633C239 101 239 101 235 101c0-2.125 0-2.125 1-5 2.463-2.294 5.216-4.118 8-6l3.75-2.75C253.889 83 253.889 83 257 83z" fill="#e52a38"/><path d="M471 955l3 1h-2l-1 53h-2v-4h-2l-.062-7.562-.025-2.135c-.021-4.543.34-8.821 1.088-13.303h2l-.016-2.263-.047-10.112-.025-3.562-.01-3.398-.016-3.142C470 957 470 957 471 955z" fill="#ee323d"/><path d="M922 685h4c-2.018 5.249-4.623 10.071-7.312 15l-1.436 2.695c-2.613 4.79-5.021 8.809-9.252 12.305h-2c1.617-6.415 3.426-13.007 8-18h3c1.414-2.639 2.372-5.071 3-8h2v-4z" fill="#f8fbf8"/><path d="M371 397h2c.207 5.789-.408 10.429-2 16h-2v-6h-2v30h-2l-.537-14.417-.187-4.906-.253-7.044-.098-2.222c-.053-1.803.001-3.608.074-5.41l2-2h5v-4z" fill="#f51628"/><path d="M523 317h2l1 16h-2l1 12h2l-1 24h-1l-.113-3.883c-.369-10.38-1.208-20.044-3.887-30.117l-.641-2.41c-.428-1.537-.888-3.066-1.359-4.59l1-1 .438-3.375C521 320 521 320 523 317z" fill="#e92937"/><path d="M711 835l1 3 2.063 1.375C716 841 716 841 716.25 843.688L716 846l-5 1v4h-4l-1.5-4.75-.844-2.672C704 841 704 841 704 837c4.75-2 4.75-2 7-2z" fill="#f7f8f8"/><path d="M427 655h2v12h3l1-8h1l.184 2.887.254 3.801.246 3.762c.193 3.448.193 3.448 1.102 6.258.215 2.293.215 2.293-1.332 4.59-3.124 2.169-4.938 2.117-8.703 1.953l-3.266-.109L420 682v-1h7v-2h7v-4h-3v-6h-5l-1 3-2-1v-2h-2v-4h3v2h3v-12z" fill="#e51f23"/><path d="M287 333h2v16h2v10h-4v-9l-2-1v12h-4l2-18 2 2c1.217-2.434 1.32-4.418 1.563-7.125l.254-2.758L287 333z" fill="#f61523"/><path d="M354 299h1v18h2l-2 4h-2v8h2v4h-3l-1 2v-6h-3v4h-3l2-6h2l-.125-2.25c.125-2.75.125-2.75 1.066-4.383 1.585-3.544 1.751-7.154 2.121-10.992.818-8.135.818-8.135 1.938-10.375z" fill="#f1191e"/><path d="M775 193h10v2h2v-2h2v2h2v2h-2v6h2l-1 4 5 1-1 5c-3.661-3.608-7.171-7.32-10.625-11.125-2.741-3.015-5.492-5.992-8.375-8.875z" fill="#f5f4f0"/><path d="M600 865h3l1 18-1-2h-2v4h2v3l-5-1c-3.068-13.863-3.068-13.863-1-18h3v-4z" fill="#f61627"/><path d="M513 309l1.887.535c2.078.64 2.078.64 3.926-.098 3.344-.669 6.005.522 9.188 1.563v2l1.938.313L532 314l1 3h-2v-2l-9-2v-2h-3v3l3 1c-.312 1.938-.312 1.938-1 4l-3 1 1 1v6c-6-6-6-6-6.098-8.723l.035-3.34.027-3.348L513 309z" fill="#e12731"/><path d="M148 182l2 4-1.142 1.446C141.251 197.095 133.826 206.779 127 217l-1-2c1.788-4.907 4.099-8.908 7.125-13.187l1.172-1.663C145.129 184.871 145.129 184.871 148 182z" fill="#d33447"/><path d="M409 957c2.573 2.573 2.253 3.562 2.259 7.136l.019 3.246-.012 3.52.006 3.602-.011 7.553.013 11.581-.008 7.326.012 3.513-.019 3.256-.005 2.869C411 1013 411 1013 409 1016l-4-1 2-2c1.266-2.532 1.159-4.35 1.205-7.184l.06-3.276.051-3.548.063-3.624.183-11.494.131-7.777L409 957z" fill="#f2e1d4"/><path d="M306 533c3.66 3.66 3.055 8.997 3.063 13.938L309 551l-1-2h-2c-.896 5.412-1.176 10.664-1.246 16.145l-.1 5.236-.131 8.19-.144 7.948-.025 2.487c-.127 5.766-.127 5.766-2.353 7.993l.317-18.292.104-6.199c.519-33.389.519-33.389 3.578-39.509z" fill="#e9c0a0"/><path d="M969 493c3 1 3 1 4 3 .852 13.179-.955 26.006-3 39-2.154-3.843-1.85-5.67-1-10 .066-2.416.086-4.833.063-7.25l-.027-3.703L969 511v-18z" fill="#f5fdf9"/><path d="M245 95l2 3-2 3h-2v2h4v4l-10 2v-2h-6l-1 4h-5c4.692-5.177 10.332-8.962 16-13l4-3z" fill="#f8faf7"/><path d="M577 873h3v2h3l1 14h-2l-1 8h-5l.494-1.702c.536-2.433.62-4.574.604-7.063l-.01-2.695-.025-2.789-.014-2.836L577 873z" fill="#f01922"/><path d="M932 663h1c.997 8.343-1.08 15.15-6 22-2.105.633-2.105.633-4 1a110.36 110.36 0 0 0-3 7c-1.562 2.438-1.562 2.438-3 4h-2c1.537-5.394 4.045-9.919 6.813-14.75 3.578-6.334 7.052-12.682 10.188-19.25z" fill="#fbf5f0"/><path d="M187 253h6v2h2v-2h4c-1.642 4.621-4.034 8.638-6.562 12.813l-1.248 2.1c-1.032 1.715-2.107 3.404-3.189 5.088h-1v-10h2v-4h-2v-6z" fill="#f9f4f0"/><path d="M630 630l-.937 1.813c-2.766 5.694-2.742 11.219-1 17.188 1.199 4.384.974 7.558-.062 12l-4 4c-1.237 3.274-2.146 6.608-3 10-.826-2.892-1-4.887-1-8l-1 2h-2v-4h5v-4h4v-4h-2l-1-4h2l-.048-1.788-.14-8.024-.076-2.814-.029-2.705-.048-2.491c.508-3.246 1.943-5.177 5.341-5.177z" fill="#da2d37"/><path d="M532 455h1l.076 2.177L535 501l-3.812 1.984-2.145 1.116c-2.453 1.08-4.391 1.231-7.043.899v8h-2l.098-6.055c.029-2.027.029-2.027-1.098-3.945h10v-4l3-1v-3h-7v-2h8l-.217-1.673c-.887-7.659-.898-15.249-.846-22.952l.014-3.91L532 455z" fill="#de2735"/><path d="M411 957h3l-.317 20.758-.104 7.05-.164 10.18-.035 3.142c-.135 6.799-.961 13.22-2.379 19.87l-2-3 1-2a105.22 105.22 0 0 0 .205-5.368l.06-3.397.051-3.681.063-3.758.153-9.893.161-10.095L411 957z" fill="#e51e30"/><path d="M589 258l3 1 .938 3.438c.672 3.625.672 3.625 3.188 5L598 268l-1-2v-7l3-1 1 8 5 2v1h-5v2h-3l-2 4c-3.828-3.425-5.868-5.957-7-11-.125-3.375-.125-3.375 0-6z" fill="#de232c"/><path d="M118 231h1v6h-3v4h-3v2h2v4h-2v4h-2v2h-2l-.375 1.75c-.663 2.387-1.213 4.203-2.625 6.25l-5 1c11.631-23.522 11.631-23.522 17-31z" fill="#fcf6f6"/><path d="M577 93c22.463-.909 22.463-.909 28.863 4.605L607 99l-1 2c-5.43.213-10.068-.504-15.312-1.875l-2.166-.527c-5.263-1.339-5.263-1.339-7.521-3.598-1.317-.697-2.649-1.37-4-2z" fill="#e32732"/><path d="M867 926h1c.16 11.701-.336 23.319-1 35l-1-2h-2c-1.532-3.065-1.146-6.266-1.125-9.625l.006-2.187c.039-4.804.328-9.442 1.119-14.187h2l1-7z" fill="#e29da3"/><path d="M673 33c5.76.606 10.72 2.757 16 5l-1 5h6l1 3c-5.808-.624-10.83-2.746-16.187-4.937l-2.732-1.092c-3.618-1.463-6.82-2.797-10.08-4.971 3.133-1.044 3.99-.934 7 0v-2z" fill="#dc333e"/><path d="M683 957h1v52l3 1-1 3h16v-2h5c-1.313 2.626-2.324 2.695-5.062 3.625-5.574 1.737-10.363 2.525-15.875.063C684 1013 684 1013 683 1010c-.088-1.733-.118-3.47-.114-5.206v-3.215l.016-3.466.004-3.552.031-11.249.014-7.619L683 957z" fill="#fefaeb"/><path d="M473 649h4v4h2v16h2v4h-2l-.312 1.938L478 677l-3 1v-5h2v-4h-2v-15l-2-1v-4z" fill="#f31723"/><path d="M583 872h1l3 21 4 1v3l-19 2v-3l2-1 1-7h1v9h5l-.125-3.875c-.07-2.18-.07-2.18.125-4.125l2-2a93.85 93.85 0 0 0 .125-7.625l-.027-2.141L583 872z" fill="#df2e36"/><path d="M456 679l1 2-2 4h-2v4h22l1 2c-3.882 2.592-8.007 2.332-12.5 2.313l-2.301.049c-3.424.003-5.76-.098-8.73-1.881L451 690c.492-6.4.492-6.4 3.063-9.437L456 679z" fill="#e31f25"/><path d="M377 245c1.478 2.957 1.06 5.742 1 9l-3 1v-4l-5-1-1-3h-10v-4c6.042-1.699 12.428-.871 18 2z" fill="#e62230"/><path d="M575.326 948.886l4.427.016 2.35.004 7.459.031 5.045.014L607 949v6h-2v-4h-32v4l7 1v1l-3.812.125-2.145.07C572 957 572 957 569 955c2.298-5.976 2.298-5.976 6.326-6.114z" fill="#fdf9ed"/><path d="M690 615h1v6h2l.563 6.875.316 3.867C694 635 694 635 693 637h-2v-6h-2l.289 1.766c.956 7.073.158 13.274-1.289 20.234h-3l5-38z" fill="#e82530"/><path d="M323 49c-1 3-1 3-2.747 4.167l-7.378 3.521-2.555 1.26c-5.048 2.387-8.735 3.575-14.32 3.053 3.125-2.645 6.088-3.844 10-5v-3c5.934-3.077 10.299-4.487 17-4z" fill="#e32029"/><path d="M425 988h1l.076 2.371.362 10.567.119 3.732.127 3.545.111 3.285c-.071 2.44-.071 2.44 1.205 3.5a235.65 235.65 0 0 0 7 1v4h-32v-4h6v3h18c-.752-3.278-.752-3.278-4-5h2v-26z" fill="#d24a50"/><path d="M551 861h2c-1.589 4.289-4.431 6.323-8 9h-2v3h5l.184 3.219c.609 10.418.609 10.418 1.816 20.781h-3l-2-22h-4c-.125-6.625-.125-6.625 1-10h7l2-4z" fill="#fbe0da"/><path d="M525 541l4 2v2h4v-2h2v6h-2v4h2v4l-4-2-2 7h-1l-1-13h-2v-8z" fill="#e32022"/><path d="M563 413h2v8h-2v7l4-1v2h-2l-.375 2.875C564 435 564 435 562 437l-.625 8.125-.117 2.285L561 453h-1l-1-36h3l1-4z" fill="#d7272f"/><path d="M583 311h9v2l1.828-.07 2.422-.055 2.391-.07c2.567.212 4.151.909 6.359 2.195l-2.047.184-2.703.254-2.672.246A44.11 44.11 0 0 0 591 317l-.551 2.371-.762 3.066-.738 3.059L588 328l-3 1v-2h2l-2-10h3v-2h-5v-4z" fill="#faf4f1"/><path d="M479 637c4.678 6.085 7.701 11.331 7.406 19.191-.789 5.455-2.586 10.623-4.406 15.809-1.005-3.015-1.103-5.042-1.062-8.187l.027-2.73L481 659h2l-2-3 .563-1.875L482 652l-1.437-2.125c-2.289-4.211-1.809-8.179-1.562-12.875z" fill="#e71f33"/><path d="M365 621h1c.198 5.171.133 9.946-1.062 15-1.12 5.072-1.259 9.944.063 15l3 4c.424 5.26-.019 9.046-2 14h-1v-14h-2v-6h-2l-1 3-1-7h2l-.062-3.187c.064-3.892.162-7.181 2.063-10.625 1.513-3.309 1.639-6.576 2-10.187z" fill="#f1d1af"/><path d="M431 474l2 3 2.125 3.125c2.436 4.213 2.262 8.132 1.875 12.875l-6 1c-2.248-4.497-2.167-8.079-2-13h2v-7z" fill="#e0211f"/><path d="M268 435h1l1 48 1-6h2c.204 5.738.271 10.605-2 16h-2v-6h-2v2h-2l.974-2.815c1.422-5.003 1.38-9.98 1.44-15.15l.059-3.131.152-9.841.117-6.697L268 435z" fill="#da3333"/><path d="M657 851h3v3l5-1 2.063 4.75 1.16 2.672c.835 2.77.874 3.938-.223 6.578l-2 2-1-4h-5l-.375-3.312c-.38-3.761-.38-3.761-2.625-6.687v-4z" fill="#f21724"/><path d="M956 601c1.745 6.979 2.329 11.403-.25 18.25l-1.328 3.641c-1.248 2.73-2.13 4.249-4.422 6.109l-3-1 9-27z" fill="#f7efed"/><path d="M554.125 548.563C558 549 558 549 560 551l-.023 7.195-.076 2.144-.276 6.786-.172 4.598L559 583h-1l-1-30-4-1-1.277 1.715-1.66 2.223-1.652 2.215C547 560 547 560 546 561c-3.437.188-3.437.188-7 0l-2-2h9l-.25-2.187c.478-5.379 3.021-8.114 8.375-8.25z" fill="#d64248"/><path d="M581 849c.361 6.378.361 6.378-1.125 8.938-2.66 1.507-4.877 1.262-7.875 1.063-1.537-2.44-2.021-3.707-1.812-6.625 1.925-5.626 5.97-4.289 10.813-3.375z" fill="#e32a36"/><path d="M378 781l1 2 4 2v2h2v2l1.875.813C389 791 389 791 391 794c-7.859-.714-14.738-2.955-22-6v-1l3.375-.75c3.671-.86 3.671-.86 5.063-3.375L378 781z" fill="#e7dec1"/><path d="M885 480h1l.165 13.287.062 4.513.067 6.516.048 3.951c-.377 4.128-1.593 6.998-3.341 10.732-.727 2.485-.727 2.485-1.168 4.84l-.518 2.529-.502 2.568-.537 2.65L879 538h-1c.528-6.443 1.435-12.754 2.5-19.125 1.266-7.624 1.965-15.129 2.289-22.848C883 493 883 493 884 491a142.02 142.02 0 0 0 .563-5.625l.254-3.039L885 480z" fill="#d995a1"/><path d="M709 1009l2 1-2 5h7c-4.897 4.897-11.798 5.053-18.375 5.063L693 1020v-1h6v-2h-11l1-2 3.375.25c5.336.019 9.916-1.852 14.625-4.25l2-2z" fill="#e42232"/><path d="M710 963c2.813.438 2.813.438 6 2 3.71 7.969 3.349 15.962 3.188 24.563l-.041 4.213L719 1004l-4-1-1 4h-2l.875-2.125L714 1002l1.055-2.59c1.208-4.359 1.238-8.348 1.195-12.848l.023-2.486c-.021-6.519-.934-12.354-4.398-18.014L710 963z" fill="#e52f41"/><path d="M496 869c2.656 2.656 2.999 3.983 3.25 7.813-.14 3.774-.716 7.451-1.25 11.188-.08 2.674-.047 5.324 0 8l3 1v3l-8-1v-2h2v-4h-2v-8h2v-8h2l-1-8z" fill="#dc303c"/><path d="M649 867c2.448 3.673 4 6.546 4 11h4v2l-6.75 2.5-1.922.723C644.967 884.448 642.631 885 639 885l1-3h2l-.473-1.828-.59-2.422-.598-2.391c-.355-2.463-.109-4.015.66-6.359l2 1v7h2l-1 4 6-2-1-6h-2v-2h2v-4z" fill="#d0313c"/><path d="M533 475l2 1v17l9 3-13 13-1-3-3-2c5.75-3 5.75-3 8-3l-.437-3.91-.562-5.152-.289-2.568c-.521-4.824-.816-9.518-.711-14.369z" fill="#f4e6e3"/><path d="M350 445h1l.184 2.117.254 2.758.246 2.742c.186 2.394.186 2.394 1.316 4.383.134 2.672.043 5.323 0 8h-2l-1-5-3-1v2h-2l.125 3.625c.014 3.798-.705 6.825-2.125 10.375l-2-4-1.187-2c-.812-2-.812-2-.812-3.937 1.282-2.644 3.234-3.993 5.504-5.789 4.649-3.957 5.01-8.539 5.496-14.273z" fill="#f7c2a9"/><path d="M958 341h3v8h5l2 10h-2v4l-4-1-2-7.125-.578-2.016c-1.114-4.058-1.631-7.656-1.422-11.859z" fill="#ede0e1"/><path d="M432 264h2v15c4.106-3.079 5.123-4.691 7.25-9.187l1.578-3.293L444 264h2l-.875 4.25-.492 2.391C444 273 444 273 442.938 275.094c-1.309 2.661-1.07 4.987-.937 7.906-3.024-.588-6.018-1.227-9-2v-8h-2l1-9z" fill="#dc2c33"/><path d="M183 927h48v2l-48 1v-3z" fill="#f41721"/><path d="M413 871h4v2h12v2h-6v2h2v4h-10v-4h-2v-6z" fill="#f2fdfa"/><path d="M394.625 652.875L397 653c-.779 12.67-.779 12.67-3 18l-4-1-.125-7.375-.051-2.117c-.018-1.837.073-3.674.176-5.508 2-2 2-2 4.625-2.125z" fill="#e7debf"/><path d="M269 525h1l.684 6.152c.135 1.859.135 1.859 1.316 2.848v7h3v16l-4 1c-2.388-22.595-2.388-22.595-2-33z" fill="#ec1a29"/><path d="M427 413h2v8h2l1-2c-.847 5.365-1.917 10.679-3 16h2v10h-4v-32z" fill="#e32120"/><path d="M521 335c4.64 6.961 5.125 17.857 4 26-1.47 2.343-3.045 4.045-5 6l-.078-2.16c-.38-6.409-1.271-10.54-4.922-15.84h5v4h2l-1-18z" fill="#fad8dd"/><path d="M779 253h6v4h2v4h2c-1.566 4.308-3.683 8.062-6 12h-1l1-12-3 7h-1c-.125-7.625-.125-7.625 1-11-.389-2.143-.389-2.143-1-4z" fill="#efd5b4"/><path d="M181 941h2v18h-2l-1 6h2l1 4h-3v2h-13v-2h11l-.062-4.875c-.062-4.875-.062-4.875 1.063-7.125h2v-16z" fill="#fbf9f1"/><path d="M567 823h29c-3.147 2.098-4.87 2.487-8.543 3.07l-3.252.527-3.393.527-3.428.551L569 829v-2h-2v-4z" fill="#f4f4f3"/><path d="M636 621c.857 3.081 1.269 6.068 1.563 9.25l.254 2.703L638 635c-3.434.859-5.617.976-9 0-.207 9.054-.207 9.054 1 18h-2c-3.593-12.575-3.593-12.575-.75-18.687 1.217-1.609 2.47-3.19 3.75-4.75 2.119-2.715 3.551-5.447 5-8.562z" fill="#fcebe9"/><path d="M566 485c-1.643 4.675-1.643 4.675-3.555 6.414-2.295 2.519-1.784 4.763-1.687 8.031.338 3.569 1.068 7.005 1.902 10.488C563 512 563 512 562 514h-3l-.297-2.379c-.918-6.452-2.021-11.221-5.703-16.621h2l1-2 2 4 .332-1.863.48-2.449.457-2.426c1.261-3.906 2.596-5.262 6.73-5.262z" fill="#fae9e3"/><path d="M624 306c2.623 1.311 2.563 2.197 3.5 4.938 2.39 6.348 5.791 12.081 9.234 17.904l1.316 2.28 1.208 2.045C640 335 640 335 639 338c-1.206-2.332-2.165-4.496-3-7l-1.875-.312C632 330 632 330 630.25 327.25c-1.184-3.08-1.536-5.005-1.25-8.25l-2.812-.75c-3.352-1.315-4.375-2.23-6.187-5.25l4-1v-6z" fill="#f2c2a3"/><path d="M257 301h2v32h-2l-1.5-7.562-.434-2.135c-2.235-11.549-2.235-11.549.934-16.303a99.64 99.64 0 0 0 1-6z" fill="#e51f21"/><path d="M275 675v6h-2v4h3l.375-3.937c.211-2.215.211-2.215.625-4.062l2-1v5h2v6h-9v-2h-5c1.472-7.604 1.472-7.604 4-9.5 2-.5 2-.5 4-.5z" fill="#f41822"/><path d="M868 576l1 3h2v9h-2v3h-2v4l-3 1c-1.018 1.865-1.018 1.865-1.687 4.063l-.762 2.223L861 604l-2-1 9-27z" fill="#f7efee"/><path d="M590 369h3v2h-2v2h2v4h2l-1 12c-5-1-5-1-6.812-3.562L586 383l-2 2-8.625.125-2.43-.027L567 385l1-2c5.126-.103 9.95-.036 15 1l1-5 3-1c3 5.625 3 5.625 3 9h3l-.656-2.16c-1.587-5.458-2.723-10.155-2.344-15.84z" fill="#cc343a"/><path d="M477 873c.853 2.907 1.073 5.31.879 8.328l-.146 2.422-.17 2.5-.158 2.547L477 895h3v3h-7l2-5h-2l-.062-7.875-.025-2.262c-.025-5.637-.025-5.637 1.088-7.863h3v-2z" fill="#e71f32"/><path d="M392 610h1l1.375 5 .773 2.813L396 621l1.09 3.664c1.291 5.205 1.165 10.378 1.098 15.711l-.002 3.02c-.045 7.324-.045 7.324-1.186 9.605h-2l.032-2.108.093-9.517.051-3.316c.05-7.713.05-7.713-2.176-15.059h-1l-.562-5.937-.316-3.34L391 611l1-1z" fill="#d53233"/><path d="M256 256c.373 8.312-.348 15.714-2.266 23.809-.859 3.732-1.354 7.385-1.734 11.191h-1l-.125-7.062-.07-3.973c.201-4.083.924-7.115 2.195-10.965h-2v-12c4-1 4-1 5-1z" fill="#f8faf4"/><path d="M321 961v2h3l1 6h-2l.125 3.75c.012 3.266-.268 5.465-2.125 8.25v-8h-3l-1-3h-3c2.167-9 2.167-9 7-9z" fill="#f31827"/><path d="M353 487c6.158-.33 10.423.26 16 3 .789 2 .789 2 1 4-1.062 1.75-1.062 1.75-3 3-3.187.188-3.187.188-6 0v-4h-4v-3l-4-1v-2z" fill="#f4caad"/><path d="M431 263l3 1h-2l-.148 2.055c-1.406 17.5-1.406 17.5-4.852 20.945-4.144-.345-7.368-2.068-11-4l-2.375-1.187L412 281c4.824-.193 8.496.243 13 2v-6h2v4h2l-.254-2.23-.309-2.957-.316-2.918c-.119-2.837.201-5.149.879-7.895h2v-2z" fill="#fce9e6"/><path d="M757 239c3.501 1.299 6.492 2.852 9.625 4.875 4.54 2.795 9.063 4.626 14.125 6.266C783 251 783 251 785 253l-2 2v-2h-8v-2l-3-1-2.5-1.625L767 247c-3.118.646-3.118.646-4 3l-3-3.812-1.687-2.145C757 242 757 242 757 239z" fill="#e7dfc0"/><path d="M376 291h2l-.035 2.359c-.085 10.575.441 21.086 1.035 31.641h-2v-8h-4c-.042-2.333-.041-4.667 0-7l1-1c.211-2.267.369-4.539.5-6.812.447-7.704.447-7.704 1.5-11.187z" fill="#e42939"/><path d="M578 11c8.297-.197 15.951-.259 24 2v2l2 1c-6.1 3.05-14.677.302-21-1v-2l-5-1v-1z" fill="#df262d"/><path d="M463 989h2l.125 7.75.051 2.211c.035 3.844-.001 6.785-2.176 10.039h8v4h-12l1-8h3v-16z" fill="#f41622"/><path d="M700 787l1 2h-2v2h-3v2h5v2l3 1 3 1v2l-3 1v-2h-2l-2 4h-3l-2-4 2-3h-10c2.935-2.201 5.566-3.955 8.75-5.687l2.422-1.324L700 787z" fill="#faefee"/><path d="M685 781h3v2h5v2l2 1-8.125 4.375-2.305 1.25c-4.116 2.2-8.065 4.065-12.57 5.375l-1-2h2l2-4h8v-2h-2v-2h4v-2h2v-2h-2v-2z" fill="#fcf0f1"/><path d="M67 585h2l4.327 13.135 1.476 4.47 2.107 6.419.678 2.024c1.525 4.725 1.525 4.725.411 6.953l-2 1c-2.493-7.102-4.708-14.257-6.75-21.5l-.675-2.355-.622-2.239-.558-1.99C67 589 67 589 67 585z" fill="#d6404f"/><path d="M59 539h2v2h2l.184 2.371.254 3.066.246 3.059c.049 2.44.049 2.44 1.316 3.504l.063 5.063-.027 2.785L65 563h2c1.262 2.525 1.099 4.312 1.063 7.125l-.027 2.758L68 575h-2c-2.635-7.77-4.026-15.517-5.187-23.625l-.537-3.621L59 539z" fill="#fbebe1"/><path d="M253 293h2v8h2c.251 5.514.251 5.514-1 7.938-1.667 3.439-1.507 7.279-.469 10.93.593 2.698.404 5.011.156 7.758l-.238 2.914C255 333 255 333 253 335v-42z" fill="#f81735"/><path d="M55 528h1l.228 1.674 1.085 7.826.401 2.873c1.031 7.218 2.331 14.341 3.833 21.475.412 2.865.44 4.477-.547 7.152v-2h-2c-2.296-9.41-2.296-9.41-2-14h-3l1-25z" fill="#fee7e0"/><path d="M759 77c4.791-.543 7.036 1.034 10.813 3.875l2.957 2.18L775 85v2h2l1 4c-4.754-.495-7.552-1.721-11.375-4.562l-2.648-1.941L762 83l1-3-4-1v-2z" fill="#e42733"/><path d="M685 851l3 1-2.5 2.125c-2.726 2.642-2.726 2.642-3.062 5.938.384 2.976.384 2.976 2.063 5.313 3.633 2.361 6.218 1.91 10.5 1.625v2h-11v-2h-5l-1 4h-5l-1-4h3v-2h2v-2h3l1-8h2l2-4z" fill="#fcdadd"/><path d="M138 448h1l.06 2.281c.394 14.359.923 28.645 2.279 42.951.495 5.281.942 10.464.661 15.768l-2 2c-2.531-20.972-2.202-41.915-2-63z" fill="#c14258"/><path d="M345 429c4.58 4.028 4.761 9.214 5.262 15.047.228 6.318-.002 10.161-4.262 14.953l-1-4h2l-1-4h-3v-4h2v-2h3l-2-8-2 2-1-5h1l1-5z" fill="#e41f25"/><path d="M429 365h2v4h2v-2l8-1 1 8-4.492-3.809c-1.514-1.279-1.514-1.279-3.508-2.191l.875 6.25.492 3.516c.556 2.843 1.343 4.701 2.633 7.234l-1 2h-2c-2.097-3.146-2.52-5.015-3.125-8.687l-.508-3.012L431 373h-2v-8z" fill="#d92325"/><path d="M418.563 308.938L421 309l1 4h-4l-1 4h-2v6h-2l1 5h-3c-2-3-2-3-2-6h2l-.25-2.625c.347-4.69 2.633-10.311 7.813-10.437z" fill="#de212b"/><path d="M315 677l3 1c.949 2.066.949 2.066 1.688 4.563l.762 2.504L321 687l8.75.125 2.5.051 2.422.02 2.222.032c2.405-.259 4.019-1.035 6.106-2.227l-1 4c-6.77 2.579-13.827 2.613-21 2l-3-2v-2h-2l-1-10z" fill="#f7d6b2"/><path d="M344 425c3.389-.387 4.738-.175 7.625 1.75 5.263 4.986 5.263 4.986 5.555 8.281L357 441h-3l-.187-2.875L353 435l-5-2c-4-5.189-4-5.189-4-8z" fill="#f0dbc0"/><path d="M875 186c4.541 4.266 8.247 9.036 12 14l-3 2-1-3h-2l-2-4h-6v4h-2c-.212-4.453.273-7.874 2-12l2-1z" fill="#fcf3f0"/><path d="M279 161h2v2l2 1-6.812 5.375-1.947 1.539-1.885 1.484-1.73 1.365L266 177c-1.5-1.312-1.5-1.312-3-3 0-3 0-3 1.75-5.187C267 167 267 167 271 167v2h2l1-4h5v-4z" fill="#f8f3f5"/><path d="M676 125c5.173-.408 8.232.772 12.75 3.25l3.422 1.828c2.753 1.871 3.763 2.835 4.828 5.922-2.626.985-4.409 1.204-7.078.281-2.098-.996-4.035-1.924-5.922-3.281l-1-3c-3.503-1.716-3.503-1.716-7-3v-2z" fill="#e7232c"/><path d="M1042 999h3v4h-2v36h2v2h-2l-1 2c-1.039-4.259-1.145-8.392-1.133-12.75l-.003-2.229.005-4.649-.006-7.09.004-4.531-.006-2.128c.017-3.666.269-7.057 1.139-10.622z" fill="#fbe5ef"/><path d="M626 1010c2 3 2 3 1 9h-27c5.035-2.518 8.123-3.118 13.688-3.062l3.574.027L620 1016l2-4h3l1-2z" fill="#e31e26"/><path d="M479 864v5l10 2v12h-1l-1-10h-9l-2-4-6 2-1 6h-1v-7h-2v-3l5.375-1.5 3.023-.844C477 864 477 864 479 864z" fill="#e42639"/><path d="M684 835l1 2h6l1 4-1.75-1.062c-2.608-1.087-3.644-.868-6.25.063l.25 2.688c-.302 4.003-1.547 5.441-4.25 8.313l-4-1c.58-5.913 1.51-9.937 6.188-13.812L684 835z" fill="#de2936"/><path d="M340 834h14l-1 5h-2v-2l-1.75.625c-2.77.462-3.896-.196-6.25-1.625v3h4v4h-5l-.25 2.25c-.89 3.262-2.235 4.56-4.75 6.75l.656-1.906c1.824-5.608 2.671-10.203 2.344-16.094z" fill="#d63039"/><path d="M339 625c2 2 2 2 2.195 3.945L341 635h-2l-2 14h-3l1 8-3-2 1-7h2l-.324-2.16c-.802-6.41-.745-10.156 2.324-15.84l2-5z" fill="#e5deb3"/><path d="M166 608c2.15 2.693 3.669 5.22 4.973 8.406l1.037 2.504 1.053 2.59 2.098 5.094.926 2.271L179 635h-6v-4h-2v-4h-2v-12h-2l-1-7z" fill="#fcf6fd"/><path d="M633 597h1c3.262 8.427 5.247 18.219 1.875 26.895-1.187 2.142-2.418 4.139-3.875 6.105-1-3-1-3-.07-5.414 1.583-5.305 1.28-10.459 1.195-15.961l-.027-3.387L633 597z" fill="#df2738"/><path d="M523 359c4.882 4.882 4.125 15.253 4.125 21.813L527 386l-2-1-1-4-2-1c-.372-2.432-.606-4.741-.75-7.187l-.297-3.98c.046-3.756.649-6.374 2.047-9.832z" fill="#fde5e1"/><path d="M440 343l3.5 2.875 1.969 1.617L447 349v2h4v4h2v9h-2l-2.812-4.625c-1.82-3.154-3.607-6.065-6-8.812C440 348 440 348 439 345l1-2z" fill="#fef8fa"/><path d="M239 265c2 1 2 1 4 4h4c.125 5.75.125 5.75-1 8h-2v2h-2l-.375 1.75c-.631 2.273-1.514 4.175-2.625 6.25h-2c-.252-5.543-.252-5.543 1-7.812 1.33-2.91 1.194-5.255 1.125-8.437l-.055-3.266L239 265z" fill="#e7dcb7"/><path d="M198 255l3 1c-1.619 3.301-3.359 6.526-5.125 9.75l-1.633 2.984L193 271h-2l-.687 2.5c-1.575 4.199-3.672 7.875-6.312 11.5h-1c.45-5.834 2.114-9.551 5.25-14.437l1.228-1.977L193 263l3.063-4.937L198 255z" fill="#df374c"/><path d="M456 989h1v16h2v8h13v2h-12v2h-9l1.962-1.647c2.489-2.873 2.568-4.242 2.647-7.993l.098-3.242.043-3.367.09-3.414L456 989z" fill="#d32b2d"/><path d="M682.167 950.87l6.081-.006 3.92.004 3.54.003c3.181.125 6.169.532 9.292 1.129v1h-41v2l3 1h-6l-1-4c7.403-1.026 14.697-1.154 22.167-1.13z" fill="#d9424b"/><path d="M945 621c1.286 3.858.437 5.047-1.09 8.762l-1.377 3.389-1.471 3.537-1.459 3.572L936 649c-.937-3.286-.987-4.647.5-7.75 1.305-3.136 1.619-5.147 1.063-8.5-.548-3.651-.637-4.821 1.438-7.75h2v-2l4-2z" fill="#f8f2ed"/><path d="M714 486h3v3h-2l1 2 .316 5.883.127 3.535.119 3.707.131 3.73L717 517l2 1v12c-2.336-3.504-2.935-6.682-3.625-10.75l-.4-2.341c-1.561-10.245-1.245-20.578-.975-30.909z" fill="#f5efe5"/><path d="M586 365h3l2 8.75.578 2.5.547 2.422.508 2.222C593 383 593 383 593 387h-3l-3-9-4 3v-4h3l1-2v2h2l-1-3-5-1v-2h3v-6z" fill="#f8e2de"/><path d="M344 359h3v8h4v-2h2c-1.074 2.915-1.778 4.778-4 7-.142 3.586.006 7.129.125 10.715C349 386 349 386 347 389l-1-20-2 1-.562-4.937-.316-2.777L343 360l1-1z" fill="#dd2f38"/><path d="M763 267c4.595 1.149 5.409 2.206 8 6v2c4.824-1.269 4.824-1.269 8-5v9h-2v4h-2l-.75-2.937L773 277c-2.006-.814-2.006-.814-4-1l-1-2-3-1v6h-1l-1-12z" fill="#d52e32"/><path d="M513 955c4.875 1.75 4.875 1.75 6 4l.129 5.152.01 3.256-.006 3.529.003 3.609-.005 7.566.006 11.614-.004 7.336.006 3.529-.01 3.256-.002 2.875C519 1013 519 1013 518 1015c-1.848.633-1.848.633-4.062 1.125l-2.223.508L510 1017l4-4h3v-52h-2v-4l-3-1 1-1z" fill="#eccace"/><path d="M705 811h6l1.465 6.055c.484 2.004.484 2.004 1.535 3.945l-1 5c-4 0-4 0-5.75-1.187-1.646-2.386-1.32-3.956-1.25-6.812l-1.062-2.125L704 814l1-3z" fill="#f01a20"/><path d="M907 689h2v2h4v-2l2 1-6 11h-2l-.875 2.875C905 707 905 707 903 709v-8h2v-10h2v-2z" fill="#f8eee8"/><path d="M331 589h2c.338 28.221.338 28.221-2 36h-2v-20h2v-16z" fill="#e22022"/><path d="M399 583h2v12h2v-6h3v10l-2 1c-.656 2.527-.656 2.527-1 5h-2l-1-6-2 2-1-4 1-1a167.62 167.62 0 0 0 .563-6.562l.254-3.629L399 583z" fill="#e1e1b8"/><path d="M155 589h2v4h2l1-3 2 5.375 1.125 3.023C164 601 164 601 164 603h-6l1-4h-4v2h-2c-.178-4.548.002-7.879 2-12z" fill="#fbf1f2"/><path d="M524 381c1 3 1 3-.062 5.5L522 390l-3.125 5.625-1.57 2.789c-1.132 2.243-1.833 4.135-2.305 6.586h4v2l-8 2v-4h2l2-14h3v-2l2-1v-4l3-1 1-2z" fill="#d6282e"/><path d="M448 269h2c-.677 8.123-.677 8.123-4 12a65.76 65.76 0 0 0-1 4l5.859-1.562C453 283 453 283 457 283v2c-1.969 1.508-1.969 1.508-4.5 3.125l-2.531 1.633L448 291l-.312-1.937L447 287l-3-1v-5l-2-1 6-11z" fill="#dd3d45"/><path d="M468.938 88.938l2.65.014L478 89l-1 3c-5.329 1.109-10.463 1.115-15.875 1.063l-2.664-.014L452 93v-3c5.688-.98 11.173-1.119 16.938-1.062z" fill="#e8202a"/><path d="M444 917l27 3v1l-17 1 8 2v1c-8.76-.545-17.346-1.541-26-3v-1h13v-2h-5v-2z" fill="#d42d39"/><path d="M378 864c1.327 3.981 1.069 7.85 1 12l4 1 1-3h4l1 2c3.029.658 3.029.658 6 1v3c-5.395 1.798-10.295 1.67-15.5-.375-2.859-3.002-2.885-3.711-2.937-7.687.147-2.956.495-5.109 1.438-7.937z" fill="#e13039"/><path d="M398 583h1l.063 6.375.035 3.586C399 596 399 596 398 598l1 3v7l-4 1v8h2l-2 4c-3.284-8.21-2.019-14.57.199-22.812 1.258-5.008 2.032-10.085 2.801-15.187z" fill="#e9d9af"/><path d="M344 44l-1.875.25L340 45l-.781 1.969C338 49 338 49 335.398 49.828l-3.023.422-3.039.453L327 51v6h-6v-2h-5c5.304-4.246 21.544-14.228 28-11z" fill="#faeee9"/><path d="M590 917l-1 3 4 2-12 1v-2h-22v-1l11.563-1.5 3.291-.434c5.426-.693 10.676-1.255 16.146-1.066z" fill="#da363d"/><path d="M486 573h1c.277 8.611-.591 17.076-1.5 25.625l-.434 4.199L484 613h-1c-.936-9.053-1.088-17.69-.187-26.75l.25-2.597c.444-4.031.958-7.063 2.938-10.653z" fill="#e7293f"/><path d="M738 415h3v2l1.875.313C745 418 745 418 747 421l-1.812.063c-2.474.811-2.474.811-3.875 3.688-2.11 5.47-2.06 11.456-2.312 17.25h-1c-2.172-19.707-2.172-19.707 0-27z" fill="#f6e1da"/><path d="M443 363h4v2h-2v8l3-1 1-7 3 1-.437 4.375-.246 2.461C451 375 451 375 450 377h-6v-2h-2l-2-8h3v-4z" fill="#f61523"/><path d="M668 119c4.234 1.311 8.074 2.944 12 5l-4 1v2l2.313-.187c2.688.188 2.688.188 4.5 1.563C684 130 684 130 684 132c-4.845-1.875-9.571-4.007-14.312-6.125l-2.533-1.129L661 122v-1h7v-2z" fill="#dd2e36"/><path d="M647 29c7.394 2.159 14.704 4.53 22 7v3h-9v-2l-2.812.188C654 37 654 37 652.375 35.625L651 34c-2.1-1.176-2.1-1.176-4-2v-3z" fill="#eff5f3"/><path d="M624 909h14c-1 3-1 3-2.863 3.949-6.816 2.055-13.043 2.38-20.137 2.051v-2l9-2v-2z" fill="#f01f2a"/><path d="M450 562h1c-.77 6.415-.77 6.415-2.008 9.563-1.375 4.765-1.38 9.375-1.492 14.313-.154 6.694-.611 12.682-2.5 19.125h-1c-1.258-7.425-1.258-7.425-.031-10.156 1.523-4.201 1.242-8.227 1.156-12.656l-.027-2.678L445 573h2l.148-1.898.227-2.477.211-2.461C448 564 448 564 450 562z" fill="#eddcc8"/><path d="M448 951h31l-1 4h-2v-2l-21 1v2l-7-1v-4z" fill="#e04055"/><path d="M658.902 845.469c3.233.819 4.76 2.142 7.098 4.531 1.412 2.782 2.368 5.656 3.313 8.625l.799 2.352C672 866.628 672 866.628 672 869h-2l-2.5-5.75-1.406-3.234C665 857 665 857 665 853l-4 1v-4h-12c4.058-4.058 4.545-4.446 9.902-4.531z" fill="#d13c45"/><path d="M105 685c2.395 2.2 3.925 4.382 5.48 7.23l1.338 2.432 1.369 2.525 1.404 2.561L118 706l-2 2-.75-1.937L114 704l-1.906-.379c-2.855-.847-3.402-2.058-4.844-4.621-2.567-4.891-2.683-8.55-2.25-14z" fill="#f7eee4"/><path d="M455 589c2 1 2 1 3.063 2.938 1.315 4.297 1.608 8.595 1.938 13.063h-2v15l-3 1v-32z" fill="#d7262e"/><path d="M711 965c3.066 1.533 3.642 3.929 5 7 1.301 4.757 1.184 9.543 1.188 14.438l.037 2.525c.011 4.754-.387 8.569-2.225 13.037l-2-4 2-3c.241-2.286.241-2.286.125-4.687l-.055-2.449L715 986h-2v-15h-2v-6z" fill="#fff6f6"/><path d="M487 883h2c.762 4.316 1.161 7.744 0 12h4v-2h2l1-4c.125 5.75.125 5.75-1 8h-2v2h-10v-3l4-1v-12z" fill="#f41527"/><path d="M81 632c2.227 3.34 3.649 6.793 5.125 10.5l.84 2.051C88.152 647.515 89 649.777 89 653h-2l-1 3c-4.01-8.066-7.325-14.826-5-24z" fill="#faf1e7"/><path d="M828 253h5l2 4h-2l1 7 3 1 1 5c-2.262-.121-2.262-.121-5-1-2.02-2.723-2.02-2.723-3.812-6.062l-1.832-3.348L826 257l2-1v-3z" fill="#f8f7f7"/><path d="M323 999c2 3.75 2 3.75 2 6h2v2l2 1c1.188 2.438 1.188 2.438 2 5l-1 2-10-2v-4h4v-4h-3v-4h2v-2z" fill="#f41625"/><path d="M557 890h2l2 3c3.584.25 3.584.25 7 0-.125 1.813-.125 1.813-1 4-4.752 3.245-8.454 3.37-14 3l-2-1v-2h4l-2-2 3-2 1-3z" fill="#dd252f"/><path d="M448 481l3 1-1 1.563c-1.32 3.218-1.132 5.995-1 9.438l1.898.805 2.477 1.07 2.461 1.055C458 497 458 497 460 499c-.375 2.125-.375 2.125-1 4-5.572-1.194-9.622-3.27-13-8-.234-4.849.468-9.405 2-14z" fill="#f8f3e4"/><path d="M347 275h6v2l-5-1 2.5 2.25c3.892 4.81 3.072 9.868 2.5 15.75-.854 7.022-1.893 14.014-3 21h-1c-.097-5.06-.061-10.028.5-15.062 1.184-8.156 1.184-8.156-.5-15.937l1-3h-5l2-6z" fill="#f3e2da"/><path d="M326 965l3 1-.875 1.59c-4.593 9.585-4.721 21.085-1.687 31.223L328 1003l1 4h-2v-2h-2c-1.759-4.546-2.237-8.287-2.195-13.148l.009-1.992.062-6.234.027-4.254L323 969h2l1-4z" fill="#d23741"/><path d="M660 949h29l-1 2-28 1c.669 3.113.669 3.113 3.063 4.188L665 957h-7v-6h2v-2z" fill="#f9fef2"/><path d="M449 869h2l-.437 2.527c-1.087 6.589-1.789 12.797-1.562 19.473l3 1v3l-9-1c-.125-6.75-.125-6.75 1-9h3v-10h2v-6z" fill="#d42f37"/><path d="M606 864c2.75-.312 2.75-.312 6 0 2.805 2.729 4.423 5.105 5 9h-2v2h-2v-7l-7-1 .402 1.941c.819 4.013 1.624 7.988 2.098 12.059.219 3.107.219 3.107 2.5 5h-3c-3.15-5.948-5.117-11.207-4-18 1.023-2.262 1.023-2.262 2-4z" fill="#fad7cf"/><path d="M703 845l5 8 7-1c-1.305 3.914-2.628 6.54-6 9-3.75.25-3.75.25-7 0l-1-2h3l1-6-2-1v-7z" fill="#e02833"/><path d="M235 701h4v2h2l1 4h-3v-2h-2v4h2v2h2l1 6h-2l-4.625-5.312-2.477-2.988C231 706 231 706 231 703h4v-2z" fill="#f7fbf8"/><path d="M299 589h2v32h-2v-10h-2l2-22z" fill="#f71621"/><path d="M770 581h1a98.44 98.44 0 0 1-1 16h1v8l-1 1-.562 7.063-.254 3.91L769 620l-3 1 .745-13.232.25-4.492.373-6.494.222-3.936c.441-4.134 1.316-7.842 2.411-11.846z" fill="#e9e2c4"/><path d="M645 410l2 1-1 3 2 2v3l3 1 1 26 1-1h2l-2 8h-2c-1.31-2.619-1.11-4.565-1.105-7.496l-.045-3.385-.016-7.008c-.142-7.557-1.518-12.564-5.55-18.987C643 414 643 414 643 412h2v-2z" fill="#fdbdc0"/><path d="M396 339l2 1c-1.75 4.875-1.75 4.875-4 6l5 1-1 2h-8l-1 14h-2v-16h-2v-4l10 1 1-5z" fill="#e22323"/><path d="M591 861h4v2h5l-1.094 1.363c-4.139 5.736-4.958 10.65-3.906 17.637 1.332 2.98 1.332 2.98 3 5v2h-5l-.076-1.924-.362-8.701-.119-3.027c-.209-4.857-.473-9.569-1.443-14.348z" fill="#fdf2f1"/><path d="M892 731l1 2-1 2h3c-1.367 3.986-3.051 6.964-6 10h-4v2l-5 2c1.355-2.903 2.914-5.346 4.875-7.875 2.519-3.297 4.864-6.647 7.125-10.125z" fill="#fbf3ec"/><path d="M333 675h3l1 10h5c-1.592 1.897-2.487 2.903-4.961 3.372l-2.199-.009-2.404-.002-2.498-.049-2.51.01c-6.161-.055-6.161-.055-8.428-2.322l-1-7c2 2 2 2 2 6l16 2v-2h-3v-10z" fill="#dd2425"/><path d="M326 659h3v4h4v-2h3v6h-3v2h-4v-4h-2v8h-2l-.062-5.875-.035-3.305C325 661 325 661 326 659z" fill="#f71621"/><path d="M436 557h2v24h-4c-.914-5.687-.914-10.313 0-16h2v-8z" fill="#dc2325"/><path d="M385 857h4c1.707 5.897-.048 10.42-2 16h-2l-1 2c-2.354-2.551-2.983-3.71-3.187-7.25L381 865h2l1 3 1-11z" fill="#e22328"/><path d="M716 843c2.412 2.412 2.759 3.63 3 7l-3 4 1.898-1.094 2.477-1.406 2.461-1.406C725 849 725 849 727 849v2h-3l-1 4c-6.625 1-6.625 1-10 1l2-4-5 1-1-2h2v-4l1.938-.312L715 846l1-3z" fill="#faefed"/><path d="M599 823v2h-4v2l-8 1 6 1v1l-16 3 1-2h5v-2h-12v-1l12.313-2.5 3.537-.723 3.389-.684 3.126-.635C596 823 596 823 599 823z" fill="#d82d3e"/><path d="M902 714l1 3c-.956 1.809-.956 1.809-2.457 3.793l-1.623 2.158-1.732 2.236-1.697 2.271L891 733h-2v2h-2c.629-3.384 1.916-5.626 3.875-8.437l4.813-7.625L897 717h3v-2l2-1z" fill="#e02b3d"/><path d="M523 633h1l.625 3.313c1.194 4.88 3.539 8.942 6.035 13.27C532 652 532 652 533 655l-2 2v-4h-5l-.375-1.937L525 649l-2-1v-5h-3v-2h3v-8z" fill="#e52837"/><path d="M391 625h4c.782 2.772 1.128 5.24 1.133 8.117l.004 2.34-.012 2.418.012 2.395c-.007 4.356-.268 8.442-1.137 12.73h-2l-.076-2.14-.362-9.61-.119-3.367-.127-3.242-.111-2.983c-.181-2.346-.549-4.404-1.205-6.657z" fill="#f71625"/><path d="M366 573h3v10h-2v6h-2v6l-3-1c-.301-5.828.224-8.781 3-14 .714-3.738.714-3.738 1-7z" fill="#e13335"/><path d="M526 371l1 2h2v24h-4l.125 2.313C525 402 525 402 523 405l-4-1 1.398-1.262c1.69-1.835 2.39-3.219 3.227-5.551l.727-1.957c1.613-5.549 1.778-10.882 1.711-16.605l-.014-2.23L526 371z" fill="#df2d3b"/><path d="M497 607c4.247 6.371 4.247 6.371 4.16 10.629l-.035 2.852-.062 3.082c-.146 13.169.336 26.284.938 39.438-2.05-3.424-2.362-6.31-2.594-10.266l-.223-3.768-.736-21.768-.167-5.934-.092-3.507c-.009-2.718-.009-2.718-1.189-4.759-.04-2-.043-4 0-6z" fill="#fbeee0"/><path d="M455 495h5v2h2c.931 2.606 1.149 3.642.063 6.25L461 505h-2l.105 3.211.082 4.164.076 2.117c.029 2.031.029 2.031-.264 5.508l-3 2c-1.493-4.976-.98-9.966 0-15 .956-1.692 1.944-3.368 3-5-.16-2.722-.748-3.717-2.562-5.75L455 495z" fill="#de2425"/><path d="M62 373l1 4h2v4h-2l-.184 2.992-.254 3.883-.246 3.867C62 395 62 395 61 397h-2l.688 2.813L60 403c-1.48 1.699-1.48 1.699-3 3 1.17-11.12 2.787-22.04 5-33z" fill="#fcf5eb"/><path d="M837.953 284.172c2.77 1.121 3.398 2.471 4.797 5.078l1.297 2.328c1.043 2.651 1.133 4.599.953 7.422l-4 1-3-9h-2v-4h-2v-2c2-1 2-1 3.953-.828z" fill="#fcf3ed"/><path d="M771 89c7.071 3.843 14.462 8.084 20 14h-5v-2h-3v2h-5v-2h-3l2-4v2h4v-2l-1.875-.437C777 96 777 96 775 95v-2l-3-1-1-3z" fill="#fdefef"/><path d="M718 989h5v6h-2l1 14-5 1v-3h-2v-4h3v-14z" fill="#f61523"/><path d="M755 861h4v2h-2v3l-8.75 5.063-2.5 1.471-2.422 1.377-2.222 1.285c-2.487.95-3.645.702-6.106-.196l5.371-2.93c1.795-.984 1.795-.984 2.629-3.07l3-1 2-3 6-2 1-2z" fill="#f8fcfb"/><path d="M406 589h1l-.016 2.171-.047 9.704-.025 3.418-.01 3.262-.016 3.015c-.05 2.44-.05 2.44 1.114 4.43l.098 5.008-.01 2.988-.025 3.129-.014 3.152L408 637h-1v-20h-2v4h-2v-7l1-1 .063-6.062-.027-3.348L404 601h2v-12z" fill="#f6d2b1"/><path d="M364 598h2v7h2a184.23 184.23 0 0 1-2 32h-2l.508-2.512c.538-3.811.521-7.463.371-11.292l-.072-2.194-.245-6.876-.158-4.687L364 598z" fill="#e33737"/><path d="M691 570c2.163 3.244 2.256 4.162 2.266 7.91l.012 2.977-.027 3.176-.012 3.234c-.1 9.33-.933 18.471-2.238 27.703h-1l-.055-16.333-.021-5.552-.022-7.998-.016-2.491c0-4.325.248-8.366 1.113-12.626z" fill="#f8d3ca"/><path d="M966 562h1v8l-1 1-.375 4.875c-.733 8.832-3.376 16.925-6.625 25.125-1.187-1.5-1.187-1.5-2-4l2.103-5.428c1.876-5.379 2.895-11.01 4.085-16.572l.826-3.793L966 562z" fill="#fbe4dd"/><path d="M50 481c1.755 3.511 2.249 4.587 2.344 8.203l.086 2.449.07 2.598a225.81 225.81 0 0 0 2.098 23.465c.344 2.811.483 5.459.402 8.285h-2v-9h-2v-24h-2l1-12z" fill="#fae7de"/><path d="M527 345c2 2 2 2 2.227 3.879l-.032 2.253-.02 2.441-.051 2.551-.027 2.574L529 365h4l-1 4h-3l-1-2-2 4-.062-11.312-.025-3.248-.01-3.115-.016-2.872C526 348 526 348 527 345z" fill="#e3201c"/><path d="M752 320l1 3-1 1c-.146 3.366-.072 5.784 1 9h-4l-.375 1.625L746 343h-7l-2-6 2 1v2h5l.734-2.598c1.847-6.301 3.676-11.89 7.266-17.402z" fill="#d92b2e"/><path d="M617 295c3.435 3.926 6.258 8.063 8 13-.25 3-.25 3-1 5l-9-1 2-1v-2h2v-4h2v-2h-3c-.826-2.892-1-4.887-1-8z" fill="#ead4b1"/><path d="M305.375 307.813l3.898-.043c3.664.227 6.379.744 9.727 2.23l2 3h-3v-2h-7v-2h-9v2h-7v2h-6l-1 4h-3c1.278-3.977 3.681-5.251 7.148-7.168 4.383-1.969 8.439-1.996 13.227-2.02z" fill="#df293c"/><path d="M941 293c2.548 2.548 3.176 4.852 4.383 8.25l.664 1.86 1.376 3.894 2.12 5.965C953 322.711 953 322.711 953 325h2l1.563 6.75.879 3.797c.515 3.184.445 4.498-.441 7.453l-1.022-3.098-3.83-11.568-1.644-4.972c-3.263-9.89-6.639-19.687-10.504-29.362l1-1z" fill="#ca7083"/><path d="M647 179h2l1 3c-1 1-1 1-4.235 1.114l-4.301-.016-2.283-.004-7.245-.031-4.9-.014L615 183v-3l32 1v-2z" fill="#e5dec2"/><path d="M404 107v2h-5l-2 4h-6v2h-2v2h-13c2.542-1.695 4.488-2.659 7.309-3.691l2.514-.924 2.615-.947 2.604-.959C400.561 107 400.561 107 404 107z" fill="#fbf4fb"/><path d="M775 85c3.777 2.189 7.296 4.603 10.813 7.188l2.957 2.168L791 96l-1.937.313L787 97l-1 3-11-8 3-1-1-4h-2v-2z" fill="#de2c35"/><path d="M385 909l3.75-.062 2.109-.035c2.141.098 2.141.098 4.023.605 2.797.65 5.375.509 8.242.43 5.875-.06 11.19.625 16.875 2.063v1l-2.555-.07-3.32-.055-3.305-.07c-2.957-.105-2.957-.105-4.82 2.195-3.074-.545-5.986-1.211-9-2l-6.562-1.625L385 910v-1z" fill="#d8313e"/><path d="M397.723 900.902l3.34.035 3.348.027L407 901v2l-6 1v4c-6.304-.584-11.987-2.041-18-4v-1l2.371-.184 3.066-.254 3.059-.246c2.982-.377 3.149-1.304 6.227-1.414z" fill="#fdf2f4"/><path d="M696 890l4 1-1.937.875c-2.215.953-2.215.953-3.062 3.125-3.311 2.207-6.094 2.178-10 2v2l4 1c-4.074 2.037-6.589 2.026-11 1l-1-3 1.636-.627 7.301-2.811 2.576-.986 2.451-.947 2.269-.873c1.756-.622 1.756-.622 2.766-1.756z" fill="#f5f1ee"/><path d="M647 809v2l4 1-4.687 1.938-2.637 1.09c-5.684 2.066-8.877 1.906-14.676-.027 2.474-2.474 4.562-3.031 7.875-4.125l3.18-1.07C643 809 643 809 647 809z" fill="#e22b37"/><path d="M719 547h2v31c-3-3-3-3-3.293-5.699l.105-2.988.082-3.012L718 564h-1v-7h2v-10z" fill="#f91422"/><path d="M553 495l2 3-1.437 1.125c-2.085 2.501-2.209 4.691-2.562 7.875h-2v-4h-5v-2l2-1-4-2c2.798-4.197 6.439-3.434 11-3z" fill="#e4232d"/><path d="M567 371h3v2h3v2h2v2h-4v4l-4 1-1-4-5-1v-4l5 1 1-3z" fill="#f3fcfd"/><path d="M509 305h4l.148 3.289.227 4.336.094 2.16A39.59 39.59 0 0 0 516 327v2h-4l.625-2.312c.709-2.906.709-2.906-1.625-5.687h-2v-16z" fill="#effef9"/><path d="M685 279h5l1 5-3 1-.937 2c-1.062 2-1.062 2-3.187 2.75L682 290c-3-3.625-3-3.625-3-7h6v-4z" fill="#ed1b25"/><path d="M257 231a76.13 76.13 0 0 1 8.625.313l2.43.186L274 232c.625 2.313.625 2.313 1 5l-2 3-1 7h-1v-10h-6v-2h2v-2l-12 1 2-3z" fill="#db292d"/><path d="M695.605 40.797l2.582.953 2.605.922c2.813 1.693 3.292 3.242 4.207 6.328-6.878.313-6.878.313-10-2-.75-2.125-.75-2.125-1-4h-6v-2l-2-1c3.291-1.646 6.211-.241 9.605.797z" fill="#ed1d31"/><path d="M958 587h2c-1.634 9.97-4.864 19.422-8 29l-3-1c2.701-9.43 5.872-18.706 9-28z" fill="#e53253"/><path d="M460 421h2c1.757 6.051 2.318 11.464 2.25 17.75l-.012 2.644c-.089 6.67-.755 13.09-2.238 19.606h-3l.438-1.816c1.517-7.407 1.755-14.575 1.75-22.121l.002-3.051c-.033-4.494-.202-8.611-1.189-13.011z" fill="#dd3c4c"/><path d="M380 287c.902 2.972 1.001 5.148.566 8.211-.853 7.453-.673 14.925-.629 22.414l.014 4.488L380 333h-1l-1-13.375-.289-3.793c-1.49-20.329-1.49-20.329 2.289-28.832z" fill="#f6e0da"/><path d="M277 230h2v3h-3l-.062 4.875-.035 2.742c-.065 2.4-.065 2.4 1.098 4.383.134 2.672.043 5.323 0 8h-2v-4h-3l-2 6c-1-2-1-2-.187-4.562L271 247l1-4.5c.767-3.599 1.755-7.032 3-10.5h2v-2z" fill="#faeaeb"/><path d="M728 63l7.875 3.875 2.262 1.105 2.168 1.074 2 .984C744 71 744 71 746 73h-9v-2h-4v-2h-4v2h-2c0-3.113.174-5.108 1-8z" fill="#f6f2f3"/><path d="M621 1012l1 2-2 3c-2.793.223-2.793.223-6.187.063-3.803-.095-6.582-.129-10.25.938-5.759 1.617-11.618 1.148-17.562 1v-2h13v-2l3.797-.148 4.953-.227 2.5-.094 2.422-.117 2.222-.095c2.356-.357 4.041-1.155 6.106-2.319z" fill="#ea1b2d"/><path d="M955 969c2 2 2 2 2.23 5.781l-.043 4.719-.02 2.457c-.073 5.732-.434 11.355-1.168 17.043h-2l-.062-12.75-.025-3.656-.01-3.516-.016-3.237c.098-2.465.398-4.493 1.114-6.841z" fill="#cd3a45"/><path d="M599 829v2l-6 1v1h-12v2h2v2c-5.547.292-10.62-.809-16-2v-1l1.848-.351 8.339-1.586 2.908-.553 2.822-.537 2.587-.492 5.106-1.038c2.83-.525 5.518-.51 8.389-.443z" fill="#f7e8e8"/><path d="M215 823c2.313-.312 2.313-.312 5 0l3 5 3.063 1.438C229 831 229 831 230.375 834.188L231 837h2l-1 3-7.937-6.25-2.287-1.777-2.178-1.738-2.015-1.587c-1.791-1.865-2.196-3.123-2.582-5.647z" fill="#fbfbfc"/><path d="M340.75 812.625L344 813v2h-3v2h2v4h-2v-2h-2v2l-1.875.188L335 822l-2 5-3 1c4.321-14.732 4.321-14.732 10.75-15.375z" fill="#f6e9e9"/><path d="M722 541h2c1.697 10.608 1.372 21.368 0 32l2 1v4l-4-1c-.781-4.423-.886-7.647 0-12a123.99 123.99 0 0 0 .098-5.738l-.01-3.232-.025-3.342-.014-3.4L722 541z" fill="#f5f0e2"/><path d="M528 317l3 1 .262 3.227c.925 9.969 2.892 18.51 6.738 27.773l-5 1-2-5h2l-.621-2.203c-1.951-7.281-2.992-14.273-3.379-21.797h-2l1-4z" fill="#de3239"/><path d="M862 941h1l1 18h2c1.158 3.473 1.069 6.361 1 10h4v2h-4v2h-4v-4h3l-1-6h-2v-2h-2l1-20z" fill="#f8faf3"/><path d="M573 951h32v4h-3v-2l-29 1v-3z" fill="#df4459"/><path d="M363 601h2v28l-2 1-2-1v-8h2v-20z" fill="#e2e0b0"/><path d="M665 510c3.973.816 7.11 1.702 9.5 5.188L675 517c-2.169-.506-4-1-6-2v-2h-22c5.787-4.34 10.973-3.58 18-3z" fill="#fedfe1"/><path d="M90 973h3l.063 12.125.025 3.461.01 3.359.016 3.079c-.117 3.067-.546 5.962-1.114 8.976h-1c-.834-10.361-1.123-20.609-1-31z" fill="#de353e"/><path d="M402 951h31l-1 4v-2h-26v2h-4v-4z" fill="#e5465d"/><path d="M607 915v3c-3.095 1.548-6.367 1.444-9.785 1.719-2.186.048-2.186.048-3.215 1.281l-4.562-.437-2.504-.309L585 920v-1h5l1-3c5.361-1.129 10.553-1.097 16-1z" fill="#e22230"/><path d="M193 799l14 12c-3.234 1.617-5.428 1.476-9 1-2.379-2.073-4.201-4.416-6-7l2-1-1-5z" fill="#faf4f1"/><path d="M740 391h2l-1.434 9.965-1.039 7.977-.465 3.746-.402 3.449c-.685 2.973-1.283 4.03-3.66 5.863l-1-2 1-3h2l-1-20h3l1-6z" fill="#d8292d"/><path d="M340 339h1c.071 4.263.109 7.879-1 12l1 2a83.01 83.01 0 0 1 .125 5l.008 2.688C341 363 341 363 340 365h-5v-2h2l2-8h-4l5-16z" fill="#dc2b2f"/><path d="M442 261h2v2l2 1h-2l-.687 2.5c-1.564 4.17-3.511 8.016-6.312 11.5l-3 1v-12l2 2c2.584.167 2.584.167 5 0l-.062-3.437C441 262 441 262 442 261z" fill="#f5e0de"/><path d="M374 111c-2.156 2.156-3.752 2.883-6.543 4.059l-2.756 1.17-2.889 1.209-2.83 1.197-5.468 2.306L344 125v-2h2l1-4 3.125-.312c3.842-.682 6.449-1.897 9.875-3.687h3v-2c3.634-2.326 6.771-2.163 11-2z" fill="#fbece4"/><path d="M305 873c4.843 1.494 9.314 3.45 13.875 5.625l2.086.984L326 882l-3 2v-2l-7-2v3c-4.234-1.311-8.074-2.944-12-5l4-1v-2h-3v-2z" fill="#df3742"/><path d="M55 553h2c2.296 9.41 2.296 9.41 2 14h2c1.225 5.666 1.092 11.237 1 17-2.574-4.719-3.462-9.729-4.625-14.937l-.695-2.998-.656-2.904-.596-2.636c-.433-2.558-.503-4.935-.427-7.524z" fill="#fbfdfb"/><path d="M809 244l4 1v4h2v2h3v3l2 1v5h-3l-2-5h-2c-1.324-1.645-1.324-1.645-2.687-3.812l-1.387-2.145C808 247 808 247 809 244z" fill="#f3fcf8"/><path d="M306 54v2l-8 4 4 2-11 5-4-4 8.375-4.5 2.406-1.301 2.305-1.23 2.126-1.143C304 54 304 54 306 54z" fill="#d82d38"/><path d="M510 951h32l-1 3-28-1v2l-3-1v-3z" fill="#dd4656"/><path d="M684 859h3v2h2v2l7-1-1 5c-2.739 1.37-4.971 1.126-8 1l-2-1c-.594-2.649-.742-5.292-1-8z" fill="#f11824"/><path d="M547 838l2.25.563L551 839v2h-9v-2h-45v-1l19.434-.482 6.611-.166 9.502-.231 2.987-.082 2.79-.061 2.449-.061c2.228.082 4.091.465 6.227 1.082z" fill="#fdbbc3"/><path d="M638 585h1v10l-2 1c1.309 3.122 1.309 3.122 4 5v2h-2l1 3-1 1-.562 4.063L638 615h-1l-.402-2.336-.535-3.039-.527-3.023c-.412-2.571-.412-2.571-1.535-4.602-.408-4.694.236-6.351 3-10 .725-3.653.725-3.653 1-7z" fill="#fcd0d0"/><path d="M722 577l3 1c1.102 3.908 1.103 5.744-.437 9.563-2.684 7.659-2.141 15.98-2.25 24l-.104 5.08L722 629h-1v-42h2c.08-3.522.04-6.62-1-10z" fill="#d3343e"/><path d="M302 531h1v26h-2v-10h-2l.375-6.875.211-3.867C300 533 300 533 302 531z" fill="#f71523"/><path d="M452 477c1.172 4.099 1.071 7.754 1 12h2v6c-5.875-.875-5.875-.875-7-2-.649-6.232 1.199-10.486 4-16z" fill="#e72433"/><path d="M736 435h1l.148 1.977c.465 5.62.465 5.62 1.977 11.023 1.29 4.424.534 8.492-.125 13h-4v-4h2v-8h-2l-.062-5.875-.035-3.305C735 437 735 437 736 435z" fill="#f81424"/><path d="M555 353l1 3 3 1v-2h7v4h-9l-2 4h-3l1 3-2 1v-2h-2v-2h2l.875-2.75c.89-2.572 1.84-4.863 3.125-7.25z" fill="#e21f1e"/><path d="M279 329h1c.633 9.011 1.172 17.96 1 27l-3-1-3-16h3l1-10z" fill="#f9d6cc"/><path d="M333 41l1 2h-3v2h6c-2.525 2.525-4.735 3.043-8.125 4.125l-3.32 1.07L323 51v-2h-6c3.192-2.642 6.416-4.145 10.25-5.687l3.266-1.324L333 41z" fill="#d5343c"/><path d="M337 949h33c1.533 3.065 1.103 6.268 1.063 9.625l-.014 2.141L371 966h-1v-13c-10.92-2.647-21.84-2.192-33-2v-2z" fill="#fbd7d5"/><path d="M554 860h3v8h4v3h-6v-2h-6c.574-3.872 2.341-6.185 5-9z" fill="#f2182b"/><path d="M330 805l6.438 2.313 3.621 1.301L343 810l1 3-3.25.188c-3.885.474-3.885.474-6.187 3.375L333 819l1-6-3-1v-4l-1-3z" fill="#e02130"/><path d="M431 429h1c2.068 13.439.485 26.584-1 40h-1c-1.618-13.446-.302-26.571 1-40z" fill="#e32940"/><path d="M421 319h3c1.303 5.861 1.528 12.025 1 18l-2 2-.875-1.937c-.953-2.215-.953-2.215-3.125-3.062-.625-3.062-.625-3.062-1-6l3-1v4h2l-1-2.625c-.987-3.332-1.164-5.927-1-9.375z" fill="#f51620"/><path d="M423 297c3.823 3.823 3.055 10.337 3.063 15.5L426 317l-4-1-1-6-4-1v-2h4v-2l2-1v-7z" fill="#faede9"/><path d="M362 241h15v2h2c1.203 6.496.584 11.61-1 18l-3-1 1-2.437c1.207-4.301 1.177-8.132 1-12.562-4.025-.909-8.004-1.302-12.109-1.621L363 243l-1-2z" fill="#f9e1da"/><path d="M249 189l3 1c-3.76 4.464-7.438 8.35-12 12-1.865 2.06-3.666 4.162-5.449 6.293C233 210 233 210 231 211v-4h2v-2h3v-4h3l1-4h3l-1-4h5v-2h2v-2z" fill="#fce7e0"/><path d="M447 862h2c1.272 4.613.833 8.315 0 13h-7l.063-2.875c.163-3.032.163-3.032-1.062-5.125h5l1-5z" fill="#e81920"/><path d="M336 853h3c1.478 2.957 1.06 5.742 1 9l2 1-4.25.125-2.391.07c-2.567-.212-4.151-.909-6.359-2.195v-2l2.375-.187L334 858c1.375-2.476 1.375-2.476 2-5z" fill="#f61328"/><path d="M248 849h5v2h5v2h2l1 4h2v2h2v2c-4.006-.64-6.847-2.654-10.187-4.875l-3.23-2.117C249 852 249 852 248 849z" fill="#fafcfc"/><path d="M301 767h6l1 4h9v2h2v2h-2v2h4l1 3c-4.576-1.277-7.37-2.99-11-6a123.18 123.18 0 0 0-3.625-2.062c-2.651-1.522-4.432-2.652-6.375-4.937z" fill="#f5e9e7"/><path d="M765 273l4 1 1 2 3 1v2h-2v6h-6v-12z" fill="#ec1c27"/><path d="M687 135c4.787.577 8.251 2.641 12.313 5.063l1.955 1.143L706 144v1h-7l-1 3-3-1v-4h3v-2h-3v-2l-8 1v-5z" fill="#fde5e6"/><path d="M753 71l3.938 1.875 2.215 1.055C761 75 761 75 762 77h-3v2l5 1-2 1-1 2c-4.826-3.154-9.576-6.289-14-10l2.438-.437c2.484-.304 2.484-.304 3.563-1.562z" fill="#de2f3b"/><path d="M653 21c5.652 1.072 11.06 2.571 16.5 4.438l3.656 1.246L676 28l1 3h-5v-2h-9v-2h-3l-2-3c-2.552-1.205-2.552-1.205-5-2v-1z" fill="#fafefd"/><path d="M772.938 732.563L775 733v6h-4l-4 4h-2v2h-2c-.437-2.062-.437-2.062 0-5 2.703-3.696 5.307-6.748 9.938-7.437z" fill="#f7fcfc"/><path d="M62 570h1l3.125 11.25.918 3.223.84 3.105.793 2.856c.37 2.928-.102 4.121-1.676 6.565l-1-8-4-1-.562-7.875-.17-2.262c-.381-5.637-.381-5.637.732-7.863z" fill="#fcf0e9"/><path d="M159 557c0 4 0 4-1.5 5.75L156 564l1.488 1.145c2.091 2.566 1.814 4.281 1.699 7.543l-.082 3.012L159 578c-2.091-3.136-3.016-5.785-4.125-9.375l-1.07-3.398c-.727-2.913-.972-5.248-.805-8.227 2.491-1.245 3.411-.777 6 0z" fill="#fdf7f4"/><path d="M461 426h1c.466 13.637.24 25.957-4 39-1.164-3.973-.605-6.896 0-11 .086-3.002.061-5.997 0-9h3v-19z" fill="#fde6e1"/><path d="M333 333h4l-2 12h2l1-4 2 1-4 11-2-4-1.148-1.859c-1.176-2.957-.818-5.247-.477-8.391l.336-3.266L333 333z" fill="#fdeff4"/><path d="M667 301c.983 2.948 1 4.941 1 8l1 2h-2l-2 6h-4v4h-2v4h-2c2.506-8.402 6.21-16.119 10-24z" fill="#df3033"/><path d="M540 686v5c-3.681 2.454-6.444 2.228-10.687 2.125l-2.127-.027L522 693v-2h-3v-4l1.941.691c5.385 1.79 9.422 2.887 15.059 1.309 2.38-1.427 2.38-1.427 4-3z" fill="#fdede7"/><path d="M317 655h1l1 14h-2v4h2l-1 5-3-1c-3.015-7.127-.116-15.036 2-22z" fill="#e02f35"/><path d="M280 637h3v4h2v7l-2 2-1-1-.148 1.934-.227 2.504-.211 2.496L281 658l-2 1 1-22z" fill="#e22f36"/><path d="M357 351h1l.125 6.688.07 3.762c-.187 3.4-.538 5.594-2.195 8.551l-3 1v2l-3 1-2 3c-.25-2.187-.25-2.187 0-5l4-5c2.481-5.153 4.398-10.281 5-16z" fill="#f9e4e0"/><path d="M436 309l2 2c-.023 1.75-.023 1.75-.375 4-1.356 11.517-2.497 23.567 3.375 34h-3c-3.485-7.399-3.544-14.41-3.687-22.5l-.104-3.937L434 313h2v-4z" fill="#d62f41"/><path d="M773 261h3c3.358 7.904 3.358 7.904 2 12.063-2 1.938-2 1.938-4.687 2.25L771 275l-1-3h3l-.562-2.125c-.489-3.214-.1-5.711.563-8.875z" fill="#ebd2ac"/><path d="M598 254c3.123 2.518 3.945 3.726 4.75 7.75L603 265h2l1 3-6-2v-8l-2 1c-.113 5.083-.113 5.083 1 10-2.437-.75-2.437-.75-5-2-.812-2.125-.812-2.125-1-4l1 2h2v-5h-2v-2h2l2-4z" fill="#fcdfe0"/><path d="M439 11h20v2c-6.765 1.612-13.05 2.266-20 2v-4z" fill="#e42028"/><path d="M458 957h3v31c-2.357-3.536-2.3-5.22-2.414-9.418l-.117-3.799-.094-3.971-.117-4.006L458 957z" fill="#f91528"/><path d="M343 836c3.044-.082 5.072.024 8 1v2l3 1-1.937.688c-2.312 1.134-2.312 1.134-2.625 3.688L349 847l-3 4c-1-1-1-1-1.062-3.562L345 845h-3v-2h5v-4h-4v-3z" fill="#f31424"/><path d="M242 717l5 1v3l2.125-.437c3.967.604 5.282 2.485 7.715 5.547 1.478 2.408 1.663 4.123 1.16 6.891l-3.375-2.75-1.898-1.547c-1.815-1.791-2.632-3.427-3.727-5.703l-4-2-3-4z" fill="#f9f0e7"/><path d="M743 465v2h-18v2h-9v10l-2 1 1-14 12.875-.5 3.707-.145 3.535-.137 3.269-.127L743 465z" fill="#fcc6c3"/><path d="M431 295h8v2h2l-2 12-2-3-2 1v-6h3v-2h-7v-4z" fill="#e0272a"/><path d="M803 273h4v2h-4v-2zm0 2c-1.619 3.239-4.747 3.677-8 5l-2.25 1.188C791 282 791 282 788 282c.75-4.75.75-4.75 3-7 4.192-1.317 7.723-.755 12 0z" fill="#dbe3b3"/><path d="M618 275l1 4h-4v4h4v2h-2v4h-2l-.187-2.375L614 284c-2.476-1.375-2.476-1.375-5-2l4-1c-.267-1.985-.267-1.985-1-4l-3-1c2.957-1.478 5.742-1.06 9-1z" fill="#f61724"/><path d="M324 141c0 2.621-.313 4.509-1 7l-1-3h-2v2h-2v2h-2l-1 4h-7v2l-4-1c6.488-4.666 13.089-8.986 20-13z" fill="#fbede5"/><path d="M428.273 98.016L430 99h-6l-1 3-10 1-2-4c5.451-2.236 11.722-3.464 17.273-.984z" fill="#e52c3f"/><path d="M587 93l-6 1 3 2c-3.087 1.029-4.139.989-7.23.441l-2.432-.42-2.525-.459-2.561-.447L563 94v-1c16.971-4.044 16.971-4.044 24 0z" fill="#d93544"/><path d="M469.902 4.805l2.19.009 6.846.062 4.674.027L495 5v1l-2.38.168-10.87.77-3.742.264L455 9V7c5.065-1.664 9.556-2.276 14.902-2.195z" fill="#fad7d2"/><path d="M322 840l2 2-1.562 3.125c-1.555 3.609-1.622 6.049-.437 9.875l2 1v2l-9-2 3-2c.25-2.584.25-2.584 0-5h-5v-4h4v2h3l2-7z" fill="#db272e"/><path d="M343 801h7v2l6 2v2l-2.437.875c-2.695.858-2.695.858-3.562 3.125h-6v-2h2v-5l-3-1v-2z" fill="#f6fcfb"/><path d="M345 793l16 7v1l-2.375.438c-2.589.44-2.589.44-4.625 1.563l-5.625-2.437-3.039-1.434L343 798l4-1v-2h-2v-2z" fill="#d5343e"/><path d="M685 685h3v2h43v1l-44 1-2-4z" fill="#c14147"/><path d="M344 479c1.52 1.797 1.52 1.797 3 4-.312 3.25-.312 3.25-1 6h2v2h3v2h-4v32h-1l-.076-2.715-.296-10.187-.125-4.369c-.268-9.601-.731-19.152-1.503-28.728z" fill="#f8d0af"/><path d="M521 461h4v16h-4v-16z" fill="#f11b18"/><path d="M493 341c3.912 1.156 6.875 2.355 10 5-1.701 1.701-3.986 1.327-6.312 1.5-3.345.25-6.458.579-9.687 1.5v-5l6-1v-2z" fill="#f8e8e3"/><path d="M433 317h2l.076 2.076.362 9.424.119 3.266c.23 5.802.613 11.487 1.443 17.234h-3l-2-16h2l-1-16z" fill="#f51728"/><path d="M266 257h1l.125 11.313.051 3.248.02 3.115.032 2.872C267 280 267 280 265 283c-1.971-4.927-2.18-8.78-2-14h2l-.035-2.117-.027-2.758-.035-2.742C265 259 265 259 266 257z" fill="#ea323f"/><path d="M257 259l2 2 2-1 1 9-2-3-1 3h-2l-.184 2.117-.254 2.758-.246 2.742C256 279 256 279 255 281h-2c.673-5.025 1.544-9.972 2.563-14.937l.42-2.072L257 259z" fill="#eb1d2c"/><path d="M275 173c-.337 2.994-.988 3.988-3.18 6.141l-2.695 2.109-2.68 2.141C264 185 264 185 261 185c1.244-4.976 2.734-7.156 7-10 2.735-1.609 3.759-2 7-2z" fill="#e02633"/><path d="M477 877h1v16h9v2l-4 1v3l-12 1-1-3 10 1v-3h-3v-18z" fill="#f5ded6"/><path d="M583 865v10h-3v-2h-3l-.312-1.937L576 869l-3-1c6.625-4.125 6.625-4.125 10-3z" fill="#e52428"/><path d="M660 800l3 2-2.484 1.023-3.266 1.352-3.234 1.336-5.266 2.477c-2.27 1.054-3.444.636-5.75-.187l1-3h5v-2h4v-2c3.625-2.125 3.625-2.125 7-1z" fill="#f3ecef"/><path d="M722.875 774.25L725 775l1 5c-4.961 1.323-9.911 1.089-15 1 6.97-7.176 6.97-7.176 11.875-6.75z" fill="#f3f4f1"/><path d="M278 659l1 4h-2l-1 4h-2l1 2v6l-6 2-1 6c-1.534-4.422-.147-7.094 1.609-11.25 2.319-4.585 5.294-8.662 8.391-12.75z" fill="#df2831"/><path d="M282 60l2 1-3 6h-5v2l-7 1v3h-3c.378-2.385.623-3.665 2.459-5.296l1.85-1.098 2.014-1.205 2.115-1.213 2.104-1.271L282 60z" fill="#f9fdfc"/><path d="M573 1016l4 1-1 1 47 1v1h-51l1-4z" fill="#b13e40"/><path d="M583 870c3.134 2.998 4.103 4.805 4.316 9.133l.127 2.441.119 2.551.131 2.574L588 893h5v4h-2v-3l-5-1-1.5-10.375-.434-2.984-.41-2.852-.381-2.634C583 872 583 872 583 870z" fill="#fde6df"/><path d="M694 850c2.797 2.068 3.027 3.144 3.688 6.688L698 860c-2.312.688-2.312.688-5 1-1.875-1.125-1.875-1.125-3-3 .151-3.011.587-4.521 2.563-6.812L694 850z" fill="#f8e5e2"/><path d="M187 650c2.972 3.55 5.388 7.172 7.688 11.188l1.824 3.168c.861 1.531 1.703 3.074 2.488 4.645h-3l-3-4-4-2c-2-3-2-3-1.625-6.187L188 654l-2-1 1-3z" fill="#fbe9e0"/><path d="M342 555h1c.138 12.704-.259 25.317-1 38h-1v-20h-2v-8h3v-10z" fill="#df4a44"/><path d="M343 479c4.897 8.849 3.12 20.774 3.063 30.625l-.014 4.488L346 525h-1l-.076-2.415-.362-10.835-.119-3.801-.127-3.652-.111-3.364c-.174-2.48-.574-4.548-1.205-6.933-.069-2.594-.094-5.158-.062-7.75l.014-2.113L343 479z" fill="#da4842"/><path d="M764 285h2v8l-3 2c-.36 3.083-.36 3.083-.312 6.625-.288 6.091-1.279 9.495-5.215 14.117C756 317 756 317 754 317c.506-2.169 1-4 2-6h3c1.459-4.84 1.427-9.868 1.719-14.883C761 293 761 293 762 291h2v-6z" fill="#fbbaa2"/><path d="M100 263h3l1 3-3 5-1 3.188C99 277 99 277 96 279l-3-1 7-15z" fill="#fbe9eb"/><path d="M710 47h7v2l3.313-.125C724 49 724 49 727 51l1 3 2 2-2 1c-1.879-.713-1.879-.713-4.133-1.871l-2.441-1.24-2.551-1.326-2.574-1.314L710 48v-1z" fill="#fbe8e9"/><path d="M871 753h2c-.479 4.763-2.495 7.226-5.562 10.813l-2.504 2.957L863 769l-2-4 4.875-6 1.395-1.734c1.199-1.46 2.461-2.867 3.73-4.266z" fill="#e8273e"/><path d="M120 701l1 2 3-1 .813 2.75c1.094 2.995 2.295 4.756 4.188 7.25v3h4l1 4-4 1-5.562-8.375-1.615-2.406-1.514-2.305-1.412-2.126L119 703l1-2z" fill="#f2f4e9"/><path d="M408 671h1l1 8c8.038 2.074 15.73 2.214 24 2l-1 2h-10v2h-2v-2h-7v-2h-2v2c-3-1-3-1-4.25-2.625-1.051-3.327-.4-5.995.25-9.375z" fill="#fce4e1"/><path d="M785 293l4 2v6h-4v2h2v8h-2c-2.489-4.045-2.51-7.564-1.547-12.164A226.27 226.27 0 0 1 785 293z" fill="#dee3b9"/><path d="M829 135c5.644 4.684 11.006 9.621 16 15v1h-6v-4h-3v-2h-2v-4h-5v-6z" fill="#fcdfe2"/><path d="M602 13l17 3v1h-9v2h5v2l-16-3 3-3v-2z" fill="#d6363b"/><path d="M526 887c.125 7.75.125 7.75-1 10-4.875-.875-4.875-.875-6-2-.041-2-.043-4 0-6 2.647-1.461 3.894-2 7-2z" fill="#f2e4de"/><path d="M519 873c2.375-.125 2.375-.125 5 0 2 2 2 2 2.195 3.945L526 883h-7v-2h2l-1-1.75c-1-2.25-1-2.25-1-6.25z" fill="#f5f2eb"/><path d="M423 859h3l1 6h2l1-2 1 6h-10l2-10z" fill="#e81b28"/><path d="M642 849h2l2 3 3-2v2l7 1-1 2h-7l-.875 2.688L644 866h-1l-1-7h3l-1-5-5-1 3-4z" fill="#de3e41"/><path d="M497 561h2v6h2v22h-2v-20h-2v-8z" fill="#f91527"/><path d="M566 485h1v6l-2 2v2.875c0 3.118-.398 4.521-2 7.125l-3-1c-.767-7.674-.767-7.674 1.078-10.863 1.242-1.438 2.578-2.793 3.922-4.137l1-2z" fill="#ed2436"/><path d="M731 445h3l1 4h2v8h-2v4h-4l2-12h-2v-4z" fill="#df2224"/><path d="M653 307h4v2h3c.125 5.75.125 5.75-1 8h-2v-4h-3l-1 4h-2v-6h2v-4z" fill="#dee1b8"/><path d="M783 291h1l.063 9.875.025 2.84.01 2.715.016 2.507C784 311 784 311 783 313h-2l-1-6h-2v-5l3-1 .184-1.934.254-2.504.246-2.496C782 292 782 292 783 291z" fill="#f8caac"/><path d="M670 275h5l-1.469 1.051c-2.292 2.918-1.943 5.476-2.031 9.137-.224 5.838-1.008 10.504-3.5 15.813h-1c.494-8.786 1.368-17.35 3-26z" fill="#ebbc9d"/><path d="M791 263l4 2c.75 2.125.75 2.125 1 4h2v2l-3 1-1 2-2-1 1-3-6 7c-1.305-3.916-.322-5.039 1.438-8.687l1.434-3.012L791 263z" fill="#f0bfa4"/><path d="M925 248h2l8 17h-2l-1 2c-1-1-1-1-1.062-3.562L931 261h-4l-.437-3.687L925 248z" fill="#fcfcfa"/><path d="M535 87h14v2h2v2h-16v-4z" fill="#f11820"/><path d="M399 949h24v2l-1.912.076-8.526.362-3.01.119-2.861.127-2.65.111c-2.034-.013-2.034-.013-3.041 1.205h-5v-2h3v-2z" fill="#f1fef4"/><path d="M646 910v5h-19c3.554-1.777 6.846-3.006 10.625-4.187l3.477-1.105C644 909 644 909 646 910z" fill="#f8f5f5"/><path d="M518 885l1 2c2.025.652 2.025.652 4 1l-3 1c-.21 4.141-.21 4.141 1 8h-5c-.826-2.892-1-4.887-1-8l-5 1c2.404-3.607 3.947-3.855 8-5z" fill="#d63234"/><path d="M440 877l2 4h3v-4h2v8h-3l-1 8-2-1c-1.028-5.039-1.09-9.887-1-15z" fill="#f71423"/><path d="M599 823h7v2l-4 1v2c-3.224 1.075-5.675 1.167-9.062 1.188l-3.223.043C587 829 587 829 585 827h10v-2h4v-2z" fill="#ee1c28"/><path d="M528 653h3c2 2 2 2 2.188 5.438C533 662 533 662 532 665l-5 1-.062-5.375-.035-3.023C527 655 527 655 528 653z" fill="#f0191c"/><path d="M974 506h1l.125 13.25.051 3.801.02 3.652.032 3.364c-.222 2.872-.734 4.505-2.227 6.933h-2l3-31z" fill="#fce9e7"/><path d="M53 497h1l1.5 12.313.434 3.479c.846 7.11 1.263 14.05 1.066 21.209h-1c-2.045-12.431-3.482-24.387-3-37z" fill="#d23444"/><path d="M356 467l3 1v9l-3 1 3 1v4h-2l-1-2h-2l-1 6h-1c-.125-6.625-.125-6.625 1-10h2l1-10z" fill="#e62f35"/><path d="M753 357l4 2c-2.487 5.105-5.218 10.053-8 15-1-3-1-3 .438-6.187L751 365h-2c-.25-2.312-.25-2.312 0-5 2-1.812 2-1.812 4-3z" fill="#e0282f"/><path d="M619 271l4 1v3h8v3l2 1-8 1v-2c-3.622-1.491-7.276-2.787-11-4v-1l5-1v-1z" fill="#edc1a3"/><path d="M353 241h2l3 13-5-1v5c-2-2-2-2-2.012-5.223l.324-3.84.301-3.848C352 242 352 242 353 241z" fill="#e24650"/><path d="M761 195h9c1 4 1 4 .063 6.25L769 203h-4v-2h-2v-2h-2v-4z" fill="#f5fdfd"/><path d="M329 1007l3.375 2.875 1.898 1.617L338 1015l-7 1v3c-4.053-1.225-7.444-2.699-11-5 3.576-1.238 6.337-.749 10 0v-5l-2-1 1-1z" fill="#da2f3b"/><path d="M716 877v2l4 1c-7.286 4.429-7.286 4.429-12 5v-2h-4l-1 2-2-2 6.375-3 3.586-1.687C714 877 714 877 716 877z" fill="#dc3440"/><path d="M689 631h2v6h2v6h-2v10h-3l.219-3.289.281-4.336.145-2.16c.262-4.08.407-8.124.355-12.215z" fill="#f91321"/><path d="M373 487c1.442 2.884 1.094 5.417 1.063 8.625l-.027 3.602L374 502l-1-2-3 1-4-1 .938-2.25c1.143-2.958 2.063-5.569 2.063-8.75l4-2z" fill="#eb202d"/><path d="M545 397h4v6h2l1 2h6v4l-10-2v-2h-2l-1-8z" fill="#f91424"/><path d="M296 307h26v2h2l1 6-2.625-1.875c-6.119-3.853-11.219-4.405-18.25-4.25l-2.375.027L296 309v-2z" fill="#f9e5e5"/><path d="M414 21l-2 6c-2.698 1.349-4.118.703-7 0l-3-1-1 1c-2.671.141-5.324.042-8 0 3.531-2.354 6.999-3.155 11.063-4.125l2.221-.551C411.705 21 411.705 21 414 21z" fill="#fbeaeb"/><path d="M383 905l3.375.938c4.081 1.027 8.095 1.482 12.281 1.844 2.81.262 5.569.708 8.344 1.219-5.273 3.516-11.325 1.964-17.375 1.125l-3.711-.492L383 909l-1-2 1-2z" fill="#e92631"/><path d="M642 905v2h9c-3.199 1.599-5.355 2.426-8.75 3.125l-2.422.508L638 911v-2h-10c2.635-1.757 4.04-2.419 7-3.125l2.063-.508C639 905 639 905 642 905z" fill="#d83841"/><path d="M350 801c7.115 2.763 14.076 5.788 21 9v1l-7 2-1-3h-2l-2-2-3-1v-2h-5l-1-4z" fill="#f8f0ea"/><path d="M529 515h1l2 6.625 1.125 3.727c.812 3.387 1.045 6.187.875 9.648h-3c-1.422-1.426-1.422-1.426-2.75-3.312l-1.359-1.863C526 528 526 528 527 525v2h2v2h2l-1-2.5c-1.168-4.087-1.146-7.269-1-11.5z" fill="#fde5e5"/><path d="M575 358l1 3h-18l-2 5c-.75-1.75-.75-1.75-1-4 1.438-2.25 1.438-2.25 4-4 2.72-.295 5.25-.133 8 0 2.862-1.431 4.934-.6 8 0z" fill="#f3192c"/><path d="M69 333h2l-.77 3.043L64 362h-1c-.197-6.139-.194-11.192 2-17 .443-2.663.722-5.312 1-8h3v-4z" fill="#fde1e6"/><path d="M526 316h1v13h2v4h-2l.125 2.875C527 339 527 339 525 341c-1.354-2.709-1.065-5.009-1-8h2l-.492-1.613c-.618-2.903-.64-5.607-.633-8.574l-.008-3.23C525 317 525 317 526 316z" fill="#fb1221"/><path d="M355 275h4v2l-4 2 .563 1.563c.6 3.344.124 6.13-.562 9.438l-2 1-.078-1.828c-.296-5.242-.296-5.242-2.984-9.609L348 278v-2l7 1v-2z" fill="#e22637"/><path d="M589 258l3 1 .938 3.313c1.096 3.804 2.082 5.204 5.063 7.688l-5 3c-3.569-4.655-3.682-9.348-4-15z" fill="#da333c"/><path d="M732 160c6.115.367 8.833 1.731 13 6v3c-2.794.508-4.474.349-6.855-1.23-4.926-4.113-4.926-4.113-6.145-7.77z" fill="#e7222e"/><path d="M479 107h8v2c-3.088 1.765-4.233 2-8 2v2h-8v-4h8v-2z" fill="#eadbb2"/><path d="M623 1005h3c-1.31 3.931-2.832 6.312-6 9-3.717 1.239-7.191 1.184-11.062 1.188l-2.221.037c-1.907.005-3.814-.102-5.717-.225l-2-2h20v-2h2v-2h2v-4z" fill="#fcf2ec"/><path d="M438 879h1v6h2l1 8-10-1v-3l4-1 2-9z" fill="#da3947"/><path d="M418.5 858.75c2.5.25 2.5.25 4.5 2.25v5l-10-1c1.462-5.846 1.462-5.846 5.5-6.25z" fill="#f6ede3"/><path d="M809 809h8c-3.104 3.204-6.321 6.253-9.625 9.25l-2.289 2.078C803 822 803 822 800 823c.313-1.875.313-1.875 1-4 3-2 3-2 6-2v-2h2v-6z" fill="#f9e0da"/><path d="M433 659h1l.184 2.887.254 3.801.246 3.762c.193 3.448.193 3.448 1.102 6.258.215 2.293.215 2.293-1.332 4.59-3.124 2.169-4.938 2.117-8.703 1.953l-3.266-.109L420 682v-1h7v-2h7l-1.023-2.539c-1.103-3.909-.982-6.807-.602-10.836l.336-3.773L433 659z" fill="#c4333d"/><path d="M72 595l3 1c.844 2.223.844 2.223 1.5 5.063.867 3.541 1.797 6.88 3.188 10.25 1.259 3.538 1.591 5.977 1.313 9.688-2.308-2.308-2.754-3.847-3.727-6.937l-.937-2.961-.961-3.102-.984-3.102C72 597.285 72 597.285 72 595z" fill="#fdf0e6"/><path d="M299 549h2v8h2v16l-1-4h-2l-1-20z" fill="#e32625"/><path d="M57 527h1l1.5 9.625.434 2.738c1.441 9.399 1.441 9.399 1.066 13.637l-2 2c-1.978-9.532-3.745-18.264-2-28z" fill="#da4861"/><path d="M166 321h1c.24 5.633-.615 10.545-2 16h-2l-1 5-3 1c1.666-7.572 4.327-14.736 7-22z" fill="#f2f4e6"/><path d="M714.008 326.902l2.988.01 3.129.025 3.152.014L731 327v2l3 1-1 3-2.312-2c-4.571-3.022-9.414-2.617-14.687-2-3.417.796-6.705 1.799-10 3 .375-1.937.375-1.937 1-4 2.505-1.252 4.209-1.114 7.008-1.098z" fill="#f8af99"/><path d="M779 281h3v2h5v2l4 1-1.715.996c-4.547 2.851-4.547 2.851-7.039 7.406-.221 2.225-.325 4.364-.246 6.598h-1l-1-10h2v-2h2v-2h2v-2h-7v-4z" fill="#cc3631"/><path d="M250 245c4.013 3.598 6.794 7.069 7.184 12.609.003 2.471-.052 4.923-.184 7.391h-1l-1-8h-4v6l-2-2c.033-2.729.564-5.297 1-8h3l-1-3-3-1 1-4z" fill="#edc2aa"/><path d="M245 219h2c-1.37 3.161-1.989 3.993-5 6l-2 5c-2.584 3.832-4.561 5.644-9 7 1.654-3.583 3.68-6.81 6-10h2l.75-1.875c1.456-2.476 2.628-3.076 5.25-4.125v-2z" fill="#e8e0c9"/><path d="M628 104c6.598.6 12.889 2.446 19 5l1 2c-4.087.24-7.177-.577-11-2v2l4 1c-2 1-2 1-3.945.441l-2.18-.879-2.195-.871L631 110l3-1v-2h-3v-2l-3-1z" fill="#da313b"/><path d="M348 897v2l5 2v3c-4.318-.508-8.033-1.197-12-3v-2l-2-1c2.957-1.478 5.742-1.06 9-1z" fill="#f2fcfb"/><path d="M475 863c5.75-.125 5.75-.125 8 1l7.625.563 2.141.131L498 865l-1 4-2.625-1c-5.751-1.704-9.812-1.119-15.375 1v-5l-4 1v-2z" fill="#fae2dc"/><path d="M324 813h1v16h-2v-4h-2v2l-3 1c1.64-5.233 3.39-10.152 6-15z" fill="#df2d35"/><path d="M175 776l5 1 1 3 9 1c.188 2.313.188 2.313 0 5l-3 3-6-5.937-1.734-1.709L175 777v-1z" fill="#f7f1ee"/><path d="M451 637c1.159 3.629 1.033 6.963.938 10.75-.052 5.503.39 10.024 2.063 15.25h-3l-.402-1.934-.535-2.504-.527-2.496c-.343-2.043-.343-2.043-1.535-3.066a95.19 95.19 0 0 1 .313-5.812l.238-3.207c.419-2.777 1.03-4.587 2.449-6.98z" fill="#fbe9df"/><path d="M174 617h9l-1 3-3-1v2l3 1-1 2v1 6c-3.05-3.66-7-9.079-7-14z" fill="#faf6f0"/><path d="M141 493l3 2c.512 2.836.512 2.836.688 6.375l.195 3.781c.161 5.284.204 10.558.117 15.844-2.263-3.689-2.647-7.536-3.125-11.75l-.262-2.055c-.57-4.76-.689-9.403-.613-14.195z" fill="#f8e5d7"/><path d="M208 245c1 2 1 2 .18 5.004l-1.305 3.559-1.258 3.566C204 260 204 260 201.32 260.902L199 261l-2 6h-2c1.702-5.116 4.678-9.35 7.625-13.812l1.563-2.389L208 245z" fill="#fbddd6"/><path d="M620 205h5v3l2 1v2h12c1.316 3.62 2 6.096 2 10h-2v-6h-2v-2l-2.23-.113c-10.216-.688-10.216-.688-13.77-3.887-.812-2.187-.812-2.187-1-4z" fill="#e8e3cc"/><path d="M871 173l5 1 1 3h2l.813 1.813c1.07 2.218 1.07 2.218 2.75 3.75C884 184 884 184 885 187h-4c-1.94-2.114-3.585-4.126-5.25-6.437l-1.391-1.854C871 174.185 871 174.185 871 173z" fill="#f5eee6"/><path d="M166 155l1 2 2 1-4.812 5.313-1.369 1.514L156 172c-.625-1.812-.625-1.812-1-4l2-3h4l.25-2.187c.898-3.366 2.461-5.229 4.75-7.812z" fill="#fbe7df"/><path d="M303 150l1 3c-2.884 3.408-4.371 4.866-8.812 5.813L292 159v-3c1.391-1.352 1.391-1.352 3.25-2.625l1.828-1.289c1.974-1.116 3.707-1.645 5.922-2.086z" fill="#de2736"/><path d="M465 989h2v16h2v4h-6l.48-1.757c.801-3.455.892-6.962 1.082-10.493l.131-2.258L465 989z" fill="#e22123"/><path d="M455 957h3l.063 10.625.025 3.027c.016 4.898-.045 9.534-1.088 14.348h-2v-28z" fill="#cc2c2f"/><path d="M721 879h6v2c-3.427 3.11-7.063 5.247-11.187 7.313l-3.168 1.613L710 891l-2-1 3-1v-2l1.938-.875c2.215-.953 2.215-.953 3.063-3.125 2.563-.625 2.563-.625 5-1v-3z" fill="#fafdfb"/><path d="M227 824c4.81 2.547 8.324 4.99 12 9h-2l1 3c-3.039-1.41-5.594-3.089-8.25-5.125l-2.141-1.633L226 828l1-4z" fill="#d13938"/><path d="M647 814l-1 4-7-1 1 3c-3.155.936-5.966 1.106-9.25 1.063l-2.703-.027L626 821c3.245-2.163 6.27-3.309 9.938-4.625l3.715-1.352C643 814 643 814 647 814z" fill="#f9e1e1"/><path d="M101 669h4v5l2 1 1-2c2.034 3.73 3 5.669 3 10l-3 1-3.5-6.375-1.012-1.828C101 671.227 101 671.227 101 669z" fill="#f1f2ec"/><path d="M715 461h2v2h10v2h14v1h-26v-5z" fill="#cc2a34"/><path d="M242 205l2 3-1 3h-4v2h-3v7l-5-1v2l-2-1 4.25-5.25 2.391-2.953A89.17 89.17 0 0 1 242 205z" fill="#f7d9d4"/><path d="M772 190c4.136 3.381 7.813 6.666 11 11h-3v-2h-2l1 4c-6.571-4-6.571-4-8-8h2l-1-5z" fill="#e53445"/><path d="M339 129v2l-2 2v2c-3.402 2.094-6.053 2.179-10 2v2h-3v-2l6-2v-3c3.333-2.5 4.733-3 9-3z" fill="#e72131"/><path d="M570 13l24 3v1h-19v2l-3-1v-3h-2v-2z" fill="#f6eae0"/><path d="M462 13l-1 2h-3v2c-3.828 1.276-7.235.863-11.187.563l-2.271-.158L439 17c6.741-3.829 15.37-4.347 23-4z" fill="#fcede2"/><path d="M684 1011h2v2h16v-2h5c-1.313 2.626-2.324 2.695-5.062 3.625-5.615 1.75-10.406 2.535-15.937 0l-2-1.625v-2z" fill="#fce1d8"/><path d="M868 927h3v14h-2v11h-1v-25z" fill="#f9f6f3"/><path d="M359 899l5.188-.125 2.918-.07c3.023.204 5.162.927 7.895 2.195v2c-3.355 1.108-5.695.872-9.125.125l-2.633-.555C361 902 361 902 359 901v-2z" fill="#e52231"/><path d="M663 893h4v2l4 1-6.875 2.5-1.973.723C657.227 901 657.227 901 655 901v-4c2.906-1.257 4.796-2 8-2v-2z" fill="#f7eded"/><path d="M363 838c2.5 1 2.5 1 4 2v1l-3.875.438c-2.382.269-3.97.485-6.125 1.563l-2.437-.187c-2.724-.097-2.724-.097-4.375 2.188L349 847c-.375-2.25-.375-2.25 0-5 4.609-4.263 8.032-4.578 14-4z" fill="#d1464d"/><path d="M396.75 814.75c3.721.102 6.837.668 10.25 2.25l1 3c-1 1-1 1-3.875 1.25-3.657-.293-3.694-.819-6.125-3.25-3.61-.73-3.61-.73-7-1 2-2 2-2 5.75-2.25z" fill="#ec1f2e"/><path d="M907 701l2 2c-.225 4.95-1.845 8.214-5 12h-4v2l-2-1 1.461-2.266 1.914-2.984 1.898-2.953c1.378-2.232 2.61-4.428 3.727-6.797z" fill="#e92b3f"/><path d="M820 669h3c-1.376 3.807-3.126 6.93-5.437 10.25l-1.809 2.641C814 684 814 684 811 685c.643-4.016 2.661-6.892 4.875-10.25l2.117-3.266L820 669z" fill="#d6363e"/><path d="M684 655h1v8h-2v10l2-6h1l.125 6.75.07 3.797c-.18 3.181-.505 4.818-2.195 7.453l.195-6.055c-.012-2.184-.012-2.184-2.195-3.945l-.25-6.75-.016-3.672c.262-3.523.997-6.296 2.266-9.578z" fill="#db3341"/><path d="M480 649l3 4h-2l2 2v4h-2l1 10h-3l-.062-8.312-.025-2.381-.01-2.295-.016-2.111C479 652 479 652 480 649z" fill="#e61e1d"/><path d="M500 617h1l.184 3.465.254 4.473.119 2.287c-.116 3.695-.116 3.695 1.443 6.775.39 7.058-.068 14.006-1 21h-1c-.858-12.684-1.119-25.288-1-38z" fill="#e64956"/><path d="M482 617h1v23l-2 1c-2.522-3.783-2.483-7.629-2-12 .857-4.042 1.886-8.022 3-12z" fill="#fae0da"/><path d="M961 567h2c-1.23 7.478-2.888 14.722-5 22-2-2-2-2-2.012-4.129l.324-2.434.301-2.441C957 578 957 578 958 577l.438-3.375C959 570 959 570 961 567z" fill="#fcf2ec"/><path d="M589 264l.75 1.625c1.999 3.798 4.209 7.334 7.25 10.375v3l-5 2-1-4h-2v-2h2l-1-1.562c-1.32-3.218-1.132-5.995-1-9.437z" fill="#f9e9e3"/><path d="M412 100l1 3 2 1-4.312 1.5-2.426.844C406 107 406 107 403 107v-2l2-1-5-1c4.139-2.759 7.072-3.137 12-3z" fill="#dd353e"/><path d="M555 87h18v1l10 1v2c-9.464-.456-18.678-1.182-28-3v-1z" fill="#f6dad3"/><path d="M359 1015v2l-2 1 1.863-.219 2.449-.281 2.426-.281C366 1017 366 1017 369 1017l1-2v3l-6.187 1.563-3.48.879c-5.307.89-9.329-.696-14.332-2.441v-1l5.375-1 3.023-.562C357 1015 357 1015 359 1015z" fill="#dd2b38"/><path d="M443 1013h12v2h-8l-1 6h-4c-.625-1.75-.625-1.75-1-4l2-4z" fill="#effef9"/><path d="M585 1005h2v8h4v-8h2v10h-10v-2h2v-8z" fill="#dc241f"/><path d="M716 959h3v2h2l1 4-5-2 2 6h2v4h-3l-.937-2.375c-1.162-2.87-1.864-4.426-4.062-6.625 1.313-2.5 1.313-2.5 3-5z" fill="#f71521"/><path d="M517 943h2v2h16v-2h4v2h-2v2h-20v-4z" fill="#ebffff"/><path d="M677 893l2 2-2 1 2 2c-3.897 1.867-6.541 2.14-10.812 1.625l-2.957-.336L663 899c2.525-2.525 4.735-3.043 8.125-4.125l3.32-1.07L677 893z" fill="#d6303f"/><path d="M463 866l3 1v3h2c.111 5.458-.083 10.615-1 16h-1l-1-9h-2v-2h2v-4h-2v-5z" fill="#fdf3ee"/><path d="M722 771l-2 1-.383 1.891c-.824 2.815-2.006 3.384-4.492 4.859l-2.117 1.297C711 781 711 781 708 781v-2l2-1 1-3c3.719-2.958 6.192-4.566 11-4z" fill="#de2a35"/><path d="M151 748c1.938.313 1.938.313 4 1l1 3 3 1 2 6h2v-2h4v4h-2l-1 3-4.812-5.187-2.707-2.918c-2.177-2.541-3.872-4.972-5.48-7.895z" fill="#f6ece0"/><path d="M267 685h5v2h18c-2 2-2 2-3.939 2.243l-2.342-.012-2.551-.006-2.668-.037-2.668-.002c-6.551-.045-6.551-.045-8.832-1.186v-3z" fill="#dc3642"/><path d="M453 659h2l.25 1.875c.662 2.66.662 2.66 4.75 4.125l-1 14-2-1c-.379-1.891-.379-1.891-.562-4.25-.487-5.308-1.325-9.822-3.437-14.75z" fill="#da2e3a"/><path d="M373 653h4v4h-2v6h2v6h-2v2h-2v-18z" fill="#f41621"/><path d="M432 449c1.52 1.207 1.52 1.207 3 3 .074 2.262.074 2.262-.312 4.688l-.363 2.449L434 461h-2l.375 5.688.211 3.199c.402 3.02 1.155 5.354 2.414 8.113l-2 1c-2.465-4.763-2.264-9.214-2.187-14.437l.002-2.525c.032-4.452.295-8.657 1.186-13.037z" fill="#f7f0e6"/><path d="M474 381l-1 6h2v5l-2 1-1.75-2.75c-1.918-2.77-3.794-4.969-6.25-7.25 3.135-1.858 5.375-2.201 9-2z" fill="#fbeaee"/><path d="M86 279h1c.288 4.791-.558 8.006-2.5 12.375l-1.406 3.211L82 297l-2-1c.423-6.491 2.911-11.335 6-17z" fill="#f7fefa"/><path d="M930 268c3.045 3.606 4.768 7.586 6.625 11.875l.945 2.105c1.749 4.003 2.921 7.638 3.43 12.02-3.332-1.666-4.06-5.386-5.437-8.687l-1.809-4.262-.878-2.083c-.804-1.806-1.727-3.557-2.661-5.299C929 271 929 271 930 268z" fill="#cd4b60"/><path d="M448 279c3.075.071 6.011.248 9 1 2.063 2.563 2.063 2.563 3 5h-3v-2l-2.625 1c-3.332.987-5.927 1.164-9.375 1v-4h3v-2z" fill="#f6f2ef"/><path d="M253.563 235.938L256 236l1 5h-5l1 6h2l-1 4c-3.912-4.891-4.53-7.748-4-14 1-1 1-1 3.563-1.062z" fill="#db3230"/><path d="M355 125l1 2c-3 2-3 2-6 2l-2 4h-5l-1 6-1-2h-2v-2l-2-1 18-9z" fill="#fbf4ef"/><path d="M534 1015l8 2v3h-26v-1h17l1-4z" fill="#c32e35"/><path d="M509 890c2 2 2 2 2.125 4.625L511 897h4v2h7l-1 3c-7.266.606-7.266.606-10.5-2.062-1.809-3.542-1.808-6.012-1.5-9.937z" fill="#cf3037"/><path d="M531 894l2.688 1c3.022.912 5.196 1.183 8.313 1-.336 2.519-.574 3.672-2.625 5.25-3.176 1.003-6.067.877-9.375.75v-1h5v-2h-4v-5z" fill="#d63139"/><path d="M336 887l9 3-2 3-1 2-12-5v-1h6v-2z" fill="#da313f"/><path d="M600 868l2 1-.937 4.875-.527 2.742C600 879 600 879 599 881h-2l-.562-4.875-.316-2.742C596 871 596 871 597 869l3-1z" fill="#e91c21"/><path d="M429 873h2v4h-2v3h-3v2c-3.013 1.507-5.683 1.178-9 1l-2-2h10v-4h-2v-2h6v-2z" fill="#faeeeb"/><path d="M338 832l16 1v1h-14l.688 3.5c.645 4.877-.706 8.061-2.687 12.5h-1v-5h-2l1-3 3 1-1-11z" fill="#fee1e2"/><path d="M893 717h4c-1.386 3.865-3.189 6.968-5.562 10.313l-1.879 2.676L888 732h-1c-.25-3.25-.25-3.25 0-7 1.875-2.187 1.875-2.187 4-4 1.235-2.133 1.235-2.133 2-4z" fill="#f4efe5"/><path d="M927 666l2 1c-.535 5.348-2.467 9.358-5 14h-3c.604-3.85 1.768-6.861 3.563-10.312l1.379-2.676L927 666z" fill="#e42f45"/><path d="M392 647h1v6l-2 2-.625 8.125-.117 2.285L390 671h-3l1-4h-1c-.18-5.22.029-9.073 2-14h2l1-6z" fill="#d72e2f"/><path d="M783 546c2 3 2 3 1.813 5.188-3 10.383-3 10.383-6.812 13.813l1-8h2l.438-3.812c.3-2.614.721-4.662 1.563-7.187zm-7 19l2 1-1 3h-2l1-4z" fill="#eae4cb"/><path d="M268 416l3 2c.293 2.164.293 2.164.188 4.625l-.082 2.477L271 427h-1v13h-1c-1.692-7.676-2.566-15.13-2-23l1-1z" fill="#e8242e"/><path d="M849 299c3.9 4.762 5.751 10.333 8 16l1.023 2.457c2.096 5.183 2.096 5.183.977 8.543-9.683-20.399-9.683-20.399-11-25l1-2z" fill="#cd4357"/><path d="M369 301h2v6h-2l-1 2h-3l-3 8h-1c-.167-4.921-.248-8.503 2-13l6 1v-4z" fill="#d93539"/><path d="M845 296c3.092 2.53 3.909 5.225 5 9h-3v-4h-2c-.22 3.856.396 6.492 2 10h-3c-1.757-4.504-2.193-8.176-2-13l3 1v-3z" fill="#fddcdd"/><path d="M607 118l6.125-.125 3.445-.07c3.487.199 6.185.943 9.43 2.195v1l-7.25.625-2.066.195c-3.806.296-6.462.355-9.684-1.82v-2z" fill="#e4e2ca"/><path d="M615 95h6l-2 1v2l4 1v2h6v2c-7.111-1.311-14.047-3.017-21-5v-1h7v-2z" fill="#f9e0dc"/><path d="M549 87l12 1-3 3v2l-13-1v-1h6v-2h-2v-2z" fill="#dc3743"/><path d="M521 1015h13l-1 4h-12v-4z" fill="#f21727"/><path d="M610 919v2c-3.204 2.136-3.996 2.242-7.668 2.195l-2.705-.02-2.814-.051-2.85-.027L587 923v-1l9.25-1.5 2.645-.434 2.559-.41 2.349-.381C606 919 606 919 610 919z" fill="#fce6de"/><path d="M720 879l2 4h-6l-.5 1.938c-1.5 2.063-1.5 2.063-5.312 2.75L706 888l-5 1c3.247-2.823 6.83-4.336 10.738-6.016 2.809-1.223 5.536-2.587 8.262-3.984z" fill="#fae5da"/><path d="M680 851h5l-2 4h-2v9l-4-1v-8h2l1-4z" fill="#f8fbf4"/><path d="M323 805l3 2c-.543 4.565-1.795 7.973-4 12h-3v-6h-2v-2l4 1 2-7z" fill="#f5f7f9"/><path d="M885 745h3c-1.564 3.522-3.695 6.271-6.125 9.25l-2.195 2.703L878 759c-1.181-3.982-.892-6.215 1-10 3.125-1.375 3.125-1.375 6-2v-2z" fill="#fefcf9"/><path d="M385 653h4l-.254 2.484-.309 3.266-.316 3.234c-.107 2.657.06 4.515.879 7.016h-4v-16z" fill="#f91529"/><path d="M479 637c5.592 7.274 7.684 12.733 7 22h-1l-2-9-1 2c-3.778-4.722-3.301-9.259-3-15z" fill="#db2f3d"/><path d="M431 474l2 3 2.125 3.125c2.436 4.213 2.262 8.132 1.875 12.875l-6 1 1-5 1 2h3l-1-8h-4v-9z" fill="#d93a40"/><path d="M530 378l1 3h2l-1 3-.562 6.688-.254 3.574L531 397h-2c-2.172-6.515-1.102-12.694 1-19z" fill="#f51621"/><path d="M745 317h2v2h6l-1.023 1.906C749.194 326.245 747.202 331.1 746 337h-1c-.333-6.21.55-10.283 3-16h-3v-4z" fill="#f6cbb0"/><path d="M367 307h4v10h-2v6h-2v-16z" fill="#f31629"/><path d="M766 285c2.094 3.402 2.179 6.053 2 10h-4l-1 4 3 1-1 4h-2v7h-2l.313-7.875.068-2.262c.097-1.963.35-3.917.619-5.863l3-2c.577-1.964.577-1.964.688-4.125L766 285z" fill="#d83233"/><path d="M376 269h3c0 9.5 0 9.5-2 13-2.61-1.305-2.681-2.358-3.625-5.062l-.789-2.223L372 273l3-1 1-3z" fill="#fbe6e5"/><path d="M759 187c3.602.309 4.993.994 7.813 3.375C769 193 769 193 769 196c-5.461-.352-5.461-.352-8-1-1.5-2.062-1.5-2.062-2-4h2v-2h-2v-2z" fill="#f6fbfb"/><path d="M163 169c1.765 3.088 2 4.233 2 8h2v4h-2v-2l-1.75-.375c-2.273-.631-4.175-1.514-6.25-2.625l3-1c.591-1.946.591-1.946 1-4l2-2z" fill="#fcfaf8"/><path d="M730 161l5 3-2 1v2h-2v-2h-2l1-4zm-3 6l4 1-1 3h5l3 6c-3.777-1.813-7.373-3.907-11-6v-4z" fill="#f4f9e8"/><path d="M800 104l7 4v2l4 2-1.937.375L807 113l-1 2-7-5 4-1v-2l-3-1v-2z" fill="#d5343d"/><path d="M783 87c4.225.533 6.541 1.877 9.813 4.563l2.395 1.941L797 95c-2.952 1.476-5.05.623-8.156-.187C787 94 787 94 785.5 91.375L785 89h-2v-2z" fill="#faf9f6"/><path d="M343 39l-1 5c-2.751.917-4.359 1.109-7.187 1.063L331 45v-2h3l1-3c2.928-.976 4.956-1.082 8-1z" fill="#e02a34"/><path d="M428 881c-.379 2.746-.778 3.8-2.875 5.688-4.121 2.545-8.385 3.023-13.125 2.313-3-2-3-2-5-4l3 .5c4.027.585 7.935.571 12 .5l.875-1.937c1.402-2.57 2.206-3.062 5.125-3.062z" fill="#d9444d"/><path d="M361 845h2v4h2v14h-4c-.08-3.295.047-6.298.563-9.562.409-3.21.28-5.349-.562-8.437z" fill="#fb1226"/><path d="M224 703c4.24 4.111 8.278 8.41 12 13v1h-5v-4l-4-1v-5l-3 1-1-3 1-2z" fill="#f7e4db"/><path d="M785 707h6c-3.509 4.184-7.081 8.196-11 12-1-1-1-1-1.062-3.562L779 713h4v-2h2v-4z" fill="#f6f2e9"/><path d="M303 621h2v6h3v-6c1.188 1.625 1.188 1.625 2 4-1.187 3.188-1.187 3.188-3 6l-3 1-2 2-.062-4.25-.035-2.391c.094-2.266.465-4.188 1.098-6.359z" fill="#f1cbaa"/><path d="M406 605h1l1.367 6.055c.538 2.153.538 2.153 2.633 3.945v6h-2v16h-1l-.076-1.988-.362-8.887-.119-3.129-.127-2.988-.111-2.761c-.071-2.281-.071-2.281-1.205-4.247-.134-2.672-.043-5.323 0-8z" fill="#d9584b"/><path d="M345 461c.18 5.22-.029 9.073-2 14l-2-4-1.187-2c-.812-2-.812-2-.625-4.125C340.378 462.127 341.99 461 345 461z" fill="#f3cdac"/><path d="M665 356c1.813.188 1.813.188 4 1 1.873 2.636 2.977 4.93 4 8h-4v-2l-6 2v-4h2v-5z" fill="#e22123"/><path d="M644 346h1c-.399 6.583-1.132 12.977-4 19l-2 1-2-1c.715-4.615 2.453-7.772 4.844-11.719 1.234-2.434 1.74-4.596 2.156-7.281z" fill="#e9282e"/><path d="M640 337c3.591 4.683 4.71 8.01 4 14-1.5 2.5-1.5 2.5-3 4v-4h-2l2-10h-2l1-4z" fill="#f1c9aa"/><path d="M401.688 335.688c5.589.063 9.475.548 14.313 3.313l-1 2-2.57-.992c-3.632-1.067-6.533-1.21-10.305-1.133l-3.492.055L396 339l-1 5-4-1h3l-.625-2.375L393 338c2.825-2.825 4.748-2.3 8.688-2.312z" fill="#fcc8ce"/><path d="M633 331h3c4.125 8.25 4.125 8.25 3 14l-1-2h-2v-3l-1.5-1.312C633 337 633 337 632.813 333.813L633 331z" fill="#eedab4"/><path d="M350 309c2 2 2 2 2.313 5.063-.371 4.672-1.654 8.583-3.312 12.938h-2l-2 6-2-1 1.023-1.984c3.392-6.941 5.081-13.355 5.977-21.016z" fill="#de2c3b"/><path d="M620 313l1 2-2.375-.562c-2.596-.697-2.596-.697-4.625.563h-6v2l-4.25.125-2.391.07c-2.567-.212-4.151-.909-6.359-2.195l1.836-.148c5.403-.482 10.565-1.274 15.84-2.547 2.711-.355 4.71-.088 7.324.695z" fill="#e23342"/><path d="M777 301l4 1h-3l-.375 2.75c-.773 5.433-1.71 10.84-2.625 16.25h-1l-1-16h4v-4z" fill="#d82c2d"/><path d="M693 280l2 2-1.5 1.75c-1.87 2.354-1.87 2.354-1.5 6.25h-2l-1 2-4-1v2l-2-1c3.054-4.45 6.075-8.299 10-12zm0 5h2l-1 3-2-1 1-2z" fill="#f1c2a5"/><path d="M359 175l13 2 1-2 1 3-9.562 1-2.713.289c-4.94.507-9.759.82-14.725.711 1.5-1.562 1.5-1.562 4-3 2.774.032 5.253.496 8 1v-3z" fill="#e9e2ca"/><path d="M263 83l2 1-2 3h-2l2 6h-2l-2-2-3 1-2-1v2l-4-1 4.813-3.375 2.707-1.898L263 83z" fill="#f6f0ed"/><path d="M687.5 37.875L689 39l-1 4h6l1 3c-4.49-.587-8.225-1.764-12.375-3.562l-3.211-1.379L677 40v-1c7.385-2.215 7.385-2.215 10.5-1.125z" fill="#d63437"/><path d="M368 30l-2 2 3 2-10 3v-2l-2-1-1-2 4.313-1.562 2.426-.879C365 29 365 29 368 30z" fill="#dc313e"/><path d="M359 951c7.625.875 7.625.875 11 2l1 17h-4v-3h2l-1-12h-2v-2h-7v-2z" fill="#cf333f"/><path d="M305 884l15 1v5c-5.774-.481-9.959-2.185-15-5v-1z" fill="#fafcfd"/><path d="M625 878l2 1v6h-3v2h-2v2l-5-1 2-3h2v-4h4v-3z" fill="#f51b2a"/><path d="M617 874h1c.985 4.063 1.309 7.824 1 12-1.187 1.938-1.187 1.938-3 3-2.687.188-2.687.188-5 0l-1-2h3v-4h4v-9z" fill="#f5e2e0"/><path d="M411 856c13.33-.788 13.33-.788 19 4 .938 3.25.938 3.25 1 6l-4-1-1-6h-3l-1 2-2-4h-9v-1z" fill="#cd3243"/><path d="M289 749h4v2h-3l-1 4h-2v2c-3.366-1.443-5.51-3.333-8-6h10v-2z" fill="#fce5ec"/><path d="M211 669h2l-2 4h4v4l-3 1 2 4-2 1-6-9 3-1v-2h2v-2z" fill="#f5f0ed"/><path d="M854 609c1.19 3.41.854 5.084-.652 8.328l-1.104 2.422-1.182 2.5-1.17 2.547L847 631c-1.095-1.745-1.095-1.745-2-4 .491-1.999.491-1.999 1.52-4.074l1.1-2.271 1.193-2.342 1.158-2.377c2.812-5.719 2.812-5.719 4.029-6.936z" fill="#d6405a"/><path d="M854 613h1v8l-2 1v7l-5-1c1.64-5.233 3.39-10.152 6-15z" fill="#f9e9e0"/><path d="M560 605h1c.696 9.684 1.15 19.284 1 29-2.832-4.248-3.143-7.163-2.879-12.203l.146-2.969.17-3.078.158-3.125L560 605z" fill="#e62d3e"/><path d="M415 307l1 3-4 6c-.791 3.23-.791 3.23-1 6h-2l3 7h-2v-2h-2c-.125-7.75-.125-7.75 1-10v-4h3v-4h3v-2z" fill="#f9efe5"/><path d="M763 250c2.6 2.51 4.991 4.986 7 8v2c-4.75-.875-4.75-.875-7-2v-2l-4-1v-2h4v-3z" fill="#fcfbf1"/><path d="M573 95l9.625 1.375 2.738.383c4.742.692 9.134 1.522 13.637 3.242v1h-7v-2l-2.633.07-3.492.055-3.445.07c-3.487-.199-6.185-.943-9.43-2.195v-2z" fill="#f6d5ce"/><path d="M467.563 926.938L471 927v4h-16v-2l6.152-.684c3.21-.55 2.409-1.309 6.41-1.379z" fill="#f61822"/><path d="M495 873h2v4h-2v8h-2v8h-2l-.062-4.437-.035-2.496C491 884 491 884 492 883l.563-4.062L493 875h2v-2z" fill="#f71621"/><path d="M414 865c2.691.176 5.329.618 8 1l-1 3h10l-1 3-15-3v-2l-2-1 1-1z" fill="#dc3149"/><path d="M604 857h17c-3.589 3.589-4.773 3.444-9.687 3.688l-3.574.199L605 861l-1-4z" fill="#fef2f1"/><path d="M310 844h1v5h-2v2h4v2h2v2c-4.229-1.309-8.164-2.77-12-5l-1-3 2.875.188L308 847l2-3z" fill="#d73545"/><path d="M388 845l1 3-4 1v2h-2l-.375 3.875c-.375 3.875-.375 3.875-2.625 6.125 1-7.429 1-7.429 2-11h-3v-3c6.75-2 6.75-2 9-2z" fill="#dd2e42"/><path d="M391 839h5c1.125 5.75 1.125 5.75 0 8h2v2h2v2h3l-1 2-8-3 1-8-4 1v-4z" fill="#fadad3"/><path d="M482 832h13v1h-8v2h-6v2l-16-1v-1l17-1v-2z" fill="#d0363d"/><path d="M365 767h2c1.508 1.68 1.508 1.68 3.125 3.875l1.633 2.18C373 775 373 775 373 777h2v2h2v2h-5l-1-3-3-2c-.187-2.625-.187-2.625 0-5l-3-1v-3z" fill="#e5dfc6"/><path d="M691 683h2v2h18v2h-21l-1-2h2v-2z" fill="#fb1220"/><path d="M289 669h4v4h-2l.035 2.555.027 3.32.035 3.305C291 685 291 685 290 687l-4-1 3-1v-16z" fill="#f61426"/><path d="M688 629h1c1.102 8.399.777 15.719-1 24h-3l3-24z" fill="#d93f46"/><path d="M345 525h1l.375 2.313c.506 2.89.506 2.89 2.625 5.688v2h-2v6h-2l-1 6h-1l2-22z" fill="#e5cfa7"/><path d="M564 465h2v2h2v4h3v12h-3l-.113-2.16c-.408-5.939-1.173-10.531-3.887-15.84z" fill="#d73b43"/><path d="M693 341h2v4l-2 1c-2.868 6.023-3.601 12.417-4 19h-3c.865-8.959 2.319-16.245 7-24z" fill="#d1423b"/><path d="M367 142c-1 3-1 3-3.231 4.175-2.856.851-5.098 1.055-8.07 1.02l-2.959-.02-3.053-.051-3.111-.027L339 147l1-2 3.945.105 5.18.082 2.594.076c5.689.066 10.212-3.264 15.281-3.264z" fill="#e6e1c4"/><path d="M704 51l5.75 2.313 3.234 1.301c2.681 1.233 4.754 2.515 7.016 4.387h-6v2h-3v-3c-2.139-2.139-3.133-2.427-6-3l-1-4z" fill="#faede7"/><path d="M393 21v2l-9 3 5 1c-3 2-3 2-7 2v-2h-7c3.189-2.126 5.904-3.021 9.563-4.125l3.504-1.07C391 21 391 21 393 21z" fill="#d8343d"/><path d="M393 21h5v4c-4.861 2.592-9.653 2.187-15 2l1-2c2.066-.633 2.066-.633 4.563-1.125l2.504-.508L393 23v-2z" fill="#e4263b"/><path d="M369 1001h4l-.375 5.875-.211 3.305C372 1013 372 1013 370 1015c-.125-5.75-.125-5.75 1-8h-4v2l-2-1 4-7z" fill="#d53739"/><path d="M678 899v2h3v2l-5.312 2.063-2.988 1.16C670 907 670 907 667 906l2-3h4v-2c3-2 3-2 5-2z" fill="#fcfcfb"/><path d="M567 869h2v6h-4v-2l-6 2v15h-1v-18l8-1 1-2z" fill="#fbdee0"/><path d="M414.625 856.938l3.039.027L420 857v2l-2.312.75c-2.924 1.36-3.988 2.566-5.687 5.25v-2h-2l1-3-3-1 1 3-4-2h2v-2c2.645-1.322 4.678-1.097 7.625-1.062z" fill="#dc2d3a"/><path d="M815 819l3 1c-3.079 3.871-6.001 7.029-10 10l-2-1 1-6h6v-2h2v-2z" fill="#fbfdfe"/><path d="M829 803c-3.34 4.322-6.328 7.175-11 10v-2l-2-1 3.688-3.5 2.074-1.969c2.645-1.809 4.1-1.839 7.238-1.531z" fill="#d82b3e"/><path d="M332 656c1.875.25 1.875.25 4 1 2.127 2.955 2.674 6.546 3.492 10.039.509 2.136.509 2.136 1.633 4.773C342 674 342 674 342 677h-2l-2-8h-2l-1-10-3-1v-2z" fill="#d43633"/><path d="M59 539h2v2h2l.184 2.23.254 2.957.246 2.918c.293 2.681.743 5.261 1.316 7.895h-3l-3-18z" fill="#f3f5e9"/><path d="M306 533c3.66 3.66 3.055 8.997 3.063 13.938L309 551c-2.755-2.25-3.908-3.361-4.426-6.945l.113-3.18.074-3.195C305 535 305 535 306 533z" fill="#f4cbac"/><path d="M555 498v5h-2v14h-2v-8h-2v-2h2l-.187-2.812C551 501 551 501 552.438 499.125 554 498 554 498 555 498z" fill="#f61428"/><path d="M360 497h7l-1.515 5.897c-.785 3.404-.86 6.874-1.047 10.353l-.131 2.258L364 521h-1l-.562-7.625-.17-2.16c-.293-4.252-.163-8.009.732-12.215h-2l-1 2v-4z" fill="#f4baa0"/><path d="M715 481c2 2 2 2 2 5h-3v23h-1l-.184-3.727-.254-4.898-.119-2.449c-.186-3.527-.439-6.9-1.041-10.387C711 485 711 485 712 483h3v-2z" fill="#cf3b3d"/><path d="M345 429c3.878 3.41 4.372 7.016 5 12 .149 4.007.122 7.993 0 12h-1l-.402-2.992-.535-3.883-.527-3.867c-.349-3.133-.349-3.133-1.535-5.258l-2 2-1-5h1l1-5z" fill="#d93032"/><path d="M361 397h4v16c-3.703-5.554-4.222-9.455-4-16z" fill="#f41329"/><path d="M431 375c2.771 2.771 2.531 5.181 3 9l1 3h2l1-2v4h-6v-2h-2l1-12z" fill="#f61421"/><path d="M59 365h3c-.585 7.094-1.632 14.016-3 21-1.942-3.516-2.183-5.972-2-10h1l-.062-3.812c-.046-2.828.146-4.437 1.063-7.187z" fill="#f5f1e9"/><path d="M674 349h4c.894 4.981 1.475 9.97 2 15l-3.437-2.812-1.934-1.582C673 358 673 358 672 355h2v2h3l-1-6h-2v-2z" fill="#f3caab"/><path d="M337 333h4c.125 5.75.125 5.75-1 8h-2l-1 4h-2c-.213-4.468.409-7.823 2-12z" fill="#f5fbf7"/><path d="M663 333l4 1v3h4l1-2c-.442 2.477-.909 3.887-2.5 5.875-1.878 2.661-2.136 4.925-2.5 8.125h-2l.07-1.723c.122-5.203-.393-9.35-2.07-14.277z" fill="#db2528"/><path d="M253 293h2v8h2c.369 5.538.369 5.538-1.5 7.875L254 310c-1-1-1-1-1.098-4.598l.035-4.465.014-2.299L253 293z" fill="#f61623"/><path d="M636 292l3 3v2h2c1.286 7.429 1.286 7.429 0 11h-2l-2-11h-2l1-5z" fill="#f71526"/><path d="M767 245l2.145.875c3.772 1.486 7.599 2.798 11.43 4.125 2.426 1 2.426 1 4.426 3l-2 2v-2h-8v-2l-3-1c-2.687-1.437-2.687-1.437-5-3v-2z" fill="#ece4ce"/><path d="M228 211h3c-1.406 3.119-3.098 5.454-5.375 8l-1.871 2.094L218 227l2-8h3v-2h2v-4h3v-2z" fill="#f8e3e3"/><path d="M895 198c3.394 3.126 5.606 5.565 7 10l-5 1c-2.142-3.213-2.597-5.211-3-9l1-2z" fill="#f8faf7"/><path d="M827 129c4.252.472 6.373 2.773 9 6-.187 2.313-.187 2.313-1 4-3.366-1.443-5.665-3.165-8-6v-4z" fill="#e41e24"/><path d="M428 9h23v1l-22 3 1-2-2-2z" fill="#fadcd6"/><path d="M349 1018l5 2v1h-15l-1-3c3.458-1.729 7.283-.641 11 0z" fill="#ed1927"/><path d="M403 1016h6v3h21v1h-27v-4z" fill="#bb3c3e"/><path d="M688 1015c7.728-.318 13.939-.323 21 3v1c-5.361 1.129-10.553 1.097-16 1v-1h6v-2h-11v-2z" fill="#d5323f"/><path d="M411 1015h2v2h11v-2l3 1v3h-18c1-3 1-3 2-4z" fill="#e9192b"/><path d="M87 971h3l1 28-4-1 3-1-1.062-3c-1.767-6.822-.56-14.069.063-21h-2v-2z" fill="#f7eee0"/><path d="M698 957c4.053 1.225 7.444 2.699 11 5l-1 2-4-1v-2h-5l-1 3-3-1 1-4h2v-2z" fill="#fef3f7"/><path d="M435 917h9v2h5v2h-15l1-4z" fill="#ef1822"/><path d="M541 899l2 4h-2v4h-6v-4h-5v-1l2.152-.402 2.785-.535 2.777-.527c2.238-.312 2.238-.312 3.285-1.535z" fill="#fce6ed"/><path d="M659 876l1 2 5-1-2 4h-7v2h-8c3.188-2.125 5.265-2.502 9-3v-2l-4-1 6-1z" fill="#f3cccb"/><path d="M376 870h1l.188 3.313c.434 3.761.434 3.761 3.063 5.563 2.608 1.067 4.965 1.727 7.75 2.125v2h-8l-2-4h-3v-2h-2v-2h3v-5z" fill="#fbe4e4"/><path d="M451 869l4 1-2 3-1.125 5.188-.508 2.73L451 883h-2v8h-1c-.394-7.742 1.058-14.521 3-22z" fill="#fde2de"/><path d="M310 853l14 5 1-2-1 5h-7v-3l-6-1-1-4z" fill="#f9e6e0"/><path d="M311 845h2v4h5l1 5-4 1v-2h-2v-2h-4v-2h2v-4z" fill="#f91622"/><path d="M611 813l1 2 5-1 2 4-12 3 1-4h2l1-4z" fill="#faebeb"/><path d="M426 669h5v6h3v4h-5v-6l-4-1 1-3z" fill="#f81520"/><path d="M844 629h2c-.603 4.507-2.366 7.859-4.562 11.813l-.998 1.811L838 647l-2-3 1.242-2.266 1.633-2.984 1.617-2.953c1.212-2.248 2.383-4.504 3.508-6.797z" fill="#cb3f4b"/><path d="M367 637h2c1.068 5.577.826 10.394 0 16l-5-2v-4h3v-10z" fill="#db2526"/><path d="M393 581l3 1 1 9h-2l.125 2.875C395 597 395 597 393 599v-18z" fill="#fa1527"/><path d="M869 561h2c-1.099 6.311-2.581 12.063-5 18-3-3.75-3-3.75-3-6h3l.148-2.117.227-2.758.211-2.742C867 563 867 563 869 561z" fill="#feebe6"/><path d="M530 554l3 2c.293 2.602.293 2.602.188 5.625l-.082 3.039L533 567l-5-1 .438-4.312.246-2.426C529 557 529 557 530 554z" fill="#f6eae8"/><path d="M540 499l2 1v7h-9c1.911-3.536 3.626-5.79 7-8z" fill="#d62426"/><path d="M473 393c4 4.75 4 4.75 4 7l3.375.313L484 401l2 3-10-1v-2l-3 1v-9z" fill="#d4343a"/><path d="M83 301h1c-.347 6.058-.954 10.639-4 16l-2 6-1 2-2-1 1.242-3.508 1.633-4.617.816-2.305L83 301z" fill="#f5eae4"/><path d="M855 311h4l.313 2.375c.463 2.955.463 2.955 3.688 4.625-.75 4.75-.75 4.75-3 7l-2.5-5.875-1.406-3.305C855 313 855 313 855 311z" fill="#fddbdd"/><path d="M454 286l1 3c-1.997 1.569-3.794 2.909-6.125 3.938-2.331 1.321-2.896 2.616-3.875 5.063l-2-1v4h-3c2.279-7.25 8.007-10.887 14-15z" fill="#fae4da"/><path d="M794 213l5 2v2h4l-1 4 5 2v6c-3.16-3.052-5.971-6.286-8.75-9.687l-2.422-2.949C794 214 794 214 794 213z" fill="#fbe1d8"/><path d="M685 181l2 2-3.395.043-4.418.145-2.236.018c-2.447.048-2.447.048-5.951.795-2.082 2.394-2.082 2.394-3 5l-3-1c2.749-4.079 4.572-6.262 9.438-7.437 3.737-.617 6.885-.639 10.563.438z" fill="#fdfbeb"/><path d="M696 133l5.938 2.875 3.34 1.617C708 139 708 139 709 141l-8-2v2c-2.915-1.074-4.778-1.778-7-4l2-2v-2z" fill="#d63439"/><path d="M222 107l1 2 3 1-8 7-1-2 1-2-5 2c2.853-2.932 5.651-5.643 9-8z" fill="#d7353f"/><path d="M773 83l4.313.313 2.426.176c2.624.594 3.57 1.47 5.262 3.512h-2v2h2l1 3c-5.389-1.848-9.054-4.997-13-9z" fill="#fae3de"/><path d="M670 37l4.438 1.313 2.496.738L679 40l1 3h-12v-2h2v-4z" fill="#edfffa"/><path d="M1042 999h3v4h-2l-1 29h-1l-.062-13.687-.025-3.92-.01-3.779-.016-3.475c.103-2.841.46-5.378 1.114-8.138z" fill="#deb9c0"/><path d="M573.848 948.902L580 949c-2 2-2 2-4.625 2.125L573 951v4l7 1v1l-3.812.125-2.145.07C572 957 572 957 569 955c2.293-5.963 2.293-5.963 4.848-6.098z" fill="#f5f1e9"/><path d="M535 949h8v2l3 1c-1 2.5-1 2.5-3 5-2.794.468-5.142.234-8 0 2-2 2-2 4.625-2.125L542 955v-4h-7v-2z" fill="#f9e8db"/><path d="M375 907v4l3 1c-3.552 1.184-4.698.695-8.187-.437l-2.73-.871L365 910v-2c3.215-1.607 6.436-1.057 10-1z" fill="#fefcfe"/><path d="M656 903v2c-3.421 2.281-4.682 2.219-8.687 2.125l-3.012-.055L642 907v-2c4.648-2.399 8.911-2.2 14-2z" fill="#f61622"/><path d="M685 835h12v4h-2l-1 4c-3-3.75-3-3.75-3-6h-6v-2z" fill="#f31722"/><path d="M220 823l1.504 1.137A569.68 569.68 0 0 0 235 834l-2 1v2h-2l-.25-1.875c-.536-2.242-.536-2.242-2.437-3.125L226 831c-3.25-1.875-3.25-1.875-6-4v-4z" fill="#fbe7e9"/><path d="M314 781l4.813 2.313 2.707 1.301c2.27 1.269 3.773 2.452 5.48 4.387h-7l-1 2-1-3-3-1 1-4h-2v-2z" fill="#fae7e2"/><path d="M683 653h2l-1 3.125c-1.544 6.132-1.56 12.601-1 18.875l2 2-1 3c-1.995-1.644-2.916-2.525-3.372-5.113l.009-2.414.002-2.65.049-2.76-.01-2.748c.035-4.383.1-7.444 2.322-11.314z" fill="#fbd9d4"/><path d="M297 653l5 1-.254 2.047-.309 2.703-.316 2.672c-.116 2.462.143 4.244.879 6.578l-3 1-.184-2.484-.254-3.266-.246-3.234c-.257-2.452-.635-4.655-1.316-7.016z" fill="#dbe1b1"/><path d="M296 605h1v6h2v10h2v10h-1v-8h-3l-1-18z" fill="#de1f21"/><path d="M693 583h1c1.22 9.004.598 17.074-1 26h-2l2-26z" fill="#e1283a"/><path d="M362 533h4l1 15c-2-4-2-4-2-7l-3-1c-1.125-4.75-1.125-4.75 0-7z" fill="#e2caa1"/><path d="M345 479h4l1 2h2v6h-2l-1 3-3-1 .063-2.75c-.051-2.677-.284-4.72-1.062-7.25z" fill="#e2dbad"/><path d="M139 413h2l-2 25c-2.111-4.223-2.217-6.14-2.125-10.75l.055-3.547L137 421h2v-8z" fill="#f7f2ec"/><path d="M518 396l1 3h3v-2l2 1c-1.522 2.629-2.844 4.844-5 7h-4c.498-3.735.875-5.812 3-9z" fill="#faebea"/><path d="M477 375c1.992 3.985 2.007 5.735 1.871 10.027.187 2.867 1.435 4.714 3.129 6.973l-3 1-1 2h-2l-1 2-1-4h2l1-18z" fill="#fbdadd"/><path d="M271 319h2v2h2v16h-1l-1.437-4.687-.809-2.637c-1.975-7.011-1.975-7.011-.754-10.676z" fill="#f7ebe9"/><path d="M174 303h1c1.231 5.415 1.231 5.415.063 8.375L174 313h-2l-.25 2.313c-.896 3.211-1.966 3.981-4.75 5.688 1.557-6.369 4.198-12.086 7-18z" fill="#fce1dc"/><path d="M663 283h5l.063 5.875.035 3.305C668 295 668 295 667 297h-2v-12h-2v-2z" fill="#d8e4b5"/><path d="M190 269h2c-1.554 5.906-4.595 10.977-8 16h-1c.276-6.485 2.786-11.071 7-16z" fill="#db3740"/><path d="M601 269h5v4h-3v2h-2v2l-5-2 2-4h3v-2z" fill="#f71422"/><path d="M621 255c1.231 3.694.644 6.206 0 10l-5 1-1 3h-4v-2l4.398-3.492c2.616-2.463 3.978-5.324 5.602-8.508z" fill="#eadfc7"/><path d="M208 237h2c-1.388 3.89-3.215 6.966-5.625 10.313l-1.914 2.676L201 252c-2-3-2-3-1.625-5.687L200 244l3 1v-2h2v-2h2l1-4z" fill="#fae8de"/><path d="M175 159h4l2 6h2v2h-4l-1-3-5-1v2l-3-1v-2l5-1v-2z" fill="#edfef9"/><path d="M735 149c.931 2.606 1.149 3.642.063 6.25L734 157c-3.436-1.527-6.119-3.599-9-6 3.62-1.316 6.096-2 10-2z" fill="#f5f3ec"/><path d="M219 103h4v2h-2v2h-5c1.25-2 1.25-2 3-4zm-5 4l3 1-2 5h-6l5-6z" fill="#f7fcfa"/><path d="M228 99l3 1c-2.906 3.015-5.964 5.656-9.25 8.25l-2.703 2.141L217 112l-2-3 1-2h5v-2h2l-1-3c1-1 1-1 3.563-1.062L228 101v-2z" fill="#fce4e1"/><path d="M577 93h13l1 3c2.015.733 2.015.733 4 1v2l-5.875-.875-3.305-.492C583 97 583 97 581 95l-4-2z" fill="#e51c22"/><path d="M743 67c2.188-.312 2.188-.312 5 0 2.813 2.5 2.813 2.5 5 5l-3 2-7-3v-4z" fill="#e5202e"/><path d="M376.188 20.938l2.73.027L381 21v2h-3v2h-11l1-3c3.015-1.005 5.042-1.103 8.188-1.062z" fill="#f2fdfa"/><path d="M367 1007h4l-2 10-4-2v-6h2v-2z" fill="#f1181c"/><path d="M422 1005h3v6c-4.12 1.292-7.668 2.263-12 2v-4h11v-2h-2v-2z" fill="#f71429"/><path d="M732 973h3v24h-2l-1 3-1-2 .926-2.719c1.138-3.475 1.309-6.14 1.262-9.781l-.02-3.281c-.164-3.143-.586-6.128-1.168-9.219z" fill="#fcdbd6"/><path d="M436 921c9.272-.338 17.141-.094 26 3v1c-8.76-.545-17.346-1.541-26-3v-1z" fill="#de3c46"/><path d="M414 917l27 5v1h-11v-2h-11v-2h-5v-2z" fill="#fee5dd"/><path d="M515 871l3 1c-2.052 2.248-3.007 3.002-6 4l-1 3h4l1-4h2l-2 5-7 1c.267-3.911.592-5.581 3.375-8.437L515 871z" fill="#d73c4a"/><path d="M660 865h5v5h-2v5h6c-3.188 2.125-5.265 2.502-9 3l.254-1.828.309-2.422.316-2.391c.121-2.365-.183-4.11-.879-6.359z" fill="#d32833"/><path d="M655 865h2v4h2v6l-2 2h-4v-4h2v-8z" fill="#f0fefc"/><path d="M447 862c-.312 2.375-.312 2.375-1 5l-3 2-3 3-2-8c6.75-2 6.75-2 9-2z" fill="#e1313f"/><path d="M304 843l1 2h2l1-2 1 4c-3.01.934-3.867 1.044-7 0 2.219 3.329 3.347 3.75 7 5v1h-6v-2h-2v-4l-3-1 2.438-.375L303 845l1-2z" fill="#f3e0da"/><path d="M412 589h1v16h-4c-.455-5.763 1.209-10.606 3-16z" fill="#f91529"/><path d="M462 497c3 1 3 1 5 4v4h2v4h-4v-4h-2l-1-8z" fill="#e02122"/><path d="M264 491l1 2h2l-.035 2.301-.027 3.012-.035 2.988c-.026 2.799-.026 2.799 1.098 5.699l-1 6h-1c-1.426-7.411-2.301-14.449-2-22z" fill="#e13a3d"/><path d="M353 461h2c2.713 5.727 1.508 10.13 0 16l-2-1 1-7h-2l1-8z" fill="#ebd4ac"/><path d="M629 349h2l-2 16-1-2h-2v-4h-2v-5l2 1 2-1c.656-2.527.656-2.527 1-5z" fill="#e4232d"/><path d="M667 305h2l1 4h3c.194 5.527-.252 9.756-2 15h-1c-.143-7.429-.143-7.429 1-11h-2c-2.152-3.228-2.201-4.284-2-8z" fill="#f91322"/><path d="M182 287h1c.286 8.571.286 8.571-2 12h-2v2l-4 2c1.646-5.685 4.29-10.767 7-16z" fill="#f6e6dd"/><path d="M660 215a70.1 70.1 0 0 1 8.125-.187l2.285.041L676 215c-4.349 2.899-6.396 3.114-11.625 3.063l-3.602-.027L658 218l2-3z" fill="#fefbeb"/><path d="M535 875h1v12l-1-4h-2v4h-4v-4h2l1-4h3v-4z" fill="#d63d40"/><path d="M620 861c3.714 1.238 4.774 2.852 7 6v2h-2v-2h-2v6h-2v-4h-2v-4h2l-1-4z" fill="#e1211f"/><path d="M356 859h1v8h2v2c-5.415 1.231-5.415 1.231-8.375.063L349 868v-2h5l2-7z" fill="#d3313d"/><path d="M544.449 834.121l2.568.146 2.67.17 2.705.158L559 835v1c-5.719.825-11.227 1.128-17 1.063l-2.348-.014L534 837c3.739-2.493 6.07-3.143 10.449-2.879z" fill="#dd2532"/><path d="M247 829h2l-2 7c-4 0-4 0-6.75-2.5L238 831c6.75-1.125 6.75-1.125 9 0v-2z" fill="#f7eee8"/><path d="M758 745l1 2-1 2h-3l1 4h-5l-2 4-3-1 3-4h2v-2c1.531-1.289 1.531-1.289 3.5-2.625l1.969-1.352L758 745z" fill="#faede2"/><path d="M805 695l1 3-2 2 1 3h-2v2h-5l-1 4-3-1 11-13z" fill="#f1f2e5"/><path d="M905 691l2 4 1 1c-.391 4.983-1.56 8.65-4 13h-1v-8h2v-10z" fill="#f3fdfb"/><path d="M809 686l-1 2h-2l-.687 1.688c-1.671 2.945-3.865 4.994-6.312 7.313l2-10c5.75-2.125 5.75-2.125 8-1z" fill="#fce7e3"/><path d="M166 608c2.448 3.03 4.095 6.075 5.688 9.625l1.324 2.914C174 623 174 623 174 625h-4l-1 2v-12h-2l-1-7z" fill="#fdd6d3"/><path d="M486 573h1c.138 7.066-.252 13.974-1 21h-1c-.86-3.735-1.163-7.232-1.187-11.062l-.043-3.098c.229-2.82.778-4.445 2.23-6.84z" fill="#ce3236"/><path d="M161 573h4v6h-3v8c-2.648-2.648-2.715-4.298-3-8 .938-3.375.938-3.375 2-6z" fill="#fef2f6"/><path d="M681 541c2.631 3.946 3.179 6.477 2.625 11.188C683 555 683 555 682 557h-3v-9l3 1-1-2c-.04-2-.043-4 0-6z" fill="#f8f1ed"/><path d="M689 545h4v6h-2l-2 6c-1.777-2.666-2.875-5.028-4-8h2v2h2v-6z" fill="#e31f24"/><path d="M55 509c2 1 2 1 3.117 3.602.97 3.736 1.081 6.92 1.008 10.773l-.055 3.773L59 530c-2.323-3.485-2.655-6.453-3.125-10.5l-.262-2.051C55.261 514.611 55 511.862 55 509z" fill="#fee7e2"/><path d="M527 516h2l1 4.25.563 2.391C531 525 531 525 531 529h-2v-2h-2v-2h-2c.486-3.123.999-5.996 2-9z" fill="#f5fdfb"/><path d="M655 387l1 2 3 1-3.312 3.813-1.863 2.145L649 401c-.615-5.076 1.383-7.83 4-12h2v-2z" fill="#e7202f"/><path d="M687 353h1l-.437 4.875-.246 2.742C687 363 687 363 686 365h-6l1-7 5 1 1-6z" fill="#ecd1ac"/><path d="M625 321h3l-1 6h-2l1 6h-3v-2h-2v-4h3l-.062-2.437C624 322 624 322 625 321z" fill="#f71426"/><path d="M946 313h2l3 8.375.867 2.406.82 2.305.762 2.126C954 330 954 330 954 332h-2l-1.375-3.625-.836-2.199-1.789-5.613-1-2.562-3-1 2-4z" fill="#fde8ec"/><path d="M365 308h2v16h-1c-2.125-6.75-2.125-6.75-1-9h-2l-1 2c.498-3.735.875-5.812 3-9z" fill="#f6eee5"/><path d="M674 277h5v2l-2 1v5h-4v4h-2c.857-8.571.857-8.571 3-12z" fill="#f81326"/><path d="M787 253c2.517.419 4.66.824 6.938 2 2.634 1.277 5.177 1.607 8.063 2l1-4 1 6c-3.695.95-6.305.95-10 0v-2l-2.937-.875C788 255 788 255 787 253z" fill="#f0e6d0"/><path d="M290 153h6c-3.88 4.244-8.043 7.109-13 10l-1-2c1.29-1.376 2.627-2.708 4-4h2v-2h2v-2z" fill="#fbe5e7"/><path d="M417.285 94.902l2.777.035 2.785.027L425 95c-2.177 2.177-3.005 2.419-5.914 3.07l-2.305.527-2.406.527-2.43.551L406 101l1-4 3.438-.437c3.148-.497 3.978-1.538 6.848-1.66z" fill="#f6e7de"/><path d="M251 85c-3.382 3.68-6.425 5.979-11 8-.216-2.666-.309-4.44 1-6.812 3.24-1.924 6.283-1.37 10-1.187z" fill="#fcece6"/><path d="M578 11h13v3l2 1h-10v-2l-5-1v-1z" fill="#f01a29"/><path d="M707 956v2h2v3l2 1c-3 0-3 0-5.187-1.375-3.56-2.057-6.804-2.742-10.812-3.625v-1c4.256-1.161 7.684-.762 12 0z" fill="#de2f38"/><path d="M720 955h7c1.208 3.623.543 4.641-1 8l-7-5 1-3z" fill="#f4f1ed"/><path d="M472 885h1v8h2l-1 4h-5c-.625-1.875-.625-1.875-1-4l2-2 2-6z" fill="#ee1a23"/><path d="M260 849c3.788.526 6.172 1.381 9 4v2h2v2c-4.507-.53-7.454-2.196-11-5v-3z" fill="#e2202c"/><path d="M450 833l26 3v1h-21v-2h-6l1-2z" fill="#fce0dc"/><path d="M203 803l8 2v2l4-1v5l-3 1-4.5-3.937-2.531-2.215L203 804v-1z" fill="#f6ece5"/><path d="M765 723h4v2h5l-2.875 3.438-1.617 1.934C768 732 768 732 766 733l2-6-4-1 1-3z" fill="#fde5e8"/><path d="M619 685h2c.204 5.738.271 10.605-2 16h-2v-10h2v-6z" fill="#f0fefa"/><path d="M471 689l5 1c-2.575 2.637-4.543 3.219-8.109 3.293l-4.641-.105-2.402-.041L455 693c3.477-2.143 6.212-2.213 10.25-2.125l3.266.055L471 691v-2z" fill="#e6394b"/><path d="M464 671l1 2h2v6h-2l-2 6h-2l.938-6.437.527-3.621C463 672 463 672 464 671z" fill="#e12026"/><path d="M338 637c3.68 4.906 3.291 6.175 3 12l-5 1 2-13z" fill="#dbe4b7"/><path d="M630 631l1 4h-2c-.207 9.054-.207 9.054 1 18h-2c-3.624-12.682-3.624-12.682-.562-18.937C629 632 629 632 630 631z" fill="#fcd3cf"/><path d="M311 625c1.938.313 1.938.313 4 1l1 3c2 1.209 2 1.209 4 2v8l-2 2-.008-1.793c-.142-4.791-.142-4.791-2.395-8.848L311 627v-2z" fill="#d53232"/><path d="M145 547h2l.188 4.813.105 2.707c-.342 2.897-1.047 3.706-3.293 5.48l-2-1c.599-4.195 1.575-8.01 3-12z" fill="#f2fef9"/><path d="M448 481l3 1-1 1.563c-1.32 3.218-1.132 5.995-1 9.438l7 3v1c-6.625.25-6.625.25-10-2l.438-5.312.246-2.988C447 484 447 484 448 481z" fill="#fde3dd"/><path d="M427 445h3c.111 5.458-.083 10.615-1 16h-2v-16z" fill="#f4171e"/><path d="M740 399h1l2 14h-2v2h-3c.499-5.369 1.022-10.692 2-16z" fill="#f4c5a8"/><path d="M524 381c1 3 1 3-.187 5.75L518 397l-1-2 1-2h-3v-2h3v-2l2-1v-4l3-1 1-2z" fill="#dd323b"/><path d="M481 357c1 3 1 3 .063 5.301-1.25 3.175-1.197 5.493-1.062 8.887V377l-2 2c-1.23-3.726-.997-7.113-.75-11l.203-3.687c.557-3.373 1.253-4.846 3.547-7.312z" fill="#dc3e4b"/><path d="M380 338h1l.148 3c.376 6.855.83 13.396 2.852 20h-3v-4h-2l1-19z" fill="#e9394a"/><path d="M530 313h4c3.161 6.321.989 15.535-1 22h-1v-21l-2-1z" fill="#f7d4cc"/><path d="M353 293l2 2-.875 8.125-.316 2.285L353 311h-2c-.369-12.67-.369-12.67 2-18z" fill="#f02137"/><path d="M637 287h4v2h2c1.25 7.625 1.25 7.625-1 11l-2.5-5.375-1.406-3.023C637 289 637 289 637 287z" fill="#ebd2ae"/><path d="M440 284l2 1v2h5c.375 2.188.375 2.188 0 5-1.84 1.99-3.792 3.39-6 5l2-6h-2v-3l-4-1v-2l3-1z" fill="#e82531"/><path d="M895 213c4.875 4.625 4.875 4.625 6 8-3.287.8-4.71 1.097-8 0-.201-3.716-.152-4.772 2-8z" fill="#faf0ee"/><path d="M270 179l1 3-2 3h-2v4h-7c6.15-7.483 6.15-7.483 10-10z" fill="#fae7dd"/><path d="M865 161c4.875 2.875 4.875 2.875 6 4 .141 2.671.042 5.324 0 8-3.355-3.09-5.792-5.532-7-10l1-2z" fill="#f9fcfc"/><path d="M176 155l1 2h4v2h2v4h-3l-1-4h-4v2l-5 1 6-7z" fill="#fcefef"/><path d="M833 127c3.452 1.477 5.65 3.438 8.25 6.125l2.141 2.195L845 137c-2.667 1.333-4.167.671-7 0l-1-5-4-1v-4z" fill="#f7fbfb"/><path d="M352 30c-1.437 2.5-1.437 2.5-4 5-3.043.445-5.947.294-9 0l2-1v-2c7.429-3.571 7.429-3.571 11-2z" fill="#f8fdfd"/><path d="M426 987l2 1v25l2 1-3 1c-1-1-1-1-1.114-3.592l.016-3.412.01-3.682.025-3.877.014-3.889L426 987z" fill="#fcebe5"/><path d="M955 999h10v4h-10v-4z" fill="#ef1533"/><path d="M515 889l.438 3.313c.445 3.619.445 3.619 1.563 6.688h-2v-2h-4l-1-7c2-1 2-1 5-1z" fill="#f61123"/><path d="M345 858c2 2 2 2 2 5h8l-1 3h-5l1 3-4-1 1-4h-2v-6z" fill="#fde1df"/><path d="M573 859h5l2 4c-5.143 5.571-5.143 5.571-9 6v-2h3l1-5-2-1v-2z" fill="#f9f9f4"/><path d="M700 801l2 4h-3l1 7 2 1h-3l-1-2c-2.025-.652-2.025-.652-4-1 1.312-3.937 2.919-6.227 6-9z" fill="#d73541"/><path d="M683 789l4 1-14 7-2-2h2l2-4h8v-2z" fill="#fbe5e0"/><path d="M156 765h5c2.094 3.402 2.179 6.053 2 10l-7-7v-3z" fill="#f6f9f8"/><path d="M565 673c1.243 3.802.415 5.347-1.297 8.918-1.322 3.914-.925 8.004-.703 12.082h-3c-.674-8.083 1.558-13.736 5-21z" fill="#d5333e"/><path d="M566 681l1 4h11v2h-15l1-5 2-1z" fill="#f81621"/><path d="M295 621h2v2h3l1 10h-4v-8h-2v-4z" fill="#f81628"/><path d="M157 579c3.436 2.291 3.616 3.053 4.688 6.875l.762 2.617C163 591 163 591 163 595h-2l-2-5.187-1.125-2.918c-.851-2.816-1.046-4.976-.875-7.895z" fill="#e42c48"/><path d="M971 511h1c.339 8.162-.701 15.951-2 24-2.154-3.84-1.848-5.674-1-10l-.062-3.437c.069-3.957.841-6.823 2.063-10.562z" fill="#f5f0ee"/><path d="M204 465c1.395 2.298 2.074 3.479 1.688 6.188C205 473 205 473 204 474l-.316 5.129-.127 3.135-.119 3.299-.131 3.311L203 497h-1l-.125-11.5-.051-3.266c-.037-6.123.37-11.375 2.176-17.234z" fill="#e7e1ca"/><path d="M645 410l2 1-1 3 2 2v3l3 1v9l-2-4-4.758-8.539C643 414 643 414 643 412h2v-2z" fill="#fce1da"/><path d="M265 399h1c1.177 4.625 1.114 9.079 1.063 13.813l-.014 2.389L267 421h-1l-.375-3.437L265 414l-2-1v-4h2v-10z" fill="#e7af91"/><path d="M396 339l2 1c-1.074 2.915-1.778 4.778-4 7-2.164.195-2.164.195-4.625.125l-2.477-.055L385 347v-4l10 1 1-5z" fill="#e32638"/><path d="M727 328v1l-2.082.184-2.73.254-2.707.246c-2.608.251-2.608.251-5.48 1.316v2h-10c7.27-4.846 14.428-5.433 23-5z" fill="#d03330"/><path d="M617 285h4v2h-2v6l2 1 1 6c-3-1-3-1-4.168-2.777l-1.02-2.16-1.043-2.152C615 291 615 291 615 289h2v-4z" fill="#d4312e"/><path d="M623 283h3v2h3v4h-2l-1 6h-3v-6h2v-5l-2-1z" fill="#e51f22"/><path d="M782 259h3v4h2v-2h2c-1.566 4.308-3.683 8.062-6 12h-1l.254-2.555.309-3.32.316-3.305c.347-2.772.347-2.772-.879-4.82z" fill="#f5c5a7"/><path d="M773 253h6l2 5-1 2-.562 4.625-.254 2.477L779 269c-2-2-2-2-2.195-4.82l.07-3.305.055-3.32L777 255h-4v-2z" fill="#d9e3b3"/><path d="M887 201c3.255 3.023 5.69 6.205 8 10v2h-2v2h-2v-4h-2v-6h-2v-4z" fill="#fbe7e1"/><path d="M253 195v6l-2 2h-4v2l-4-1 4.438-4.5 2.496-2.531C252 195 252 195 253 195z" fill="#faefe7"/><path d="M825.125 124.688C827 126 827 126 829 129h-2l-1 4-7-7c4-2 4-2 6.125-1.312z" fill="#de2932"/><path d="M371 113c-1.152 2.468-2.048 4.048-4 6l2 1c-4.002 1.601-7.046.293-11-1 2.122-2.122 3.773-2.93 6.5-4.125l2.406-1.07C369 113 369 113 371 113z" fill="#d9383e"/><path d="M653 901c-3.564 2.376-7.084 3.157-11.187 4.125l-2.271.551L634 907l-1-4 2.555-.184 3.32-.254 3.305-.246c3.864-.433 6.774-1.404 10.82-1.316z" fill="#faebe8"/><path d="M624 885h2c-1.462 3.853-3.313 5.24-7 7l-6 1-1-4c6.625-1.125 6.625-1.125 10 0v-2h2v-2z" fill="#d03740"/><path d="M601 881h2v2l3-1v5l3 1-1 3-5-1v-5h-2v-4z" fill="#e51e1f"/><path d="M657 865h3c2.094 3.402 2.179 6.053 2 10l-5 2-1-2h3v-6h-2v-4z" fill="#fce6e4"/><path d="M477 864h2v5l10 2v12h-1l-1-10h-9c-.544-3.058-1-5.888-1-9z" fill="#ce4445"/><path d="M648 854c3.313-.25 3.313-.25 7 0 2.876 2.589 3.478 5.239 4 9l-3-1c-.687-2.062-.687-2.062-1-4l-8-1 1-3z" fill="#f0ebe1"/><path d="M727 849v2h-3l-1 4c-6.625 1-6.625 1-10 1l2-4-4 1 2-3 4 2-1 2 1.898-1.094 2.477-1.406 2.461-1.406C725 849 725 849 727 849z" fill="#facaca"/><path d="M706 823c2.875.688 2.875.688 6 2 1.375 2.625 1.375 2.625 2 5l-3 3c-2.645-3.125-3.844-6.088-5-10z" fill="#e62739"/><path d="M627 816l-2 3h-4v2h-13v-1l2.195-.586c4.169-1.123 8.291-2.234 12.367-3.664C625 815 625 815 627 816z" fill="#db393b"/><path d="M747 743h7c-3.152 4.413-6.555 7.008-11 10v-4h3l1-6z" fill="#f6eae0"/><path d="M876 741l4 1-8 11c-1.109-4.436-.78-5.906 1-10l3-2z" fill="#faf3e4"/><path d="M231 705h4v4h4v2h2l1 6h-2l-4.625-5.437-2.477-3.059C231 706 231 706 231 705z" fill="#f6e7db"/><path d="M215 685l5 1 .75 2.75c1.29 3.354 2.57 4.927 5.25 7.25l-3 1-4-4.875-2.25-2.742C215 687 215 687 215 685z" fill="#eef4ef"/><path d="M509 679h4v2h5l1 4h5l1 3c-4.822 0-6.33-1.243-10.25-3.937l-3.266-2.215L509 680v-1z" fill="#d82e3c"/><path d="M939 647c2 3 2 3 1.645 5.121-2.934 8.168-2.934 8.168-5.645 10.879h-2c1.748-5.467 3.658-10.758 6-16z" fill="#fbe1e0"/><path d="M83 637c1.787 2.68 2.932 5.031 4.125 8l1.07 2.625C89 650 89 650 89 653h-2l-1 3c-1.176-3.674-1.074-7.169-1-11h-2v-8z" fill="#ffebe6"/><path d="M71 605c2.802 3.233 3.741 6.104 4.688 10.25l.762 3.266L77 621h-3l-1-8h-2v-8z" fill="#fbddd5"/><path d="M522 572l2 1-1 21h-1l-.148-2.703-.227-3.547-.211-3.516c-.224-3.164-.224-3.164-1.539-5.484L519 577c1.375-2.75 1.375-2.75 3-5z" fill="#ef3348"/><path d="M305 531h4c.857 5.884 1.125 11.559 1.063 17.5l-.014 2.492L310 557h-1l-2-22h-2v-4z" fill="#e44848"/><path d="M532 508h1l-.098 5.957c.015 2.246.015 2.246 1.098 5.043l-1 7c-3.06-4.591-3.468-8.588-3-14 1-2.5 1-2.5 2-4z" fill="#df3340"/><path d="M455 495h5v2h2c.931 2.606 1.149 3.642.063 6.25L461 505h-2l-2 4-1-2 1.5-2.375c1.706-2.43 1.706-2.43 1.375-4.75-.984-2.108-2.128-3.356-3.875-4.875z" fill="#d53740"/><path d="M562 452l3 1v11l-3-1-.562-4.937-.316-2.777L561 453l1-1z" fill="#da272c"/><path d="M442 375h2v2h2l.25 2.875c.401 3.23.401 3.23 2.813 4.5L451 385v6l-2 2-.77-2.414c-1.757-5.409-3.465-10.608-6.23-15.586z" fill="#e12e41"/><path d="M459 380l4.438 2.375 2.496 1.336C468 385 468 385 469 387h-3v-2l-3.812.438-2.145.246c-2.237.288-2.237.288-5.043 1.316v-4h4v-3z" fill="#d92c31"/><path d="M585 378h2l1 3h-2l-2 4h-17l1-2c5.126-.103 9.95-.036 15 1l.438-2.437C584 379 584 379 585 378z" fill="#d14752"/><path d="M432 371c2.349 4.518 4.39 9.169 6 14l-1 2h-2c-2.065-3.098-2.548-4.953-3.187-8.562l-.543-2.941C431 373 431 373 432 371z" fill="#e32b3e"/><path d="M369 365h3l-1 12-4 1v-7h2v-6z" fill="#fa151e"/><path d="M693 345h2l1 3-3 1v13h-1v-5h-2c-.348-4.877.583-7.771 3-12z" fill="#f8182a"/><path d="M274 337c2.183 3.682 2.856 7.598 3.625 11.75l.406 2.113L279 356l-2 1c-2-2-2-2-2.16-4.129l.098-2.434c.054-1.478.083-2.958.063-4.437l-1-1c-.141-2.671-.042-5.324 0-8z" fill="#d63541"/><path d="M353 349h4c.18 5.22-.029 9.073-2 14-1.125-3.75-1.125-3.75 0-6h-2v-8z" fill="#e82335"/><path d="M166 317h2l-5.062 14.938-.973 2.777C161 337 161 337 159 339c1.44-7.723 4.055-14.728 7-22z" fill="#c44653"/><path d="M322 313c4.401 3.822 5.808 6.474 7 12h-2v-2l-4-1v-5h-2l1-4z" fill="#e0353d"/><path d="M288 309h6l-1.687 1.188c-2.463 1.848-2.463 1.848-4.937 4.5C285 317 285 317 283 317l-1 5h-1c-.25-5.625-.25-5.625 2-9h3l2-4z" fill="#fde3e3"/><path d="M457 283v2l-4.5 3.125-2.531 1.633L448 291l-.375-1.937L447 287l-2-1 3.75-1.5 2.109-.844C453 283 453 283 457 283z" fill="#d13744"/><path d="M682 276c4.548-.178 7.879.002 12 2l-2 5-2-3c-1.964-.577-1.964-.577-4.125-.687L682 279v-3z" fill="#cf3530"/><path d="M695 273v2h-3v2l-17-2v-1l7.188-.5 2.041-.145c3.598-.246 7.165-.411 10.771-.355z" fill="#f2c2a1"/><path d="M351 271h2v4h-6l-1 5-3-1v-4h2v-2c3.75-1.125 3.75-1.125 6 0v-2z" fill="#eefbf7"/><path d="M431 95l3 2v2c-3.62 1.316-6.096 2-10 2v-2l2-1-3-2c2.771-1.386 4.933-1.188 8-1z" fill="#e23338"/><path d="M559 93c4.69.566 9.345 1.185 14 2v2c-5.417.934-8.805 1.208-14-1v-3z" fill="#f4ece7"/><path d="M751 76l3.875 1.875 2.18 1.055C759 80 759 80 761 82v3h-2v-2l-2.312.25C754 83 754 83 752.188 81.188 751 79 751 79 751 76z" fill="#fdeaed"/><path d="M359 37l-1 4-5.875 1.625-3.305.914L346 44l-2-2 6.375-2.5 3.586-1.406C357 37 357 37 359 37z" fill="#f8e4de"/><path d="M717 1007l-1 4h-3v3l-4 1c.523-2.763 1.109-5.326 2-8 3-1 3-1 6 0z" fill="#e51f22"/><path d="M435 915h15v1l7 2v1c-7.407-.623-14.682-1.705-22-3v-1z" fill="#f2d0c7"/><path d="M530 869c4.355.506 7.442 1.384 11 4v2h-2v2h-2l-1 2-1.312-3.312c-1.182-2.782-2.296-4.751-4.687-6.687z" fill="#fdebeb"/><path d="M639 853l7 1-1 5h-6c-1.125-3.75-1.125-3.75 0-6z" fill="#ef191f"/><path d="M423 822l22 4v1h-12v-2l-6.055.293L425 825l-2-3z" fill="#cd323b"/><path d="M212 817c3.914 1.269 5.791 2.512 8 6h-5l1 3c-3.161-1.37-3.993-1.989-6-5l2-1v-3z" fill="#faf0eb"/><path d="M819 797h8c-.306 3.674-.758 4.781-3.562 7.313L821 806l-1-3h3v-4h-5l1-2z" fill="#f2f1ea"/><path d="M325 773h2c-.498 3.688-1.101 5.605-4 8l-2-4h-4v-2l3.438-.437c3.37-.174 3.37-.174 4.563-1.562z" fill="#eefbf6"/><path d="M117 705h2v2l3-1 5 9h-2l-1 2-3.5-5.437-1.969-3.059C117 706 117 706 117 705z" fill="#d9404c"/><path d="M111 703h4l.875 1.938c.953 2.215.953 2.215 3.125 3.063v7c-3.277-3.1-5.931-5.971-8-10v-2z" fill="#fcfcfa"/><path d="M915 701c.668 1.707.668 1.707 1 4-1.074 2.324-1.074 2.324-2.687 4.688l-1.574 2.387c-1.914 2.12-2.951 2.568-5.738 2.926.916-3.938 1.918-6.214 5.063-8.687 3.155-2.047 3.155-2.047 3.938-5.312z" fill="#f8fdfc"/><path d="M215 692c3.636 3.434 6.361 6.797 9 11h-4v-2l-5-2v-7z" fill="#f7f1e2"/><path d="M924 679l1 4h-2l-.297 1.793c-.951 5.023-1.904 8.526-5.703 12.207h-2c1.349-4.538 3.192-8.319 5.625-12.375l1.914-3.211L924 679z" fill="#fbd4cf"/><path d="M285 669h4v16h-2l-.184-2.484-.254-3.266-.246-3.234c-.257-2.452-.635-4.655-1.316-7.016z" fill="#e02121"/><path d="M411 663h3l1 6h-2v8h-2c-.764-3.734-1.094-6.355 0-10v-4z" fill="#f51524"/><path d="M834 639h3c.363 4.231-.397 6.626-3 10h-3c-.363-4.231.397-6.626 3-10z" fill="#f6f5ee"/><path d="M334 637c3.68 4.906 3.291 6.175 3 12h-3l1 8-3-2 1-7h2l-1-11z" fill="#fbae9a"/><path d="M310 625l3.438 2.938 1.934 1.652L318 632l.063 4.563-.027 2.504L318 641h-1v-6l-6-2-1-8z" fill="#f4c6aa"/><path d="M653 513h16l1 4h-4l-1-2h-12v-2z" fill="#ecfefc"/><path d="M562 505h3c.29 4.93.197 8.093-3 12h-3c-1.607-3.215-1.057-6.436-1-10h1v7h3v-9z" fill="#dd3649"/><path d="M714 486h3v3h-2l1 2c.434 6.041-.24 12.013-1 18h-1v-23z" fill="#fbd9d5"/><path d="M739 447c3.36 5.04 4.293 9.997 4 16h-4v-16z" fill="#e22e35"/><path d="M476 397h5v1l5 1 1-2c1.354 2.709 1.065 5.009 1 8h-2l-1.812-1.937c-2.455-2.314-3.893-2.696-7.187-3.062l-1-3z" fill="#f9d5cf"/><path d="M416 326l4 1c0 2.84-.403 5.237-1 8-4.875-2.625-4.875-2.625-6-6h2l1-3z" fill="#e42737"/><path d="M239 265l2 1c1.629 7.546 1.136 13.984-2 21h-2c-.252-5.543-.252-5.543 1-7.812 1.33-2.91 1.194-5.255 1.125-8.437l-.055-3.266L239 265z" fill="#ece7d1"/><path d="M588 254l5 1v6l-4-3v5l-1-2h-3v-4h2l1-3z" fill="#fdeeef"/><path d="M615 189h4l1 16-2-1-1.625-5.875-.789-3.242C615 192 615 192 615 189z" fill="#e9e2c8"/><path d="M861 167c2.25-.312 2.25-.312 5 0 2.375 2.188 2.375 2.188 4 5-.25 2.813-.25 2.813-1 5-3.288-3.11-5.837-6.016-8-10z" fill="#d7313f"/><path d="M847 148c5.902 3.35 5.902 3.35 8 6v3c-3.062-.331-4.601-.601-6.812-2.812C847 152 847 152 847 148z" fill="#df2328"/><path d="M308 145v3l3 2-8 5v-4l-2-1 7-5z" fill="#dd3a41"/><path d="M404 107v2h-5l-2 4h-10c2.612-2.612 4.972-3.071 8.5-4.125l3.531-1.07C402 107 402 107 404 107z" fill="#fad9d8"/><path d="M468 93c-5.137 3.425-7.945 4.242-14.25 4.125l-3.828-.055L447 97c3.258-1.86 6.245-2.538 9.938-3.125l3.09-.508c2.699-.333 5.258-.437 7.973-.367z" fill="#f4cfcc"/><path d="M333 35l2 1-2 2 5 1c-7.5 5-7.5 5-11 5l-1-3 1-2h4l2-4z" fill="#fbebeb"/><path d="M435 18c-1.02 1.488-1.02 1.488-3 3a63.07 63.07 0 0 1-7.687.188l-2.127-.041L417 21v-1l6.75-1.562 3.797-.879c3.048-.493 4.63-.635 7.453.441z" fill="#f3e5da"/><path d="M528 5l28 1v1l-28 1V5z" fill="#d93f4c"/><path d="M372 1006l2 1-.062 3.75c-.005 2.914.132 5.46 1.063 8.25l-6 1-2-2h3l2-12z" fill="#fde5e6"/><path d="M535 1013h11v2l-2 1-2 4v-3l-6-1-1-3z" fill="#eee0df"/><path d="M375 901l7 2v2l-1.812.438L375 907c-2.043-.559-2.043-.559-4.187-1.437l-2.168-.871L367 904c2.892-.826 4.887-1 8-1v-2z" fill="#db2c32"/><path d="M570 872c1.953.586 1.953.586 4 2 .609 3.039.609 3.039.75 6.625l.172 3.602L575 887h-2l-3-15z" fill="#fadad5"/><path d="M479 872h8c1 1 1 1 1.098 3.285l-.035 2.777-.027 2.785L488 883h-1l-1-8h-3v-2h-3v4h-2l1-5z" fill="#fde4dd"/><path d="M491 866v3h-4v2h-7c1-3 1-3 2.688-4.187 2.862-1.006 5.301-.949 8.313-.812z" fill="#e72c3f"/><path d="M396.5 850.25L402 852v3c-6.625.125-6.625.125-10-1l-1 2c0-3 0-3 1.188-4.75C394 850 394 850 396.5 850.25z" fill="#d83243"/><path d="M778 837l4 1-12 8-1-3 1-2h2v-2h6v-2z" fill="#fde3dc"/><path d="M599 829v2l-6 1v1h-14v-1l6.625-1.5 3.727-.844c3.32-.597 6.288-.78 9.648-.656z" fill="#faddd8"/><path d="M818 813c0 3 0 3-1 6h-2v2h-2v2h-6c4.625-4.875 4.625-4.875 8-6v-2l3-2z" fill="#f4e1d8"/><path d="M138 740l1 3h4v6h2l-1 4-3.562-4.25-2.004-2.391C137 744 137 744 137.285 741.703L138 740z" fill="#f7fbfb"/><path d="M810 683l1 2 2 1-7 9-1-2-2-1 3-4h2l2-5z" fill="#d4434a"/><path d="M830 659c1.467 3.815.433 6.29-1 10h-2l-1 2c-2.062 1.125-2.062 1.125-4 2l1-4h2l.813-2.187c1.177-2.788 2.579-5.253 4.188-7.812z" fill="#f4e3dc"/><path d="M965 549h2l-.875 6.313-.492 3.551C965 562 965 562 963 565l-1-13 3-1v-2z" fill="#fee7e5"/><path d="M653 381h4v2h-3l-1 4h-2v2h-2l-1 3h-1v-5h2l1-4h3v-2z" fill="#f81428"/><path d="M153 338c2 3 2 3 2 5l2 1-3 9-1-4h-2v-4h2v-7z" fill="#f9f5f0"/><path d="M433 287h8c1.245 2.491.777 3.411 0 6h-2v-2h-6v-4z" fill="#df2123"/><path d="M279 161h2v2l2 1-10 8c-1-3-1-3-.062-5.187L274 165h5v-4z" fill="#fce8e0"/><path d="M396 154v2l-5 1v2l-4 2-1-3-3-2c8.429-2.286 8.429-2.286 13-2z" fill="#fdf8e9"/><path d="M1031 1039h9v4h-9v-4z" fill="#f5132d"/><path d="M328 1004l5 1v4h4v4l4 1-3 1c-1.973-1.293-1.973-1.293-4.062-3.187l-2.098-1.855c-1.794-1.909-2.815-3.563-3.84-5.957z" fill="#f7dfd8"/><path d="M332 961c1.607 3.215 1.057 6.436 1 10h-5l-1-3c3-5 3-5 5-7z" fill="#fbece6"/><path d="M92 963h9v4h-9v-4z" fill="#e41f21"/><path d="M327 951h8c-2.256 2.256-3.971 2.885-6.937 4-3.036 1.145-5.339 2.185-8.062 4 .573-2.867.861-3.861 3-6h4v-2z" fill="#fcd6d8"/><path d="M501 897h2v2l3-1c-.812 1.938-.812 1.938-2 4l-3 1v-2h-11v-2l11 1v-3z" fill="#f6e2de"/><path d="M487 869h6v2h-2l.07 2.555.055 3.32.07 3.305C491 883 491 883 489 885v-14h-2v-2z" fill="#f6142b"/><path d="M557 867h10l-1 5h-8l3-1v-3l-4-1z" fill="#de5a67"/><path d="M551 861h2c-1.495 3.806-3.59 5.779-7 8-2.812.25-2.812.25-5 0l1-4h7l2-4z" fill="#f2efe1"/><path d="M448 861h4l-1 5 2.063-1.562c3.739-1.83 5.942-1.299 9.938-.437v1h-7v2l-5 1-3-7z" fill="#d33d47"/><path d="M613 861h6l-2 10c-2.925-3.9-3.475-5.383-4-10z" fill="#e32429"/><path d="M655.07 845.574c5.707.315 5.707.315 7.93 1.426v3h-14c4-4 4-4 6.07-4.426z" fill="#f01932"/><path d="M634 815l2 2c-3.635 2.326-6.76 2.314-11 2l-2-2c3.635-2.326 6.76-2.314 11-2z" fill="#ea1a27"/><path d="M389 808c2.375 2.125 2.375 2.125 4 4-2.946 0-4.797-.455-7.562-1.375l-2.379-.773C381 809 381 809 379 807c3.836-1.476 6.311-.614 10 1z" fill="#eee7e0"/><path d="M679 793l2 1-2 3 2 1c-4.75 3-4.75 3-7 3l-1-2c-2.025-.652-2.025-.652-4-1l4.875-2.562 2.742-1.441L679 793z" fill="#d13e46"/><path d="M354 797c5.654-.346 9.03.566 14 3l-1 3c-4.472-1.418-8.711-3.113-13-5v-1z" fill="#fae5e0"/><path d="M205 675c4.208 1.503 5.803 4.233 8 8v2c-3.095-.332-4.028-1.029-6.25-3.312C205 679 205 679 205 675z" fill="#ea2b44"/><path d="M484 663h1c.212 5.192-.409 9.127-2 14h-2l-.312 1.938L480 681l-3 1 .836-2.043c1.338-3.399 2.567-6.828 3.789-10.27l.695-1.955L484 663z" fill="#fbdbd6"/><path d="M835 651h2v2h2v2h-2v4h-6c1.125-2.972 2.223-5.334 4-8z" fill="#eff7ec"/><path d="M693 637h2v8h-2v8h-2v-10h2v-6z" fill="#de2222"/><path d="M970 541h1v16h-2v2h-2l3-18z" fill="#fbe5e2"/><path d="M267 517h1l1 14h-2v2h-2v-8h2v-8z" fill="#f0c4a3"/><path d="M669 511h6v4h2v2h2v13h-1l-.332-2.23c-1.369-8.823-1.369-8.823-6.855-15.582L669 511z" fill="#d23340"/><path d="M526 387h1v10h-2l.125 2.313C525 402 525 402 523 405l-4-1 1.398-1.262c3.82-4.146 4.921-10.297 5.602-15.738z" fill="#d43845"/><path d="M636 361c.858 2.403 1.119 3.636.313 6.094C635 369 635 369 632.836 369.609l-2.461.141-2.477.172L626 370l2-5h3v2h3l2-6z" fill="#f7b09c"/><path d="M552 355l2 3c-1.804 3.265-2.834 4.889-6 7h-4l1-3h2v-2l5-5z" fill="#eb2636"/><path d="M667 349c2.722 1.361 3.366 3.423 4.781 6.012 2.029 3.31 4.61 6.127 7.219 8.988h-3l-1-3h-2c-3.21-2.886-5.82-5.592-6.375-9.937L667 349z" fill="#db2a30"/><path d="M298 308l7.125-.125 2.016-.051c4.348-.043 7.88.393 11.859 2.176l2 3h-3v-2h-7v-2h-13v-1z" fill="#c7424a"/><path d="M430 275h1l1 10h-2l-1 4h-7l-1-4 6 1c1.934-2.901 2.301-3.897 2.625-7.187L430 275z" fill="#d14248"/><path d="M253 269h2c-.882 7.35-1.94 14.673-3 22h-1l-.125-7.062-.07-3.973c.201-4.083.924-7.115 2.195-10.965z" fill="#faece2"/><path d="M269 241h2c.351 5.842.167 9.853-3 15h-1c-.226-5.419.533-9.775 2-15z" fill="#e02132"/><path d="M626 243h2v2h2c-1.125 2.972-2.223 5.334-4 8h-3l1-6h2v-4z" fill="#e8e0c5"/><path d="M679 211h17l-1 2-8.062.625-2.299.117L679 214v-3z" fill="#fcf9ef"/><path d="M196 125l4 1-4.375 4.5-2.461 2.531C191 135 191 135 189 135l-1 2v-4h3l.813-2.312c1.149-2.6 1.86-4.076 4.188-5.687z" fill="#f5efe0"/><path d="M225 111h4v2l2 1v7h-4v-2h2v-4h-5l1-4z" fill="#f2fef6"/><path d="M733 979h1l.125 6.125.07 3.445c-.199 3.487-.943 6.185-2.195 9.43h-1v-5h-4v-2l5-2 1-10z" fill="#d22f33"/><path d="M434 879l1 2h3l-1 7-5 1v3l4 1h-5v-6h5v-4h-2v-4z" fill="#feebea"/><path d="M414 882l9 1-1 4h-8v-5z" fill="#ea1c2b"/><path d="M303 877l16 7v1h-7v-2h-3v-2l-1.875.625L305 882l-2-2v-3z" fill="#fbe8e2"/><path d="M676 839h3l-1 2.688c-.912 3.022-1.183 5.196-1 8.313l3 1v2h-6c-.369-9.41-.369-9.41 2-14z" fill="#fce2e0"/><path d="M359 835h11l1 4c-4.468.213-7.823-.409-12-2v-2z" fill="#f2fef6"/><path d="M444 828c2.928.976 4.614 2.108 7 4-3.975 1.516-7.205.499-11.25-.437l-3.828-.871L433 830v-1h11v-1z" fill="#d53441"/><path d="M631 807h4v2h8c-3.285 2.19-6.207 2.998-10 4v-2h-2v-4z" fill="#fbf0ee"/><path d="M838 795l1 2h-2l-1 5-5 1v3l-3-1c6.15-7.483 6.15-7.483 10-10z" fill="#fadbd3"/><path d="M761 733l4 1-9 9-1-4h2v-4h4v-2z" fill="#f5ebe1"/><path d="M562 695h5v2h14c-4.904 2.452-8.608 2.592-14 2-3.125-1.437-3.125-1.437-5-3v-1z" fill="#d73148"/><path d="M920 680l3 2-5 9-3-1c1.335-3.594 2.96-6.755 5-10z" fill="#d2343b"/><path d="M275 668l6 1v6l-4 1v-3h-2v-5z" fill="#f51626"/><path d="M477 633h2l.625 5.875.352 3.305L480 645l-2 2-3-10h2v-4z" fill="#f41528"/><path d="M400 598h1v7h2c.188 2.875.188 2.875 0 6l-3 2c-1.373-2.745-1.132-5.003-1.125-8.062l-.008-3.285C399 599 399 599 400 598z" fill="#edd6b6"/><path d="M402 562l2 1-1 2-.562 7.625-.131 2.141L402 580l-3 1 .938-8.375.264-2.406c.686-5.992.686-5.992 1.799-8.219z" fill="#f3bd9d"/><path d="M492 550l3 1v16h-2c-1.206-4.672-1.094-9.215-1-14l-2-1h2v-2z" fill="#e22436"/><path d="M269 525h1l.684 6.152c.135 1.859.135 1.859 1.316 2.848l-.437 7.563-.158 2.154L271 549h-1c-.797-8.025-1.129-15.936-1-24z" fill="#d93030"/><path d="M425 445h2v16h-3l1-16z" fill="#de231f"/><path d="M446 393l2 1-.375 4.375-.211 2.461C447 403 447 403 445 405v-6h-2v2l-3 1c1.312-3.937 2.919-6.227 6-9z" fill="#f8dbd6"/><path d="M482 381l2 4-2 3c.312 2.646.312 2.646 1 5-3.228-2.812-4.659-4.679-5-9 1-2 1-2 4-3z" fill="#f12f37"/><path d="M453 367c1.653 2.479 2.582 4.317 3.563 7.063L459 380l-8-3v-2h2v-8z" fill="#df363e"/><path d="M860 345c2.035 3.553 2.869 7.143 3.75 11.125l.859 3.758L865 363l-2 2c-1.904-6.801-3.409-12.919-3-20z" fill="#eae2c9"/><path d="M384 345h1l.125 5.875.07 3.305C385 357 385 357 383 359c-1.316-3.62-2-6.096-2-10l2-1 1-3z" fill="#eec9c1"/><path d="M398 338c7.695-.518 13.219.249 20 4l-4 1v-2h-9v-2h-7v-1z" fill="#cf3849"/><path d="M585 317h6l-1.312 5.438-.738 3.059L588 328l-3 1v-2h2l-2-10z" fill="#faece1"/><path d="M807 230c3.494 2.867 5.288 4.842 5.813 9.313L813 243c-1.376-1.29-2.708-2.627-4-4v-2h-2l-2-4h2v-3z" fill="#d53947"/><path d="M882 188c5.734 5.432 5.734 5.432 7 9v4c-4-1.333-4.838-3.496-7-7l2-1-2-5z" fill="#e83046"/><path d="M302 61l1 4-2.812.875c-3.285 1.013-3.285 1.013-6.187 3.125h-6c2.929-2.334 5.886-4.05 9.25-5.687l2.703-1.324L302 61z" fill="#fcdcd8"/><path d="M2 1031c2 2 2 2 2.195 4.602l-.07 3.023-.055 3.039L4 1044l3 1H1l1-14z" fill="#feeeed"/><path d="M354 955c3.748.505 7.326 1.082 11 2l2 10c-3-3-3-3-3.93-5.047-1.361-2.484-2.643-3.05-5.195-4.203l-2.195-1.016L354 956v-1z" fill="#d9313f"/><path d="M525 901h5v2h5v2h-8v2h-2v-6z" fill="#e8fbf6"/><path d="M676 900l-3 1v2h-4v2c-3.325 1.108-5.622.845-9 0 2.861-1.907 5.353-3.004 8.563-4.187l2.941-1.105C674 899 674 899 676 900z" fill="#f7ddd6"/><path d="M327 879l4 1-1 3h5v2h2v2c-9.595-2.891-9.595-2.891-13-6h3v-2z" fill="#f8ebe8"/><path d="M639 869c2.379 4.759 3.101 7.548 3 13l-3 1v-8h-2v-2h2v-4z" fill="#fce5e1"/><path d="M541 869l4 1h-2v3h5v9c-2-4-2-4-2-7h-5v-6z" fill="#fad1d2"/><path d="M383 853h7l1 6h-2v-2h-6v-4z" fill="#f91325"/><path d="M711 835v4l-3 1-1 5h-2l-1-8c4.75-2 4.75-2 7-2z" fill="#f2fdfc"/><path d="M793 829c.313 2.25.313 2.25 0 5-2.312 2.375-2.312 2.375-5 4l-3-1c1.228-3.126 4.199-8 8-8z" fill="#d92e32"/><path d="M339 809l5 2v2l-3.25.188c-3.885.474-3.885.474-6.187 3.375L333 819c.25-3.375.25-3.375 1-7 2-1.375 2-1.375 4-2l1-1z" fill="#da3038"/><path d="M296.938 764.75c2.135 1.294 4.1 2.708 6.063 4.25h-3v2c-3.914-1.269-5.791-2.512-8-6 3-1 3-1 4.938-.25z" fill="#d3373e"/><path d="M264 733l1 2 3-2h4v2c-3 2-3 2-6 2l1 4-4-2 1-6z" fill="#f5eeee"/><path d="M233 709l3.438 2.75 1.934 1.547c1.817 1.9 2.233 3.139 2.629 5.703-4.383-1.339-6.541-3.122-9-7l1-3z" fill="#e0233e"/><path d="M603 691h7v2h5l-1 3c-3 1-3 1-5.187.063L607 695v-2h-4v-2z" fill="#db2725"/><path d="M539 681l2 2c-.172 2.659-.775 3.766-2.625 5.688-4.653 2.571-9.316 2.692-14.375 1.313v-1h11v-2h3l1-6z" fill="#d0404d"/><path d="M679 675h2c2.094 3.403 2.337 6.04 2 10l-2 3h-2v-3h2v-4h-2v-6z" fill="#effef9"/><path d="M374 675h5v4h-12v-2h7v-2z" fill="#e32022"/><path d="M382 653h3v16h-2l-1-16z" fill="#e01f25"/><path d="M294 647h1l1 8h2c1.176 2.353 1.134 3.821 1.125 6.438l.008 2.371C299 666 299 666 298 669h-2l.324-1.793c.814-5.363.647-7.572-2.324-12.207-.266-2.721-.139-5.257 0-8z" fill="#fcbda3"/><path d="M720 637h1c.73 7.992.261 12.993-4.687 19.453L715 658l-1-2c.777-2.164.777-2.164 1.938-4.625l1.152-2.477L718 647h2v-10z" fill="#dc263a"/><path d="M530 477h2c1.129 5.361 1.097 10.553 1 16h-2l-.184-2.047-.254-2.703-.246-2.672c-.249-2.538-.249-2.538-.914-4.781C529 479 529 479 530 477z" fill="#f5162c"/><path d="M541 414l2 1c-.632 5.053-2.135 9.296-4 14h-1c-.315-5.99.318-9.636 3-15z" fill="#eb233e"/><path d="M546 407h7l2 4h2v2h2l-1 4-.437-2.312c-1.866-3.21-2.689-3.317-6.125-4.375l-2.441-.637C547 409 547 409 546 407z" fill="#c8333f"/><path d="M596 377h3v4h-2v7l-3 1v-8h2v-4z" fill="#f71529"/><path d="M750 381h3v10l-4-1 1-9z" fill="#f8d6b8"/><path d="M173 338h1l1 12-3 1c-1.564-3.127-1.4-6.58-1-10l2-3z" fill="#e9e3cb"/><path d="M502 343h7v1l7 1-1 4c-4.472-1.418-8.711-3.113-13-5v-1z" fill="#fde5e5"/><path d="M512 309h1l.148 2.414c.388 5.503.808 10.408 2.852 15.586v2h-4l.563-2.437L513 324l-1-1c-.073-2.353-.084-4.708-.062-7.062l.027-3.91L512 309z" fill="#f1e2dd"/><path d="M357 323h2v18h-1v-6h-3v-2h2v-10z" fill="#f61c2a"/><path d="M615 301h3v2h3v2h-2v4h-2v2h-2l-1 2 1-6h2v-4h-2v-2z" fill="#d8e6ba"/><path d="M182 282h1c-.403 6.316-2.712 10.65-6 16-1.253-2.951-1.01-3.974.215-7.016l1.723-3.234 1.715-3.266L182 282z" fill="#cc405a"/><path d="M808 237l4 5 2.125 2.563c1.619 2.105 2.802 4.022 3.875 6.438h-3v-2h-2v-4l-4-1-1-7z" fill="#fbe1e7"/><path d="M259 225h4v2h9v2h-13v-4z" fill="#d5e8b7"/><path d="M308 141c3.125-.187 3.125-.187 6 0-2.746 2.949-5.341 5.262-9 7-2.312-.312-2.312-.312-4-1v-2l2.375-.312c2.955-.463 2.955-.463 4.625-3.687z" fill="#fde9ea"/><path d="M409 122v1l-1.723.113c-6.334.539-10.947 2.037-16.527 5.137C389 129 389 129 386 128c7.849-4.603 13.852-6.972 23-6z" fill="#eae4cc"/><path d="M663 111h4v2h4v2h-5v2h3l-1 2-7-3 2-2 2 1v-2h-2v-2z" fill="#fbe8eb"/><path d="M628 109c3.782.657 7.218 1.72 10.813 3.063l2.957 1.098 2.23.84v1l-4.25.125-2.391.07c-2.567-.212-4.151-.909-6.359-2.195v-2h-3v-2z" fill="#faede4"/><path d="M739 63c3.27.564 4.826 1.5 7 4h-3v3l-6-2c1-3 1-3 2-5z" fill="#d9343f"/><path d="M704 45l8 3v1h-5v2h2v2c-5.75-1.75-5.75-1.75-8-4h4v-2l-2-1 1-1z" fill="#d63c45"/><path d="M620 22c6.111 1.039 12.077 2.157 18 4v1l-5.187.125-2.918.07c-3.023-.204-5.162-.927-7.895-2.195v-2l-2-1z" fill="#fcddd7"/><path d="M610 17h11v4h-6v-2h-5v-2z" fill="#f4161f"/><path d="M319 1013l10 5c-3.006 3.006-5.824 2.596-10 3v-2h4v-2h-4v-4z" fill="#fce7e7"/><path d="M319 1002l1 3h4v4h-4l-1 4-3-4h3v-7z" fill="#dc2626"/><path d="M372.375 905.063L375 906v1l-10 1-1-2-3-2c3.701-1.851 7.599-.126 11.375 1.063z" fill="#f9ebe2"/><path d="M687.75 886.875l2.422.055L692 887c-3.732 3.57-8.095 4.109-13 5v-3c3.062-1.784 5.221-2.229 8.75-2.125z" fill="#f7dfd5"/><path d="M449 869h2l-3 22h-1v-16h2v-6z" fill="#dc3a49"/><path d="M279 859l7 3-3 1v2l3 1-2 1c-1.945-.996-1.945-.996-4.125-2.437l-2.195-1.434L276 862l3-1v-2z" fill="#cf383e"/><path d="M640 851l-2.375 2.313c-2.698 2.596-2.698 2.596-4.625 5.688h-2c-.25-2.312-.25-2.312 0-5 2.801-3.008 4.99-3.334 9-3z" fill="#f7e2d9"/><path d="M414 853h9l2 4-12-1 1-3z" fill="#fad3ca"/><path d="M375 845h11c-3 2-3 2-7 2v3h3l-1 4v-3h-3v-2h-2l-1-4z" fill="#f8e1dc"/><path d="M583 823h13c-3.359 2.239-5.603 2.631-9.562 3.25l-3.504.578L580 827l-2-2h5v-2z" fill="#fce0df"/><path d="M702 798h2l6 12-4 1-2-10-3-1 1-2z" fill="#d3394a"/><path d="M878 750l1 2-3 5-.562 2.25L875 761l-2 1-3-2 8-10z" fill="#f8e3dd"/><path d="M256 732l7 5-3 4-7-6 1-2 2 1v-2z" fill="#df3c4f"/><path d="M318 679c2 2 2 2 2 6 3.848 1.18 7.758 1.332 11.75 1.563l2.113.131L339 687v1l-8.875.125-2.551.051-2.441.02-2.253.032C321 688 321 688 319 686c-.4-2.323-.74-4.657-1-7z" fill="#bf4136"/><path d="M813 669h3v2l3 1-2.437 3.5-1.371 1.969L814 679h-1v-10z" fill="#f8f2f5"/><path d="M831 654l-3.437 5.5-1.934 3.094L824 665h-1v-6h2v-2h2v-2l-2-1c2.491-1.245 3.411-.777 6 0z" fill="#f7e8de"/><path d="M90 647c2.645 3.125 3.844 6.088 5 10h-2l-1 2-4-10 2-2z" fill="#dc384f"/><path d="M294 638h1c.12 5.778-.168 11.28-1 17l-2-4h-2v-4h3l1-9z" fill="#df2e30"/><path d="M270 621h1l1 9 7 1v3c-5.481.365-5.481.365-7.687-1.187-1.766-2.438-1.616-4.023-1.5-7l.082-2.73L270 621z" fill="#cb323f"/><path d="M481 613h2c-.566 4.69-1.185 9.345-2 14-2-2-2-2-2.266-4.059l.016-2.379-.016-2.371C479 616 479 616 481 613z" fill="#ea2536"/><path d="M859 595h2c-.606 5.76-2.757 10.72-5 16l-2-3c.898-3.137.898-3.137 2.375-6.687l1.461-3.574L859 595z" fill="#cd435a"/><path d="M864 587l2 4c-.687 2.25-.687 2.25-2 5l-1.625 4.313L861 604l-2-1 .813-2.375c1.48-4.517 2.837-9.068 4.188-13.625z" fill="#fae2df"/><path d="M720 557h1v21c-3-3-3-3-3.157-4.993l.302-2.238.303-2.432.365-2.525.33-2.561L720 557z" fill="#f4162c"/><path d="M489 541h3c.125 5.75.125 5.75-1 8h-2v4h-2c-.263-4.332.708-7.88 2-12z" fill="#fb1223"/><path d="M463 493h3l1 4h2v6h-2l-.375-1.937L466 499l-2-1-1-5z" fill="#f8151e"/><path d="M348 487h5v2l6 1c-2.639 1.414-5.071 2.372-8 3v-2h-3v-4z" fill="#dbe3b6"/><path d="M461 465l2 4h-1l-1 8h-4c.543-4.565 1.795-7.973 4-12z" fill="#f8181e"/><path d="M743 463v2h-16v-2c5.687-.914 10.313-.914 16 0z" fill="#f3172a"/><path d="M531 445h2c.097 5.447.129 10.639-1 16h-2c-.382-1.656-.714-3.325-1-5l1-1c.233-1.682.413-3.371.563-5.062l.254-2.785L531 445z" fill="#f4162b"/><path d="M646 407l2 1-1 2h-2v2h-2l3 6h-2l-1 2-2-2c.543-6.087.543-6.087 2-9h3v-2z" fill="#d63643"/><path d="M193 349h3l-1 4 2.117-.07 2.758-.055 2.742-.07C205 353 205 353 207 355c.195 2.383.195 2.383.125 5.125l-.055 2.758L207 365h-1l-.184-1.934-.254-2.504-.246-2.496c-.106-2.053-.106-2.053-1.316-3.066l-5.062-.562-2.785-.254L194 354l-1-5z" fill="#eae4cc"/><path d="M570 348l-5 2v3h-9c2.655-2.655 3.693-3.522 7-4.75l2.063-.797C567 347 567 347 570 348z" fill="#e0404b"/><path d="M769 337c.981 3.053.981 4.947 0 8h2v2h-4v2h-3c1.59-4.035 3.282-8.018 5-12z" fill="#efbba0"/><path d="M733 339l6 2v2h4v4h-4v-2h-2v-2h-2l-2-4z" fill="#f91426"/><path d="M743 329h2v8h-2v2h-3v-4l-2-1 3-1v2h2v-6z" fill="#d9e4b4"/><path d="M283 323l3 1 1 9h-4c-1.37-2.739-1.126-4.971-1-8l1-2z" fill="#f2171f"/><path d="M849 313l1.313 1.438c1.711 1.799 1.711 1.799 4.688 2.563v8h-2l-2-4.875-1.125-2.742C849 315 849 315 849 313z" fill="#fdfcfa"/><path d="M356 301h2l-1 16h-2l-.062-6.312-.035-3.551C355 304 355 304 356 301z" fill="#dc231f"/><path d="M83 293c1.392 4.176-.177 6.135-2 10h-3v-7l1.938-.375L82 295l1-2z" fill="#f9f3f1"/><path d="M375 257l2 1c-1.25 2-1.25 2-3 4h-4l.375 4.25.211 2.391c.429 2.445 1.2 4.208 2.414 6.359h-2c-2.281-3.421-2.219-4.682-2.125-8.687l.055-3.012L369 261h2v-2h4v-2z" fill="#cf434c"/><path d="M778 199h2l2 2 2.125 1.438L786 204v3c-2.312-.187-2.312-.187-5-1-3-4.034-3-4.034-3-7z" fill="#eb1e35"/><path d="M275 191l2 1c-1.249 3.746-2.654 4.431-5.875 6.625l-2.68 1.852C266 202 266 202 263 203v-2c5.476-5 5.476-5 8-5v-2l4-3z" fill="#e9e4ce"/><path d="M647 179h2l1 3c-3.193 1.064-5.204 1.038-8.543.879l-3.252-.146-3.393-.17-3.428-.158L623 182v-1h24v-2z" fill="#f4ebd0"/><path d="M759 177h6v2h2v6l-4-2.875-2.25-1.617L759 179v-2z" fill="#f4e1da"/><path d="M167 153l1 2-2-1 1-1zm-5 5c0 2.621-.313 4.509-1 7l-4-1 5-6zm-6 7v8l-1-2-2-1 3-5z" fill="#fdfaf8"/><path d="M431 95h12l1 2-10 2v-2l-3-1v-1z" fill="#e6212d"/><path d="M626 1010c2 3 2 3 1.625 5.188L627 1017h-7l2-5h3l1-2z" fill="#ed1719"/><path d="M955 969c2 2 2 2 2.227 3.879l-.032 2.253-.02 2.441-.051 2.551-.027 2.574L957 989h-1l-.184-1.977c-.368-3.836-.739-7.607-1.441-11.398-.37-2.592-.224-4.173.625-6.625z" fill="#e94851"/><path d="M429 949h9l-2 6h-3v-4h-4v-2z" fill="#faede9"/><path d="M439 916l-4 1v2l2 1c-4.333.928-7.667.928-12 0 1.853-2.367 2.897-2.975 5.875-3.687 2.741-.274 5.374-.393 8.125-.312z" fill="#d3353a"/><path d="M362.125 896.438l2.758.871L367 898v1h-8v2l-5-1 3-1v-2l-2-1c2.818-1.409 4.173-.509 7.125.438z" fill="#db353e"/><path d="M466 886h1l2 11h-8v-3l4-1 1-7z" fill="#d5444f"/><path d="M316 880l3.25.938L327 883v2l-3.812.063-2.145.035C319 885 319 885 316 884v-4z" fill="#e91f2b"/><path d="M413 871h4v2h4v2h-4v2h-4v-6z" fill="#faf7fd"/><path d="M366 865h3l2 6h4v4h-2v-2h-3l-1-4h-3v-4z" fill="#edfff7"/><path d="M698 851h3v2h4v4c-1.812.688-1.812.688-4 1-1.75-1.187-1.75-1.187-3-3v-4z" fill="#f5151e"/><path d="M391 849v6l-1-2h-7v-2h2v-2c2.491-1.245 3.411-.777 6 0z" fill="#df2023"/><path d="M767 837h7v2h-2v2h-2l-2 4c-1.354-2.709-1.065-5.009-1-8z" fill="#ebfefa"/><path d="M699 831l-1 4-3-2c-4.221-.367-7.177.201-11 2l-1-2h2v-2c5.021-.779 8.977-1.13 14 0z" fill="#fee0e1"/><path d="M711 817c1.563 1.688 1.563 1.688 3 4-.312 2.75-.312 2.75-1 5h-4l-1-8 3-1z" fill="#e3201b"/><path d="M323 797h2v4h2v2l-5-1-1 4v-2h-2v-3h2v-2h2v-2z" fill="#f8e2e5"/><path d="M836 795c-1.446 3.373-3.205 5.616-6 8-2.25.75-2.25.75-4 1v-3c1.68-1.605 1.68-1.605 3.875-3.187l2.18-1.605C834 795 834 795 836 795z" fill="#e81e3a"/><path d="M322 781c2.915 1.074 4.778 1.778 7 4h-2v3c-3.375-1.186-5.647-2.276-8-5h3v-2z" fill="#d82e40"/><path d="M714 773c-2.751 2.955-5.397 5.152-9 7h-3v-2l4-1v-3c2.709-1.354 5.009-1.065 8-1z" fill="#f9e7e3"/><path d="M583 691h6v2c-4.402 3.651-7.328 4.454-13 4 3-2 3-2 7-2v-4z" fill="#e42433"/><path d="M714 659c3.787 1.488 5.774 3.62 8 7l-1 3-2-1v-3h-4l-1-6z" fill="#e33244"/><path d="M529 647l4 1c2.012 5.784 2.221 10.902 2 17l-2-1 .25-3.562c.034-4.818-1.69-7.437-4.25-11.437v-2z" fill="#fddbd8"/><path d="M713 575h2v4h2v6h-4v-10z" fill="#f81427"/><path d="M154 565c3 1 3 1 5 2v11c-1.904-2.856-2.695-4.931-3.625-8.187l-.789-2.73L154 565z" fill="#fae9da"/><path d="M522 505c2.408 2.85 3.442 4.848 3.813 8.563l.27 2.316C526 518 526 518 524 521c-2.271-5.395-2.204-10.262-2-16z" fill="#fad5d3"/><path d="M525 495h7l1 4h-4v2l-4-2v-4z" fill="#ea1d1c"/><path d="M527 485h4v8h-4v-8z" fill="#e6211b"/><path d="M257 363h2c1.283 3.85 1.066 6.947 1 11l-3 1v-12z" fill="#effdfa"/><path d="M758 358c1.255 3.766.371 5.372-1 9h-3l-1 3h-2c1.333-3.588 2.831-6.836 5-10h2v-2z" fill="#edc9a8"/><path d="M514 349c4.004 3.491 5.627 5.65 6 11l-1.375-1.437c-1.558-1.653-1.558-1.653-3.625-2.562-2-3-2-3-1.625-5.187L514 349z" fill="#d93139"/><path d="M475 351h8l-2 2h-3l1 3 2 1-2 4-.312-1.937L478 357l-3-1v-5z" fill="#fbe3e3"/><path d="M330 343h1v12h2v-2h2c-.812 2.938-.812 2.938-2 6l-3 1v-17z" fill="#fdd7d5"/><path d="M669 351h7l1 6h-3v-2l-1.937-.312L670 354l-1-3z" fill="#e3d6b0"/><path d="M379 333h1l.063 5.875.035 3.305C380 345 380 345 379 347h-4v-4h2v-2h2v-8z" fill="#df2425"/><path d="M387 339h7v4h-9v-2h2v-2z" fill="#f0edea"/><path d="M579 333h2l-1 14h-7v-1l5-1-1-8h2v-4z" fill="#f5c7c4"/><path d="M445 267l1 2h2c-4.018 10.509-4.018 10.509-7 12 .632-5.053 2.135-9.296 4-14z" fill="#f7e0d5"/><path d="M829 261c1.938.375 1.938.375 4 1l1 2 3 1 1 5c-2.25 0-2.25 0-5-1-1.672-2.527-2.858-5.199-4-8z" fill="#faecee"/><path d="M785 253c5.662 1.477 5.662 1.477 7.375 4.125L793 259h-4v2h-2v-4h-2v-4z" fill="#dee2bc"/><path d="M730 237l1.574 1.023c3.714 2.375 7.23 4.534 11.426 5.977v1c-8.16.314-8.16.314-11-2-1.25-3.125-1.25-3.125-2-6z" fill="#e7dec7"/><path d="M129 227h2l-1 6h-3v4h-4v-2h2l2-6h2v-2z" fill="#e9fffe"/><path d="M241 205c-1.441 3.362-3.248 5.592-6 8h-2c.365-2.702.699-4.584 2.313-6.812C237 205 237 205 241 205z" fill="#e02038"/><path d="M260 179l3 1-4.437 4.5-2.496 2.531C254 189 254 189 253 189v-6l7-2v-2z" fill="#fadfd7"/><path d="M275 173c-.312 1.875-.312 1.875-1 4-3.228 2.152-4.284 2.201-8 2 .997-2.493 1.651-3.775 3.938-5.25C272 173 272 173 275 173z" fill="#ed1e37"/><path d="M291 157l1 2c2.025.652 2.025.652 4 1l-6 4v-3l-6 2c4.75-4.875 4.75-4.875 7-6z" fill="#d43e43"/><path d="M459 115l1 4h6l-3 1v2l-7 1v-3h2l1-5z" fill="#e8e3cf"/><path d="M218 113c-1.269 3.914-2.512 5.791-6 8l-2-2v-3c5.75-3 5.75-3 8-3z" fill="#e62330"/><path d="M803 102c5.352.324 8.283 3.497 12 7l-2 3v-3h-6v-5l-4-2z" fill="#fefdfd"/><path d="M717 963l6 2v2h2v2l-4 2v-2h-2l-2-6z" fill="#e4201b"/><path d="M503 951l5 1 1 3c2.015.733 2.015.733 4 1-4.054 1.158-6.218.837-10-1v-4z" fill="#effdf3"/><path d="M699 951h13v2h4l1 3-18-4v-1z" fill="#fddfdc"/><path d="M555 878c1.904 1.904 2.935 3.334 3.199 6.047L558 890h-1l-1-5-1 5h-1l-1-11 2-1z" fill="#de1f24"/><path d="M560 873h3v14h-2l-1-14z" fill="#e5fffe"/><path d="M305 873c5.75 1.75 5.75 1.75 8 4h-2l1 4c-5.75-1.75-5.75-1.75-8-4h4v-2h-3v-2z" fill="#d14049"/><path d="M730 869c-4.599 3.714-8.925 6.536-15 6v-2h5v-2c3.508-1.604 6.144-2.22 10-2z" fill="#fceee5"/><path d="M727 842l1 2 6-1v3c-5.75 3-5.75 3-8 3l-1-3h2v-4z" fill="#cd3847"/><path d="M258 845h5l1 3 7-1v2h-3v3c-4.435-1.394-6.874-3.606-10-7z" fill="#fbd7d0"/><path d="M599 823v2h-4v2h-14v-1l7.313-1.5 2.092-.434c2.921-.593 5.607-1.066 8.596-1.066z" fill="#d03d4b"/><path d="M416 815h8v2h-2v2h-8l2-4z" fill="#e9fefc"/><path d="M341 791c7.379-.369 7.379-.369 10.313 1.375L353 794l3 2c-2.8 1.113-3.901 1.035-6.797.004l-2.953-1.441-2.984-1.434L341 792v-1z" fill="#fcdedf"/><path d="M846 765h3l1 4 4 1h-2l-2 4-2-1 1-4h-4l1-4z" fill="#effefb"/><path d="M143 744c2.932 2.853 5.643 5.651 8 9l-6 1v-5h-2v-5z" fill="#fbe6db"/><path d="M456 679l1 2-2 4h-2v4l3 1-1 2-4-2c.492-6.4.492-6.4 3.063-9.437L456 679z" fill="#ce444b"/><path d="M818 677l1 4-2 1-1 3h-2l1 6h-2v-2l-3-1 1.242-1.645 1.633-2.168 1.617-2.145L818 677z" fill="#fee3e3"/><path d="M436 675l1 2h2l2 8-5-2v-2l-2-1 2-5z" fill="#f4ece6"/><path d="M738 675l4 2c-.312 2.375-.312 2.375-1 5l-3 2c-1.125-6.75-1.125-6.75 0-9z" fill="#dc2b33"/><path d="M294 655c2.584 1.91 3.037 3.14 3.875 6.313.141 4.158-.735 6.178-2.875 9.688-1.042-2.894-.931-4.435-.437-7.562.834-3.553.834-3.553-1.562-6.437l1-2z" fill="#d53231"/><path d="M397 607l2 1v7h-2v2h-2v-8h2v-2z" fill="#dde2b4"/><path d="M638 600l3 1v2h-2l1 3-1 1-.562 4.063L638 615h-1l-.625-6.375-.352-3.586L636 602l2-2z" fill="#f5e5e5"/><path d="M560 549h3v2h2v6h-3l-3-7 1-1z" fill="#f71524"/><path d="M533 527h2v10h-6l-2-7 4 3v2h3l-1-8z" fill="#d13942"/><path d="M431 494h3c.993 5.707 1.105 11.214 1 17h-1l-3-17z" fill="#fbcda9"/><path d="M427 461h3l1 12-1-2h-2c-1.158-3.473-1.069-6.361-1-10z" fill="#e3222c"/><path d="M653 435h3l-1 10h-2v2l-2-1v-3h2v-8z" fill="#f1fefd"/><path d="M660 431l3 1-1 7h-3l-1 2c-.687-1.625-.687-1.625-1-4l3-6z" fill="#ee2638"/><path d="M541 397h3c1.478 2.957 1.06 5.742 1 9l-4-1v-8z" fill="#df2223"/><path d="M571 379h4v2h2v2l-9 1-1-2 4-1v-2z" fill="#f9e4e4"/><path d="M727 330c3.492.647 6.097 1.96 9 4l1 3h-6l-.875-2.375c-.974-2.722-.974-2.722-3.125-4.625z" fill="#d72c2d"/><path d="M593 322h2c1.193 3.877 2 6.916 2 11h-4v-11z" fill="#dc2321"/><path d="M520 309l7 1 1 3 2 .5 2 .5 1 3h-2v-2l-9-2v-2l-3-1 1-1z" fill="#cf383f"/><path d="M287 301h4l1 4 6 1v1h-9l-2-6z" fill="#eefefc"/><path d="M256 265h1c.204 5.738.271 10.605-2 16h-2c.692-5.418 1.758-10.682 3-16z" fill="#e03446"/><path d="M832 267c6 7.2 6 7.2 6 12h-2c-1.324-1.609-1.324-1.609-2.687-3.75l-1.387-2.109c-1.095-2.532-.869-3.602.074-6.141z" fill="#e22944"/><path d="M199 253c-1.37 3.995-3.257 6.8-6 10-1.338-6.448-1.338-6.448.188-8.937C195 253 195 253 199 253z" fill="#fcecea"/><path d="M275 240l4 1v12h-2l-2-13z" fill="#edfefd"/><path d="M212 237l1 4-7 6c0-4.032 1.641-5.809 4-9l2-1z" fill="#e2253d"/><path d="M118 231h1v6h-3v4h-3v2l-2-1 2.938-4.937 1.652-2.777C117 232 117 232 118 231z" fill="#fcdcd3"/><path d="M232 210l2 1-1 2 2 1-5 6-3-1 1.938-3.937 1.09-2.215C231 211 231 211 232 210z" fill="#d6323c"/><path d="M175 155c-1.293 2.884-2.659 4.872-5 7l-3-1c1.844-5.137 2.268-6 8-6z" fill="#e42134"/><path d="M717 147c2.714.933 3.78 1.627 5.25 4.125L723 153h-6l-2-5 2-1z" fill="#ef2035"/><path d="M639 143h2c-1.074 2.915-1.778 4.778-4 7-.682 2.657-.682 2.657-1.125 5.625l-.508 3.039L635 161h-1c-.327-6.131-.394-10.627 3-16h2v-2z" fill="#ece4d1"/><path d="M687 135c4.755.576 7.97 2.551 12 5l-4 1v-2l-8 1v-5z" fill="#f7e1dd"/><path d="M623 105h8v2h3v2l-4.375-.437-2.461-.246C625 108 625 108 623 107v-2z" fill="#ea1d2c"/><path d="M372 33h11l-1 2h-7v2h-5v-2h2v-2z" fill="#eafefa"/><path d="M730 1001h1c.188 2.375.188 2.375 0 5l-3 2-1 3h-3l-1 4v-2l-2-1 2.875-3.5 1.617-1.969L727 1005h2l1-4z" fill="#f5ded9"/><path d="M725 989h2v4h4v4h-5c-1.354-2.709-1.065-5.009-1-8z" fill="#f91426"/><path d="M716 977h1l.125 9.125.051 2.594c.037 4.847-.28 8.728-2.176 13.281l-2-4 2-3c.364-2.025.364-2.025.414-4.23l.117-2.432.094-2.525.117-2.561L716 977z" fill="#fbe5d6"/><path d="M727 965c3.253 3.253 4.489 5.692 6 10-.312 2.438-.312 2.438-1 4v-2h-3l-2-12z" fill="#cf3138"/><path d="M315 963c1.245 2.491.777 3.411 0 6h2v2h-2l-1 2h-4c1.156-3.912 2.355-6.875 5-10z" fill="#db323b"/><path d="M316 963h2v2h3v4l-7 1 2-7z" fill="#ea1d22"/><path d="M710 963c2.938.75 2.938.75 6 2 1.818 3.377 1.062 8.256 1 12h-1l-.75-3.062c-1.147-4.071-3.047-7.34-5.25-10.937z" fill="#cc343e"/><path d="M660 949h3v2h6v1h-9c.669 3.113.669 3.113 3.063 4.188L665 957h-7v-6h2v-2z" fill="#fedade"/><path d="M405 889h2v2h11v2h-13v-4z" fill="#edfefe"/><path d="M593 875h1l.367 2.047.508 2.703.492 2.672c.601 2.448 1.413 4.384 2.633 6.578h-5v-14z" fill="#fae0d6"/><path d="M491 867l5 2-1 6h-4v-4h2v-2h-2v-2z" fill="#d62426"/><path d="M405 853h2v2h2v2h-3v2h-5v-4h4v-2z" fill="#edfef6"/><path d="M325 813h2c1.385 5.455 2.24 10.367 2 16l-2-1c-.633-2.363-.633-2.363-1.125-5.312l-.508-2.926C325 817 325 817 325 813z" fill="#f01a16"/><path d="M373 811c4.722 1.535 9.359 3.239 14 5v1h-8v-2h-4v-2l-3-1 1-1z" fill="#f5eee2"/><path d="M674 801l2 2h-3v2h-2v2h-8c1.416-2.833 3.145-3.017 6.063-4.125l2.785-1.07L674 801z" fill="#f3e5d6"/><path d="M713 767h4v2l3 1c-3.75 3-3.75 3-6 3v-2l-3 1 2-5z" fill="#fceff1"/><path d="M262 738c3 1.75 3 1.75 6 4v4c-2.884-1.293-4.872-2.659-7-5l1-3z" fill="#de2535"/><path d="M594 695l16 3v1l-5.812.563-3.27.316C598 700 598 700 595 699l-1-4z" fill="#fae9e9"/><path d="M588 689h7v2h2v2h-8l-1-4z" fill="#fa1425"/><path d="M293 674h1v11l-4 2 .375-4.812.211-2.707C291 677 291 677 293 674z" fill="#df363d"/><path d="M275 673h2l.063 4.875.035 2.742C277 683 277 683 276 685h-3v-4h2v-8z" fill="#dd2226"/><path d="M724 669l14 5v1c-9.186.311-9.186.311-13-2l-1-4z" fill="#e23440"/><path d="M335 669h3c1.348 2.22 2.044 3.501 1.813 6.125C339 677 339 677 336 679l-1-10z" fill="#f2162a"/><path d="M200 661h7c1.125 3.75 1.125 3.75 0 6h-3l-1-4h-3v-2z" fill="#eefefc"/><path d="M931 653h2c-1.355 5.421-3.366 10.078-6 15-1.417-4.251-.193-6.719 1-11h3v-4z" fill="#fae2d8"/><path d="M563 627c2 2 2 2 2.195 3.945L565 637h2v4h-3c-.936-3.155-1.106-5.966-1.062-9.25l.027-2.703L563 627z" fill="#f91520"/><path d="M365 621h1c.266 6.95-.388 13.235-2 20-2.3-3.992-1.935-6.495-1-11l1-1c.231-1.347.412-2.704.563-4.062L365 621z" fill="#fcb59c"/><path d="M327 629h2v12h-2v-4h-2v-4h2v-4z" fill="#dc2321"/><path d="M162 579h3v10h-3v-10z" fill="#eefef8"/><path d="M58 549h1l1.563 7.75.459 2.211c.724 3.705 1.077 6.432-.021 10.039v-2h-2l-1-18z" fill="#f8e0d8"/><path d="M877 535c2.372 3.558 2.298 5.28 2.313 9.5l.051 3.469C879 551 879 551 877.48 552.906L876 554c-1.434-2.867-.288-4.736.52-7.691.783-3.762.64-7.486.48-11.309z" fill="#f9d9db"/><path d="M555 499c1.5 1.188 1.5 1.188 3 3 .188 2.688.188 2.688 0 5l-2-2-2 8h-1v-10h2v-4z" fill="#d63234"/><path d="M519 503h11c-3.228 2.152-4.284 2.201-8 2v8h-2l.098-6.055c.029-2.027.029-2.027-1.098-3.945z" fill="#ce3738"/><path d="M458 463c.967 3.868.98 5.082.063 8.75l-.59 2.422L457 476l-4 1 5-14z" fill="#d1313f"/><path d="M488 399h3c1.125 5.75 1.125 5.75 0 8h-4l1-8z" fill="#d63133"/><path d="M195 391l1 2h2l1-2v7l3 1-4 3c-3-6.5-3-6.5-3-11z" fill="#ece8d6"/><path d="M361 379l2 2c-.375 2.125-.375 2.125-1 4h-2l.563 3.188c.388 3.384.32 5.577-.562 8.813h-1l-.125-6.75-.07-3.797c.18-3.181.505-4.818 2.195-7.453z" fill="#e6353b"/><path d="M439 371c3.405 3.891 6.242 8.114 8 13l-1 2-1-3h-3l1-4h-2v-4h-2v-4z" fill="#fcdfdc"/><path d="M426 365h3v14h-2l-1-14z" fill="#fb141f"/><path d="M868 335l2 2c-.023 2.383-.023 2.383-.375 5.125l-.336 2.758L869 347c-2.952-2.952-3.087-5.955-4-10l3-2z" fill="#faefef"/><path d="M760 311c.934 3.01 1.044 3.867 0 7l-6 2v-3h2l.875-1.875C758 313 758 313 760 311z" fill="#e03237"/><path d="M641 297c2.961 3.364 3.923 6.692 5 11h-4v-2h-2l1-9z" fill="#d93236"/><path d="M591 294l4.375.375 2.461.211C600 295 600 295 602 297c-.375 2.125-.375 2.125-1 4l-4-2v-2l-2.437-.375L592 296l-1-2z" fill="#ebe2cc"/><path d="M190 273l5 1v5h2v2h-4v-4h-4l1-4z" fill="#f7f4ef"/><path d="M795 271l1 2h5v-2h4v2h-2v2h-11l2-1 1-3z" fill="#f5d5b7"/><path d="M763 263c2.875.625 2.875.625 6 2 1.375 3.125 1.375 3.125 2 6l-2 1-1.312-1.937c-1.6-2.33-1.6-2.33-4.687-3.062l-1 2 1-6z" fill="#f8c0aa"/><path d="M243 198l2 1-1 2 2 1-5 4-3-2 5-6z" fill="#d63449"/><path d="M141 191l2 1c-.613 2.962-1.254 4.381-3 7h-3l-1 2c0-3.396.522-4.066 2.5-6.687l1.406-1.887L141 191z" fill="#e72847"/><path d="M700 181c3.344.557 6.033 1.352 9 3l-3 1c-.733 2.015-.733 2.015-1 4v-2h-2c-3-3.462-3-3.462-3-6z" fill="#fdf9e9"/><path d="M371 161c1.149 3.939 1.526 7.936 2 12h2l-1 3c-2.355-2.141-3.986-3.958-5-7 .556-6.556.556-6.556 2-8z" fill="#fbf8e9"/><path d="M289 165v4h-2v2l-8 2 5-5 1.688-1.812C287 165 287 165 289 165z" fill="#f9dfe1"/><path d="M670 125l10 5-2 2c-4.245-.277-6.816-1.184-10-4h2v-3z" fill="#fae0df"/><path d="M212 121l1 2-1 2h-3v2h2l-1 3-6-1c4.625-5.75 4.625-5.75 8-8z" fill="#fae9e8"/><path d="M803 113c3.984 2.163 6.89 4.712 10 8l-1.875.438c-2.158.494-2.158.494-4.125 1.563v-6h-2v-2l-3-1 1-1z" fill="#fae6e1"/><path d="M635 105h12v4c-4.195-.599-8.01-1.575-12-3v-1z" fill="#f2e6e0"/><path d="M425 101v2c-2 2-2 2-4.625 2.125L418 105v2h-2v-2l-4-1 5.375-1.5 3.023-.844C423 101 423 101 425 101z" fill="#f2e1dd"/><path d="M257 83l1 4-6 4-2-3c4.75-5 4.75-5 7-5z" fill="#e21d31"/><path d="M621 1012l1 2-2 3c-3.258.293-3.258.293-7.125.188l-3.883-.082L606 1017l-1-2 2.484-.148 3.266-.227 3.234-.211c2.818-.387 4.599-.971 7.016-2.414z" fill="#e63943"/><path d="M323 957l7 1c-.573 2.867-.861 3.861-3 6l-2-1v-4h-2v-2z" fill="#f41a21"/><path d="M627 915h15c-4.182 2.788-7.409 3.206-12.375 2.563L627 917v-2z" fill="#ebfdfc"/><path d="M453 890v7h-8v-3l7 1v-3l-3-1c3-1 3-1 4-1z" fill="#fdd9e1"/><path d="M406 885l9 4v2h-8l-1-6z" fill="#fae6e7"/><path d="M476 868c2 3 2 3 1.625 5.188L477 875h-3l-1 2v-8l3-1z" fill="#e31f21"/><path d="M607 865c2.75-.375 2.75-.375 6 0 4 4.842 4 4.842 4 8h-2v2h-2v-7l-6-2v-1z" fill="#fbeae5"/><path d="M411 868l4 1h-2v8h2l-1 4c-2.048-1.963-2.95-3.428-3.199-6.27L411 868z" fill="#fae4dd"/><path d="M621 861c3.871.574 6.082 2.487 9 5l-1 5c-2.421-2.905-4.316-5.631-6-9l-2-1z" fill="#f9e0da"/><path d="M638 853c.981 3.053.981 4.947 0 8l-5-1c.398-2.886.79-3.822 3.063-5.75L638 853z" fill="#de2a3c"/><path d="M695 832l3 3h-13c4.166-3.125 5.074-3.629 10-3z" fill="#d53946"/><path d="M647 809v2l4 1-9 3-1-2h3v-2l-4-1c3-1 3-1 7-1z" fill="#d43742"/><path d="M692 806l3 2-1 2 4 1h-3v2l-7-2 4-5z" fill="#fce9e9"/><path d="M764 637h1l.625 8.063.195 2.279c.35 5.053-.154 8.868-1.82 13.658h-1l1-24z" fill="#eee8cd"/><path d="M303 631c1.125 3.75 1.125 3.75 0 6h-4v6h-3v-6l2.938-1.312c3.34-1.389 3.34-1.389 4.063-4.687z" fill="#f5d7b6"/><path d="M65 583c1.849 2.773 2.521 4.4 3.25 7.563l.578 2.379L69 595l-2 2-1-8h-3l2-6z" fill="#fce1da"/><path d="M639 517l2 1-1 3h-2v19h-1v-21h2v-2z" fill="#e81e2f"/><path d="M363 491h5v5l-5 1v-6z" fill="#dee2b8"/><path d="M50 481c2.17 4.339 2.213 6.484 2.125 11.25l-.055 3.828L52 499h-1v-6h-2l1-12z" fill="#fedde6"/><path d="M430 451h2l-1 18h-1l-.562-7.312-.17-2.092c-.233-3.221-.3-5.499.732-8.596z" fill="#f5374e"/><path d="M731 451h2c.179 3.947.094 6.598-2 10h-2l.438-4.437.246-2.496C730 452 730 452 731 451z" fill="#f81428"/><path d="M672 419h3c2.094 3.402 2.179 6.053 2 10h-2v-4h-2l-1-6z" fill="#f91326"/><path d="M537 413h2v4h-2l2 7-2 1v-2h-2v-8h2v-2z" fill="#e11e1f"/><path d="M456 375l6 1 .375 1.938L463 380l2 1v2c-3.918-1.306-6.326-2.831-9-6v-2z" fill="#f9e3da"/><path d="M434 368l5 2-2 3c-.451 2.049-.451 2.049-.625 4.188L436 381h-1c-1.102-4.409-1.077-8.484-1-13z" fill="#fbd0cc"/><path d="M356 369c.75 1.75.75 1.75 1 4-1.75 2.25-1.75 2.25-4 4h-3v-4h3v-2l3-2z" fill="#f0fefe"/><path d="M670 343h3v8l-3 1c-.845-3.378-1.108-5.675 0-9z" fill="#dce3b9"/><path d="M440 343c4.875 4.75 4.875 4.75 6 7l-2 3c-2.252-2.688-3.882-4.646-5-8l1-2z" fill="#fce4e4"/><path d="M749 333h4c-.25 2.875-.25 2.875-1 6-2.062 1.375-2.062 1.375-4 2l1-8z" fill="#f7162a"/><path d="M772 325c1.371 3.69.6 5.709-.937 9.25l-1.152 2.703L769 339l-.457-1.867-1.23-4.258L767 331l2-2v2h2l1-6z" fill="#d82c31"/><path d="M951 317l2 4h2c1.802 3.83 2.196 6.781 2 11h-2v-7h-2c-1.257-2.906-2-4.796-2-8z" fill="#fdeff2"/><path d="M251 309h1c.988 4.074 1.38 7.815 1 12l-4 4 2-16z" fill="#f9f6e6"/><path d="M675 302l2 2-1 5-.562 8.313-.131 2.244L675 325h-1l-.062-9.25-.025-2.645-.01-2.559-.016-2.349c.113-2.191.508-4.095 1.114-6.198z" fill="#e04746"/><path d="M604 301h6l1 3c2.015.733 2.015.733 4 1l-1 4v-2l-1.812-.437L607 305v-2l-3-1v-1z" fill="#e9e3ce"/><path d="M835 277c2.154 2.622 3.401 4.644 4 8h-6v-4h2v-4z" fill="#f1e5e8"/><path d="M381 273h3c1.117 4.69.806 7.538-1 12h-2l1-10-2-1 1-1z" fill="#f9e7df"/><path d="M116 238c2.125 3.188 2.502 5.265 3 9h-4v-4h-2v-2h3v-3z" fill="#f6fbf6"/><path d="M227 209h3v2h-2v2h-3l2-4zm-4 4h2v4h-2v2h-2v-4h2v-2z" fill="#ebfefa"/><path d="M708 183c6.75-.125 6.75-.125 9 1v5c-3.937-1.312-6.227-2.919-9-6z" fill="#ede0cb"/><path d="M186 133l1 4h-3v4c-2.906 1.257-4.796 2-8 2l10-10z" fill="#fbfefb"/><path d="M360.625 118.875L364 119v3c-2.709 1.354-5.009 1.065-8 1l-1-2c2-2 2-2 5.625-2.125z" fill="#ec1a31"/><path d="M234 103l2 4h-5l-1 4h-5c2.853-2.932 5.651-5.643 9-8z" fill="#f9ddd0"/><path d="M727 51l10 5v1l-3.875.188-2.18.105L729 57c-2-3-2-3-2-6z" fill="#fcfbfc"/><path d="M675 35l4.438.375 2.496.211L684 36l1 2c-2.957 1.478-5.742 1.06-9 1l-1-4z" fill="#e71c2d"/><path d="M711 1017l3 1c-2.484 2.343-3.777 2.98-7.234 3.293l-3.516-.105-3.547-.082L697 1021v-1l2.555-.402 3.32-.535 3.305-.527c2.759-.391 2.759-.391 4.82-1.535z" fill="#f8dfd9"/><path d="M587 1005h3l1 8h-4v-8z" fill="#f91328"/><path d="M167 963h10v4h-4v-2h-6v-2z" fill="#f21135"/><path d="M867 926h1l-.437 3.875L866 945h-1l-1-12h2l1-7z" fill="#facfd6"/><path d="M383 905l5.859 1.563c2.43.571 2.43.571 6.141.438v2h-12l-1-2 1-2z" fill="#ef1820"/><path d="M628 881l1 2h2v-2h2v4h-2v2h-5l2-6z" fill="#fde0e8"/><path d="M730 869l2 1-1 2 4-1c-2.174 2.5-3.73 3.436-7 4v-2l-4-1 6-3z" fill="#db3b42"/><path d="M442 869l1 2h5l1 4h-7v-6z" fill="#f71228"/><path d="M733 867h6v3l-8 2 2-5z" fill="#e72627"/><path d="M675 865l1 2h3l-1 4h-5l-1-4h3v-2z" fill="#f8e6e0"/><path d="M336 853c1.467 3.815.433 6.29-1 10l-6-2v-2l2.375-.187L334 858c1.375-2.476 1.375-2.476 2-5z" fill="#d93a4c"/><path d="M323 842c1.601 4.002.293 7.046-1 11h2v3l-3-1c-1.468-5.473-.44-8.119 2-13z" fill="#fdd3d1"/><path d="M407 845h2v2h-2v-2zm-9 2h9l-4 4h-3v-2h-2v-2z" fill="#ecfefb"/><path d="M685 838c2.5.125 2.5.125 5 1 1.313 2.063 1.313 2.063 2 4l-7-2-2 4c-.125-2.375-.125-2.375 0-5l2-2z" fill="#fbcdc5"/><path d="M316 830c2.29 3.435 2.178 4.985 2 9h-2l-1 2v-2h-2l3-9z" fill="#ee2a40"/><path d="M432 827h13v3l-13-1v-2z" fill="#f6161f"/><path d="M608 821l1 5-7 1 4-2v-2h-6c3.088-1.765 4.233-2 8-2z" fill="#d93a44"/><path d="M701 801h3l1 6h-3v2h-3v-4h3l-1-4z" fill="#f7131b"/><path d="M867 749h2v4l2 1-3 3v-2h-4l1-4h2v-2z" fill="#fbeff0"/><path d="M237 717c3.26 3.17 6.222 6.399 9 10l-5 2 2-4-4-1-2-7z" fill="#fcdcd7"/><path d="M219 707h4l-3 8h-3v-4h2v-4z" fill="#e9fffe"/><path d="M583 693v2c-5.487 1.868-10.222 2.236-16 2 5.126-2.669 10.163-4.354 16-4z" fill="#f51725"/><path d="M100 683h3v2h2l1 6-2 1c-4-6.75-4-6.75-4-9z" fill="#fdfcfb"/><path d="M387 672l2 1-1 2v7l-7 1 4-2-.125-2.812C385 675 385 675 387 672z" fill="#f5c0a4"/><path d="M410 653c1.563 1.75 1.563 1.75 3 4-.246 1.984-.246 1.984-1 4l-.535 2.141L410 669c-1.062-1.875-1.062-1.875-2-4l1-2 .563-5.125.254-2.758L410 653z" fill="#fbe1d7"/><path d="M187 650c1.563 1.125 1.563 1.125 3 3-.312 3.188-.312 3.188-1 6h2v4h-2c-2-3-2-3-1.625-6.187L188 654l-2-1 1-3z" fill="#fce2e6"/><path d="M275 657h4c-1.186 3.375-2.276 5.647-5 8-1-1-1-1-1.062-3.562L273 659h2v-2z" fill="#f6ece6"/><path d="M89 643h3c3.429 8.429 3.429 8.429 3 13-1.561-2.341-2.864-4.563-4.125-7.062l-1.07-2.098C89 645 89 645 89 643z" fill="#f7ebe1"/><path d="M317 641l2 2 3-2-1.375 4.813-.773 2.707C319 651 319 651 317 654v-13z" fill="#e52a2e"/><path d="M272 633l8 1v17h-1l-1-14-6-2v-2z" fill="#fed0c3"/><path d="M279 629c1.938.625 1.938.625 4 2 .75 3.125.75 3.125 1 6h-4l-1-8z" fill="#df2223"/><path d="M68 595c3.006 3.006 2.596 5.824 3 10h-4c-1.231-5.415-1.231-5.415-.062-8.375L68 595z" fill="#faf1ef"/><path d="M147 549c2.003 3.004 2.493 4.71 3.125 8.188l.508 2.73L151 562l-5-2 1-11z" fill="#fbd9da"/><path d="M393 557h4v4h-2v6h-2v-10z" fill="#fd1125"/><path d="M437 507c1.765 3.088 2 4.233 2 8h-2v10h-1l-1-12h2v-6z" fill="#f7c6a9"/><path d="M49 435h3v10h-3v-10z" fill="#feecf2"/><path d="M667 417c2.152 3.228 2.201 4.284 2 8h2v4l-4-1v-11z" fill="#f71620"/><path d="M677 417h2v12h-2l-.562-4.875-.316-2.742C676 419 676 419 677 417z" fill="#e61f1d"/><path d="M563 413h2v8h-2l-1 2-1-3-2-1v-2h3l1-4z" fill="#e0201e"/><path d="M429 403h3c.125 7.75.125 7.75-1 10h-2v-10z" fill="#dc2323"/><path d="M671 338c1.409 2.818.509 4.173-.437 7.125l-.871 2.758L669 350l-2-1c-.366-3.938-.302-5.565 2-8.875l2-2.125z" fill="#f9ac97"/><path d="M703 333c.625 1.813.625 1.813 1 4l-2 3-5-1c1.245-3.736 2.634-4.188 6-6z" fill="#d92a2f"/><path d="M185 333h1v8h2l2-5 2 3c-1.25 2-1.25 2-3 4h-4v-10z" fill="#efe8d3"/><path d="M752 309l6 1c-1 3-1 3-4 5h-3l1-6z" fill="#dce1b6"/><path d="M606 268l4 1v2l1.898-.07 2.477-.055 2.461-.07C619 271 619 271 621 273c-3.373.72-6.548 1.237-10 1-2.455-1.754-3.391-3.372-5-6z" fill="#f5cfb3"/><path d="M823 265c2.375.688 2.375.688 5 2 1.313 2.625 1.313 2.625 2 5l-3 1v-2l-4-2v-4z" fill="#fafaf9"/><path d="M359 249h2v2h10v2h-12v-4z" fill="#f81329"/><path d="M791 227l3 2v2h-2v6l-7-5 4-2 1 2 1-5z" fill="#eae0ca"/><path d="M251 229h2c1.125 3.75 1.125 3.75 0 6l-4 1-2-4 4-1v-2z" fill="#dbe2b4"/><path d="M770 195l3 2v2l1.813.75c2.474 1.414 3.621 2.901 5.188 5.25h-3v-2h-2v-2h-5v-6z" fill="#fcece2"/><path d="M888 195h2v2l5 1v7c-2.6-2.51-4.991-4.986-7-8v-2z" fill="#fae5e2"/><path d="M847 145v2h2l-1 5c-2.622-1.049-3.794-1.649-5.25-4.125L842 146c2-1 2-1 5-1z" fill="#e42c33"/><path d="M713 143h5v2h4l.313 1.938L723 149l3 1-2 1-5.625-3.375-3.039-1.961L713 144v-1z" fill="#f7d9cb"/><path d="M343 143h10v2h6v1l-16-1v-2z" fill="#f9f6e6"/><path d="M703 134l5 3v-2h3v5c-4.246 0-6.385-1.818-10-4l2-2z" fill="#f4eae5"/><path d="M723 54l8 4v1h-6l-1 2-2-2c.375-2.625.375-2.625 1-5z" fill="#d63137"/><path d="M699 43c2.438.75 2.438.75 5 2 .813 2.125.813 2.125 1 4h-6l-2-2 2-1v-3z" fill="#dc242e"/><path d="M431 12h8v3l4 1-8 1v-4l-4-1z" fill="#cf3d48"/><path d="M423 983h6v2h4v2c-6.625.25-6.625.25-10-2v-2z" fill="#e5201e"/><path d="M367 957h2v10h-2c-2.215-5.415-2.215-5.415-1.125-8.375L367 957z" fill="#f81222"/><path d="M359 958c4.506 2.192 6.131 4.376 8 9v2h-2v-2h-2v-4h-2v-2h-2v-3z" fill="#f9dad2"/><path d="M590 917h6l-2 4-9-1v-1h5v-2z" fill="#ec1927"/><path d="M591 897v2c-5.769 1.403-11.181.673-17 0v-1c5.71-.74 11.242-1.105 17-1z" fill="#f9e8e0"/><path d="M575 888h1v9h7v1l-11 1v-3l2-1 1-7z" fill="#d65e6d"/><path d="M476 887h1v8h3v3h-7l1-3h2v-8z" fill="#db576c"/><path d="M627 869c2 2 2 2 2.266 4.313L629.25 876l.016 2.688C629 881 629 881 627 883l-2-6h2v-8z" fill="#da2940"/><path d="M649 867c2.19 3.285 2.998 6.207 4 10h-4v-4h-2v-2h2v-4z" fill="#e93144"/><path d="M343 861h2v3h2v3l-10-3v-1h6v-2z" fill="#cf414b"/><path d="M347 846l2 1-2 8h-2v2h-2l1-7h2l1-4z" fill="#e82331"/><path d="M365 853h4l-3 10c-2.178-4.355-2.03-5.466-1-10z" fill="#d72534"/><path d="M692 847l2 4c-3.203 2.834-5.781 3.521-10 4l8-8z" fill="#dc3845"/><path d="M698 835c3.442 2.66 3.995 5.903 5 10l-5-2v-8z" fill="#e22c3e"/><path d="M431 833h12v2l-4.312.5-2.426.281C434 836 434 836 431 836v-3z" fill="#f0fef8"/><path d="M713 821h2l2 8-4 2v-10z" fill="#f5131e"/><path d="M401 815h12v4l-12-3v-1z" fill="#fae7dc"/><path d="M333 803h5v3l2 2-2 1-7-3 2-1v-2z" fill="#f8e3e1"/><path d="M189 787h2v4h4l1 6-3.437-2.875-1.934-1.617C189 791 189 791 188 789l1-2z" fill="#ece4d7"/><path d="M288 766l2 1v2l4 1-2 3h-3v-2h-2l1-5z" fill="#f0fefb"/><path d="M770 733l2 4h-2v2h-3v2l-4-1 7-7z" fill="#fdd5d4"/><path d="M134 725c4.875.875 4.875.875 6 2v6c-4.875-4.625-4.875-4.625-6-8z" fill="#fddbd7"/><path d="M126 713h3v2h4l1 4-4 1-4-7z" fill="#f9e9e4"/><path d="M793 709l1 2-1 2h2v-2h4l-1 4h-6l-1-3 2-3z" fill="#fbf0ec"/><path d="M295 685v2h-2l-1 5-6-2c6.591-5 6.591-5 9-5z" fill="#fbe8ec"/><path d="M503 677l3.813 1.313 2.145.738c2.188 1.016 3.452 2.157 5.043 3.949h-5v-2h-6v-4z" fill="#f9e4df"/><path d="M416 677h8l1 4h-5v-2h-4v-2z" fill="#fa122a"/><path d="M922 669h3c-1.142 4.48-2.43 8.145-5 12-1.124-3.304-.896-5.051.438-8.25l.871-2.141L922 669z" fill="#f2f0dd"/><path d="M617 665h6c-.75 7.75-.75 7.75-3 10v-8l-1 2h-2v-4z" fill="#d72b29"/><path d="M826 660l2 1c-.628 2.929-1.586 5.361-3 8l-4-1 5-8z" fill="#ca3f4c"/><path d="M712 660l1 3h2v2h4v2h-7l-1-6 1-1z" fill="#f61622"/><path d="M484 645h3v17l-2 1 .035-2.922.027-3.828.035-3.797c-.077-2.738-.27-4.872-1.098-7.453z" fill="#fde1de"/><path d="M290 651h2c2 5.75 2 5.75 2 8l-5 1 1-9z" fill="#de2223"/><path d="M943 637l4 3-2 4-2-1-1 4h-2l3-10z" fill="#fbe6e3"/><path d="M723 637h2c.25 7.625.25 7.625-2 11l-2-1 2-10z" fill="#fef3f6"/><path d="M77 621c1.737 3.225 2.891 6.513 4 10h-2v-2l-4-1-1-5 1 2h2v-4z" fill="#f9e1dd"/><path d="M952 605l2 1c-.75 6.625-.75 6.625-3 10l-2-1 3-10z" fill="#da3c46"/><path d="M853 607l2 1-4 8-3-3c.313-2.187.313-2.187 1-4h4v-2z" fill="#f3eae4"/><path d="M528 553h7v4l-4-2-2 7h-1v-9z" fill="#d23e47"/><path d="M714 531h1v6h3l-1 4h-4c-.125-6.625-.125-6.625 1-10z" fill="#f4181c"/><path d="M536 502l-4 7-2-3-3-2c5.625-3.125 5.625-3.125 9-2z" fill="#fad7d6"/><path d="M666 417h1c.304 9.12.304 9.12-2 12l-4 1 5-13z" fill="#e42d3d"/><path d="M439 397l2 3c-.68 2.699-.68 2.699-1.875 5.688l-1.18 3.012L437 411h-1v-8h2l-.062-2.437C438 398 438 398 439 397z" fill="#df2f41"/><path d="M483 365h2l-1 9-3 1v-6h2v-4z" fill="#fa151d"/><path d="M478 353h3v2l6 1-2 1v2h-3v-2l-4-1v-3z" fill="#d62d2f"/><path d="M280 341l3 1 .125 4.75.07 2.672C283 352 283 352 281 356l-1-15z" fill="#e82841"/><path d="M521 333h3c1.129 5.361 1.097 10.553 1 16h-1l-3-16z" fill="#da273d"/><path d="M588 325c1.206 2.332 2.165 4.496 3 7l-2 1v-2c-3.726 1.119-3.726 1.119-6 4h-2c1.417-3.423 3.068-4.825 6-7l1-3z" fill="#d43f45"/><path d="M73 319h2l-.875 4.313-.492 2.426C73 328 73 328 71 331l-.125-4.875-.07-2.742C71 321 71 321 73 319z" fill="#f8e7dd"/><path d="M418.625 308.875L421 309l1 4h-4v-2h-2v2h-2l-1 2c.761-3.803 1.348-5.921 5.625-6.125z" fill="#d93648"/><path d="M598 258h2l1 9-3 1c-1.491-2.982-1.119-5.716-1-9l1-1z" fill="#cb3744"/><path d="M790 260h2c-.75 5.75-.75 5.75-3 8l-2-1v2l-2-1 2.375-4 1.336-2.25L790 260z" fill="#cf413c"/><path d="M823 261h3l5 9-3-1v-2l-4-1-1-5z" fill="#f0e9dd"/><path d="M106 252l2 1v2h-2v6l-5 1 5-10z" fill="#fce3df"/><path d="M217 231l2 1-5 7-4-2c3.625-4.875 3.625-4.875 7-6z" fill="#d23847"/><path d="M904 226c3.813 3.287 5.23 6.397 7 11-3 0-3 0-4.625-1.562-1.754-3.11-2.036-5.911-2.375-9.437z" fill="#f9dad5"/><path d="M755 214h1v6l-8 1-1-6 4 2v2h4v-5z" fill="#f9f6e5"/><path d="M620 205h5v3l2 1v2l4 1c-4.243.364-6.627-.377-10-3-.812-2.187-.812-2.187-1-4z" fill="#ede6d5"/><path d="M145 191c1.48 2.959.848 4.868 0 8-1.875 1.438-1.875 1.438-4 2l-3-1 7-9z" fill="#fbe2d9"/><path d="M177 145l3 1-10 10-1-3 1.875-.75c2.476-1.456 3.076-2.628 4.125-5.25h2v-2z" fill="#f3e7d8"/><path d="M313 135h2v2h6c-2.052 2.248-3.007 3.002-6 4l-3-2 1-4z" fill="#fbebec"/><path d="M815 127h2v2h2v2l4 1c-1 1-1 1-4.562 1.063L815 133v-6z" fill="#eefefd"/><path d="M668 119l4 2-2 1v3l-9-3v-1h7v-2z" fill="#d63940"/><path d="M609 103l12 3v1h-12v-4z" fill="#fde7de"/><path d="M425.688 97.438l2.449.309L430 98v1h-6v2l-6-1v-2c3.095-1.032 4.526-.975 7.688-.562z" fill="#ed191d"/><path d="M260 79l2 1-1 3 2 1-5 3-2-5 4-3z" fill="#dd303a"/><path d="M263 77h4l-2 6h-4c.875-4.875.875-4.875 2-6z" fill="#e72431"/><path d="M717 53h5c1 1 1 1 1.063 3.563L723 59l-5-1-1-5z" fill="#ea2225"/><path d="M345 37v2h6c-2.622 2.154-4.644 3.401-8 4v-4l-3-1c2-1 2-1 5-1z" fill="#d7353c"/><path d="M657 28c5.65.601 10.662 2.075 16 4v1h-7v-1l-3.375-.875C659 30 659 30 657 28z" fill="#d02f30"/><path d="M528 1005h3v8h-3c-.981-3.053-.981-4.947 0-8z" fill="#f7162a"/><path d="M626 1005h4v2h-2l-.875 2.438C626 1012 626 1012 624 1013l-2-2c1.75-3 1.75-3 4-6z" fill="#ec2b35"/><path d="M711 965c3.114 1.557 3.727 3.847 5 7-.312 2.875-.312 2.875-1 5-2-3.75-2-3.75-2-6h-2v-6z" fill="#fbe1db"/><path d="M398 913l13 3v1h-12l-1-4z" fill="#ffe8e3"/><path d="M407 912l13 1c-3.421 2.281-4.682 2.219-8.687 2.125l-3.012-.055L406 915l1-3z" fill="#ec1524"/><path d="M611.188 910.813l3.293.082L617 911c-3.266 1.913-5.994 2.357-9.75 2.625l-2.984.227L602 914c2.645-3.536 4.947-3.324 9.188-3.187z" fill="#fdd1cf"/><path d="M384 909l13 3v1h-12l-1-4z" fill="#fadcd8"/><path d="M508 889l2 1-.125 3.25c.114 3.407.338 4.957 2.125 7.75-3.875-.875-3.875-.875-5-2-.136-3.663-.165-6.506 1-10z" fill="#fad4cd"/><path d="M552 891l1 2 4-2-2 5 4 2-9-1 2-6z" fill="#f51829"/><path d="M457 867h6v4h-6v-4z" fill="#f51527"/><path d="M519 867h10v2l-13 2v-2h3v-2z" fill="#fde3df"/><path d="M743 863v2l3 1-7 3v-2l-3-1c4.75-3 4.75-3 7-3z" fill="#d82c34"/><path d="M688.285 864.902l2.777.035 2.785.027L696 865c-2.172 2.457-2.639 2.963-6.062 3.313C687 868 687 868 685 866c1-1 1-1 3.285-1.098z" fill="#d12d3d"/><path d="M734 846l1 3c-2 2-2 2-5.125 2.125L727 851c1-3 1-3 2.938-4.187C732 846 732 846 734 846z" fill="#feede9"/><path d="M697 845h2v2h2l3 3-1 3h-2v-2h-3l-1-6z" fill="#dc221b"/><path d="M671 839h3l1 10-1-2h-2c-1.354-2.709-1.065-5.009-1-8z" fill="#f0fef7"/><path d="M684 835l1 2h6l1 4-1.703-1.023c-2.694-1.145-4.177-1.024-7.047-.602l-2.422.336L679 840l5-5z" fill="#d7363f"/><path d="M717 835h5l-1 4h-4v2h-2v-4h2v-2z" fill="#fa1327"/><path d="M797 825l2 1-2 3 2 1-6 4c-.25-2.25-.25-2.25 0-5 2-2.312 2-2.312 4-4z" fill="#d63c44"/><path d="M406 823l1.758.402c4.4.995 8.781 1.911 13.242 2.598v1h-12v-2l-3-1v-1z" fill="#fbe5dc"/><path d="M809 809h8c-1.187 2-1.187 2-3 4-2.687.25-2.687.25-5 0v-4z" fill="#f4ede4"/><path d="M653 806v3l2 1c-2.709 1.354-5.009 1.065-8 1v-3c3.75-2 3.75-2 6-2z" fill="#de262a"/><path d="M371 805l4 2h-2v4c-5.75-1.75-5.75-1.75-8-4h6v-2z" fill="#dd363e"/><path d="M860 766l2 1c-.312 2.375-.312 2.375-1 5l-3 2-1-2-2-1 5-5z" fill="#e0374b"/><path d="M866 761l3 1-6 7-2-4c2.313-2.062 2.313-2.062 5-4z" fill="#de2532"/><path d="M256 737l3.938 2.875 2.215 1.617C264 743 264 743 265 745h-4v-2h-3c-1.687-2.5-1.687-2.5-3-5l1-1z" fill="#f9ebdc"/><path d="M364 725c0 3 0 3-1 6l-6 2c1.012-3.403 1.648-4.757 4.625-6.812L364 725z" fill="#faf6e6"/><path d="M342 685l1 3c-1 1-1 1-2.858 1.114l-2.396-.016-2.588-.01-2.721-.025-2.732-.014L323 689v-1l3.395-.148 4.418-.227 2.236-.094c3.77-.205 5.748-.396 8.951-2.531z" fill="#faa18c"/><path d="M796 669h3c-.473 4.255-2.925 6.225-6 9l-2 1v-4l4-1 1-5z" fill="#e8e3ce"/><path d="M502 663h1l.625 4.25.352 2.391c.027 2.681-.611 4.086-1.977 6.359v-3h-2c.537-3.377 1.111-6.697 2-10z" fill="#f2d3d8"/><path d="M433 654h3c.077 4.516.102 8.591-1 13h-1l-1-13z" fill="#f7cfcc"/><path d="M523 633h1l3 12h-2v-2h-5v-2h3v-8z" fill="#d83440"/><path d="M339 625c2 2 2 2 2.125 5.125L341 633h-4v2l-2-1 1.438-2.25c1.341-2.361 2.075-4.116 2.563-6.75z" fill="#e7c8a5"/><path d="M690 615h1v6h2v10l-2-4 1-2h-2v-10z" fill="#ce2b2d"/><path d="M497 605h2v4h4v6h-2l-2-3.875-1.125-2.18C497 607 497 607 497 605z" fill="#d52f39"/><path d="M838 608h1c.25 2.25.25 2.25 0 5l-4 4c-.787 2.138-.787 2.138-1 4h-3v-2h2l1-6h2l2-5z" fill="#fbf7e6"/><path d="M393 607h2v10h2l-2 4c-1.971-4.927-2.18-8.78-2-14z" fill="#f6c8ab"/><path d="M956 601c1.014 3.621 1.499 7.278 2 11l-1-2h-2v3h-2l.938-4.875.527-2.742C955 603 955 603 956 601z" fill="#fcdad9"/><path d="M960 578h3l-2 11-1-2h-2l2-9z" fill="#df5068"/><path d="M427 489h3c1.607 3.215 1.057 6.436 1 10h-2v-6h-2v-4z" fill="#fb1223"/><path d="M437 477h4v4l-5 3-2-5h3v-2z" fill="#feeff5"/><path d="M450 471h5l-3 9c-2.29-3.435-2.178-4.985-2-9z" fill="#fbe8e5"/><path d="M364 445h3v8h-4l1-8z" fill="#f81725"/><path d="M355 447h2l.625 5.875.352 3.305L358 459l-2 2v-8h-2l1-6z" fill="#f7d4b3"/><path d="M447 404c3.536 1.911 5.79 3.626 8 7l-4 1v-3h-4v-5z" fill="#f9e6e1"/><path d="M524 375c2 1 2 1 3 2l.063 4.563-.027 2.504L527 386l-2-1c-.668-2.031-.668-2.031-1.187-4.5l-.543-2.469L523 376l1-1z" fill="#fcf7e9"/><path d="M255 334h1c1.333 10.558 1.333 10.558 0 15h-1c-.953-4.767-1.164-9.16-1-14l1-1z" fill="#e62f43"/><path d="M74 327h1l.125 4.875.07 2.742C75 337 75 337 73 339h-2l3-12z" fill="#fee3e8"/><path d="M349 322l2 1v5l-3 1v4h-3l2-6h2v-5z" fill="#f91428"/><path d="M855 317c2.686 2.686 3.06 5.376 4 9h-4l-1 2-1-3h2v-8z" fill="#fbe6e1"/><path d="M425 307h1v10l-4-1-1-7h2v4h2v-6z" fill="#f9d3d1"/><path d="M951 306v11c-2.19-3.285-2.998-6.207-4-10 2-1 2-1 4-1z" fill="#fbebea"/><path d="M789 307h2v6h-2v4h-3l1-6h2v-4z" fill="#f7d7b4"/><path d="M175 291h3l-4 10-3-2v-2h2v-4h2v-2z" fill="#fbe6e0"/><path d="M92 279h1l1 6h-2v5l-4 1 4-12z" fill="#fee2e2"/><path d="M407 281h2l1 4h3v4h-4v-4h-2v-4z" fill="#effefb"/><path d="M778 270c.911 3.073 1.089 5.801 1 9h-4v-3l-3-1 2.438-.812L777 273l1-3z" fill="#e92b33"/><path d="M930 268c2.322 2.85 3.939 5.464 5 9-.453 2.156-.453 2.156-1 4l-2.562-4.812-1.441-2.707C929 271 929 271 930 268z" fill="#db3e5d"/><path d="M256 256v13h-1l-1-10-3 4v-6c3.875-1 3.875-1 5-1z" fill="#f2e9d7"/><path d="M789 214c4.875 4.75 4.875 4.75 6 7h-7l1-7z" fill="#f9e4d9"/><path d="M772 210c3.579 1.652 6.748 3.783 10 6l-4 1v-2h-3v-2h-5l2-3z" fill="#ece1c4"/><path d="M752 197c3.438 1.528 6.19 3.502 9 6v2h-2v-2h-3v-2h-5l1-4z" fill="#eaddc8"/><path d="M156 176c-.573 3.869-2.39 6.152-5 9h-2c.469-4.217 2.054-9 7-9z" fill="#e8223c"/><path d="M151 173l4 1-8 10-2-2 3-1c.733-2.015.733-2.015 1-4h2v-4z" fill="#f9e4d5"/><path d="M309 166l2 1-2 4h-2v2h-5c1.333-4 3.496-4.838 7-7z" fill="#e2e3c8"/><path d="M744 165l9 2v6l-3.937-2.875-2.215-1.617C745 167 745 167 744 165z" fill="#f8d7d2"/><path d="M859 161c2.993 1.098 3.846 1.677 5.25 4.625L865 168l-6-1-1-5 1-1z" fill="#ed202f"/><path d="M847 159h3l.313 1.938L851 163l3 1c-1 1-1 1-3.5 1.125C848 165 848 165 847 164v-5z" fill="#ebfdfa"/><path d="M836 145c3.674.306 4.781.758 7.313 3.563L845 151h-6v-4h-3v-2z" fill="#faeaea"/><path d="M840 137c2.938.25 2.938.25 6 1l2 3h-3l-1 2-5-5 1-1z" fill="#fbeaed"/><path d="M211.688 112.75L214 113l-2 3h-2v2l-5 3c.771-4.316 1.958-7.81 6.688-8.25z" fill="#fbebdd"/><path d="M771 89c4.285 2.307 7.723 4.33 11 8-4.75-.875-4.75-.875-7-2v-2l-3-1-1-3z" fill="#fcebe3"/><path d="M253 85l-1 1.813c-1.208 2.241-1.208 2.241-1 5.188l-7-1c5.8-6 5.8-6 9-6z" fill="#da3237"/><path d="M737 69c4.468.496 5.69.69 9 4h-9v-4z" fill="#fae6e5"/><path d="M306 54v2l-3.875 2-2.18 1.125C298 60 298 60 296 60l-1 2-2-2 5.375-3 3.023-1.687C304 54 304 54 306 54z" fill="#d63f4c"/><path d="M311 52v2l3 1-2 2-6-1v-3c2-1 2-1 5-1z" fill="#e22e30"/><path d="M462 13l-1 2h-3v2l-3 1v-3h-6v-1c4.394-.857 8.526-1.089 13-1z" fill="#f0cfda"/><path d="M680 1011l2 3c-1 1-1 1-3.504 1.098l-3.059-.035-3.066-.027L670 1015v-2h10v-2z" fill="#e2211a"/><path d="M319 961h2v2h3l1 4h-4v-2h-3l1-4z" fill="#f9151f"/><path d="M646 910l-1 3h-12c9.5-4.75 9.5-4.75 13-3z" fill="#f5d9d1"/><path d="M512 901h10v2h2v4h-3l-1-3-8-1v-2z" fill="#fee8e9"/><path d="M568 893l6 2c-2.872 2.703-4.31 3.948-8.312 4.25L563 899l1.938-1.312c2.33-1.6 2.33-1.6 3.063-4.687z" fill="#f6cbd0"/><path d="M374 897l1 4-11-3v-1c3.695-.95 6.305-.95 10 0z" fill="#f7dbd2"/><path d="M700 891l-1.937.875c-2.215.953-2.215.953-3.062 3.125-1.812.75-1.812.75-4 1l-4-2 4.25-2.062 2.391-1.16c2.619-.863 3.808-.708 6.359.223z" fill="#f8e0d8"/><path d="M474 885h2v10l-1-2h-2v-7l1-1z" fill="#d3232e"/><path d="M517 871h2v4l-3 1-1 3h-4c.188-1.875.188-1.875 1-4 2.563-1.25 2.563-1.25 5-2v-2z" fill="#f71529"/><path d="M291 871l7 3v2c-1.812.688-1.812.688-4 1-1.75-1.25-1.75-1.25-3-3v-3z" fill="#f8eee8"/><path d="M711 869c6.75.875 6.75.875 9 2v2h-7l-2-4z" fill="#eafdfa"/><path d="M654 863h1v10h-2l-1 2-1-4h2l-.062-3.437C653 864 653 864 654 863z" fill="#fdf1f8"/><path d="M755 855l1 2 3 1-6 3v-2l-4-1 6-3z" fill="#cf3c3e"/><path d="M378 855h3l-3 12h-1c-.143-8.571-.143-8.571 1-12z" fill="#fee7de"/><path d="M211 811l5 3-1 4c-3.161-1.37-3.993-1.989-6-5h2v-2z" fill="#d3404b"/><path d="M151 753c3.438 1.188 3.438 1.188 7 3 .938 2.688.938 2.688 1 5-3.362-1.441-5.592-3.248-8-6v-2z" fill="#e73646"/><path d="M148 746c6.571 5 6.571 5 8 10-3.725-2.105-5.68-3.243-7.375-7.25L148 746z" fill="#d02a35"/><path d="M761 741c-1.049 2.622-1.649 3.794-4.125 5.25L755 747v-2l-2-1c3.061-2.624 3.732-3 8-3z" fill="#e12f46"/><path d="M512 675h7v3l-7 1v-4z" fill="#e22122"/><path d="M820 669h3c-1.312 3.937-2.919 6.227-6 9-.252-3.023-.204-4.64 1.313-7.312L820 669z" fill="#de2f31"/><path d="M361 664h2v5h2c-1.074 2.915-1.778 4.778-4 7v-12z" fill="#f5cfb0"/><path d="M394.625 652.875L397 653l-1.937.313L393 654c-1.105 3.315-1.321 6.204-1.562 9.688l-.254 3.574L391 670h-1l-.125-7.375-.051-2.117L390 655c2-2 2-2 4.625-2.125z" fill="#f0b495"/><path d="M521 643h2c1.316 3.62 2 6.096 2 10h-3l-1-10z" fill="#df2222"/><path d="M333 637c2.108 4.216 2.177 6.398 2 11h-2l-1 3 1-14z" fill="#d42f32"/><path d="M441 637h2v8l-4 2 2-10z" fill="#f9ded7"/><path d="M477 621h2c1.125 7.75 1.125 7.75 0 10l-3-1 1-9z" fill="#d72626"/><path d="M398 583h1l.188 6.313.105 3.551C399 596 399 596 396 599l2-16z" fill="#e7ab90"/><path d="M455 589c2 1 2 1 3.125 3.313C459 595 459 595 459 599h-2v-2h-2v-8z" fill="#e62730"/><path d="M305 580l2 1c1.506 6.141 1.506 6.141-.437 9.438L305 592c-.928-4.333-.928-7.667 0-12z" fill="#dedcb8"/><path d="M525 557h2v8l-4 1 2-9z" fill="#f8161e"/><path d="M689 557h3l1 13h-2l-2-13z" fill="#de293b"/><path d="M268 407h3v6h-2l-1 4c-1.238-3.576-.749-6.337 0-10z" fill="#f61527"/><path d="M511 397l2 1v7h-4c.875-5.75.875-5.75 2-8z" fill="#fa1523"/><path d="M573 385l6 1-1 3h-7l-1-2h3v-2z" fill="#f81623"/><path d="M745 369h2c.213 4.468-.409 7.823-2 12l-2-1 2-11z" fill="#f5151f"/><path d="M558 367h4c-1.135 3.291-1.993 3.996-5.125 5.75L554 374l1-5h3v-2z" fill="#effcf3"/><path d="M441 367l1 7-4.395-3.906c-1.695-1.375-1.695-1.375-4.605-1.094v-2c5.75-1.125 5.75-1.125 8 0z" fill="#d9333a"/><path d="M561 363c6.625-.25 6.625-.25 10 2v2h-6v-2h-4v-2z" fill="#f0fdf6"/><path d="M446 355h4v4h2l1-2v7h-2l-5-9z" fill="#fae2dd"/><path d="M166 321h1c.178 4.548-.002 7.879-2 12h-2c.508-4.318 1.197-8.033 3-12z" fill="#fad9d8"/><path d="M170 301l3 1-5 11c-1.015-4.061-1.054-4.67.438-8.25l.871-2.141L170 301z" fill="#faf3e1"/><path d="M363 304l2 1-3 12h-1c-.167-4.921-.248-8.503 2-13z" fill="#e7273c"/><path d="M665 301h2c-1.857 7.571-1.857 7.571-5 10-1-1-1-1-1.062-3.562L661 305h4v-4z" fill="#efceab"/><path d="M845 301h2v4h2v4h-3c-2-3-2-3-1.625-5.687L845 301z" fill="#effbf9"/><path d="M188 277l2 3c-.562 2.563-.562 2.563-2 5-2.625 1.313-2.625 1.313-5 2 1.335-3.594 2.96-6.755 5-10z" fill="#f3e9e6"/><path d="M272 232l3 1c-.907 4.687-1.955 9.342-3 14h-1v-11l2-1-1-3z" fill="#dd4f5d"/><path d="M113 227h4c-1.335 3.594-2.96 6.755-5 10l-2-3 3-1v-6z" fill="#f7e8df"/><path d="M759 214l8 1v6c-5.75-3.625-5.75-3.625-8-7z" fill="#e7e3c8"/><path d="M787 205h3v2l5 1-1 5c-2.648-2.578-4.944-4.916-7-8z" fill="#f9e5dd"/><path d="M740 179h2v2h3l1 4h-2l-1 2c-2.565-2.565-2.54-4.477-3-8z" fill="#fafce9"/><path d="M350 129h6v4h-7l1-4z" fill="#edfef8"/><path d="M831 127l3 1-1 3 5 1-1 3c-3.367-1.393-4.986-2.979-7-6l1-2z" fill="#eee1da"/><path d="M681 120l-3 3c-5.75-1.75-5.75-1.75-8-4 7.625-1.25 7.625-1.25 11 1z" fill="#fbe4e7"/><path d="M637 109c4.087-.24 7.177.577 11 2l-1 2c-3.947.179-6.598.094-10-2v-2z" fill="#f51629"/><path d="M240 88v5l-9 2c6.816-7 6.816-7 9-7z" fill="#fdfefe"/><path d="M286 64l5 2c-1.187 1.5-1.187 1.5-3 3-2.687.188-2.687.188-5 0v-2h2l1-3z" fill="#e11f20"/><path d="M314 55c2 1 2 1 4 4-3.982 1.054-6.982.841-11 0 2.334-1.556 4.427-2.921 7-4z" fill="#f8e5e2"/><path d="M342 43l2 1-1.875.25c-2.309.563-2.309.563-3.375 2.813L338 49h-5v-2l4.375-2.062 2.461-1.16L342 43z" fill="#feebe9"/><path d="M407 24c-3.576 2.384-5.983 3.131-10.187 3.063L393 27c2.606-1.737 4.072-2.45 7-3.187l2.063-.543C404 23 404 23 407 24z" fill="#fcdeda"/><path d="M623 1005h3c-1.309 3.927-2.79 6.356-6 9-2.25.75-2.25.75-4 1v-2h3v-2h2v-2h2v-4z" fill="#fde0dd"/><path d="M5 999c2.875-.187 2.875-.187 6 0l2 3-8 1v-4z" fill="#db1e28"/><path d="M706 953c4.557.438 7.577.85 11 4h-9l-2-4z" fill="#d63244"/><path d="M406 953h6l1 4h-2l-1 2-4-4v-2z" fill="#df2e32"/><path d="M426 885l2 3-5 1v2l-5-1c2.409-2.409 4.943-3.538 8-5z" fill="#f9f4e4"/><path d="M405 871h5v4h-3v2h-2v-6z" fill="#da2322"/><path d="M669 871h9v2l-8 2-1-4z" fill="#d52939"/><path d="M271 859l3.938 1.875 2.215 1.055C279 863 279 863 280 865h-6v-2h-2l-1-4z" fill="#fddcdb"/><path d="M425 857h6v4h2l-1 8h-1l-.297-1.863c-.836-5.131-.836-5.131-3.828-9.199L425 857z" fill="#f9e3de"/><path d="M353 857h2v6h-6v-2h2v-2h2v-2z" fill="#ebfcf9"/><path d="M392 854l9 1v2c-3.695.95-6.305.95-10 0l1-3z" fill="#f4dad4"/><path d="M581 849h2v10h-5l2-1c.467-2.126.467-2.126.625-4.562l.227-2.504L581 849z" fill="#f2dfd7"/><path d="M669 851h3c1.354 2.709 1.065 5.009 1 8h-2c-1.765-3.088-2-4.233-2-8z" fill="#ecfffc"/><path d="M363 845h4v8h-2v-4h-2v-4z" fill="#e81c20"/><path d="M775 843v2l2 1-6 4v-3l-2-1c3.75-3 3.75-3 6-3z" fill="#d1343d"/><path d="M791 837h6l-5 5h-3l2-5z" fill="#f5fdfe"/><path d="M326 829h3l-1.375 4.375-.773 2.461C326 838 326 838 324 840v-7h2v-4z" fill="#da2835"/><path d="M231 827c6.875 3.75 6.875 3.75 8 6h-2l1 3c-1.937-.687-1.937-.687-4-2-.75-2.625-.75-2.625-1-5h-2v-2z" fill="#cf3f49"/><path d="M339 793h6v2h2v2l-7-1-1-3z" fill="#e61c2a"/><path d="M722.688 774.375L725 775v4h-4v-2l-4-1c3-2 3-2 5.688-1.625z" fill="#fdebee"/><path d="M301 767h6l.313 1.938L308 771l3 1c-4.724 0-6.299-1.224-10-4v-1z" fill="#f7dcd9"/><path d="M163 757h4v4h-2l-1 3-2-2c.375-2.625.375-2.625 1-5z" fill="#f6f8ee"/><path d="M779 713h6c-1.312 2.5-1.312 2.5-3 5h-3v-5z" fill="#f6eae0"/><path d="M922 685h4c-1.249 3.459-2.675 6.147-5 9l-1-5h2v-4z" fill="#fdfcf9"/><path d="M267 675l2 1-2 12 2 1-4-1-.125-5.375-.07-3.023C265 677 265 677 267 675z" fill="#fbeee7"/><path d="M929 669c1.125 1.75 1.125 1.75 2 4-.875 2.25-.875 2.25-2 4h-2v2h-2c1.109-3.487 2.263-6.775 4-10z" fill="#f1e7dc"/><path d="M415 675h4v2h-3v2h4v2l-7-1v-3h2v-2z" fill="#e12735"/><path d="M528 653h3c2 2 2 2 2.125 5.625L533 662l-3 1v-8h-2v-2z" fill="#e51923"/><path d="M363 641h4v6h-4v-6z" fill="#f61b2f"/><path d="M939 639l2 2c-.307 2.943-.673 5.345-2 8h-2c.458-3.469.891-6.674 2-10z" fill="#ef2648"/><path d="M396 637h1l.563 6.875.316 3.867C398 651 398 651 397 653h-2l1-16z" fill="#e32831"/><path d="M483 639h3c1.125 3.75 1.125 3.75 0 6l-4-1 1-5z" fill="#f9f1ef"/><path d="M949 615h2c-.537 3.377-1.111 6.697-2 10h-2c-.179-3.947-.094-6.598 2-10z" fill="#e02935"/><path d="M67 585h2c1.316 3.62 2 6.096 2 10h-2c-1.316-3.62-2-6.096-2-10z" fill="#d82d3e"/><path d="M364 585h3v4h-2v6h-2l1-10z" fill="#fa0e28"/><path d="M154 570c3.442 2.66 3.995 5.903 5 10l-3 1c-1.193-3.877-2-6.916-2-11z" fill="#d13c48"/><path d="M497 557h3l1 10h-2v-6h-2v-4z" fill="#db222d"/><path d="M525 533c2.993 1.098 3.846 1.677 5.25 4.625L531 540l-6-1v-6z" fill="#f91222"/><path d="M671 517h4l1 8h-3l-2-8z" fill="#eafffc"/><path d="M645 513c1.245 2.491.777 3.411 0 6h-2l-1 4h-2c.503-4.401 2.088-6.712 5-10z" fill="#fcd5d8"/><path d="M556 503c2.83 3.996 1.762 7.427 1 12h-2l-.062-4.875-.035-2.742C555 505 555 505 556 503z" fill="#fc1121"/><path d="M436 486h1v7l-6 1 1-5 1 2h3v-5z" fill="#d4312b"/><path d="M433 483h2c1.354 2.709 1.065 5.009 1 8h-3l-1-7 1-1z" fill="#fb1126"/><path d="M353 455h3l1 10-2-4h-2v-6z" fill="#dbe4b2"/><path d="M461 449h2l-1 12h-3l2-12z" fill="#d23741"/><path d="M653 453h2v2h4v2h-2v4h-2v-4h-2v-4z" fill="#f51628"/><path d="M569 391h4v6h-4v-6z" fill="#f91523"/><path d="M591 378h1l1 9h-3l-2-6h3v-3z" fill="#fcc2c4"/><path d="M530 373h3v8h-2l-2-2 1-6z" fill="#e3201f"/><path d="M590 369h3v2h-2v2h2v8c-2.946-4.419-3.099-6.678-3-12z" fill="#e32740"/><path d="M336 354l3 1v5l-4 1v-6l1-1z" fill="#f61628"/><path d="M692 333h6v2h-3v4h-3c-1-3-1-3 0-6z" fill="#e1e2b4"/><path d="M648 310l3 1 1 11c-3.503-4.67-3.534-6.414-4-12z" fill="#f5c6a5"/><path d="M617 295c2.743 3.2 4.63 6.005 6 10h-2v-2h-3c-.826-2.892-1-4.887-1-8z" fill="#efc8a3"/><path d="M671 291c2 2 2 2 2.195 3.945L673 301h-2v-4h-2l2-6z" fill="#dd2b33"/><path d="M846 291l5 1-1 7c-2.154-2.622-3.401-4.644-4-8z" fill="#fdede0"/><path d="M635 285c2.748 3.402 6 7.485 6 12h-2l-2-3.75-1.125-2.109C635 289 635 289 635 285z" fill="#d23534"/><path d="M444 281l1 6h-3l-2-2h-3l1-3c2.1-.745 3.774-1 6-1z" fill="#e01c1c"/><path d="M357 240l5 1 1 2-3 2-1 2h-2v-7z" fill="#de2e45"/><path d="M802 236l6 1 1 7-3-1-2-6-2-1z" fill="#fbfafd"/><path d="M245 219h2c-1.559 3.826-3.954 6.251-7 9l-3 1v-2h2l.75-1.875c1.456-2.476 2.628-3.076 5.25-4.125v-2z" fill="#e9e7d4"/><path d="M235 213c1 4 1 4 0 7l-4-1v2l-2-1 6-7z" fill="#fce8de"/><path d="M767 185c2.843-.231 4.461-.359 6.875 1.25C775 188 775 188 774.57 190.109L774 192l-3.5-2.937-1.969-1.652L767 186v-1z" fill="#faded0"/><path d="M251 175h6v4h-6v-4z" fill="#eefefc"/><path d="M832 144l4 1v2h2v2h-7l1-5z" fill="#ecfefb"/><path d="M314 141h6l1 2-8 3 1-5z" fill="#e2242a"/><path d="M701 139c5.75.875 5.75.875 8 2v2c-5.75.125-5.75.125-8-1v-3z" fill="#ea1823"/><path d="M693.063 132.938L696 133l1 3c-2.312.688-2.312.688-5 1-1.812-1.437-1.812-1.437-3-3 1-1 1-1 4.063-1.062z" fill="#e81d23"/><path d="M375 117v4h-2l1 3h-2v-3h-5c5.217-4 5.217-4 8-4z" fill="#f8e8e4"/><path d="M471 103h11v1l-13 3v-2h2v-2z" fill="#fdf8ea"/><path d="M245 95l2 3-2 3c-3.125.188-3.125.188-6 0l6-6z" fill="#f5e7e0"/><path d="M268 74l2 1-1 2 4 1c-4.75 3-4.75 3-7 3l1-4-2-1 3-2z" fill="#d73641"/><path d="M350 31h9c-3.673 2.448-6.546 4-11 4l2-4z" fill="#f9e8dc"/><path d="M709 1009l2 1-2 5h-8c2.159-2.159 4.38-3.455 7-5l1-1z" fill="#da4043"/><path d="M531 1005h2l1 10h-4l1-10z" fill="#db202d"/><path d="M313 959h3c-.498 3.688-1.101 5.605-4 8-1.208-3.623-.543-4.641 1-8z" fill="#f4f0ed"/><path d="M624 912v3h-9v-2c5.625-2.125 5.625-2.125 9-1z" fill="#f0152a"/><path d="M517 891h2l2 6h-5c-.625-1.875-.625-1.875-1-4l2-2z" fill="#e42f3c"/><path d="M557 890h2l2 3c3.584.25 3.584.25 7 0l-1 3-9-1-1-5z" fill="#cb3637"/><path d="M487 883h2c1.125 6.625 1.125 6.625 0 10v-2h-2v-8z" fill="#ec3b40"/><path d="M708 883v3l-8 1 1-3c3-1 3-1 7-1z" fill="#e1222d"/><path d="M677 873l-1 4h-10c3.389-2.259 6.848-4 11-4z" fill="#f4d6d2"/><path d="M553 869h2v2h3v11h-1v-9h-4v-4z" fill="#da3f3c"/><path d="M364 866h1v5h2v3c-5.75-.75-5.75-.75-8-3l4-1 1-4z" fill="#d44e54"/><path d="M571 869l4 2v10h-1l-.312-3.375L573 874l-3-2 1-3z" fill="#d12f41"/><path d="M463 866l3 1v3h2v9h-1v-8h-4v-5z" fill="#efaaa5"/><path d="M279 865c3.688.498 5.605 1.101 8 4-3.287.8-4.71 1.097-8 0v-4z" fill="#fdefee"/><path d="M756 859l1 2h-2l-1 5-2-1c-2.098.399-2.098.399-4 1 1.464-4.392 3.978-4.879 8-7z" fill="#f9e2dc"/><path d="M329 855h6l-1 4h-5v-4z" fill="#fbe1dc"/><path d="M680 851h5l-2 4h-2v2h-3l2-6z" fill="#ebfdf8"/><path d="M367 841c2.874 2.335 3.925 3.374 4.375 7.125C371 851 371 851 369 853l-.148-2.152-.227-2.785-.211-2.777L368 843l-2-1 1-1z" fill="#d5414b"/><path d="M695 827h2v2h4l1 5-3-1v-2h-4v-4z" fill="#e9fdf7"/><path d="M806 823c.934 3.01 1.044 3.867 0 7l-6-1 6-6z" fill="#fbe1db"/><path d="M699 813c2.799 2.528 4.458 4.204 5 8h-5v-8z" fill="#f4dbd0"/><path d="M679 787h2v2h2v2h-10l1-2h5v-2z" fill="#effef9"/><path d="M852 779c-1.441 3.362-3.248 5.592-6 8h-2c.34-3.175 1.025-4.023 3.438-6.25C850 779 850 779 852 779z" fill="#ec172c"/><path d="M851 772l4 1-7 6-1-2 4-5z" fill="#f9e4de"/><path d="M728 758l7 1c-2.363 2.526-3.665 3.888-7 5l-1-5 1-1z" fill="#fae1de"/><path d="M247 727c3.486.646 6.125 1.924 9 4v3c-4.419-1.35-6.343-3.261-9-7z" fill="#d7273a"/><path d="M367 714l3 1c.23 3.367.339 5.414-1.375 8.375L367 725h-2l1-4h2c.151-3.629.151-3.629-1-7z" fill="#e9e3cd"/><path d="M910 697l3 1c-.564 3.27-1.5 4.826-4 7-.931-2.606-1.149-3.642-.062-6.25L910 697z" fill="#e42a31"/><path d="M449 677h5v2h-2v2l-5 2c.506-2.169 1-4 2-6z" fill="#f0fefb"/><path d="M559 663h4v6l-4-1v-5z" fill="#e9fdf5"/><path d="M481 659h3c.193 4.824-.243 8.496-2 13-1.005-3.015-1.103-5.042-1.062-8.187l.027-2.73L481 659z" fill="#e02935"/><path d="M812 649l1 2-1 2h3v4h-4c-.931-2.606-1.149-3.642-.062-6.25L812 649z" fill="#f1f9ed"/><path d="M409 645c3.324 4.335 4.12 6.471 4 12-3.538-3.692-3.591-7.094-4-12z" fill="#d72f3c"/><path d="M497 607c3.461 5.191 4.174 6.778 3 13h-1c-1.452-4.537-2.235-8.181-2-13z" fill="#fedada"/><path d="M68 603l1 2h2v10c-2.024-3.035-2.321-4.194-2.625-7.687l-.227-2.449L68 603z" fill="#fffeff"/><path d="M521 513c3.538 3.692 3.591 7.094 4 12h-2c-1.292-4.12-2.263-7.668-2-12z" fill="#ed2d4a"/><path d="M554 509h1l2 10-4 1c-.143-7.429-.143-7.429 1-11z" fill="#dd241d"/><path d="M338 466c3.81 2.771 4.068 6.629 5 11h-3l-.148-1.934-.227-2.504-.211-2.496L339 468l-2-1 1-1z" fill="#d43434"/><path d="M351 465c1.532 4.084.631 7.795 0 12h-2l-.125-4.312-.07-2.426C349 468 349 468 351 465z" fill="#f1d9ba"/><path d="M527 445h4v6h-4v-6z" fill="#e31f1c"/><path d="M345 436c3 3 3 3 3.188 6.188L348 445h-3v-9z" fill="#fa1327"/><path d="M344 425c1.875.25 1.875.25 4 1 1.25 2.063 1.25 2.063 2 4l-3 2c-3-4.75-3-4.75-3-7z" fill="#edcfb0"/><path d="M451 392l4 2-1 3h-7l1-4 2 1 1-2z" fill="#ec2834"/><path d="M658 391h4l-1 4h-2v2h-3c.506-2.169 1-4 2-6z" fill="#f1fef9"/><path d="M441 383h4c2 3 2 3 2 6-1.875-.187-1.875-.187-4-1-1.25-2.562-1.25-2.562-2-5z" fill="#e8fdf6"/><path d="M633 369l1 2c-3.371 1.498-5.204 2-9 2l1-3c2.463-1.231 4.28-1.072 7-1z" fill="#d5252c"/><path d="M445 367h4v5l-4 1v-6z" fill="#d8261f"/><path d="M692 339h3v2h-2l-.875 2.875C691 347 691 347 689 349c.75-7.75.75-7.75 3-10z" fill="#f9c5a6"/><path d="M736 335h4v4h3v-2h2l-1 4c-2.312-.187-2.312-.187-5-1-1.812-2.562-1.812-2.562-3-5z" fill="#f9b79e"/><path d="M415 338v3l-12-3c5.232-2.616 6.597-1.621 12 0z" fill="#fbddde"/><path d="M196 325c.964 2.999 1.359 5.088 0 8-2.562 1.25-2.562 1.25-5 2l1-4h2v-4h2v-2z" fill="#ebe4d0"/><path d="M625 318l4 1 2 8h-2v2l-2-1 1-7-3-1v-2z" fill="#ce433b"/><path d="M527 321h2c1.478 2.957 1.06 5.742 1 9l-3-1v-8z" fill="#de241b"/><path d="M263 316c2 3 2 3 2 5h2l1-4 1 6h-2l-1 2c-2.294-3.441-3-4.723-3-9z" fill="#df2b31"/><path d="M410 317h1v5h-2l3 7h-2v-2h-2v-8l2-2z" fill="#f3bdbe"/><path d="M514 312l3 1c1 3 1 3 0 6h-3l-1-6 1-1z" fill="#f6142a"/><path d="M416 311h2l-1 6-4 1-1-3h2v-2h2v-2z" fill="#f9142d"/><path d="M669 297h2v8l-2 1-2-2 2-7z" fill="#f11828"/><path d="M380 275h2c.18 5.22-.029 9.073-2 14h-1c-.082-4.173.07-7.932 1-12v-2z" fill="#cb3b48"/><path d="M800 279c-1 3-1 3-3.062 4.188L795 284v-2l-4-1c3.135-1.858 5.375-2.201 9-2z" fill="#de4a4b"/><path d="M929 271c2.154 2.622 3.401 4.644 4 8h-2v2h-2l1-4-2-1 1-5z" fill="#f2ece4"/><path d="M366 261l3 1v7h-3v-8z" fill="#d92328"/><path d="M766 253h2l2 3c2.05 1.192 2.05 1.192 4 2l-1 3h-5l2-1-4-7z" fill="#ebe0c7"/><path d="M759 254l5 1v2l4-1 2 4c-4.75-.875-4.75-.875-7-2v-2l-4-1v-1z" fill="#f8f7e3"/><path d="M98 255h3c-.531 3.821-1.497 6.062-4 9-1.6-3.201-.032-5.723 1-9z" fill="#f4ece9"/><path d="M637 225l2 2-2.312 3.438-1.301 1.934C634 234 634 234 631 235c1.652-3.579 3.783-6.748 6-10z" fill="#e4dfc4"/><path d="M140 189h2c-1.394 4.435-3.606 6.874-7 10l1-6h3l1-4z" fill="#f6e4d6"/><path d="M745 167c3.875 1.75 3.875 1.75 5 4h-3l-2 2-4-4h4v-2z" fill="#d3323c"/><path d="M721 165l6 4v2h-6c-1-3-1-3 0-6z" fill="#e7e0c5"/><path d="M267 163h4c2 3 2 3 2 6h-2v-2h-4v-4z" fill="#ecfefc"/><path d="M733 157l5 3-3 2-2-1-1 2-4-4h5v-2z" fill="#dd313e"/><path d="M320 145h2l1 4h-2v2h-5v-2h2v-2h2v-2z" fill="#f2fefc"/><path d="M355 125l1 2c-3 2-3 2-6 2l-1 3-5-1c2.385-1.59 4.63-2.867 7.188-4.125l2.168-1.07L355 125z" fill="#fcd2d4"/><path d="M651 111h10l-1 4-9-3v-1z" fill="#fee7e4"/><path d="M241 97l-2 4h-4v-4c3-1 3-1 6 0z" fill="#ef1e2a"/><path d="M367 25h11c-3.687 2.458-6.697 3.012-11 4v-4z" fill="#f9d6d4"/><path d="M401 19l1 3 2 2-6 1v-2l-4-2v-1c4.75-1 4.75-1 7-1z" fill="#d53947"/><path d="M430 13h5v4l-8-1 3-1v-2z" fill="#ed1a2b"/><path d="M439 11h7l-2 4h-5v-4z" fill="#f71629"/><path d="M94 989h1c1.329 5.918.665 8.777-2 14h-1c.964-9.41.964-9.41 2-14z" fill="#f8efe6"/><path d="M726 963h3v2h2c1.461 2.647 2 3.894 2 7h-2l-5-9z" fill="#fedcde"/><path d="M391 905h10v3c-7.75-.75-7.75-.75-10-3z" fill="#fad5cd"/><path d="M586 893l5 1v3h-8v-2h3v-2z" fill="#e52e44"/><path d="M340.164 893.559l2.461.879 2.477.871L347 896v1h-9v-2l-2-1c2-1 2-1 4.164-.441z" fill="#fee2e4"/><path d="M623 867h2v2h2v6h-2c-1.765-3.088-2-4.233-2-8z" fill="#fd1127"/><path d="M420 869h11l-1 3-10-2v-1z" fill="#d53b46"/><path d="M645 847h7c-4.75 4.875-4.75 4.875-7 6v-6z" fill="#efede7"/><path d="M357 839h9l1 2-3.875.438c-2.382.269-3.97.485-6.125 1.563v-4z" fill="#e22740"/><path d="M223 821c1.938.75 1.938.75 4 2 .75 2.125.75 2.125 1 4-2.375-.312-2.375-.312-5-1l-2-3h2v-2z" fill="#e12f3b"/><path d="M222 819h5v2l3 1-2 3-6-5v-1z" fill="#f4e1dd"/><path d="M658 809l-2 4h-8c6-4 6-4 10-4z" fill="#f7d8d3"/><path d="M323 805l3 2c-.75 5.75-.75 5.75-3 8-1.238-3.576-.749-6.337 0-10z" fill="#f8d7ce"/><path d="M811 799h5v4h-6l1-4z" fill="#edfffc"/><path d="M386 789l5 5-3.812-.375-2.145-.211C383 793 383 793 380 791l4-1v2l2-1v-2z" fill="#ece7d6"/><path d="M178 780l5 5h-2l-1 2-4-5 2-2z" fill="#d63545"/><path d="M743 757l1 2c-3.083 4.228-3.083 4.228-5 6-2.812.375-2.812.375-5 0 2.825-2.93 5.788-5.502 9-8z" fill="#f9e9d3"/><path d="M902 714l1 3c-1.25 2.188-1.25 2.188-3 4h-3v-4h3v-2l2-1z" fill="#e9243b"/><path d="M805 693c-.542 3.796-2.201 5.472-5 8-.366-4.517-.366-4.517 1.375-6.812C803 693 803 693 805 693z" fill="#df2e42"/><path d="M473 695h4v6h-3l-1-6z" fill="#e7fffe"/><path d="M476 679l2 1-.5 2.188c-.476 2.677-.577 5.102-.5 7.813l-3-1c.875-7.75.875-7.75 2-10z" fill="#d82637"/><path d="M683 679h1l1.465 6.055c.484 2.004.484 2.004 1.535 3.945l-4 1c-1.054-3.982-.841-6.982 0-11z" fill="#fde7e8"/><path d="M389 677h2v4h-2v3l-4 1 2-6h2v-2z" fill="#efd6be"/><path d="M416 669h3v6h-4l1-6z" fill="#fa1424"/><path d="M921 661h2v4h2v4h-3c-1.354-2.709-1.065-5.009-1-8z" fill="#e7fefd"/><path d="M363 655h2c1.354 2.709 1.065 5.009 1 8h-3v-8z" fill="#d9e5b2"/><path d="M950 607c1.124 3.304.896 5.051-.437 8.25l-.871 2.141L948 619h-1l1-10h2v-2z" fill="#fee8e1"/><path d="M266 605h4v9c-2.686-2.686-3.06-5.376-4-9z" fill="#e5e2cf"/><path d="M480 600l3 1v10c-2.398-2.398-2.343-3.333-2.625-6.625l-.227-2.477L480 600z" fill="#f0192a"/><path d="M365 589h2v8h-4v-2h2v-6z" fill="#d52627"/><path d="M862 583h2c-.665 4.389-2.188 7.981-4 12-1.124-3.304-.896-5.051.438-8.25l.871-2.141L862 583z" fill="#fce6e0"/><path d="M69 574h1v13c-1.952-3.904-2.506-6.722-3-11h2v-2z" fill="#fdefec"/><path d="M531 565c1.125 1.75 1.125 1.75 2 4-.875 2.25-.875 2.25-2 4h-2v-6l2-2z" fill="#edfefe"/><path d="M521 557h4l-1 6h-3v-6z" fill="#df2419"/><path d="M553 551c1.938.313 1.938.313 4 1l1 3h-7l2-4z" fill="#fbcfd1"/><path d="M679 533h3c1.176 3.674 1.074 7.169 1 11-2.458-3.687-3.012-6.697-4-11z" fill="#d2343e"/><path d="M532 526c2.29 3.435 2.178 4.985 2 9h-3l-2-4h3v-5z" fill="#fccfce"/><path d="M363 521h1l1 12-3-1c-.143-7.429-.143-7.429 1-11z" fill="#fbd0b0"/><path d="M462 501l1 4h2v4c-1.937-.312-1.937-.312-4-1-1-3-1-3-.062-5.187L462 501z" fill="#f81722"/><path d="M534 497l1 4c-3 2-3 2-6 2v-4l5-2z" fill="#e02b37"/><path d="M569 473l2 1v9h-3l1-10z" fill="#ce2731"/><path d="M336 471h4v6h-3l-1-6z" fill="#f91125"/><path d="M433 423l1 2 3-1v5h-5l1-6z" fill="#efe6e3"/><path d="M433 403h3v6h-2l-1 2c-1.125-5.75-1.125-5.75 0-8z" fill="#f81526"/><path d="M446 397l1 4h2l1-2 1 5h-4c-1-1-1-1-1.062-4.062L446 397z" fill="#e32b3c"/><path d="M657 391c0 3 0 3-1 6h-3v4l-3-1c4.143-6.429 4.143-6.429 7-9z" fill="#fbd2d3"/><path d="M569 361h6v4l3 1-2 1c-2.625-1.312-2.625-1.312-5-3v-2l-2-1z" fill="#d72e39"/><path d="M441 350c3.631 2.65 5.899 5.018 8 9l-1.812-.937c-2.277-1.165-2.277-1.165-5.187-2.062l-1-6z" fill="#d1303d"/><path d="M158 343h1c.286 8.571.286 8.571-2 12h-2l3-12z" fill="#f7e4d9"/><path d="M535 343h2v2h2c2.094 3.402 2.179 6.053 2 10-1.71-2.565-2.904-4.88-4.125-7.687l-1.07-2.449L535 343z" fill="#fcdfd9"/><path d="M333 347c2 2 2 2 2 6h-2v2h-2v-6h2v-2z" fill="#f7fcfd"/><path d="M641 337h2v2h2l1-2-1 9c-1.991-2.986-2.941-5.597-4-9z" fill="#dd2429"/><path d="M593 323v6l-2 1-2-1v-5c3-1 3-1 4-1z" fill="#fb1424"/><path d="M283 317l2 1c-1.077 4.308-2.039 7.636-5 11 .508-4.318 1.197-8.033 3-12z" fill="#dd3947"/><path d="M859 317l4 1c-.75 4.75-.75 4.75-3 7-1.354-2.709-1.065-5.009-1-8z" fill="#f8ede4"/><path d="M417 319h3l1 6h-4v-6z" fill="#da2522"/><path d="M633 317h2v4h2l1 5-3-1v-2h-2v-6z" fill="#f91424"/><path d="M170 307l2 3-3 7h-2c.507-3.719 1.116-6.735 3-10z" fill="#dd4c5d"/><path d="M607 287h2v2h3v4h-4l-1-6z" fill="#dae5b8"/><path d="M604 281c6.4.492 6.4.492 9.438 3.063L615 286l-1 3-1.062-1.812c-2.65-2.992-5.215-3.783-8.937-5.187v-1z" fill="#d63933"/><path d="M838 277c2.112 2.571 3.663 4.631 4 8l-2 2c-3.077-5.415-3.077-5.415-2.687-8.375L838 277z" fill="#d64153"/><path d="M347 275h6v2l-5-1 3 5h-6l2-6z" fill="#f5cfcc"/><path d="M246 273l1 2-1 2h-2v2h-2v3h-2l2-7c2.063-1.187 2.063-1.187 4-2z" fill="#e9e1c5"/><path d="M794 268c0 3.999-1.726 5.802-4 9l-3-1 7-8z" fill="#cb3b3e"/><path d="M100 263h3l1 3c-1.312 1.5-1.312 1.5-3 3h-3l2-6z" fill="#f4f2e9"/><path d="M801 237h3l.813 2.938L806 243l3 1-2 2-3-3.375-1.687-1.898C801 239 801 239 801 237z" fill="#fbfbea"/><path d="M112 227h1c.375 2.75.375 2.75 0 6-3 2.375-3 2.375-6 4 1.333-3.59 2.894-6.796 5-10z" fill="#fcfbfc"/><path d="M126 213c1 4 1 4 .063 6.25L125 221l-4-1 5-7z" fill="#d7424e"/><path d="M780 206c2.867 1.285 4.976 2.571 7 5v2l-4-1v-3l-4-1 1-2z" fill="#fce1dd"/><path d="M659 196l2 1v8h-2l-1 2 1-11z" fill="#e9e3cb"/><path d="M762 187l3.5 2.813 1.969 1.582C769 193 769 193 769 196c-3.536-1.675-4.791-2.493-6.312-6.187L762 187z" fill="#fbdfdc"/><path d="M606 177h5l1 2h-2v4h-2c-2-3-2-3-2-6z" fill="#eae3cc"/><path d="M163 169l1 4h-3v2l2 1c-1 1-1 1-3.562 1.063L157 177l1-2h2l.375-1.875C161 171 161 171 163 169z" fill="#fcded7"/><path d="M276 168l2 1-2 6-1-2-6 2 7-7z" fill="#d23c43"/><path d="M733 165l4 1-2 1v2h-2v2h-3l1-4h2v-2z" fill="#fcf1fb"/><path d="M324 141c0 2.621-.313 4.509-1 7l-1-3h-2v2l-4-1 8-5z" fill="#f9dedd"/><path d="M327 129h4l1 3c-5.75 3-5.75 3-8 3v-2h3v-4z" fill="#feeaec"/><path d="M343 126l-10 5-1-3c6.5-3.125 6.5-3.125 11-2z" fill="#f9e0d9"/><path d="M807 109h6l1 6-3.5-2.437-1.969-1.371L807 110v-1zm7 1l2 1-2 1v-2z" fill="#fadada"/><path d="M399 103h7l-1 2h-2v2l-5-1 1-3z" fill="#f21629"/><path d="M754 77h5v2l5 1-2 1-1 2-3.5-2.437-1.969-1.371L754 78v-1z" fill="#d03947"/><path d="M282 69v2h-2v2l-6-1c2.466-3.115 4.108-3.316 8-3z" fill="#e52027"/><path d="M670 37l9 3v1l-8 1-1-5z" fill="#f5ede4"/><path d="M647 29l10 3v1h-10v-4z" fill="#f7dad5"/><path d="M383 29l-1 4h-9c2.747-2.747 6.086-4 10-4z" fill="#f9d8d9"/><path d="M393 21h5v4h-7v-2h2v-2z" fill="#e42028"/><path d="M393 21v2c-4.497 2.248-8.079 2.167-13 2v-1l5.375-1.5 3.023-.844C391 21 391 21 393 21z" fill="#d83e48"/><path d="M660 1013h7l-1 3h-7l1-3z" fill="#fde0d9"/><path d="M701 958c3.375 1.186 5.647 2.276 8 5l-3 1-2-1v-2h-3v-3z" fill="#fdd9d8"/><path d="M718 957c3.265 1.804 4.889 2.834 7 6l-3 2-1-4h-2l-1-4z" fill="#e02a3a"/><path d="M650 904v2l-8 1v-2c4.625-2.125 4.625-2.125 8-1z" fill="#e8232e"/><path d="M428 881c-.573 2.867-.861 3.861-3 6l-3-1c2.258-5 2.258-5 6-5z" fill="#e13248"/><path d="M646 877h6l-1 3-7 1v-2h2v-2z" fill="#f4121e"/><path d="M398 871h1v10l-3-1 2-9z" fill="#effef3"/><path d="M640 869l3 1v12h-1l-1-4.25-.562-2.391C640 873 640 873 640 869z" fill="#e23a44"/><path d="M600 863l2 1-2 5h-3v2h-2c1.186-3.375 2.276-5.647 5-8z" fill="#dc3f4b"/><path d="M461 863h4v2h8c-3.135 1.858-5.375 2.201-9 2l-1-3-2-1z" fill="#feede7"/><path d="M452 861h5c-.75 1.938-.75 1.938-2 4-2.125.75-2.125.75-4 1l1-5z" fill="#fbdad2"/><path d="M716 855h3v4h-2v2h-2c-.625-1.875-.625-1.875-1-4l2-2z" fill="#eafef8"/><path d="M696 855h2v5l-5 1-1-2h3l1-4z" fill="#f4d7d9"/><path d="M321 853c1.625 1.375 1.625 1.375 3 3v2l-9-2c3.75-3 3.75-3 6-3z" fill="#cc3b50"/><path d="M703 843c2.215 1.829 2.944 2.67 3.438 5.563.302 2.611.302 2.611 2.625 3.75L711 853l-3 1c-2.634-3.653-4.469-6.485-5-11z" fill="#fee2e2"/><path d="M708 829c2.743 3.2 4.63 6.005 6 10l-3-1v-3l-3 1c-1.333-2.667-.671-4.167 0-7z" fill="#faebe0"/><path d="M839 795l5 1-5 5v-2h-2v-2h2v-2z" fill="#fafdfe"/><path d="M315.75 776.875L318 778l-3 1-1 2-5-3c2.729-1.819 3.536-2.148 6.75-1.125z" fill="#cf3134"/><path d="M162 767l5 5-2 1c-.652 2.025-.652 2.025-1 4-1.583-1.583-1.347-3.38-1.562-5.562l-.254-2.504L162 767z" fill="#fde9ea"/><path d="M723 767l2 1v4l-5 2-1-4 4-3z" fill="#da3c47"/><path d="M300 769c4.75.75 4.75.75 7 3-1 1-1 1-3.562 1.063L301 773l-1-4z" fill="#e8262c"/><path d="M155 759l5 5-1.937.375L156 765l-1 2v-8z" fill="#fce7e1"/><path d="M886 739l1 2-2 4v2l-5 2c1.652-3.579 3.783-6.748 6-10z" fill="#f0dccc"/><path d="M786 717h1v5l-3-1-1 4-4-1 7-7z" fill="#fbd6d1"/><path d="M900 709l3 1-2.437 3.5-1.371 1.969L898 717h-1l1-7 2-1z" fill="#fce9e7"/><path d="M590 693h9l2 4-11-3v-1z" fill="#cd3547"/><path d="M681 666h1l.148 1.898.227 2.477.211 2.461c.243 2.367.243 2.367 2.414 4.164l-1 3c-1.488-1.145-1.488-1.145-3-3-.293-2.699-.293-2.699-.187-5.687l.082-3.012L681 666z" fill="#feb9c5"/><path d="M101 673h2l3 6-1 2h-2c-1.765-3.088-2-4.233-2-8z" fill="#ef2144"/><path d="M504 670l1 3 2 1-2 3 4 1-2 1-4-2 1-7z" fill="#e4303d"/><path d="M93 657l3 1 1 7h-2c-1.765-3.088-2-4.233-2-8z" fill="#ee2633"/><path d="M845 632l2 3-1 2h-2l-2 6h-2c1.45-3.791 3.152-7.387 5-11z" fill="#fbddd3"/><path d="M634 619h2c-.51 4.389-1.522 7.337-4 11-1.264-3.793-.401-5.341 1-9l1-2z" fill="#cc323b"/><path d="M308 609h1v8h2l-1 5-2-1v-12z" fill="#d23e36"/><path d="M693 611c2 2 2 2 2.195 3.945L695 621h-2c-.749-3.663-1.238-6.424 0-10z" fill="#f01a15"/><path d="M486 573h1v10l-1-2h-2c.875-6.875.875-6.875 2-8z" fill="#ec363f"/><path d="M957 573h2c-.523 2.763-1.109 5.326-2 8h-2v-6h2v-2z" fill="#effffd"/><path d="M961 567h2l-2 11h-1c-1.25-7.625-1.25-7.625 1-11z" fill="#fceede"/><path d="M527 516h2c-.312 3.375-.312 3.375-1 7l-3 2c.486-3.123.999-5.996 2-9z" fill="#e9fcf4"/><path d="M540 499l2 1c-2.75 4.875-2.75 4.875-5 6v-2l-2-1 5-4z" fill="#e52d37"/><path d="M566 485h1v6l-2 2c-2.125-.375-2.125-.375-4-1l1.938-2.375c2.044-2.42 2.044-2.42 3.063-4.625z" fill="#ce3642"/><path d="M350 481h2v6h-2l-1 3-1-7h2v-2z" fill="#eccfa8"/><path d="M356.063 478.938L359 479v4h-2l-1-2h-2l-1 6h-1v-7c1-1 1-1 4.063-1.062z" fill="#cc332c"/><path d="M656 440h1v9h-2v2h-2l3-11z" fill="#e53043"/><path d="M455 409c1.953.711 1.953.711 4 2 .609 2.164.609 2.164.75 4.625l.172 2.477L460 420c-1.746-2.619-2.387-4.038-3-7h-2v-4z" fill="#ea2c3a"/><path d="M267 389l4 2v6h-3c-1.354-2.709-1.065-5.009-1-8z" fill="#f51321"/><path d="M653 385h4v2h-2v2h-2v2l-3-1 1-3h2v-2z" fill="#d7261a"/><path d="M479 377h4l-1 8-1-3h-2v-5z" fill="#dd2024"/><path d="M361 375h5l-5 6-4-3 4-1v-2z" fill="#fae6e2"/><path d="M583 373h5l1 4h-6v-4z" fill="#f2fcf6"/><path d="M523 359c2 2 2 2 2.195 3.945L525 369l-1-2h-3l2-8z" fill="#ecfef4"/><path d="M66 354h1v11h-2l-1 2c.52-4.379 1.057-8.688 2-13z" fill="#f9d8d9"/><path d="M281 326h1l1 7h-2v8h-1l-.062-5.812-.035-3.27C280 329 280 329 281 326z" fill="#d22629"/><path d="M747 329l2 1c.25 5.625.25 5.625-2 9h-2l2-10z" fill="#dc383d"/><path d="M714 327v2l-8 3 1-4c2.463-1.231 4.28-1.072 7-1z" fill="#f9c1a6"/><path d="M616 313l1 4h-9v-2l8-2z" fill="#f4151b"/><path d="M780 305h1v8l-3 1-1-7h3v-2z" fill="#d9dfb0"/><path d="M842 301c2.695 2.695 5 6.084 5 10h-3c-1.316-3.62-2-6.096-2-10z" fill="#e9e1d8"/><path d="M610 301h2v2h5v4h-2v-2l-5-1v-3z" fill="#f4d3b6"/><path d="M761 285h2c.369 5.538.369 5.538-1.5 7.875L760 294c-1.255-3.766-.371-5.372 1-9z" fill="#dbe1bb"/><path d="M640 285h3c1.858 3.135 2.201 5.375 2 9l-2-1v-4h-2l-1-4z" fill="#f3d5b7"/><path d="M244 277c.981 3.053.981 4.947 0 8h-4l2-6h2v-2z" fill="#fbf8e4"/><path d="M685 279h5l1 4h-5l-1-4z" fill="#f91428"/><path d="M603 277h4v2h2l-1 3-5-2v-3z" fill="#f01726"/><path d="M678 276l-4 1-.375 1.75c-.631 2.273-1.514 4.175-2.625 6.25-.25-3.312-.25-3.312 0-7 2.628-2.9 3.206-3.265 7-2z" fill="#cd2c2d"/><path d="M432 264h2v9h-3l1-9z" fill="#c1374c"/><path d="M444 264h2l-2 9-1-2-2-1 3-6z" fill="#c54b58"/><path d="M268 255c1.535 2.433 2.031 3.671 1.758 6.578l-.633 2.672-.617 2.703L268 269h-1l-.062-6.437-.035-3.621C267 256 267 256 268 255z" fill="#fbe3e1"/><path d="M442 261h2v2l2 1h-2l-2 6c-1.108-3.325-.845-5.622 0-9z" fill="#fde2e7"/><path d="M833 257h2v2h2v2h-2l1 4-3-1v-7z" fill="#fefcee"/><path d="M378 249h1l.063 4.875.035 2.742C379 259 379 259 378 261l-3-1 3-11z" fill="#f9d2ca"/><path d="M801 229c4.875 4.625 4.875 4.625 6 8l-4-1v-3h-2v-4z" fill="#f8e9e2"/><path d="M789 210c1.938.688 1.938.688 4 2 .75 2.625.75 2.625 1 5h-3c-2-3-2-3-2-7z" fill="#e61d30"/><path d="M764 183l4 4h-3l1 4-5-5 3-1v-2z" fill="#da303d"/><path d="M142 183l1 2h2l-2 4h-3l-1-3 3-3z" fill="#fcf7ee"/><path d="M746 170l5 1 1 4h-5l-1-5z" fill="#f11d32"/><path d="M681 139h5l-1 4 2 1c-3.375-.547-5.082-1.055-8-3h2v-2z" fill="#f8f9e8"/><path d="M337 128h5l-2 1v2l3 1-6 2v-3h2v-2l-2-1z" fill="#d73c42"/><path d="M398 114v3h-9v-2c3.058-.544 5.888-1 9-1z" fill="#ebfefc"/><path d="M382 109h5v2l2 1-7 1v-4z" fill="#e9202f"/><path d="M787 97l7 1-4 4-3-2v-3z" fill="#dd262a"/><path d="M773 85h2v2h2l1 4-5-1v-5z" fill="#ec1c2a"/><path d="M759 77h5c1.063 1.875 1.063 1.875 2 4l-1 2h-3l1-3-4-1v-2z" fill="#ed1d26"/><path d="M713 44c2.164.777 2.164.777 4.625 1.938l2.477 1.152L722 48v1h-5v-2h-6v-2l2-1z" fill="#f3fdfe"/><path d="M615 21l7 2v2h-7v-4z" fill="#f5fcf5"/><path d="M313 1007l6 5c-1.812.625-1.812.625-4 1l-3-2 1-4z" fill="#faddd9"/><path d="M520 1009h5v4h-5v-4z" fill="#f71429"/><path d="M359 1005h6v4h-4v-2h-2v-2z" fill="#ebfcfb"/><path d="M626 999l1 2 1-2h3v3l-3 1-2 2-2-1v-2h2v-3z" fill="#f9ede9"/><path d="M308 997c2.098 2.098 2.651 3.38 3.625 6.125l.789 2.195.586 1.68h-2v-2h-2c-1.354-2.709-1.065-5.009-1-8z" fill="#fcdbd5"/><path d="M728 983h1v6l3 1-5 1v-7l1-1z" fill="#e22021"/><path d="M411 957h3l-1 10c-2-2-2-2-2.195-3.945L411 957z" fill="#f6162d"/><path d="M857 957h4v4h2v2h-3v-2h-2l-1-4z" fill="#ebfffc"/><path d="M414 917l11 2v2h-6v-2h-5v-2z" fill="#f8ede4"/><path d="M637 911c-3.795 2.214-7.756 3.01-12 4 3.589-4.786 6.417-4.372 12-4z" fill="#d73444"/><path d="M591 897h4v2h2v2h-6v-4z" fill="#edfffc"/><path d="M677 893l2 2-2 1 2 2-3 1-2-1v-2l-3-1 6-2z" fill="#e23441"/><path d="M625 887c0 3 0 3-1.062 4.688-2.911 1.972-5.518 1.506-8.937 1.313l1.625-.75c2.939-1.547 5.633-3.38 8.375-5.25z" fill="#fcd8d7"/><path d="M343 889h9l-1 3c-5.75-.75-5.75-.75-8-3z" fill="#fcdfdd"/><path d="M645 885h2v4h3v2h-5c-1.125-3.75-1.125-3.75 0-6z" fill="#effff9"/><path d="M597 881h2v4h4v3l-5-1-1-6z" fill="#f91327"/><path d="M567 875h4v8h-2v-6h-2v-2z" fill="#eafefd"/><path d="M662 872l1 3h6c-3.188 2.125-5.265 2.502-9 3l2-6z" fill="#cc3943"/><path d="M646 871l1 2h2v4h-3l-1 2c-.125-5.75-.125-5.75 1-8z" fill="#e5201f"/><path d="M455 871l2.313.563c2.777.666 2.777.666 5.688-.562l-1 4h-6l-1-4z" fill="#fcdedb"/><path d="M303 863h5l1 4h-5l-1-4z" fill="#eafffb"/><path d="M747 859h6l-2 4-5-2 1-2z" fill="#ed283e"/><path d="M604 857h5v1l6 1v1l-10 1-1-4z" fill="#fccbd5"/><path d="M765 853l1 2h-2l-1 4h-5c4.75-4.875 4.75-4.875 7-6z" fill="#fad9cf"/><path d="M581 849v7h-1l-.437-2.375c-.44-2.589-.44-2.589-1.562-4.625l-4 2-2-2c3.069-1.534 5.701-.55 9 0z" fill="#df3649"/><path d="M762 853v3l-6 1v-3c2-1 2-1 6-1z" fill="#de2728"/><path d="M572 850l5 1v4h-2v-2h-2l-1 4v-7z" fill="#e32219"/><path d="M257 839l4 1-3 2-2 3-4-4h5v-2z" fill="#fce8eb"/><path d="M388 817l11 3v1h-8v-2h-3v-2z" fill="#f5e7da"/><path d="M181 785c2.886.398 3.822.79 5.75 3.063L188 790l-6-1-1-4z" fill="#ea2640"/><path d="M689 781h8v2h-2v2h-2v-2h-4v-2z" fill="#effefa"/><path d="M710 776v3h-2v2l2 1-3 1v-2l-4-1 7-4z" fill="#c5434a"/><path d="M305 775l9 5c-4 1-4 1-6 1v-2l-3-1v-3z" fill="#fce2d8"/><path d="M869 761l1 4h-3v4l-4-1 6-7z" fill="#f9dece"/><path d="M251 741h3v2h3l1 4h-3l-2-3-3-2 1-1z" fill="#edfffe"/><path d="M886 733l1 2h2v-2l2 1-4 4-2-1v2l-2-1 3-5z" fill="#d1414d"/><path d="M912 701h1v5l-3 1-1 3-1-3c1.875-3.187 1.875-3.187 4-6z" fill="#f9e9db"/><path d="M117 700l4 4v3h-2v-2l-3-1-1-3 2-1z" fill="#d7323c"/><path d="M903 701h4c-1.75 5.75-1.75 5.75-4 8v-8z" fill="#f3ece3"/><path d="M224 697h4v4h3l-1 4-6-8z" fill="#fae6d8"/><path d="M590.25 693.25l2.75.75-4 1v2h-6c3.2-4.062 3.2-4.062 7.25-3.75z" fill="#fbd1d1"/><path d="M519 687l10 3v1h-10v-4z" fill="#fdd9d5"/><path d="M210 685l4 4v2l-5 1-1-3 2-2v-2z" fill="#f5ddd9"/><path d="M807 677h2v4h2v-2h2l-2 4h-3l-1-6z" fill="#f7ebe7"/><path d="M315 677l3 1 1 7h-2c-1.765-3.088-2-4.233-2-8z" fill="#fabaa0"/><path d="M722 668l2 1v2l2 1 1 3h-5v-7z" fill="#dd2225"/><path d="M419 669h2v6h2v2h-4v-8z" fill="#dd2323"/><path d="M456 669h2l1 10-2-1c-.414-2.066-.414-2.066-.625-4.562l-.227-2.504L456 669z" fill="#d33b43"/><path d="M529 668c2.24 2.88 4.162 5.849 6 9l-5-1-1-8z" fill="#cf2c34"/><path d="M338 661h2l1 10c-3.161-4.215-3.337-5.061-3-10z" fill="#fcbba6"/><path d="M174 626c2.647 2.647 3.599 5.562 5 9h-4v-6h-2l1-3z" fill="#f2eee4"/><path d="M86 625h1v6h-2l-1 2-1-6h3v-2z" fill="#f7e6e0"/><path d="M854 613h1v8h-4l3-8z" fill="#f4d7cf"/><path d="M953 597l2 1-3 9h-1v-8l2-2z" fill="#f9f2e4"/><path d="M958 587h2l-2 10-2-2c.307-2.943.673-5.345 2-8z" fill="#cb3449"/><path d="M721 579h2c1.125 5.75 1.125 5.75 0 8h-2v-8z" fill="#fc1027"/><path d="M637 569l2 3-1 1-.062 5.063.027 2.785L638 583c-2-2-2-2-2.23-4.566l.043-2.996.02-3.004C636 570 636 570 637 569z" fill="#fadbd4"/><path d="M148 547l2 1c.414 2.066.414 2.066.625 4.563l.227 2.504L151 557h-2l-1-10z" fill="#d5333e"/><path d="M438 489l5 1v2l3 1v2h-2v-2l-5-1-1-3z" fill="#e4e4c6"/><path d="M360 445h2v8h-3l1-8z" fill="#da322d"/><path d="M359 445c1.238 3.576.749 6.337 0 10h-2v-8h2v-2z" fill="#e9d1aa"/><path d="M876 415h1c.953 4.763 1.083 9.167 1 14-2.75-5.134-3.181-8.224-2-14z" fill="#eae4cf"/><path d="M661 421h4l-2 7-2 1v-8z" fill="#fcecee"/><path d="M631 413h6v4h-4v-2h-2v-2z" fill="#e3211d"/><path d="M544 407l9 3v1h-8l-1 2v-6z" fill="#faafaf"/><path d="M361 403l4 1v9c-2.19-3.285-2.998-6.207-4-10z" fill="#e03240"/><path d="M516 399l1 4h2v-2l3 1c-1.25 1.5-1.25 1.5-3 3h-4l1-6z" fill="#facdc8"/><path d="M451 403h2v2h2l1 4c-3 0-3 0-4.687-1.5L450 406l1-3z" fill="#e82030"/><path d="M476 401l3.875-.187 2.18-.105L484 401l2 3-10-1v-2z" fill="#e42b3d"/><path d="M343 387l4 2c-.875 4.75-.875 4.75-2 7h-2v-9z" fill="#e32f42"/><path d="M461 385h5v2l2 1c-3.01.934-3.867 1.044-7 0v-3z" fill="#f81728"/><path d="M483 381h2v2h2v4l-4 1v-7z" fill="#dd211f"/><path d="M554 377l9 1-4 1v2h-4l-1-4z" fill="#c92f34"/><path d="M150 371h1v10h-2l-1 2c1-8.571 1-8.571 2-12z" fill="#fddddc"/><path d="M205 365c1.124 3.304.896 5.051-.437 8.25l-.871 2.141L203 377h-1c-.348-4.877.583-7.771 3-12z" fill="#e9e4d0"/><path d="M477 361h1v7l-2-2-5-1v-2h6v-2z" fill="#fef2ed"/><path d="M641 355c-1.012 3.403-1.648 4.757-4.625 6.813L634 363c2.261-8 2.261-8 7-8z" fill="#eacea7"/><path d="M578 359h5v4h-5v-4z" fill="#da2424"/><path d="M538 349c2.296 3.445 2.54 5.938 3 10l-1-2h-2l-1 2 1-10z" fill="#e33548"/><path d="M556 353h7l-1 2h-3v2l-4-1 1-3z" fill="#f91222"/><path d="M771 339h2v6h-4v-4h2v-2z" fill="#dce4b7"/><path d="M861 332c1.991 2.986 2.941 5.597 4 9h-4v-9z" fill="#fee9e1"/><path d="M337 333h4v4h-2v2h-2v-6z" fill="#e7fef9"/><path d="M765 333h4l-1 6h-3v-6z" fill="#f71623"/><path d="M653 327l5 1-1 3-5-1 1-3z" fill="#f91322"/><path d="M848 316h2l3 9-5-2v-7z" fill="#e9e3cf"/><path d="M628 315c2.112 2.571 3.663 4.631 4 8l-2 2c-1-1-1-1-1.062-3.562L629 319l-2-1 1-3z" fill="#f2b597"/><path d="M203 321h5l-1 4h-5l1-4z" fill="#e7ddb1"/><path d="M779 312l2 1v2h4v2h-7l1-5z" fill="#dfe4bc"/><path d="M513 309l1.813.5c2.301.611 2.301.611 5.188.5l-1 3h-6v-4z" fill="#d72739"/><path d="M682 293h1l2 8h-4c-.931-2.606-1.149-3.642-.062-6.25L682 293z" fill="#f8c8ab"/><path d="M618 289h4v5l-3 1-1-6z" fill="#fc1425"/><path d="M793 285v2h-2v2c-3 2-3 2-5.187 1.625L784 290l3.375-2.5 1.898-1.406C791 285 791 285 793 285z" fill="#f1b69c"/><path d="M352 281h2v2h2l-1 7-2 1-1-10z" fill="#e33e4c"/><path d="M412 282l7 1 1 2h-4l-1 2-3-5z" fill="#cb3445"/><path d="M790 276l1 2 4 2c-2.647 1.461-3.894 2-7 2 .875-4.875.875-4.875 2-6z" fill="#f7b19b"/><path d="M825 277h4v2h2v2h-6v-4z" fill="#f2d7bc"/><path d="M781 277h2v2h4v2l-2 2h-3l-1-6z" fill="#fc0f21"/><path d="M663 275h6v4h-4v-2h-2v-2z" fill="#dae4b7"/><path d="M208 267h1v5l-3 1v2l-3 1 2-5h2l1-4z" fill="#e9e1cb"/><path d="M783 260c1 4 1 4 .063 6.25L782 268h-3l4-8z" fill="#d83c40"/><path d="M198 255l3 1c-1.152 2.468-2.048 4.048-4 6l-2-2 3-5z" fill="#ce464b"/><path d="M381 251c1.108 3.325.845 5.622 0 9l-3 1c.75-7.75.75-7.75 3-10z" fill="#eefdf7"/><path d="M377 239h4v6h-2v-2h-2v-4z" fill="#e9fffe"/><path d="M129 215h2v4h-2v4h-4v-2h3l1-6z" fill="#e3fefa"/><path d="M297 213v3l-5 4-2-1c.125-1.875.125-1.875 1-4 3.063-1.25 3.063-1.25 6-2z" fill="#edead2"/><path d="M124 211h3c-1.477 4.677-1.477 4.677-4.125 6.313L121 218l1-5h2v-2z" fill="#fbe9d7"/><path d="M131 201l3 1-6 9-1-4h2l.438-1.875C130 203 130 203 131 201z" fill="#fedad3"/><path d="M247 195h2l-1 5-4 1c1.875-4.875 1.875-4.875 3-6z" fill="#e51d30"/><path d="M868 165l3 2c.188 3.125.188 3.125 0 6l-5-5 2-3z" fill="#fce7e5"/><path d="M728 155c1.938.313 1.938.313 4 1l1 3h-6l-1-2h2v-2z" fill="#e2202a"/><path d="M177 151l1 3-3 2-4-2c2.625-3 2.625-3 6-3z" fill="#d53642"/><path d="M178 147l3 2-2 4h-2v-2l-2-1 3-3z" fill="#f12545"/><path d="M715 145l3 1-1 2h-2l1 3c-4.875-1.75-4.875-1.75-6-4h5v-2z" fill="#dc4245"/><path d="M699 145h5v4h-5v-4z" fill="#effefb"/><path d="M689 145h4v2h5l2 4-2.312-.937L692 148v-2l-3-1z" fill="#faf8e8"/><path d="M823 124l2 1v6l-6-5c1.875-1.062 1.875-1.062 4-2z" fill="#d63446"/><path d="M471 115h8c-2.313 2.313-3.479 2.496-6.625 3.125l-2.477.508L468 119l1-2h2v-2z" fill="#e7e2c9"/><path d="M510 106l-2 3c-1.945.293-1.945.293-4.125.188L500 109c6.333-4.222 6.333-4.222 10-3z" fill="#fcf9e8"/><path d="M395 101h8c-3.687 2.458-6.697 3.012-11 4v-2h3v-2z" fill="#f7f3e4"/><path d="M773 78l8 5c-2.862 1.431-4.934.6-8 0v-5z" fill="#fdfcfd"/><path d="M730 57h8l-1 4-6-2-1-2z" fill="#fad8dc"/><path d="M652 25h8v2h3v2l-11-3v-1z" fill="#f5cfcb"/><path d="M596 17l9 1v1h-6v2l-4-1 1-3z" fill="#f2e1dd"/><path d="M659 1016h5l-1 4h-4v-4z" fill="#c74146"/><path d="M569 1013h4v2h-2v6h-2v-8z" fill="#ebfef6"/><path d="M409 1005h1v10l-5 1 1.438-2.125c1.65-3.036 2.166-5.467 2.563-8.875z" fill="#fee2df"/><path d="M369 1001h4v5l-5-2 1-3z" fill="#e72945"/><path d="M442 951h3v4l-6 2v-2h2l1-4z" fill="#edfffa"/><path d="M383 904c7.75.75 7.75.75 10 3-4.176 1.392-6.135-.177-10-2v-1z" fill="#d2343c"/><path d="M375 901v2c-3.576 1.238-6.337.749-10 0 3.644-2.429 5.712-2.162 10-2z" fill="#f11726"/><path d="M578 888h1v7h2v2h-5l2-9z" fill="#f7162e"/><path d="M407 865c2.929.628 5.361 1.586 8 3l-8 1v-4z" fill="#cd2d27"/><path d="M554 860h3v7h-2v-4h-2l1-3z" fill="#d32f42"/><path d="M736 862l2 4-5 1v-3l-2-1c3-1 3-1 5-1z" fill="#f3e5e9"/><path d="M574 863h3l1 3c-4.75 3-4.75 3-7 3v-2h3v-4z" fill="#f7e8de"/><path d="M408 859h5c-2.354 3.923-4.645 4.839-9 6l1-4h3v-2z" fill="#e9161f"/><path d="M683 856l2 1v9c-3-3-3-3-3.25-6.125C682 857 682 857 683 856z" fill="#d02f3e"/><path d="M571 847h11c-3.46 2.307-5.925 2.481-10 3l-2 1 1-4z" fill="#fdd3db"/><path d="M700 842l1 3h2l1 5-2 1-1-4h-2l1-5z" fill="#f7182c"/><path d="M318 839l3 1-1 7h-3v-2h2l-1-6z" fill="#f71a27"/><path d="M245 839l5 1-1 4-4-2v-3z" fill="#e82134"/><path d="M429 829c4.75.75 4.75.75 7 3-1 1-1 1-3.562 1.063L430 833l-1-4z" fill="#fbecea"/><path d="M717 817h2c2 3 2 3 2 6h-4v-6z" fill="#effefb"/><path d="M644 805h5v3l-5 1-1-2 1-2z" fill="#eedfe0"/><path d="M175 776l5 1 1 3 2 1-1 3-3.5-3.437-1.969-1.934C175 777 175 777 175 776z" fill="#f7d3c7"/><path d="M862 769l1 3-3 5-4-1 6-7z" fill="#fde2dd"/><path d="M751 750l2 1-4 6-3-1 3-4h2v-2z" fill="#f9e0da"/><path d="M792 706l3 2c-1.312 2-1.312 2-3 4h-3c.573-2.867.861-3.861 3-6z" fill="#de273d"/><path d="M235 701h4v2h2l1 4h-3l-1-3-3-1v-2z" fill="#e9fefb"/><path d="M555 695h4l1 4h-5l-1-3 1-1z" fill="#edfefd"/><path d="M384 689h3l-1 4h-2l-1 5h-1c.875-6.75.875-6.75 2-9z" fill="#eadfc7"/><path d="M203 675l4 5-2 1v2l-3 1 1-9z" fill="#fbe8e6"/><path d="M923 675h2l-1 6h-3c.875-4.875.875-4.875 2-6z" fill="#ec2346"/><path d="M270 671c1.063 1.875 1.063 1.875 2 4l-1 2h-2l-1 6c-1.124-3.304-.896-5.051.438-8.25l.871-2.141L270 671z" fill="#e0525c"/><path d="M197 661c2.248 2.052 3.002 3.007 4 6l-3 1-3-5h2v-2z" fill="#d04245"/><path d="M628 658l2 4-4 4-2-2 1.438-1.312c1.799-1.711 1.799-1.711 2.563-4.687z" fill="#fce3e4"/><path d="M363 647l4 8-2 2v-2h-2v-8z" fill="#f2c0a3"/><path d="M83 637c2.19 3.285 2.998 6.207 4 10h-2v-2h-2v-8z" fill="#fbd7d4"/><path d="M408 640l1 9-2-1-1-4-3 1c2.258-5 2.258-5 5-5z" fill="#fcf4e5"/><path d="M77 617l4 4v3l-3 1-1-8z" fill="#de3640"/><path d="M844 611c1 2 1 2 .063 5.125L843 619h-2c-.187-2.875-.187-2.875 0-6l3-2z" fill="#edfefe"/><path d="M689 560c2.29 3.435 2.178 4.985 2 9h-2c-1.125-6.75-1.125-6.75 0-9z" fill="#fadcd5"/><path d="M525 525c2 3 2 3 2 6l-5 2c.75-5.75.75-5.75 3-8z" fill="#e02f2d"/><path d="M645 515h2v6l-4 2v-4h2v-4z" fill="#ecfefd"/><path d="M712 515c1.804 2.759 2.013 3.89 1.625 7.25L713 525c-2-2-2-2-2.187-5 .188-3 .188-3 1.188-5z" fill="#e41b19"/><path d="M204 509c3 3 3 3 3.188 6.688L207 519h-2l-1-10z" fill="#f1e9d9"/><path d="M431 496h1l1 9h-4l2-9z" fill="#da3833"/><path d="M332 473h4v4h-5l1-4z" fill="#de2321"/><path d="M348 433l3 1v7h-2l-1-8z" fill="#f4cba7"/><path d="M553 411c3.754 1.251 4.241 2.565 6 6v2h-3l-1-6h-2v-2z" fill="#f9d1cf"/><path d="M58 394h1l.688 4.313.387 2.426C60 403 60 403 57 406l1-12z" fill="#ffd5e2"/><path d="M747 377c1 4 .807 6.055 0 10h-3l3-10z" fill="#f5c1a7"/><path d="M62 373l1 4h2v4h-4l1-8z" fill="#f9e8e8"/><path d="M147 371h2l-2 10-2-2c.307-2.943.673-5.345 2-8z" fill="#fddde2"/><path d="M438 371l1 4h2l-1 4v-2h-3c-.625-1.875-.625-1.875-1-4l2-2z" fill="#f5fcfb"/><path d="M255 349c3.006 3.006 2.596 5.824 3 10l-3-2c-.408-2.712-.133-5.244 0-8z" fill="#fde1d7"/><path d="M857 337h2v2h2v6h-2l-2-8z" fill="#e8fae9"/><path d="M764 339h4c-1.75 5.75-1.75 5.75-4 8v-4h2v-2l-3 1 1-3z" fill="#dd252d"/><path d="M631 323h2c2 3 2 3 2 6l-3 1-1-7z" fill="#f5c5a2"/><path d="M160 323l2 2-1 7-2-2 1-7z" fill="#ffe8e6"/><path d="M418 313h4l1 4h-6l1-4z" fill="#e02020"/><path d="M81 301h2c-.479 4.219-1.166 6.797-4 10 .458-3.469.891-6.674 2-10z" fill="#e14260"/><path d="M945 301h4v6l-3-1-1-5z" fill="#f4f6ef"/><path d="M85 291l2 4c-1.375 3.25-1.375 3.25-3 6h-2l3-10z" fill="#cc556a"/><path d="M802 279h5v2c-3.088 1.765-4.233 2-8 2v-2h3v-2z" fill="#d7e6b4"/><path d="M213 275l2 1c-1.804 3.265-2.834 4.889-6 7l1-5 3-1v-2z" fill="#f8f5e5"/><path d="M441 271h2l-1 6h-3c.875-4.875.875-4.875 2-6z" fill="#ec1e37"/><path d="M222 228h1v6l-4-1v2l-2-1 5-6z" fill="#fbdfd0"/><path d="M128 209h3c-.542 3.796-2.201 5.472-5 8l2-8z" fill="#e22640"/><path d="M772 190l4 4-2 1 1 4h-2l-2-4h2l-1-5z" fill="#db474f"/><path d="M705 189h1v7h-6l3-1c1.225-3.008 1.225-3.008 2-6z" fill="#e8e0ce"/><path d="M161 179h4v2h2v4h-2v-2l-4-2v-2z" fill="#f1fefa"/><path d="M730 161l5 3-2 1v2h-2v-2h-2l1-4z" fill="#f5e9e3"/><path d="M295 147h2v2h5l-4 4-2-1-1-5z" fill="#f8e9ea"/><path d="M198 133l1 4h-3v2l-5 2 2.938-3.437 1.652-1.934L198 133z" fill="#f6ecd7"/><path d="M198 121l3 4c-5.625 2-5.625 2-9 2l6-6z" fill="#fefdfe"/><path d="M382 109l1 3 2 2-6-1v-2l-2-1c2-1 2-1 5-1z" fill="#d04548"/><path d="M452 91l-1 3-10-1v-1c3.724-.693 7.211-1.111 11-1z" fill="#d62c3d"/><path d="M762 83l3.938 1.875 2.215 1.055C770 87 770 87 771 89h-4l-2-2h-2l-1-4z" fill="#f1e3df"/><path d="M770 76c3 2 3 2 3.688 4.125L774 82h-4v-2l-2-2h2v-2z" fill="#f7f1ee"/><path d="M748 69l4 1v3l-2 1-3-1 1-4z" fill="#ee191b"/><path d="M333 47v3l-7 2-2-2c6.75-3 6.75-3 9-3z" fill="#faccd1"/><path d="M338 39h5v4l-6-1 1-3z" fill="#ef1a31"/><path d="M340 35h7c-2.686 2.686-5.376 3.06-9 4l-1-2h3v-2z" fill="#fdece2"/><path d="M359 1007h2v2l3 1-3 3h-2v-6z" fill="#fef1ef"/><path d="M701 1007c2.211.428 3.981.991 6 2v2h-5v-2l-2-1 1-1z" fill="#ecfefa"/><path d="M322 957l2 4-8 2 6-6z" fill="#da3342"/><path d="M359 955h9l-1 4h-2v-2l-4 1v-2l-2-1z" fill="#e21b1e"/><path d="M337 951v2c-3.644 2.429-5.712 2.162-10 2 3.137-2.092 6.145-4 10-4z" fill="#d62d36"/><path d="M531 894l6 2-2 1v2h-4v-5z" fill="#d32c25"/><path d="M487 895v2h2v2h-6v-3c2-1 2-1 4-1z" fill="#da3a54"/><path d="M347 894c3 1 3 1 6 3v2l-9-3 3-2z" fill="#e33d4a"/><path d="M343 891h3v2l4 1-7 1-1-3 1-1z" fill="#ef1721"/><path d="M574 887h1v8h-4v-2h2l1-6z" fill="#edfeeb"/><path d="M635 887h4l1 4h-5v-4z" fill="#e9fffe"/><path d="M540 889h3v4h-2v2h-3v-2h2v-4z" fill="#effefe"/><path d="M635 881h2v4h-3v2h-3v-2h2v-2h2v-2z" fill="#ecfffb"/><path d="M409 876c3 1 3 1 4.188 3.063L414 881h-6l1-5z" fill="#d42e31"/><path d="M348 869h5l2 4-7-2v-2z" fill="#f2fbf3"/><path d="M620 861c3.714 1.238 4.774 2.852 7 6v2h-2v-2h-3v-4h-2v-2z" fill="#dc3140"/><path d="M569 866l2 1v8h-2v-6h-2v-2l2-1z" fill="#fef1f0"/><path d="M329 862c7.75.75 7.75.75 10 3h-8v-2l-2-1z" fill="#f9ebe1"/><path d="M283 863l6 1v3c-2.169-.506-4-1-6-2v-2z" fill="#e21b25"/><path d="M309 855h2v2l6 1v1h-8v-4z" fill="#ebfefd"/><path d="M299 857h6v4h-3v-2h-3v-2z" fill="#e7fffc"/><path d="M569 850h1l2 9h-4l1-9z" fill="#fcebed"/><path d="M370 851h1c.369 5.538.369 5.538-1.5 7.875L368 860l-1-2 3-7z" fill="#fae5d9"/><path d="M712 850l5 1-1 3 2 1-5 2 2-5-4 1 1-3z" fill="#ffd6da"/><path d="M642 849h2l2 5-7-1 3-4z" fill="#e13752"/><path d="M661 846v1h-6v2l-6 1c3.589-4.786 6.417-4.372 12-4z" fill="#cc434e"/><path d="M340 842l2 4-4 6c-1-2-1-2-.441-3.945l.879-2.18.871-2.195L340 842z" fill="#dd3747"/><path d="M395 842l-1 8h-1v-5l-4-1c3.75-2 3.75-2 6-2z" fill="#bf393f"/><path d="M794 833l1 2c-4.75 4.875-4.75 4.875-7 6l-1-3 7-5z" fill="#f8e5e0"/><path d="M230 825c2.929.628 5.361 1.586 8 3l-2 3-6-5v-1z" fill="#fce2e7"/><path d="M702 815c3.875 1.75 3.875 1.75 5 4l-2 4c-3-5.75-3-5.75-3-8z" fill="#dd2231"/><path d="M713 815h4v7c-4-4.75-4-4.75-4-7z" fill="#f8e6e6"/><path d="M390 812l-5 1v2l-6-1c4.004-2.145 6.568-3.477 11-2z" fill="#e33d4d"/><path d="M337 805h6v4c-1.875-.312-1.875-.312-4-1l-2-3z" fill="#f5fcfd"/><path d="M327 795c2.867.573 3.861.861 6 3-1 1-1 1-3.562 1.063L327 799v-4z" fill="#fefbed"/><path d="M327 785l5 1 1 2-6 1v-4z" fill="#e92325"/><path d="M171 776c2.375.25 2.375.25 5 1 1.313 2.063 1.313 2.063 2 4-2.886-.398-3.822-.79-5.75-3.062L171 776z" fill="#e11f2f"/><path d="M750 759h4v2h2v2h-5l-1-4z" fill="#e6fffc"/><path d="M147 738l2 1v6l-4-4v-2l2-1z" fill="#fce5e3"/><path d="M898 723l1 4h-3l-1 4h-2c1.186-3.375 2.276-5.647 5-8z" fill="#f5d8cd"/><path d="M766 717h3v4h-5l2-4z" fill="#eff"/><path d="M800 701l1 4h-3l-1 4-3-1 6-7z" fill="#fedcd6"/><path d="M560 694l7 4v1h-7v-5z" fill="#fcdbd8"/><path d="M109 689h3l2 5-3 1c-2-3-2-3-2-6z" fill="#eb2f44"/><path d="M213 684l4 4-2 1-1 2-3-6 2-1z" fill="#cf3746"/><path d="M790 680l1 2c-3.446 4.8-3.446 4.8-6.25 5.813L783 688l2-3h2l.938-1.937C789 681 789 681 790 680z" fill="#fbf3ea"/><path d="M478 671c.688 1.813.688 1.813 1 4-1.375 1.75-1.375 1.75-3 3h-1c-.187-2.375-.187-2.375 0-5l3-2z" fill="#fc1128"/><path d="M533 656h1c.369 7.508.369 7.508-1.5 10l-1.5 1c0-3.929 1.003-7.199 2-11z" fill="#d1353f"/><path d="M557 657l6 5v1h-5v-2h-2l1-4z" fill="#fbe1d9"/><path d="M435 647l3 1v5l-5 1 2-1v-6z" fill="#d0454c"/><path d="M400 647h2l1 6h-4l1-6z" fill="#f6fdea"/><path d="M195 645h2v6h-2v2h-2l2-8z" fill="#e9fefd"/><path d="M95 641h2v4h2v4h-2c-1.765-3.088-2-4.233-2-8z" fill="#edffff"/><path d="M177 635h2l-2 8-2-1c-.125-2.375-.125-2.375 0-5l2-2z" fill="#effdfa"/><path d="M73 614h2l2 7h-3l-1-7z" fill="#fde8e0"/><path d="M636 595h3v2h2v4c-1.937-.75-1.937-.75-4-2-.75-2.125-.75-2.125-1-4z" fill="#eafefb"/><path d="M641 589h2v2h2v4h-3l-1-6z" fill="#ebfffe"/><path d="M722 577l3 1c.625 2.813.625 2.813 1 6l-2 3-2-10z" fill="#cf3f4e"/><path d="M857 557h3l-2 10h-1v-10z" fill="#dde3bf"/><path d="M685 549h2v2h4l-2 6c-1.777-2.666-2.875-5.028-4-8z" fill="#d42b32"/><path d="M144 535h1l2 12h-2a55.37 55.37 0 0 1-1-12z" fill="#fbe4d2"/><path d="M144 521h1l1 10h-3l1-10z" fill="#ea5267"/><path d="M545 495l4 1v3h-7l3-4z" fill="#db4049"/><path d="M437 487c2 3 2 3 3 6-1.437 2.188-1.437 2.188-3 4-1.231-3.694-.644-6.206 0-10z" fill="#ebcaae"/><path d="M438 495h4l1 4h-5v-4z" fill="#f9d4b6"/><path d="M209 453h2l1 5-5 1 2-6z" fill="#e9e2ca"/><path d="M653 445h2l-2 8h-2v-6h2v-2z" fill="#fedfde"/><path d="M650 403h3v6h-3v-6z" fill="#e4fef6"/><path d="M660 388l4 1 1 4h-2v-2h-5l2-3z" fill="#fccfce"/><path d="M457 385h4v3l3 1-4 2v-2l-2-1-1-3z" fill="#e81b1d"/><path d="M649 381h4v2h-3l-1 4h-2v-4h2v-2z" fill="#df2127"/><path d="M577 379h5l-1 4h-4v-4z" fill="#f0fef7"/><path d="M561 373h4l1 4h-5v-4z" fill="#e9fefb"/><path d="M337 361h4l-1 4h-5v-2h2v-2z" fill="#e12028"/><path d="M515 349h5v7c-3.875-4.75-3.875-4.75-5-7z" fill="#f8eadc"/><path d="M681 349h3v6h-3v-6z" fill="#f8d5ba"/><path d="M693 345h2l1 3-3 1v6h-1l-.062-4.437-.035-2.496C692 346 692 346 693 345z" fill="#f51122"/><path d="M861 341h2l2 8h-2v-2h-2v-6z" fill="#fef4fe"/><path d="M417 343h4v2h2v4h-2v-3h-3l-1-3z" fill="#e02423"/><path d="M275 329h2c.981 3.053.981 4.947 0 8h-2v-8z" fill="#e7fef4"/><path d="M624 318l2 3-2 4h-3v-4h3v-3z" fill="#d62327"/><path d="M290 311l3 1-4 1-1 4h-3c1.37-3.161 1.989-3.993 5-6z" fill="#ce3b49"/><path d="M288 315l6 1-1 5h-2v-4h-3v-2z" fill="#fa1324"/><path d="M841 309h3l1 4h-2v2h-2v-6z" fill="#dee1b5"/><path d="M759 309l1 3c-1.812 2.688-1.812 2.688-4 5h-2c.506-2.169 1-4 2-6h3v-2z" fill="#f9c4ad"/><path d="M667 311h2v2h2v4h-3l-1-6z" fill="#e12220"/><path d="M597 311c6.625.75 6.625.75 10 3l-10-1v-2z" fill="#f7f7ee"/><path d="M851 301l4 2v5h-2l-2-7z" fill="#f7eee3"/><path d="M429 301h2v6l-3 1v-6l1-1z" fill="#ee1a23"/><path d="M413 285l4 4c-3.75 3-3.75 3-6 3l2-7z" fill="#fceaeb"/><path d="M779 281h3v2h3v2h-6v-4z" fill="#dc2421"/><path d="M412 281c6.4-.369 6.4-.369 9.438 1.5L423 284c-4.084 0-7.123-.807-11-2v-1z" fill="#f1c9cf"/><path d="M444 276c2 3 2 3 1.625 6.188L445 285l3 1h-4v-5l-2-1 2-4z" fill="#e5636d"/><path d="M93 279h4v4l-4 1v-5z" fill="#f7faf7"/><path d="M670 275h5l-1.937 2.188c-2.049 2.794-2.676 4.429-3.062 7.813h-1l1-10z" fill="#fbb8a0"/><path d="M783 264l3 4-3 5h-1l1-9z" fill="#f3ae90"/><path d="M207 249h2l2 4h-2v2l-3 1 1-7z" fill="#effdfc"/><path d="M913 241c4.429 5.143 4.429 5.143 5 9-3-1-3-1-4.187-2.812C913 245 913 245 913 241z" fill="#f8e7de"/><path d="M754 212h1v7h-4v-4h3v-3z" fill="#e6e0c8"/><path d="M781 209h2l1 4h-3v2l-3-1 1-3h2v-2z" fill="#ebfef8"/><path d="M778 207l3 2v2h-2v2l-4-1 2-1c.652-2.025.652-2.025 1-4z" fill="#fdf1fb"/><path d="M871 174c2.964 2.808 5.445 5.183 7 9-1.937-.75-1.937-.75-4-2-.75-2.125-.75-2.125-1-4h-2v-3z" fill="#dd3d53"/><path d="M289 165h2v2h2v2h-3v2h-3v-2h2v-4z" fill="#e9fffd"/><path d="M298 155v2h-2v2h-4v-3c2-1 2-1 6-1z" fill="#e71e28"/><path d="M411 146h1c.366 3.938.302 5.565-2 8.875L408 157c.551-3.949 1.389-7.349 3-11z" fill="#f9f4e2"/><path d="M190 141c0 3.576-1.088 5.053-3 8l-4-1 7-7z" fill="#ffe8e4"/><path d="M818 125l6 5v1h-5l-1-6z" fill="#fddfe0"/><path d="M633 125v2c-2 1-3.831 1.494-6 2l-1-3c2.463-1.231 4.28-1.072 7-1z" fill="#e6dbb0"/><path d="M794 117h5l-1 4h-4v-4z" fill="#edfffe"/><path d="M231 106c-1.187 1.5-1.187 1.5-3 3-2.687.188-2.687.188-5 0v-2c4.625-2.125 4.625-2.125 8-1z" fill="#e61c2f"/><path d="M602 101l5 1 1 3h-5l-1-4z" fill="#efe4e1"/><path d="M605 97l7 1-4 1 1 4-4-2v-4z" fill="#df2f43"/><path d="M251 81h6c-1.312 2-1.312 2-3 4h-3v-4z" fill="#f9dfd6"/><path d="M744 60l6 3-4 3-3-5 1-1z" fill="#fdfcfa"/><path d="M664 29h8v2l3 1c-2 1-2 1-4.164.441l-2.461-.879-2.477-.871L664 30v-1z" fill="#fcd5ca"/><path d="M719 1013l2 1-1 2 2 1c-2.606.931-3.642 1.149-6.25.063L714 1016l5-3z" fill="#fbe5db"/><path d="M682 1007c2 3 2 3 3 6l2 2h-6l1-8z" fill="#cd383d"/><path d="M475 1011h4v4h-5l1-4z" fill="#edfef5"/><path d="M320 997l3 1v3h-2l-1 4c-1.125-5.75-1.125-5.75 0-8z" fill="#e9171c"/><path d="M95 969h6v2h-4l-1 3h-1v-5z" fill="#ecfefe"/><path d="M333 961h4v2h-2l-2 4c-1.125-3.75-1.125-3.75 0-6z" fill="#ebfdf7"/><path d="M513 955l5 2-1 4h-2v-4l-3-1 1-1z" fill="#fae1d9"/><path d="M543 943h5v4h-4l-1-4z" fill="#ecffff"/><path d="M583 918c-1.625 1.563-1.625 1.563-4 3-3.25-.312-3.25-.312-6-1 3.402-2.094 6.053-2.179 10-2z" fill="#ce3439"/><path d="M403 903h4v4h-4l-1-3 1-1z" fill="#eefffe"/><path d="M346 891l7 2v3l-4-1 1-2h-4v-2z" fill="#de2a3b"/><path d="M609 881h2v2h2v4l-3-1-1-5z" fill="#e0fefb"/><path d="M516 875h2c-.687 2.438-.687 2.438-2 5-2.625.813-2.625.813-5 1v-2h4l1-4z" fill="#ce3434"/><path d="M428 859c1.563 1.25 1.563 1.25 3 3-.312 2.188-.312 2.188-1 4l-3-1 1-6z" fill="#e6434f"/><path d="M423 859h3l1 4-4 1v-5z" fill="#f41b2e"/><path d="M406 857l3 1h-2v2h-2v3h-2l-1 2 1-5 3-1v-2z" fill="#fbc6c7"/><path d="M745 857h6c-2.688 2.252-4.646 3.882-8 5l2-5z" fill="#fbede6"/><path d="M279 856l3 1v2l4 1c-1.687.75-1.687.75-4 1-2.75-1.937-2.75-1.937-5-4l2-1z" fill="#fbdcde"/><path d="M715 852l-2 5-1-2h-5l1-2c2.386-.612 4.535-1 7-1z" fill="#c6414c"/><path d="M355 853h3l-2 9h-1v-9z" fill="#fde3e2"/><path d="M774 847c0 3 0 3-2 6-2.625.188-2.625.188-5 0 2.167-2.275 4.456-4.158 7-6z" fill="#f5e3da"/><path d="M314 851h5l-1 4h-3l-1-4z" fill="#f4112a"/><path d="M663 847l5 1v7l-5-8z" fill="#fee6e2"/><path d="M716 843c2 2 2 2 2 6h-5v-2l2-1 1-3z" fill="#e9efe6"/><path d="M336 842l3 1-1 7h-1v-5h-2l1-3z" fill="#feeaee"/><path d="M792 829h1v5l-4 1c.573-2.867.861-3.861 3-6z" fill="#e9252b"/><path d="M681 829l3 1 1 3-1 2h-3v-6z" fill="#e6fdf8"/><path d="M219 815h4v2h2v2l-5-1-1-3z" fill="#e9fcfa"/><path d="M206 809l5 1v3h-4l-1-4z" fill="#ea2839"/><path d="M653 805h4l1 4h-5v-4z" fill="#f51b3b"/><path d="M193 799l6 5-4 1c-2-3.75-2-3.75-2-6z" fill="#eed3cf"/><path d="M350 801l8 3-2 2c-2.625-.375-2.625-.375-5-1l-1-4z" fill="#fddeda"/><path d="M207 801h4v4h-5l1-4z" fill="#fefbed"/><path d="M682 792l2 1-1 2 2 1-6 1c1.875-3.875 1.875-3.875 3-5z" fill="#da212d"/><path d="M320 789h4l-1 4-5-1 2-1v-2z" fill="#eafffe"/><path d="M334 787h7l1 3-2 1-6-3v-1z" fill="#f8dfdd"/><path d="M717 771h5l-2 1v3h-4l1-4z" fill="#ea2426"/><path d="M733 765l1 4-8 2c2.257-2.335 4.281-4.187 7-6z" fill="#fcd7d2"/><path d="M272 745c2.962.613 4.381 1.254 7 3l-1 3-6-5v-1z" fill="#fcd8d0"/><path d="M767 739h2l-2 4h-2v2h-2v-4h4v-2z" fill="#edfff7"/><path d="M885 737h2c-1.75 4.875-1.75 4.875-4 6l-2-1 1-3h3v-2z" fill="#eb1d3a"/><path d="M250 731l3 2v2l3 1c-3.875 2-3.875 2-5 2l-1-7z" fill="#fdece1"/><path d="M131 723h2c2 3 2 3 2 6h-3l-1-6z" fill="#eb243c"/><path d="M902 710l1 3 2 1-5 1v2l-2-1 4-6z" fill="#cc4a53"/><path d="M799 711h3l-1 4h-2v2h-3v-2l2-1 1-3z" fill="#ebfef9"/><path d="M299 701c2.834 3.203 3.521 5.781 4 10h-2c-1.604-3.508-2.22-6.144-2-10z" fill="#f7f2df"/><path d="M777 705h3l1 6-3-1-1-5z" fill="#e9fffe"/><path d="M113 699c2.252 2.688 3.882 4.646 5 8h-3c-2.152-3.228-2.201-4.284-2-8z" fill="#feded7"/><path d="M218 690c3.366 1.443 5.51 3.333 8 6l-3 1-5-7z" fill="#f2e5de"/><path d="M113 691h4v5l-2 1-2-6z" fill="#f0e9e1"/><path d="M925 679h2v6l-4 1v-3h2v-4z" fill="#f3fded"/><path d="M101 669h4v8c-2.154-2.622-3.401-4.644-4-8z" fill="#f9dad1"/><path d="M504 669h3v2h3l-1 3-4-1-1-4z" fill="#db2123"/><path d="M723 664l1 3h3v3c-2.437-.812-2.437-.812-5-2l-1-3 2-1z" fill="#f6e7e5"/><path d="M830 659c.931 2.606 1.149 3.642.063 6.25L829 667h-2c.547-3.375 1.055-5.082 3-8z" fill="#fde8e2"/><path d="M199 663h4l1 5h-3l-2-5z" fill="#fedddc"/><path d="M190 655c1.892 2.386 3.024 4.072 4 7l-3 1v-4h-2l1-4z" fill="#f1f1e9"/><path d="M393 654h3l-2 5h-2l-1 2c.875-4.75.875-4.75 2-7z" fill="#f3d5af"/><path d="M334 654l5 2-1 5c-1.892-2.386-3.024-4.072-4-7z" fill="#f4d3b0"/><path d="M82 645h3l1 7c-2.5-2.174-3.436-3.73-4-7z" fill="#fdfdfc"/><path d="M401 641l4 1-3 5h-2l1-6z" fill="#e9dfc5"/><path d="M179 636c2.5 2.174 3.436 3.73 4 7l-4-1v-6z" fill="#fad0d2"/><path d="M320 637h2c-.498 3.688-1.101 5.605-4 8 .875-5.75.875-5.75 2-8z" fill="#dc2323"/><path d="M948 634l1 3-4 4-1-4h2v-2l2-1z" fill="#f4fdfe"/><path d="M635 627c1.5 1.313 1.5 1.313 3 3v3h-4l1-6z" fill="#eefcf8"/><path d="M854 609c.688 1.688.688 1.688 1 4-1.437 2.75-1.437 2.75-3 5-.687-1.687-.687-1.687-1-4 1.438-2.75 1.438-2.75 3-5z" fill="#df2d4f"/><path d="M953 589h4l-1 6-1-2h-2v-4z" fill="#f8efe6"/><path d="M231 568l3 1v2h2l1 4h-2v-2h-3l-1-5z" fill="#f5eada"/><path d="M522 529c1.765 3.088 2 4.233 2 8h-3c-.125-5.75-.125-5.75 1-8z" fill="#e0201d"/><path d="M563 513h2v6h-4l2-6z" fill="#f7132a"/><path d="M453 489h2v6l-6-1 4-1v-4z" fill="#d13345"/><path d="M373 487c1.245 2.491.777 3.411 0 6h-3l-1-4 4-2z" fill="#df252c"/><path d="M348 455l3 3-1 2-3-1v2l-3-1 4-5z" fill="#f1b9a0"/><path d="M559 413h4l-1 5-3-1v-4z" fill="#f91521"/><path d="M739 409h2v6h-3v-5l1-1z" fill="#e3cba5"/><path d="M264 391h2l1 6-2 2-1-8z" fill="#ce322a"/><path d="M470 387h5v5l-2 1-3-6z" fill="#f7ecdf"/><path d="M478 385c3 1 3 1 5 4-.375 2.188-.375 2.188-1 4-4-5.75-4-5.75-4-8z" fill="#cd2d39"/><path d="M439 361h2v2h2v4l-4-1v-5z" fill="#e22028"/><path d="M538 357h2l1 7-3-1v-6z" fill="#f41936"/><path d="M258 355l1 2h2v8c-2.296-3.445-2.54-5.938-3-10z" fill="#d62938"/><path d="M644 346h1l-1 10-3 1 3-11z" fill="#e04d47"/><path d="M69 344l2 2c-.187 2.5-.187 2.5-1 5l-3 2 2-9z" fill="#f8e3e2"/><path d="M958 341h3l1 9h-2l-2-9z" fill="#fee9f2"/><path d="M275 339h4l-1 7-2-1-1-6z" fill="#fce3e0"/><path d="M699 333l4 1-8 5v-4h4v-2z" fill="#fbb7a2"/><path d="M281 309h6l-1 4h-3l-2-4z" fill="#effdf7"/><path d="M193 301h3l-3 10c-1-4-.807-6.055 0-10z" fill="#ece4d1"/><path d="M939 293c2.154 2.622 3.401 4.644 4 8h-3c-1.354-2.709-1.065-5.009-1-8z" fill="#fce4dc"/><path d="M422 293l4 2v6c-2.154-2.622-3.401-4.644-4-8z" fill="#ce323a"/><path d="M842 294l3 1v4l-4 1v-5l1-1z" fill="#f6fdfa"/><path d="M633 279h3l1 8c-2.154-2.622-3.401-4.644-4-8z" fill="#fac3a6"/><path d="M841 281h3l1 8c-2.154-2.622-3.401-4.644-4-8z" fill="#fbe5d6"/><path d="M455 280c3 1 3 1 4.188 3.063L460 285h-3v-2h-4v-2l2-1z" fill="#fde5ef"/><path d="M931 269h4v8c-1.777-2.666-2.875-5.028-4-8z" fill="#fae8dd"/><path d="M596 262c1.206 2.332 2.165 4.496 3 7-2.437-.75-2.437-.75-5-2-.812-2.125-.812-2.125-1-4l1 2h2v-3z" fill="#f2b7b4"/><path d="M927 261h4l1 6-2 1-3-7z" fill="#f4e6d9"/><path d="M793 260l3 1c.813 1.938.813 1.938 1 4l-2 2c-1.562-1.812-1.562-1.812-3-4l1-3z" fill="#f5ddb2"/><path d="M111 251h2l-2 6h-2l-1 2 1-6h2v-2z" fill="#effef9"/><path d="M220 249l2 4h-3l-2 4-2-1 5-7z" fill="#e8e3c6"/><path d="M757 239c4.875 1.75 4.875 1.75 6 4-1.875.625-1.875.625-4 1l-2-2v-3z" fill="#e5e0ce"/><path d="M228 221l1 2-3 5-3-2 5-5z" fill="#fce3de"/><path d="M228 215v3l1 3-2 1-3-1c1.152-2.468 2.048-4.048 4-6z" fill="#e43a50"/><path d="M316 197l1 3-5 5-2-1 6-7z" fill="#faf6e8"/><path d="M881 197l5 1 1 3-3 1-1-3h-2v-2z" fill="#efefdf"/><path d="M252 195l1 4h-2v2l-4-1 5-5z" fill="#f8d6ca"/><path d="M670 182l4 1-3 1c-1.699 2.498-1.699 2.498-3 5l-3-1 5-6z" fill="#f7f2de"/><path d="M765 187l5 1v3h-4l-1-4z" fill="#ee172b"/><path d="M874 183h2v2l4-1 1 3h-2l-1 2c-4-4.875-4-4.875-4-6z" fill="#d23e43"/><path d="M271 181h4v2h-2v2h-4l2-4z" fill="#ebfffc"/><path d="M746 177h4l1 3-5 1v-4z" fill="#ebfdfb"/><path d="M865 173l5 5-3 2c-2-2-2-2-2.125-4.625L865 173z" fill="#f9e0db"/><path d="M745 173l5 3c-1.812 1.063-1.812 1.063-4 2l-3-1v-2h2v-2z" fill="#fcebe8"/><path d="M160 167c3 0 3 0 5 1l-5 4-2-1 2-4z" fill="#d73144"/><path d="M738 167l7 5-4 1v-2h-3v-4z" fill="#f2e7dd"/><path d="M283 165h3l-2 4h-5v-2h4v-2z" fill="#eb1f24"/><path d="M279 161h2v2l2 1-6 4v-3h2v-4z" fill="#fbdbdb"/><path d="M733.188 152.938L735 154l-1 3c-2.468-1.152-4.048-2.048-6-4 3-1 3-1 5.188-.062z" fill="#fad7d7"/><path d="M190 139v2h-3v2h-4v-2c3-2 3-2 7-2z" fill="#ed2231"/><path d="M655 119c5.75 1.75 5.75 1.75 8 4h-6l-2-4z" fill="#faebe2"/><path d="M385 115l-1 2h-8c4.862-3.241 4.862-3.241 9-2z" fill="#fae3d4"/><path d="M783 91l3 2h-3l-1 4-4-4c2.313-1.125 2.313-1.125 5-2z" fill="#da3c42"/><path d="M257 87v3l-3 1v2l-4-1 7-5z" fill="#f5dfd5"/><path d="M738 57l5 2v2h-6l1-4z" fill="#fcfef6"/><path d="M707 49l5 1 1 3h-4v-2h-2v-2z" fill="#f11a22"/><path d="M700 40l7 1v2h-7v-3z" fill="#f8fdfb"/><path d="M626 23h9v2l2 1c-3.683-.6-7.345-1.248-11-2v-1z" fill="#ce4042"/></svg> \ No newline at end of file diff --git a/src/components/philanthropy/page.tsx b/src/components/philanthropy/page.tsx index 45b1569..bd63e38 100644 --- a/src/components/philanthropy/page.tsx +++ b/src/components/philanthropy/page.tsx @@ -62,20 +62,20 @@ const Page = () => { </div> </FadeInSection> - <FadeInSection delay={0.4}> + <FadeInSection delay={0.3}> <Button link="https://easy-ware-forms.com/iscc-charity/donate" txt="Donate" /> </FadeInSection> - <FadeInSection delay={0.5}> + <FadeInSection delay={0.3}> <div className="m-6 mb-0 text-xl tracking-widest text-black sm:text-4xl md:text-5xl lg:text-6xl"> Currently Supporting </div> </FadeInSection> - <FadeInSection delay={0.6}> + <FadeInSection delay={0.3}> <div className="flex items-center justify-center"> <div className="h-1/2 w-1/4"> <Image @@ -88,13 +88,13 @@ const Page = () => { </div> </FadeInSection> - <FadeInSection delay={0.7}> + <FadeInSection delay={0.3}> <div className="m-6 mb-0 mt-8 text-xl tracking-widest text-black sm:text-4xl md:text-5xl lg:mt-12 lg:text-6xl"> Previously Supported </div> </FadeInSection> - <FadeInSection delay={0.8}> + <FadeInSection delay={0.3}> <div className="mb-11 ml-10 mr-10 flex justify-center gap-12 sm:ml-8 sm:mr-8 md:ml-16 md:mr-16"> <div className="h-1/2 w-1/4"> <Image diff --git a/src/data/landing/tempEvents.ts b/src/data/landing/tempEvents.ts index f044b8e..d69283b 100644 --- a/src/data/landing/tempEvents.ts +++ b/src/data/landing/tempEvents.ts @@ -2,34 +2,30 @@ const events = [ { date: "FEB 19", time: "8 PM", - title: "Social Event", + title: "Event coming soon...", location: "Location", - description: - "Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem.", + description: "Event description.", }, { date: "MAR 10", time: "6 PM", - title: "Cultural Meetup", + title: "Event coming soon...", location: "Location", - description: - "Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem.", + description: "Event description.", }, { date: "FEB 19", time: "8 PM", - title: "Social Event", + title: "Event coming soon...", location: "Location", - description: - "Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem.", + description: "Event description.", }, { date: "MAR 10", time: "6 PM", - title: "Cultural Meetup", + title: "Event coming soon...", location: "Location", - description: - "Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem.", + description: "Event description.", }, ];