initial commit

This commit is contained in:
Mobin 2025-03-10 00:35:31 +03:30
parent bfe7515aa6
commit 5d603dce90
17 changed files with 977 additions and 64 deletions

View file

@ -124,7 +124,7 @@
@apply border-border outline-ring/50;
}
body {
@apply bg-background text-foreground;
@apply text-foreground;
}
}
@ -136,6 +136,13 @@
padding-inline: 2rem;
}
}
body {
font-feature-settings: "ss01";
background: url("../public/pattern.svg"),
linear-gradient(rgba(58, 58, 58, 1) 0%, rgba(10, 10, 10, 1) 15%);
background-blend-mode: color-burn;
background-size: 15%;
}
.bg-parch {
background: linear-gradient(90deg, #21c796 15%, #0385ce 95%, #0d40bf 120%);
@ -147,6 +154,12 @@
background-clip: text;
}
.bg-image {
background-image: url("/public/background.jpg");
.text-blue-parch {
color: #0d40bf;
}
.border-parch:hover {
background: linear-gradient(var(--background), var(--background)) padding-box,
linear-gradient(to right, #21c796, #0385ce, #0d40bf) border-box;
border: 1px solid transparent;
}

View file

@ -1,23 +1,25 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import Header from "@/components/header";
import { Footer } from "@/components/ui/footer";
import FooterSection from "@/components/sections/footer/default";
import type { Metadata } from "next";
import localFont from "next/font/local";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
const Vazir = localFont({
src: [
{
path: "../public/fonts/Vazirmatn-Regular.woff2",
weight: "400",
},
{
path: "../public/fonts/Vazirmatn-Bold.woff2",
weight: "700",
},
],
variable: "--Vazir",
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "پارچ کست",
};
export default function RootLayout({
@ -28,7 +30,7 @@ export default function RootLayout({
return (
<html lang="fa" dir="rtl" className="dark">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
className={`${Vazir.className} antialiased`}
suppressHydrationWarning
>
<Header />

80
app/podcast/[id]/page.tsx Normal file
View file

@ -0,0 +1,80 @@
import {
Breadcrumb,
BreadcrumbItem,
BreadcrumbLink,
BreadcrumbList,
BreadcrumbPage,
BreadcrumbSeparator,
} from "@/components/ui/breadcrumb";
import { Calendar, Clock, User } from "lucide-react";
import Image from "next/image";
export default function Podcast() {
return (
<main className="min-h-screen">
<section className="relative pt-20 pb-16 md:pt-36 md:pb-24">
<div className="container px-4 md:px-6">
<div className="grid gap-6 grid-cols-3 lg:gap-12 ">
<div className="mx-auto aspect-square overflow-hidden rounded-xl bg-muted">
<Image
src="https://picsum.photos/450/450"
alt="Podcast Cover Art"
width={450}
height={450}
className="h-full w-full object-cover"
/>
</div>
<div className="flex flex-col justify-center space-y-4 col-span-2">
<div className="space-y-3">
<Breadcrumb>
<BreadcrumbList>
<BreadcrumbItem>
<BreadcrumbLink>پارچ کست</BreadcrumbLink>
</BreadcrumbItem>
<BreadcrumbSeparator />
<BreadcrumbItem>
<BreadcrumbPage>قسمت اول</BreadcrumbPage>
</BreadcrumbItem>
</BreadcrumbList>
</Breadcrumb>
<div className="flex flex-col gap-4">
<h1 className="text-3xl font-bold sm:text-4xl leading-normal pe-2">
قسمت اول: داستان پارچ
</h1>{" "}
<div className="flex gap-5">
<div className="rounded-xl p-6 bg-muted/100">
<p className="text-muted-foreground md:text-xl">
پادکست پارچ کست یک برنامه صوتی جذاب و متنوع است که به
بررسی موضوعات مختلف فرهنگی، اجتماعی و علمی میپردازد.
این پادکست با میزبانی متخصصان و مهمانان مختلف، تلاش
میکند تا با ارائه بحثها و نظرات عمیق، شنوندگان را به
تفکر وادارد و آگاهی آنها را در زمینههای مختلف افزایش
دهد. هر قسمت از پارچ کست با رویکردی خلاقانه و engaging
تولید میشود و هدف آن ایجاد فضایی است که در آن گوش دادن
به اطلاعات جدید همزمان با لذت و سرگرمی همراه باشد.
</p>
</div>
<div className="flex flex-col w-full gap-3">
<div className="flex items-center gap-1 text-sm">
<Calendar size={18} className="text-gray-400" /> تاریخ
انتشار: 11 اسفند 1403
</div>
<div className="flex items-center gap-1 text-sm">
<Clock size={18} className="text-gray-400" /> مدت زمان:
64 دقیقه
</div>
<div className="flex items-center gap-1 text-sm">
<User size={18} className="text-gray-400" /> گویندگان:
Erfoux
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
);
}

BIN
bun.lockb Executable file → Normal file

Binary file not shown.

View file

@ -5,6 +5,15 @@ export function AboutPodcast() {
<section className="bg-muted/50 py-12 md:py-16 lg:py-20">
<div className="container px-4 md:px-6">
<div className="grid gap-6 lg:grid-cols-2 lg:gap-12">
<div className="space-y-4 ml-auto">
<Image
src="https://picsum.photos/450/450"
alt="Podcast Cover Art"
width={450}
height={450}
className="rounded-xl"
/>
</div>
<div className="space-y-4 flex flex-col justify-center">
<h2 className="text-3xl font-bold tracking-tight text-parch leading-normal">
درباره پادکست
@ -66,15 +75,6 @@ export function AboutPodcast() {
</Card>
</div> */}
</div>
<div className="space-y-4 mr-auto">
<Image
src="https://picsum.photos/450/450"
alt="Podcast Cover Art"
width={450}
height={450}
className="rounded-xl"
/>
</div>
</div>
</div>
</section>

View file

@ -71,7 +71,7 @@ export function EpisodeCards() {
{episodes.map((episode) => (
<Card
key={episode.id}
className="flex flex-col overflow-hidden pt-0"
className="flex flex-col overflow-hidden pt-0 border-parch"
>
<div className="aspect-video w-full overflow-hidden">
<Image

View file

@ -0,0 +1,61 @@
import Image from "next/image";
import { Footer, FooterBottom, FooterColumn, FooterContent } from "./ui/footer";
export default function FooterSection() {
return (
<footer className="w-full bg-background px-4">
<div className="mx-auto max-w-container">
<Footer>
<FooterContent>
<FooterColumn className="col-span-2 sm:col-span-3 md:col-span-1">
<div className="flex items-center">
<Image src={"/logo.png"} width={30} height={30} alt="logo" />
<h3 className="text-xl font-bold">پارچ کست</h3>
</div>
</FooterColumn>
<FooterColumn>
<h3 className="text-md pt-1 font-semibold">Product</h3>
<a href="/" className="text-sm text-muted-foreground">
Changelog
</a>
<a href="/" className="text-sm text-muted-foreground">
Documentation
</a>
</FooterColumn>
<FooterColumn>
<h3 className="text-md pt-1 font-semibold">Company</h3>
<a href="/" className="text-sm text-muted-foreground">
About
</a>
<a href="/" className="text-sm text-muted-foreground">
Careers
</a>
<a href="/" className="text-sm text-muted-foreground">
Blog
</a>
</FooterColumn>
<FooterColumn>
<h3 className="text-md pt-1 font-semibold">شبکه های اجتماعی</h3>
<a href="/" className="text-sm text-muted-foreground">
Discord
</a>
<a href="/" className="text-sm text-muted-foreground">
Twitter
</a>
<a href="/" className="text-sm text-muted-foreground">
Github
</a>
</FooterColumn>
</FooterContent>
<FooterBottom>
<div>© 2025 پارچ کست. تمامی حقوق محفوظ است</div>
<div className="flex items-center gap-4">
<a href="/">سیاست حفظ حریم خصوصی</a>
<a href="/">شرایط خدمات</a>
</div>
</FooterBottom>
</Footer>
</div>
</footer>
);
}

View file

@ -6,8 +6,8 @@ import Image from "next/image";
export default function Header() {
return (
<div className="container mx-auto px-4 md:px-6 lg:px-8">
<header className="flex h-20 w-full shrink-0 items-center justify-between">
<div className="mx-auto px-4 md:px-6 lg:px-8 fixed w-full z-10">
<header className="container flex h-20 w-full shrink-0 items-center justify-between">
<div className="flex gap-2">
<Button variant="ghost" className="px-2 py-1">
<Menu />
@ -18,8 +18,11 @@ export default function Header() {
جستجو
</Button>
</div>
<div>
<Image src={"/logo.png"} width={45} height={45} alt="logo" />
<div className="flex items-center">
<Image src={"/logo.png"} width={30} height={30} alt="logo" />
<h1 className="font-bold tracking-tighter leading-normal pe-2 text-xl text-parch">
پارچ کست
</h1>
</div>
<div className="flex gap-2">
<Button variant="outline" className="px-2 py-1">

View file

@ -4,7 +4,7 @@ import Image from "next/image";
export function PodcastHero() {
return (
<section className="relative bg-gradient-to-b from-primary/20 to-background pt-20 pb-16 md:py-24">
<section className="relative pt-20 pb-16 md:pt-36 md:pb-24">
<div className="container px-4 md:px-6">
<div className="grid gap-6 lg:grid-cols-[1fr_400px] lg:gap-12 xl:grid-cols-[1fr_450px]">
<div className="flex flex-col justify-center space-y-4">
@ -33,13 +33,13 @@ export function PodcastHero() {
</p>
</div>
<div className="flex flex-col gap-2 min-[400px]:flex-row">
<Button size="lg" className="gap-2">
اکنون گوش کن
<Button
size="lg"
className="gap-2 border-parch text-blue-parch bg-white"
>
<span>اکنون گوش کن</span>
<Play className="h-4 w-4" />
</Button>
{/* <Button size="lg" variant="outline">
Subscribe
</Button> */}
</div>
</div>
<div className="mx-auto aspect-square overflow-hidden rounded-xl bg-muted lg:order-last">

View file

@ -1,5 +1,5 @@
import { Github, Instagram, Twitter, Youtube } from "lucide-react";
import Image from "next/image";
import LaunchUI from "../../logos/launch-ui";
import {
Footer,
FooterBottom,
@ -10,55 +10,72 @@ import {
export default function FooterSection() {
return (
<footer className="w-full bg-background px-4">
<div className="mx-auto max-w-container">
<div className="mx-auto">
<Footer>
<FooterContent>
<FooterContent className="container">
<FooterColumn className="col-span-2 sm:col-span-3 md:col-span-1">
<div className="flex items-center gap-2">
<div className="flex items-center">
<Image src={"/logo.png"} width={30} height={30} alt="logo" />
<h3 className="text-xl font-bold">پارچ کست</h3>
<h3 className="text-xl font-bold text-parch">پارچ کست</h3>
</div>
</FooterColumn>
<FooterColumn>
<h3 className="text-md pt-1 font-semibold">Product</h3>
<h3 className="text-md pt-1 font-semibold">همراه با ما</h3>
<a href="/" className="text-sm text-muted-foreground">
Changelog
تماس با ما
</a>
<a href="/" className="text-sm text-muted-foreground">
Documentation
درباره ما
</a>
<a href="/" className="text-sm text-muted-foreground">
حمایت از پادکست{" "}
</a>
<a href="/" className="text-sm text-muted-foreground">
همکاری اسپانسر{" "}
</a>
</FooterColumn>
<FooterColumn>
<h3 className="text-md pt-1 font-semibold">Company</h3>
<h3 className="text-md pt-1 font-semibold">پربازدیدترینها</h3>
<a href="/" className="text-sm text-muted-foreground">
About
داستان پارچ
</a>
<a href="/" className="text-sm text-muted-foreground">
Careers
داستان پارچ کست
</a>
<a href="/" className="text-sm text-muted-foreground">
Blog
پارچ گیمینگ
</a>
</FooterColumn>
<FooterColumn>
<h3 className="text-md pt-1 font-semibold">Contact</h3>
<a href="/" className="text-sm text-muted-foreground">
Discord
</a>
<a href="/" className="text-sm text-muted-foreground">
Twitter
</a>
<a href="/" className="text-sm text-muted-foreground">
Github
</a>
<h3 className="text-md pt-1 font-semibold">ما را دنبال کنید</h3>
<span className="text-sm text-muted-foreground text-justify">
مطالب بیشتر و اطلاعات گوناگونی در شبکههای اجتماعی رخ منتشر
میشود که شما را به دنبال کردن آنها دعوت میکنیم.
</span>
<div className="flex gap-4">
<div className="flex justify-center items-center w-8 h-8 rounded-full bg-gray-700">
<Github size={16} />
</div>
<div className="flex justify-center items-center w-8 h-8 rounded-full bg-gray-700">
<Twitter size={16} />
</div>
<div className="flex justify-center items-center w-8 h-8 rounded-full bg-gray-700">
<Instagram size={16} />
</div>
<div className="flex justify-center items-center w-8 h-8 rounded-full bg-gray-700">
<Youtube size={16} />
</div>
</div>
</FooterColumn>
</FooterContent>
<FooterBottom>
<div>© 2025 Parch. All rights reserved</div>
<div className="container flex justify-between">
<div>© 2025 پارچ کست. تمامی حقوق محفوظ است</div>
<div className="flex items-center gap-4">
<a href="/">Privacy Policy</a>
<a href="/">Terms of Service</a>
<div className="flex items-center gap-4">
<a href="/">سیاست حفظ حریم خصوصی</a>
<a href="/">شرایط خدمات</a>
</div>
</div>
</FooterBottom>
</Footer>

View file

@ -0,0 +1,109 @@
import { Slot } from "@radix-ui/react-slot";
import { ChevronsLeft, MoreHorizontal } from "lucide-react";
import * as React from "react";
import { cn } from "@/lib/utils";
function Breadcrumb({ ...props }: React.ComponentProps<"nav">) {
return <nav aria-label="breadcrumb" data-slot="breadcrumb" {...props} />;
}
function BreadcrumbList({ className, ...props }: React.ComponentProps<"ol">) {
return (
<ol
data-slot="breadcrumb-list"
className={cn(
"text-muted-foreground flex flex-wrap items-center gap-1.5 text-sm break-words sm:gap-1",
className
)}
{...props}
/>
);
}
function BreadcrumbItem({ className, ...props }: React.ComponentProps<"li">) {
return (
<li
data-slot="breadcrumb-item"
className={cn("inline-flex items-center gap-1.5", className)}
{...props}
/>
);
}
function BreadcrumbLink({
asChild,
className,
...props
}: React.ComponentProps<"a"> & {
asChild?: boolean;
}) {
const Comp = asChild ? Slot : "a";
return (
<Comp
data-slot="breadcrumb-link"
className={cn("hover:text-foreground transition-colors", className)}
{...props}
/>
);
}
function BreadcrumbPage({ className, ...props }: React.ComponentProps<"span">) {
return (
<span
data-slot="breadcrumb-page"
role="link"
aria-disabled="true"
aria-current="page"
className={cn("text-foreground font-normal", className)}
{...props}
/>
);
}
function BreadcrumbSeparator({
children,
className,
...props
}: React.ComponentProps<"li">) {
return (
<li
data-slot="breadcrumb-separator"
role="presentation"
aria-hidden="true"
className={cn("[&>svg]:size-3.5", className)}
{...props}
>
{children ?? <ChevronsLeft />}
</li>
);
}
function BreadcrumbEllipsis({
className,
...props
}: React.ComponentProps<"span">) {
return (
<span
data-slot="breadcrumb-ellipsis"
role="presentation"
aria-hidden="true"
className={cn("flex size-9 items-center justify-center", className)}
{...props}
>
<MoreHorizontal className="size-4" />
<span className="sr-only">More</span>
</span>
);
}
export {
Breadcrumb,
BreadcrumbEllipsis,
BreadcrumbItem,
BreadcrumbLink,
BreadcrumbList,
BreadcrumbPage,
BreadcrumbSeparator,
};

123
public/Parch.svg Normal file
View file

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 500 500">
<defs>
<style>
</style>
<image id="image" width="1024" height="1024" xlink:href="../Blue-Parch3.png"/>
</defs>
<!-- Generator: Adobe Illustrator 28.6.0, SVG Export Plug-In . SVG Version: 1.2.0 Build 709) -->
<g>
<g id="Layer_1">
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(512.8 44.1) rotate(160.2) scale(0)" xlink:href="#image"/>
<use transform="translate(508.8 464.7) rotate(123.3) scale(0)" xlink:href="#image"/>
<use transform="translate(80.5 512.8) rotate(-180) scale(0)" xlink:href="#image"/>
<use transform="translate(16.8 84.1) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(110.5 113.7) rotate(-47.4) scale(0)" xlink:href="#image"/>
<use transform="translate(80.5 215.8) rotate(-59.6) scale(0)" xlink:href="#image"/>
<use transform="translate(306.2 321.5) rotate(69.6) scale(0)" xlink:href="#image"/>
<use transform="translate(135.9 312.6) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(397.3 61.4) rotate(46.9) scale(0)" xlink:href="#image"/>
<use transform="translate(16.7 279.6) rotate(-68.1) scale(0)" xlink:href="#image"/>
<use transform="translate(223.8 420.4) rotate(124.4) scale(.1)" xlink:href="#image"/>
<use transform="translate(445 32.3) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(397.7 289.4) rotate(-59.9) scale(0)" xlink:href="#image"/>
<use transform="translate(238.5 122.3) rotate(69.1) scale(0)" xlink:href="#image"/>
<use transform="translate(57.7 -15.3) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(421.6 534.6) rotate(-144) scale(0)" xlink:href="#image"/>
<use transform="translate(96.2 521.1) rotate(-90) scale(0)" xlink:href="#image"/>
<use transform="translate(-.2 415.3) rotate(-38.1) scale(0)" xlink:href="#image"/>
<use transform="translate(95.7 356.8) rotate(132.8) scale(0)" xlink:href="#image"/>
<use transform="translate(198.4 434.8) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(385.9 87.2) rotate(-72.2) scale(0)" xlink:href="#image"/>
<use transform="translate(89.1 412.5) rotate(-144.2) scale(0)" xlink:href="#image"/>
<use transform="translate(15.9 162) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(237.1 192.5) rotate(32.4) scale(0)" xlink:href="#image"/>
<use transform="translate(52.6 346) rotate(-49.1) scale(0)" xlink:href="#image"/>
<use transform="translate(244 429.8) rotate(155.9) scale(0)" xlink:href="#image"/>
<use transform="translate(11.9 188) rotate(-95.2) scale(0)" xlink:href="#image"/>
<use transform="translate(481.3 54.2) rotate(60.1) scale(0)" xlink:href="#image"/>
<use transform="translate(127.2 274.7) rotate(69.1) scale(0)" xlink:href="#image"/>
<use transform="translate(46.6 271.3) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(7.9 345.5) rotate(-129.2) scale(0)" xlink:href="#image"/>
<use transform="translate(433 354.2) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(164.9 401.4) rotate(-125.9) scale(0)" xlink:href="#image"/>
<use transform="translate(111.2 352.6) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(385.9 387.2) rotate(-85.2) scale(0)" xlink:href="#image"/>
<use transform="translate(205.2 155.4) rotate(-158.2) scale(0)" xlink:href="#image"/>
<use transform="translate(245.1 165.9) rotate(-119.8) scale(0)" xlink:href="#image"/>
<use transform="translate(198.7 346.4) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(-5.4 64.1) rotate(-37.6) scale(0)" xlink:href="#image"/>
<use transform="translate(397.1 312.1) rotate(-33.9) scale(0)" xlink:href="#image"/>
<use transform="translate(474.4 241.1) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(510.5 149.4) rotate(-161) scale(0)" xlink:href="#image"/>
<use transform="translate(420.2 138.4) rotate(-19.3) scale(0)" xlink:href="#image"/>
<use transform="translate(67.7 214.1) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(38.1 -22.7) rotate(46) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
<use transform="translate(8.6 440) rotate(24.1) scale(0)" xlink:href="#image"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Before After
Before After

505
public/pattern.svg Normal file
View file

@ -0,0 +1,505 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg1"
width="666.66669"
height="666.66669"
viewBox="0 0 666.66669 666.66669"
sodipodi:docname="10aParch.ai"
inkscape:export-filename="10aParch.svg"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
inkscape:version="0.0"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs1">
<color-profile
inkscape:label="sRGB IEC61966-2.1"
name="sRGB IEC61966-2.1"
xlink:href="data:application/vnd.iccprofile;base64,AAAMbExpbm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAAAAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAACQd3RwdAAAAhQAAAAUYmtwdAAAAigAAAAUclhZWgAAAjwAAAAUZ1hZWgAAAlAAAAAUYlhZWgAAAmQAAAAUZG1uZAAAAngAAABwZG1kZAAAAugAAACIdnVlZAAAA3AAAACGdmlldwAAA/gAAAAkbHVtaQAABBwAAAAUbWVhcwAABDAAAAAkdGVjaAAABFQAAAAMclRSQwAABGAAAAgMZ1RSQwAABGAAAAgMYlRSQwAABGAAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAASAHMAUgBHAEIAIABJAEUAQwA2ADEAOQA2ADYALQAyAC4AMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYxOTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRlc2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABMCVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQETARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHpAfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAMLAxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZIBlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghuCIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3ArzCwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3eDfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExExEU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTwFRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkgGUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3DHeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLdIwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhxKKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6CLrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUTNU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76DwnPGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPARANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkviTCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSPVNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3JXhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeTZ+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHwcktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzhfUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhpiM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSKlPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFHobaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6hrxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8IbybvRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp22vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn+3f8B/yY/Sn9uv5L/tz/bf//"
id="color-profile1" />
</defs>
<sodipodi:namedview
id="namedview1"
pagecolor="#505050"
bordercolor="#ffffff"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="1"
inkscape:deskcolor="#505050"
inkscape:zoom="0.55075065"
inkscape:cx="249.65926"
inkscape:cy="344.07586"
inkscape:window-width="1536"
inkscape:window-height="800"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer-MC0">
<inkscape:page
x="0"
y="0"
inkscape:label="1"
id="page1"
width="666.66669"
height="666.66669"
margin="0"
bleed="0" />
</sodipodi:namedview>
<g
id="layer-MC0"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 96.292231,110.91249 c -2.937073,-0.41861 -4.476695,-0.94839 -8.610891,-2.96301 -3.426338,-1.66966 -4.294038,-2.26136 -6.472666,-4.4138 C 74.630695,97.036792 70.700699,86.94387 69.494994,73.452889 l -0.1766,-1.976029 2.134421,-1.598451 c 4.470031,-3.347574 10.535709,-6.583057 18.537418,-9.888015 3.66785,-1.514937 4.475181,-2.083931 3.847477,-2.711634 -0.260814,-0.260814 -1.214489,-0.170216 -5.248857,0.498646 -0.753526,0.124926 -4.238632,0.67721 -13.320425,2.110886 -2.11843,0.33442 -4.032238,0.609678 -4.252907,0.61168 -0.556513,0.0051 -0.503441,-1.043634 0.229502,-4.534901 0.573146,-2.730097 1.005928,-4.01877 3.218761,-9.584313 1.026811,-2.582554 4.269764,-8.82762 5.833669,-11.234094 2.029905,-3.123535 5.703998,-7.598657 8.179711,-9.96306 2.747275,-2.623755 6.958842,-6.085645 7.4035,-6.085645 0.184129,0 1.110358,0.891695 2.058287,1.981545 6.822419,7.843843 8.862199,10.054984 9.275719,10.054984 0.84256,0 0.41904,-1.988095 -2.01711,-9.468736 l -2.35188,-7.221917 2.26008,-0.905003 c 9.50425,-3.8057794 16.60742,-5.0936441 24.46362,-4.4354566 6.05748,0.5074925 9.4833,1.4923536 15.65076,4.4993126 5.07237,2.473044 6.86625,3.632274 4.80288,3.103692 -3.36807,-0.862819 -7.03477,-0.768576 -9.93704,0.255406 -9.04807,3.192345 -13.62852,10.035105 -13.65889,20.405088 -0.005,1.868261 0.13378,4.407906 0.30944,5.643656 0.17566,1.23575 0.55447,3.90786 0.8418,5.938021 0.28734,2.030161 0.58927,4.052298 0.67095,4.493637 0.32419,1.751553 1.38046,12.217154 1.52589,15.118638 l 0.15449,3.082106 -3.73902,0.717268 c -2.05646,0.394496 -4.75009,0.916317 -5.98584,1.159606 -1.23575,0.243285 -2.75235,0.524632 -3.37023,0.625212 -0.61787,0.100581 -2.16449,0.394497 -3.43694,0.653141 -1.27244,0.258647 -2.37638,0.470269 -2.4532,0.470269 -0.0768,0 -0.22271,0.216371 -0.32419,0.480822 -0.32107,0.836702 1.00076,1.343392 9.54225,3.657773 4.56666,1.237371 8.36333,2.310076 8.43705,2.383791 0.28055,0.280551 -0.93244,5.195601 -2.174,8.809073 -2.22935,6.488367 -4.18119,9.797733 -7.70013,13.055643 -3.64683,3.37633 -8.25713,5.82506 -12.75981,6.77729 -2.70892,0.57289 -7.39053,0.80503 -9.673369,0.47967 z"
id="path225" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 35.9491,46.738407 c -2.655804,-0.858641 -4.220428,-1.760103 -6.208342,-3.576942 -3.788602,-3.462569 -5.169271,-7.011872 -5.177895,-13.310873 -0.0049,-3.542618 0.135478,-4.743132 0.92937,-7.95076 l 0.935084,-3.778096 1.631394,-0.447942 c 2.728666,-0.749227 8.975493,-1.433293 13.293453,-1.455713 2.241279,-0.01164 2.078148,-0.662089 -0.291446,-1.162076 C 36.198414,14.030051 29.983679,12.554443 29.775416,12.376457 28.98423,11.700292 35.488039,4.4658719 39.829956,1.1924328 l 1.794523,-1.35291985 h 6.259906 6.259906 l 0.764926,2.24681875 c 0.766806,2.2523433 1.54721,2.9471396 1.622347,1.4443835 0.02207,-0.4413394 0.07623,-0.9468737 0.120365,-1.1234094 0.04413,-0.1765358 0.0983,-0.8265083 0.120366,-1.44438349 l 0.04012,-1.12340936 H 67.0574 77.302386 L 79.896364,2.637664 c 1.426691,1.538983 2.593981,2.9172361 2.593981,3.0627844 0,0.1455483 -0.678941,-0.1332524 -1.508755,-0.6195567 -1.277371,-0.7485893 -1.954215,-0.9030083 -4.413394,-1.006898 -3.871644,-0.1635601 -6.062209,0.6185447 -8.379051,2.991599 -2.374015,2.4316115 -3.425012,4.8764483 -5.28905,12.3034023 -1.630086,6.494801 -3.043528,11.20234 -3.516217,11.710924 -0.13618,0.146522 -2.556251,-0.178464 -5.377933,-0.722192 -5.599449,-1.078994 -6.180803,-1.142501 -6.180803,-0.675192 0,0.172372 1.949917,1.77513 4.33315,3.561684 2.383233,1.786555 4.33315,3.357241 4.33315,3.49042 0,0.515035 -3.224527,4.44371 -5.180667,6.311978 -2.296802,2.19363 -3.880912,3.110843 -6.592534,3.81713 -2.483075,0.64676 -6.561306,0.588468 -8.769141,-0.12534 z"
id="path226" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 167.1183,45.102106 c -4.14147,-0.749846 -6.88738,-1.929956 -10.88653,-4.678708 -1.62989,-1.120279 -1.64746,-1.148217 -0.55933,-0.889605 1.92306,0.457045 5.18804,0.279013 7.06143,-0.385047 1.27069,-0.45042 2.31792,-1.170852 3.73731,-2.571041 1.76379,-1.73993 2.06092,-2.226896 2.81473,-4.613133 l 0.84277,-2.667856 -0.0864,-10.206876 c -0.0476,-5.613781 0.006,-10.2999359 0.11901,-10.4136769 0.113,-0.113741 2.71076,-0.425163 5.7728,-0.6920494 3.06203,-0.2668861 5.63309,-0.5509999 5.71345,-0.6313641 0.34662,-0.3466199 -0.98439,-1.0961962 -3.82785,-2.1557012 -1.67709,-0.6249032 -3.81075,-1.4566052 -4.74147,-1.8482267 -1.79791,-0.7565058 -1.77973,-0.7058905 -1.00114,-2.78711702 l 0.27017,-0.72219173 h 15.87426 15.87427 l 0.54812,2.46368785 c 0.33219,1.4931169 0.5621,3.990463 0.5836,6.3392385 l 0.0355,3.8755507 -3.24414,1.613599 c -3.0496,1.516842 -5.84166,2.578793 -10.15653,3.863002 -3.27104,0.973541 -2.25892,1.204964 4.16695,0.952786 3.3069,-0.129776 6.24409,-0.280548 6.52708,-0.335047 0.283,-0.0545 0.71213,0.02303 0.95363,0.172285 1.39922,0.864765 -3.99234,11.11351 -8.3059,15.788587 -1.76302,1.910782 -5.98432,5.274777 -7.79215,6.209643 l -0.88968,0.460068 -2.66616,-3.834505 c -2.36216,-3.397292 -3.46859,-4.53207 -3.46859,-3.557455 0,0.170039 0.42829,2.365708 0.95176,4.879265 0.52347,2.513558 0.89068,4.631191 0.81602,4.705853 -0.0747,0.07466 -1.47791,0.48893 -3.11834,0.920596 -3.29607,0.867339 -9.20438,1.23687 -11.91859,0.745439 z"
id="path227" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 278.85528,27.691178 c -0.26099,-2.376549 -1.54245,-4.713529 -3.62771,-6.615813 -2.10527,-1.920535 -4.38707,-2.766008 -7.38977,-2.738126 -2.96997,0.02758 -5.53711,0.881371 -11.17465,3.716522 -2.4959,1.2552 -6.19588,2.971099 -8.22218,3.813111 l -3.68419,1.53093 -1.32201,-2.30432 c -0.7271,-1.267376 -1.95798,-3.448208 -2.73529,-4.846293 -2.21658,-3.986803 -2.35046,-3.8084 -2.08145,2.773789 l 0.2294,5.613096 -1.51053,0.207041 c -2.49161,0.341513 -6.259,0.224932 -8.57236,-0.26527 -2.89554,-0.613566 -5.09769,-1.849077 -7.45359,-4.181813 -3.43487,-3.401106 -5.03811,-7.533231 -4.75316,-12.250595 0.2468,-4.0859666 1.76508,-7.405821 4.98397,-10.8978994 l 1.29603,-1.40602465 h 9.06015 9.06015 l 2.04668,2.32706225 c 2.2807,2.5931575 2.55553,2.8370725 2.93342,2.6035198 0.14475,-0.089456 -0.29897,-1.2354315 -0.98603,-2.5466141 l -1.2492,-2.38396795 H 255.388 c 11.03024,0 11.66803,0.0314764 11.38155,0.56170468 -0.16691,0.30893758 -1.10587,1.93161977 -2.08657,3.60596017 -1.06233,1.8137081 -1.66581,3.1615301 -1.49296,3.334381 0.24661,0.2466122 3.59179,-1.9696007 7.43485,-4.9256625 l 0.84614,-0.6508433 1.74651,2.1667276 c 3.28906,4.0804126 4.82233,6.9018684 6.06145,11.1540024 0.61968,2.126493 0.73944,3.229742 0.69684,6.419482 -0.0283,2.118429 -0.24656,4.790539 -0.48504,5.938021 l -0.4336,2.086332 z"
id="path228" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 222.71974,124.56434 c -0.0683,-0.0633 -1.13527,-0.21132 -2.37102,-0.32902 -6.09096,-0.58013 -14.00353,-3.61991 -18.45601,-7.09024 -3.11992,-2.43172 -6.79736,-5.65666 -6.63523,-5.81879 0.0698,-0.0698 0.83908,0.23081 1.70952,0.66801 3.08828,1.55115 6.33844,1.84497 10.63653,0.96154 6.09597,-1.25296 10.62146,-5.52532 13.04832,-12.3185 0.91237,-2.553852 1.53921,-6.709635 2.10781,-13.974332 0.54268,-6.933358 1.86832,-17.346561 2.44637,-19.216778 0.17604,-0.569563 0.5164,-0.589635 6.65139,-0.392267 3.55622,0.114407 7.48413,0.289714 8.7287,0.389572 1.78572,0.143277 2.34738,0.07969 2.6638,-0.301565 0.53072,-0.639485 -0.57701,-1.463905 -5.23891,-3.899027 -8.5242,-4.452562 -9.49732,-5.056934 -9.2859,-5.767149 0.76097,-2.556299 5.34533,-9.94762 7.90915,-12.751841 2.99126,-3.271738 7.77217,-5.896946 12.55567,-6.894334 3.04482,-0.634862 8.15901,-0.624686 10.92505,0.02174 4.80781,1.123585 11.16351,5.191631 14.07811,9.010861 2.22067,2.909923 4.2814,7.896443 5.37216,12.999452 0.57977,2.712402 0.66747,11.196828 0.15759,15.246269 -0.24451,1.941894 -0.4515,3.700774 -0.45997,3.908624 -0.0465,1.141763 -9.51626,4.241416 -17.99299,5.889503 -3.59761,0.699463 -6.6924,1.423045 -6.87731,1.607955 -0.47892,0.478928 0.3616,0.938653 1.74477,0.954297 0.61787,0.007 1.8456,0.08326 2.72828,0.169484 1.74969,0.170922 15.6086,1.111537 16.37728,1.111537 0.7163,0 0.58494,0.67886 -0.69575,3.595411 -1.6255,3.701804 -6.43173,10.655728 -9.93819,14.379138 -0.74813,0.79441 -1.62424,1.7353 -1.94692,2.09087 -0.84157,0.92736 -5.19941,4.69066 -6.5247,5.63456 -2.19857,1.56585 -6.69352,4.16574 -9.09141,5.2585 l -2.43488,1.10961 -1.25682,-2.3124 c -0.69125,-1.27182 -2.16296,-4.04566 -3.27046,-6.16409 -2.31175,-4.42189 -2.46801,-4.65413 -3.13147,-4.65413 -0.42333,0 -0.4615,0.51269 -0.28076,3.77145 0.11505,2.07429 0.35064,5.07139 0.52353,6.66021 0.1729,1.58882 0.31693,3.4053 0.32006,4.03663 l 0.006,1.14786 -3.45047,0.54758 c -3.12794,0.49639 -11.0476,0.99443 -11.35063,0.7138 z"
id="path229" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 190.04139,95.462468 c -1.76145,-0.228039 -7.40712,-2.485116 -7.40712,-2.961281 0,-0.07118 0.77246,-0.129426 1.71659,-0.129426 2.60978,0 5.07482,-1.248506 6.30976,-3.195805 1.42028,-2.239548 1.70469,-3.646592 1.48114,-7.327559 -0.10721,-1.765358 -0.28804,-5.030673 -0.40183,-7.256256 l -0.20691,-4.046515 0.76645,-0.18268 c 0.42155,-0.100474 2.17829,-0.36322 3.90386,-0.583881 1.93145,-0.246988 3.09546,-0.533698 3.02828,-0.745904 -0.06,-0.189586 -1.53006,-0.807337 -3.26676,-1.372778 -1.73669,-0.565442 -3.27709,-1.147545 -3.42311,-1.293561 -0.68988,-0.689879 1.65812,-5.968541 3.51267,-7.897023 2.35993,-2.454013 6.53296,-3.808813 9.66372,-3.137386 5.98238,1.28299 9.67959,6.660922 10.01551,14.56846 0.0649,1.527093 -0.0308,1.929474 -0.54183,2.279957 -1.35184,0.92704 -3.63817,2.054672 -6.23767,3.076457 -3.6622,1.439503 -3.89375,1.746799 -1.12341,1.490899 1.23575,-0.114148 3.3866,-0.300113 4.77967,-0.413257 l 2.53285,-0.205714 -0.23435,1.25472 c -0.32531,1.741703 -2.11858,5.523515 -3.86437,8.149562 -1.38472,2.082917 -3.84579,4.611923 -5.93735,6.101246 l -0.94053,0.669716 -1.97986,-2.499753 c -2.88509,-3.642685 -3.00691,-3.571315 -1.73745,1.017892 0.43751,1.581632 0.68848,2.972153 0.55772,3.090044 -0.70335,0.63411 -6.58622,1.954928 -8.26211,1.855002 -0.35307,-0.02105 -1.56967,-0.158381 -2.70356,-0.305176 z"
id="path230" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 152.95103,119.87049 c -2.17083,-0.37414 -6.53073,-2.5846 -8.09822,-4.1058 -3.69318,-3.58412 -6.14223,-9.6853 -6.94682,-17.306275 l -0.17795,-1.685506 2.44259,-1.64824 c 2.19182,-1.479026 6.17618,-3.524156 10.44647,-5.362066 1.42213,-0.612078 2.03786,-1.340626 1.12341,-1.329243 -0.22067,0.0027 -3.00111,0.433815 -6.17875,0.957928 -7.7212,1.273518 -7.18358,1.326843 -6.86618,-0.681025 0.59378,-3.75618 3.87568,-11.083079 6.59602,-14.725732 2.15988,-2.892158 7.17501,-7.703378 8.02987,-7.703378 0.17116,0 1.33608,1.191616 2.58872,2.648036 2.84602,3.309008 4.13569,4.546584 4.3599,4.183802 0.0959,-0.155226 -0.5188,-2.390656 -1.36607,-4.967621 l -1.54049,-4.685392 2.23066,-0.875171 c 9.05783,-3.553714 17.5568,-3.029321 24.80543,1.530513 l 0.96293,0.605738 -1.69014,-0.213685 c -4.47279,-0.565499 -9.38887,2.171176 -11.21209,6.241528 -1.46702,3.275145 -1.59512,5.817941 -0.63192,12.543879 0.78735,5.497962 1.62193,13.496865 1.42289,13.637448 -0.0472,0.03331 -2.25234,0.458891 -4.90037,0.945728 -2.64804,0.486838 -5.1396,0.979632 -5.53681,1.0951 -1.86221,0.541348 -0.66682,1.126694 5.85778,2.868394 4.128,1.10194 4.12327,1.09468 3.04363,4.66427 -1.00034,3.30737 -2.60709,6.57993 -4.03394,8.21613 -3.3173,3.80404 -9.66518,6.02362 -14.73055,5.15064 z"
id="path231" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 42.172164,114.08836 c -2.510723,-0.32563 -4.178848,-0.77572 -7.255269,-1.9576 -2.356092,-0.90515 -2.487847,-1.00907 -2.70797,-2.13599 -0.304632,-1.55956 -0.291867,-8.30502 0.02099,-11.091071 0.392318,-3.493684 -0.337476,-2.561537 -2.241031,2.862411 -0.925995,2.63851 -1.810601,5.12785 -1.965792,5.53187 l -0.282165,0.73458 -1.528309,-1.19069 c -1.585313,-1.23511 -5.116319,-5.50161 -6.882869,-8.316542 -1.751883,-2.791563 -3.014941,-6.271148 -4.094881,-11.280944 -0.08329,-0.386387 -0.02907,-0.77815 0.120495,-0.870586 0.149565,-0.09243 1.692948,-0.475939 3.429742,-0.85223 3.826227,-0.828983 4.849899,-1.191609 4.457543,-1.579042 -0.161148,-0.159127 -2.136075,-0.613354 -4.388726,-1.009394 l -4.095728,-0.720073 0.19003,-1.626715 c 0.277727,-2.377437 1.370908,-6.723539 2.128363,-8.46162 1.044799,-2.397433 3.35173,-5.681562 5.086819,-7.241556 1.711321,-1.538625 4.506926,-3.494139 4.707905,-3.29316 0.06723,0.06723 -0.237265,0.652011 -0.676666,1.299504 -1.583634,2.333616 -1.811047,6.120791 -0.540955,9.008687 1.339138,3.044889 4.030157,5.007214 9.744664,7.105931 5.122188,1.88118 10.884994,4.284141 11.354011,4.734368 0.280008,0.268791 0.06501,1.306114 -0.872235,4.208407 -1.614667,4.999998 -1.747466,5.616649 -1.209987,5.618578 0.234696,8.44e-4 1.879356,-1.544051 3.654802,-3.433099 l 3.228082,-3.434632 2.259391,2.229447 c 4.319178,4.261939 5.8049,7.625407 5.478617,12.402851 -0.292045,4.27616 -2.274008,7.76694 -5.826219,10.26156 -3.25841,2.28829 -6.823152,3.07644 -11.29265,2.49675 z"
id="path232" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 238.32068,190.817 c -1.70394,-0.30872 -5.24407,-1.6761 -7.37981,-2.85045 l -1.2839,-0.70597 1.58321,0.14157 c 1.91786,0.17149 4.56617,-0.47631 6.44241,-1.57585 4.54043,-2.66088 6.39351,-7.95214 5.16465,-14.7471 -1.04727,-5.79084 -2.07158,-12.24757 -2.27569,-14.34488 l -0.20903,-2.14787 1.22719,-0.32091 c 1.12249,-0.29352 4.00791,-0.97081 8.36887,-1.9644 3.02254,-0.68864 2.29444,-1.13205 -4.2529,-2.59003 -2.4715,-0.55035 -4.58408,-1.09524 -4.69462,-1.21086 -0.23703,-0.24792 0.4483,-3.70349 1.18753,-5.98775 0.98733,-3.05088 2.1871,-5.14251 3.96703,-6.91592 4.39185,-4.37576 10.5924,-5.90012 16.26031,-3.99747 3.76184,1.26281 5.71798,2.62865 7.8343,5.47013 2.42189,3.25176 4.10417,7.49138 4.99372,12.585 l 0.57458,3.29005 -0.76557,0.81491 c -1.14741,1.22137 -5.12233,3.67473 -9.53713,5.88642 -2.16256,1.08339 -3.93193,2.11312 -3.93193,2.28829 0,0.40848 -0.69332,0.50719 6.78025,-0.9654 3.58376,-0.70614 6.64011,-1.28389 6.79188,-1.28389 0.51332,0 -0.17113,3.67316 -1.28086,6.87385 -2.26901,6.54434 -5.34656,11.5599 -9.47787,15.44634 -1.40013,1.31715 -2.67594,2.39481 -2.83513,2.39481 -0.15919,0 -1.79603,-1.55271 -3.63742,-3.45047 -1.84139,-1.89776 -3.45582,-3.34282 -3.58762,-3.21124 -0.1318,0.13158 0.52574,2.33855 1.46121,4.90438 0.93546,2.56583 1.64495,4.70486 1.57663,4.7534 -0.68442,0.48631 -5.12783,2.2481 -7.02517,2.78545 -2.73251,0.77389 -9.34864,1.12333 -12.03912,0.63586 z"
id="path233" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 201.25076,173.81481 c -1.85362,-0.34448 -3.52886,-0.63149 -3.72275,-0.6378 -0.91619,-0.0298 -2.44078,-6.48723 -2.98424,-12.63971 -0.16909,-1.91426 -0.39023,-3.56326 -0.49143,-3.66445 -0.49517,-0.49518 -0.53864,-0.29592 -2.44903,11.22811 l -0.35763,2.15734 -1.81816,-0.92093 c -0.99998,-0.50651 -2.39591,-1.37648 -3.10205,-1.93327 -2.75697,-2.17384 -7.36127,-7.04373 -9.04626,-9.56807 -1.64197,-2.4599 -4.0895,-7.4705 -4.33045,-8.86533 -0.0858,-0.4966 0.66003,-0.93121 4.21935,-2.45876 2.37796,-1.02055 4.37602,-2.01293 4.44014,-2.2053 0.0695,-0.2086 -0.37997,-0.36218 -1.11381,-0.38053 -4.19336,-0.1049 -8.34894,-0.31689 -8.69305,-0.44345 -0.6503,-0.23919 -0.51141,-7.1358 0.21455,-10.65351 0.95483,-4.62676 3.19694,-8.91378 6.42118,-12.27758 2.61959,-2.73298 3.38421,-3.15146 2.44711,-1.33932 -2.07105,4.00497 -0.76638,10.08206 2.78234,12.95999 2.80907,2.27809 4.94227,3.03448 12.28812,4.3571 5.5857,1.00571 11.68462,2.46044 12.11927,2.89071 0.13378,0.13243 -0.0355,2.32679 -0.37611,4.87636 -0.87182,6.52532 -0.86948,6.49213 -0.4675,6.62751 0.1994,0.0672 1.71363,-1.90626 3.36495,-4.38538 1.65131,-2.47913 3.15041,-4.5075 3.33133,-4.5075 0.66212,0 4.52698,2.75953 6.58833,4.70411 3.45688,3.26104 4.9477,6.81506 4.89341,11.66557 -0.0652,5.82222 -2.91557,10.70893 -7.97647,13.67481 -3.69319,2.16436 -10.1559,2.85902 -16.18114,1.73928 z"
id="path234" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 83.334633,181.99425 c -4.820363,-0.99923 -10.270599,-4.51466 -13.212216,-8.52195 -1.261814,-1.71893 -3.154762,-5.86735 -3.87478,-8.49161 -0.936014,-3.41152 -0.252827,-10.09984 1.491777,-14.60432 1.577449,-4.0729 4.444116,-8.81649 8.346527,-13.81135 l 0.817513,-1.04637 2.713202,0.39654 c 4.165851,0.60884 9.29033,2.00592 14.586894,3.97681 3.089963,1.14979 4.923056,1.67988 5.121829,1.4811 0.438088,-0.43809 0.183886,-0.64037 -7.045324,-5.60633 -3.530715,-2.42536 -6.907454,-4.77391 -7.503865,-5.21901 l -1.084383,-0.80928 0.763409,-0.60704 c 4.704143,-3.74062 14.660586,-8.02176 21.947704,-9.43722 3.07787,-0.59786 12.35801,-0.81138 14.71446,-0.33857 l 1.23355,0.24751 -0.22782,6.67822 c -0.15926,4.66862 -0.12343,6.74275 0.11909,6.89263 0.47001,0.29048 1.46739,-1.38732 3.89355,-6.54973 1.12003,-2.38323 2.23972,-4.64792 2.48818,-5.03265 l 0.45177,-0.69951 2.14452,0.80709 c 2.38712,0.89839 5.41413,2.3783 8.08254,3.95158 5.5772,3.28828 11.59675,9.87313 13.85038,15.15108 1.12124,2.62593 3.2124,8.66742 3.05467,8.82515 -0.056,0.056 -0.66,-0.74719 -1.34228,-1.7848 -3.32229,-5.05246 -11.06442,-7.49547 -17.10097,-5.39616 -4.33574,1.50782 -7.53595,4.21436 -11.46415,9.69567 -4.54399,6.34056 -8.67346,11.82031 -11.17483,14.82885 l -2.45504,2.95282 -4.89917,-3.19212 c -7.801664,-5.08328 -8.608686,-5.55187 -8.958779,-5.20177 -0.412969,0.41296 0.186158,1.76451 2.241309,5.05605 3.29646,5.27966 4.92194,8.22209 4.76624,8.62784 -0.39406,1.02691 -7.094935,4.76764 -11.293266,6.30441 -2.482132,0.90856 -7.978873,1.14255 -11.192241,0.47644 z"
id="path235" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 82.490345,181.63661 c -6.02918,-1.61864 -11.537099,-6.0785 -14.036954,-11.36595 -2.118694,-4.48127 -2.460894,-5.8378 -2.427529,-9.62312 0.06701,-7.60241 2.693203,-14.06497 9.35762,-23.02732 l 1.489816,-2.00351 1.444384,0.18675 c 3.368646,0.43555 9.20047,1.92771 14.435976,3.69365 5.621711,1.89621 6.748314,2.16017 6.748314,1.58113 0,-0.37227 -1.432363,-1.42926 -9.559435,-7.05424 l -6.189207,-4.28372 1.69557,-1.23757 c 2.123359,-1.5498 9.141837,-5.02757 12.827635,-6.35629 5.691695,-2.05185 8.620305,-2.61144 14.714765,-2.81165 3.09401,-0.10164 6.44247,-0.0827 7.44102,0.042 l 1.81555,0.22684 -0.18753,6.36174 c -0.10314,3.49895 -0.0881,6.62084 0.0334,6.93753 0.2081,0.54232 0.25293,0.54403 0.77086,0.0293 0.30245,-0.30056 1.77764,-3.03442 3.27819,-6.07525 2.664,-5.39852 2.75083,-5.52712 3.685,-5.45821 1.41281,0.1042 9.63326,4.27455 12.04273,6.10945 2.99835,2.28333 7.68962,7.31846 9.44956,10.14217 1.37401,2.2045 4.9135,10.98789 4.56735,11.33405 -0.078,0.078 -0.4481,-0.35383 -0.82248,-0.95958 -0.95667,-1.54794 -3.23001,-3.56644 -5.06087,-4.49357 -5.2779,-2.67268 -11.22996,-2.41337 -16.04546,0.69905 -2.88658,1.86568 -5.12742,4.34941 -10.38466,11.5103 -5.17189,7.04463 -10.56513,13.89416 -10.94008,13.89416 -0.12931,0 -2.88412,-1.71082 -6.12181,-3.80183 -6.796401,-4.38933 -7.235561,-4.64043 -7.65871,-4.37891 -0.59378,0.36698 -0.307965,1.02624 2.44572,5.64132 3.4251,5.74033 4.39031,7.62222 4.18448,8.1586 -0.4439,1.15679 -8.598136,5.53873 -11.914155,6.40244 -2.457807,0.64018 -8.662064,0.62908 -11.07909,-0.0198 z"
id="path236" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 32.09741,188.75257 c -7.358212,-2.05947 -11.937918,-8.09143 -13.63303,-17.95615 -0.83505,-4.85957 -0.889983,-4.68879 2.158206,-6.70981 2.554222,-1.6935 5.352874,-3.12189 9.612842,-4.90622 2.329018,-0.97554 2.307088,-0.9611 2.061927,-1.35777 -0.109448,-0.1771 -0.812467,-0.19452 -1.717256,-0.0426 -0.842568,0.14151 -3.554079,0.56213 -6.02558,0.93472 -2.471501,0.3726 -4.836094,0.75037 -5.254652,0.83951 -0.740445,0.15768 -0.754875,0.12042 -0.533872,-1.37843 0.519338,-3.52216 3.772109,-10.96597 6.3835,-14.60833 2.029066,-2.83013 7.502161,-8.27693 8.316887,-8.27693 0.0987,0 1.570565,1.58882 3.27082,3.53071 1.700254,1.94189 3.229558,3.53072 3.398453,3.53072 0.508927,0 0.369479,-0.64101 -1.147312,-5.2739 -0.799917,-2.44326 -1.41378,-4.47166 -1.36414,-4.50755 0.517836,-0.37438 4.857125,-1.84706 7.061143,-2.39643 3.318766,-0.82723 8.999913,-0.93388 12.034611,-0.22594 1.964547,0.4583 4.870557,1.65392 7.513721,3.09136 l 1.483244,0.80664 h -3.088114 c -2.716234,0 -3.303463,0.10584 -4.876425,0.87889 -5.440351,2.67372 -7.33949,8.04967 -5.92593,16.77469 0.689629,4.25663 1.449002,10.99477 1.452337,12.88699 l 0.0029,1.65289 -2.327062,0.51613 c -1.279884,0.28388 -3.539754,0.72865 -5.021933,0.98838 -3.176092,0.55657 -3.885098,0.75921 -3.885098,1.11041 0,0.44866 1.443535,0.90955 9.228005,2.94634 0.918249,0.24025 1.36414,0.53224 1.36414,0.89328 0,0.90666 -1.950653,6.83766 -2.801484,8.51797 -1.731402,3.41935 -5.962982,6.60404 -10.263187,7.72411 -2.18528,0.56919 -5.47661,0.57636 -7.477672,0.0163 z"
id="path237" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 43.652478,232.95324 c -3.863147,-0.20979 -8.289873,-1.24438 -11.949293,-2.79272 l -1.196661,-0.50632 1.601542,-4.55278 c 0.880848,-2.50403 1.478626,-4.6757 1.328395,-4.82593 -0.150231,-0.15023 -1.824956,1.39071 -3.721611,3.42432 l -3.448463,3.69747 -2.641857,-2.22469 c -4.135175,-3.4822 -7.250176,-7.89621 -8.840567,-12.52725 -0.763062,-2.22194 -1.308694,-6.30575 -1.265106,-9.46873 0.02532,-1.83762 0.03958,-1.87048 0.311292,-0.71721 1.02748,4.36118 5.152724,7.86733 9.633705,8.18794 4.179943,0.29907 6.654757,-0.78638 13.419074,-5.88563 4.559156,-3.43689 10.398795,-7.52312 10.751311,-7.52312 0.08508,0 1.768526,1.91381 3.740985,4.2529 1.97246,2.3391 3.749976,4.25291 3.950039,4.25291 0.447849,0 0.332507,-1.34056 -0.313197,-3.64013 -0.764836,-2.72383 -1.720058,-6.5975 -1.725438,-6.9971 -0.008,-0.59433 5.020366,-1.77478 8.339007,-1.95765 4.649881,-0.25622 8.448555,1.05256 11.593659,3.99443 3.366405,3.14888 5.084165,6.92816 5.130838,11.28846 0.03373,3.15145 -0.233326,4.55756 -1.329764,7.00138 -1.641079,3.65775 -4.682681,7.24901 -8.813371,10.40605 -3.125463,2.38875 -3.144943,2.39396 -5.241886,1.40204 -2.252618,-1.06556 -6.55917,-3.85412 -9.475495,-6.13552 -2.185478,-1.70968 -2.775707,-2.00861 -2.775707,-1.4058 0,0.17311 1.801467,2.59245 4.003259,5.37631 2.201789,2.78386 4.022493,5.206 4.046001,5.38254 0.158224,1.18814 -9.574847,2.79446 -15.110691,2.49383 z"
id="path238" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 104.95853,240.45642 c -2.95912,-1.05251 -4.46398,-1.88895 -5.94803,-3.30606 -3.561728,-3.40108 -5.820204,-8.46529 -6.805129,-15.25925 -0.537914,-3.7105 -0.536445,-3.78465 0.0846,-4.26956 1.71302,-1.3375 6.810951,-4.16249 10.180999,-5.64175 3.54602,-1.55649 4.51276,-2.22557 3.20974,-2.22145 -0.30893,9.8e-4 -3.30602,0.43162 -6.660204,0.95699 -3.354179,0.52536 -6.219532,0.95787 -6.367451,0.96114 -0.77365,0.0171 1.285191,-6.8632 3.188102,-10.65409 2.547879,-5.07576 6.588383,-10.11365 10.180033,-12.69299 l 1.44352,-1.03666 1.55544,1.82706 c 4.22753,4.96579 4.47521,5.23002 4.90273,5.23002 0.55531,0 0.42153,-0.6358 -1.08695,-5.16634 -0.78697,-2.36355 -1.32862,-4.3853 -1.20366,-4.49278 0.40076,-0.34473 4.37382,-1.82643 6.34377,-2.36584 1.04928,-0.28732 3.64105,-0.60676 5.75948,-0.70988 4.74202,-0.23083 7.57808,0.28728 11.50605,2.10201 4.3892,2.02781 4.44563,2.12702 1.20991,2.12702 -2.35959,0 -3.04859,0.13233 -4.69161,0.90109 -1.15534,0.54058 -2.52958,1.54374 -3.43482,2.50737 -2.99378,3.1868 -3.6892,7.24059 -2.55387,14.88706 0.8884,5.98334 1.41615,11.26378 1.28275,12.83453 l -0.10867,1.27946 -5.41838,1.03617 c -2.98012,0.5699 -5.48614,1.10393 -5.56895,1.18674 -0.35624,0.35624 0.36133,0.82486 1.92574,1.25762 0.92355,0.25548 3.17537,0.87179 5.00404,1.36958 1.82868,0.49779 3.39294,1.08248 3.47615,1.2993 0.23866,0.62197 -1.10088,5.11629 -2.29568,7.70229 -3.31263,7.16976 -11.89117,10.91871 -19.10965,8.3512 z"
id="path239" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 149.41345,234.01193 c -1.94906,-0.38685 -7.92686,-2.71326 -8.57001,-3.33524 -0.12358,-0.1195 0.96275,-0.21728 2.41405,-0.21728 2.33445,0 2.88586,-0.12166 4.78167,-1.05496 5.24592,-2.58256 7.27754,-7.98043 5.8849,-15.6357 -1.12056,-6.15962 -1.77611,-10.38292 -2.03011,-13.07864 -0.22673,-2.40639 -0.19354,-2.82988 0.23236,-2.96434 0.27328,-0.0863 2.7235,-0.65955 5.44492,-1.27394 2.72142,-0.61439 5.0927,-1.26173 5.2695,-1.43853 0.43175,-0.43175 8.6e-4,-0.57919 -5.72391,-1.95862 l -4.81461,-1.16011 0.11086,-1.42041 c 0.13685,-1.75342 1.46173,-6.02644 2.51444,-8.10958 1.68778,-3.33986 5.06727,-6.06374 9.25074,-7.45614 2.2432,-0.74661 2.93297,-0.83512 5.45656,-0.70015 8.83929,0.47272 14.8806,7.17071 16.84813,18.67949 l 0.64403,3.7672 -0.72172,0.6158 c -1.87133,1.59667 -5.66524,3.91025 -9.34979,5.70164 -3.51465,1.70879 -4.81237,2.61149 -3.75425,2.61149 0.26765,0 11.21431,-2.06962 12.66542,-2.39458 0.5594,-0.12527 0.58836,0.0182 0.39147,1.93998 -0.3757,3.66709 -3.35083,10.77471 -6.28943,15.02554 -0.91177,1.31892 -2.96656,3.65973 -4.56621,5.2018 l -2.90846,2.80376 -1.62048,-1.73927 c -4.27588,-4.58932 -5.10922,-5.43047 -5.38002,-5.43047 -0.47627,0 -0.36727,0.42183 1.33408,5.16308 0.89426,2.49207 1.58034,4.57096 1.52463,4.61975 -0.48549,0.42521 -5.27662,2.25518 -7.25129,2.76964 -3.23237,0.84212 -8.79245,1.06325 -11.78747,0.46879 z"
id="path240" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 188.59862,261.27923 c -3.51784,-1.4462 -5.92378,-4.62694 -7.21577,-9.5395 -0.33888,-1.28857 -0.69146,-3.07392 -0.78349,-3.96746 l -0.16734,-1.6246 1.6124,-1.05557 c 1.62494,-1.06378 4.86455,-2.73925 7.08957,-3.66661 1.22029,-0.5086 1.67189,-1.21259 0.64195,-1.00073 -0.30894,0.0636 -2.00609,0.34182 -3.77145,0.61838 -1.76535,0.27656 -3.62881,0.58842 -4.141,0.69302 l -0.93127,0.19018 0.20853,-1.52141 c 0.28903,-2.10866 2.53961,-7.09893 4.3897,-9.73335 1.48473,-2.11419 4.94461,-5.50346 5.60963,-5.49516 0.17654,0.002 1.25164,1.08345 2.38913,2.40276 1.13749,1.31932 2.18467,2.39877 2.32706,2.39877 0.3308,0 0.39783,0.30559 -0.70401,-3.20975 -0.52567,-1.67708 -0.95737,-3.21066 -0.95934,-3.40794 -0.006,-0.62939 5.11585,-2.10853 7.92708,-2.28914 3.33673,-0.21437 6.04681,0.31188 8.74669,1.69844 l 2.09963,1.07831 -1.60487,0.0228 c -2.85739,0.0407 -5.65034,1.76018 -6.94366,4.27497 -0.97708,1.89988 -1.06216,4.63575 -0.30896,9.93438 0.36996,2.60254 0.67265,5.51717 0.67265,6.47697 v 1.74509 l -1.8456,0.35822 c -4.52247,0.87777 -5.57589,1.15198 -5.5805,1.45265 -0.003,0.17654 1.55873,0.73832 3.46986,1.2484 1.91113,0.51008 3.51898,0.96352 3.57301,1.00766 0.24823,0.20276 -1.04125,4.29973 -1.87005,5.94159 -2.49985,4.95216 -8.6411,7.14271 -13.92958,4.9686 z"
id="path241" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 272.82799,310.00301 c -4.99256,-0.81526 -8.31285,-1.75865 -13.25033,-3.76479 -5.15807,-2.09578 -6.89691,-3.06587 -7.14837,-3.98804 -0.343,-1.25786 -0.42847,-11.72595 -0.11705,-14.33641 0.14742,-1.23575 0.58076,-4.53823 0.96299,-7.33884 0.58134,-4.25964 0.62329,-5.13632 0.25658,-5.36295 -0.2411,-0.14901 -0.54556,-0.16373 -0.67658,-0.0327 -0.13101,0.13101 -1.11469,2.3999 -2.18595,5.04197 -1.07125,2.64207 -2.14013,5.23708 -2.37528,5.76669 -0.23514,0.5296 -1.18473,2.87408 -2.11019,5.20994 -0.92546,2.33587 -1.84495,4.4673 -2.04332,4.73652 -0.60033,0.8148 -4.98943,-3.21051 -8.42936,-7.7307 -7.86205,-10.331 -11.46816,-18.27789 -13.29825,-29.3057 -0.66988,-4.03663 -0.75149,-5.15452 -0.37904,-5.19252 0.1324,-0.0135 0.45738,-0.0714 0.72219,-0.12859 0.2648,-0.0572 3.01568,-0.54688 6.11305,-1.08814 8.47283,-1.48063 8.97273,-1.60771 8.97273,-2.28086 0,-0.65002 -0.90963,-0.9251 -10.67004,-3.22672 -5.35931,-1.2638 -5.68576,-1.38352 -5.53926,-2.0314 0.0856,-0.37866 0.30718,-1.68342 0.49236,-2.89946 0.82802,-5.43745 2.22502,-10.13821 4.33945,-14.60181 3.05637,-6.45206 8.17851,-12.74094 13.14285,-16.13656 2.85623,-1.95367 7.99068,-5.08607 8.3368,-5.08607 0.12281,0 -0.56442,0.90274 -1.52718,2.00609 -0.96276,1.10335 -1.97089,2.4394 -2.2403,2.96901 -1.09526,2.15313 -1.86204,5.2395 -2.03211,8.1795 -0.48523,8.38822 3.98446,14.87319 13.49022,19.57263 2.13013,1.05309 6.18398,2.87595 9.00855,4.05078 6.24463,2.59737 18.77698,8.64027 18.77698,9.05397 0,0.26432 -2.51002,7.2451 -5.4399,15.12923 -0.55275,1.48742 -0.93159,2.89569 -0.84187,3.1295 0.39114,1.0193 1.11794,0.48882 6.60943,-4.82408 2.03384,-1.96769 4.61244,-4.41712 5.73023,-5.44316 2.34229,-2.15005 1.89396,-2.25164 5.34189,1.21046 4.89889,4.91902 8.64548,10.73227 9.77956,15.17406 1.79167,7.01732 0.75696,14.42735 -2.88801,20.68227 -1.96317,3.3689 -4.38421,5.91899 -8.02015,8.44766 -5.06275,3.52096 -9.03302,4.65963 -16.04871,4.60278 -2.2067,-0.0179 -4.37327,-0.0915 -4.81461,-0.16355 z"
id="path242" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 282.18362,231.58467 c -5.25598,-0.79763 -9.62394,-4.02361 -11.92029,-8.8038 -2.07536,-4.32017 -2.28051,-6.98162 -0.92862,-12.0469 0.97167,-3.64066 3.41158,-7.8393 7.22117,-12.42634 0.69921,-0.84191 7.28959,0.83875 13.90708,3.54655 1.13725,0.46535 2.18746,0.72635 2.33381,0.58 0.14634,-0.14635 -2.27512,-2.11438 -5.38103,-4.3734 l -5.64711,-4.10731 1.70686,-1.2191 c 1.73702,-1.24063 6.21796,-3.2689 9.77875,-4.42627 3.68458,-1.19761 7.97462,-1.75269 11.88538,-1.53782 4.63605,0.25472 4.66859,0.26872 4.46363,1.92186 -0.0903,0.72849 -0.25483,2.87724 -0.36559,4.775 -0.16215,2.77835 -0.1172,3.44993 0.23073,3.4477 0.23766,-0.002 1.44318,-1.9511 2.67893,-4.33239 1.23575,-2.38129 2.28528,-4.32996 2.3323,-4.33038 0.41329,-0.004 6.44395,3.04324 7.60641,3.84303 2.35107,1.61758 5.50517,4.71704 7.05209,6.92993 1.42375,2.0367 3.53885,6.82027 3.91096,8.84517 l 0.19919,1.08394 -0.99265,-1.31436 c -3.08095,-4.07943 -8.91474,-5.3982 -13.61144,-3.07697 -2.73094,1.3497 -4.54192,3.17963 -9.16604,9.26202 -2.17082,2.85541 -4.78153,6.09906 -5.80157,7.20811 l -1.85462,2.01645 -4.63709,-3.11569 c -2.5504,-1.71363 -4.74089,-3.11569 -4.86776,-3.11569 -0.60488,0 -0.0738,1.42132 1.56541,4.18914 2.47934,4.18651 3.08978,5.43339 2.90095,5.92549 -0.22246,0.57972 -3.96369,2.63469 -6.74238,3.70343 -2.59531,0.99821 -5.34395,1.33004 -7.85746,0.9486 z"
id="path243" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 158.54923,294.69084 c -0.91913,-1.8818 -2.2674,-5.2844 -2.99616,-7.56135 -2.00858,-6.27564 -2.18566,-5.83496 -1.6929,4.21298 l 0.2626,5.35455 -1.55388,-0.40991 c -4.69457,-1.2384 -11.6484,-5.59273 -15.78589,-9.88475 -1.81481,-1.88258 -5.23645,-6.67363 -5.0886,-7.12514 0.0632,-0.1929 1.75707,-1.51923 3.76424,-2.94741 5.27308,-3.75199 5.20238,-3.85699 -1.61244,-2.39456 -2.38323,0.51143 -4.4263,0.83262 -4.54015,0.71374 -0.5482,-0.57239 -1.62584,-6.03959 -1.78246,-9.04292 -0.32172,-6.16956 0.85113,-10.61811 4.0823,-15.48401 1.08544,-1.6346 1.87589,-2.6109 1.75656,-2.16956 -1.4306,5.29086 0.99512,10.9448 5.67172,13.21986 2.86106,1.39184 4.50199,1.55115 15.08685,1.46478 5.41374,-0.0442 9.92253,-9.7e-4 10.01954,0.096 0.097,0.097 0.33158,2.26356 0.52128,4.81461 0.43811,5.89186 0.58235,6.79622 1.05945,6.64247 0.21055,-0.0678 1.2592,-2.2798 2.33035,-4.91546 l 1.94755,-4.79211 1.08537,0.0543 c 0.59696,0.0299 2.60933,0.81146 4.47194,1.7369 5.54832,2.7567 8.3731,6.1457 9.48065,11.37436 0.2611,1.23267 0.47511,2.81897 0.47557,3.52512 0.002,3.70223 -2.38651,9.02977 -5.17291,11.53625 -3.52667,3.17239 -8.81165,4.92498 -15.73319,5.21741 l -4.38625,0.18531 z"
id="path244" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 92.769298,297.18893 c -2.25901,-0.60705 -4.141277,-1.7188 -5.467619,-3.22942 -1.905639,-2.17041 -3.473437,-6.30693 -4.012461,-10.5866 l -0.208082,-1.6521 1.502087,-1.03346 c 0.826148,-0.5684 3.100818,-1.7874 5.054823,-2.70889 1.954006,-0.92149 3.420043,-1.74767 3.25786,-1.83597 -0.162182,-0.0883 -2.244794,0.1478 -4.628027,0.52467 -5.028272,0.79513 -4.924031,0.85487 -4.007842,-2.29671 1.322779,-4.5502 4.615579,-9.66184 8.009777,-12.43412 l 1.54564,-1.26243 0.837171,0.94675 c 0.460444,0.52071 1.444114,1.66144 2.185934,2.53496 0.741819,0.87351 1.438878,1.49809 1.549019,1.38795 0.110142,-0.11014 -0.250949,-1.60883 -0.802422,-3.33042 -0.793836,-2.47819 -0.915912,-3.18646 -0.586098,-3.40048 0.229121,-0.14868 1.568502,-0.63882 2.976403,-1.0892 5.153059,-1.64845 10.441559,-1.0986 14.772779,1.53594 l 0.96292,0.58572 -1.33121,-0.20454 c -2.37404,-0.36476 -5.57006,1.15802 -7.01588,3.34281 -1.496,2.2606 -1.659,4.16324 -0.86257,10.06881 0.38809,2.87779 0.70523,6.04804 0.70474,7.045 l -8.9e-4,1.81265 -2.16657,0.37592 c -3.76476,0.65321 -5.215833,1.01835 -5.215833,1.31248 0,0.15698 0.793573,0.50897 1.763503,0.78221 5.96898,1.68151 5.38009,1.38984 5.16126,2.55628 -0.30429,1.622 -1.70372,4.99188 -2.62523,6.32161 -1.58576,2.28826 -5.857611,4.48306 -8.610697,4.42401 -0.5417,-0.0116 -1.775818,-0.23366 -2.742485,-0.49343 z"
id="path245" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 37.999225,330.45739 c -3.684933,-0.57186 -8.991577,-2.91152 -11.805939,-5.20514 -6.001406,-4.89096 -10.46218,-15.19699 -11.298803,-26.10438 -0.09478,-1.23575 -0.229963,-2.42617 -0.300396,-2.64538 -0.35714,-1.1115 11.395422,-7.82602 19.026906,-10.87052 1.646293,-0.65677 2.326322,-1.09209 2.327062,-1.48964 0.0013,-0.69735 0.03384,-0.69786 -4.697191,0.0741 -2.14269,0.34961 -4.670361,0.72765 -5.617046,0.8401 -0.946686,0.11245 -1.819161,0.26178 -1.938833,0.33185 -0.261532,0.15313 -6.590005,1.06681 -7.447008,1.07517 -0.548752,0.005 -0.583222,-0.17038 -0.382103,-1.94805 0.386086,-3.41254 2.306669,-8.74232 5.329725,-14.79042 1.481654,-2.96428 4.247229,-7.57463 4.781298,-7.97066 0.119035,-0.0883 0.642107,-0.73339 1.162382,-1.4336 2.322256,-3.12541 9.74974,-9.93873 10.606964,-9.72989 0.202924,0.0494 2.352398,2.35523 4.776609,5.12399 6.925892,7.91025 6.876193,8.12623 1.758239,-7.64081 l -0.53357,-1.64379 2.27954,-0.89399 c 7.497024,-2.94016 11.485179,-3.79374 17.686299,-3.78534 6.095048,0.008 9.757359,0.69321 14.323472,2.67891 2.654219,1.15426 7.756474,3.85738 7.591799,4.02206 -0.05888,0.0589 -0.680754,-0.0326 -1.381938,-0.20339 -5.067074,-1.23388 -11.864343,0.98042 -15.515699,5.05444 -2.740172,3.05736 -4.083134,6.64772 -4.421839,11.82164 -0.172357,2.63284 0.09972,5.44516 1.319727,13.6414 0.329217,2.21175 0.499981,3.49947 0.638459,4.81461 0.08365,0.79441 0.293897,2.74433 0.46722,4.33315 0.173319,1.58882 0.39137,4.11829 0.484558,5.62103 l 0.169433,2.73225 -5.689285,1.08147 c -10.290199,1.95604 -11.097825,2.13675 -11.222613,2.51111 -0.224059,0.67218 1.302548,1.32014 5.854301,2.48485 2.471501,0.6324 5.649145,1.48029 7.061431,1.88419 l 2.567793,0.73437 -0.07202,1.6897 c -0.08977,2.10624 -2.29118,8.64083 -4.04582,12.00951 -2.740497,5.26138 -8.529589,9.65135 -14.8382,11.25207 -2.396511,0.60808 -6.853823,0.87689 -9.004913,0.54307 z"
id="path246" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 0.54904402,267.95017 c -0.54303262,-0.14109 -0.56806113,-0.91386 -0.45880109,-14.16587 0.09120713,-11.0624 0.22808182,-14.72698 0.64941182,-17.38687 0.94422635,-5.96099 0.64727425,-5.3131 2.38976835,-5.21401 6.5562045,0.37284 12.6007089,2.43072 16.9100219,5.7571 1.519049,1.17257 5.959457,6.32777 5.959457,6.91879 0,0.15687 -0.423771,-0.0165 -0.941715,-0.38535 -1.60963,-1.14616 -3.58445,-1.6863 -6.297494,-1.72245 -2.217744,-0.0296 -2.844462,0.0925 -4.410384,0.85858 -3.791848,1.85518 -5.8113445,4.83959 -8.0711756,11.92758 -2.5750982,8.07683 -4.633389,13.68123 -4.994237,13.59852 -0.088268,-0.0202 -0.41895143,-0.10395 -0.73485238,-0.18602 z"
id="path247" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 196.14518,347.44702 c -2.33785,-0.32472 -3.39978,-0.95357 -1.61882,-0.95861 2.67494,-0.008 6.76937,-3.10896 8.18412,-6.19916 1.96061,-4.28255 1.37103,-7.48012 -3.02194,-16.38928 -3.15563,-6.39977 -5.36044,-11.36767 -5.13486,-11.56994 0.0644,-0.0578 2.27553,-1.32573 4.91359,-2.81773 2.63806,-1.49199 4.8591,-2.90059 4.93564,-3.13023 0.11245,-0.33735 -0.80754,-0.37228 -4.79187,-0.1819 -2.71207,0.12958 -5.18529,0.28457 -5.49605,0.34442 -0.94768,0.1825 -1.24927,-0.99634 -1.27105,-4.9682 -0.0241,-4.40145 0.39153,-6.54859 1.74395,-9.00849 3.28332,-5.97202 9.32392,-9.08703 16.14422,-8.32524 4.54449,0.5076 8.81796,3.24688 12.35545,7.91981 1.57341,2.07842 4.8067,8.00733 4.80097,8.80356 -0.006,0.87752 -3.35597,4.84681 -7.104,8.41815 -2.12771,2.02741 -3.78518,3.8211 -3.68327,3.98599 0.1019,0.16489 2.89525,-1.12059 6.20744,-2.85661 7.14899,-3.74703 6.64894,-3.94319 6.61953,2.59668 -0.0361,8.03536 -1.84226,14.61069 -5.61937,20.4577 l -1.08572,1.68071 -4.16549,-2.40014 c -2.29102,-1.32008 -4.27382,-2.40139 -4.40622,-2.40291 -0.62642,-0.007 0.007,1.09823 2.6647,4.65137 l 2.88118,3.85168 -1.36868,1.24064 c -3.43817,3.11653 -7.96071,5.60299 -12.43755,6.83809 -2.1491,0.59291 -7.43879,0.80956 -10.2459,0.41964 z"
id="path248" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 251.16472,388.60432 c 2.18218,-0.75459 3.75461,-2.02172 5.18728,-4.18013 2.06569,-3.11211 2.48317,-5.93182 1.39355,-9.41238 -0.8888,-2.83909 -2.05706,-4.71976 -5.35458,-8.61987 -3.64139,-4.30682 -5.80017,-7.07289 -7.31668,-9.37496 -1.01714,-1.54402 -1.13716,-1.89728 -0.7634,-2.24682 0.24393,-0.22811 2.14535,-1.98903 4.2254,-3.91314 2.08004,-1.92412 3.66206,-3.61823 3.5156,-3.7647 -0.14646,-0.14646 -1.77872,0.16834 -3.62723,0.69956 -5.05117,1.45159 -6.73528,1.90941 -7.02386,1.90941 -0.70651,0 -2.26175,-6.96038 -2.26952,-10.15712 -0.0157,-6.47116 4.20664,-12.3449 10.50674,-14.61595 1.40816,-0.50761 2.68143,-0.67382 5.37591,-0.70177 3.13904,-0.0326 3.75428,0.0572 5.54604,0.80949 1.10843,0.46536 2.82588,1.33064 3.81655,1.92285 2.05564,1.22883 6.34642,5.33692 8.40067,8.04298 l 1.3897,1.83066 -1.41689,2.99107 c -1.41334,2.98359 -3.46083,6.33038 -5.76629,9.42549 -2.33205,3.1308 -1.38574,2.80916 3.15493,-1.07233 6.6146,-5.65435 6.61149,-5.65209 6.95567,-5.03708 1.12053,2.00228 2.21965,7.23451 2.61609,12.4536 0.31166,4.10295 -0.81189,10.76327 -2.46642,14.62081 l -0.40381,0.94149 -4.49364,-1.41121 c -2.4715,-0.77616 -4.60197,-1.41464 -4.73437,-1.41885 -0.74821,-0.0237 0.0446,1.02472 2.05737,2.72064 1.25708,1.05922 2.91227,2.48198 3.67822,3.1617 l 1.39262,1.23585 -1.01803,1.49243 c -1.36676,2.00366 -4.50685,5.27126 -6.67188,6.9428 -1.99149,1.53755 -5.46866,3.35738 -7.86387,4.11568 -1.64666,0.52131 -6.5029,1.19227 -8.50581,1.1752 -1.10362,-0.009 -1.0951,-0.0194 0.48394,-0.5654 z"
id="path249" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 162.25241,379.90322 c -4.30091,-1.26368 -7.5953,-3.31537 -11.74175,-7.31256 -2.69079,-2.59393 -2.87362,-2.85141 -2.67652,-3.76922 0.40139,-1.869 2.39239,-6.45299 4.45796,-10.26379 1.13944,-2.10216 1.98566,-3.96133 1.88049,-4.1315 -0.10516,-0.17016 -2.37502,1.96876 -5.04412,4.75317 l -4.85291,5.06254 -1.02091,-2.05446 c -1.39494,-2.80715 -2.49212,-6.80832 -3.16547,-11.54373 -0.48996,-3.44575 -0.51307,-4.41886 -0.17459,-7.35176 0.56382,-4.88534 1.24002,-7.39251 1.9938,-7.39251 0.33096,0 2.29943,0.36035 4.37438,0.80079 4.10991,0.87238 4.89603,0.95477 4.89603,0.51314 0,-0.16001 -1.80548,-1.54854 -4.01217,-3.08562 -2.2067,-1.53708 -4.01218,-2.86093 -4.01218,-2.94189 0,-0.31354 1.79465,-3.23411 3.0206,-4.91564 4.58623,-6.29058 10.8898,-10.06916 17.95047,-10.76012 l 1.97858,-0.19363 -1.2839,0.61209 c -1.5828,0.7546 -3.38197,2.71006 -4.55788,4.95382 -0.7895,1.50646 -0.88971,2.04011 -0.89393,4.76086 -0.007,4.76184 0.72359,5.97006 8.34101,13.78692 3.35461,3.44244 6.55388,6.83914 7.10949,7.54821 l 1.01018,1.28922 -0.81532,0.9576 c -0.44843,0.52668 -1.91435,2.16291 -3.25762,3.63607 -2.63257,2.88715 -3.49406,4.08013 -3.17603,4.39816 0.1109,0.1109 2.4645,-0.70929 5.23023,-1.82263 5.71482,-2.30051 5.08805,-2.39728 6.50907,1.00499 1.08995,2.60965 1.99389,6.3171 1.99389,8.17786 0,5.16049 -3.40616,11.09886 -7.81076,13.61744 -3.68943,2.10964 -8.50951,2.76524 -12.25012,1.66618 z"
id="path250" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 99.998623,362.04675 c -4.931433,-1.35285 -8.328614,-4.1385 -10.722096,-8.79202 -1.823526,-3.54538 -2.704713,-6.82321 -3.375655,-12.55672 l -0.170896,-1.4604 2.472604,-1.6456 c 2.548784,-1.69631 5.991798,-3.47756 9.774765,-5.057 1.191617,-0.49752 2.166575,-1.10232 2.166575,-1.344 0,-0.28834 -0.248308,-0.38532 -0.722191,-0.28208 -0.717551,0.15634 -12.619884,2.1017 -12.858864,2.1017 -0.142602,0 0.285725,-2.88001 0.586908,-3.94629 0.871353,-3.08484 3.468585,-8.57224 5.57602,-11.78092 1.454862,-2.21511 5.096397,-6.07472 7.162354,-7.59127 1.371463,-1.00674 1.621163,-1.09132 1.957073,-0.6629 1.40779,1.79551 5.82275,6.64878 6.04833,6.64878 0.51448,0 0.27605,-1.23097 -1.00551,-5.19142 -0.70412,-2.17599 -1.28188,-4.12323 -1.28389,-4.3272 -0.005,-0.46023 4.81384,-2.22838 7.84917,-2.88031 2.90611,-0.62419 8.48041,-0.61138 11.22786,0.0258 1.17557,0.27263 3.53807,1.17783 5.24999,2.01155 l 3.1126,1.51586 -2.89709,0.19304 c -4.62291,0.30804 -7.67316,2.2412 -9.63029,6.10341 -1.48516,2.93082 -1.63316,5.69476 -0.67811,12.66369 0.45939,3.35212 0.98757,7.7442 1.17372,9.76016 0.3603,3.90187 0.28903,4.16757 -1.12817,4.2061 -0.35307,0.01 -2.66409,0.41336 -5.13559,0.89725 -3.34045,0.65402 -4.49364,1.00088 -4.49364,1.35161 0,0.43483 2.07525,1.1118 8.74655,2.85323 1.20879,0.31554 1.36414,0.46193 1.36414,1.28545 0,1.30235 -1.68517,6.26513 -2.83083,8.33669 -3.3208,6.00465 -11.05646,9.34131 -17.535837,7.56381 z"
id="path251" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 58.777284,372.62851 c -0.716217,-1.00019 -2.041422,-3.25761 -2.944902,-5.0165 -0.903478,-1.75888 -1.72265,-3.11801 -1.820379,-3.02028 -0.09773,0.0977 0.223606,2.20777 0.714082,4.68898 0.490475,2.48121 0.802895,4.60017 0.694266,4.7088 -0.351427,0.35142 -3.733149,-0.49783 -6.541411,-1.64275 -3.612859,-1.47294 -6.303162,-3.26393 -8.784569,-5.84806 l -2.031631,-2.11573 2.498072,-2.39506 c 1.37394,-1.31729 2.414851,-2.47828 2.313135,-2.58 -0.202326,-0.20233 -1.117186,0.0675 -4.497543,1.32653 -1.224751,0.45617 -2.252094,0.79632 -2.282984,0.7559 -0.206612,-0.27037 -1.765433,-4.50802 -2.093266,-5.69054 -0.220237,-0.79442 -0.397397,-2.88877 -0.39369,-4.65413 0.0059,-2.83077 0.125827,-3.51292 1.015356,-5.77753 1.411437,-3.59332 1.615083,-3.83332 1.599996,-1.88567 -0.02376,3.06734 1.999841,6.24469 4.679039,7.34677 2.106385,0.86645 4.105305,0.872 8.881654,0.0247 2.542431,-0.45103 5.722566,-0.93751 7.066967,-1.08106 l 2.444365,-0.26101 0.521913,2.2613 c 0.287051,1.24371 0.679549,3.0196 0.872216,3.94641 0.576998,2.77561 1.001712,2.15459 2.085361,-3.04925 0.539032,-2.58852 0.57256,-2.64804 1.49157,-2.64804 1.549879,0 5.728969,1.56599 7.345157,2.75238 2.791653,2.04926 4.756236,6.44577 4.359111,9.75517 -0.764192,6.36829 -5.887513,10.53663 -14.393715,11.71073 l -1.495957,0.20649 z"
id="path252" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="M 1.8456011,431.95444 0,431.83862 v -11.86445 -11.86445 l 1.2605605,-3.76702 c 2.9103856,-8.6973 4.9942792,-13.8777 5.5825137,-13.8777 0.1910772,0 2.9170743,0.7381 6.0577718,1.64023 3.253555,0.93454 5.952584,1.54727 6.273365,1.42418 0.609961,-0.23407 0.137274,-0.72838 -5.790013,-6.05496 -1.535629,-1.38 -2.792053,-2.71944 -2.792053,-2.97654 0,-0.68411 4.981745,-5.76357 7.221918,-7.36357 3.174951,-2.26765 5.90486,-3.09419 10.253788,-3.10453 5.163696,-0.0123 9.591781,1.96535 13.112989,5.85641 2.979342,3.29228 4.08151,5.71519 4.698935,10.32973 0.363176,2.71431 0.241588,4.83657 -0.501583,8.75486 -0.63185,3.33137 -2.335796,8.47395 -3.041643,9.1798 -0.818048,0.81804 -4.0218,1.09913 -11.782961,1.03379 -5.122407,-0.0431 -6.808291,0.0372 -6.714031,0.32 0.06922,0.20768 2.786081,1.221 6.037459,2.25182 3.251379,1.03083 6.520263,2.09608 7.264188,2.36723 l 1.352591,0.493 -0.917321,1.32494 c -2.849451,4.11564 -10.014941,9.83262 -15.551606,12.40783 -2.641962,1.22883 -8.999565,3.20046 -10.320012,3.20046 -0.633482,0 -0.80606,-0.32275 -1.415908,-2.64803 -1.564765,-5.96627 -2.1218399,-7.74139 -2.4644579,-7.85299 -0.4673454,-0.15222 -0.5691821,0.27952 -1.4588928,6.18506 l -0.7469446,4.95791 -0.9637254,-0.0607 c -0.5300486,-0.0334 -1.7942456,-0.11281 -2.8093262,-0.1765 z"
id="path253" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 72.700635,438.45516 c -7.738189,-1.71128 -12.33793,-7.28346 -14.258719,-17.27318 -0.954249,-4.96291 -0.915851,-5.43241 0.537076,-6.56697 1.921357,-1.50036 5.511178,-3.47553 9.431884,-5.18957 3.459741,-1.51252 4.56529,-2.27707 3.273341,-2.2637 -0.323649,0.003 -3.188343,0.4359 -6.365987,0.96122 -7.493568,1.23883 -7.004904,1.2682 -6.747963,-0.4056 0.625923,-4.07747 3.773583,-11.07749 6.827093,-15.18265 1.815386,-2.44062 5.030705,-5.70136 7.015652,-7.11477 l 0.933116,-0.66444 1.568296,1.81159 c 6.270459,7.24317 6.145489,7.23662 3.901211,0.2046 -1.05311,-3.29973 -1.326911,-4.53794 -1.043166,-4.71752 1.059841,-0.67075 6.160122,-2.29187 8.569565,-2.72382 3.000527,-0.53792 7.577647,-0.42112 10.547129,0.26913 0.94619,0.21994 3.257207,1.15829 5.135587,2.08523 l 3.41524,1.68534 -2.08633,-0.17714 c -1.62996,-0.13839 -2.53067,-0.0268 -4.117682,0.51014 -3.713866,1.25654 -5.650752,2.9913 -7.191434,6.44097 -0.804403,1.80111 -1.118977,6.74978 -0.614351,9.66465 0.641457,3.70526 1.330553,9.37639 1.537947,12.65702 l 0.203793,3.2237 -5.661768,1.06887 c -3.780986,0.71381 -5.661768,1.20349 -5.661768,1.47412 0,0.35971 2.47924,1.14769 8.786239,2.79254 0.860374,0.22438 1.630227,0.57972 1.710782,0.78964 0.248055,0.64643 -1.162764,5.25252 -2.439307,7.96394 -2.155312,4.57795 -6.399769,7.77652 -11.534486,8.69225 -2.959566,0.52781 -3.216985,0.52711 -5.67099,-0.0156 z"
id="path254" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 133.37382,434.75604 c -9.36824,-1.67156 -15.20569,-10.78377 -12.8195,-20.01117 0.97369,-3.76526 3.45738,-8.3212 6.62425,-12.15111 1.39159,-1.68293 1.15307,-1.65335 5.38374,-0.66771 2.52134,0.58741 4.65895,1.28578 8.57395,2.80117 1.6263,0.62949 3.03458,1.14454 3.1295,1.14454 0.74324,0 -0.55467,-1.12541 -5.20373,-4.51212 -2.95697,-2.15407 -5.43561,-3.96908 -5.50809,-4.03337 -0.40402,-0.35836 1.52036,-1.68304 4.62541,-3.18397 6.51874,-3.15106 12.94588,-4.55574 18.97596,-4.1473 1.78653,0.12101 3.43331,0.3344 3.65952,0.4742 0.33091,0.20452 0.34035,1.14654 0.0483,4.82035 -0.52358,6.58615 -0.32684,6.62423 2.72005,0.52638 1.1618,-2.32514 2.15401,-4.27355 2.20493,-4.3298 0.27579,-0.30467 7.06658,3.29706 9.01868,4.78336 2.74447,2.08961 5.86227,5.58057 7.14252,7.99739 0.96173,1.81553 2.61081,6.4302 2.61081,7.30591 0,0.27082 -0.32664,0.008 -0.72585,-0.58469 -1.83145,-2.71768 -6.15124,-4.68014 -9.67869,-4.39699 -4.17619,0.33522 -7.48723,2.79122 -12.01179,8.90987 -3.33846,4.51465 -8.37687,10.59214 -8.78118,10.59214 -0.16334,0 -2.33144,-1.37216 -4.818,-3.04925 -2.48655,-1.67709 -4.66119,-3.04925 -4.83252,-3.04925 -0.5604,0 -0.006,1.2446 2.51123,5.64102 2.8405,4.96038 2.92187,4.37028 -0.88137,6.39159 -4.71831,2.50763 -8.44522,3.3574 -11.96812,2.72881 z"
id="path255" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 206.19604,394.93173 c -5.25799,-0.97408 -8.68319,-5.66733 -9.54406,-13.0774 l -0.16134,-1.38874 1.85212,-1.19709 c 1.01867,-0.6584 3.09638,-1.7515 4.61713,-2.42913 1.52076,-0.67762 2.70402,-1.33071 2.62948,-1.45132 -0.0745,-0.1206 -1.69508,0.0379 -3.6012,0.35235 -5.11901,0.84432 -5.03279,0.85612 -4.79104,-0.65571 0.28145,-1.76008 2.12343,-6.0075 3.51347,-8.10167 1.16034,-1.74813 5.03945,-5.72667 5.58354,-5.72667 0.15639,0 1.14385,1.03225 2.19436,2.29388 2.25591,2.70928 2.51916,2.42572 1.25951,-1.35668 -0.47308,-1.42053 -0.80771,-2.63521 -0.74363,-2.69929 0.39023,-0.39023 5.24407,-1.75997 6.88674,-1.94342 2.67553,-0.29879 5.94271,0.31962 8.45323,1.60003 l 2.06978,1.05562 -1.74881,-0.0159 c -2.95674,-0.0268 -5.57555,1.79654 -6.55095,4.5611 -0.61505,1.74323 -0.62747,4.30643 -0.0395,8.14339 0.77423,5.05215 0.91635,7.51787 0.44368,7.69732 -0.22918,0.087 -1.83095,0.41213 -3.5595,0.72252 -1.87163,0.33608 -3.09661,0.70294 -3.02859,0.90701 0.0628,0.18847 1.5132,0.70282 3.22306,1.143 3.55558,0.91533 3.54919,0.90499 2.47904,4.01543 -0.92389,2.68535 -1.81103,4.06117 -3.48992,5.41237 -2.22088,1.78741 -5.32875,2.62393 -7.94664,2.13896 z"
id="path256" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 234.96169,430.50652 c 0.77982,-1.71799 0.78578,-3.24416 0.0192,-4.93212 -0.81725,-1.79965 -2.07809,-2.67568 -7.09036,-4.92638 -2.35858,-1.05909 -4.42364,-2.06093 -4.58902,-2.22631 -0.18694,-0.18694 0.0807,-1.29949 0.70751,-2.9409 0.55451,-1.45211 0.92896,-2.71944 0.83211,-2.81629 -0.0969,-0.0968 -1.00702,0.64617 -2.0226,1.65116 -1.01558,1.00499 -2.00607,1.82725 -2.20107,1.82725 -0.4592,0 -2.30455,-2.04949 -3.32356,-3.69121 -1.09166,-1.75877 -1.13049,-5.44006 -0.0784,-7.42816 1.60257,-3.02815 5.05888,-4.85471 8.45854,-4.47008 2.07623,0.2349 5.1172,1.18962 6.33893,1.99013 0.76826,0.50338 0.78129,0.58278 0.59213,3.60654 -0.10638,1.70051 -0.2907,3.59737 -0.40961,4.21524 -0.35285,1.83354 0.33705,0.78843 1.64208,-2.48755 0.65052,-1.63295 1.30084,-2.96901 1.44515,-2.96901 0.62228,0 3.33616,3.57803 4.5039,5.93802 1.26849,2.5636 2.14738,5.81101 1.81039,6.6892 -0.11243,0.29298 -0.87545,0.54523 -2.06788,0.68363 -2.79968,0.32494 -3.08391,0.67163 -1.02281,1.24757 0.95849,0.26783 2.03158,0.53364 2.38466,0.59069 0.38487,0.0622 0.6841,0.39984 0.74721,0.84319 0.17901,1.25761 -1.1412,4.95714 -2.42453,6.79407 -1.06815,1.52891 -4.00731,4.16925 -4.64623,4.17384 -0.12377,8.9e-4 0.0536,-0.61225 0.39417,-1.36252 z"
id="path257" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 266.40851,456.89636 c -2.45647,-0.38221 -4.22555,-1.06136 -6.22954,-2.39153 -6.22494,-4.13188 -8.82436,-11.63965 -7.52851,-21.74418 0.41932,-3.26965 0.27253,-3.12602 4.61028,-4.51093 3.02961,-0.96726 4.77636,-1.36945 8.62084,-1.98494 1.56382,-0.25036 2.91434,-0.52623 3.00116,-0.61305 0.52366,-0.52366 -0.81455,-0.79295 -5.75398,-1.15787 -3.05087,-0.22539 -6.091,-0.4994 -6.75584,-0.60892 l -1.20879,-0.19912 1.08291,-2.24682 c 2.27697,-4.72422 8.05218,-11.34541 12.2478,-14.04192 2.27779,-1.46393 6.89812,-3.89725 7.0492,-3.7125 0.0453,0.0555 0.98229,1.8341 2.08209,3.95253 1.09979,2.11843 2.16476,4.05141 2.3666,4.29551 0.57087,0.6904 0.74002,-0.56222 0.48669,-3.60401 -0.11989,-1.43954 -0.22947,-3.43294 -0.2435,-4.42979 l -0.0255,-1.81245 2.80487,-0.39815 c 5.34423,-0.75861 11.1702,0.0515 15.91639,2.21311 1.82979,0.83338 6.20831,4.03102 7.2367,5.28497 0.54825,0.6685 0.38603,0.67002 -1.25893,0.0118 -0.99404,-0.39774 -1.95295,-0.48537 -3.94873,-0.36086 -3.25105,0.20283 -5.20102,1.03219 -7.2422,3.08026 -2.662,2.67098 -3.61793,5.55506 -4.37817,13.20903 -0.55667,5.60443 -0.94825,8.60958 -1.4777,11.34043 l -0.36218,1.86807 -5.89184,-0.22858 c -3.53228,-0.13704 -5.89184,-0.11049 -5.89184,0.0663 0,0.37211 1.60668,1.3734 6.08978,3.79515 3.04816,1.6466 3.51401,2.00353 3.3513,2.56779 -0.36001,1.24855 -3.18479,5.6854 -4.70709,7.39338 -3.41183,3.82799 -8.89602,5.76795 -14.04224,4.96725 z"
id="path258" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 188.24006,477.18587 c -0.88887,-0.33186 -1.97216,-0.79042 -2.40731,-1.01901 -4.20665,-2.20989 -7.17668,-7.79934 -7.86788,-14.80698 l -0.2018,-2.04594 2.03438,-1.34881 c 1.99478,-1.32256 6.37138,-3.55013 8.28741,-4.21806 0.53289,-0.18576 0.96889,-0.48971 0.96889,-0.67542 0,-0.43239 0.31034,-0.45978 -5.29608,0.46739 -2.64803,0.43793 -4.92294,0.79704 -5.05534,0.79802 -0.89035,0.007 0.33471,-4.43519 2.30596,-8.36087 2.23132,-4.44359 4.55542,-7.41702 7.82424,-10.01027 l 1.22317,-0.97038 1.50511,1.72347 c 3.3342,3.81791 3.89605,4.3447 3.9009,3.65746 0.002,-0.35307 -0.48824,-2.15534 -1.09053,-4.00503 l -1.09507,-3.36309 1.98124,-0.76129 c 4.38252,-1.68399 9.40176,-2.19411 13.20379,-1.34195 1.45431,0.32595 6.91248,2.6768 6.91248,2.97722 0,0.0701 -0.78677,0.0622 -1.74838,-0.0175 -3.47646,-0.28829 -7.12427,1.88749 -8.49101,5.06455 -1.06659,2.47936 -1.15865,4.97638 -0.37878,10.2739 0.67899,4.61225 1.20382,10.25568 0.95677,10.28791 -2.1556,0.28115 -8.66856,1.8387 -8.65415,2.06959 0.0218,0.3497 0.95848,0.67339 5.23586,1.80945 3.28949,0.87368 3.27886,0.84892 1.99997,4.65867 -0.9412,2.80379 -2.49182,5.36657 -4.03814,6.674 -3.15396,2.66673 -8.5416,3.78006 -12.0157,2.48299 z"
id="path259" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 123.3677,481.71776 -2.93561,-0.47533 -0.6748,-1.76336 c -0.8247,-2.1551 -1.79174,-6.87622 -2.28958,-11.17785 -0.61607,-5.32318 -0.94753,-4.72526 -2.08084,3.75367 l -0.88784,6.64244 -1.96172,-0.98318 c -2.42673,-1.21623 -5.69986,-3.79359 -8.86875,-6.98352 -3.29222,-3.31408 -5.901216,-7.34144 -7.680912,-11.85657 l -0.621256,-1.57613 4.073878,-1.84766 c 2.24063,-1.01621 4.26126,-1.99424 4.49029,-2.1734 0.87317,-0.68305 -0.47394,-0.85745 -5.101216,-0.66042 l -4.684806,0.19949 -0.20726,-1.7261 c -0.77023,-6.41462 0.498389,-13.03979 3.466851,-18.10509 0.795496,-1.35741 5.273261,-6.39099 5.491321,-6.17294 0.0494,0.0494 -0.20418,0.95504 -0.56343,2.0126 -1.30491,3.84138 0.0515,8.99681 3.04121,11.55938 2.80334,2.4028 5.55155,3.31103 13.61867,4.50074 4.44322,0.65527 11.08193,2.04208 11.44062,2.38992 0.15572,0.15101 0.0232,2.67264 -0.30184,5.74548 -0.31864,3.012 -0.4672,5.58811 -0.33013,5.7247 0.34724,0.34601 1.07106,-0.62144 3.78042,-5.05284 1.48805,-2.43384 2.54795,-3.84627 2.88638,-3.84639 0.7417,-2.7e-4 5.03091,2.91657 7.18845,4.88844 2.89731,2.64799 4.63822,6.81362 4.66401,11.16007 0.0276,4.65074 -1.32161,7.92653 -4.7087,11.43236 -2.23251,2.31076 -4.90399,3.72564 -8.45633,4.47868 -2.67426,0.56689 -7.99041,0.52757 -11.78708,-0.0872 z"
id="path260" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 76.128375,526.34846 c 0.07249,-0.14955 0.615676,-1.26253 1.207094,-2.4733 0.915967,-1.87518 1.097436,-2.63619 1.224631,-5.13558 0.269484,-5.29527 -1.052657,-9.30601 -4.158768,-12.6157 -3.716078,-3.95963 -7.503675,-5.56441 -17.677395,-7.4898 -8.220243,-1.55569 -11.715346,-2.30956 -16.682417,-3.59831 l -3.771446,-0.97853 0.01341,-1.00197 c 0.0074,-0.55108 0.487084,-4.3639 1.066021,-8.47294 0.846939,-6.01119 0.972499,-7.53747 0.642601,-7.81126 -0.225507,-0.18715 -0.544758,-0.257 -0.709447,-0.15522 -0.164689,0.10179 -2.285714,3.14743 -4.71339,6.76809 -2.427676,3.62067 -4.481725,6.58303 -4.564553,6.58303 -0.08283,0 -0.996696,-0.45096 -2.030819,-1.00215 -2.476954,-1.3202 -8.232172,-5.95105 -10.159752,-8.17488 -5.9322422,-6.844 -7.0943052,-17.83479 -2.765782,-26.15879 1.140537,-2.19332 4.630419,-6.35771 6.718714,-8.01727 4.460509,-3.54477 11.223474,-5.41054 18.991166,-5.2393 3.869784,0.0853 7.454978,0.57115 12.110512,1.6411 l 2.418575,0.55585 0.811079,2.65912 c 1.292287,4.23674 2.002079,8.18106 2.55654,14.2067 0.633734,6.88715 0.751984,7.70338 1.115994,7.70338 0.648959,0 0.700526,-0.198 1.880883,-7.22192 1.30355,-7.757 2.259895,-13.07015 2.372917,-13.18318 0.267516,-0.26751 5.936663,3.19211 8.03913,4.90591 2.76168,2.25116 6.950604,6.30239 9.222372,8.91922 3.593383,4.13919 7.284017,10.62304 9.254538,16.25873 l 0.971261,2.77781 -1.023298,0.40855 c -0.562815,0.2247 -1.745492,0.72158 -2.628171,1.10419 -0.882679,0.3826 -3.300968,1.38812 -5.37398,2.23449 -3.655275,1.49238 -4.756714,2.17805 -4.274848,2.66119 0.127799,0.12813 3.596691,0.27852 7.708649,0.33419 l 7.476286,0.10123 0.05277,5.35533 c 0.07559,7.67073 -0.664327,12.12559 -2.97292,17.89938 -1.882276,4.70756 -3.632974,7.35593 -7.565607,11.44485 -3.187016,3.31367 -5.213261,5.09639 -4.782546,4.20776 z"
id="path261" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 268.72841,505.37185 c -3.2847,-1.6614 -5.20357,-4.83904 -5.95084,-9.85457 -0.4379,-2.93913 -0.34501,-3.05072 4.51359,-5.42215 2.0147,-0.98336 3.60591,-1.8451 3.53602,-1.91499 -0.11743,-0.11742 -4.99024,0.58302 -7.10048,1.02066 l -0.91646,0.19007 0.23209,-1.37373 c 0.2354,-1.3933 1.32489,-4.10497 2.69146,-6.69888 0.41343,-0.78473 1.828,-2.51799 3.14349,-3.85169 l 2.3918,-2.4249 2.05473,2.24682 c 1.15852,1.26683 2.05849,2.02635 2.06335,1.74134 0.005,-0.27802 -0.35312,-1.56904 -0.79524,-2.86894 -0.91546,-2.69156 -0.99848,-2.53995 1.92727,-3.51953 4.01706,-1.34497 7.67883,-1.17129 11.26219,0.53418 l 1.89775,0.90321 -1.87641,0.20157 c -3.35832,0.36077 -5.58831,2.65826 -5.91882,6.09799 -0.083,0.86427 0.0859,3.48362 0.37543,5.82077 0.28954,2.33714 0.59129,4.84214 0.67057,5.56666 l 0.14414,1.31731 -3.19902,0.56193 c -1.75947,0.30906 -3.27228,0.68044 -3.3618,0.82529 -0.15048,0.24347 1.04925,0.65749 4.61817,1.59367 1.34314,0.35233 1.39529,0.41105 1.23321,1.38837 -0.29455,1.77606 -1.4655,4.5103 -2.43478,5.68539 -1.53538,1.86137 -3.93855,2.96992 -6.76856,3.12222 -2.21554,0.11924 -2.58939,0.0443 -4.43285,-0.88807 z"
id="path262" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 213.60827,509.35382 c -3.69915,-0.65682 -5.73496,-1.32611 -8.85281,-2.91045 -4.02963,-2.04765 -6.83139,-4.55315 -9.39097,-8.39793 -1.17594,-1.76641 -2.13808,-3.32395 -2.13808,-3.46121 0,-0.13725 0.46943,0.2047 1.04317,0.75989 1.50805,1.45931 3.77969,2.35208 6.51026,2.5586 3.10342,0.2347 5.60203,-0.64888 7.96227,-2.81571 2.2292,-2.04654 3.28566,-3.90986 6.14536,-10.83886 1.93291,-4.68338 4.69129,-10.71693 5.1278,-11.21627 0.0404,-0.0462 2.15403,0.65888 4.69705,1.56677 5.24982,1.87425 6.38904,2.15105 6.38904,1.55237 0,-0.22435 -1.67758,-2.1064 -3.72795,-4.18234 l -3.72794,-3.77444 0.8927,-1.17039 c 1.12148,-1.47034 5.64619,-5.11174 7.41753,-5.96948 0.73469,-0.35577 2.4577,-0.87564 3.82892,-1.15527 8.69555,-1.77327 17.50555,4.48112 18.6875,13.26663 0.6057,4.50223 -0.38452,10.1158 -2.66408,15.10268 -1.17462,2.56964 -1.20396,2.60176 -2.52199,2.76022 -2.12773,0.25581 -9.10504,0.007 -12.17069,-0.43438 -2.69764,-0.38821 -3.38015,-0.33544 -3.02699,0.23404 0.0894,0.14415 2.99262,1.34443 6.45162,2.66729 3.459,1.32286 6.2891,2.52146 6.2891,2.66357 0,0.61319 -4.90159,5.05189 -7.63604,6.91492 -4.18023,2.84805 -8.3362,4.73813 -12.49051,5.68049 -1.90578,0.43231 -3.78447,0.78732 -4.17487,0.78892 -0.8137,0.003 -1.00816,-0.5612 -1.87851,-5.45365 -0.60969,-3.42717 -1.02932,-4.54834 -1.43079,-3.82277 -0.13772,0.2489 -0.62872,2.1858 -1.09111,4.30423 -0.46239,2.11843 -0.91278,4.17668 -1.00085,4.57388 -0.18252,0.82309 -0.0889,0.81754 -3.51814,0.20865 z"
id="path263" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 153.58611,519.28174 c -3.31944,-1.40108 -5.31151,-3.46643 -6.60365,-6.84658 -0.65248,-1.70683 -1.58119,-5.85754 -1.58119,-7.06687 0,-0.70413 3.62471,-3.0489 6.74046,-4.36029 4.2688,-1.79671 3.50226,-1.83934 -5.48982,-0.30532 l -0.8357,0.14257 0.29013,-1.66769 c 0.4605,-2.64703 3.43896,-8.41034 5.54402,-10.72768 0.99852,-1.0992 2.26274,-2.31702 2.80938,-2.70627 l 0.99389,-0.70771 2.18472,2.38529 c 1.36295,1.48807 2.18887,2.18024 2.19574,1.84016 0.006,-0.29983 -0.35712,-1.7105 -0.80707,-3.13483 -0.44995,-1.42433 -0.74215,-2.71255 -0.64935,-2.86271 0.0928,-0.15015 1.21924,-0.61718 2.5032,-1.03783 1.93393,-0.6336 2.99532,-0.76482 6.18615,-0.76482 3.83952,0 3.86023,0.004 6.55411,1.29608 l 2.70242,1.29608 -1.89998,-0.0122 c -3.68205,-0.0236 -6.45211,2.23257 -7.23228,5.89059 -0.31873,1.49443 -0.29003,2.45555 0.16877,5.6523 0.30403,2.11843 0.63568,5.10094 0.73699,6.62782 l 0.1842,2.77612 -3.2429,0.56759 c -3.21757,0.56316 -4.2267,0.89172 -3.86124,1.25717 0.1045,0.1045 1.52496,0.54726 3.15657,0.98391 1.63161,0.43665 3.10309,0.87829 3.26996,0.98142 0.41627,0.25727 0.0543,1.78121 -1.07323,4.51825 -1.08414,2.63177 -2.90841,4.55718 -5.34502,5.64138 -2.04219,0.90869 -5.85282,1.08122 -7.59928,0.34406 z"
id="path264" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 102.55123,533.93994 c -3.712323,-0.55834 -5.878781,-1.4538 -8.735415,-3.61058 -0.932936,-0.70437 -1.696247,-1.31626 -1.696247,-1.35974 0,-0.0435 0.990633,-0.008 2.201407,0.0784 3.507357,0.25095 5.959115,-0.87217 7.608855,-3.48552 1.16173,-1.8403 1.66466,-4.29177 2.06755,-10.07813 0.19667,-2.82457 0.45951,-5.71334 0.58409,-6.41948 l 0.2265,-1.2839 4.00164,-0.0907 c 2.20091,-0.0499 4.1181,-0.20717 4.26042,-0.3495 0.14233,-0.14233 -1.2694,-1.02769 -3.13719,-1.96748 -1.86778,-0.93979 -3.47039,-1.82912 -3.56135,-1.9763 -0.3202,-0.51808 2.27618,-4.89732 3.8736,-6.5335 2.15748,-2.20982 4.52181,-3.14483 8.04062,-3.17978 2.27485,-0.0226 2.81661,0.0936 4.65412,0.9984 5.00325,2.46357 7.05468,6.38189 7.05468,13.47477 0,2.02317 -0.13946,3.93908 -0.30991,4.25757 -0.48891,0.91354 -5.16999,2.58972 -9.07858,3.25083 -1.19162,0.20155 -2.16658,0.47643 -2.16658,0.61085 0,0.36883 2.61142,0.65204 6.06307,0.65754 1.69658,0.003 3.25975,0.11616 3.47369,0.25212 0.81021,0.51488 -2.39405,5.93991 -5.51059,9.32979 -1.44311,1.56969 -4.42201,3.76996 -6.57182,4.85408 -1.67389,0.84411 -1.52437,0.9604 -3.60755,-2.80559 -2.00449,-3.62375 -2.12943,-3.33506 -1.36486,3.15366 l 0.21086,1.78953 -3.0681,0.37705 c -3.32754,0.40893 -3.17387,0.40738 -5.51291,0.0556 z"
id="path265" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 70.540906,595.25253 c -5.29727,-1.11691 -11.296533,-3.39985 -11.612259,-4.41888 -0.09581,-0.30925 -0.334636,-2.29553 -0.530715,-4.41396 -0.334611,-3.61513 -0.257071,-7.1385 0.299219,-13.59635 0.181704,-2.10936 0.139209,-2.71851 -0.198692,-2.84818 -0.236408,-0.0907 -0.479217,-0.11099 -0.539576,-0.045 -0.06036,0.066 -1.377344,3.90234 -2.926634,8.52531 l -2.81689,8.40542 -1.31243,-0.90626 c -5.099356,-3.52121 -12.081608,-12.81327 -14.830235,-19.73624 -0.978863,-2.46547 -2.39945,-7.50971 -2.866807,-10.1795 l -0.205199,-1.17221 1.714937,-0.47794 c 0.943215,-0.26286 3.159319,-0.79759 4.924677,-1.18829 4.652727,-1.02972 5.617047,-1.33806 5.617047,-1.79606 0,-0.22497 -0.287609,-0.50031 -0.639132,-0.61188 -0.705039,-0.22377 -6.232395,-1.23219 -9.878536,-1.80225 l -2.332828,-0.36473 0.191785,-1.64524 c 1.176663,-10.0941 3.446262,-15.97106 8.553773,-22.14936 2.092748,-2.5315 8.967167,-7.96146 9.457969,-7.47066 0.09239,0.0924 -0.273322,0.71919 -0.812681,1.3929 -1.89813,2.37094 -2.454019,4.35705 -2.454019,8.76782 0,4.58699 1.517305,7.70953 5.237168,10.77785 2.571679,2.12124 5.375653,3.51662 11.132512,5.54001 7.031884,2.47153 10.692681,3.87907 13.593025,5.22639 1.473952,0.6847 2.810007,1.24491 2.969011,1.24491 0.547598,0 0.396371,0.6067 -2.467373,9.89873 -0.780179,2.53146 -1.337243,4.73414 -1.237917,4.89485 0.402845,0.65182 -0.02217,1.04118 8.073112,-7.39588 l 2.603084,-2.71298 2.149762,1.88739 c 2.440604,2.14273 5.581512,5.69008 6.954122,7.85401 0.510086,0.80416 1.30815,2.61761 1.773475,4.02989 1.063253,3.22703 1.191832,8.39415 0.290893,11.68989 -0.873265,3.19451 -2.912333,6.9357 -4.82487,8.85246 -3.076736,3.08352 -7.024759,5.33085 -10.753685,6.12132 -2.967355,0.62903 -8.875024,0.54386 -12.295093,-0.17725 z"
id="path266" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="M 0.56170468,560.03904 C 0.03248666,559.90074 0,558.36438 0,533.47473 0,510.1444 0.05743671,507.00953 0.49149346,506.6493 c 0.40236434,-0.33393 0.56243244,-0.31733 0.88267874,0.0916 1.4034944,1.79207 5.8281497,6.65719 6.054481,6.65719 0.5136045,0 0.2767815,-1.20517 -1.0091711,-5.13559 -0.706143,-2.15827 -1.2838964,-4.11082 -1.2838964,-4.33901 0,-0.5006 4.7404078,-2.2718 7.8638653,-2.93825 2.875231,-0.61347 8.472925,-0.59664 11.190718,0.0337 1.944451,0.45095 8.228216,3.13351 8.228216,3.51266 0,0.0905 -1.090469,0.16457 -2.423263,0.16457 -4.387601,0 -8.387027,2.51192 -10.078139,6.32978 -1.41137,3.18632 -1.480449,5.58079 -0.397162,13.76676 0.537321,4.06032 1.065066,8.49763 1.172767,9.86069 0.189228,2.39486 0.171087,2.48364 -0.538918,2.6375 -0.404105,0.0876 -2.901312,0.56523 -5.549348,1.06147 -3.616029,0.67765 -4.8146118,1.01987 -4.8146118,1.37468 0,0.43556 2.0711938,1.11136 8.7465448,2.85385 1.189859,0.3106 1.364139,0.46941 1.364139,1.24305 0,1.24252 -1.458224,5.56957 -2.720894,8.07383 -1.946798,3.86109 -6.246041,7.07997 -10.695573,8.00787 -1.6754804,0.3494 -4.8243406,0.42035 -5.92222232,0.13344 z"
id="path267" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="M 1.524627,601.6242 0,600.62707 v -16.93165 -16.93164 l 1.2036529,-0.19896 c 1.5597194,-0.2578 5.5546562,-0.25611 7.7142749,0.003 l 1.6960112,0.2037 -0.219894,4.9291 c -0.162996,3.65368 -0.123482,4.9291 0.152708,4.9291 0.204931,0 1.346158,-1.99603 2.536059,-4.43562 l 2.163458,-4.43563 1.765358,0.6923 c 8.135196,3.1903 13.757401,8.60313 16.335007,15.72669 1.247119,3.44658 1.278694,4.17119 0.114915,2.63735 -1.217974,-1.60526 -2.308372,-2.38854 -4.651993,-3.34172 -1.71237,-0.69643 -2.369419,-0.79595 -4.460036,-0.67547 -4.515304,0.26019 -7.651884,2.50432 -11.992018,8.57993 -4.2151035,5.90058 -8.4824982,11.23835 -8.9872749,11.24151 -0.1765358,10e-4 -1.0070563,-0.4467 -1.8456011,-0.99512 z"
id="path268" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 21.427579,663.26629 c -1.765016,-0.41614 -5.714458,-2.39942 -6.823257,-3.42641 -3.963682,-3.67124 -6.7289739,-10.08352 -7.382457,-17.11876 l -0.2263502,-2.43683 2.21768,-1.46101 c 2.3425522,-1.54329 7.3558212,-4.1294 10.4464692,-5.38886 1.015081,-0.41366 1.845601,-0.86996 1.845601,-1.01401 0,-0.50608 -1.62556,-0.31998 -11.6944321,1.33888 -1.0475972,0.17259 -1.9735203,0.24501 -2.0576071,0.16092 -0.2494586,-0.24946 0.5752112,-3.67942 1.465396,-6.09486 2.4496012,-6.64679 5.8064822,-11.68216 10.6575342,-15.98646 2.818271,-2.50063 2.485582,-2.56774 5.680494,1.14592 2.84005,3.30117 3.288251,3.75295 3.732237,3.76202 0.41647,0.008 0.269947,-0.73496 -0.760695,-3.85979 -0.550784,-1.66993 -1.196006,-3.65727 -1.433826,-4.41631 l -0.4324,-1.38008 1.514069,-0.65835 c 3.847474,-1.67298 6.54388,-2.27811 10.822319,-2.42875 5.34799,-0.18829 7.762428,0.3065 12.432572,2.5478 l 3.530969,1.69458 -3.167158,0.002 c -2.929177,0.002 -3.313319,0.0782 -5.11226,1.017 -4.127217,2.15372 -6.230984,5.92656 -6.23297,11.17803 -4.66e-4,1.23575 0.350394,4.63006 0.779694,7.5429 0.429296,2.91284 0.881347,6.91321 1.004549,8.88972 l 0.224008,3.59366 -0.766781,0.18788 c -0.421728,0.10334 -2.903417,0.59876 -5.51486,1.10094 -2.611445,0.50217 -4.84061,1.00557 -4.9537,1.11866 -0.113091,0.11309 -0.07052,0.34072 0.09461,0.50585 0.250791,0.25079 9.623157,2.89881 10.260011,2.89881 0.665598,0 -1.276324,6.45962 -2.826469,9.40197 -1.768891,3.35757 -5.794042,6.36742 -10.023386,7.4951 -1.788715,0.47693 -5.461892,0.52114 -7.299603,0.0879 z"
id="path269" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 231.10333,649.89232 c 0.001,-0.1324 0.2295,-0.67405 0.50758,-1.20365 1.88046,-3.58135 2.69375,-8.62276 2.07122,-12.83897 -0.98923,-6.69979 -3.2332,-11.48478 -7.22514,-15.40676 -1.50108,-1.47477 -3.87366,-3.37022 -4.21857,-3.37022 -0.12885,0 -0.46231,-0.20486 -0.74101,-0.45523 -0.87645,-0.78735 -5.60751,-2.71438 -8.73567,-3.55817 -4.3714,-1.17914 -7.30191,-1.44015 -21.62166,-1.92576 -3.00111,-0.10177 -6.46763,-0.25107 -7.70338,-0.33178 -1.23575,-0.0807 -3.43773,-0.22133 -4.89329,-0.3125 -3.66457,-0.22953 -13.98177,-1.37553 -14.63283,-1.62536 -0.46822,-0.17968 -0.53728,-0.86988 -0.555,-5.54719 -0.0525,-13.8466 -0.18295,-20.46125 -0.41089,-20.82897 -0.43739,-0.70562 -1.31356,-0.42771 -2.0308,0.64414 -0.72259,1.07985 -2.02079,3.6127 -3.41252,6.65802 -4.95846,10.84984 -6.96305,14.76483 -7.55995,14.76465 -1.47587,-4.6e-4 -9.25142,-3.6707 -13.90585,-6.5639 -5.45446,-3.39049 -8.40625,-5.97512 -11.25961,-9.85904 -6.66886,-9.0775 -8.77988,-21.12661 -5.66485,-32.33332 1.90203,-6.84281 8.64795,-16.1995 14.27426,-19.7986 6.97618,-4.46261 15.39415,-7.16867 24.85486,-7.98991 2.18153,-0.18936 14.0763,-0.23225 14.38188,-0.0519 0.12235,0.0722 1.44626,0.22823 2.94203,0.34667 1.49577,0.11844 2.74334,0.24334 2.77238,0.27754 0.64237,0.75668 5.68869,12.7219 6.05022,14.34554 0.059,0.2648 0.62886,2.20097 1.26643,4.30259 0.63757,2.10162 1.21426,4.12375 1.28152,4.49363 0.0673,0.36988 0.36124,1.68358 0.65328,2.91933 0.29205,1.23575 0.66049,2.82457 0.81875,3.53072 1.35991,6.06765 1.71471,6.89423 2.65354,6.18189 0.46129,-0.35 0.55673,-1.43989 0.70995,-8.10774 0.0974,-4.23685 0.26727,-11.02546 0.37759,-15.08578 0.11032,-4.06032 0.18942,-7.64883 0.17579,-7.97447 -0.0202,-0.48348 0.13388,-0.55393 0.84024,-0.38411 1.79197,0.43081 7.68475,2.82845 9.6918,3.94338 2.3462,1.30332 10.98661,6.77553 11.2341,7.11485 0.0883,0.12103 0.66602,0.56654 1.28389,0.99003 5.5957,3.83531 13.49455,11.42185 17.01163,16.33903 0.79441,1.11065 2.04654,2.8567 2.78251,3.8801 0.73597,1.0234 1.87063,2.85119 2.52146,4.06174 0.65084,1.21056 1.29544,2.34545 1.43245,2.52199 0.52142,0.67184 2.25086,4.11988 2.25086,4.48761 0,0.37387 -8.47242,5.79114 -12.35751,7.9014 -1.05921,0.57533 -2.91018,1.6753 -4.11326,2.44438 -1.75897,1.12443 -2.16763,1.53757 -2.08634,2.10925 0.0892,0.62708 0.2904,0.7099 1.70597,0.70218 2.11533,-0.0115 4.63887,-0.29253 11.23409,-1.25089 3.00111,-0.43609 6.39541,-0.89005 7.54289,-1.00878 1.14748,-0.11874 2.19466,-0.2793 2.32706,-0.35681 0.13241,-0.0775 0.24188,-0.0963 0.24328,-0.0417 0.001,0.0545 0.36612,1.83244 0.81048,3.95087 0.44437,2.11843 0.88574,4.35723 0.98083,4.9751 0.0951,0.61788 0.23801,1.48451 0.31759,1.92585 0.70458,3.90782 0.80197,14.17853 0.17805,18.77698 -0.39759,2.93024 -2.28828,10.59816 -3.07271,12.46166 -0.23597,0.56059 -0.75382,1.81366 -1.15077,2.78461 -0.39696,0.97095 -0.95472,2.26845 -1.23948,2.88333 -0.77559,1.67476 -5.62745,8.742 -8.54209,12.44245 -2.36236,2.99928 -3.05253,3.69006 -3.04728,3.04999 z"
id="path270" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 271.85748,594.02599 c 2.70587,-1.85488 4.14891,-3.85072 5.18041,-7.16493 1.58667,-5.09798 -0.1261,-10.44531 -4.73088,-14.77 -0.68441,-0.64277 -3.96707,-2.9926 -7.29481,-5.22185 -3.32774,-2.22923 -7.48293,-5.1512 -9.23376,-6.49324 l -3.18333,-2.44008 0.75711,-1.32535 c 0.41641,-0.72893 1.71889,-2.88369 2.8944,-4.78835 2.77576,-4.49753 3.49384,-5.92309 3.1047,-6.16359 -0.40881,-0.25266 -0.70571,-0.0837 -6.48244,3.69007 l -4.91638,3.2117 -0.86334,-1.04489 c -1.35969,-1.64564 -3.24977,-4.97111 -4.53615,-7.98108 -1.95566,-4.57598 -1.94235,-9.06993 0.0419,-14.17025 2.69974,-6.93921 9.88043,-11.79341 17.4457,-11.79341 5.61631,0 11.67704,2.24319 17.92291,6.6336 l 2.72828,1.91779 -0.0488,2.13199 c -0.0694,3.0332 -0.88073,6.72686 -2.6927,12.25878 -1.06521,3.25208 -1.46917,4.9125 -1.24877,5.1329 0.2204,0.2204 0.39933,0.21532 0.55315,-0.0157 0.12505,-0.18781 2.15356,-3.32814 4.50781,-6.9785 2.35425,-3.65036 4.32803,-6.63702 4.38619,-6.63702 0.49608,0 3.53143,4.8132 5.1616,8.18484 3.37313,6.97654 4.5179,11.15117 4.8458,17.67127 0.10703,2.12816 0.0929,4.5475 -0.0314,5.37631 l -0.22598,1.50694 h -5.73892 c -3.34637,0 -5.81884,0.1293 -5.93062,0.31016 -0.216,0.3495 1.84473,1.41859 7.13499,3.70156 1.98603,0.85705 3.61096,1.6648 3.61096,1.795 0,0.59582 -2.39286,6.43216 -3.36185,8.19977 -2.48321,4.52981 -6.96685,9.44056 -10.66685,11.683 -1.59115,0.96433 -9.11369,4.18815 -9.67034,4.14426 -0.11744,-0.009 0.14415,-0.26202 0.58132,-0.5617 z"
id="path271" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 275.08477,661.17412 c -8.54793,-2.29717 -13.48813,-9.21229 -14.90288,-20.86053 l -0.41071,-3.38163 1.95452,-1.38992 c 2.56327,-1.82281 5.36422,-3.34139 9.49518,-5.14799 3.37923,-1.47783 4.12596,-1.9222 3.79175,-2.25641 -0.16049,-0.16049 -11.77888,1.53722 -13.70921,2.00323 -0.76497,0.18466 -0.76999,0.16969 -0.55522,-1.65763 0.44661,-3.79993 3.67272,-11.06203 6.96415,-15.67654 2.62823,-3.68472 8.09527,-8.83112 8.82733,-8.30961 0.16839,0.11997 1.31596,1.36967 2.55015,2.77712 3.88528,4.43073 4.10547,4.66292 4.422,4.66292 0.43133,0 0.11976,-1.35155 -1.42156,-6.16647 -0.7398,-2.31105 -1.20054,-4.2492 -1.04156,-4.38136 0.36879,-0.30658 3.36658,-1.4566 5.42068,-2.07949 2.98281,-0.90453 5.08183,-1.1935 8.64597,-1.19028 3.60041,0.003 3.90526,0.0343 6.76079,0.68898 1.50988,0.34616 8.96187,3.79228 8.72112,4.03302 -0.0613,0.0613 -0.89217,-0.0367 -1.84643,-0.21763 -1.23202,-0.23365 -2.24741,-0.22321 -3.50242,0.036 -7.14096,1.47483 -10.80692,7.56083 -9.69584,16.09643 1.32894,10.2092 1.62886,12.9024 1.72382,15.47923 l 0.10611,2.87948 -1.12341,0.20147 c -5.87202,1.05304 -10.47694,2.00165 -10.68599,2.2013 -0.51105,0.48807 0.71889,0.99314 5.55797,2.28236 2.71757,0.72401 5.07235,1.39754 5.23285,1.49673 0.75577,0.4671 -1.0041,6.59014 -2.85238,9.92412 -1.2395,2.23584 -4.07697,5.01118 -6.41798,6.27746 -3.65864,1.97899 -8.41203,2.64225 -12.0088,1.67565 z"
id="path272" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 151.17755,666.58297 c -7e-4,-0.1324 0.95794,-2.30808 2.1303,-4.83483 1.57752,-3.40001 2.0378,-4.68786 1.77086,-4.9548 -0.26694,-0.26695 -0.54951,-0.19468 -1.08713,0.27801 -0.39955,0.35128 -2.31527,2.06944 -4.25716,3.81813 -1.94189,1.74868 -3.85936,3.46677 -4.26103,3.81796 l -0.73031,0.63855 -2.25862,-2.23015 c -6.06619,-5.98975 -9.4892,-11.82125 -11.20043,-19.0813 -0.66391,-2.81671 -0.81067,-7.69051 -0.36725,-12.19701 l 0.20528,-2.08634 0.4274,2.08634 c 0.57658,2.8146 1.76104,4.90716 4.0416,7.14021 3.4871,3.41447 7.82657,4.87334 12.27335,4.12615 3.68369,-0.61897 6.7647,-1.94808 11.45591,-4.94196 5.48611,-3.50117 12.37435,-7.58459 15.1647,-8.98979 l 2.21489,-1.1154 3.20791,4.62944 c 5.06815,7.31403 5.43125,7.79818 5.85594,7.80819 0.71192,0.0168 0.34233,-3.70991 -1.20607,-12.16085 -0.1752,-0.95625 -0.31855,-1.92001 -0.31855,-2.14168 0,-1.33831 11.38908,-2.38455 15.56724,-1.43007 6.8241,1.55895 13.62995,8.16976 15.39764,14.95641 0.67586,2.59479 0.66051,9.084 -0.027,11.39978 -1.42642,4.80491 -5.09356,9.86913 -9.90555,13.67932 l -2.55922,2.02642 h -6.88147 -6.88146 l -2.43535,-1.99546 c -1.33944,-1.09751 -3.22976,-2.7428 -4.20071,-3.6562 -2.91769,-2.74478 -3.865,-3.45069 -4.19193,-3.12376 -0.25422,0.25422 2.17956,4.39854 4.72931,8.05323 l 0.50384,0.72219 h -16.08785 c -8.84832,0 -16.08842,-0.10833 -16.08911,-0.24073 z"
id="path273" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 96.414929,664.65713 c 0.103318,-1.19162 0.279581,-3.28806 0.391695,-4.65876 0.112115,-1.3707 0.320998,-2.56458 0.464185,-2.65308 0.215916,-0.13344 5.322361,-0.40084 8.730891,-0.45719 1.67739,-0.0277 0.86736,-0.69615 -3.1295,-2.58239 -2.79454,-1.31883 -4.012176,-2.05729 -4.012176,-2.43327 0,-0.91128 2.599866,-5.47828 4.085286,-7.17635 0.96858,-1.10722 2.15352,-1.97601 3.81517,-2.79724 2.05802,-1.01713 2.80499,-1.21192 5.1117,-1.33299 1.54501,-0.0811 3.35634,0.0231 4.23124,0.24341 1.86683,0.47007 4.66634,2.13186 6.23642,3.70194 3.15458,3.15459 4.88378,9.44691 4.30206,15.65469 l -0.2267,2.41928 -1.8213,0.80597 c -2.50301,1.10763 -4.2086,1.65129 -8.18916,2.6103 -3.2136,0.77424 -3.90236,0.82225 -11.79528,0.82225 h -8.382381 z"
id="path274" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 67.277457,665.22498 c -0.31619,-0.8793 -1.82977,-3.58752 -3.363511,-6.01826 -4.473514,-7.08986 -7.09417,-11.77418 -6.757838,-12.0794 0.07577,-0.0688 2.159907,-1.53723 4.631407,-3.26325 2.471501,-1.72603 4.556228,-3.19059 4.632726,-3.25459 0.0765,-0.064 -0.0063,-0.26178 -0.184087,-0.43953 -0.216919,-0.21692 -1.990127,-0.0504 -5.39313,0.50649 -2.788474,0.45631 -5.252833,0.75949 -5.476355,0.67371 -0.623477,-0.23925 -1.219071,-5.10418 -1.072288,-8.75865 0.122407,-3.04758 0.214538,-3.41917 1.481838,-5.97669 2.062956,-4.16322 5.832347,-7.30655 10.135874,-8.45241 2.222869,-0.59186 6.436585,-0.56284 8.575886,0.0591 2.548341,0.74082 5.719609,2.76383 8.166739,5.20971 2.201387,2.20027 6.576083,8.45416 6.576083,9.40091 0,1.18864 -4.646211,7.51081 -8.263315,11.24401 -1.069283,1.1036 -1.614131,1.89135 -1.399784,2.02383 0.322258,0.19916 2.154378,-0.90071 9.181638,-5.51197 l 2.567793,-1.68498 0.594187,1.84358 c 0.483066,1.49881 0.598713,2.92407 0.618382,7.62112 0.0218,5.20584 -0.05782,6.09915 -0.804611,9.02781 -0.455841,1.78764 -1.440827,4.6403 -2.188851,6.33923 -1.178386,2.67638 -1.463578,3.08897 -2.135133,3.08897 -0.426295,0 -2.491701,-0.79441 -4.589788,-1.76536 -2.098087,-0.97094 -3.895245,-1.76535 -3.993684,-1.76535 -0.465732,0 -0.07483,0.86341 0.965919,2.13352 l 1.144898,1.39719 h -6.538051 -6.538052 z"
id="path275" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 102.32961,628.80389 c -2.02654,-0.52246 -3.619648,-1.64779 -4.774003,-3.37223 -1.169675,-1.74733 -2.226298,-5.04481 -2.226298,-6.94778 0,-1.33382 0.08235,-1.46166 1.524627,-2.36673 0.838545,-0.52621 2.427367,-1.35302 3.530714,-1.83737 1.98009,-0.86921 2.68802,-1.54649 1.2839,-1.2283 -1.13881,0.25807 -4.836857,0.8064 -5.456562,0.80907 -0.816357,0.004 -0.70983,-0.96509 0.415114,-3.77451 1.16163,-2.90103 3.243252,-5.91868 5.118468,-7.42003 l 1.35678,-1.08628 1.71578,1.88872 c 0.94368,1.03879 1.72056,1.74427 1.72639,1.56774 0.006,-0.17654 -0.27641,-1.23658 -0.62721,-2.35566 -0.35079,-1.11908 -0.6378,-2.14814 -0.6378,-2.28681 0,-0.13867 1.00864,-0.57645 2.24144,-0.97285 3.14212,-1.01033 7.44921,-0.83197 9.79509,0.40561 1.52992,0.80713 1.5599,0.84769 0.64194,0.86866 -0.5296,0.0121 -1.54067,0.28865 -2.24682,0.61455 -3.07958,1.42132 -3.91742,3.75512 -3.22527,8.98396 0.24818,1.87486 0.54171,4.21989 0.65229,5.21118 l 0.20106,1.80235 -2.90646,0.56454 c -1.59855,0.31049 -2.90645,0.67052 -2.90645,0.80007 0,0.12954 1.21046,0.56083 2.68991,0.95841 l 2.68991,0.72288 -0.39414,1.48931 c -1.4191,5.36228 -5.51736,8.16417 -10.1824,6.9615 z"
id="path276" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 521.90389,666.26689 c 1.67209,-1.09011 4.41327,-4.25617 5.53781,-6.39618 1.79769,-3.42101 2.5926,-6.72704 2.95876,-12.30545 0.0985,-1.50056 0.24802,-3.66713 0.33228,-4.81462 0.0843,-1.14748 0.23707,-3.38627 0.33959,-4.97509 0.10251,-1.58883 0.23673,-3.24987 0.29826,-3.69121 0.0615,-0.44134 0.20345,-1.74128 0.31539,-2.88876 0.11193,-1.14749 0.3364,-2.80853 0.4988,-3.69121 0.33169,-1.80267 0.56645,-3.32928 0.60584,-3.93966 0.0211,-0.32621 1.76981,-0.36507 8.64368,-0.19207 11.74089,0.29548 11.74313,0.28766 1.43875,-5.00708 -7.72397,-3.96885 -7.45651,-3.6012 -5.4986,-7.5581 2.93871,-5.93907 7.06107,-10.99776 10.73473,-13.17296 4.58074,-2.71229 7.64799,-3.51832 13.27453,-3.48837 3.76103,0.02 4.66278,0.13244 6.8297,0.85145 4.31402,1.43143 9.46486,4.95934 11.8568,8.12092 2.82618,3.73557 4.83727,8.85989 5.62164,14.32417 0.33185,2.31182 0.24169,13.87252 -0.12228,15.67873 l -0.29105,1.44435 -2.77627,1.18869 c -4.55078,1.94845 -10.86483,3.71428 -19.27294,5.39 -1.15953,0.23109 -1.8456,0.52975 -1.8456,0.80343 0,0.62099 1.54808,0.76047 14.28335,1.28694 2.4715,0.10217 4.97644,0.26074 5.56654,0.35239 0.97623,0.1516 1.05457,0.24434 0.8693,1.02917 -0.38793,1.64333 -2.69187,6.1048 -4.69612,9.09382 -2.88381,4.30074 -5.13122,7.09838 -8.27825,10.30499 l -2.75634,2.80852 h -9.21114 -9.21114 l -1.03739,-1.8456 c -1.37618,-2.44834 -1.54284,-2.64119 -2.09836,-2.42802 -0.38098,0.14619 -0.43297,0.58307 -0.26513,2.22774 l 0.20878,2.04588 -11.82817,-0.0168 c -11.05044,-0.0157 -11.77542,-0.0512 -11.02575,-0.53998 z"
id="path277" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 435.96234,656.63277 c 1.97431,-2.0264 2.64825,-3.92534 2.64853,-7.46264 3e-4,-3.79566 -0.68458,-5.36334 -3.5919,-8.22182 -1.61327,-1.58616 -2.93842,-2.44362 -6.90549,-4.46834 -4.5556,-2.32509 -10.08581,-5.40796 -11.81986,-6.5891 l -0.73739,-0.50227 2.29944,-5.08961 c 1.26469,-2.79929 2.29943,-5.20927 2.29943,-5.35551 0,-0.72489 -1.18731,0.0238 -4.98445,3.14312 l -4.1498,3.40901 -1.23873,-1.39587 c -1.88922,-2.12889 -4.58454,-6.35925 -5.17546,-8.12299 -1.73382,-5.175 -0.39743,-11.43272 3.34836,-15.67885 1.48192,-1.67988 4.96802,-3.90777 7.12711,-4.5548 5.06191,-1.51693 11.07175,-0.46982 18.03289,3.14191 l 3.17021,1.64484 -0.20941,3.37658 c -0.2098,3.38286 -0.82716,7.54404 -1.63176,10.99853 -0.27349,1.17422 -0.31564,1.91485 -0.116,2.03823 0.17247,0.10659 0.3635,0.14324 0.42451,0.0814 0.061,-0.0618 1.42678,-2.8206 3.03505,-6.13065 1.60827,-3.31004 3.04695,-6.01826 3.19707,-6.01826 0.48638,0 2.8116,2.73616 4.52868,5.32904 2.10148,3.17335 4.19404,7.34526 5.08804,10.14393 0.77332,2.42088 1.55581,7.22298 1.51658,9.30711 l -0.026,1.37931 -4.33315,0.41347 c -2.38324,0.22741 -4.5137,0.47565 -4.73437,0.55163 -1.03533,0.35652 -0.0479,0.88537 4.2772,2.2907 l 4.67842,1.52015 -0.21294,1.13506 c -0.38271,2.04003 -1.81659,6.24535 -2.79997,8.21185 -2.68742,5.3741 -6.31794,8.94475 -12.03055,11.83214 -2.22253,1.12336 -2.36576,1.07083 -0.97433,-0.35732 z"
id="path278" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 453.53641,666.30842 c 0,-0.86679 1.64467,-6.03826 2.05929,-6.4752 0.67376,-0.71004 7.63708,-1.43732 12.15031,-1.26903 3.67048,0.13687 4.95746,-0.0286 4.14195,-0.53265 -0.15148,-0.0936 -3.07505,-0.9786 -6.49681,-1.96662 -3.42177,-0.98802 -6.28521,-1.86022 -6.3632,-1.93821 -0.27401,-0.27401 2.24,-3.59074 3.90198,-5.14786 5.89235,-5.52057 10.26723,-8.1375 16.56308,-9.90756 1.65382,-0.46497 3.05173,-0.80061 3.10646,-0.74588 0.0547,0.0547 0.68338,2.10368 1.39699,4.55323 0.71361,2.44954 1.36434,4.52058 1.44606,4.60231 0.0817,0.0817 0.28597,0.0637 0.45388,-0.0401 0.30541,-0.18875 0.50249,-1.25914 0.88871,-4.82657 0.11323,-1.04594 0.25056,-2.12923 0.30517,-2.4073 0.0546,-0.27808 0.11035,-0.9887 0.12385,-1.57915 l 0.0246,-1.07355 2.80852,0.21207 c 9.20795,0.69531 15.67945,4.01689 20.64818,10.59792 1.50222,1.98968 1.58344,2.36497 0.31659,1.4629 -1.58598,-1.12932 -3.48481,-1.61998 -6.26929,-1.61998 -2.29957,0 -2.88823,0.12572 -4.60444,0.98332 -3.74947,1.87363 -5.60927,4.71735 -7.80946,11.94105 -0.85492,2.80688 -1.63626,5.23588 -1.73632,5.39778 -0.1069,0.17296 -7.7853,0.29435 -18.61899,0.29435 -16.71244,0 -18.43707,-0.0482 -18.43707,-0.51528 z"
id="path279" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 327.1738,664.00981 c -1.67164,-2.81575 -3.35033,-6.24188 -4.62175,-9.43277 -1.12503,-2.82349 -2.86184,-8.20722 -2.86184,-8.87104 0,-0.67813 0.74101,-1.0155 7.54289,-3.43412 2.11843,-0.75327 5.15163,-1.83296 6.74046,-2.39931 3.09937,-1.10481 3.88261,-1.61671 3.60009,-2.35294 -0.21778,-0.56754 -1.66243,-0.74748 -9.53812,-1.18805 -3.26591,-0.1827 -6.87687,-0.39549 -8.02435,-0.47286 -1.14748,-0.0774 -2.19466,-0.14716 -2.32706,-0.15509 -0.1324,-0.008 -0.24073,-2.3844 -0.24073,-5.28104 0,-10.50729 1.71588,-18.59896 5.63297,-26.56362 3.14964,-6.40423 4.34676,-8.06684 9.44207,-13.11354 4.10911,-4.06992 8.0351,-7.42692 8.0351,-6.87059 0,0.1003 -0.40927,0.78614 -0.90948,1.5241 -2.50206,3.6912 -3.28821,6.08505 -3.49753,10.64997 -0.46376,10.11397 4.00503,17.43863 13.57769,22.2548 3.37442,1.69773 6.3925,2.63758 14.09994,4.39083 12.40496,2.82181 15.45283,3.61803 23.31671,6.09125 3.84792,1.21018 4.67826,1.57724 4.5791,2.02425 -0.0666,0.30031 -0.70928,3.86811 -1.42812,7.92843 -0.71885,4.06032 -1.43516,7.96016 -1.5918,8.6663 -0.31782,1.43275 -0.72722,4.15279 -0.77296,5.13558 -0.0196,0.42124 0.20337,0.67524 0.64854,0.73878 0.79716,0.11378 1.9435,-1.18137 5.9096,-6.6768 3.02511,-4.1916 7.30875,-9.96534 7.71898,-10.40412 0.56767,-0.60716 6.13921,3.31944 11.04996,7.78755 5.34148,4.86002 8.16295,8.98972 9.83052,14.38867 0.62053,2.00907 1.56274,6.76196 1.56362,7.88757 4.2e-4,0.53111 -1.70188,0.5617 -31.25809,0.5617 h -31.25853 l -0.21548,-1.4369 c -0.11851,-0.7903 -0.3579,-1.52492 -0.53196,-1.6325 -0.54556,-0.33717 -1.19252,0.4877 -1.4149,1.80398 l -0.2138,1.26542 -15.45878,-0.005 -15.45879,-0.005 z"
id="path280" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 486.59674,622.33489 c -3.47421,-0.61765 -8.47312,-2.57706 -11.47697,-4.49859 -8.63128,-5.52136 -14.18937,-17.53071 -15.65845,-33.83311 l -0.18883,-2.09553 2.50828,-1.7844 c 5.15856,-3.66982 8.13498,-5.27826 16.95211,-9.16086 3.0011,-1.32153 5.59377,-2.53687 5.76148,-2.70075 0.19213,-0.18775 0.16647,-0.43642 -0.0693,-0.67225 -0.38568,-0.38568 -2.5284,-0.17028 -8.5809,0.86261 -4.30999,0.73552 -12.76013,2.05305 -14.16726,2.20894 -1.11702,0.12374 -1.31107,0.0613 -1.22,-0.39238 0.0596,-0.29675 0.34516,-1.90618 0.63467,-3.57653 0.48525,-2.79968 0.92502,-4.19409 2.82783,-8.96641 1.05213,-2.63879 4.29627,-9.26502 5.5949,-11.4277 3.58395,-5.96858 10.02304,-12.99391 15.82267,-17.26321 l 1.21381,-0.89352 1.42517,1.53547 c 0.78385,0.84451 2.04135,2.25766 2.79446,3.14034 5.48617,6.43006 6.95106,7.95614 7.46324,7.77493 0.5927,-0.20969 0.35797,-1.82002 -0.75055,-5.14898 -1.68876,-5.07148 -3.82601,-11.88112 -3.74345,-11.92723 0.303,-0.16922 4.65154,-1.89429 6.48066,-2.57088 2.19031,-0.8102 5.99018,-1.85861 8.20272,-2.26318 3.46107,-0.63286 5.13454,-0.74375 9.78971,-0.64865 5.19396,0.10611 9.78736,0.78901 12.99945,1.93261 2.08307,0.74165 11.94638,5.66612 11.74737,5.86514 -0.0922,0.0922 -0.85892,-0.006 -1.70373,-0.21907 -2.07633,-0.52283 -5.9316,-0.45722 -8.27828,0.14088 -3.19399,0.81406 -6.91231,2.82958 -9.04352,4.90205 -5.51941,5.36732 -7.33967,13.8129 -5.41234,25.11203 0.22498,1.31899 1.39145,9.65418 1.61708,11.55507 0.11525,0.97095 0.2816,2.34311 0.36968,3.04925 0.35046,2.80968 0.63537,7.18541 0.61478,9.44204 l -0.0217,2.3806 -5.13559,1.0154 c -2.82457,0.55848 -6.50775,1.26915 -8.18484,1.57927 -5.88933,1.08905 -6.0985,1.1517 -6.0985,1.82643 0,0.71211 0.54965,0.96324 4.49363,2.05308 14.65575,4.04981 13.80207,3.76266 13.79964,4.64178 -0.007,2.43107 -2.75882,10.83613 -4.86954,14.87182 -2.25903,4.31927 -5.4763,7.66907 -9.88357,10.2907 -2.43863,1.4506 -6.60253,3.16171 -8.70295,3.57638 -1.34971,0.26646 -8.82204,0.48214 -9.923,0.28641 z"
id="path281" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 371.36704,612.8723 c -0.79441,-0.15312 -2.62648,-0.86176 -4.07126,-1.57476 -5.89979,-2.91157 -9.4096,-9.44241 -10.52365,-19.58178 l -0.19396,-1.76536 2.49958,-1.66182 c 2.53721,-1.68684 6.77211,-3.88205 10.12271,-5.24722 1.93163,-0.78702 2.60158,-1.80541 0.96293,-1.46373 -1.85675,0.38716 -12.74193,2.07707 -12.82754,1.99147 -0.0495,-0.0495 0.0661,-0.94495 0.25691,-1.98992 0.75071,-4.11179 4.07855,-11.22931 7.05295,-15.08468 2.05838,-2.66804 7.45797,-7.62962 7.79248,-7.16036 0.76741,1.07655 6.144,7.02467 6.34971,7.02467 0.51869,0 0.29251,-1.12374 -1.00138,-4.9751 -0.70614,-2.10189 -1.2839,-4.05458 -1.2839,-4.3393 0,-0.9236 5.9523,-2.96401 10.2006,-3.49671 2.6159,-0.328 7.24804,-0.0461 9.58572,0.58337 1.5697,0.42268 5.13496,2.01127 6.60397,2.94258 l 1.053,0.66757 -1.2839,-0.14429 c -3.1807,-0.35746 -7.32477,1.17705 -9.47323,3.50786 -2.90099,3.1472 -3.75518,7.44099 -2.73734,13.75983 0.79349,4.92599 1.87203,15.24627 1.59335,15.24627 -0.0363,0 -1.48992,0.27571 -3.23022,0.6127 -1.7403,0.33698 -3.74194,0.70689 -4.44808,0.82203 -2.16678,0.35329 -3.6912,0.82208 -3.6912,1.13512 0,0.28698 2.31519,1.0371 7.94411,2.57392 3.14361,0.85827 3.11192,0.7612 1.67973,5.14387 -1.34698,4.12192 -2.68565,6.47242 -4.7969,8.42258 -3.86192,3.56728 -9.00225,5.04052 -14.13519,4.05119 z"
id="path282" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 418.90479,580.93664 c -1.73881,-0.46759 -4.04239,-1.5925 -5.43466,-2.65392 -0.73995,-0.56411 -0.7279,-0.5695 1.28389,-0.57508 3.12487,-0.009 5.54219,-1.50432 6.9239,-4.28401 0.46585,-0.93717 0.5874,-2.3513 0.7223,-8.40301 0.0892,-4.00191 0.26797,-7.38164 0.39727,-7.51049 0.12929,-0.12886 1.35702,-0.29121 2.72828,-0.36079 3.18915,-0.16182 4.57953,-0.37975 4.57953,-0.71779 0,-0.14792 -1.38683,-0.81775 -3.08184,-1.48852 -1.69502,-0.67076 -3.15512,-1.4105 -3.24466,-1.64386 -0.24894,-0.64872 1.93975,-4.99707 3.23918,-6.43538 2.31353,-2.56081 6.84153,-3.83591 10.17282,-2.8647 3.63444,1.05959 6.01952,3.28785 7.36316,6.87904 0.84305,2.25326 1.55628,8.22618 1.0746,8.99928 -0.5549,0.89064 -2.62318,1.89783 -6.53598,3.18284 l -3.69121,1.21223 4.57388,0.0891 c 5.22811,0.1018 5.11582,0.0174 3.79596,2.85216 -1.23607,2.65475 -3.01157,5.23442 -5.09856,7.4078 -2.03874,2.12314 -5.16702,4.41099 -5.63547,4.12147 -0.15129,-0.0935 -0.98118,-1.25528 -1.84421,-2.58173 -2.25457,-3.46523 -2.43937,-3.27694 -1.44609,1.47341 l 0.5792,2.77003 -2.36633,0.51996 c -2.88289,0.63347 -6.72504,0.63856 -9.05496,0.012 z"
id="path283" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 329.96138,570.84684 c -4.16391,-0.72379 -8.79618,-3.38972 -13.12634,-7.55438 l -3.0733,-2.95583 0.75405,-2.34128 c 0.88435,-2.74581 3.02734,-7.45454 4.66201,-10.24367 0.6349,-1.08329 1.15436,-2.17853 1.15436,-2.43387 0,-0.50092 -0.51991,-0.64136 -0.69545,-0.18785 -0.27114,0.70049 -9.0813,9.65322 -9.28674,9.43702 -0.63032,-0.66335 -2.22382,-4.36493 -2.79978,-6.5037 -1.81476,-6.7389 -2.14903,-12.60202 -1.03437,-18.14304 0.34512,-1.71564 0.71102,-3.20286 0.81311,-3.30495 0.10208,-0.10208 2.27242,0.23118 4.82297,0.74058 2.55055,0.5094 4.74628,0.81728 4.87939,0.68416 0.29245,-0.29245 -0.34926,-0.80565 -4.75416,-3.80208 l -3.4009,-2.31346 0.94255,-1.59856 c 5.13349,-8.70642 11.23749,-12.91909 20.94503,-14.45517 l 1.2839,-0.20316 -1.64525,0.9602 c -1.93234,1.12775 -3.33525,2.79365 -4.5058,5.35049 -1.55134,3.38857 -0.9962,7.55006 1.49936,11.2397 0.58579,0.86607 3.54126,4.03012 6.56771,7.03123 3.02645,3.00111 6.05714,6.14707 6.73488,6.99101 l 1.23225,1.53446 -0.65336,0.71236 c -2.56391,2.79549 -6.82248,7.78859 -6.82248,7.99924 0,0.54443 1.20712,0.18745 5.72446,-1.69289 5.4082,-2.25116 4.90907,-2.37617 6.44824,1.61503 1.515,3.92853 2.08404,7.32587 1.64722,9.83432 -1.24645,7.15761 -5.93965,12.03657 -12.92371,13.43522 -2.67196,0.53509 -3.18972,0.55131 -5.38985,0.16887 z"
id="path284" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 361.25635,548.89713 c -5.25063,-1.66492 -8.05281,-5.791 -8.99083,-13.23857 l -0.20808,-1.6521 1.49034,-1.02538 c 0.81969,-0.56396 3.03388,-1.76583 4.92043,-2.67082 1.88655,-0.90499 3.19583,-1.69318 2.90951,-1.75153 -0.28632,-0.0584 -2.28364,0.18981 -4.43849,0.55147 -2.15484,0.36166 -4.03239,0.65756 -4.17234,0.65756 -0.36564,0 0.14742,-2.46617 0.92177,-4.43072 1.70281,-4.32004 3.89434,-7.57193 6.83879,-10.14766 0.92444,-0.80868 1.75989,-1.47033 1.85656,-1.47033 0.0967,0 1.11022,1.11249 2.25233,2.4722 2.47198,2.94292 2.73549,2.63392 1.31856,-1.54615 l -0.93732,-2.76516 2.61302,-0.92604 c 2.33294,-0.82679 3.02589,-0.92525 6.46472,-0.91856 3.6402,0.007 3.98825,0.066 6.33866,1.07288 1.36783,0.58596 2.54884,1.1655 2.62447,1.28787 0.0756,0.12236 -0.6102,0.22356 -1.52405,0.22487 -2.36811,0.003 -4.86503,1.40123 -6.10746,3.41905 -1.23928,2.0127 -1.4305,4.68137 -0.70166,9.79201 0.30227,2.11949 0.57306,4.84322 0.60176,6.05274 l 0.0522,2.19911 -3.51065,0.67049 c -1.93085,0.36877 -3.56027,0.81938 -3.62092,1.00135 -0.0607,0.18197 0.86916,0.58566 2.06625,0.89709 4.99698,1.29998 4.67111,1.12556 4.4913,2.40398 -0.21614,1.53679 -1.37144,4.52987 -2.25399,5.83947 -2.26781,3.36521 -7.47858,5.21097 -11.29486,4.00088 z"
id="path285" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 427.03901,532.1922 c -12.28378,-2.51843 -22.21493,-8.58876 -27.85931,-17.02876 -1.62633,-2.43183 -5.0235,-8.24536 -5.0235,-8.59663 0,-0.0898 0.853,0.67131 1.89556,1.69145 1.76485,1.72691 4.33283,3.2488 6.55941,3.88737 0.82719,0.23723 1.61775,0.3462 5.5074,0.7591 2.96477,0.31473 7.75862,-1.46217 11.11031,-4.11817 2.84439,-2.254 5.73787,-6.40648 8.18805,-11.7508 1.17542,-2.56382 2.50051,-5.45589 2.94466,-6.42684 1.60441,-3.50743 5.19177,-10.79113 6.16535,-12.51799 0.5474,-0.97095 1.27345,-2.2955 1.61345,-2.94344 l 0.61817,-1.17809 2.49407,0.9442 c 1.37174,0.5193 2.78295,1.08157 3.13602,1.24947 0.35307,0.16791 1.43636,0.60213 2.4073,0.96494 0.97095,0.36281 2.05424,0.79109 2.40731,0.95174 0.35307,0.16064 1.97922,0.8144 3.61367,1.45279 4.02449,1.57191 4.58583,1.17798 2.29133,-1.60798 -0.72431,-0.87944 -2.23162,-2.56249 -3.34958,-3.74009 -3.31229,-3.48901 -6.5676,-7.26366 -6.5676,-7.61538 0,-0.62003 4.01636,-4.42582 7.06143,-6.69121 6.24066,-4.64277 9.78589,-5.94409 16.2092,-5.9498 10.49266,-0.009 18.7592,5.23589 23.66402,15.01509 1.26264,2.51745 1.89289,5.45078 2.08217,9.69094 0.31934,7.15361 -1.53901,14.31635 -6.07864,23.4293 l -1.309,2.62771 -2.10508,0.22543 c -4.0875,0.43774 -13.19282,-0.22942 -19.78419,-1.44962 -3.66844,-0.6791 -4.56506,-0.71412 -4.76764,-0.18621 -0.21211,0.55277 0.66892,1.00362 8.61933,4.41078 4.53885,1.94514 5.99618,2.58367 9.07703,3.97717 0.93204,0.42157 1.83478,0.76649 2.00609,0.76649 1.40097,0 -2.58125,4.27176 -7.10961,7.62652 -2.9212,2.16413 -7.50314,5.21244 -7.83486,5.21244 -0.09,0 -0.70236,0.33853 -1.36086,0.75229 -3.28403,2.06347 -9.86196,4.55053 -14.83867,5.61037 -3.61241,0.76931 -9.23114,1.52482 -9.4811,1.27487 -0.097,-0.097 -0.24372,-0.59129 -0.32607,-1.09842 -0.0823,-0.50713 -0.22478,-1.25344 -0.31653,-1.65845 -0.0918,-0.40502 -0.30245,-1.77718 -0.46819,-3.04926 -1.04511,-8.02086 -1.34362,-9.37429 -2.06758,-9.37429 -0.40773,0 -0.70777,0.32429 -0.89091,0.96292 -0.29861,1.04133 -1.31107,4.84941 -2.64546,9.9502 -1.14419,4.37374 -1.13084,4.3369 -1.55961,4.30418 -0.20877,-0.0159 -1.97608,-0.35628 -3.92734,-0.75633 z"
id="path286" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 370.16806,496.55115 c -3.65786,-1.02333 -6.99123,-3.40098 -9.1354,-6.51613 -1.12305,-1.63163 -2.38058,-5.07743 -2.68188,-7.34874 -0.28832,-2.17347 0.35216,-5.84138 1.51121,-8.65447 1.86769,-4.53297 6.18223,-10.71221 7.47023,-10.69874 2.20834,0.0231 7.2943,1.56327 13.57089,4.1097 3.56676,1.44705 1.94025,-0.083 -7.10702,-6.68545 l -1.90409,-1.38956 1.10166,-0.92922 c 2.16404,-1.82531 8.8402,-4.54791 13.51236,-5.51047 3.94008,-0.81173 12.22547,-0.86138 13.0089,-0.0779 0.11511,0.11511 0.0423,2.26183 -0.16181,4.77048 -0.53348,6.55685 -0.33631,6.54521 3.14842,-0.18574 0.97094,-1.87544 1.92028,-3.41149 2.10963,-3.41344 0.70912,-0.007 6.29917,2.91186 8.04312,4.20019 2.44737,1.80798 5.25586,4.70617 6.79709,7.01418 1.20696,1.80744 3.11054,6.44454 3.49837,8.52199 0.17644,0.94509 0.16167,0.93844 -0.79743,-0.35904 -1.22653,-1.65925 -2.42843,-2.51914 -4.95753,-3.5468 -3.97169,-1.61385 -8.42039,-0.64828 -12.05047,2.61548 -0.86185,0.77487 -3.50619,3.8995 -5.87633,6.94363 -4.65056,5.97302 -7.22985,8.95105 -7.75255,8.95105 -0.18125,0 -2.21531,-1.32038 -4.52015,-2.93417 -4.05024,-2.83589 -5.35707,-3.556 -5.35707,-2.95195 0,0.15799 1.15551,2.36445 2.56779,4.90324 1.41229,2.53879 2.5678,4.70687 2.5678,4.81795 0,0.35628 -3.40394,2.27908 -6.15676,3.47781 -2.3527,1.02449 -3.03244,1.17358 -5.71929,1.25448 -1.96663,0.0592 -3.64588,-0.0751 -4.72969,-0.37831 z"
id="path287" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 326.27018,496.87425 c -3.87075,-0.71873 -6.71417,-1.97359 -11.51003,-5.07961 l -2.52276,-1.63386 0.2131,-2.26348 c 0.25261,-2.68299 1.05596,-6.21008 2.40948,-10.57876 1.58452,-5.11425 1.09507,-4.75586 -3.44707,2.52407 -1.75764,2.81705 -3.3476,5.17254 -3.53326,5.23443 -0.53674,0.17891 -2.77887,-3.02938 -4.53549,-6.48989 -3.01052,-5.93068 -4.18231,-10.53444 -4.19071,-16.46468 l -0.006,-3.93194 h 4.79566 c 6.29551,0 6.48482,-0.27195 1.62382,-2.33271 -1.50056,-0.63613 -3.4091,-1.45923 -4.24121,-1.8291 l -1.51292,-0.67248 0.9391,-2.54699 c 1.18351,-3.20984 1.9588,-4.74234 3.77786,-7.46761 1.65279,-2.47615 5.11565,-5.87693 7.26951,-7.13918 1.48164,-0.8683 6.43397,-3.04791 6.92521,-3.04791 0.14726,0 -0.48744,0.77352 -1.41045,1.71893 -3.07521,3.14982 -3.90842,8.08802 -2.04627,12.12763 1.20948,2.62375 3.45973,4.85733 7.59497,7.53873 7.45165,4.83183 12.51069,8.40137 12.54014,8.84802 0.008,0.12222 -1.21308,2.33742 -2.71363,4.92266 -1.50055,2.58524 -2.72828,4.83236 -2.72828,4.9936 0,0.66403 1.01324,0.15031 5.12127,-2.59655 2.37536,-1.5883 4.3975,-2.88562 4.49364,-2.88294 0.44017,0.0123 2.78418,3.654 4.12879,6.41461 1.39468,2.8634 1.4928,3.23732 1.6097,6.13476 0.19576,4.8521 -1.05421,8.30013 -4.2669,11.77023 -2.11243,2.28167 -5.29789,4.06937 -8.43613,4.73439 -2.57775,0.54625 -3.37915,0.54569 -6.34157,-0.004 z"
id="path288" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 349.29431,455.27341 c -1.60713,-0.30633 -4.87517,-1.97963 -5.80149,-2.97049 -2.15228,-2.30223 -4.09309,-7.32837 -4.29162,-11.11405 l -0.0921,-1.75539 1.76536,-1.19982 c 0.97095,-0.6599 3.17363,-1.81624 4.89485,-2.56964 3.18753,-1.39522 3.96124,-2.03445 2.08634,-1.72372 -0.57375,0.0951 -2.34312,0.39005 -3.93194,0.65547 -4.48267,0.74884 -4.45738,0.75442 -4.22633,-0.9313 0.27995,-2.04246 2.44388,-6.85558 4.16928,-9.27351 1.36711,-1.91583 5.14496,-5.68024 5.70053,-5.68024 0.1309,0 1.14907,1.08329 2.2626,2.40731 1.86482,2.21732 2.53127,2.78985 2.522,2.16657 -0.002,-0.1324 -0.43099,-1.60996 -0.95339,-3.28347 -0.52239,-1.67351 -0.84576,-3.14429 -0.71861,-3.2684 0.5773,-0.56347 5.27737,-1.85448 7.45312,-2.04721 3.0414,-0.26941 5.80252,0.22499 8.5994,1.5398 l 2.15323,1.01222 -1.83719,0.24254 c -2.07569,0.27402 -3.51986,0.91388 -4.85242,2.14996 -2.2649,2.10091 -2.85498,5.24183 -1.99601,10.62444 0.29482,1.8474 0.61978,4.73617 0.72215,6.41948 l 0.18611,3.06056 -3.33324,0.60251 c -1.83328,0.33137 -3.62211,0.71202 -3.97518,0.84589 -0.60911,0.23094 -0.6009,0.26104 0.16048,0.58838 0.44134,0.18974 1.96027,0.64632 3.37541,1.01461 3.7002,0.963 3.57333,0.79748 2.73915,3.57348 -0.39044,1.29933 -1.05703,2.96199 -1.48131,3.6948 -2.14512,3.70508 -7.13956,6.01206 -11.29922,5.21922 z"
id="path289" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 425.93264,448.44476 c -1.67709,-0.22035 -3.08537,-0.42871 -3.1295,-0.46302 -0.0441,-0.0343 -0.4982,-0.0624 -1.00903,-0.0624 -0.84607,0 -1.0069,-0.19298 -1.80572,-2.16657 -2.02049,-4.9919 -3.48434,-10.41932 -4.65318,-17.25236 -0.85832,-5.0177 -1.11927,-5.82789 -1.71729,-5.33159 -0.26284,0.21814 -0.50706,1.43939 -0.63281,3.16439 -0.19593,2.68779 -0.66511,8.9438 -1.02913,13.72227 -0.20652,2.71095 -0.44589,4.33315 -0.63938,4.33315 -0.3817,0 -4.99486,-2.17878 -6.43264,-3.03811 -8.07017,-4.82337 -15.89725,-12.40258 -20.46665,-19.81849 -1.5156,-2.45974 -4.063,-7.60436 -4.063,-8.20546 0,-0.17293 2.80061,-1.77868 6.22358,-3.56833 6.48093,-3.38846 7.43133,-4.03769 6.45771,-4.4113 -0.50031,-0.19199 -6.72588,0.0431 -9.47154,0.3576 -0.61788,0.0708 -2.16766,0.21031 -3.44395,0.31007 -2.66528,0.20831 -2.33617,0.64416 -3.01625,-3.99456 -0.6269,-4.27598 -0.54545,-11.85769 0.1638,-15.24627 1.35149,-6.45704 3.64772,-11.7952 6.8565,-15.93961 2.22338,-2.87167 5.60676,-6.7277 5.76459,-6.56987 0.0602,0.0602 -0.34062,1.10513 -0.89064,2.32216 -2.22296,4.91873 -1.39444,11.76429 1.97711,16.33563 2.59676,3.52085 5.86022,5.61557 11.20533,7.1924 2.11739,0.62464 2.56139,0.69056 8.82679,1.31063 4.54506,0.44981 12.06298,1.24023 14.12286,1.48485 2.38342,0.28305 8.23179,1.34665 8.41563,1.5305 0.17801,0.17801 0.13386,7.0385 -0.0531,8.25097 -0.0656,0.42515 -0.21412,2.68767 -0.33013,5.02784 -0.18703,3.77287 -0.15117,4.27778 0.31662,4.45729 0.74492,0.28585 1.12921,-0.21119 3.38571,-4.37899 5.26039,-9.71605 5.45484,-10.01505 6.36714,-9.79027 2.3264,0.57323 9.65909,5.25547 12.6186,8.05753 4.0042,3.79118 6.58817,9.68584 6.911,15.76566 0.41313,7.7803 -1.84557,13.53006 -7.61658,19.3889 -3.40513,3.45696 -7.96602,5.67598 -14.12668,6.87312 -3.529,0.68575 -11.18658,0.86454 -15.08578,0.35222 z"
id="path290" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 342.13584,409.0495 c -0.0333,-4.45495 -0.29669,-4.77193 -1.52113,-1.83069 -0.55642,1.33657 -1.16108,2.82311 -1.34369,3.30341 -0.37317,0.98151 -0.60645,0.97028 -3.67223,-0.17677 -4.12929,-1.54497 -8.0016,-5.04291 -9.77288,-8.82805 -1.24197,-2.65403 -1.24633,-2.87366 -0.0346,-1.74173 1.10706,1.03415 3.45236,1.92342 5.07269,1.92342 3.38744,0 5.99807,-2.1146 9.37013,-7.58978 1.25443,-2.03679 2.89618,-4.54902 3.64836,-5.58272 l 1.36758,-1.87947 3.46729,1.92441 c 1.907,1.05843 3.54818,1.84351 3.64706,1.74463 0.0989,-0.0989 -0.77939,-1.57287 -1.95171,-3.27553 -1.17232,-1.70266 -2.04755,-3.23159 -1.94494,-3.39761 0.40516,-0.65556 4.56102,-3.10121 6.15679,-3.62315 3.31927,-1.08568 7.70719,-0.0338 10.54188,2.52721 2.70636,2.44504 3.97561,6.32531 3.31387,10.13096 -0.3958,2.27624 -2.37405,6.83857 -3.74409,8.63479 -0.83779,1.0984 -0.84476,1.10059 -2.80182,0.88005 -2.02695,-0.22842 -5.41306,-0.94475 -6.69001,-1.41526 -1.35885,-0.50069 -2.49385,-0.69668 -2.49385,-0.43063 0,0.14575 1.81336,1.32511 4.02969,2.6208 l 4.02968,2.35581 -0.98883,1.02021 c -1.1866,1.22427 -6.05761,3.70141 -9.11292,4.63436 -1.21158,0.36996 -3.63092,0.76624 -5.37632,0.88062 l -3.17344,0.20797 z"
id="path291" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 524.79266,456.10168 c -0.2648,-0.0568 -1.94805,-0.27447 -3.74053,-0.48379 l -3.25908,-0.38058 -1.29667,-3.2948 c -2.11454,-5.37299 -3.24149,-9.71701 -4.69039,-18.07997 -0.43719,-2.52345 -0.88021,-4.72614 -0.98448,-4.89486 -0.33898,-0.54848 -1.11358,-0.32364 -1.15475,0.33518 -0.0221,0.35308 -0.0663,0.75028 -0.0982,0.88268 -0.032,0.13241 -0.1669,1.68512 -0.29988,3.45048 -0.13298,1.76535 -0.29869,3.78749 -0.36824,4.49363 -0.14166,1.43835 -0.38628,4.74459 -0.65306,8.82679 -0.2806,4.29369 -0.37348,4.58562 -1.38042,4.33878 -1.81968,-0.44608 -6.77757,-3.15226 -9.85058,-5.37679 -11.03907,-7.99108 -16.1526,-13.82834 -21.43289,-24.46634 l -1.58669,-3.19666 0.72401,-0.49455 c 0.86035,-0.58768 11.01112,-5.97772 12.26859,-6.5146 0.93124,-0.3976 1.34473,-1.04878 1.00994,-1.59048 -0.18529,-0.2998 -6.73204,-0.10542 -8.6063,0.25553 -0.35079,0.0676 -2.33998,0.21903 -4.42042,0.33661 l -3.78261,0.21377 -0.008,-1.09132 c -0.004,-0.60023 -0.13766,-1.66908 -0.29633,-2.37523 -0.82775,-3.68393 -0.92822,-11.75728 -0.20172,-16.20919 0.83103,-5.0924 2.27458,-9.46587 4.67602,-14.1668 0.66812,-1.30786 4.33812,-6.17523 6.13825,-8.1409 0.64667,-0.70614 1.5708,-1.75942 2.05361,-2.34062 0.48281,-0.58119 0.93112,-1.00344 0.99624,-0.93831 0.0651,0.0651 -0.23105,0.84281 -0.65817,1.72818 -0.42712,0.88538 -1.02327,2.45833 -1.32477,3.49546 -1.10414,3.79811 0.0402,10.54561 2.41652,14.24878 2.5203,3.92755 7.51092,7.24275 13.00953,8.64205 2.34147,0.59587 7.78687,1.27702 14.44384,1.80676 6.50027,0.51726 18.32664,2.26287 19.01461,2.80661 0.21897,0.17306 0.33458,0.62311 0.25692,1.00011 -0.17533,0.85114 -0.64339,11.97124 -0.65009,15.44483 -0.004,2.12816 0.0848,2.57981 0.52473,2.6654 0.56338,0.10962 2.60404,-3.04362 4.94112,-7.63505 1.94912,-3.82923 4.42604,-8.02435 4.73781,-8.02435 0.7414,0 5.86017,2.7587 8.86344,4.77685 6.77597,4.55334 10.06653,8.9057 12.16201,16.08646 0.75951,2.60266 0.72783,10.67435 -0.0529,13.48092 -0.88837,3.19351 -2.84577,6.95189 -5.09639,9.78551 -4.28773,5.39842 -8.40542,7.74425 -17.73945,10.10609 -1.43677,0.36355 -13.33058,0.76076 -14.60432,0.48773 z"
id="path292" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 547.74231,504.21221 c -4.88652,-0.75552 -9.54777,-2.5242 -14.0225,-5.32074 l -1.18353,-0.73966 2.37879,-4.16501 c 3.29237,-5.76461 3.0829,-5.83346 -3.1877,-1.04778 -3.34132,2.55008 -2.94508,2.6494 -6.05252,-1.5171 -5.33721,-7.1562 -6.86919,-14.04369 -5.07132,-22.79973 l 0.26362,-1.28389 0.0369,1.16679 c 0.10954,3.46266 3.11911,7.8032 6.37586,9.19556 4.43009,1.894 7.71122,1.2449 16.59523,-3.283 3.53922,-1.80384 7.01271,-3.50907 7.71885,-3.78941 0.70614,-0.28033 1.80015,-0.72938 2.43114,-0.99788 l 1.14724,-0.48818 2.85859,4.95795 c 1.57223,2.72687 3.00588,4.9079 3.18591,4.84672 0.38681,-0.13144 0.39554,-1.86648 0.036,-7.15103 l -0.26452,-3.8878 0.86446,-0.21696 c 1.12202,-0.28161 7.87069,-0.28094 9.41258,9.3e-4 4.10208,0.7499 8.59002,4.38032 10.71413,8.66695 1.21876,2.45956 1.3397,2.93535 1.47844,5.81651 0.26248,5.45092 -1.07103,8.85764 -5.06261,12.93348 -1.14749,1.17171 -2.96915,2.72475 -4.04814,3.4512 -2.17685,1.4656 -6.89821,3.92483 -7.53508,3.92483 -0.79125,0 -4.98587,-3.51584 -8.5857,-7.19635 -2.00132,-2.04616 -3.76355,-3.64317 -3.91607,-3.54891 -0.28121,0.1738 -0.0512,0.63714 3.9459,7.95039 1.23432,2.25834 2.16552,4.18478 2.06932,4.28097 -0.82591,0.82592 -7.92157,0.9619 -12.58326,0.24115 z"
id="path293" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 596.2094,595.6299 c -3.49391,-0.35571 -9.98579,-3.05397 -13.01226,-5.40835 -5.87748,-4.57227 -10.73084,-14.26249 -12.04086,-24.04078 -0.11696,-0.87303 -0.31043,-2.23729 -0.42992,-3.0317 -0.1195,-0.79441 -0.21223,-2.23513 -0.20608,-3.2016 l 0.0112,-1.75721 3.61346,-2.43645 c 4.30984,-2.906 8.14791,-4.88177 15.796,-8.13149 1.84841,-0.78541 3.41873,-1.60195 3.48959,-1.81454 0.25913,-0.77739 -0.69844,-0.83899 -4.2181,-0.27132 -1.97734,0.31892 -5.47286,0.88582 -7.76783,1.25979 -2.29496,0.37397 -4.53376,0.73052 -4.9751,0.79233 -0.44134,0.0618 -1.52463,0.21246 -2.4073,0.33477 -0.88268,0.12232 -1.85764,0.26777 -2.16658,0.32322 -0.6947,0.1247 -0.69684,0.22857 0.0779,-3.78608 0.97859,-5.07096 4.96167,-14.38937 8.5871,-20.08952 2.94825,-4.63544 10.2283,-12.25724 13.92714,-14.58092 0.95911,-0.60253 0.61281,-0.88526 4.61041,3.76406 5.27355,6.13329 6.45703,7.34024 6.91813,7.05526 0.51399,-0.31766 0.24445,-1.45368 -1.98475,-8.36523 -1.07642,-3.33739 -2.02644,-6.30801 -2.11115,-6.60138 -0.18805,-0.65125 1.37436,-1.39728 6.6465,-3.17363 5.30898,-1.78876 7.90644,-2.27494 13.15994,-2.46324 5.10423,-0.18294 10.40274,0.39774 13.52972,1.48277 3.2677,1.13385 11.76239,5.3408 11.43838,5.66481 -0.064,0.064 -1.2304,-0.0771 -2.59202,-0.31357 -3.97759,-0.69072 -8.43012,0.3504 -12.20625,2.85416 -2.25472,1.49499 -2.46139,1.68347 -4.01752,3.66394 -3.66862,4.66899 -4.80256,10.86423 -3.56166,19.45901 1.18001,8.17299 2.19076,16.41539 2.38132,19.41894 0.1064,1.67709 0.2636,3.80755 0.34933,4.73437 0.0857,0.92681 0.0775,1.68511 -0.0183,1.68511 -0.0958,0 -1.4365,0.27766 -2.97932,0.61702 -1.54281,0.33937 -3.31065,0.69439 -3.92853,0.78895 -0.61787,0.0945 -2.13448,0.37482 -3.37023,0.62281 -1.23575,0.248 -3.29949,0.63937 -4.58609,0.86972 -1.2866,0.23035 -2.58655,0.61127 -2.88877,0.84649 -0.51556,0.40126 -0.51171,0.4569 0.0623,0.90093 0.66055,0.51094 1.05915,0.63279 9.48191,2.89877 7.74223,2.0829 7.16145,1.77913 6.89945,3.60872 -0.31249,2.18215 -2.75915,9.51016 -3.99367,11.96144 -2.65923,5.28025 -6.56797,9.05287 -11.97958,11.56241 -3.69692,1.71438 -9.53398,2.70486 -13.53793,2.29721 z"
id="path294" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 319.8507,384.67861 c -4.22072,-0.63982 -9.37211,-3.00353 -13.35991,-6.13018 -2.05259,-1.60934 -4.65887,-5.16274 -6.32667,-8.62577 -3.24441,-6.73673 -4.32395,-13.65882 -3.96088,-25.39752 l 0.0559,-1.80591 3.3769,-1.65761 c 4.89332,-2.40197 10.09099,-4.287 16.36301,-5.93433 5.34004,-1.40256 5.65544,-1.5199 5.54898,-2.06446 -0.0955,-0.4883 -1.06555,-0.52318 -11.41271,-0.41041 -6.21962,0.0678 -11.30683,0.0678 -11.30491,0 0.0233,-0.82621 2.32371,-6.89567 3.22327,-8.50433 6.66632,-11.92121 12.13482,-18.19852 21.0068,-24.11373 3.5308,-2.3541 5.61258,-3.43315 5.94033,-3.07908 0.33177,0.35842 3.90944,5.80741 6.0962,9.28485 0.97094,1.54402 1.9612,3.00424 2.20058,3.24492 0.63142,0.63488 1.33959,-0.0572 1.16362,-1.13717 -0.73288,-4.49773 -1.84726,-11.23051 -1.92946,-11.65736 -0.0565,-0.29361 -0.19895,-1.17495 -0.31645,-1.95851 l -0.21364,-1.42468 3.4796,-0.84288 c 8.24608,-1.99748 14.73723,-2.19936 22.12369,-0.68806 2.9702,0.60771 7.45056,2.10642 9.28067,3.10442 2.95543,1.61168 10.61972,6.9179 10.35975,7.17236 -0.0487,0.0477 -1.17187,-0.27885 -2.49589,-0.72562 -2.14571,-0.72403 -2.7561,-0.79332 -5.61704,-0.63755 -9.72968,0.52973 -15.72588,6.18521 -17.93288,16.91388 -0.29426,1.43047 -0.44483,5.11337 -0.47897,11.71555 -0.0571,11.04715 -0.55215,21.33871 -1.04897,21.80808 -0.24258,0.22917 -3.84031,0.46806 -10.3876,0.68973 -7.20176,0.24383 -8.3475,0.39713 -8.3475,1.11688 0,0.48792 3.25789,2.22123 7.22192,3.84231 4.18904,1.7131 8.98727,3.93471 8.98727,4.16117 0,1.38577 -4.38802,10.64786 -6.15758,12.99723 -2.9809,3.95761 -5.42773,6.09717 -9.19588,8.04109 -4.43611,2.28851 -11.15705,3.42797 -15.94151,2.70269 z"
id="path295" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 367.99681,352.1114 c -1.05921,-0.24131 -2.28694,-0.58427 -2.72828,-0.76213 -0.75277,-0.30338 -0.7273,-0.32465 0.41153,-0.34374 2.42568,-0.0407 5.02384,-1.76768 6.04658,-4.01924 1.06753,-2.35018 0.81824,-4.36976 -1.32252,-10.71399 -1.05922,-3.13902 -1.92585,-5.99006 -1.92585,-6.33565 0,-0.47317 0.49537,-0.82185 2.00609,-1.41204 5.69813,-2.22607 5.7505,-2.37896 0.91657,-2.67564 -1.65845,-0.10178 -3.14922,-0.31892 -3.31282,-0.48251 -0.35618,-0.35618 0.17612,-4.56435 0.81012,-6.40456 1.18799,-3.44816 5.59004,-6.50433 9.34777,-6.4898 1.17543,0.005 3.92365,0.7056 4.97796,1.26985 2.51974,1.34853 5.11112,4.86983 6.5511,8.90199 l 0.8256,2.31178 -1.83319,1.7964 c -1.00825,0.98802 -2.80815,2.46478 -3.99976,3.28168 -1.19162,0.8169 -2.16658,1.60422 -2.16658,1.74959 0,0.36546 -0.14026,0.404 3.56743,-0.98 5.25846,-1.96286 4.7788,-1.96478 4.77233,0.019 -0.0153,4.68394 -2.18458,10.54867 -5.25422,14.20496 l -1.01621,1.21042 -2.37457,-1.79898 c -1.30601,-0.98943 -2.5069,-1.79897 -2.66865,-1.79897 -0.16175,0 0.36898,1.22635 1.17941,2.72523 0.81043,1.49887 1.47351,2.84103 1.47351,2.98256 0,0.43512 -3.90241,2.5531 -5.93802,3.22278 -2.63141,0.86568 -5.97007,1.08211 -8.34533,0.54097 z"
id="path296" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 498.52009,316.09677 c -0.0832,-5.06929 -1.92736,-9.01711 -6.21487,-13.30463 -2.33574,-2.33573 -5.29298,-4.00254 -8.62018,-4.85863 -3.65625,-0.94076 -10.35362,-0.50337 -14.4209,0.9418 -1.48839,0.52885 -10.00395,3.99359 -11.71619,4.76699 -3.9634,1.79022 -10.7512,4.35749 -16.34777,6.18302 l -3.50945,1.14473 -0.46687,-0.70314 c -0.41188,-0.62032 -2.12596,-4.16396 -7.12502,-14.73 -0.98011,-2.07155 -1.5738,-2.96901 -1.96408,-2.96901 -0.30765,0 -0.64978,0.14629 -0.76028,0.32509 -0.11051,0.1788 -0.2642,4.60896 -0.34153,9.84481 -0.0773,5.23585 -0.22402,9.60326 -0.32597,9.70535 -0.37793,0.37847 -9.06241,0.28067 -12.00844,-0.13522 -6.73232,-0.95041 -9.11255,-1.75474 -13.15994,-4.44698 -8.80652,-5.85792 -14.05925,-16.66004 -12.78743,-26.29705 0.83529,-6.32927 1.88963,-9.44167 4.52726,-13.36435 1.47296,-2.19059 5.46662,-6.49896 7.65597,-8.25927 2.71581,-2.18361 12.55426,-7.80829 13.67333,-7.8171 0.13822,-0.001 0.63076,-0.19997 1.09455,-0.44197 0.46379,-0.242 2.01373,-0.8298 3.44431,-1.30623 l 2.60105,-0.86622 1.69128,1.38578 c 2.58998,2.12214 8.11238,7.56626 10.03923,9.89692 0.94867,1.14748 3.18165,3.92792 4.96218,6.17875 1.78052,2.25083 3.3824,4.09242 3.55972,4.09242 0.66451,0 0.6709,-1.01194 0.0152,-2.40691 -0.3727,-0.79289 -1.17284,-2.63395 -1.77809,-4.09124 -0.60525,-1.45728 -1.63048,-3.80512 -2.27829,-5.2174 -1.31538,-2.86765 -4.96478,-11.33733 -4.96478,-11.52247 0,-0.23945 3.44868,-0.53807 6.41948,-0.55587 2.95697,-0.0177 10.01466,0.72029 12.66092,1.32393 12.82229,2.9249 18.8589,5.58762 27.81719,12.27001 l 2.16442,1.61453 -4.78597,7.16858 c -5.64841,8.46036 -5.88864,9.59211 -1.426,6.71808 0.88268,-0.56846 2.58337,-1.6551 3.77931,-2.41475 1.19595,-0.75965 3.14586,-2.00582 4.33315,-2.76927 1.18729,-0.76345 2.69547,-1.68034 3.35151,-2.03754 l 1.1928,-0.64944 1.33576,1.84658 c 0.73466,1.01563 1.72108,2.35212 2.19204,2.97 7.37133,9.67079 11.0538,23.90899 9.04857,34.98618 -0.78272,4.32388 -1.4416,7.29727 -2.06264,9.30825 l -0.44605,1.44438 z"
id="path297" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 420.18497,381.41141 c -3.40317,-0.51745 -7.5668,-2.8347 -9.56815,-5.3251 -3.10917,-3.86896 -4.96848,-9.13048 -5.66852,-16.04099 l -0.17146,-1.6925 2.65229,-1.76507 c 1.45876,-0.97078 4.65928,-2.68026 7.11227,-3.79884 2.45299,-1.11858 4.51869,-2.20989 4.59044,-2.42514 0.15023,-0.4507 -0.51636,-0.37983 -7.61341,0.80941 -4.51779,0.75705 -6.12814,0.92266 -6.12814,0.63024 0,-0.46496 0.73694,-3.69735 1.02808,-4.50944 2.78223,-7.76045 6.3119,-13.2219 11.32658,-17.5256 l 2.56495,-2.20129 0.65079,0.71568 c 0.35794,0.39363 1.7073,1.94341 2.99858,3.44397 3.826,4.44606 3.98622,4.24351 1.85973,-2.35095 l -1.39753,-4.33389 2.60119,-0.98919 c 5.30261,-2.0165 10.23423,-2.68152 14.64106,-1.97433 3.02894,0.48607 4.10166,0.82183 6.89759,2.15891 4.01809,1.92156 3.99655,1.88233 1.0308,1.87708 -2.2914,-0.004 -2.9119,0.12621 -4.75044,0.99738 -3.4891,1.65327 -5.54129,4.2645 -6.35112,8.08126 -0.52017,2.45159 -0.45014,4.03854 0.45609,10.33561 0.4446,3.08938 0.89658,7.28546 1.0044,9.32462 l 0.19604,3.70756 -4.78016,0.89431 c -5.50162,1.02927 -6.38909,1.26143 -6.37433,1.6675 0.013,0.35708 2.03871,1.05543 6.72976,2.32003 l 3.53071,0.9518 -0.0742,1.44443 c -0.0791,1.53863 -1.29425,5.23266 -2.50484,7.6145 -2.82197,5.55225 -9.88678,8.96191 -16.48902,7.95804 z"
id="path298" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 460.11638,360.91119 c -1.74842,-0.262 -5.73191,-1.95043 -6.1331,-2.59956 -0.0901,-0.14576 0.53082,-0.26819 1.37979,-0.27206 2.96762,-0.0136 5.78907,-2.09804 6.5215,-4.81808 0.23601,-0.87649 0.2775,-3.3868 0.12678,-7.67098 -0.25799,-7.3333 -0.63126,-6.57985 3.43635,-6.93628 2.57393,-0.22554 3.52473,-0.53464 2.87665,-0.93518 -0.20152,-0.12454 -1.55299,-0.62888 -3.00328,-1.12075 -2.52769,-0.85727 -2.63395,-0.93263 -2.56563,-1.81977 0.13825,-1.79527 2.26244,-5.49399 3.85248,-6.70807 4.85785,-3.70924 11.73486,-2.10805 14.53705,3.38469 0.83714,1.64093 1.51023,4.40274 1.72967,7.0972 l 0.1736,2.13149 -2.15768,1.12227 c -1.18673,0.61724 -3.09653,1.45081 -4.24401,1.85237 -3.22876,1.12992 -3.12608,1.37159 0.48146,1.1332 1.76535,-0.11666 3.67597,-0.29392 4.24582,-0.39392 l 1.03607,-0.18182 -0.50079,1.71951 c -0.59764,2.05198 -2.31423,5.30139 -3.93133,7.44176 -1.24707,1.6506 -4.76011,4.7094 -5.40876,4.7094 -0.21397,0 -1.08121,-0.93589 -1.9272,-2.07977 -2.22251,-3.00508 -2.4139,-2.85121 -1.3845,1.11313 0.34327,1.32197 0.52134,2.50613 0.39572,2.63148 -0.38032,0.37948 -3.63741,1.13371 -5.68497,1.31645 -1.05922,0.0945 -2.79248,0.042 -3.85169,-0.11671 z"
id="path299" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 512.43516,378.1616 c -6.2773,-1.60485 -10.32861,-5.61058 -12.68691,-12.5442 -0.92908,-2.73158 -2.13376,-9.4328 -1.83547,-10.21013 0.40942,-1.06693 6.86377,-4.72055 12.83726,-7.26682 0.83855,-0.35744 1.52463,-0.80244 1.52463,-0.98891 0,-0.43237 0.48138,-0.47947 -6.41948,0.62817 -7.87675,1.26429 -7.4915,1.28593 -7.2193,-0.40549 0.60863,-3.78197 3.89215,-11.21343 6.55521,-14.83614 1.88639,-2.56618 4.19016,-4.9757 6.35177,-6.64337 l 1.76466,-1.36143 1.32917,1.4429 c 0.73105,0.79359 2.21723,2.44823 3.30263,3.67697 1.0854,1.22874 2.0882,2.12197 2.22845,1.98496 0.20021,-0.19558 -1.6533,-6.80502 -2.60075,-9.27405 -0.14408,-0.37545 0.43635,-0.72486 2.47555,-1.49026 3.7823,-1.41967 5.79295,-1.88449 9.25717,-2.1401 4.96883,-0.36662 10.48481,0.96453 14.59087,3.52116 l 1.2839,0.79942 -1.79314,-0.19543 c -3.56599,-0.38866 -7.86723,1.63929 -9.95843,4.69522 -2.06235,3.01376 -2.69404,7.00241 -1.90209,12.01024 0.79597,5.03331 1.34985,9.61419 1.52142,12.58299 l 0.18772,3.24845 -5.66305,1.06458 c -3.80611,0.7155 -5.66306,1.19829 -5.66306,1.47233 0,0.3734 2.00649,1.08249 5.77754,2.04179 0.79441,0.20209 2.21313,0.58648 3.15272,0.8542 l 1.70834,0.48676 -0.22337,1.33461 c -0.3117,1.86235 -1.87659,6.20396 -2.88917,8.01566 -1.77259,3.17151 -5.10523,5.84231 -8.66018,6.94033 -2.70808,0.83643 -6.29962,1.07585 -8.33461,0.55559 z"
id="path300" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 571.53534,359.29512 c -2.13634,-0.50168 -5.63377,-2.5639 -7.44552,-4.39016 -3.15933,-3.18465 -4.92458,-8.1183 -4.55349,-12.72635 0.19659,-2.44105 1.50613,-5.79135 3.37074,-8.62362 1.50766,-2.29009 5.16694,-6.21283 7.23515,-7.75609 1.1558,-0.86243 1.28215,-0.88718 2.56779,-0.50298 1.98307,0.59262 6.43081,2.87032 10.0178,5.13015 1.72792,1.08859 3.25975,1.86119 3.40406,1.71687 0.14432,-0.14431 -0.96433,-1.56083 -2.46366,-3.14782 -1.49933,-1.58699 -3.59674,-3.85351 -4.66091,-5.03672 l -1.93486,-2.15128 1.54413,-0.77615 c 2.94165,-1.47862 9.96451,-2.78858 14.86455,-2.77266 3.4563,0.0112 7.05679,0.57612 10.07592,1.58082 l 2.05893,0.68517 -1.22539,4.6363 c -0.7661,2.89857 -1.10488,4.71078 -0.90387,4.83501 0.41227,0.2548 0.15997,0.54124 5.22058,-5.92702 l 1.2638,-1.61534 0.92811,0.54432 c 2.10983,1.23739 6.09373,4.6706 7.78549,6.70932 2.66227,3.20826 4.82821,7.84748 5.43868,11.64907 0.26931,1.67709 0.49024,3.47482 0.49095,3.99495 10e-4,0.86037 -0.0737,0.79527 -0.82948,-0.72143 -1.53611,-3.08257 -5.24006,-5.51221 -8.79055,-5.76625 -4.04786,-0.28962 -7.51893,1.27673 -12.07992,5.45118 -4.11144,3.76298 -6.86343,6.12742 -9.41019,8.08498 l -2.38425,1.83264 -4.0397,-4.03073 c -2.22183,-2.2169 -4.14602,-4.03073 -4.27596,-4.03073 -0.48696,0 -0.19229,1.27167 1.3686,5.90617 0.88268,2.62081 1.60487,4.81758 1.60487,4.88172 0,0.27182 -2.61952,1.19978 -5.41747,1.91912 -3.14151,0.80767 -6.48911,0.96606 -8.82493,0.41754 z"
id="path301" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 560.48708,390.70573 c -0.66872,-1.11078 -2.31311,-5.11666 -2.31311,-5.63494 0,-0.17029 -0.22378,-0.79563 -0.49728,-1.38964 -0.47154,-1.02413 -0.48909,-0.86656 -0.33914,3.04472 l 0.15814,4.12473 -1.0643,-0.19966 c -1.72349,-0.32333 -5.93957,-2.78009 -7.9426,-4.62825 -1.68267,-1.55256 -4.11671,-4.50035 -4.11671,-4.98561 0,-0.10679 1.0183,-0.9348 2.26288,-1.84003 1.24459,-0.90524 2.19553,-1.71324 2.11321,-1.79555 -0.0823,-0.0823 -1.31607,0.0882 -2.74167,0.379 -1.42561,0.29076 -2.72313,0.44762 -2.8834,0.34858 -0.53362,-0.3298 -1.12587,-3.52006 -1.13616,-6.12009 -0.0122,-3.08619 0.64854,-5.43336 2.21372,-7.86387 l 1.13685,-1.76536 -0.19209,1.29739 c -0.41006,2.76963 1.25032,5.73704 3.87803,6.93079 1.10601,0.50245 2.19306,0.5855 7.74275,0.59156 l 6.4561,0.007 0.20411,1.48918 c 0.11227,0.81905 0.21427,2.08289 0.22668,2.80853 0.0124,0.72564 0.13496,1.60726 0.27233,1.95916 0.23034,0.59004 0.28697,0.56506 0.72773,-0.32097 0.26287,-0.52844 0.8079,-1.86354 1.21118,-2.96689 0.40484,-1.10761 0.92724,-2.00609 1.16641,-2.00609 0.8013,0 4.0241,1.58412 5.33489,2.62229 1.87964,1.4887 3.14043,4.30179 3.14043,7.00694 0,3.65961 -1.88065,6.68504 -5.21197,8.38455 -1.63269,0.83294 -5.02924,1.55293 -7.35958,1.56007 -1.71233,0.005 -1.85638,-0.0558 -2.44743,-1.03759 z"
id="path302" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 535.40287,302.67234 c -0.55261,-1.32744 -1.32272,-3.71068 -1.71134,-5.29607 -0.38863,-1.58539 -0.81659,-2.88253 -0.95104,-2.88253 -0.13445,0 -0.24445,2.11002 -0.24445,4.68892 v 4.68892 l -0.88268,-0.21417 c -1.39329,-0.33807 -5.39448,-2.72968 -7.56556,-4.52212 -2.37851,-1.96369 -5.9956,-6.65634 -5.9956,-7.77843 0,-0.18305 1.15551,-1.01025 2.5678,-1.83822 3.69876,-2.16843 3.52584,-2.38555 -1.3195,-1.65673 l -2.76387,0.41573 -0.36562,-1.9843 c -0.96222,-5.22216 -0.0909,-10.0974 2.48157,-13.8856 0.74217,-1.09288 1.40579,-1.98706 1.47473,-1.98706 0.0689,0 0.0454,0.77466 -0.0523,1.72147 -0.24015,2.32688 0.52899,4.56684 2.07581,6.04532 2.35237,2.24843 3.23159,2.47018 11.25018,2.83732 3.58709,0.16425 6.6564,0.38171 6.8207,0.48325 0.1643,0.10154 0.30094,1.72881 0.30365,3.61615 0.007,4.95442 0.28668,5.0718 2.22389,0.93368 l 1.61587,-3.45172 1.20716,0.5041 c 3.01031,1.25706 5.49309,3.10961 6.67349,4.97949 1.97699,3.13176 2.21606,7.20756 0.61475,10.48054 -2.21404,4.52532 -6.2733,6.51561 -13.28885,6.51561 h -3.16399 z"
id="path303" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 505.71114,268.1557 c 0.41223,-0.45551 0.63836,-1.30342 0.72955,-2.73553 0.22801,-3.58074 -1.13355,-4.9364 -7.48644,-7.45403 -3.99606,-1.58362 -4.9751,-2.0363 -4.9751,-2.30035 0,-0.11441 0.43179,-1.39117 0.95955,-2.83725 0.52775,-1.44607 0.85662,-2.62923 0.73082,-2.62923 -0.12579,0 -1.10894,0.8724 -2.18476,1.93866 l -1.95605,1.93866 -1.67851,-1.77477 c -0.92318,-0.97613 -1.88843,-2.2772 -2.14501,-2.89127 -0.55056,-1.31768 -0.60404,-3.99907 -0.11491,-5.76076 0.46815,-1.68611 3.22413,-4.41692 4.98172,-4.93622 2.51298,-0.74248 5.72681,-0.39339 8.88459,0.96505 l 1.59735,0.68716 -0.16801,4.14226 c -0.0924,2.27825 -0.0634,4.02136 0.0645,3.87359 0.12788,-0.14778 0.7093,-1.56863 1.29205,-3.15745 0.58275,-1.58883 1.11395,-2.95112 1.18045,-3.02732 0.25547,-0.29276 2.47751,2.16708 3.97969,4.40559 1.50792,2.24705 2.87205,5.71883 2.87205,7.30946 0,0.78618 -0.62906,1.06496 -3.60815,1.59903 -0.66046,0.11841 -1.13638,0.31959 -1.05758,0.44708 0.0788,0.12749 1.16034,0.41356 2.40345,0.63572 1.24311,0.22215 2.32557,0.50969 2.40546,0.63897 0.28062,0.45404 -0.74427,4.46235 -1.54503,6.04257 -1.04555,2.0633 -2.18699,3.40296 -3.90876,4.58757 -1.61681,1.1124 -2.09598,1.22438 -1.25292,0.29281 z"
id="path304" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 544.17561,261.06796 c -6.34369,-0.44922 -11.73202,-2.79256 -16.13815,-7.01836 -1.48128,-1.42065 -2.6289,-2.64733 -2.55028,-2.72595 0.0786,-0.0786 0.78504,0.17789 1.56981,0.57001 2.16476,1.08165 6.54033,1.01331 8.96976,-0.14011 2.96454,-1.40747 5.09694,-3.97322 6.41216,-7.71524 0.33255,-0.94616 1.05475,-4.17182 1.6049,-7.16814 0.55015,-2.99631 1.40136,-7.03666 1.89159,-8.97856 l 0.89132,-3.53071 1.26023,0.10346 c 0.69313,0.0569 3.1992,0.37487 5.56906,0.70658 6.31664,0.88414 6.33213,0.73436 0.33583,-3.24635 -3.17158,-2.1055 -4.44994,-3.12796 -4.32332,-3.45792 0.35469,-0.92431 3.05612,-4.72689 4.40338,-6.19827 4.80288,-5.24538 12.66233,-6.64684 19.02736,-3.39287 2.22998,1.14003 5.30279,4.02182 6.36042,5.96503 2.71945,4.99652 3.20011,11.44478 1.43053,19.19138 -0.36731,1.60797 -0.41427,1.65835 -1.99722,2.14299 -3.00172,0.91901 -7.23918,1.63675 -11.81199,2.00073 -3.63194,0.28908 -3.7652,0.87394 -0.32097,1.40865 6.14812,0.9545 10.53099,1.70362 10.74943,1.83729 0.35911,0.21974 -1.13748,2.98081 -2.65912,4.90583 -4.3152,5.45913 -9.39256,9.60031 -14.53668,11.85635 -4.488,1.96828 -4.27429,2.02557 -5.7332,-1.53694 -2.12244,-5.18275 -2.50122,-5.93775 -2.81935,-5.61961 -0.165,0.165 -0.3197,2.49034 -0.34376,5.16743 l -0.0438,4.86745 -2.15175,0.1054 c -1.18347,0.058 -3.45427,0.0132 -5.04623,-0.0995 z"
id="path305" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 334.33594,280.80784 c 2.81531,-2.7422 3.77717,-7.34393 2.33868,-11.18865 -0.98665,-2.63707 -3.47826,-5.11891 -8.58851,-8.55482 -5.48495,-3.68785 -10.32175,-7.28589 -10.32175,-7.67823 0,-0.16436 1.15551,-2.23961 2.5678,-4.61166 1.41228,-2.37206 2.56779,-4.46624 2.56779,-4.65374 0,-0.69291 -0.88196,-0.28634 -4.17266,1.92353 -5.24985,3.52555 -4.86769,3.41363 -6.04734,1.771 -1.40473,-1.95605 -3.47124,-6.15677 -3.92295,-7.97442 -0.53911,-2.16933 -0.22628,-6.40602 0.63916,-8.65619 1.49447,-3.88567 4.47311,-6.86797 8.61005,-8.62062 2.25932,-0.95718 2.76495,-1.0501 5.53569,-1.01728 4.671,0.0553 8.85899,1.5901 13.96237,5.11679 1.86326,1.2876 2.26334,1.72169 2.34358,2.54279 0.13677,1.39957 -1.01579,6.73258 -2.34142,10.834 -0.61906,1.91533 -1.12557,3.54027 -1.12557,3.61096 0,0.94772 3.31889,-3.64315 6.23012,-8.61787 0.49068,-0.83846 1.0478,-1.62068 1.23804,-1.73826 0.98938,-0.61147 4.64614,5.69621 6.47719,11.17275 1.39996,4.18716 1.83223,6.96758 1.71471,11.02938 l -0.0928,3.20783 -4.48713,0.0898 c -2.46792,0.0494 -4.60682,0.20947 -4.7531,0.35576 -0.28539,0.28538 0.19657,0.54093 4.90708,2.60182 1.67709,0.73374 3.16458,1.44576 3.30553,1.58226 0.14096,0.13651 -0.11869,1.24504 -0.57698,2.46341 -2.69842,7.17374 -7.4059,12.43216 -13.41673,14.98694 -4.27078,1.81521 -4.43256,1.81663 -2.59084,0.0227 z"
id="path306" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 368.1573,236.16525 c -1.57733,-0.28456 -5.96104,-2.59937 -7.23532,-3.8206 -3.68371,-3.53037 -6.05455,-9.03154 -6.88314,-15.97123 -0.20641,-1.72876 -0.32795,-3.17231 -0.27009,-3.20789 0.0579,-0.0356 0.61073,-0.43171 1.22861,-0.88028 2.11936,-1.53865 5.6206,-3.44542 9.38849,-5.11297 5.83619,-2.58292 5.39385,-2.68288 -4.67344,-1.05612 -2.79106,0.45101 -5.16178,0.73289 -5.26826,0.6264 -0.35161,-0.3516 1.09926,-5.43935 2.42558,-8.50579 2.01973,-4.66955 4.0913,-7.83277 7.27539,-11.10926 1.58882,-1.63493 3.40267,-3.34684 4.03077,-3.80424 l 1.14201,-0.83164 3.03066,3.51543 c 2.86925,3.32821 3.83309,4.1026 3.83309,3.07967 0,-0.24666 -0.56764,-2.16047 -1.26142,-4.2529 -1.7327,-5.22583 -1.74138,-4.87246 0.13801,-5.61599 5.21222,-2.06208 8.76111,-2.701 13.42051,-2.41616 1.79858,0.10995 3.99234,0.40208 4.87502,0.64918 1.72534,0.483 6.15685,2.44334 7.24273,3.20392 0.60043,0.42056 0.46905,0.44897 -1.38708,0.29998 -6.78571,-0.54469 -12.12678,4.86187 -12.11034,12.25884 0.002,1.06626 0.36428,4.46633 0.80426,7.5557 0.43997,3.08938 0.89048,7.20587 1.00113,9.14776 l 0.20119,3.53072 -5.54023,1.03082 c -3.04712,0.56694 -5.62041,1.11099 -5.71841,1.209 -0.44601,0.446 0.882,0.98755 5.29534,2.15936 2.61516,0.69437 4.88763,1.39247 5.04993,1.55132 0.43651,0.42724 -0.90308,5.09707 -2.33422,8.13707 -1.91218,4.06184 -5.73553,7.24989 -10.08247,8.40713 -1.57885,0.42032 -5.83356,0.54473 -7.6183,0.22277 z"
id="path307" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 368.95973,277.18888 c -3.54819,-0.88924 -5.93151,-4.06869 -6.47223,-8.63428 -0.23651,-1.99693 -0.25003,-1.98259 3.69754,-3.91908 1.47503,-0.72358 2.63053,-1.36174 2.56779,-1.41813 -0.0627,-0.0564 -1.26958,0.0892 -2.68186,0.32363 -3.64207,0.60446 -3.48293,0.63706 -3.27079,-0.67018 0.35972,-2.21674 2.47312,-5.98719 4.4818,-7.99587 l 1.91937,-1.91938 1.55409,1.75136 c 1.71763,1.93566 1.91321,1.71285 0.9511,-1.08355 l -0.62341,-1.81199 2.23907,-0.6801 c 3.01259,-0.91505 6.17138,-0.76259 8.63698,0.41685 l 1.76536,0.84447 -1.47716,0.0267 c -1.80138,0.0326 -3.41658,1.02253 -4.24389,2.60094 -0.51089,0.97473 -0.55619,1.56677 -0.35564,4.64773 0.1264,1.94189 0.24542,4.39017 0.26449,5.44061 l 0.0347,1.9099 -1.12341,0.22039 c -0.61788,0.12122 -1.66505,0.31548 -2.32706,0.43171 -0.66201,0.11623 -1.20366,0.33365 -1.20366,0.48317 0,0.14952 1.01107,0.51963 2.24682,0.82247 2.57078,0.63 2.62165,0.73946 1.60565,3.45496 -1.27551,3.40911 -4.97854,5.56137 -8.18562,4.75762 z"
id="path308" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 396.88448,235.61787 c -0.88268,-0.25079 -2.25484,-0.74554 -3.04925,-1.09944 l -1.44439,-0.64345 1.2839,-0.0297 c 2.57105,-0.0595 5.85324,-2.26536 6.94428,-4.667 0.85421,-1.88032 0.77719,-5.44907 -0.20756,-9.61667 -0.44339,-1.87652 -0.99594,-4.6938 -1.22789,-6.26063 l -0.42172,-2.84878 3.39447,-0.8821 c 3.54519,-0.92126 4.69253,-1.35071 4.39733,-1.64591 -0.0965,-0.0965 -1.77555,-0.49968 -3.73115,-0.89587 -1.95559,-0.3962 -3.64741,-0.81214 -3.75958,-0.92431 -0.31189,-0.31189 0.72874,-4.71847 1.50353,-6.36676 1.75135,-3.72583 5.3224,-6.08909 9.52147,-6.30113 6.58195,-0.33237 11.33808,4.31876 13.07708,12.7884 l 0.49399,2.40594 -0.86926,0.7407 c -1.29623,1.1045 -4.79448,3.34859 -6.88677,4.41779 -1.69341,0.86536 -2.29958,1.42421 -1.54483,1.42421 0.16585,0 2.07603,-0.43332 4.24486,-0.96293 2.16882,-0.5296 4.12749,-0.96292 4.35258,-0.96292 0.61549,0 0.50618,2.01272 -0.2466,4.54039 -1.42676,4.79079 -3.6865,8.72376 -6.69871,11.65875 l -1.63677,1.59481 -2.39588,-2.37989 c -1.31773,-1.30894 -2.49794,-2.27782 -2.6227,-2.15307 -0.12475,0.12476 0.36219,1.65638 1.08209,3.40361 l 1.30892,3.17679 -1.81368,0.80254 c -0.99751,0.44139 -2.53586,1.05075 -3.41854,1.35411 -2.17603,0.74788 -7.51809,0.93236 -9.62922,0.33254 z"
id="path309" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 432.2855,229.45975 c 5.7377,-2.87983 9.60706,-10.48944 8.69296,-17.09585 -0.37175,-2.68676 -0.93966,-4.29761 -2.39874,-6.80391 -2.0884,-3.58731 -4.18176,-5.83633 -11.04221,-11.86332 -4.10422,-3.60561 -13.80189,-13.2227 -13.80189,-13.68722 0,-0.20467 2.45234,-3.381 5.44964,-7.0585 2.9973,-3.6775 5.40468,-6.8308 5.34972,-7.00734 -0.21668,-0.69603 -1.25733,-0.45393 -4.59379,1.06873 -12.36079,5.64109 -11.38042,5.25749 -11.85017,4.63684 -1.73691,-2.29484 -4.66231,-10.01603 -5.39654,-14.24343 -0.98238,-5.65615 0.8681,-13.14043 4.39658,-17.78201 3.75013,-4.93315 7.57647,-7.54297 13.5455,-9.23892 3.94196,-1.12 5.94446,-1.31109 9.14425,-0.87258 7.9517,1.08971 15.71231,5.40229 23.54389,13.08336 2.14753,2.10626 2.19109,2.18162 1.99018,3.44246 -0.59736,3.74884 -3.30508,10.83409 -6.71221,17.56375 -2.03386,4.01724 -2.3202,4.77712 -1.924,5.10593 0.27408,0.22747 0.57142,0.26653 0.72316,0.095 0.14174,-0.16023 2.68847,-3.10787 5.6594,-6.55032 2.97094,-3.44245 6.02244,-6.93455 6.78111,-7.76022 l 1.3794,-1.50123 1.09549,1.8222 c 0.60253,1.00221 1.38763,2.4041 1.74468,3.11532 0.66116,1.31699 3.15635,8.55959 3.39861,9.86493 0.0733,0.3949 0.36772,1.61732 0.65429,2.7165 1.79656,6.89106 1.90273,16.28082 0.26683,23.59918 l -0.55605,2.48755 -1.12632,-0.0112 c -0.61948,-0.006 -2.28184,-0.2245 -3.69412,-0.48521 -5.83347,-1.07686 -9.80526,-1.54228 -10.15728,-1.19026 -0.19076,0.19076 -0.26155,0.48483 -0.15732,0.65349 0.10424,0.16865 3.00931,2.08329 6.45571,4.25474 3.44641,2.17145 6.26619,4.04586 6.26619,4.16536 0,0.58287 -3.90917,7.31689 -5.52989,9.5259 -4.5891,6.25486 -11.97629,12.19265 -17.51488,14.0784 -2.40342,0.81829 -8.42299,2.31387 -10.17605,2.52825 l -1.60487,0.19627 z"
id="path310" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 506.17616,228.95046 c -7.60961,-0.56276 -13.87209,-3.48746 -19.16577,-8.9508 -4.34152,-4.48066 -6.25028,-7.64766 -7.62855,-12.65723 -2.48868,-9.04554 -1.7836,-19.1314 2.27005,-32.47189 l 0.60352,-1.9862 2.09042,-0.53023 c 1.14974,-0.29162 2.30708,-0.5704 2.57189,-0.6195 1.2806,-0.23746 2.8352,-0.49904 3.85169,-0.6481 0.61787,-0.0906 2.13447,-0.31457 3.37022,-0.49768 1.23575,-0.18312 6.00222,-0.41776 10.59215,-0.52142 4.58993,-0.10366 8.47283,-0.30591 8.62868,-0.44945 0.86757,-0.79905 -0.46679,-1.27445 -10.28653,-3.66486 -5.62001,-1.36807 -11.26946,-2.79784 -12.55434,-3.17726 l -2.33614,-0.68985 2.29182,-3.52775 c 3.63843,-5.60055 12.46051,-14.03447 19.87356,-18.99913 5.37928,-3.60261 15.16614,-7.74556 21.06669,-8.9179 l 1.00581,-0.19983 2.84588,8.60335 c 2.46462,7.45078 2.9374,8.61641 3.52904,8.70081 0.72114,0.10287 0.78388,-0.10652 1.23132,-4.10963 0.28889,-2.58467 1.2191,-13.62599 1.19658,-14.2031 -0.0196,-0.50282 0.35458,-0.56167 3.5691,-0.56132 4.40989,4.8e-4 11.26093,0.77045 14.58897,1.63961 1.36562,0.35665 2.69961,0.70116 2.96441,0.76558 3.19036,0.77612 9.84846,3.99072 14.12286,6.81866 2.50969,1.66041 4.11125,3.04172 6.27236,5.40978 3.90152,4.27514 7.0061,8.14361 6.74504,8.40467 -0.11733,0.11734 -0.31381,0.0562 -0.43662,-0.13591 -0.34309,-0.53668 -3.70404,-2.60538 -5.08781,-3.1316 -3.12401,-1.18801 -8.37159,-1.54016 -12.36899,-0.83004 -3.21453,0.57104 -6.91569,2.59135 -9.69837,5.29396 -4.93556,4.79352 -6.6202,8.45909 -10.10937,21.99679 -0.88889,3.44884 -1.8309,6.87925 -2.09336,7.62314 -0.26246,0.74388 -0.41999,1.35252 -0.35007,1.35252 0.0699,0 -0.21676,1.01107 -0.63707,2.24682 -0.4203,1.23575 -0.70415,2.24682 -0.63077,2.24682 0.0734,0 -0.0224,0.3972 -0.21294,0.88268 -0.19051,0.48547 -0.99413,2.76037 -1.78583,5.05534 -0.79171,2.29496 -1.54303,4.28179 -1.6696,4.41516 -0.20332,0.21424 -3.99568,-0.5331 -17.357,-3.42045 -3.51455,-0.75949 -4.50325,-0.73342 -4.50325,0.11876 0,0.52837 2.40897,2.64043 6.6113,5.79643 2.45427,1.84319 4.60675,3.5117 4.78328,3.7078 0.17654,0.19609 1.23475,1.0458 2.35157,1.88823 1.11683,0.84242 2.10209,1.71797 2.18946,1.94566 0.13891,0.36198 -1.22997,2.92557 -1.79546,3.36247 -0.11424,0.0883 -0.87219,1.03293 -1.68432,2.09924 -2.00737,2.63565 -7.08595,7.76916 -9.25938,9.35955 -5.27605,3.8607 -12.26742,5.70708 -19.56613,5.1673 z"
id="path311" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 571.25235,200.08269 c -0.66272,-0.14675 -1.92322,-0.63079 -2.8011,-1.07565 -2.64068,-1.33813 -4.65787,-5.0288 -5.28911,-9.67699 -0.21757,-1.6021 -0.1929,-1.67326 0.85786,-2.47472 0.59503,-0.45385 2.44797,-1.47798 4.11764,-2.27584 3.34406,-1.59797 3.15925,-1.71717 -1.49994,-0.96743 -1.69643,0.27298 -3.13114,0.44961 -3.18824,0.39251 -0.302,-0.302 0.70499,-3.33676 1.98288,-5.97577 1.12064,-2.31428 1.92994,-3.47057 3.53829,-5.05534 1.14693,-1.13011 2.26973,-2.05475 2.49513,-2.05475 0.2254,0 1.11846,0.88427 1.98458,1.96504 1.83842,2.29403 2.13793,1.97649 1.09417,-1.16002 -0.37955,-1.14054 -0.60113,-2.21766 -0.4924,-2.39358 0.45755,-0.74033 4.5193,-1.68604 7.25118,-1.68831 2.39742,-0.002 3.07219,0.1346 5.29608,1.07207 l 2.5486,1.07434 -1.96303,0.19147 c -2.39426,0.23353 -3.91409,1.11182 -4.87139,2.8151 -1.04117,1.8525 -1.16344,3.61763 -0.56065,8.09389 0.2962,2.19957 0.49244,4.64539 0.43609,5.43514 l -0.10245,1.43592 -2.80821,0.51293 c -1.54451,0.28212 -2.88992,0.59465 -2.9898,0.69453 -0.17395,0.17395 1.31228,0.697 4.30491,1.51503 1.38785,0.37937 1.39446,0.38814 1.17942,1.56283 -0.37017,2.02209 -1.81108,4.83254 -3.05278,5.95434 -1.91858,1.73333 -5.07348,2.61344 -7.46773,2.08326 z"
id="path312" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 334.66988,176.82384 c -0.0987,-0.33498 -0.26838,-1.76456 -0.37709,-3.17685 -0.79719,-10.35645 -1.25843,-13.32042 -2.07286,-13.32042 -0.38506,0 -2.15019,4.90035 -5.03832,13.98737 l -0.82407,2.5928 -2.2905,-0.59114 c -6.25262,-1.61372 -8.82715,-2.51421 -13.20362,-4.61826 -3.2441,-1.55964 -6.37138,-3.57812 -9.23183,-5.95861 -1.87403,-1.55958 -5.75853,-5.52372 -6.91764,-7.05946 -0.98958,-1.31113 -3.33039,-5.44656 -4.78773,-8.45833 -0.77015,-1.59161 -1.54802,-3.16066 -1.7286,-3.48679 -0.667,-1.2046 -0.0356,-0.78662 1.66241,1.10054 2.23329,2.48204 5.33981,4.22608 9.15524,5.13987 7.92479,1.89799 14.78673,-0.67487 20.68304,-7.75502 1.41595,-1.70025 3.20164,-4.28392 3.20164,-4.63238 0,-0.0956 0.33979,-0.71252 0.75508,-1.37102 0.4153,-0.6585 1.84348,-3.29163 3.17374,-5.8514 3.24347,-6.24133 3.58374,-6.87394 3.79797,-7.06119 0.10115,-0.0884 0.26712,-0.38734 0.36884,-0.66431 0.15579,-0.4242 2.39055,-4.14237 6.30475,-10.48978 0.46267,-0.75028 1.00166,-1.36414 1.19775,-1.36414 0.33128,0 2.23389,0.8815 13.07505,6.05782 4.38327,2.09288 5.35007,2.34094 5.35007,1.37274 0,-0.71757 -0.8481,-1.90614 -5.00125,-7.00895 -5.45439,-6.70158 -6.27736,-7.81724 -6.1716,-8.36644 0.24025,-1.24752 9.21286,-7.776927 13.45853,-9.793833 0.99232,-0.4714 2.94224,-1.170418 4.33315,-1.553374 4.1314,-1.137485 10.83076,-0.88466 15.19239,0.573341 4.51016,1.507653 9.4861,4.658784 11.99618,7.596866 2.60142,3.045 5.41978,8.20868 6.50831,11.92427 0.78529,2.6805 0.79562,10.53601 0.0186,14.12286 -1.24893,5.76509 -4.88395,14.58375 -7.80418,18.93318 -0.59105,0.88033 -1.07464,1.8043 -1.07464,2.05329 0,0.3793 -0.87181,0.42137 -5.37632,0.25948 -5.72142,-0.20563 -9.86938,-0.81311 -18.01277,-2.63802 -2.71319,-0.60802 -5.06031,-1.02685 -5.21583,-0.93074 -0.15551,0.0961 -0.28275,0.3562 -0.28275,0.57796 0,0.39577 1.7149,1.32462 14.60432,7.91017 3.53071,1.80394 6.46377,3.31909 6.51789,3.36701 0.2234,0.19775 -5.14296,5.11468 -6.72877,6.16523 -4.99216,3.30717 -9.54572,5.85369 -14.71442,8.22883 -4.88118,2.24303 -13.71954,4.22798 -20.42544,4.58722 -3.64588,0.19531 -3.90676,0.16968 -4.0747,-0.40039 z"
id="path313" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 298.95777,139.15185 c -2.03224,-0.43288 -5.266,-1.88789 -6.97455,-3.13816 -3.94084,-2.88378 -6.63504,-8.48197 -7.75975,-16.12375 l -0.5345,-3.63162 0.90875,-0.73389 c 2.23429,-1.80436 12.01678,-6.8747 13.26374,-6.8747 0.17792,0 0.32348,-0.21665 0.32348,-0.48146 0,-0.2648 -0.0901,-0.48146 -0.20027,-0.48146 -0.1565,0 -7.04424,1.09165 -12.89584,2.04388 -0.64483,0.10494 -0.71754,0.0134 -0.57268,-0.72111 0.0913,-0.46272 0.26548,-1.41906 0.38715,-2.1252 0.51866,-3.01017 4.2004,-10.766684 6.56688,-13.834806 2.28487,-2.962311 7.09155,-7.538273 7.87123,-7.493407 0.15835,0.0091 1.64868,1.597934 3.31184,3.530715 1.66316,1.932781 3.14366,3.514147 3.28999,3.514147 0.50963,0 0.25704,-1.211505 -1.14396,-5.486853 -1.09447,-3.339923 -1.31697,-4.356381 -0.99421,-4.542027 1.33775,-0.769471 7.49302,-2.512974 10.00153,-2.832971 3.30736,-0.421903 7.92126,-0.04531 10.61438,0.866371 1.78016,0.602618 6.50332,2.928421 6.50332,3.202394 0,0.102863 -0.69949,0.09082 -1.55442,-0.02676 -4.39952,-0.605088 -9.62086,2.68157 -11.27235,7.095573 -1.12423,3.004781 -1.13681,5.33612 -0.0725,13.439824 1.10576,8.41951 1.42085,12.03653 1.04855,12.03653 -0.81243,0 -10.8206,2.0131 -11.03226,2.21909 -0.43064,0.41911 0.46147,0.85653 3.30359,1.6198 1.50056,0.40299 3.71806,1.01457 4.92779,1.35908 l 2.19951,0.62637 -0.22103,1.47398 c -0.26721,1.78187 -1.82044,6.07886 -2.94256,8.14057 -1.55958,2.86547 -5.42799,5.83438 -8.92765,6.85176 -2.13282,0.62003 -5.73888,0.86685 -7.42317,0.50809 z"
id="path314" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 304.12296,70.409705 c -2.50586,-0.483991 -6.57452,-2.602702 -8.2874,-4.315587 -3.6928,-3.692801 -5.5291,-8.402152 -6.77502,-17.37516 l -0.18787,-1.352999 2.41,-1.626254 c 2.33975,-1.578842 6.91787,-3.953157 10.35274,-5.369153 0.92682,-0.382071 1.68512,-0.847117 1.68512,-1.033436 0,-0.186319 -0.12337,-0.338762 -0.27416,-0.338762 -0.42759,0 -8.3522,1.231403 -10.28155,1.597647 -3.14699,0.597384 -3.18978,0.577903 -2.89043,-1.31575 0.59377,-3.75618 3.87567,-11.083079 6.59602,-14.725732 2.18995,-2.932435 7.17687,-7.703379 8.0521,-7.703379 0.18339,0 1.34761,1.191617 2.58715,2.648037 2.75765,3.240145 4.11171,4.551944 4.3315,4.196312 0.0917,-0.148346 -0.4756,-2.274547 -1.26062,-4.724892 -0.78502,-2.450345 -1.38074,-4.594904 -1.32381,-4.765687 0.0569,-0.170784 0.96504,-0.662465 2.01802,-1.092626 7.31234,-2.987208 14.7415,-3.085784 21.06599,-0.27952 4.75059,2.107903 4.86212,2.251925 1.74894,2.258625 -2.24215,0.0048 -2.89542,0.14397 -4.69122,0.999228 -3.79951,1.809527 -5.75533,4.596732 -6.47531,9.227836 -0.31427,2.021472 -0.25304,3.07288 0.48896,8.396584 0.83691,6.004631 1.63058,13.625851 1.4335,13.76516 -0.0557,0.03938 -2.34007,0.480762 -5.07638,0.980862 -5.74551,1.05007 -6.67507,1.323209 -6.18185,1.816434 0.18819,0.188193 2.55884,0.949351 5.2681,1.691466 5.70398,1.562422 5.56024,1.397107 4.43884,5.10475 -1.00033,3.307368 -2.60708,6.579924 -4.03393,8.216128 -3.33397,3.823148 -9.80741,6.07206 -14.73743,5.119868 z"
id="path315" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 381.86895,78.221582 c 0.40373,-4.478703 -2.03088,-8.438432 -6.16876,-10.033044 -1.86288,-0.717898 -2.21634,-0.740081 -10.81126,-0.678499 -5.3146,0.03808 -8.96085,-0.0584 -9.07312,-0.240056 -0.10324,-0.167045 -0.3492,-2.299457 -0.54658,-4.738694 -0.19737,-2.439237 -0.48014,-4.568602 -0.62836,-4.731922 -0.27541,-0.303462 -1.06637,1.312115 -2.67564,5.465115 -1.28444,3.314746 -1.07831,3.17756 -3.37325,2.245045 -5.27961,-2.1453 -7.68304,-4.146073 -9.43591,-7.855074 -0.92602,-1.959446 -1.00491,-2.389864 -1.00728,-5.496161 -0.002,-3.120735 0.0726,-3.528944 1.01316,-5.51421 2.63809,-5.568423 7.81806,-8.369648 16.31687,-8.823839 l 3.53072,-0.188688 1.5004,3.030044 c 0.82522,1.666523 1.98072,4.573913 2.56779,6.460865 0.58707,1.886953 1.19416,3.430853 1.34911,3.43089 0.15985,3.8e-5 0.18063,-2.499053 0.048,-5.777466 -0.16417,-4.05923 -0.1308,-5.777534 0.11218,-5.777534 0.64493,0 4.51709,1.568476 6.05371,2.452152 4.7584,2.736428 7.78822,5.307029 10.32649,8.761337 2.65533,3.613623 2.74497,3.146744 -1.11604,5.81308 -1.85728,1.282597 -3.26218,2.443353 -3.122,2.579457 0.14018,0.136105 1.91591,-0.09706 3.94607,-0.518141 2.03016,-0.421082 3.85971,-0.771625 4.06567,-0.778983 0.21015,-0.0075 0.68893,1.289534 1.09104,2.955632 1.43786,5.95767 0.72713,12.048755 -1.93376,16.572712 -2.15852,3.669825 -2.24019,3.72561 -2.02929,1.385982 z"
id="path316" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 415.66147,61.487151 c -3.24166,-0.68459 -9.66682,-3.154104 -10.12183,-3.890332 -0.41634,-0.673647 -0.21733,-8.528188 0.31155,-12.29646 0.84804,-6.042257 0.40073,-5.675409 -2.86087,2.346266 -1.31446,3.232813 -2.4502,5.938121 -2.52388,6.011797 -0.30407,0.304075 -3.13082,-2.474501 -4.95478,-4.870358 -2.5964,-3.410472 -4.62371,-6.835972 -5.83083,-9.852226 -0.99181,-2.47827 -2.26509,-7.872414 -2.26509,-9.595925 0,-1.056933 -0.28995,-0.952244 5.29608,-1.912128 3.73538,-0.641875 4.73294,-0.983423 4.06963,-1.393371 -0.17569,-0.108587 -2.3623,-0.68601 -4.85911,-1.283164 -2.49682,-0.597154 -4.59336,-1.139421 -4.65897,-1.205039 -0.0656,-0.06562 0.16777,-1.555386 0.51864,-3.310597 1.76098,-8.809146 5.86516,-14.7129377 13.14285,-18.9057668 1.99625,-1.15008172 2.17191,-1.06928708 0.85189,0.3918196 -2.00786,2.2224624 -2.89745,6.4706371 -2.00517,9.5755222 1.33129,4.63248 4.06698,7.018927 11.71722,10.221372 4.10281,1.717465 11.76433,5.387367 12.27108,5.877901 0.129,0.124873 -0.6293,2.524563 -1.68511,5.332645 -1.95025,5.186935 -2.15711,5.948273 -1.6162,5.948273 0.16691,0 2.04632,-1.661041 4.17647,-3.691203 2.13015,-2.030161 3.98413,-3.691202 4.11997,-3.691202 0.13584,0 1.04875,0.830521 2.02869,1.845601 4.61503,4.780492 6.06871,7.97016 6.05529,13.286512 -0.0121,4.791466 -2.14675,9.201582 -5.82322,12.030562 -4.50529,3.466741 -9.04372,4.362201 -15.3543,3.029501 z"
id="path317" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 440.65201,96.211988 c -0.025,-0.838545 -0.0725,-1.813504 -0.10559,-2.166575 -0.0331,-0.353072 -0.0849,-1.833565 -0.11505,-3.289985 -0.0756,-3.647091 -0.61626,-3.52583 -2.14665,0.481461 -1.75351,4.591516 -2.33031,5.857778 -2.66829,5.857778 -0.62174,0 -5.40918,-1.715459 -6.95551,-2.492329 -2.81994,-1.416725 -5.39248,-3.323433 -7.80029,-5.781402 -1.95572,-1.996449 -2.63324,-2.994778 -4.09242,-6.030166 -0.96178,-2.00069 -1.74869,-3.789905 -1.74869,-3.976034 0,-0.186129 0.53248,0.250973 1.18328,0.971339 2.1191,2.345586 6.02415,3.762945 9.25527,3.359243 2.61711,-0.326986 5.26145,-1.801981 7.43065,-4.144778 1.05549,-1.139949 3.2563,-4.316646 5.05026,-7.289652 3.25974,-5.402134 6.54504,-10.244347 6.95049,-10.244347 0.12535,0 2.41717,1.173487 5.09292,2.607748 2.67575,1.434261 4.95459,2.518159 5.06408,2.408662 0.32902,-0.329012 -0.39279,-1.595147 -2.70754,-4.749365 -3.58632,-4.886925 -3.43508,-4.450348 -1.96831,-5.681775 1.95302,-1.639663 5.36628,-3.611214 7.65943,-4.424206 3.61478,-1.281552 8.47671,-0.873069 12.22683,1.027255 4.01304,2.033564 7.57064,6.969726 8.36598,11.607792 0.86042,5.017585 -1.17836,11.764029 -5.48228,18.141229 l -0.94388,1.398564 -3.11647,-0.269987 c -1.71407,-0.148496 -5.08211,-0.784856 -7.48455,-1.414138 -5.75158,-1.506537 -5.81245,-1.518638 -5.81245,-1.155399 0,0.351165 1.8011,1.478121 7.80531,4.883812 l 4.11411,2.333594 -0.74388,0.811361 c -1.71054,1.865701 -8.39421,5.59161 -12.61992,7.035156 -3.14067,1.072881 -7.1019,1.709771 -10.63419,1.709771 h -3.00721 z"
id="path318" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 493.37866,81.447179 c 0.9827,-1.015081 2.10537,-2.312163 2.49483,-2.882405 1.94289,-2.844784 3.36002,-9.935157 2.84903,-14.254704 -0.64196,-5.426748 -3.84612,-10.57126 -9.06529,-14.554991 -3.48239,-2.658067 -5.80453,-3.858895 -14.61556,-7.558003 -6.01533,-2.525405 -20.22455,-9.478382 -21.90836,-10.720396 -0.52951,-0.390578 -0.49672,-0.597848 0.54231,-3.428206 0.60824,-1.656872 1.84554,-4.890192 2.74956,-7.185157 3.4171,-8.674758 3.85219,-10.031661 3.35023,-10.44825 -0.57166,-0.4744428 -1.49964,0.08771 -3.96134,2.399724 -0.95398,0.895974 -2.12312,1.99014 -2.5981,2.431479 -0.47498,0.441339 -1.86162,1.741284 -3.08143,2.888767 -4.35945,4.100965 -6.25466,5.777534 -6.53098,5.777534 -0.5003,0 -4.96701,-4.584743 -7.036,-7.221918 -1.108,-1.412286 -2.21795,-2.818789 -2.46654,-3.125563 -0.63508,-0.783721 -2.01792,-2.999612 -3.08373,-4.9414437 -0.84992,-1.5485062 -2.51427,-6.9875786 -2.51605,-8.22242867 -7.7e-4,-0.53085361 1.60575,-0.56170468 29.24983,-0.56170468 h 29.25064 L 486.7904,1.0431658 c -0.52583,2.9951494 -0.58448,4.1718545 -0.21917,4.3976287 0.62308,0.3850851 1.20347,-0.3751173 2.32582,-3.0463939 l 1.06992,-2.54650882 11.44865,-0.004189 11.44864,-0.004189 0.63298,1.04316584 c 2.5116,4.13918028 5.20603,10.64437138 6.47375,15.62960438 0.72303,2.843267 1.81562,9.034572 2.04942,11.613316 l 0.16372,1.805722 -2.62767,0.496154 c -1.44522,0.272885 -3.1332,0.575373 -3.75107,0.672197 -0.61788,0.09682 -1.55673,0.244013 -2.08634,0.327087 -9.15269,1.4357 -9.87315,1.609173 -9.72937,2.342679 0.13533,0.690403 1.36668,1.081025 10.60169,3.36318 4.36356,1.078322 7.86947,2.064573 7.79092,2.191666 -0.0786,0.127093 -0.36782,1.586247 -0.64284,3.24256 -0.72042,4.338838 -1.06672,5.795002 -2.31916,9.751935 -2.55321,8.066525 -6.86919,15.20221 -12.81318,21.184291 -1.95648,1.969006 -7.09313,5.648457 -10.54163,7.551099 -1.05922,0.584404 -2.35916,1.326624 -2.88877,1.64938 -1.69504,1.033004 -1.63146,0.637454 0.20195,-1.256371 z"
id="path319" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 472.79486,146.24038 c -5.142,-1.66245 -8.90503,-5.33042 -10.61121,-10.34317 -0.85287,-2.50571 -0.92381,-7.39389 -0.15539,-10.70723 0.5399,-2.32801 2.80015,-8.35441 3.48431,-9.29005 0.37058,-0.5068 0.96079,-0.57168 5.05458,-0.55566 2.54926,0.01 6.1405,0.24495 7.98053,0.52215 2.07069,0.31195 3.45966,0.38987 3.64505,0.20448 0.34735,-0.34734 -0.69386,-0.83523 -7.67662,-3.5971 -5.67713,-2.24546 -5.53995,-1.93835 -2.24324,-5.02227 2.79114,-2.61097 7.9457,-5.99833 11.36829,-7.470764 2.53911,-1.092346 7.01526,-2.284404 10.08682,-2.686246 1.16115,-0.151911 1.19885,-0.124351 1.40318,1.025674 0.90615,5.100206 1.63225,8.214596 1.93828,8.313756 0.22661,0.0734 0.74465,-1.53864 1.38497,-4.30977 0.56262,-2.434895 1.0833,-4.612932 1.15706,-4.840087 0.17752,-0.546694 2.61694,-0.237222 6.24372,0.792099 7.51335,2.132378 12.14411,5.695058 16.30586,12.544938 1.33131,2.19123 1.29474,2.39097 -0.17691,0.96644 -1.82891,-1.77035 -3.55685,-2.3354 -7.14168,-2.3354 -3.71154,0 -5.39822,0.69184 -7.89868,3.23987 -2.03623,2.07497 -2.80909,3.45012 -5.47362,9.73926 -2.65243,6.26059 -5.18193,11.25441 -5.70065,11.25441 -0.21831,0 -2.53407,-0.79441 -5.14615,-1.76535 -4.89921,-1.82111 -5.63149,-2.00635 -5.63149,-1.42455 0,0.18745 1.33606,1.74022 2.96901,3.45062 1.63296,1.71039 3.28939,3.45701 3.68097,3.88138 l 0.71195,0.77158 -1.01185,1.15412 c -1.3071,1.49088 -4.7459,4.30959 -6.54135,5.3618 -0.77254,0.45273 -2.16494,1.02556 -3.09422,1.27294 -2.35746,0.62757 -6.73787,0.55489 -8.91152,-0.14787 z"
id="path320" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 556.04824,113.9597 c -8.04289,-2.07923 -13.65195,-5.0859 -18.24254,-9.77867 l -1.59128,-1.62671 1.12533,-1.2052 c 7.06156,-7.562768 7.05531,-7.588966 -0.93184,-3.906796 -3.49393,1.610743 -3.22637,1.711408 -4.93814,-1.857914 -2.40767,-5.020382 -2.97918,-7.467688 -2.98282,-12.773091 -0.003,-4.241884 0.0556,-4.66447 1.04515,-7.542891 1.41684,-4.121485 1.55303,-4.26917 1.76645,-1.915513 0.20339,2.243051 1.67415,5.568602 3.11435,7.041904 2.36219,2.416492 6.26188,3.760867 9.78887,3.374611 1.06462,-0.11659 4.87381,-0.923399 8.46487,-1.792909 7.36729,-1.783853 11.66372,-2.599342 11.98156,-2.274171 0.11837,0.121111 0.92669,2.531216 1.79625,5.355788 2.16586,7.035274 2.24797,6.998443 3.57827,-1.604871 0.68144,-4.407004 0.48323,-4.107833 2.55758,-3.860508 6.82195,0.813384 11.46193,3.243983 14.26212,7.471043 3.46636,5.232702 3.68395,11.488905 0.59854,17.209058 -2.33385,4.3268 -9.11937,8.30894 -16.99583,9.97414 l -2.01218,0.42541 -1.31797,-1.48671 c -1.91516,-2.16038 -4.18665,-5.46425 -6.12239,-8.90499 -0.93237,-1.65727 -1.88549,-3.01325 -2.11806,-3.0133 -0.25403,-5e-5 -0.35443,0.22418 -0.25147,0.56162 0.52348,1.71582 3.4026,12.41667 3.4026,12.6465 0,0.50713 -3.03277,0.24541 -5.97742,-0.51583 z"
id="path321" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 558.49494,70.425028 c -0.97094,-0.108932 -2.92086,-0.676521 -4.33315,-1.26131 -6.17993,-2.558934 -10.24862,-9.511766 -11.32554,-19.353775 l -0.27452,-2.50884 2.91127,-1.905511 c 1.60119,-1.048032 4.89147,-2.794917 7.31172,-3.881972 6.24917,-2.806801 5.8874,-2.946054 -3.53746,-1.361643 -5.87178,0.987103 -5.83903,0.987723 -5.83429,-0.110457 0.0107,-2.476395 2.92999,-9.677353 5.65632,-13.952281 2.07237,-3.249505 7.99668,-9.238099 9.13894,-9.238099 0.14241,0 1.6576,1.597452 3.36709,3.549893 1.90244,2.172817 3.22325,3.434804 3.40485,3.253212 0.18159,-0.181593 -0.28298,-2.070305 -1.1976,-4.868813 -0.82186,-2.514672 -1.37283,-4.678288 -1.22438,-4.808034 0.14845,-0.129747 1.08446,-0.557598 2.08003,-0.950781 7.75859,-3.0641148 15.09308,-2.96632 22.00365,0.293387 1.8197,0.858346 3.30853,1.613738 3.30853,1.678648 0,0.06491 -1.11939,0.113397 -2.48754,0.107746 -7.97935,-0.03296 -12.47543,6.366391 -11.14833,15.867603 0.91059,6.519239 1.86378,15.63584 1.68384,16.104757 -0.13386,0.348831 -1.53184,0.744204 -4.79088,1.354938 -2.53103,0.474306 -4.99907,0.940098 -5.48454,1.035093 -0.48548,0.09499 -0.88268,0.367647 -0.88268,0.6059 0,0.405948 1.16729,0.832812 4.81461,1.760636 0.79441,0.202085 2.42048,0.652755 3.61348,1.001487 2.46959,0.7219 2.3761,0.346039 1.14845,4.617553 -1.8589,6.467875 -5.48573,10.573911 -10.88122,12.318951 -1.74517,0.564433 -5.07298,0.872468 -7.04065,0.651712 z"
id="path322" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 358.84905,26.656624 c -0.79441,-0.224558 -2.27247,-0.805152 -3.28457,-1.29021 -5.69556,-2.729633 -9.58585,-9.725912 -10.465,-18.8202107 l -0.24925,-2.5783259 1.14163,-0.8900455 c 0.6279,-0.4895248 2.05211,-1.4184069 3.16492,-2.0641821 l 2.02328,-1.17413685 h 14.42664 14.42664 l 0.0573,1.44438345 c 0.0315,0.7944109 0.0676,1.7585693 0.0802,2.1425741 0.0214,0.6511245 -0.33409,0.7653592 -5.27315,1.6945911 -2.91284,0.5480203 -5.49724,1.1217336 -5.74311,1.2749181 -0.68735,0.4282366 0.47975,0.896256 5.66287,2.2708703 l 4.57388,1.2130369 v 0.9507321 c 0,1.347726 -1.77842,6.487139 -2.9585,8.549705 -1.90457,3.328845 -5.47765,6.037425 -9.5375,7.229912 -2.05679,0.604134 -5.99294,0.626827 -8.04634,0.04639 z"
id="path323" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 639.02672,72.045491 c 2.75216,-1.993657 4.38487,-5.724114 4.12142,-9.416716 -0.30388,-4.259162 -2.15449,-6.992619 -7.66851,-11.326864 -3.06475,-2.409023 -9.68989,-7.918688 -11.14261,-9.266539 -0.45102,-0.41846 0.36864,-1.768676 4.62288,-7.615253 1.52335,-2.093532 1.82606,-3.018838 0.87154,-2.664098 -0.30894,0.114814 -2.5586,1.298527 -4.99924,2.630472 -5.07074,2.767284 -4.47896,2.844898 -6.44049,-0.844699 -1.72837,-3.251029 -2.76338,-6.681108 -2.76338,-9.158024 0,-7.696847 5.02592,-13.808652 12.96667,-15.7682297 1.92362,-0.4747004 2.56433,-0.4949304 4.91427,-0.1551647 1.48624,0.2148878 3.45269,0.6714792 4.36989,1.0146476 2.39663,0.8966948 6.55786,3.3842508 9.33703,5.5816228 2.22864,1.762082 2.38666,1.967124 2.22633,2.888767 -0.46107,2.650599 -1.88596,7.28709 -3.32793,10.828892 -0.87922,2.159576 -1.59859,3.971286 -1.59859,4.026021 0,0.05474 0.18055,0.09765 0.40122,0.09537 0.22067,-0.0023 2.1815,-2.385518 4.3574,-5.296073 2.17591,-2.910555 4.07466,-5.291918 4.21945,-5.291918 0.38679,0 2.09358,2.763005 3.07391,4.976139 1.51695,3.424594 2.9847,8.315703 3.37706,11.253672 0.42378,3.173222 0.22048,10.617648 -0.3043,11.142418 -0.21552,0.215528 -1.73582,0.200612 -4.59394,-0.04507 -2.34949,-0.201967 -4.45235,-0.366787 -4.67302,-0.36627 -0.87581,0.0021 -0.3263,0.873945 0.96292,1.527846 3.97739,2.017361 7.13047,3.933005 7.04466,4.279965 -0.25173,1.017831 -2.83627,5.793409 -4.07455,7.528736 -1.61564,2.264165 -4.96104,5.479988 -7.35283,7.068046 -1.64588,1.092805 -7.46362,3.338818 -8.66489,3.345195 -0.43541,0.0023 -0.2244,-0.275989 0.73763,-0.972882 z"
id="path324" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 598.58219,93.771237 c -2.57812,-1.060541 -3.59831,-1.884914 -5.0817,-4.106306 -1.47035,-2.201869 -2.46844,-5.138548 -2.85989,-8.414618 l -0.26323,-2.202953 1.31115,-0.970288 c 0.72112,-0.533659 2.82774,-1.689941 4.68137,-2.569517 1.85362,-0.879576 3.43041,-1.654302 3.50396,-1.721613 0.43492,-0.39799 -0.57904,-0.343736 -3.99683,0.21386 -5.31119,0.866497 -5.06533,0.904287 -4.79795,-0.737463 0.29631,-1.819326 2.21916,-6.278668 3.67947,-8.533158 1.16349,-1.796249 3.97683,-4.795262 5.38741,-5.742976 0.6958,-0.467477 0.78483,-0.421878 2.08633,1.068571 3.13073,3.585225 3.10516,3.561943 3.11547,2.836116 0.005,-0.36409 -0.41117,-1.906234 -0.92522,-3.426987 -0.84286,-2.49352 -0.88226,-2.786307 -0.40122,-2.98194 5.96633,-2.426432 10.88363,-2.530067 15.64593,-0.329749 1.30932,0.60494 2.38057,1.145399 2.38057,1.20102 0,0.05562 -0.83052,0.102634 -1.8456,0.104474 -4.35341,0.0079 -7.46688,3.412951 -7.46075,8.159508 0.001,0.806504 0.22072,2.910753 0.48818,4.676111 0.26746,1.765357 0.57596,4.457344 0.68556,5.982193 0.23069,3.209625 0.66899,2.823536 -4.15796,3.662707 -1.97914,0.344076 -3.09846,0.67944 -3.02303,0.90574 0.0659,0.197646 1.62459,0.771601 3.46379,1.275455 1.8392,0.503853 3.39567,0.965467 3.45882,1.025807 0.31932,0.30511 -1.7944,5.86257 -2.6628,7.001117 -3.00958,3.945824 -8.05184,5.418421 -12.41183,3.624889 z"
id="path325" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 612.57908,144.98281 c -4.19355,-1.24897 -7.17576,-3.59114 -9.48,-7.44541 -3.25531,-5.44511 -2.86405,-12.26087 1.1647,-20.28925 1.99611,-3.97781 2.12918,-4.10478 4.30175,-4.10478 2.54377,0 6.16509,0.50375 10.55481,1.46823 5.79503,1.27325 5.41425,0.79734 -2.60933,-3.26124 -2.95697,-1.49573 -5.37631,-2.84758 -5.37631,-3.00411 0,-0.71811 4.14379,-3.91231 7.59074,-5.85126 5.83914,-3.284565 10.50162,-4.697345 16.00064,-4.848354 l 2.56759,-0.07051 0.23891,2.728284 c 0.5555,6.34347 0.61565,6.74045 1.02124,6.74045 0.23821,0 1.04238,-1.92473 1.94453,-4.65412 0.84608,-2.559771 1.5933,-4.654127 1.66049,-4.654127 0.0672,0 1.19171,0.286623 2.49896,0.636941 4.9978,1.339311 8.64597,3.191386 12.03951,6.112116 2.47599,2.13102 3.87996,3.92942 5.75655,7.37381 1.40453,2.57794 1.76633,3.99516 0.63145,2.47348 -0.89472,-1.19968 -3.87149,-2.66195 -6.32448,-3.10676 -4.23775,-0.76845 -8.66885,1.40435 -11.67178,5.7233 -0.53492,0.76935 -2.12278,3.5859 -3.52857,6.25899 -2.70773,5.14871 -6.05353,10.79375 -6.39909,10.79653 -0.11377,9.2e-4 -2.497,-1.08131 -5.29607,-2.40494 -6.80924,-3.21998 -6.80367,-3.256 -0.68813,4.45466 l 2.00622,2.52951 -1.27781,1.11515 c -1.97101,1.72009 -4.80209,3.57115 -7.12285,4.65717 -1.80379,0.84409 -2.55184,1.00155 -5.1926,1.09298 -2.28287,0.0791 -3.58607,-0.0423 -5.01107,-0.46674 z"
id="path326" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 625.63114,252.1076 c -6.07668,-1.08597 -12.35617,-4.48129 -18.81781,-10.17481 l -1.54982,-1.36557 0.56965,-2.9477 c 0.81559,-4.22039 2.2832,-8.59859 4.65959,-13.90057 1.25349,-2.79668 1.59269,-3.7722 1.41284,-4.06322 -0.10328,-0.1671 -0.30682,-0.26008 -0.45232,-0.20663 -0.25661,0.0943 -2.70831,3.08655 -4.00978,4.8939 -0.35307,0.49031 -0.79162,1.05601 -0.97455,1.25712 -0.18294,0.20111 -0.75603,0.9434 -1.27355,1.64955 -0.51751,0.70614 -1.86788,2.47076 -3.00083,3.92138 l -2.05989,2.63749 -0.96617,-1.1931 c -0.53139,-0.65621 -1.67389,-2.68064 -2.5389,-4.49874 -4.26776,-8.97005 -6.06543,-18.49348 -5.10159,-27.02642 0.552,-4.8869 0.31718,-4.55046 3.02169,-4.32925 1.26591,0.10355 2.59052,0.24404 2.9436,0.31221 0.35307,0.0682 2.01411,0.223 3.6912,0.34406 1.67709,0.12105 3.14121,0.27321 3.25361,0.33813 0.1124,0.0649 0.36695,-0.0779 0.56567,-0.3173 0.47792,-0.57587 0.5501,-0.52595 -5.82537,-4.02923 -2.95697,-1.62484 -5.37632,-3.02355 -5.37632,-3.10825 0,-0.55312 3.43923,-7.28331 4.66113,-9.1213 2.93973,-4.42198 7.81029,-8.95044 12.37113,-11.5022 1.82664,-1.022 9.20641,-3.57305 10.33622,-3.57305 0.42566,0 0.008,0.45583 -1.30209,1.42004 -2.25191,1.65776 -3.4816,3.33619 -4.71016,6.42899 -1.5734,3.96089 -1.42176,7.60605 0.48239,11.59583 1.70975,3.58248 4.538,6.53556 11.04176,11.52914 1.37955,1.05921 2.67111,2.07028 2.87015,2.24682 0.19903,0.17653 1.37231,1.17159 2.60728,2.21123 1.23498,1.03964 3.42632,2.9701 4.86965,4.2899 l 2.62423,2.39964 -4.18917,5.82079 c -2.30404,3.20143 -4.3072,5.97006 -4.45147,6.15252 -0.14427,0.18246 -0.13152,0.54335 0.0283,0.80199 0.24021,0.38866 0.91917,0.14076 3.91358,-1.4289 1.99262,-1.04453 4.89557,-2.56093 6.45102,-3.36978 l 2.82807,-1.47063 0.79994,0.96292 c 1.07319,1.29183 3.41589,6.16872 4.47734,9.32064 0.69908,2.07589 0.86314,3.1577 0.87432,5.76514 0.008,1.76536 -0.0666,3.57084 -0.1648,4.01218 -1.13847,5.11648 -3.26286,8.88252 -6.8704,12.1796 -2.32254,2.12268 -3.90243,3.02524 -7.37967,4.21586 -3.18245,1.08969 -7.32585,1.45819 -10.33972,0.91958 z"
id="path327" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 644.35552,184.71371 c -1.40525,-0.28186 -6.15909,-1.96486 -7.10843,-2.51659 -0.47118,-0.27383 -0.16091,-0.35073 1.49138,-0.36962 4.68478,-0.0535 8.43449,-2.70637 10.11073,-7.15309 1.00052,-2.65419 0.79033,-6.23208 -0.74861,-12.74297 -1.70203,-7.2009 -2.53881,-12.09787 -2.12967,-12.46318 0.17074,-0.15245 2.26036,-0.81194 4.64359,-1.46553 4.92138,-1.34967 5.77753,-1.6596 5.77753,-2.09149 0,-0.42093 -0.46263,-0.53851 -5.74682,-1.46061 -2.54287,-0.44373 -4.69258,-0.87596 -4.77711,-0.96049 -0.32609,-0.32609 0.97333,-6.17732 1.9129,-8.61369 1.6505,-4.27991 5.72859,-7.83052 10.38761,-9.04404 2.17825,-0.56736 5.54665,-0.63859 7.29094,-0.15417 l 1.20366,0.33427 v 25.39995 25.39995 l -2.8753,-2.81363 c -4.12248,-4.03405 -4.18296,-3.82126 -1.03285,3.63384 l 1.27722,3.02271 -2.21233,1.07325 c -3.33982,1.6202 -5.01857,2.2222 -7.78931,2.79324 -2.62399,0.54079 -7.4577,0.63667 -9.67513,0.19189 z"
id="path328" />
<path
id="path332"
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="M 665.61719 249.17578 C 664.5727 249.17462 662.85233 249.35839 661.625 249.64648 L 659.95703 250.03906 L 662.74805 254.72852 C 664.28327 257.30791 665.75667 259.67732 666.02148 259.99414 C 666.45367 260.51124 666.51084 260.00175 666.58984 255.01758 C 666.6383 251.96383 666.60487 249.39198 666.51367 249.30078 C 666.4284 249.21551 666.09195 249.17631 665.61719 249.17578 z M 653.84375 251.76172 L 652.18164 252.5957 C 645.5968 255.90307 640.36749 261.03078 638.73242 265.7832 C 637.88249 268.25357 637.61312 271.77569 638.09375 274.11914 C 639.36859 280.33492 644.79163 285.80559 650.61523 286.75 C 651.58618 286.90745 652.88603 287.05076 653.50391 287.06836 C 655.50599 287.12532 660.68681 286.47087 660.89453 286.13477 C 661.00561 285.95504 660.90797 284.25957 660.67773 282.36719 C 659.79432 275.10634 659.80112 275.23438 660.32031 275.23438 C 660.5878 275.23438 662.06119 277.22712 663.65039 279.73438 L 666.50195 284.23242 L 666.58789 273.40625 L 666.67188 262.58008 L 664.33984 260.2168 C 661.42654 257.26281 657.71033 254.13287 655.51953 252.78906 L 653.84375 251.76172 z " />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 576.46949,310.83786 c -2.43205,-0.42346 -6.07663,-2.21477 -7.89574,-3.88076 -6.25722,-5.73051 -6.95302,-14.18153 -2.04692,-24.86143 1.15753,-2.51978 1.24042,-2.61407 2.44094,-2.77668 1.8366,-0.24877 7.54025,0.0514 11.11057,0.58473 6.19568,0.92549 5.95765,0.57244 -1.84349,-2.73442 -3.44245,-1.45923 -6.25874,-2.74411 -6.25843,-2.85528 0.001,-0.50649 3.265,-3.63943 5.29551,-5.08354 6.52642,-4.64164 12.50465,-7.05263 17.94874,-7.23863 l 2.25334,-0.077 0.71075,4.4565 c 0.65659,4.11695 1.07732,5.47875 1.4828,4.79947 0.0882,-0.14778 0.69697,-2.37323 1.35278,-4.94545 l 1.19239,-4.67675 2.44027,0.45468 c 8.34131,1.55421 14.68724,5.6174 18.59847,11.90827 1.10335,1.77465 2.00609,3.33103 2.00609,3.45863 0,0.1276 -0.39721,-0.14133 -0.88268,-0.59762 -2.90564,-2.73098 -8.0422,-3.55175 -11.8066,-1.88657 -3.37761,1.49407 -5.73338,4.5061 -8.63181,11.03637 -2.22389,5.01051 -5.12314,10.95995 -5.77613,11.85297 -0.35998,0.49231 -0.82331,0.37351 -5.34521,-1.37057 -2.72308,-1.05028 -5.15273,-1.94604 -5.39922,-1.99058 -1.10253,-0.19919 -0.42776,0.82855 3.00251,4.57316 l 3.67539,4.01217 -1.18903,1.23067 c -1.44955,1.50032 -4.63027,4.0318 -6.1863,4.92357 -2.76488,1.58457 -6.90931,2.26556 -10.24899,1.68407 z"
id="path333" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 646.76282,329.91028 c -5.89813,-0.91265 -10.84506,-2.38813 -14.3603,-4.28312 -2.17841,-1.17433 -6.8777,-4.4424 -7.2469,-5.03977 -0.0916,-0.14816 1.12347,-1.99041 2.70007,-4.09389 1.77767,-2.37174 2.75258,-3.93847 2.56651,-4.12454 -0.18606,-0.18606 -1.9021,0.62929 -4.51758,2.14647 -2.31965,1.34557 -4.26691,2.4465 -4.32724,2.4465 -0.22801,0 -3.28349,-5.05273 -4.13297,-6.83455 -1.25037,-2.62267 -2.14434,-6.3135 -2.36274,-9.75481 -0.18865,-2.97252 0.0807,-5.11507 1.11644,-8.8807 l 0.51667,-1.87847 0.40571,1.98896 c 0.55795,2.73528 1.46888,4.47743 3.32949,6.36762 2.20768,2.24278 4.38344,3.04953 8.1778,3.03226 2.49632,-0.0114 3.34663,-0.17537 6.259,-1.20723 8.05362,-2.85344 14.35981,-4.93978 15.22329,-5.03647 0.9183,-0.10283 0.96318,-0.0302 3.1571,5.11152 1.22407,2.8687 2.34024,5.21583 2.48039,5.21583 0.46679,0 0.61006,-0.89744 0.80443,-5.03872 0.10607,-2.25997 0.26446,-4.57847 0.35197,-5.15221 0.15619,-1.02393 0.18992,-1.04305 1.82969,-1.03681 1.58179,0.006 5.11697,0.41879 7.04689,0.82279 l 0.88268,0.18478 v 15.53522 15.53522 l -1.20366,0.60309 c -0.66201,0.3317 -2.55962,1.08371 -4.21692,1.67115 l -3.01327,1.06806 -2.93891,-3.02877 c -1.6164,-1.66582 -3.99969,-4.51817 -5.29621,-6.33855 -1.31682,-1.84889 -2.47921,-3.18787 -2.63351,-3.03358 -0.15429,0.1543 0.79148,3.02029 2.14272,6.49317 1.8541,4.76529 2.32244,6.27819 2.00572,6.47914 -0.41146,0.26105 -3.21875,0.29679 -4.74636,0.0604 z"
id="path334" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 642.91113,398.14062 c -0.79441,-0.15311 -2.61922,-0.85816 -4.05513,-1.56677 -5.726,-2.82573 -9.24988,-8.96731 -10.40338,-18.13149 l -0.40172,-3.19153 1.04643,-0.81849 c 1.86937,-1.46216 6.8222,-4.16293 10.18886,-5.55595 1.80915,-0.74857 3.29265,-1.54159 3.29667,-1.76226 0.004,-0.22067 -0.0549,-0.40122 -0.13092,-0.40122 -0.11258,0 -10.21468,1.59284 -12.96236,2.04382 -0.70206,0.11523 -0.73286,0.0466 -0.55789,-1.24356 0.57521,-4.2415 3.87695,-11.4657 7.29135,-15.95348 1.69475,-2.22752 6.71312,-6.99399 7.36363,-6.99399 0.14278,0 1.65072,1.58882 3.35097,3.53072 1.70026,1.94189 3.22311,3.53071 3.38412,3.53071 0.48114,0 0.35241,-0.5971 -1.13968,-5.28627 -1.04889,-3.29629 -1.32499,-4.54673 -1.04249,-4.72132 0.21135,-0.13062 1.90184,-0.74095 3.75666,-1.35629 5.02091,-1.66571 9.62723,-2.08778 13.88429,-1.27221 0.87892,0.16839 0.88268,0.1805 0.88268,2.84852 0,2.65286 -0.0108,2.68838 -1.08719,3.58545 -2.5639,2.13673 -4.0484,5.70213 -4.0484,9.72325 0,1.1563 0.35897,4.62859 0.7977,7.71619 0.84709,5.96132 1.37203,12.51477 1.00247,12.51477 -0.12221,0 -2.05773,0.36321 -4.30117,0.80714 -2.24343,0.44394 -4.64509,0.91336 -5.33702,1.04317 -0.69193,0.12981 -1.31314,0.40252 -1.38048,0.60601 -0.13554,0.40961 1.0967,0.84347 6.752,2.37734 l 3.7925,1.02864 -0.21873,1.29462 c -0.68135,4.03292 -2.91847,8.75901 -5.26702,11.12703 -3.75645,3.78758 -9.23408,5.48408 -14.45675,4.47745 z"
id="path335" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 636.81262,485.11282 c -6.58912,-0.48308 -11.37562,-1.77804 -19.7399,-5.34051 -4.54146,-1.93427 -6.24308,-2.95056 -6.47281,-3.86588 -0.11878,-0.47327 -0.20904,-3.678 -0.20058,-7.12162 0.0147,-5.97028 0.47887,-11.15016 1.56787,-17.49522 0.36801,-2.14422 0.67444,-5.15021 0.54806,-5.37632 -0.074,-0.1324 -0.34451,-0.24073 -0.60112,-0.24073 -0.4725,0 -1.15678,1.34647 -3.34396,6.57997 -3.08981,7.39334 -4.52529,10.80003 -5.6128,13.32043 -0.64747,1.50055 -1.25448,2.90883 -1.34891,3.1295 -0.24959,0.58328 -0.43157,0.51609 -2.02884,-0.7491 -2.52965,-2.00372 -5.02372,-4.75547 -7.53946,-8.31842 -0.87254,-1.23575 -1.67984,-2.31904 -1.79401,-2.40731 -0.6965,-0.53849 -4.43814,-6.83921 -6.76377,-11.38981 -2.60985,-5.10671 -5.10081,-13.7617 -5.8674,-20.38662 -0.0919,-0.79442 -0.23601,-2.03984 -0.32018,-2.76761 l -0.15305,-1.32323 2.63288,-0.50138 c 1.44808,-0.27576 4.65501,-0.80792 7.12651,-1.18258 6.40967,-0.97167 7.76672,-1.26429 8.18166,-1.76426 0.72888,-0.87825 -1.3048,-1.55035 -13.68582,-4.52302 -1.96808,-0.47253 -3.74752,-0.96371 -3.95432,-1.09153 -0.40472,-0.25013 -0.24665,-1.4036 1.01252,-7.38874 1.99827,-9.49827 6.61916,-18.49814 13.01752,-25.35359 2.23066,-2.39001 3.74981,-3.62871 7.35985,-6.00114 2.50196,-1.64422 4.62607,-2.9895 4.72025,-2.9895 0.0942,0 0.91728,-0.43988 1.82912,-0.97752 0.91184,-0.53764 1.70807,-0.92735 1.7694,-0.86602 0.0613,0.0613 -0.7357,1.02422 -1.77117,2.13974 -3.34736,3.60614 -4.91391,8.04256 -4.93902,13.98715 -0.0164,3.88926 0.45046,5.77293 2.32234,9.36965 2.13001,4.09268 7.12559,8.55783 12.60799,11.26927 3.24012,1.60248 4.82781,2.32117 13.25631,6.00073 4.46504,1.94926 15.66233,7.59994 16.77544,8.46568 l 0.67218,0.5228 -1.75052,4.65412 c -0.96277,2.55977 -2.38572,6.24295 -3.16208,8.18484 -2.66743,6.67191 -2.80745,7.15524 -2.17534,7.50899 0.78601,0.43987 1.55715,-0.16708 8.11292,-6.38558 2.94111,-2.78979 7.13568,-6.58248 7.54725,-6.82415 0.46238,-0.2715 4.59937,3.62124 6.74066,6.34269 0.69451,0.88268 1.35429,1.67709 1.46618,1.76536 0.11189,0.0883 1.01463,1.37421 2.00609,2.85765 l 1.80266,2.69717 v 14.09777 14.09777 l -1.47459,2.30302 c -3.81099,5.95202 -11.89285,11.5359 -18.66663,12.89706 -2.04617,0.41117 -7.02521,0.63682 -9.70938,0.44003 z"
id="path336" />
<path
style="fill:none;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;fill-opacity:1"
d="m 649.57727,582.49584 c 4.20387,-1.41648 7.45672,-5.93245 7.45672,-10.35225 0,-1.67857 -0.71172,-4.339 -1.67636,-6.26624 -0.35344,-0.70615 -2.14514,-3.26965 -3.98154,-5.69668 -3.59942,-4.75705 -7.82301,-10.79108 -7.82301,-11.17634 0,-0.13071 1.94992,-1.87005 4.33315,-3.86519 2.38323,-1.99515 4.33315,-3.74224 4.33315,-3.88242 0,-0.44894 -1.15168,-0.27985 -5.91569,0.86854 -2.5632,0.61788 -4.78865,1.12341 -4.94545,1.12341 -0.36863,0 -1.25664,-2.83451 -1.65918,-5.29607 -1.04645,-6.39927 0.32783,-11.18362 4.34556,-15.12833 3.47661,-3.41343 7.42987,-4.83537 12.57517,-4.52316 2.85189,0.17305 5.49015,1.16878 8.51818,3.21491 l 1.524,1.02982 6.2e-4,10.77153 c 5.2e-4,8.97479 -0.078,10.87546 -0.47063,11.39458 -0.60588,0.80105 -0.60931,1.10451 -0.0125,1.10451 0.41861,0 0.47804,2.01818 0.47022,15.96847 l -0.009,15.96846 -1.51338,1.01045 c -4.15352,2.77321 -7.72145,3.89666 -13.10254,4.12566 l -4.13857,0.17613 z"
id="path337" />
<path
style="fill:none;fill-opacity:1;stroke:#6f759c;stroke-width:2.8143;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 650.23922,658.03583 c 0.78454,-2.08994 0.94014,-3.55878 0.58258,-5.49931 -0.52567,-2.85295 -1.15421,-4.16813 -2.86714,-5.9994 -2.77978,-2.97181 -6.42434,-4.10745 -13.18184,-4.10745 -4.7815,0 -13.92867,-0.60066 -14.26887,-0.93698 -0.14299,-0.14136 -0.33496,-2.62436 -0.42661,-5.51779 -0.0916,-2.89343 -0.22913,-5.4576 -0.30553,-5.69815 -0.27708,-0.87246 -1.01451,0.29354 -3.02725,4.78655 -1.10866,2.47485 -2.1397,4.57633 -2.29119,4.66996 -0.41351,0.25556 -4.99413,-1.81116 -7.07402,-3.19171 -5.06403,-3.36131 -7.60517,-8.40679 -7.22393,-14.34321 0.37774,-5.88193 3.51695,-10.64434 8.74261,-13.26318 3.47314,-1.74056 7.05236,-2.43922 12.53927,-2.44764 l 4.52507,-0.007 1.14583,2.32706 c 1.25957,2.55804 2.15903,5.1817 3.41895,9.97286 0.4559,1.73369 0.97335,3.14216 1.14989,3.12993 0.20013,-0.0139 0.35359,-2.56001 0.4076,-6.76312 0.0476,-3.70749 0.20246,-6.74088 0.34404,-6.74088 0.79202,0 3.76099,1.27073 6.06973,2.59787 6.35025,3.65032 11.21505,8.40218 14.45776,14.12213 l 1.01745,1.79471 -4.08686,2.54937 c -2.24778,1.40215 -4.01464,2.68889 -3.92637,2.85941 0.19887,0.38422 1.74339,0.2722 6.27089,-0.45484 l 3.51882,-0.56505 0.24358,0.82546 c 0.13397,0.454 0.45838,2.1254 0.7209,3.71422 1.20726,7.30647 -0.0138,13.53464 -3.75001,19.12808 -1.88323,2.81933 -3.18337,4.27819 -2.72535,3.05805 z"
id="path556" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 184 KiB