Compare commits

...

10 Commits

201 changed files with 61627 additions and 13567 deletions

308
.gitignore vendored
View File

@ -1,58 +1,260 @@
# -*- mode: gitignore; -*- mat/
*~ figures/
\#*\# ltximg/
/.emacs.desktop slprj/
/.emacs.desktop.lock matlab/slprj/
*.elc *.slxc
auto-save-list
tramp
.\#*
# Org-mode
.org-id-locations
*_archive
# flymake-mode # ============================================================
*_flymake.* # ============================================================
# LATEX
# ============================================================
# ============================================================
# eshell files ## Core latex/pdflatex auxiliary files:
/eshell/history
/eshell/lastdir
# elpa packages
/elpa/
# reftex files
*.rel
# AUCTeX auto folder
/auto/
# cask packages
.cask/
dist/
# Flycheck
flycheck_*.el
# server auth directory
/server/
# projectiles files
.projectile
# directory configuration
.dir-locals.el
# network security
/network-security.data
# bibtex
*.aux *.aux
*.bbl *.lof
*.blg *.log
*.lot
*.fls
*.out
*.toc
*.fmt
*.fot
*.cb
*.cb2
.*.lb
# Simulink ## Intermediate documents:
*.autosave *.dvi
*.original *.xdv
slprj/ *-converted-to.*
# these rules might exclude image files for figures etc.
# *.ps
# *.eps
# *.pdf
## Generated if empty string is given at "Please type another file name for output:"
.pdf
## Bibliography auxiliary files (bibtex/biblatex/biber):
*.bbl
*.bcf
*.blg
*-blx.aux
*-blx.bib
*.run.xml
## Build tool auxiliary files:
*.fdb_latexmk
*.synctex
*.synctex(busy)
*.synctex.gz
*.synctex.gz(busy)
*.pdfsync
## Build tool directories for auxiliary files
# latexrun
latex.out/
## Auxiliary and intermediate files from other packages:
# algorithms
*.alg
*.loa
# achemso
acs-*.bib
# amsthm
*.thm
# beamer
*.nav
*.pre
*.snm
*.vrb
# changes
*.soc
# cprotect
*.cpt
# elsarticle (documentclass of Elsevier journals)
*.spl
# endnotes
*.ent
# fixme
*.lox
# feynmf/feynmp
*.mf
*.mp
*.t[1-9]
*.t[1-9][0-9]
*.tfm
#(r)(e)ledmac/(r)(e)ledpar
*.end
*.?end
*.[1-9]
*.[1-9][0-9]
*.[1-9][0-9][0-9]
*.[1-9]R
*.[1-9][0-9]R
*.[1-9][0-9][0-9]R
*.eledsec[1-9]
*.eledsec[1-9]R
*.eledsec[1-9][0-9]
*.eledsec[1-9][0-9]R
*.eledsec[1-9][0-9][0-9]
*.eledsec[1-9][0-9][0-9]R
# glossaries
*.acn
*.acr
*.glg
*.glo
*.gls
*.glsdefs
# gnuplottex
*-gnuplottex-*
# gregoriotex
*.gaux
*.gtex
# htlatex
*.4ct
*.4tc
*.idv
*.lg
*.trc
*.xref
# hyperref
*.brf
# knitr
*-concordance.tex
# TODO Comment the next line if you want to keep your tikz graphics files
*.tikz
*-tikzDictionary
# listings
*.lol
# makeidx
*.idx
*.ilg
*.ind
*.ist
# minitoc
*.maf
*.mlf
*.mlt
*.mtc[0-9]*
*.slf[0-9]*
*.slt[0-9]*
*.stc[0-9]*
# minted
_minted*
*.pyg
# morewrites
*.mw
# nomencl
*.nlg
*.nlo
*.nls
# pax
*.pax
# pdfpcnotes
*.pdfpc
# sagetex
*.sagetex.sage
*.sagetex.py
*.sagetex.scmd
# scrwfile
*.wrt
# sympy
*.sout
*.sympy
sympy-plots-for-*.tex/
# pdfcomment
*.upa
*.upb
# pythontex
*.pytxcode
pythontex-files-*/
# thmtools
*.loe
# TikZ & PGF
*.dpth
*.md5
*.auxlock
# todonotes
*.tdo
# easy-todo
*.lod
# xmpincl
*.xmpi
# xindy
*.xdy
# xypic precompiled matrices
*.xyc
# endfloat
*.ttt
*.fff
# Latexian
TSWLatexianTemp*
## Editors:
# WinEdt
*.bak
*.sav
# Texpad
.texpadtmp
# LyX
*.lyx~
# Kile
*.backup
# KBibTeX
*~[0-9]*
# auto folder when using emacs and auctex
./auto/*
*.el
# expex forward references with \gathertags
*-tags.tex
# standalone packages
*.sta

111
.latexmkrc Normal file
View File

@ -0,0 +1,111 @@
#!/bin/env perl
# Shebang is only to get syntax highlighting right across GitLab, GitHub and IDEs.
# This file is not meant to be run, but read by `latexmk`.
# ======================================================================================
# Perl `latexmk` configuration file
# ======================================================================================
# ======================================================================================
# PDF Generation/Building/Compilation
# ======================================================================================
@default_files=('nass-rotating-3dof-model.tex');
# PDF-generating modes are:
# 1: pdflatex, as specified by $pdflatex variable (still largely in use)
# 2: postscript conversion, as specified by the $ps2pdf variable (useless)
# 3: dvi conversion, as specified by the $dvipdf variable (useless)
# 4: lualatex, as specified by the $lualatex variable (best)
# 5: xelatex, as specified by the $xelatex variable (second best)
$pdf_mode = 1;
# Treat undefined references and citations as well as multiply defined references as
# ERRORS instead of WARNINGS.
# This is only checked in the *last* run, since naturally, there are undefined references
# in initial runs.
# This setting is potentially annoying when debugging/editing, but highly desirable
# in the CI pipeline, where such a warning should result in a failed pipeline, since the
# final document is incomplete/corrupted.
#
# However, I could not eradicate all warnings, so that `latexmk` currently fails with
# this option enabled.
# Specifically, `microtype` fails together with `fontawesome`/`fontawesome5`, see:
# https://tex.stackexchange.com/a/547514/120853
# The fix in that answer did not help.
# Setting `verbose=silent` to mute `microtype` warnings did not work.
# Switching between `fontawesome` and `fontawesome5` did not help.
$warnings_as_errors = 0;
# Show used CPU time. Looks like: https://tex.stackexchange.com/a/312224/120853
$show_time = 1;
# Default is 5; we seem to need more owed to the complexity of the document.
# Actual documents probably don't need this many since they won't use all features,
# plus won't be compiling from cold each time.
$max_repeat=7;
# --shell-escape option (execution of code outside of latex) is required for the
#'svg' package.
# It converts raw SVG files to the PDF+PDF_TEX combo using InkScape.
#
# SyncTeX allows to jump between source (code) and output (PDF) in IDEs with support
# (many have it). A value of `1` is enabled (gzipped), `-1` is enabled but uncompressed,
# `0` is off.
# Testing in VSCode w/ LaTeX Workshop only worked for the compressed version.
# Adjust this as needed. Of course, only relevant for local use, no effect on a remote
# CI pipeline (except for slower compilation, probably).
#
# %O and %S will forward Options and the Source file, respectively, given to latexmk.
#
# `set_tex_cmds` applies to all *latex commands (latex, xelatex, lualatex, ...), so
# no need to specify these each. This allows to simply change `$pdf_mode` to get a
# different engine. Check if this works with `latexmk --commands`.
set_tex_cmds("--shell-escape -interaction=nonstopmode --synctex=1 %O %S");
# Use default pdf viewer
$pdf_previewer = 'zathura';
# option 2 is same as 1 (run biber when necessary), but also deletes the
# regeneratable bbl-file in a clenaup (`latexmk -c`). Do not use if original
# bib file is not available!
$bibtex_use = 2; # default: 1
# Change default `biber` call, help catch errors faster/clearer. See
# https://web.archive.org/web/20200526101657/https://www.semipol.de/2018/06/12/latex-best-practices.html#database-entries
$biber = "biber --validate-datamodel %O %S";
# Glossaries
add_cus_dep('glo', 'gls', 0, 'run_makeglossaries');
add_cus_dep('acn', 'acr', 0, 'run_makeglossaries');
sub run_makeglossaries {
if ( $silent ) {
system "makeglossaries -q -s '$_[0].ist' '$_[0]'";
}
else {
system "makeglossaries -s '$_[0].ist' '$_[0]'";
};
}
# ======================================================================================
# Auxiliary Files
# ======================================================================================
# Let latexmk know about generated files, so they can be used to detect if a
# rerun is required, or be deleted in a cleanup.
# loe: List of Examples (KOMAScript)
# lol: List of Listings (`listings` and `minted` packages)
# run.xml: biber runs
# glg: glossaries log
# glstex: generated from glossaries-extra
push @generated_exts, 'loe', 'lol', 'run.xml', 'glstex', 'glo', 'gls', 'glg', 'acn', 'acr', 'alg';
# Also delete the *.glstex files from package glossaries-extra. Problem is,
# that that package generates files of the form "basename-digit.glstex" if
# multiple glossaries are present. Latexmk looks for "basename.glstex" and so
# does not find those. For that purpose, use wildcard.
# Also delete files generated by gnuplot/pgfplots contour plots
# (.dat, .script, .table).
$clean_ext = "%R-*.glstex %R_contourtmp*.*";

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 406 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 296 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 319 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 272 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 311 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 208 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 103 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 395 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 383 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 111 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 388 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 200 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

View File

@ -1,974 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="311pt" height="212pt" viewBox="0 0 311 212" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M -6.46875 -3.546875 L -6.46875 -5.9375 L -7.296875 -5.9375 L -7.296875 -0.203125 L -6.46875 -0.203125 L -6.46875 -2.609375 L 0 -2.609375 L 0 -3.546875 Z M -6.46875 -3.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M -5.390625 -2.71875 C -5.390625 -1.234375 -4.34375 -0.359375 -2.578125 -0.359375 C -0.8125 -0.359375 0.234375 -1.234375 0.234375 -2.734375 C 0.234375 -4.21875 -0.8125 -5.109375 -2.546875 -5.109375 C -4.359375 -5.109375 -5.390625 -4.25 -5.390625 -2.71875 Z M -4.625 -2.734375 C -4.625 -3.671875 -3.84375 -4.234375 -2.546875 -4.234375 C -1.3125 -4.234375 -0.546875 -3.65625 -0.546875 -2.734375 C -0.546875 -1.796875 -1.3125 -1.234375 -2.578125 -1.234375 C -3.84375 -1.234375 -4.625 -1.796875 -4.625 -2.734375 Z M -4.625 -2.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M -1.046875 -2.140625 L -1.046875 -1.109375 L 0 -1.109375 L 0 -2.140625 Z M -5.234375 -2.140625 L -5.234375 -1.109375 L -4.203125 -1.109375 L -4.203125 -2.140625 Z M -5.234375 -2.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 0 -0.890625 L 0 -3.703125 C 0 -5.546875 -1.375 -6.6875 -3.65625 -6.6875 C -5.90625 -6.6875 -7.296875 -5.5625 -7.296875 -3.703125 L -7.296875 -0.890625 Z M -0.8125 -1.828125 L -6.46875 -1.828125 L -6.46875 -3.546875 C -6.46875 -4.984375 -5.5 -5.75 -3.640625 -5.75 C -1.796875 -5.75 -0.8125 -4.984375 -0.8125 -3.546875 Z M -0.8125 -1.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 0 -4.828125 L -5.234375 -4.828125 L -5.234375 -4 L -2.265625 -4 C -1.203125 -4 -0.5 -3.4375 -0.5 -2.5625 C -0.5 -1.90625 -0.90625 -1.484375 -1.53125 -1.484375 L -5.234375 -1.484375 L -5.234375 -0.65625 L -1.203125 -0.65625 C -0.328125 -0.65625 0.234375 -1.296875 0.234375 -2.328125 C 0.234375 -3.09375 -0.046875 -3.578125 -0.734375 -4.078125 L 0 -4.078125 Z M 0 -4.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 0 -2.859375 L -5.234375 -4.875 L -5.234375 -3.921875 L -0.984375 -2.4375 L -5.234375 -1.046875 L -5.234375 -0.09375 L 0 -1.9375 Z M 0 -2.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 1.828125 -3.328125 L 5.3125 -3.328125 L 5.3125 -4.140625 L 1.828125 -4.140625 L 1.828125 -6.484375 L 5.796875 -6.484375 L 5.796875 -7.296875 L 0.90625 -7.296875 L 0.90625 0 L 1.828125 0 Z M 1.828125 -3.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 0.6875 -5.25 L 0.6875 0 L 1.53125 0 L 1.53125 -2.71875 C 1.546875 -3.984375 2.0625 -4.546875 3.203125 -4.515625 L 3.203125 -5.375 C 3.0625 -5.390625 2.984375 -5.40625 2.890625 -5.40625 C 2.34375 -5.40625 1.9375 -5.078125 1.453125 -4.296875 L 1.453125 -5.25 Z M 0.6875 -5.25 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 2.71875 -5.40625 C 1.234375 -5.40625 0.359375 -4.34375 0.359375 -2.578125 C 0.359375 -0.8125 1.234375 0.234375 2.734375 0.234375 C 4.203125 0.234375 5.09375 -0.828125 5.09375 -2.546875 C 5.09375 -4.359375 4.234375 -5.40625 2.71875 -5.40625 Z M 2.734375 -4.625 C 3.671875 -4.625 4.234375 -3.859375 4.234375 -2.546875 C 4.234375 -1.3125 3.65625 -0.546875 2.734375 -0.546875 C 1.796875 -0.546875 1.234375 -1.3125 1.234375 -2.578125 C 1.234375 -3.859375 1.796875 -4.625 2.734375 -4.625 Z M 2.734375 -4.625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 0.703125 -5.25 L 0.703125 0 L 1.546875 0 L 1.546875 -3.296875 C 1.546875 -4.0625 2.09375 -4.671875 2.765625 -4.671875 C 3.390625 -4.671875 3.734375 -4.28125 3.734375 -3.609375 L 3.734375 0 L 4.578125 0 L 4.578125 -3.296875 C 4.578125 -4.0625 5.125 -4.671875 5.8125 -4.671875 C 6.421875 -4.671875 6.78125 -4.28125 6.78125 -3.609375 L 6.78125 0 L 7.625 0 L 7.625 -3.9375 C 7.625 -4.875 7.078125 -5.40625 6.09375 -5.40625 C 5.40625 -5.40625 4.984375 -5.1875 4.484375 -4.59375 C 4.1875 -5.15625 3.765625 -5.40625 3.078125 -5.40625 C 2.375 -5.40625 1.90625 -5.140625 1.46875 -4.5 L 1.46875 -5.25 Z M 0.703125 -5.25 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 2.140625 -1.046875 L 1.09375 -1.046875 L 1.09375 0 L 2.140625 0 Z M 2.140625 -5.25 L 1.09375 -5.25 L 1.09375 -4.203125 L 2.140625 -4.203125 Z M 2.140625 -5.25 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 4.8125 0 L 4.8125 -5.25 L 3.984375 -5.25 L 3.984375 -2.28125 C 3.984375 -1.203125 3.4375 -0.5 2.5625 -0.5 C 1.90625 -0.5 1.484375 -0.90625 1.484375 -1.53125 L 1.484375 -5.25 L 0.65625 -5.25 L 0.65625 -1.203125 C 0.65625 -0.328125 1.296875 0.234375 2.3125 0.234375 C 3.09375 0.234375 3.578125 -0.046875 4.0625 -0.734375 L 4.0625 0 Z M 4.8125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 2.84375 0 L 4.859375 -5.25 L 3.921875 -5.25 L 2.4375 -0.984375 L 1.046875 -5.25 L 0.09375 -5.25 L 1.9375 0 Z M 2.84375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 0.90625 0 L 4.515625 0 C 5.4375 0 6.046875 -0.171875 6.53125 -0.578125 C 7.015625 -0.984375 7.328125 -1.65625 7.328125 -2.3125 C 7.328125 -3.109375 6.90625 -3.734375 6 -4.265625 C 6.78125 -4.765625 7.09375 -5.234375 7.09375 -5.921875 C 7.09375 -6.484375 6.8125 -7.046875 6.375 -7.453125 C 5.890625 -7.859375 5.328125 -8.03125 4.484375 -8.03125 L 0.90625 -8.03125 Z M 2.546875 -6.65625 L 4.34375 -6.65625 C 5.109375 -6.65625 5.515625 -6.34375 5.515625 -5.75 C 5.515625 -5.140625 5.109375 -4.828125 4.34375 -4.828125 L 2.546875 -4.828125 Z M 2.546875 -3.453125 L 4.515625 -3.453125 C 5.328125 -3.453125 5.734375 -3.109375 5.734375 -2.40625 C 5.734375 -1.734375 5.328125 -1.375 4.515625 -1.375 L 2.546875 -1.375 Z M 2.546875 -3.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.3125 -6.046875 C 1.5 -6.046875 0.390625 -4.84375 0.390625 -2.890625 C 0.390625 -0.9375 1.5 0.25 3.328125 0.25 C 5.140625 0.25 6.265625 -0.9375 6.265625 -2.859375 C 6.265625 -4.875 5.171875 -6.046875 3.3125 -6.046875 Z M 3.328125 -4.796875 C 4.171875 -4.796875 4.71875 -4.046875 4.71875 -2.875 C 4.71875 -1.765625 4.140625 -0.984375 3.328125 -0.984375 C 2.484375 -0.984375 1.921875 -1.75 1.921875 -2.890625 C 1.921875 -4.046875 2.484375 -4.796875 3.328125 -4.796875 Z M 3.328125 -4.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 4.453125 0 L 6 0 L 6 -8.03125 L 4.453125 -8.03125 L 4.453125 -5.171875 C 4.0625 -5.765625 3.5625 -6.046875 2.8125 -6.046875 C 1.390625 -6.046875 0.3125 -4.6875 0.3125 -2.890625 C 0.3125 -2.078125 0.5625 -1.265625 0.953125 -0.6875 C 1.359375 -0.109375 2.09375 0.25 2.8125 0.25 C 3.5625 0.25 4.0625 -0.015625 4.453125 -0.609375 Z M 3.15625 -4.765625 C 3.9375 -4.765625 4.453125 -4.015625 4.453125 -2.859375 C 4.453125 -1.78125 3.921875 -1.03125 3.15625 -1.03125 C 2.390625 -1.03125 1.859375 -1.796875 1.859375 -2.890625 C 1.859375 -4 2.390625 -4.765625 3.15625 -4.765625 Z M 3.15625 -4.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 5.765625 -2.484375 C 5.78125 -2.625 5.78125 -2.671875 5.78125 -2.75 C 5.78125 -3.34375 5.6875 -3.90625 5.546875 -4.3125 C 5.140625 -5.390625 4.1875 -6.046875 2.984375 -6.046875 C 1.28125 -6.046875 0.234375 -4.8125 0.234375 -2.8125 C 0.234375 -0.921875 1.28125 0.25 2.953125 0.25 C 4.296875 0.25 5.375 -0.5 5.703125 -1.671875 L 4.1875 -1.671875 C 4 -1.203125 3.578125 -0.921875 3.015625 -0.921875 C 2.578125 -0.921875 2.21875 -1.109375 2 -1.4375 C 1.859375 -1.65625 1.796875 -1.921875 1.78125 -2.484375 Z M 1.796875 -3.515625 C 1.90625 -4.421875 2.28125 -4.875 2.96875 -4.875 C 3.671875 -4.875 4.09375 -4.390625 4.171875 -3.515625 Z M 1.796875 -3.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 0.84375 0 L 3.984375 0 C 5.203125 0 5.96875 -0.28125 6.515625 -0.9375 C 7.15625 -1.6875 7.484375 -2.765625 7.484375 -4.015625 C 7.484375 -5.265625 7.15625 -6.34375 6.515625 -7.109375 C 5.96875 -7.75 5.21875 -8.03125 3.984375 -8.03125 L 0.84375 -8.03125 Z M 2.5 -1.375 L 2.5 -6.65625 L 3.984375 -6.65625 C 5.21875 -6.65625 5.84375 -5.78125 5.84375 -4.015625 C 5.84375 -2.25 5.21875 -1.375 3.984375 -1.375 Z M 2.5 -1.375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 2.28125 -5.953125 L 0.734375 -5.953125 L 0.734375 0 L 2.28125 0 Z M 2.28125 -8.03125 L 0.734375 -8.03125 L 0.734375 -6.65625 L 2.28125 -6.65625 Z M 2.28125 -8.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 5.765625 -0.1875 C 5.5 -0.4375 5.40625 -0.609375 5.40625 -0.921875 L 5.40625 -4.21875 C 5.40625 -5.4375 4.59375 -6.046875 2.984375 -6.046875 C 1.375 -6.046875 0.53125 -5.359375 0.4375 -3.984375 L 1.921875 -3.984375 C 2 -4.609375 2.25 -4.796875 3.015625 -4.796875 C 3.609375 -4.796875 3.90625 -4.609375 3.90625 -4.203125 C 3.90625 -4.015625 3.8125 -3.84375 3.640625 -3.75 C 3.4375 -3.640625 3.4375 -3.640625 2.671875 -3.515625 L 2.0625 -3.40625 C 0.875 -3.203125 0.3125 -2.59375 0.3125 -1.53125 C 0.3125 -0.46875 1.015625 0.25 2.109375 0.25 C 2.765625 0.25 3.359375 -0.015625 3.921875 -0.59375 C 3.921875 -0.28125 3.953125 -0.171875 4.09375 0 L 5.765625 0 Z M 3.90625 -2.390625 C 3.90625 -1.5 3.46875 -0.984375 2.6875 -0.984375 C 2.171875 -0.984375 1.84375 -1.265625 1.84375 -1.703125 C 1.84375 -2.171875 2.09375 -2.390625 2.734375 -2.515625 L 3.25 -2.625 C 3.65625 -2.703125 3.734375 -2.71875 3.90625 -2.8125 Z M 3.90625 -2.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-9">
<path style="stroke:none;" d="M 4.40625 -5.953125 L 4.40625 -5.03125 C 3.96875 -5.734375 3.5 -6.046875 2.875 -6.046875 C 2.34375 -6.046875 1.765625 -5.78125 1.359375 -5.359375 C 0.765625 -4.734375 0.453125 -3.875 0.453125 -2.828125 C 0.453125 -1 1.421875 0.25 2.84375 0.25 C 3.46875 0.25 3.859375 0.046875 4.40625 -0.609375 L 4.40625 0.203125 C 4.40625 0.921875 3.890625 1.40625 3.171875 1.40625 C 2.625 1.40625 2.28125 1.171875 2.15625 0.71875 L 0.578125 0.71875 C 0.578125 1.171875 0.75 1.5 1.15625 1.828125 C 1.625 2.21875 2.28125 2.40625 3.109375 2.40625 C 4.828125 2.40625 5.859375 1.578125 5.859375 0.203125 L 5.859375 -5.953125 Z M 3.15625 -4.765625 C 3.890625 -4.765625 4.421875 -3.953125 4.421875 -2.859375 C 4.421875 -1.78125 3.90625 -1.03125 3.140625 -1.03125 C 2.46875 -1.03125 1.984375 -1.78125 1.984375 -2.859375 C 1.984375 -3.984375 2.46875 -4.765625 3.15625 -4.765625 Z M 3.15625 -4.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-10">
<path style="stroke:none;" d="M 0.6875 -5.953125 L 0.6875 0 L 2.234375 0 L 2.234375 -3.15625 C 2.234375 -4.0625 2.6875 -4.515625 3.59375 -4.515625 C 3.75 -4.515625 3.859375 -4.5 4.0625 -4.46875 L 4.0625 -6.03125 C 3.984375 -6.046875 3.953125 -6.046875 3.890625 -6.046875 C 3.171875 -6.046875 2.578125 -5.578125 2.234375 -4.78125 L 2.234375 -5.953125 Z M 0.6875 -5.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-11">
<path style="stroke:none;" d="M 0.65625 -5.953125 L 0.65625 0 L 2.203125 0 L 2.203125 -3.5625 C 2.203125 -4.3125 2.59375 -4.734375 3.25 -4.734375 C 3.765625 -4.734375 4.09375 -4.4375 4.09375 -3.96875 L 4.09375 0 L 5.625 0 L 5.625 -3.5625 C 5.625 -4.296875 6.03125 -4.734375 6.6875 -4.734375 C 7.203125 -4.734375 7.53125 -4.4375 7.53125 -3.96875 L 7.53125 0 L 9.0625 0 L 9.0625 -4.203125 C 9.0625 -5.359375 8.359375 -6.046875 7.171875 -6.046875 C 6.40625 -6.046875 5.890625 -5.78125 5.4375 -5.171875 C 5.140625 -5.734375 4.546875 -6.046875 3.8125 -6.046875 C 3.140625 -6.046875 2.6875 -5.828125 2.1875 -5.203125 L 2.1875 -5.953125 Z M 0.65625 -5.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 2.015625 -3.65625 L 5.84375 -3.65625 L 5.84375 -4.5625 L 2.015625 -4.5625 L 2.015625 -7.125 L 6.375 -7.125 L 6.375 -8.03125 L 0.984375 -8.03125 L 0.984375 0 L 2.015625 0 Z M 2.015625 -3.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 0.765625 -5.765625 L 0.765625 0 L 1.6875 0 L 1.6875 -3 C 1.6875 -4.390625 2.265625 -5 3.53125 -4.96875 L 3.53125 -5.90625 C 3.375 -5.921875 3.28125 -5.9375 3.171875 -5.9375 C 2.578125 -5.9375 2.140625 -5.578125 1.609375 -4.71875 L 1.609375 -5.765625 Z M 0.765625 -5.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 5.640625 -2.578125 C 5.640625 -3.453125 5.578125 -3.984375 5.40625 -4.421875 C 5.03125 -5.359375 4.15625 -5.9375 3.078125 -5.9375 C 1.46875 -5.9375 0.4375 -4.71875 0.4375 -2.8125 C 0.4375 -0.90625 1.4375 0.25 3.0625 0.25 C 4.375 0.25 5.296875 -0.5 5.515625 -1.75 L 4.59375 -1.75 C 4.34375 -0.984375 3.828125 -0.59375 3.09375 -0.59375 C 2.515625 -0.59375 2.015625 -0.859375 1.703125 -1.34375 C 1.484375 -1.671875 1.40625 -2 1.390625 -2.578125 Z M 1.421875 -3.328125 C 1.5 -4.390625 2.140625 -5.09375 3.0625 -5.09375 C 4 -5.09375 4.65625 -4.359375 4.65625 -3.328125 Z M 1.421875 -3.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 5.4375 2.40625 L 5.4375 -5.765625 L 4.625 -5.765625 L 4.625 -5 C 4.203125 -5.609375 3.546875 -5.9375 2.796875 -5.9375 C 1.28125 -5.9375 0.28125 -4.6875 0.28125 -2.78125 C 0.28125 -0.90625 1.21875 0.25 2.75 0.25 C 3.546875 0.25 4.109375 -0.03125 4.53125 -0.65625 L 4.53125 2.40625 Z M 2.921875 -5.078125 C 3.90625 -5.078125 4.53125 -4.203125 4.53125 -2.8125 C 4.53125 -1.484375 3.890625 -0.609375 2.921875 -0.609375 C 1.90625 -0.609375 1.25 -1.5 1.25 -2.84375 C 1.25 -4.1875 1.90625 -5.078125 2.921875 -5.078125 Z M 2.921875 -5.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -5.765625 L 4.390625 -5.765625 L 4.390625 -2.5 C 4.390625 -1.328125 3.765625 -0.546875 2.8125 -0.546875 C 2.09375 -0.546875 1.625 -0.984375 1.625 -1.6875 L 1.625 -5.765625 L 0.71875 -5.765625 L 0.71875 -1.328125 C 0.71875 -0.359375 1.4375 0.25 2.546875 0.25 C 3.40625 0.25 3.9375 -0.046875 4.484375 -0.796875 L 4.484375 0 Z M 5.296875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 0.765625 -5.765625 L 0.765625 0 L 1.6875 0 L 1.6875 -3.1875 C 1.6875 -4.359375 2.3125 -5.140625 3.25 -5.140625 C 3.984375 -5.140625 4.4375 -4.6875 4.4375 -4 L 4.4375 0 L 5.359375 0 L 5.359375 -4.359375 C 5.359375 -5.328125 4.640625 -5.9375 3.53125 -5.9375 C 2.671875 -5.9375 2.125 -5.609375 1.609375 -4.796875 L 1.609375 -5.765625 Z M 0.765625 -5.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 5.1875 -3.828125 C 5.140625 -4.390625 5.015625 -4.765625 4.796875 -5.078125 C 4.40625 -5.625 3.703125 -5.9375 2.90625 -5.9375 C 1.34375 -5.9375 0.34375 -4.703125 0.34375 -2.78125 C 0.34375 -0.921875 1.328125 0.25 2.890625 0.25 C 4.265625 0.25 5.140625 -0.578125 5.25 -1.984375 L 4.328125 -1.984375 C 4.171875 -1.0625 3.703125 -0.59375 2.921875 -0.59375 C 1.90625 -0.59375 1.296875 -1.421875 1.296875 -2.78125 C 1.296875 -4.234375 1.890625 -5.09375 2.890625 -5.09375 C 3.65625 -5.09375 4.140625 -4.640625 4.25 -3.828125 Z M 5.1875 -3.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 4.265625 -5.765625 L 2.671875 -1.28125 L 1.203125 -5.765625 L 0.21875 -5.765625 L 2.171875 0.015625 L 1.8125 0.9375 C 1.65625 1.34375 1.46875 1.5 1.078125 1.5 C 0.921875 1.5 0.796875 1.46875 0.59375 1.4375 L 0.59375 2.265625 C 0.78125 2.359375 0.96875 2.40625 1.203125 2.40625 C 1.5 2.40625 1.828125 2.296875 2.0625 2.125 C 2.359375 1.921875 2.515625 1.671875 2.6875 1.21875 L 5.265625 -5.765625 Z M 4.265625 -5.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 2.59375 -8.03125 C 1.5 -6.59375 0.796875 -4.578125 0.796875 -2.859375 C 0.796875 -1.109375 1.5 0.890625 2.59375 2.328125 L 3.203125 2.328125 C 2.234375 0.765625 1.6875 -1.09375 1.6875 -2.859375 C 1.6875 -4.609375 2.234375 -6.46875 3.203125 -8.03125 Z M 2.59375 -8.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 5.890625 -0.546875 C 5.78125 -0.515625 5.734375 -0.515625 5.6875 -0.515625 C 5.375 -0.515625 5.1875 -0.6875 5.1875 -0.96875 L 5.1875 -4.359375 C 5.1875 -5.390625 4.4375 -5.9375 3.03125 -5.9375 C 2.171875 -5.9375 1.5 -5.6875 1.109375 -5.265625 C 0.84375 -4.96875 0.734375 -4.640625 0.71875 -4.0625 L 1.640625 -4.0625 C 1.71875 -4.765625 2.140625 -5.09375 2.984375 -5.09375 C 3.828125 -5.09375 4.28125 -4.78125 4.28125 -4.234375 L 4.28125 -3.984375 C 4.265625 -3.59375 4.0625 -3.453125 3.328125 -3.34375 C 2.03125 -3.1875 1.828125 -3.140625 1.46875 -3 C 0.796875 -2.703125 0.46875 -2.203125 0.46875 -1.453125 C 0.46875 -0.40625 1.1875 0.25 2.359375 0.25 C 3.078125 0.25 3.65625 0 4.3125 -0.59375 C 4.375 0 4.65625 0.25 5.265625 0.25 C 5.453125 0.25 5.578125 0.234375 5.890625 0.15625 Z M 4.28125 -1.8125 C 4.28125 -1.515625 4.1875 -1.328125 3.921875 -1.0625 C 3.546875 -0.734375 3.09375 -0.546875 2.546875 -0.546875 C 1.84375 -0.546875 1.421875 -0.890625 1.421875 -1.46875 C 1.421875 -2.078125 1.8125 -2.390625 2.8125 -2.53125 C 3.78125 -2.671875 3.96875 -2.703125 4.28125 -2.859375 Z M 4.28125 -1.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 5.4375 -8.03125 L 4.53125 -8.03125 L 4.53125 -5.046875 C 4.140625 -5.625 3.53125 -5.9375 2.765625 -5.9375 C 1.265625 -5.9375 0.28125 -4.734375 0.28125 -2.890625 C 0.28125 -0.953125 1.234375 0.25 2.796875 0.25 C 3.59375 0.25 4.140625 -0.046875 4.625 -0.765625 L 4.625 0 L 5.4375 0 Z M 2.921875 -5.078125 C 3.90625 -5.078125 4.53125 -4.203125 4.53125 -2.8125 C 4.53125 -1.484375 3.890625 -0.609375 2.921875 -0.609375 C 1.90625 -0.609375 1.25 -1.5 1.25 -2.84375 C 1.25 -4.1875 1.90625 -5.078125 2.921875 -5.078125 Z M 2.921875 -5.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-13">
<path style="stroke:none;" d="M 2.515625 -8.03125 L -0.09375 0.21875 L 0.515625 0.21875 L 3.125 -8.03125 Z M 2.515625 -8.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-14">
<path style="stroke:none;" d="M 4.8125 -4.15625 C 4.8125 -5.296875 4.0625 -5.9375 2.734375 -5.9375 C 1.390625 -5.9375 0.515625 -5.25 0.515625 -4.171875 C 0.515625 -3.265625 0.984375 -2.84375 2.34375 -2.515625 L 3.203125 -2.296875 C 3.84375 -2.140625 4.09375 -1.921875 4.09375 -1.515625 C 4.09375 -0.953125 3.546875 -0.59375 2.75 -0.59375 C 2.25 -0.59375 1.84375 -0.734375 1.609375 -0.984375 C 1.46875 -1.140625 1.390625 -1.3125 1.34375 -1.71875 L 0.375 -1.71875 C 0.421875 -0.390625 1.171875 0.25 2.671875 0.25 C 4.125 0.25 5.046875 -0.46875 5.046875 -1.578125 C 5.046875 -2.4375 4.5625 -2.90625 3.421875 -3.1875 L 2.546875 -3.390625 C 1.796875 -3.5625 1.46875 -3.8125 1.46875 -4.21875 C 1.46875 -4.765625 1.953125 -5.09375 2.6875 -5.09375 C 3.4375 -5.09375 3.828125 -4.765625 3.84375 -4.15625 Z M 4.8125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-15">
<path style="stroke:none;" d="M 1.015625 2.328125 C 2.125 0.890625 2.8125 -1.109375 2.8125 -2.84375 C 2.8125 -4.578125 2.125 -6.59375 1.015625 -8.03125 L 0.421875 -8.03125 C 1.390625 -6.453125 1.921875 -4.609375 1.921875 -2.84375 C 1.921875 -1.09375 1.390625 0.765625 0.421875 2.328125 Z M 1.015625 2.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 0 -5.15625 L -6.71875 -7.40625 L 0 -7.40625 L 0 -8.390625 L -8.015625 -8.390625 L -8.015625 -6.96875 L -1.03125 -4.625 L -8.015625 -2.25 L -8.015625 -0.828125 L 0 -0.828125 L 0 -1.796875 L -6.71875 -1.796875 L 0 -4.078125 Z M 0 -5.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M -0.53125 -5.890625 C -0.515625 -5.796875 -0.515625 -5.75 -0.515625 -5.6875 C -0.515625 -5.375 -0.6875 -5.203125 -0.96875 -5.203125 L -4.359375 -5.203125 C -5.375 -5.203125 -5.921875 -4.453125 -5.921875 -3.03125 C -5.921875 -2.1875 -5.6875 -1.515625 -5.265625 -1.109375 C -4.96875 -0.84375 -4.625 -0.734375 -4.0625 -0.71875 L -4.0625 -1.640625 C -4.765625 -1.71875 -5.078125 -2.140625 -5.078125 -3 C -5.078125 -3.828125 -4.78125 -4.28125 -4.21875 -4.28125 L -3.984375 -4.28125 C -3.59375 -4.28125 -3.4375 -4.078125 -3.34375 -3.328125 C -3.171875 -2.03125 -3.140625 -1.828125 -2.984375 -1.46875 C -2.703125 -0.796875 -2.203125 -0.46875 -1.453125 -0.46875 C -0.40625 -0.46875 0.25 -1.1875 0.25 -2.359375 C 0.25 -3.078125 0 -3.671875 -0.59375 -4.3125 C 0 -4.390625 0.25 -4.671875 0.25 -5.265625 C 0.25 -5.46875 0.234375 -5.578125 0.15625 -5.890625 Z M -1.8125 -4.28125 C -1.5 -4.28125 -1.3125 -4.203125 -1.0625 -3.921875 C -0.71875 -3.546875 -0.546875 -3.09375 -0.546875 -2.5625 C -0.546875 -1.84375 -0.890625 -1.421875 -1.46875 -1.421875 C -2.078125 -1.421875 -2.390625 -1.8125 -2.53125 -2.8125 C -2.65625 -3.796875 -2.703125 -3.984375 -2.84375 -4.28125 Z M -1.8125 -4.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M -5.765625 -4.453125 L -4.921875 -4.453125 C -5.625 -3.984375 -5.921875 -3.484375 -5.921875 -2.75 C -5.921875 -1.359375 -4.625 -0.390625 -2.78125 -0.390625 C -1.8125 -0.390625 -1.109375 -0.609375 -0.53125 -1.109375 C -0.015625 -1.546875 0.25 -2.09375 0.25 -2.6875 C 0.25 -3.375 -0.0625 -3.875 -0.78125 -4.359375 L -0.484375 -4.359375 C 1.0625 -4.359375 1.625 -3.9375 1.625 -2.78125 C 1.625 -2 1.3125 -1.59375 0.65625 -1.515625 L 0.65625 -0.578125 C 1.734375 -0.65625 2.390625 -1.515625 2.390625 -2.765625 C 2.390625 -3.609375 2.125 -4.3125 1.65625 -4.6875 C 1.125 -5.140625 0.40625 -5.296875 -0.953125 -5.296875 L -5.765625 -5.296875 Z M -5.078125 -2.84375 C -5.078125 -3.8125 -4.265625 -4.359375 -2.8125 -4.359375 C -1.40625 -4.359375 -0.59375 -3.796875 -0.59375 -2.84375 C -0.59375 -1.890625 -1.421875 -1.34375 -2.84375 -1.34375 C -4.25 -1.34375 -5.078125 -1.890625 -5.078125 -2.84375 Z M -5.078125 -2.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M -5.765625 -0.765625 L 0 -0.765625 L 0 -1.703125 L -3.171875 -1.703125 C -4.359375 -1.703125 -5.125 -2.3125 -5.125 -3.265625 C -5.125 -3.984375 -4.6875 -4.453125 -4 -4.453125 L 0 -4.453125 L 0 -5.359375 L -4.359375 -5.359375 C -5.3125 -5.359375 -5.921875 -4.65625 -5.921875 -3.53125 C -5.921875 -2.671875 -5.59375 -2.125 -4.796875 -1.625 L -5.765625 -1.625 Z M -5.765625 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-5">
<path style="stroke:none;" d="M -5.765625 -1.65625 L -5.765625 -0.734375 L 0 -0.734375 L 0 -1.65625 Z M -8.015625 -1.65625 L -8.015625 -0.734375 L -6.859375 -0.734375 L -6.859375 -1.65625 Z M -8.015625 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-6">
<path style="stroke:none;" d="M -5.765625 -2.796875 L -5.765625 -1.84375 L -7.34375 -1.84375 L -7.34375 -0.9375 L -5.765625 -0.9375 L -5.765625 -0.15625 L -5.015625 -0.15625 L -5.015625 -0.9375 L -0.65625 -0.9375 C -0.0625 -0.9375 0.25 -1.328125 0.25 -2.046875 C 0.25 -2.296875 0.234375 -2.484375 0.171875 -2.796875 L -0.59375 -2.796875 C -0.5625 -2.671875 -0.546875 -2.546875 -0.546875 -2.359375 C -0.546875 -1.953125 -0.65625 -1.84375 -1.0625 -1.84375 L -5.015625 -1.84375 L -5.015625 -2.796875 Z M -5.765625 -2.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-7">
<path style="stroke:none;" d="M 0 -5.3125 L -5.765625 -5.3125 L -5.765625 -4.390625 L -2.5 -4.390625 C -1.3125 -4.390625 -0.546875 -3.78125 -0.546875 -2.8125 C -0.546875 -2.09375 -0.984375 -1.625 -1.6875 -1.625 L -5.765625 -1.625 L -5.765625 -0.71875 L -1.3125 -0.71875 C -0.359375 -0.71875 0.25 -1.4375 0.25 -2.5625 C 0.25 -3.40625 -0.046875 -3.9375 -0.796875 -4.484375 L 0 -4.484375 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-8">
<path style="stroke:none;" d="M -8.015625 -5.453125 L -8.015625 -4.53125 L -5.03125 -4.53125 C -5.625 -4.15625 -5.921875 -3.53125 -5.921875 -2.765625 C -5.921875 -1.265625 -4.734375 -0.28125 -2.890625 -0.28125 C -0.953125 -0.28125 0.25 -1.234375 0.25 -2.796875 C 0.25 -3.59375 -0.046875 -4.140625 -0.765625 -4.640625 L 0 -4.640625 L 0 -5.453125 Z M -5.078125 -2.921875 C -5.078125 -3.90625 -4.203125 -4.53125 -2.8125 -4.53125 C -1.484375 -4.53125 -0.609375 -3.90625 -0.609375 -2.9375 C -0.609375 -1.921875 -1.5 -1.25 -2.84375 -1.25 C -4.1875 -1.25 -5.078125 -1.921875 -5.078125 -2.921875 Z M -5.078125 -2.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-9">
<path style="stroke:none;" d="M -2.578125 -5.65625 C -3.453125 -5.65625 -3.984375 -5.578125 -4.40625 -5.421875 C -5.359375 -5.046875 -5.921875 -4.15625 -5.921875 -3.078125 C -5.921875 -1.46875 -4.703125 -0.4375 -2.8125 -0.4375 C -0.90625 -0.4375 0.25 -1.4375 0.25 -3.0625 C 0.25 -4.390625 -0.5 -5.296875 -1.75 -5.53125 L -1.75 -4.609375 C -0.984375 -4.34375 -0.59375 -3.828125 -0.59375 -3.09375 C -0.59375 -2.515625 -0.859375 -2.015625 -1.34375 -1.703125 C -1.671875 -1.484375 -2 -1.40625 -2.578125 -1.40625 Z M -3.328125 -1.421875 C -4.390625 -1.5 -5.078125 -2.140625 -5.078125 -3.078125 C -5.078125 -4.015625 -4.359375 -4.65625 -3.328125 -4.65625 Z M -3.328125 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-10">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-11">
<path style="stroke:none;" d="M -8.015625 -2.59375 C -6.578125 -1.5 -4.578125 -0.796875 -2.84375 -0.796875 C -1.109375 -0.796875 0.890625 -1.5 2.328125 -2.59375 L 2.328125 -3.203125 C 0.765625 -2.234375 -1.09375 -1.703125 -2.84375 -1.703125 C -4.59375 -1.703125 -6.453125 -2.234375 -8.015625 -3.203125 Z M -8.015625 -2.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-12">
<path style="stroke:none;" d="M 0 -0.875 L 0 -4.5 C 0 -5.25 -0.203125 -5.8125 -0.671875 -6.25 C -1.09375 -6.640625 -1.65625 -6.859375 -2.28125 -6.859375 C -3.25 -6.859375 -3.84375 -6.421875 -4.234375 -5.390625 C -4.578125 -6.140625 -5.15625 -6.515625 -5.984375 -6.515625 C -6.578125 -6.515625 -7.078125 -6.296875 -7.453125 -5.875 C -7.84375 -5.4375 -8.015625 -4.90625 -8.015625 -4.125 L -8.015625 -0.875 Z M -4.5625 -1.890625 L -7.109375 -1.890625 L -7.109375 -3.875 C -7.109375 -4.453125 -7.046875 -4.765625 -6.828125 -5.046875 C -6.609375 -5.328125 -6.28125 -5.484375 -5.84375 -5.484375 C -5.40625 -5.484375 -5.078125 -5.328125 -4.84375 -5.046875 C -4.640625 -4.765625 -4.5625 -4.453125 -4.5625 -3.875 Z M -0.90625 -1.890625 L -3.65625 -1.890625 L -3.65625 -4.390625 C -3.65625 -5.296875 -3.140625 -5.84375 -2.28125 -5.84375 C -1.421875 -5.84375 -0.90625 -5.296875 -0.90625 -4.390625 Z M -0.90625 -1.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-13">
<path style="stroke:none;" d="M 2.328125 -1.03125 C 0.890625 -2.125 -1.109375 -2.8125 -2.84375 -2.8125 C -4.578125 -2.8125 -6.578125 -2.125 -8.015625 -1.03125 L -8.015625 -0.421875 C -6.453125 -1.390625 -4.59375 -1.921875 -2.84375 -1.921875 C -1.09375 -1.921875 0.765625 -1.390625 2.328125 -0.421875 Z M 2.328125 -1.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-14">
<path style="stroke:none;" d="M -5.765625 -2.375 L -5.765625 -1.21875 L -4.625 -1.21875 L -4.625 -2.375 Z M -1.140625 -1.21875 L 0 -1.21875 L 0 -1.875 L 0.203125 -1.875 C 0.953125 -1.875 1.171875 -1.734375 1.203125 -1.21875 L 1.609375 -1.21875 C 1.640625 -1.9375 1.109375 -2.375 0.171875 -2.375 L -1.140625 -2.375 Z M -1.140625 -1.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-15">
<path style="stroke:none;" d="M -3.40625 -2.03125 L -3.40625 -4.546875 C -3.40625 -5.171875 -3.59375 -5.671875 -3.96875 -6.109375 C -4.40625 -6.59375 -4.921875 -6.796875 -5.671875 -6.796875 C -7.171875 -6.796875 -8.015625 -5.90625 -8.015625 -4.3125 L -8.015625 -1 L 0 -1 L 0 -2.03125 Z M -4.296875 -2.03125 L -7.109375 -2.03125 L -7.109375 -4.15625 C -7.109375 -5.140625 -6.59375 -5.734375 -5.703125 -5.734375 C -4.828125 -5.734375 -4.296875 -5.140625 -4.296875 -4.15625 Z M -4.296875 -2.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-16">
<path style="stroke:none;" d="M -8.015625 -0.765625 L 0 -0.765625 L 0 -1.6875 L -3.171875 -1.6875 C -4.359375 -1.6875 -5.125 -2.296875 -5.125 -3.25 C -5.125 -3.5625 -5.03125 -3.84375 -4.875 -4.0625 C -4.671875 -4.328125 -4.40625 -4.4375 -4 -4.4375 L 0 -4.4375 L 0 -5.359375 L -4.359375 -5.359375 C -5.328125 -5.359375 -5.921875 -4.65625 -5.921875 -3.53125 C -5.921875 -2.71875 -5.671875 -2.21875 -4.96875 -1.6875 L -8.015625 -1.6875 Z M -8.015625 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-17">
<path style="stroke:none;" d="M -4.15625 -4.828125 C -5.296875 -4.8125 -5.921875 -4.0625 -5.921875 -2.734375 C -5.921875 -1.390625 -5.234375 -0.515625 -4.171875 -0.515625 C -3.265625 -0.515625 -2.84375 -0.984375 -2.515625 -2.34375 L -2.296875 -3.203125 C -2.140625 -3.84375 -1.90625 -4.09375 -1.5 -4.09375 C -0.953125 -4.09375 -0.59375 -3.5625 -0.59375 -2.75 C -0.59375 -2.265625 -0.734375 -1.84375 -0.984375 -1.609375 C -1.140625 -1.46875 -1.3125 -1.40625 -1.71875 -1.34375 L -1.71875 -0.375 C -0.390625 -0.421875 0.25 -1.171875 0.25 -2.671875 C 0.25 -4.125 -0.46875 -5.0625 -1.578125 -5.0625 C -2.4375 -5.0625 -2.90625 -4.578125 -3.171875 -3.421875 L -3.390625 -2.546875 C -3.5625 -1.796875 -3.8125 -1.46875 -4.21875 -1.46875 C -4.75 -1.46875 -5.078125 -1.953125 -5.078125 -2.703125 C -5.078125 -3.4375 -4.765625 -3.828125 -4.15625 -3.859375 Z M -4.15625 -4.828125 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 49.625 63.246094 L 173.375 63.246094 L 173.375 24.214844 L 49.625 24.214844 Z M 49.625 63.246094 "/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1486.884833 L 1734.513186 -1486.884833 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1877.025671 L 1734.513186 -1877.025671 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -1486.884833 L 909.150026 -1499.2622 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1486.884833 L 1734.513186 -1499.2622 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -1877.025671 L 909.150026 -1864.648305 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1877.025671 L 1734.513186 -1864.648305 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1486.884833 L 496.468446 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 620.702797 -1486.884833 L 620.702797 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 693.35195 -1486.884833 L 693.35195 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 744.937147 -1486.884833 L 744.937147 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 784.915675 -1486.884833 L 784.915675 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 817.5863 -1486.884833 L 817.5863 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 845.215645 -1486.884833 L 845.215645 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 869.171498 -1486.884833 L 869.171498 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 890.274533 -1486.884833 L 890.274533 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -1486.884833 L 909.150026 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1033.384377 -1486.884833 L 1033.384377 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1106.03353 -1486.884833 L 1106.03353 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1157.618727 -1486.884833 L 1157.618727 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.597255 -1486.884833 L 1197.597255 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1230.26788 -1486.884833 L 1230.26788 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1257.897225 -1486.884833 L 1257.897225 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1281.853078 -1486.884833 L 1281.853078 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1302.956113 -1486.884833 L 1302.956113 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1321.831606 -1486.884833 L 1321.831606 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1446.065957 -1486.884833 L 1446.065957 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1518.71511 -1486.884833 L 1518.71511 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1570.300307 -1486.884833 L 1570.300307 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1610.278835 -1486.884833 L 1610.278835 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1642.94946 -1486.884833 L 1642.94946 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1670.578805 -1486.884833 L 1670.578805 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1694.534658 -1486.884833 L 1694.534658 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1715.637693 -1486.884833 L 1715.637693 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1486.884833 L 1734.513186 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1877.025671 L 496.468446 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 620.702797 -1877.025671 L 620.702797 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 693.35195 -1877.025671 L 693.35195 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 744.937147 -1877.025671 L 744.937147 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 784.915675 -1877.025671 L 784.915675 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 817.5863 -1877.025671 L 817.5863 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 845.215645 -1877.025671 L 845.215645 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 869.171498 -1877.025671 L 869.171498 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 890.274533 -1877.025671 L 890.274533 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -1877.025671 L 909.150026 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1033.384377 -1877.025671 L 1033.384377 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1106.03353 -1877.025671 L 1106.03353 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1157.618727 -1877.025671 L 1157.618727 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.597255 -1877.025671 L 1197.597255 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1230.26788 -1877.025671 L 1230.26788 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1257.897225 -1877.025671 L 1257.897225 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1281.853078 -1877.025671 L 1281.853078 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1302.956113 -1877.025671 L 1302.956113 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1321.831606 -1877.025671 L 1321.831606 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1446.065957 -1877.025671 L 1446.065957 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1518.71511 -1877.025671 L 1518.71511 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1570.300307 -1877.025671 L 1570.300307 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1610.278835 -1877.025671 L 1610.278835 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1642.94946 -1877.025671 L 1642.94946 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1670.578805 -1877.025671 L 1670.578805 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1694.534658 -1877.025671 L 1694.534658 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1715.637693 -1877.025671 L 1715.637693 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1877.025671 L 1734.513186 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1486.884833 L 496.468446 -1877.025671 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1486.884833 L 1734.513186 -1877.025671 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1573.877806 L 508.856709 -1573.877806 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1725.451739 L 508.856709 -1725.451739 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1877.025671 L 508.856709 -1877.025671 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1573.877806 L 1722.124922 -1573.877806 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1725.451739 L 1722.124922 -1725.451739 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1877.025671 L 1722.124922 -1877.025671 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.402344 55.066406 L 27.402344 54.441406 L 30.085938 54.441406 L 30.085938 55.066406 L 27.402344 55.066406 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 31.5625 56.945312 L 31.5625 56.585938 C 32.40625 56.585938 32.828125 56.480469 32.828125 56.265625 L 32.828125 50.945312 C 32.480469 51.113281 32.039062 51.199219 31.503906 51.199219 L 31.503906 50.847656 C 32.332031 50.847656 32.957031 50.628906 33.378906 50.195312 L 33.519531 50.195312 C 33.542969 50.195312 33.566406 50.203125 33.585938 50.222656 C 33.609375 50.238281 33.621094 50.257812 33.621094 50.28125 L 33.621094 56.265625 C 33.621094 56.480469 34.042969 56.585938 34.886719 56.585938 L 34.886719 56.945312 L 31.5625 56.945312 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 38.15625 57.167969 C 37.328125 57.167969 36.765625 56.828125 36.46875 56.144531 C 36.171875 55.460938 36.023438 54.652344 36.023438 53.714844 C 36.023438 53.128906 36.078125 52.574219 36.183594 52.058594 C 36.289062 51.539062 36.5 51.097656 36.816406 50.738281 C 37.136719 50.375 37.582031 50.195312 38.15625 50.195312 C 38.601562 50.195312 38.964844 50.304688 39.25 50.519531 C 39.53125 50.738281 39.75 51.019531 39.898438 51.363281 C 40.046875 51.710938 40.148438 52.078125 40.203125 52.472656 C 40.257812 52.867188 40.285156 53.28125 40.285156 53.714844 C 40.285156 54.296875 40.230469 54.839844 40.121094 55.347656 C 40.015625 55.851562 39.804688 56.28125 39.492188 56.636719 C 39.179688 56.992188 38.734375 57.167969 38.15625 57.167969 Z M 38.15625 56.902344 C 38.53125 56.902344 38.8125 56.710938 38.996094 56.324219 C 39.183594 55.941406 39.296875 55.515625 39.339844 55.046875 C 39.382812 54.574219 39.40625 54.078125 39.40625 53.550781 C 39.40625 53.039062 39.382812 52.574219 39.339844 52.144531 C 39.296875 51.71875 39.183594 51.328125 39 50.980469 C 38.816406 50.632812 38.535156 50.460938 38.15625 50.460938 C 37.773438 50.460938 37.492188 50.632812 37.308594 50.984375 C 37.125 51.335938 37.011719 51.722656 36.96875 52.148438 C 36.925781 52.574219 36.902344 53.039062 36.902344 53.550781 C 36.902344 53.925781 36.910156 54.277344 36.929688 54.613281 C 36.945312 54.949219 36.996094 55.292969 37.074219 55.644531 C 37.152344 56 37.277344 56.296875 37.457031 56.539062 C 37.632812 56.78125 37.867188 56.902344 38.15625 56.902344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 43.15625 57.167969 C 42.328125 57.167969 41.765625 56.828125 41.46875 56.144531 C 41.171875 55.460938 41.023438 54.652344 41.023438 53.714844 C 41.023438 53.128906 41.078125 52.574219 41.183594 52.058594 C 41.289062 51.539062 41.5 51.097656 41.816406 50.738281 C 42.136719 50.375 42.582031 50.195312 43.15625 50.195312 C 43.601562 50.195312 43.964844 50.304688 44.25 50.519531 C 44.53125 50.738281 44.75 51.019531 44.898438 51.363281 C 45.046875 51.710938 45.148438 52.078125 45.203125 52.472656 C 45.257812 52.867188 45.285156 53.28125 45.285156 53.714844 C 45.285156 54.296875 45.230469 54.839844 45.121094 55.347656 C 45.015625 55.851562 44.804688 56.28125 44.492188 56.636719 C 44.179688 56.992188 43.734375 57.167969 43.15625 57.167969 Z M 43.15625 56.902344 C 43.53125 56.902344 43.8125 56.710938 43.996094 56.324219 C 44.183594 55.941406 44.296875 55.515625 44.339844 55.046875 C 44.382812 54.574219 44.40625 54.078125 44.40625 53.550781 C 44.40625 53.039062 44.382812 52.574219 44.339844 52.144531 C 44.296875 51.71875 44.183594 51.328125 44 50.980469 C 43.816406 50.632812 43.535156 50.460938 43.15625 50.460938 C 42.773438 50.460938 42.492188 50.632812 42.308594 50.984375 C 42.125 51.335938 42.011719 51.722656 41.96875 52.148438 C 41.925781 52.574219 41.902344 53.039062 41.902344 53.550781 C 41.902344 53.925781 41.910156 54.277344 41.929688 54.613281 C 41.945312 54.949219 41.996094 55.292969 42.074219 55.644531 C 42.152344 56 42.277344 56.296875 42.457031 56.539062 C 42.632812 56.78125 42.867188 56.902344 43.15625 56.902344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 32.402344 39.902344 L 32.402344 39.277344 L 35.085938 39.277344 L 35.085938 39.902344 L 32.402344 39.902344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 36.503906 40.625 C 36.574219 40.824219 36.679688 41.003906 36.824219 41.167969 C 36.964844 41.328125 37.136719 41.457031 37.332031 41.546875 C 37.53125 41.636719 37.734375 41.679688 37.945312 41.679688 C 38.433594 41.679688 38.769531 41.492188 38.953125 41.113281 C 39.136719 40.730469 39.230469 40.273438 39.230469 39.734375 C 39.230469 39.5 39.226562 39.300781 39.21875 39.140625 C 39.210938 38.980469 39.1875 38.824219 39.152344 38.679688 C 39.089844 38.4375 38.980469 38.230469 38.820312 38.054688 C 38.664062 37.875 38.472656 37.785156 38.246094 37.785156 C 38.019531 37.785156 37.824219 37.820312 37.660156 37.890625 C 37.496094 37.960938 37.363281 38.042969 37.261719 38.136719 C 37.160156 38.226562 37.070312 38.324219 36.992188 38.425781 C 36.914062 38.527344 36.863281 38.582031 36.84375 38.589844 L 36.726562 38.589844 C 36.710938 38.589844 36.691406 38.578125 36.664062 38.558594 C 36.640625 38.535156 36.628906 38.515625 36.628906 38.496094 L 36.628906 35.113281 C 36.628906 35.09375 36.636719 35.074219 36.660156 35.058594 C 36.679688 35.039062 36.703125 35.03125 36.726562 35.03125 L 36.757812 35.03125 C 37.214844 35.25 37.695312 35.359375 38.203125 35.359375 C 38.707031 35.359375 39.191406 35.25 39.65625 35.03125 L 39.6875 35.03125 C 39.710938 35.03125 39.730469 35.039062 39.75 35.058594 C 39.769531 35.074219 39.78125 35.09375 39.78125 35.113281 L 39.78125 35.207031 C 39.78125 35.238281 39.773438 35.253906 39.757812 35.253906 C 39.527344 35.5625 39.238281 35.800781 38.890625 35.972656 C 38.542969 36.140625 38.183594 36.226562 37.8125 36.226562 C 37.542969 36.226562 37.265625 36.1875 36.980469 36.113281 L 36.980469 38.027344 C 37.207031 37.847656 37.40625 37.71875 37.582031 37.640625 C 37.757812 37.5625 37.984375 37.523438 38.257812 37.523438 C 38.628906 37.523438 38.960938 37.628906 39.253906 37.84375 C 39.550781 38.058594 39.777344 38.339844 39.933594 38.683594 C 40.09375 39.027344 40.171875 39.378906 40.171875 39.738281 C 40.171875 40.144531 40.074219 40.523438 39.875 40.867188 C 39.675781 41.214844 39.402344 41.488281 39.0625 41.695312 C 38.71875 41.898438 38.347656 42.003906 37.945312 42.003906 C 37.613281 42.003906 37.308594 41.917969 37.027344 41.746094 C 36.75 41.574219 36.53125 41.34375 36.371094 41.054688 C 36.210938 40.765625 36.128906 40.453125 36.128906 40.128906 C 36.128906 39.972656 36.179688 39.851562 36.277344 39.753906 C 36.378906 39.65625 36.503906 39.609375 36.652344 39.609375 C 36.800781 39.609375 36.921875 39.660156 37.023438 39.757812 C 37.121094 39.855469 37.171875 39.976562 37.171875 40.128906 C 37.171875 40.269531 37.121094 40.394531 37.023438 40.496094 C 36.921875 40.597656 36.800781 40.648438 36.652344 40.648438 C 36.628906 40.648438 36.601562 40.644531 36.570312 40.640625 C 36.542969 40.632812 36.519531 40.628906 36.503906 40.625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 43.15625 42.003906 C 42.328125 42.003906 41.765625 41.660156 41.46875 40.980469 C 41.171875 40.296875 41.023438 39.488281 41.023438 38.550781 C 41.023438 37.960938 41.078125 37.410156 41.183594 36.890625 C 41.289062 36.375 41.5 35.933594 41.816406 35.574219 C 42.136719 35.210938 42.582031 35.03125 43.15625 35.03125 C 43.601562 35.03125 43.964844 35.140625 44.25 35.355469 C 44.53125 35.574219 44.75 35.855469 44.898438 36.199219 C 45.046875 36.546875 45.148438 36.914062 45.203125 37.308594 C 45.257812 37.699219 45.285156 38.113281 45.285156 38.550781 C 45.285156 39.132812 45.230469 39.675781 45.121094 40.183594 C 45.015625 40.6875 44.804688 41.117188 44.492188 41.472656 C 44.179688 41.824219 43.734375 42.003906 43.15625 42.003906 Z M 43.15625 41.738281 C 43.53125 41.738281 43.8125 41.546875 43.996094 41.160156 C 44.183594 40.777344 44.296875 40.347656 44.339844 39.878906 C 44.382812 39.410156 44.40625 38.910156 44.40625 38.382812 C 44.40625 37.875 44.382812 37.40625 44.339844 36.980469 C 44.296875 36.550781 44.183594 36.164062 44 35.816406 C 43.816406 35.46875 43.535156 35.292969 43.15625 35.292969 C 42.773438 35.292969 42.492188 35.46875 42.308594 35.820312 C 42.125 36.167969 42.011719 36.558594 41.96875 36.984375 C 41.925781 37.410156 41.902344 37.875 41.902344 38.382812 C 41.902344 38.761719 41.910156 39.113281 41.929688 39.449219 C 41.945312 39.78125 41.996094 40.128906 42.074219 40.480469 C 42.152344 40.835938 42.277344 41.132812 42.457031 41.375 C 42.632812 41.617188 42.867188 41.738281 43.15625 41.738281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 43.15625 26.839844 C 42.328125 26.839844 41.765625 26.496094 41.46875 25.816406 C 41.171875 25.132812 41.023438 24.320312 41.023438 23.382812 C 41.023438 22.796875 41.078125 22.246094 41.183594 21.726562 C 41.289062 21.210938 41.5 20.769531 41.816406 20.40625 C 42.136719 20.046875 42.582031 19.863281 43.15625 19.863281 C 43.601562 19.863281 43.964844 19.972656 44.25 20.191406 C 44.53125 20.40625 44.75 20.6875 44.898438 21.035156 C 45.046875 21.382812 45.148438 21.75 45.203125 22.144531 C 45.257812 22.535156 45.285156 22.949219 45.285156 23.382812 C 45.285156 23.96875 45.230469 24.511719 45.121094 25.015625 C 45.015625 25.523438 44.804688 25.953125 44.492188 26.308594 C 44.179688 26.660156 43.734375 26.839844 43.15625 26.839844 Z M 43.15625 26.574219 C 43.53125 26.574219 43.8125 26.382812 43.996094 25.996094 C 44.183594 25.609375 44.296875 25.183594 44.339844 24.714844 C 44.382812 24.246094 44.40625 23.746094 44.40625 23.21875 C 44.40625 22.710938 44.382812 22.242188 44.339844 21.816406 C 44.296875 21.386719 44.183594 21 44 20.652344 C 43.816406 20.304688 43.535156 20.128906 43.15625 20.128906 C 42.773438 20.128906 42.492188 20.304688 42.308594 20.652344 C 42.125 21.003906 42.011719 21.390625 41.96875 21.816406 C 41.925781 22.246094 41.902344 22.710938 41.902344 23.21875 C 41.902344 23.59375 41.910156 23.949219 41.929688 24.285156 C 41.945312 24.617188 41.996094 24.960938 42.074219 25.316406 C 42.152344 25.671875 42.277344 25.96875 42.457031 26.210938 C 42.632812 26.453125 42.867188 26.574219 43.15625 26.574219 "/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="21.6668" y="60.245"/>
<use xlink:href="#glyph0-2" x="21.6668" y="54.129562"/>
<use xlink:href="#glyph0-3" x="21.6668" y="48.564614"/>
<use xlink:href="#glyph0-4" x="21.6668" y="45.782139"/>
<use xlink:href="#glyph0-5" x="21.6668" y="42.999665"/>
<use xlink:href="#glyph0-6" x="21.6668" y="35.773239"/>
</g>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="89.1891" y="20.648"/>
<use xlink:href="#glyph1-2" x="95.299162" y="20.648"/>
<use xlink:href="#glyph1-3" x="98.629196" y="20.648"/>
<use xlink:href="#glyph1-4" x="104.189253" y="20.648"/>
<use xlink:href="#glyph1-5" x="112.519338" y="20.648"/>
<use xlink:href="#glyph1-6" x="115.299367" y="20.648"/>
<use xlink:href="#glyph1-1" x="118.079395" y="20.648"/>
<use xlink:href="#glyph1-7" x="124.189458" y="20.648"/>
</g>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.312127 -1695.15257 L 592.565416 -1695.15257 L 620.624637 -1695.191616 L 676.704 -1695.191616 L 704.763221 -1695.230661 L 732.783362 -1695.269706 L 760.842583 -1695.308752 L 788.901804 -1695.386842 L 816.921946 -1695.464933 L 844.981167 -1695.582069 L 873.040388 -1695.777295 L 901.060529 -1696.011567 L 929.11975 -1696.32393 L 957.139892 -1696.753428 L 985.199113 -1697.378154 L 1013.258334 -1698.276196 L 1041.278475 -1699.525646 L 1069.337696 -1701.321731 L 1080.983445 -1702.297864 L 1104.626661 -1704.9139 L 1124.322827 -1707.998481 L 1140.736299 -1711.512559 L 1154.414192 -1715.573273 L 1165.786384 -1720.10253 L 1175.282749 -1725.217467 L 1183.215928 -1730.918084 L 1189.781316 -1737.399607 L 1195.291553 -1744.857263 L 1199.863878 -1753.564369 L 1203.693688 -1763.911379 L 1206.859143 -1775.273567 L 1209.516562 -1781.403682 L 1212.134902 -1774.961205 L 1215.339437 -1762.661929 L 1219.130167 -1751.065469 L 1223.702492 -1740.913685 L 1229.212729 -1731.777081 L 1235.817197 -1723.304246 L 1243.711295 -1715.221865 L 1253.207661 -1707.33471 L 1264.618932 -1699.447556 L 1278.296826 -1691.365174 L 1294.671218 -1683.009476 L 1314.406464 -1674.107143 L 1338.0106 -1664.541039 L 1349.812668 -1660.128918 L 1377.832809 -1650.055226 L 1405.89203 -1640.567213 L 1433.912171 -1631.469653 L 1461.971392 -1622.606366 L 1490.030613 -1613.899259 L 1518.050755 -1605.348334 L 1546.109976 -1596.8755 L 1574.169197 -1588.441711 L 1602.189338 -1580.086012 L 1658.30778 -1563.452706 L 1686.327922 -1555.175098 L 1714.387143 -1546.89749 L 1734.669505 -1540.923556 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.312127 -1720.844391 L 509.208427 -1720.883436 L 536.720532 -1721.000572 L 564.232637 -1721.195799 L 591.744743 -1721.469116 L 619.256848 -1721.820524 L 646.768953 -1722.289068 L 674.281059 -1722.952838 L 701.793164 -1723.889926 L 729.305269 -1725.217467 L 756.856454 -1727.091642 L 769.049319 -1728.184911 L 792.692535 -1730.957129 L 812.388701 -1734.19789 L 828.802173 -1737.946241 L 842.480066 -1742.12409 L 853.852257 -1746.848574 L 863.348623 -1752.080647 L 871.281801 -1757.937445 L 877.88627 -1764.575149 L 883.357427 -1772.110896 L 887.929752 -1780.935139 L 891.759562 -1791.360239 L 894.925017 -1802.800518 L 897.582436 -1808.969678 L 900.200776 -1802.605291 L 903.405311 -1790.384106 L 907.196041 -1778.865737 L 911.768366 -1768.831089 L 917.278603 -1759.889711 L 923.843991 -1751.612103 L 931.777169 -1743.803039 L 941.273535 -1736.228247 L 952.645727 -1728.770591 L 966.32362 -1721.312935 L 982.737092 -1713.777188 L 1002.433258 -1706.124305 L 1026.076474 -1698.315241 L 1031.977508 -1696.558202 L 1059.489613 -1689.256727 L 1087.001718 -1683.165657 L 1114.513824 -1678.245947 L 1142.065009 -1674.38046 L 1169.577114 -1671.647288 L 1197.089219 -1670.085475 L 1220.341638 -1669.773112 L 1243.984853 -1670.593064 L 1263.68102 -1672.467239 L 1280.055412 -1675.161366 L 1293.733305 -1678.597355 L 1305.144576 -1682.697113 L 1314.640942 -1687.460642 L 1322.53504 -1692.926987 L 1329.139509 -1699.213284 L 1334.610666 -1706.514759 L 1339.22207 -1715.104729 L 1343.012801 -1725.334603 L 1346.217336 -1736.6187 L 1348.835675 -1742.670725 L 1351.493094 -1736.189202 L 1354.65855 -1723.77279 L 1358.48836 -1712.137285 L 1363.060684 -1701.868365 L 1368.531842 -1692.614625 L 1375.13631 -1684.063699 L 1383.069488 -1675.825137 L 1392.526774 -1667.781801 L 1403.938045 -1659.69942 L 1417.615939 -1651.460857 L 1434.02941 -1642.909932 L 1453.725577 -1633.890463 L 1477.368792 -1624.168179 L 1499.722378 -1615.695344 L 1527.273563 -1605.973059 L 1554.785668 -1596.719318 L 1582.297774 -1587.816986 L 1609.809879 -1579.148924 L 1637.321984 -1570.597999 L 1664.834089 -1562.203256 L 1692.346195 -1553.886602 L 1719.8583 -1545.64804 L 1734.669505 -1541.235919 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 49.625 102.65625 L 173.375 102.65625 L 173.375 67.75 L 49.625 67.75 Z M 49.625 102.65625 "/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1092.956599 L 1734.513186 -1092.956599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1441.865579 L 1734.513186 -1441.865579 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -1092.956599 L 909.150026 -1105.333966 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1092.956599 L 1734.513186 -1105.333966 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -1441.865579 L 909.150026 -1429.488213 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1441.865579 L 1734.513186 -1429.488213 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1092.956599 L 496.468446 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 620.702797 -1092.956599 L 620.702797 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 693.35195 -1092.956599 L 693.35195 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 744.937147 -1092.956599 L 744.937147 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 784.915675 -1092.956599 L 784.915675 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 817.5863 -1092.956599 L 817.5863 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 845.215645 -1092.956599 L 845.215645 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 869.171498 -1092.956599 L 869.171498 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 890.274533 -1092.956599 L 890.274533 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -1092.956599 L 909.150026 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1033.384377 -1092.956599 L 1033.384377 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1106.03353 -1092.956599 L 1106.03353 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1157.618727 -1092.956599 L 1157.618727 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.597255 -1092.956599 L 1197.597255 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1230.26788 -1092.956599 L 1230.26788 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1257.897225 -1092.956599 L 1257.897225 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1281.853078 -1092.956599 L 1281.853078 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1302.956113 -1092.956599 L 1302.956113 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1321.831606 -1092.956599 L 1321.831606 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1446.065957 -1092.956599 L 1446.065957 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1518.71511 -1092.956599 L 1518.71511 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1570.300307 -1092.956599 L 1570.300307 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1610.278835 -1092.956599 L 1610.278835 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1642.94946 -1092.956599 L 1642.94946 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1670.578805 -1092.956599 L 1670.578805 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1694.534658 -1092.956599 L 1694.534658 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1715.637693 -1092.956599 L 1715.637693 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1092.956599 L 1734.513186 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1441.865579 L 496.468446 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 620.702797 -1441.865579 L 620.702797 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 693.35195 -1441.865579 L 693.35195 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 744.937147 -1441.865579 L 744.937147 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 784.915675 -1441.865579 L 784.915675 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 817.5863 -1441.865579 L 817.5863 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 845.215645 -1441.865579 L 845.215645 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 869.171498 -1441.865579 L 869.171498 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 890.274533 -1441.865579 L 890.274533 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -1441.865579 L 909.150026 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1033.384377 -1441.865579 L 1033.384377 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1106.03353 -1441.865579 L 1106.03353 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1157.618727 -1441.865579 L 1157.618727 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.597255 -1441.865579 L 1197.597255 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1230.26788 -1441.865579 L 1230.26788 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1257.897225 -1441.865579 L 1257.897225 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1281.853078 -1441.865579 L 1281.853078 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1302.956113 -1441.865579 L 1302.956113 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1321.831606 -1441.865579 L 1321.831606 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1446.065957 -1441.865579 L 1446.065957 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1518.71511 -1441.865579 L 1518.71511 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1570.300307 -1441.865579 L 1570.300307 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1610.278835 -1441.865579 L 1610.278835 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1642.94946 -1441.865579 L 1642.94946 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1670.578805 -1441.865579 L 1670.578805 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1694.534658 -1441.865579 L 1694.534658 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1715.637693 -1441.865579 L 1715.637693 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1441.865579 L 1734.513186 -1435.657373 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1092.956599 L 496.468446 -1441.865579 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1092.956599 L 1734.513186 -1441.865579 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1096.353542 L 508.856709 -1096.353542 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1210.404922 L 508.856709 -1210.404922 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1324.417256 L 508.856709 -1324.417256 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1438.429591 L 508.856709 -1438.429591 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1096.353542 L 1722.124922 -1096.353542 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1210.404922 L 1722.124922 -1210.404922 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1324.417256 L 1722.124922 -1324.417256 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1438.429591 L 1722.124922 -1438.429591 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.402344 102.839844 L 27.402344 102.210938 L 30.085938 102.210938 L 30.085938 102.839844 L 27.402344 102.839844 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 31.128906 104.714844 L 31.128906 104.445312 C 31.128906 104.425781 31.136719 104.40625 31.148438 104.386719 L 32.722656 102.644531 C 32.960938 102.386719 33.152344 102.171875 33.300781 101.996094 C 33.445312 101.824219 33.59375 101.625 33.738281 101.398438 C 33.886719 101.171875 34 100.9375 34.085938 100.703125 C 34.167969 100.464844 34.210938 100.214844 34.210938 99.949219 C 34.210938 99.675781 34.160156 99.410156 34.054688 99.15625 C 33.953125 98.902344 33.800781 98.699219 33.597656 98.550781 C 33.398438 98.398438 33.152344 98.324219 32.863281 98.324219 C 32.570312 98.324219 32.308594 98.410156 32.074219 98.589844 C 31.839844 98.765625 31.675781 98.992188 31.582031 99.273438 C 31.609375 99.265625 31.644531 99.261719 31.6875 99.261719 C 31.839844 99.261719 31.96875 99.3125 32.074219 99.414062 C 32.183594 99.515625 32.238281 99.648438 32.238281 99.8125 C 32.238281 99.964844 32.183594 100.097656 32.074219 100.203125 C 31.96875 100.3125 31.839844 100.363281 31.6875 100.363281 C 31.53125 100.363281 31.398438 100.308594 31.289062 100.199219 C 31.183594 100.089844 31.128906 99.960938 31.128906 99.8125 C 31.128906 99.558594 31.175781 99.320312 31.273438 99.097656 C 31.367188 98.875 31.507812 98.675781 31.6875 98.503906 C 31.867188 98.328125 32.070312 98.195312 32.296875 98.105469 C 32.523438 98.011719 32.761719 97.964844 33.015625 97.964844 C 33.398438 97.964844 33.757812 98.046875 34.089844 98.214844 C 34.425781 98.378906 34.6875 98.605469 34.882812 98.90625 C 35.074219 99.203125 35.171875 99.550781 35.171875 99.949219 C 35.171875 100.246094 35.109375 100.527344 34.980469 100.789062 C 34.851562 101.054688 34.6875 101.292969 34.488281 101.507812 C 34.289062 101.722656 34.03125 101.96875 33.714844 102.242188 C 33.402344 102.515625 33.195312 102.699219 33.097656 102.792969 L 31.949219 103.894531 L 32.921875 103.894531 C 33.402344 103.894531 33.804688 103.890625 34.125 103.882812 C 34.445312 103.875 34.613281 103.863281 34.632812 103.84375 C 34.714844 103.761719 34.796875 103.449219 34.878906 102.910156 L 35.171875 102.910156 L 34.886719 104.714844 L 31.128906 104.714844 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 37.382812 104.453125 C 37.382812 104.078125 37.417969 103.710938 37.484375 103.351562 C 37.550781 102.988281 37.644531 102.636719 37.773438 102.28125 C 37.898438 101.929688 38.054688 101.585938 38.234375 101.246094 C 38.414062 100.910156 38.609375 100.59375 38.824219 100.300781 L 39.75 99.011719 L 38.589844 99.011719 C 37.390625 99.011719 36.773438 99.027344 36.738281 99.0625 C 36.648438 99.167969 36.566406 99.480469 36.488281 99.996094 L 36.195312 99.996094 L 36.527344 97.867188 L 36.820312 97.867188 L 36.820312 97.894531 C 36.820312 98.019531 37.027344 98.101562 37.4375 98.136719 C 37.851562 98.171875 38.253906 98.1875 38.648438 98.1875 L 40.535156 98.1875 L 40.535156 98.453125 C 40.535156 98.457031 40.535156 98.460938 40.53125 98.464844 C 40.53125 98.46875 40.527344 98.476562 40.523438 98.480469 L 39.128906 100.441406 C 38.785156 100.949219 38.570312 101.515625 38.488281 102.132812 C 38.402344 102.753906 38.363281 103.527344 38.363281 104.453125 C 38.363281 104.585938 38.3125 104.699219 38.21875 104.796875 C 38.121094 104.890625 38.007812 104.9375 37.875 104.9375 C 37.738281 104.9375 37.621094 104.890625 37.527344 104.796875 C 37.429688 104.699219 37.382812 104.585938 37.382812 104.453125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 43.15625 104.9375 C 42.328125 104.9375 41.765625 104.597656 41.46875 103.914062 C 41.171875 103.234375 41.023438 102.421875 41.023438 101.484375 C 41.023438 100.898438 41.078125 100.347656 41.183594 99.828125 C 41.289062 99.308594 41.5 98.871094 41.816406 98.507812 C 42.136719 98.148438 42.582031 97.964844 43.15625 97.964844 C 43.601562 97.964844 43.964844 98.074219 44.25 98.292969 C 44.53125 98.507812 44.75 98.789062 44.898438 99.136719 C 45.046875 99.480469 45.148438 99.851562 45.203125 100.246094 C 45.257812 100.636719 45.285156 101.050781 45.285156 101.484375 C 45.285156 102.066406 45.230469 102.613281 45.121094 103.117188 C 45.015625 103.625 44.804688 104.054688 44.492188 104.410156 C 44.179688 104.761719 43.734375 104.9375 43.15625 104.9375 Z M 43.15625 104.675781 C 43.53125 104.675781 43.8125 104.484375 43.996094 104.097656 C 44.183594 103.710938 44.296875 103.285156 44.339844 102.816406 C 44.382812 102.347656 44.40625 101.847656 44.40625 101.320312 C 44.40625 100.8125 44.382812 100.34375 44.339844 99.914062 C 44.296875 99.488281 44.183594 99.101562 44 98.753906 C 43.816406 98.402344 43.535156 98.230469 43.15625 98.230469 C 42.773438 98.230469 42.492188 98.40625 42.308594 98.753906 C 42.125 99.105469 42.011719 99.492188 41.96875 99.917969 C 41.925781 100.34375 41.902344 100.8125 41.902344 101.320312 C 41.902344 101.695312 41.910156 102.050781 41.929688 102.386719 C 41.945312 102.71875 41.996094 103.0625 42.074219 103.417969 C 42.152344 103.769531 42.277344 104.070312 42.457031 104.3125 C 42.632812 104.554688 42.867188 104.675781 43.15625 104.675781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.402344 91.433594 L 27.402344 90.804688 L 30.085938 90.804688 L 30.085938 91.433594 L 27.402344 91.433594 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 31.5625 93.308594 L 31.5625 92.953125 C 32.40625 92.953125 32.828125 92.84375 32.828125 92.628906 L 32.828125 87.308594 C 32.480469 87.476562 32.039062 87.5625 31.503906 87.5625 L 31.503906 87.210938 C 32.332031 87.210938 32.957031 86.992188 33.378906 86.558594 L 33.519531 86.558594 C 33.542969 86.558594 33.566406 86.566406 33.585938 86.585938 C 33.609375 86.601562 33.621094 86.625 33.621094 86.648438 L 33.621094 92.628906 C 33.621094 92.84375 34.042969 92.953125 34.886719 92.953125 L 34.886719 93.308594 L 31.5625 93.308594 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 36.054688 91.773438 C 36.054688 91.367188 36.1875 91.007812 36.453125 90.695312 C 36.71875 90.382812 37.058594 90.121094 37.476562 89.914062 L 37.101562 89.671875 C 36.871094 89.519531 36.683594 89.320312 36.539062 89.066406 C 36.394531 88.8125 36.324219 88.550781 36.324219 88.273438 C 36.324219 87.945312 36.40625 87.65625 36.578125 87.394531 C 36.746094 87.136719 36.972656 86.929688 37.253906 86.78125 C 37.535156 86.632812 37.835938 86.558594 38.15625 86.558594 C 38.457031 86.558594 38.746094 86.621094 39.023438 86.742188 C 39.300781 86.867188 39.53125 87.042969 39.710938 87.269531 C 39.890625 87.496094 39.980469 87.765625 39.980469 88.078125 C 39.980469 88.304688 39.925781 88.515625 39.820312 88.710938 C 39.714844 88.90625 39.570312 89.082031 39.382812 89.234375 C 39.195312 89.390625 38.996094 89.523438 38.785156 89.632812 L 39.363281 90.003906 C 39.628906 90.179688 39.84375 90.40625 40.007812 90.691406 C 40.171875 90.972656 40.253906 91.273438 40.253906 91.585938 C 40.253906 91.953125 40.15625 92.285156 39.957031 92.589844 C 39.761719 92.890625 39.5 93.121094 39.179688 93.285156 C 38.855469 93.449219 38.515625 93.53125 38.15625 93.53125 C 37.808594 93.53125 37.472656 93.460938 37.144531 93.316406 C 36.820312 93.175781 36.554688 92.96875 36.355469 92.703125 C 36.152344 92.433594 36.054688 92.125 36.054688 91.773438 Z M 36.597656 91.773438 C 36.597656 92.039062 36.671875 92.28125 36.816406 92.503906 C 36.964844 92.722656 37.160156 92.898438 37.402344 93.023438 C 37.644531 93.148438 37.894531 93.210938 38.15625 93.210938 C 38.546875 93.210938 38.902344 93.09375 39.222656 92.867188 C 39.542969 92.636719 39.703125 92.335938 39.703125 91.953125 C 39.703125 91.824219 39.679688 91.699219 39.628906 91.570312 C 39.578125 91.441406 39.507812 91.328125 39.417969 91.226562 C 39.328125 91.121094 39.226562 91.035156 39.113281 90.96875 L 37.753906 90.089844 C 37.542969 90.199219 37.347656 90.339844 37.171875 90.511719 C 36.996094 90.683594 36.855469 90.878906 36.753906 91.09375 C 36.648438 91.308594 36.597656 91.535156 36.597656 91.773438 Z M 37.296875 88.675781 L 38.519531 89.46875 C 38.804688 89.304688 39.039062 89.105469 39.21875 88.871094 C 39.402344 88.636719 39.492188 88.371094 39.492188 88.078125 C 39.492188 87.851562 39.429688 87.644531 39.300781 87.453125 C 39.175781 87.265625 39.007812 87.117188 38.804688 87.011719 C 38.597656 86.90625 38.378906 86.851562 38.144531 86.851562 C 37.941406 86.851562 37.738281 86.890625 37.53125 86.96875 C 37.324219 87.046875 37.152344 87.164062 37.015625 87.324219 C 36.882812 87.484375 36.816406 87.667969 36.816406 87.878906 C 36.816406 88.195312 36.976562 88.460938 37.296875 88.675781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 43.15625 93.53125 C 42.328125 93.53125 41.765625 93.191406 41.46875 92.507812 C 41.171875 91.828125 41.023438 91.015625 41.023438 90.078125 C 41.023438 89.492188 41.078125 88.9375 41.183594 88.421875 C 41.289062 87.902344 41.5 87.464844 41.816406 87.101562 C 42.136719 86.738281 42.582031 86.558594 43.15625 86.558594 C 43.601562 86.558594 43.964844 86.667969 44.25 86.886719 C 44.53125 87.101562 44.75 87.382812 44.898438 87.730469 C 45.046875 88.074219 45.148438 88.445312 45.203125 88.839844 C 45.257812 89.230469 45.285156 89.644531 45.285156 90.078125 C 45.285156 90.660156 45.230469 91.203125 45.121094 91.710938 C 45.015625 92.21875 44.804688 92.648438 44.492188 93.003906 C 44.179688 93.355469 43.734375 93.53125 43.15625 93.53125 Z M 43.15625 93.269531 C 43.53125 93.269531 43.8125 93.074219 43.996094 92.691406 C 44.183594 92.304688 44.296875 91.878906 44.339844 91.410156 C 44.382812 90.941406 44.40625 90.441406 44.40625 89.914062 C 44.40625 89.40625 44.382812 88.9375 44.339844 88.507812 C 44.296875 88.082031 44.183594 87.691406 44 87.34375 C 43.816406 86.996094 43.535156 86.824219 43.15625 86.824219 C 42.773438 86.824219 42.492188 86.996094 42.308594 87.347656 C 42.125 87.699219 42.011719 88.085938 41.96875 88.511719 C 41.925781 88.9375 41.902344 89.40625 41.902344 89.914062 C 41.902344 90.289062 41.910156 90.644531 41.929688 90.976562 C 41.945312 91.3125 41.996094 91.65625 42.074219 92.011719 C 42.152344 92.363281 42.277344 92.660156 42.457031 92.90625 C 42.632812 93.148438 42.867188 93.269531 43.15625 93.269531 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 32.402344 80.027344 L 32.402344 79.398438 L 35.085938 79.398438 L 35.085938 80.027344 L 32.402344 80.027344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 36.769531 81.472656 C 36.953125 81.691406 37.273438 81.804688 37.730469 81.804688 C 37.988281 81.804688 38.226562 81.714844 38.449219 81.542969 C 38.671875 81.367188 38.84375 81.152344 38.964844 80.898438 C 39.109375 80.609375 39.203125 80.304688 39.242188 79.980469 C 39.28125 79.652344 39.300781 79.253906 39.300781 78.769531 C 39.183594 79.046875 39.015625 79.269531 38.800781 79.441406 C 38.585938 79.617188 38.339844 79.703125 38.058594 79.703125 C 37.667969 79.703125 37.316406 79.597656 37.007812 79.386719 C 36.699219 79.175781 36.464844 78.894531 36.300781 78.546875 C 36.136719 78.195312 36.054688 77.824219 36.054688 77.433594 C 36.054688 77.027344 36.144531 76.648438 36.328125 76.300781 C 36.511719 75.949219 36.765625 75.671875 37.09375 75.464844 C 37.417969 75.257812 37.789062 75.152344 38.203125 75.152344 C 38.613281 75.152344 38.957031 75.265625 39.230469 75.488281 C 39.507812 75.710938 39.71875 75.996094 39.863281 76.347656 C 40.007812 76.699219 40.109375 77.074219 40.167969 77.464844 C 40.226562 77.859375 40.253906 78.246094 40.253906 78.625 C 40.253906 79.148438 40.160156 79.679688 39.96875 80.222656 C 39.777344 80.765625 39.488281 81.214844 39.109375 81.578125 C 38.726562 81.945312 38.269531 82.125 37.730469 82.125 C 37.332031 82.125 36.992188 82.03125 36.71875 81.84375 C 36.441406 81.65625 36.304688 81.371094 36.304688 80.992188 C 36.304688 80.851562 36.351562 80.734375 36.445312 80.640625 C 36.539062 80.546875 36.65625 80.5 36.792969 80.5 C 36.929688 80.5 37.042969 80.546875 37.136719 80.640625 C 37.230469 80.734375 37.277344 80.851562 37.277344 80.992188 C 37.277344 81.121094 37.230469 81.234375 37.132812 81.328125 C 37.039062 81.425781 36.925781 81.472656 36.792969 81.472656 Z M 38.097656 79.4375 C 38.375 79.4375 38.601562 79.34375 38.777344 79.15625 C 38.953125 78.96875 39.082031 78.738281 39.160156 78.464844 C 39.242188 78.1875 39.28125 77.910156 39.28125 77.640625 L 39.28125 77.40625 C 39.28125 76.894531 39.207031 76.441406 39.058594 76.042969 C 38.910156 75.644531 38.625 75.445312 38.203125 75.445312 C 37.9375 75.445312 37.722656 75.503906 37.554688 75.621094 C 37.390625 75.738281 37.265625 75.894531 37.1875 76.089844 C 37.105469 76.28125 37.054688 76.488281 37.035156 76.710938 C 37.011719 76.929688 37.003906 77.171875 37.003906 77.433594 C 37.003906 77.816406 37.019531 78.144531 37.058594 78.414062 C 37.09375 78.683594 37.195312 78.921875 37.355469 79.128906 C 37.519531 79.335938 37.765625 79.4375 38.097656 79.4375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 43.15625 82.125 C 42.328125 82.125 41.765625 81.785156 41.46875 81.101562 C 41.171875 80.421875 41.023438 79.609375 41.023438 78.671875 C 41.023438 78.085938 41.078125 77.53125 41.183594 77.015625 C 41.289062 76.496094 41.5 76.054688 41.816406 75.695312 C 42.136719 75.332031 42.582031 75.152344 43.15625 75.152344 C 43.601562 75.152344 43.964844 75.261719 44.25 75.476562 C 44.53125 75.695312 44.75 75.976562 44.898438 76.320312 C 45.046875 76.667969 45.148438 77.039062 45.203125 77.429688 C 45.257812 77.824219 45.285156 78.238281 45.285156 78.671875 C 45.285156 79.253906 45.230469 79.796875 45.121094 80.304688 C 45.015625 80.8125 44.804688 81.242188 44.492188 81.59375 C 44.179688 81.949219 43.734375 82.125 43.15625 82.125 Z M 43.15625 81.863281 C 43.53125 81.863281 43.8125 81.667969 43.996094 81.285156 C 44.183594 80.898438 44.296875 80.472656 44.339844 80.003906 C 44.382812 79.53125 44.40625 79.035156 44.40625 78.507812 C 44.40625 78 44.382812 77.53125 44.339844 77.101562 C 44.296875 76.675781 44.183594 76.285156 44 75.9375 C 43.816406 75.589844 43.535156 75.414062 43.15625 75.414062 C 42.773438 75.414062 42.492188 75.589844 42.308594 75.941406 C 42.125 76.289062 42.011719 76.679688 41.96875 77.105469 C 41.925781 77.53125 41.902344 78 41.902344 78.507812 C 41.902344 78.882812 41.910156 79.238281 41.929688 79.570312 C 41.945312 79.90625 41.996094 80.25 42.074219 80.605469 C 42.152344 80.957031 42.277344 81.253906 42.457031 81.496094 C 42.632812 81.738281 42.867188 81.863281 43.15625 81.863281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 43.15625 70.71875 C 42.328125 70.71875 41.765625 70.378906 41.46875 69.695312 C 41.171875 69.011719 41.023438 68.203125 41.023438 67.265625 C 41.023438 66.679688 41.078125 66.125 41.183594 65.605469 C 41.289062 65.089844 41.5 64.648438 41.816406 64.289062 C 42.136719 63.925781 42.582031 63.746094 43.15625 63.746094 C 43.601562 63.746094 43.964844 63.855469 44.25 64.070312 C 44.53125 64.289062 44.75 64.570312 44.898438 64.914062 C 45.046875 65.261719 45.148438 65.632812 45.203125 66.023438 C 45.257812 66.417969 45.285156 66.828125 45.285156 67.265625 C 45.285156 67.847656 45.230469 68.390625 45.121094 68.898438 C 45.015625 69.402344 44.804688 69.835938 44.492188 70.1875 C 44.179688 70.539062 43.734375 70.71875 43.15625 70.71875 Z M 43.15625 70.453125 C 43.53125 70.453125 43.8125 70.261719 43.996094 69.878906 C 44.183594 69.492188 44.296875 69.0625 44.339844 68.59375 C 44.382812 68.125 44.40625 67.628906 44.40625 67.101562 C 44.40625 66.59375 44.382812 66.121094 44.339844 65.695312 C 44.296875 65.265625 44.183594 64.878906 44 64.53125 C 43.816406 64.183594 43.535156 64.007812 43.15625 64.007812 C 42.773438 64.007812 42.492188 64.183594 42.308594 64.535156 C 42.125 64.882812 42.011719 65.273438 41.96875 65.699219 C 41.925781 66.125 41.902344 66.59375 41.902344 67.101562 C 41.902344 67.476562 41.910156 67.828125 41.929688 68.164062 C 41.945312 68.496094 41.996094 68.84375 42.074219 69.195312 C 42.152344 69.550781 42.277344 69.847656 42.457031 70.089844 C 42.632812 70.332031 42.867188 70.453125 43.15625 70.453125 "/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="21.6668" y="101.718"/>
<use xlink:href="#glyph0-2" x="21.6668" y="95.602562"/>
<use xlink:href="#glyph0-3" x="21.6668" y="90.037614"/>
<use xlink:href="#glyph0-4" x="21.6668" y="87.255139"/>
<use xlink:href="#glyph0-5" x="21.6668" y="84.472665"/>
<use xlink:href="#glyph0-6" x="21.6668" y="77.246239"/>
</g>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.312127 -1438.390546 L 508.426833 -1438.390546 L 536.486054 -1438.3515 L 592.565416 -1438.3515 L 620.624637 -1438.312455 L 648.644779 -1438.312455 L 676.704 -1438.27341 L 704.763221 -1438.27341 L 732.783362 -1438.234364 L 788.901804 -1438.156274 L 816.921946 -1438.117228 L 844.981167 -1438.078183 L 873.040388 -1438.000092 L 901.060529 -1437.922002 L 929.11975 -1437.843911 L 957.139892 -1437.726775 L 1013.258334 -1437.414413 L 1041.278475 -1437.141095 L 1069.337696 -1436.828733 L 1080.983445 -1436.672552 L 1104.626661 -1436.204008 L 1124.322827 -1435.657373 L 1140.736299 -1434.954557 L 1154.414192 -1434.056515 L 1165.786384 -1432.885156 L 1175.282749 -1431.323343 L 1183.215928 -1429.17585 L 1189.781316 -1426.130315 L 1195.291553 -1421.522967 L 1199.863878 -1414.065311 L 1203.693688 -1400.555631 L 1206.859143 -1373.419133 L 1209.516562 -1325.783843 L 1212.134902 -1277.094328 L 1215.339437 -1248.942653 L 1219.130167 -1235.042519 L 1223.702492 -1227.428681 L 1229.212729 -1222.743243 L 1235.817197 -1219.658663 L 1243.711295 -1217.51117 L 1253.207661 -1215.949357 L 1264.618932 -1214.777998 L 1278.296826 -1213.879955 L 1294.671218 -1213.17714 L 1314.406464 -1212.59146 L 1338.0106 -1212.161961 L 1349.812668 -1211.966735 L 1377.832809 -1211.654372 L 1405.89203 -1211.4201 L 1433.912171 -1211.224874 L 1490.030613 -1210.990602 L 1518.050755 -1210.873466 L 1546.109976 -1210.83442 L 1574.169197 -1210.75633 L 1602.189338 -1210.717284 L 1630.248559 -1210.678239 L 1658.30778 -1210.600148 L 1686.327922 -1210.561103 L 1714.387143 -1210.561103 L 1734.669505 -1210.522058 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.312127 -1210.522058 L 509.208427 -1210.522058 L 619.256848 -1210.678239 L 701.793164 -1210.912511 L 729.305269 -1211.068692 L 756.856454 -1211.302964 L 769.049319 -1211.4201 L 792.692535 -1211.771508 L 812.388701 -1212.279097 L 828.802173 -1212.903822 L 842.480066 -1213.723774 L 853.852257 -1214.817043 L 863.348623 -1216.300765 L 871.281801 -1218.409212 L 877.88627 -1221.415702 L 883.357427 -1225.984005 L 887.929752 -1233.441661 L 891.759562 -1246.912296 L 894.925017 -1274.048794 L 897.582436 -1321.645039 L 900.200776 -1370.295507 L 903.405311 -1398.447183 L 907.196041 -1412.308272 L 911.768366 -1419.922109 L 917.278603 -1424.529457 L 923.843991 -1427.574992 L 931.777169 -1429.644394 L 941.273535 -1431.167161 L 952.645727 -1432.221385 L 966.32362 -1433.041337 L 982.737092 -1433.627017 L 1002.433258 -1434.01747 L 1026.076474 -1434.290787 L 1031.977508 -1434.329832 L 1059.489613 -1434.446968 L 1114.513824 -1434.525059 L 1142.065009 -1434.525059 L 1169.577114 -1434.486014 L 1197.089219 -1434.407923 L 1220.341638 -1434.290787 L 1243.984853 -1434.01747 L 1263.68102 -1433.627017 L 1280.055412 -1433.041337 L 1293.733305 -1432.26043 L 1305.144576 -1431.167161 L 1314.640942 -1429.683439 L 1322.53504 -1427.614037 L 1329.139509 -1424.607548 L 1334.610666 -1420.039245 L 1339.22207 -1412.620634 L 1343.012801 -1399.110954 L 1346.217336 -1372.013502 L 1348.835675 -1324.378211 L 1351.493094 -1275.727742 L 1354.65855 -1247.615112 L 1358.48836 -1233.714978 L 1363.060684 -1226.10114 L 1368.531842 -1221.493793 L 1375.13631 -1218.448258 L 1383.069488 -1216.33981 L 1392.526774 -1214.856088 L 1403.938045 -1213.723774 L 1417.615939 -1212.903822 L 1434.02941 -1212.279097 L 1453.725577 -1211.810553 L 1477.368792 -1211.4201 L 1499.722378 -1211.224874 L 1527.273563 -1211.029647 L 1554.785668 -1210.873466 L 1609.809879 -1210.717284 L 1664.834089 -1210.639194 L 1692.346195 -1210.561103 L 1719.8583 -1210.561103 L 1734.669505 -1210.522058 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 49.625 147.695312 L 173.375 147.695312 L 173.375 108.664062 L 49.625 108.664062 Z M 49.625 147.695312 "/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -642.764059 L 1734.513186 -642.764059 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1032.904897 L 1734.513186 -1032.904897 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -642.764059 L 909.150026 -655.141425 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -642.764059 L 1734.513186 -655.141425 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -1032.904897 L 909.150026 -1020.52753 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1032.904897 L 1734.513186 -1020.52753 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -642.764059 L 496.468446 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 620.702797 -642.764059 L 620.702797 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 693.35195 -642.764059 L 693.35195 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 744.937147 -642.764059 L 744.937147 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 784.915675 -642.764059 L 784.915675 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 817.5863 -642.764059 L 817.5863 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 845.215645 -642.764059 L 845.215645 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 869.171498 -642.764059 L 869.171498 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 890.274533 -642.764059 L 890.274533 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -642.764059 L 909.150026 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1033.384377 -642.764059 L 1033.384377 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1106.03353 -642.764059 L 1106.03353 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1157.618727 -642.764059 L 1157.618727 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.597255 -642.764059 L 1197.597255 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1230.26788 -642.764059 L 1230.26788 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1257.897225 -642.764059 L 1257.897225 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1281.853078 -642.764059 L 1281.853078 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1302.956113 -642.764059 L 1302.956113 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1321.831606 -642.764059 L 1321.831606 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1446.065957 -642.764059 L 1446.065957 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1518.71511 -642.764059 L 1518.71511 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1570.300307 -642.764059 L 1570.300307 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1610.278835 -642.764059 L 1610.278835 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1642.94946 -642.764059 L 1642.94946 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1670.578805 -642.764059 L 1670.578805 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1694.534658 -642.764059 L 1694.534658 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1715.637693 -642.764059 L 1715.637693 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -642.764059 L 1734.513186 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1032.904897 L 496.468446 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 620.702797 -1032.904897 L 620.702797 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 693.35195 -1032.904897 L 693.35195 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 744.937147 -1032.904897 L 744.937147 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 784.915675 -1032.904897 L 784.915675 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 817.5863 -1032.904897 L 817.5863 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 845.215645 -1032.904897 L 845.215645 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 869.171498 -1032.904897 L 869.171498 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 890.274533 -1032.904897 L 890.274533 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -1032.904897 L 909.150026 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1033.384377 -1032.904897 L 1033.384377 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1106.03353 -1032.904897 L 1106.03353 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1157.618727 -1032.904897 L 1157.618727 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.597255 -1032.904897 L 1197.597255 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1230.26788 -1032.904897 L 1230.26788 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1257.897225 -1032.904897 L 1257.897225 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1281.853078 -1032.904897 L 1281.853078 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1302.956113 -1032.904897 L 1302.956113 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1321.831606 -1032.904897 L 1321.831606 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1446.065957 -1032.904897 L 1446.065957 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1518.71511 -1032.904897 L 1518.71511 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1570.300307 -1032.904897 L 1570.300307 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1610.278835 -1032.904897 L 1610.278835 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1642.94946 -1032.904897 L 1642.94946 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1670.578805 -1032.904897 L 1670.578805 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1694.534658 -1032.904897 L 1694.534658 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1715.637693 -1032.904897 L 1715.637693 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1032.904897 L 1734.513186 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -642.764059 L 496.468446 -1032.904897 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -642.764059 L 1734.513186 -1032.904897 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -729.757032 L 508.856709 -729.757032 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -881.330964 L 508.856709 -881.330964 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -1032.904897 L 508.856709 -1032.904897 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -729.757032 L 1722.124922 -729.757032 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -881.330964 L 1722.124922 -881.330964 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -1032.904897 L 1722.124922 -1032.904897 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.402344 139.515625 L 27.402344 138.890625 L 30.085938 138.890625 L 30.085938 139.515625 L 27.402344 139.515625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 31.5625 141.394531 L 31.5625 141.035156 C 32.40625 141.035156 32.828125 140.929688 32.828125 140.714844 L 32.828125 135.394531 C 32.480469 135.5625 32.039062 135.644531 31.503906 135.644531 L 31.503906 135.292969 C 32.332031 135.292969 32.957031 135.078125 33.378906 134.644531 L 33.519531 134.644531 C 33.542969 134.644531 33.566406 134.652344 33.585938 134.667969 C 33.609375 134.6875 33.621094 134.707031 33.621094 134.730469 L 33.621094 140.714844 C 33.621094 140.929688 34.042969 141.035156 34.886719 141.035156 L 34.886719 141.394531 L 31.5625 141.394531 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 38.15625 141.617188 C 37.328125 141.617188 36.765625 141.277344 36.46875 140.59375 C 36.171875 139.910156 36.023438 139.101562 36.023438 138.160156 C 36.023438 137.574219 36.078125 137.023438 36.183594 136.503906 C 36.289062 135.988281 36.5 135.546875 36.816406 135.1875 C 37.136719 134.824219 37.582031 134.644531 38.15625 134.644531 C 38.601562 134.644531 38.964844 134.753906 39.25 134.96875 C 39.53125 135.1875 39.75 135.46875 39.898438 135.8125 C 40.046875 136.160156 40.148438 136.527344 40.203125 136.921875 C 40.257812 137.316406 40.285156 137.726562 40.285156 138.160156 C 40.285156 138.746094 40.230469 139.289062 40.121094 139.796875 C 40.015625 140.300781 39.804688 140.730469 39.492188 141.085938 C 39.179688 141.441406 38.734375 141.617188 38.15625 141.617188 Z M 38.15625 141.351562 C 38.53125 141.351562 38.8125 141.160156 38.996094 140.773438 C 39.183594 140.390625 39.296875 139.960938 39.339844 139.492188 C 39.382812 139.023438 39.40625 138.527344 39.40625 137.996094 C 39.40625 137.488281 39.382812 137.023438 39.339844 136.59375 C 39.296875 136.164062 39.183594 135.777344 39 135.429688 C 38.816406 135.082031 38.535156 134.90625 38.15625 134.90625 C 37.773438 134.90625 37.492188 135.082031 37.308594 135.433594 C 37.125 135.78125 37.011719 136.171875 36.96875 136.597656 C 36.925781 137.023438 36.902344 137.488281 36.902344 137.996094 C 36.902344 138.371094 36.910156 138.726562 36.929688 139.0625 C 36.945312 139.398438 36.996094 139.742188 37.074219 140.09375 C 37.152344 140.449219 37.277344 140.746094 37.457031 140.988281 C 37.632812 141.230469 37.867188 141.351562 38.15625 141.351562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 43.15625 141.617188 C 42.328125 141.617188 41.765625 141.277344 41.46875 140.59375 C 41.171875 139.910156 41.023438 139.101562 41.023438 138.160156 C 41.023438 137.574219 41.078125 137.023438 41.183594 136.503906 C 41.289062 135.988281 41.5 135.546875 41.816406 135.1875 C 42.136719 134.824219 42.582031 134.644531 43.15625 134.644531 C 43.601562 134.644531 43.964844 134.753906 44.25 134.96875 C 44.53125 135.1875 44.75 135.46875 44.898438 135.8125 C 45.046875 136.160156 45.148438 136.527344 45.203125 136.921875 C 45.257812 137.316406 45.285156 137.726562 45.285156 138.160156 C 45.285156 138.746094 45.230469 139.289062 45.121094 139.796875 C 45.015625 140.300781 44.804688 140.730469 44.492188 141.085938 C 44.179688 141.441406 43.734375 141.617188 43.15625 141.617188 Z M 43.15625 141.351562 C 43.53125 141.351562 43.8125 141.160156 43.996094 140.773438 C 44.183594 140.390625 44.296875 139.960938 44.339844 139.492188 C 44.382812 139.023438 44.40625 138.527344 44.40625 137.996094 C 44.40625 137.488281 44.382812 137.023438 44.339844 136.59375 C 44.296875 136.164062 44.183594 135.777344 44 135.429688 C 43.816406 135.082031 43.535156 134.90625 43.15625 134.90625 C 42.773438 134.90625 42.492188 135.082031 42.308594 135.433594 C 42.125 135.78125 42.011719 136.171875 41.96875 136.597656 C 41.925781 137.023438 41.902344 137.488281 41.902344 137.996094 C 41.902344 138.371094 41.910156 138.726562 41.929688 139.0625 C 41.945312 139.398438 41.996094 139.742188 42.074219 140.09375 C 42.152344 140.449219 42.277344 140.746094 42.457031 140.988281 C 42.632812 141.230469 42.867188 141.351562 43.15625 141.351562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 32.402344 124.351562 L 32.402344 123.722656 L 35.085938 123.722656 L 35.085938 124.351562 L 32.402344 124.351562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 36.503906 125.074219 C 36.574219 125.273438 36.679688 125.453125 36.824219 125.617188 C 36.964844 125.777344 37.136719 125.90625 37.332031 125.992188 C 37.53125 126.085938 37.734375 126.128906 37.945312 126.128906 C 38.433594 126.128906 38.769531 125.941406 38.953125 125.558594 C 39.136719 125.179688 39.230469 124.722656 39.230469 124.183594 C 39.230469 123.949219 39.226562 123.75 39.21875 123.589844 C 39.210938 123.429688 39.1875 123.273438 39.152344 123.125 C 39.089844 122.886719 38.980469 122.679688 38.820312 122.5 C 38.664062 122.324219 38.472656 122.234375 38.246094 122.234375 C 38.019531 122.234375 37.824219 122.269531 37.660156 122.339844 C 37.496094 122.410156 37.363281 122.492188 37.261719 122.585938 C 37.160156 122.675781 37.070312 122.773438 36.992188 122.875 C 36.914062 122.976562 36.863281 123.03125 36.84375 123.039062 L 36.726562 123.039062 C 36.710938 123.039062 36.691406 123.027344 36.664062 123.007812 C 36.640625 122.984375 36.628906 122.964844 36.628906 122.945312 L 36.628906 119.558594 C 36.628906 119.539062 36.636719 119.523438 36.660156 119.503906 C 36.679688 119.488281 36.703125 119.480469 36.726562 119.480469 L 36.757812 119.480469 C 37.214844 119.699219 37.695312 119.808594 38.203125 119.808594 C 38.707031 119.808594 39.191406 119.699219 39.65625 119.480469 L 39.6875 119.480469 C 39.710938 119.480469 39.730469 119.488281 39.75 119.503906 C 39.769531 119.523438 39.78125 119.539062 39.78125 119.558594 L 39.78125 119.65625 C 39.78125 119.683594 39.773438 119.703125 39.757812 119.703125 C 39.527344 120.011719 39.238281 120.25 38.890625 120.417969 C 38.542969 120.589844 38.183594 120.675781 37.8125 120.675781 C 37.542969 120.675781 37.265625 120.636719 36.980469 120.5625 L 36.980469 122.476562 C 37.207031 122.296875 37.40625 122.167969 37.582031 122.089844 C 37.757812 122.011719 37.984375 121.972656 38.257812 121.972656 C 38.628906 121.972656 38.960938 122.078125 39.253906 122.292969 C 39.550781 122.507812 39.777344 122.789062 39.933594 123.132812 C 40.09375 123.476562 40.171875 123.828125 40.171875 124.1875 C 40.171875 124.59375 40.074219 124.96875 39.875 125.316406 C 39.675781 125.664062 39.402344 125.9375 39.0625 126.144531 C 38.71875 126.347656 38.347656 126.453125 37.945312 126.453125 C 37.613281 126.453125 37.308594 126.367188 37.027344 126.195312 C 36.75 126.023438 36.53125 125.789062 36.371094 125.5 C 36.210938 125.210938 36.128906 124.902344 36.128906 124.574219 C 36.128906 124.421875 36.179688 124.296875 36.277344 124.203125 C 36.378906 124.105469 36.503906 124.058594 36.652344 124.058594 C 36.800781 124.058594 36.921875 124.109375 37.023438 124.207031 C 37.121094 124.304688 37.171875 124.425781 37.171875 124.574219 C 37.171875 124.71875 37.121094 124.84375 37.023438 124.945312 C 36.921875 125.046875 36.800781 125.097656 36.652344 125.097656 C 36.628906 125.097656 36.601562 125.09375 36.570312 125.089844 C 36.542969 125.082031 36.519531 125.078125 36.503906 125.074219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 43.15625 126.453125 C 42.328125 126.453125 41.765625 126.109375 41.46875 125.429688 C 41.171875 124.746094 41.023438 123.9375 41.023438 122.996094 C 41.023438 122.410156 41.078125 121.859375 41.183594 121.339844 C 41.289062 120.824219 41.5 120.382812 41.816406 120.019531 C 42.136719 119.660156 42.582031 119.480469 43.15625 119.480469 C 43.601562 119.480469 43.964844 119.585938 44.25 119.804688 C 44.53125 120.019531 44.75 120.300781 44.898438 120.648438 C 45.046875 120.996094 45.148438 121.363281 45.203125 121.757812 C 45.257812 122.148438 45.285156 122.5625 45.285156 122.996094 C 45.285156 123.582031 45.230469 124.125 45.121094 124.628906 C 45.015625 125.136719 44.804688 125.566406 44.492188 125.921875 C 44.179688 126.273438 43.734375 126.453125 43.15625 126.453125 Z M 43.15625 126.1875 C 43.53125 126.1875 43.8125 125.996094 43.996094 125.609375 C 44.183594 125.222656 44.296875 124.796875 44.339844 124.328125 C 44.382812 123.859375 44.40625 123.359375 44.40625 122.832031 C 44.40625 122.324219 44.382812 121.855469 44.339844 121.429688 C 44.296875 121 44.183594 120.613281 44 120.265625 C 43.816406 119.917969 43.535156 119.742188 43.15625 119.742188 C 42.773438 119.742188 42.492188 119.917969 42.308594 120.265625 C 42.125 120.617188 42.011719 121.003906 41.96875 121.429688 C 41.925781 121.859375 41.902344 122.324219 41.902344 122.832031 C 41.902344 123.207031 41.910156 123.5625 41.929688 123.898438 C 41.945312 124.230469 41.996094 124.574219 42.074219 124.929688 C 42.152344 125.285156 42.277344 125.582031 42.457031 125.824219 C 42.632812 126.066406 42.867188 126.1875 43.15625 126.1875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 43.15625 111.285156 C 42.328125 111.285156 41.765625 110.945312 41.46875 110.261719 C 41.171875 109.582031 41.023438 108.769531 41.023438 107.832031 C 41.023438 107.246094 41.078125 106.695312 41.183594 106.175781 C 41.289062 105.65625 41.5 105.21875 41.816406 104.855469 C 42.136719 104.496094 42.582031 104.3125 43.15625 104.3125 C 43.601562 104.3125 43.964844 104.421875 44.25 104.640625 C 44.53125 104.855469 44.75 105.136719 44.898438 105.484375 C 45.046875 105.828125 45.148438 106.199219 45.203125 106.59375 C 45.257812 106.984375 45.285156 107.398438 45.285156 107.832031 C 45.285156 108.414062 45.230469 108.960938 45.121094 109.464844 C 45.015625 109.972656 44.804688 110.402344 44.492188 110.757812 C 44.179688 111.109375 43.734375 111.285156 43.15625 111.285156 Z M 43.15625 111.023438 C 43.53125 111.023438 43.8125 110.828125 43.996094 110.445312 C 44.183594 110.058594 44.296875 109.632812 44.339844 109.164062 C 44.382812 108.695312 44.40625 108.195312 44.40625 107.667969 C 44.40625 107.160156 44.382812 106.691406 44.339844 106.265625 C 44.296875 105.835938 44.183594 105.449219 44 105.101562 C 43.816406 104.753906 43.535156 104.578125 43.15625 104.578125 C 42.773438 104.578125 42.492188 104.753906 42.308594 105.101562 C 42.125 105.453125 42.011719 105.839844 41.96875 106.265625 C 41.925781 106.691406 41.902344 107.160156 41.902344 107.667969 C 41.902344 108.042969 41.910156 108.398438 41.929688 108.734375 C 41.945312 109.066406 41.996094 109.410156 42.074219 109.765625 C 42.152344 110.117188 42.277344 110.417969 42.457031 110.660156 C 42.632812 110.902344 42.867188 111.023438 43.15625 111.023438 "/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="21.6668" y="144.5055"/>
<use xlink:href="#glyph0-2" x="21.6668" y="138.390062"/>
<use xlink:href="#glyph0-3" x="21.6668" y="132.825114"/>
<use xlink:href="#glyph0-4" x="21.6668" y="130.042639"/>
<use xlink:href="#glyph0-5" x="21.6668" y="127.260165"/>
<use xlink:href="#glyph0-7" x="21.6668" y="120.033739"/>
</g>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.312127 -819.756495 L 509.208427 -821.708761 L 536.720532 -825.847565 L 564.232637 -830.064459 L 591.744743 -834.359444 L 619.256848 -838.73252 L 646.768953 -843.222732 L 674.281059 -847.90817 L 701.793164 -852.788835 L 729.305269 -858.059954 L 756.856454 -863.877706 L 769.049319 -866.728015 L 792.692535 -872.819085 L 812.388701 -878.793019 L 828.802173 -884.766953 L 842.480066 -890.818977 L 853.852257 -897.066228 L 863.348623 -903.547751 L 871.281801 -910.458773 L 877.88627 -917.916429 L 883.357427 -926.194037 L 887.929752 -935.603959 L 891.759562 -946.497604 L 894.925017 -958.328336 L 897.582436 -964.848904 L 900.200776 -958.796879 L 903.405311 -946.966147 L 907.196041 -935.955367 L 911.768366 -926.467354 L 917.278603 -918.150701 L 923.843991 -910.693045 L 931.777169 -903.782023 L 941.273535 -897.3005 L 952.645727 -891.13134 L 966.32362 -885.11836 L 982.737092 -879.222517 L 1002.433258 -873.365719 L 1026.076474 -867.43083 L 1031.977508 -866.10329 L 1059.489613 -860.402673 L 1087.001718 -855.443917 L 1114.513824 -850.992751 L 1142.065009 -847.049173 L 1169.577114 -843.57414 L 1197.089219 -840.723832 L 1220.341638 -838.888701 L 1243.984853 -837.834478 L 1263.68102 -837.912568 L 1280.055412 -838.966792 L 1293.733305 -840.958103 L 1305.144576 -843.769366 L 1314.640942 -847.439627 L 1322.53504 -852.007929 L 1329.139509 -857.513319 L 1334.610666 -864.151024 L 1339.22207 -872.155314 L 1343.012801 -881.955689 L 1346.217336 -892.810288 L 1348.835675 -898.549951 L 1351.493094 -891.756065 L 1354.65855 -878.9492 L 1358.48836 -866.76706 L 1363.060684 -855.951506 L 1368.531842 -845.99495 L 1375.13631 -836.585028 L 1383.069488 -827.331287 L 1392.526774 -817.999455 L 1403.938045 -808.433352 L 1417.615939 -798.320614 L 1434.02941 -787.50506 L 1453.725577 -775.752419 L 1477.368792 -762.711282 L 1499.722378 -751.075777 L 1527.273563 -737.409915 L 1554.785668 -724.173551 L 1582.297774 -711.288596 L 1609.809879 -698.598866 L 1637.321984 -686.065319 L 1664.834089 -673.648907 L 1692.346195 -661.310586 L 1719.8583 -649.050355 L 1734.083309 -642.685968 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 49.625 187.105469 L 173.375 187.105469 L 173.375 152.199219 L 49.625 152.199219 Z M 49.625 187.105469 "/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -248.835825 L 1734.513186 -248.835825 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -597.744805 L 1734.513186 -597.744805 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -248.835825 L 909.150026 -261.213191 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -248.835825 L 1734.513186 -261.213191 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -597.744805 L 909.150026 -585.367438 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -597.744805 L 1734.513186 -585.367438 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -248.835825 L 496.468446 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 620.702797 -248.835825 L 620.702797 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 693.35195 -248.835825 L 693.35195 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 744.937147 -248.835825 L 744.937147 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 784.915675 -248.835825 L 784.915675 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 817.5863 -248.835825 L 817.5863 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 845.215645 -248.835825 L 845.215645 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 869.171498 -248.835825 L 869.171498 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 890.274533 -248.835825 L 890.274533 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -248.835825 L 909.150026 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1033.384377 -248.835825 L 1033.384377 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1106.03353 -248.835825 L 1106.03353 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1157.618727 -248.835825 L 1157.618727 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.597255 -248.835825 L 1197.597255 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1230.26788 -248.835825 L 1230.26788 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1257.897225 -248.835825 L 1257.897225 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1281.853078 -248.835825 L 1281.853078 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1302.956113 -248.835825 L 1302.956113 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1321.831606 -248.835825 L 1321.831606 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1446.065957 -248.835825 L 1446.065957 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1518.71511 -248.835825 L 1518.71511 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1570.300307 -248.835825 L 1570.300307 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1610.278835 -248.835825 L 1610.278835 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1642.94946 -248.835825 L 1642.94946 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1670.578805 -248.835825 L 1670.578805 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1694.534658 -248.835825 L 1694.534658 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1715.637693 -248.835825 L 1715.637693 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -248.835825 L 1734.513186 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -597.744805 L 496.468446 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 620.702797 -597.744805 L 620.702797 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 693.35195 -597.744805 L 693.35195 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 744.937147 -597.744805 L 744.937147 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 784.915675 -597.744805 L 784.915675 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 817.5863 -597.744805 L 817.5863 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 845.215645 -597.744805 L 845.215645 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 869.171498 -597.744805 L 869.171498 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 890.274533 -597.744805 L 890.274533 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 909.150026 -597.744805 L 909.150026 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1033.384377 -597.744805 L 1033.384377 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1106.03353 -597.744805 L 1106.03353 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1157.618727 -597.744805 L 1157.618727 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.597255 -597.744805 L 1197.597255 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1230.26788 -597.744805 L 1230.26788 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1257.897225 -597.744805 L 1257.897225 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1281.853078 -597.744805 L 1281.853078 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1302.956113 -597.744805 L 1302.956113 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1321.831606 -597.744805 L 1321.831606 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1446.065957 -597.744805 L 1446.065957 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1518.71511 -597.744805 L 1518.71511 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1570.300307 -597.744805 L 1570.300307 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1610.278835 -597.744805 L 1610.278835 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1642.94946 -597.744805 L 1642.94946 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1670.578805 -597.744805 L 1670.578805 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1694.534658 -597.744805 L 1694.534658 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1715.637693 -597.744805 L 1715.637693 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -597.744805 L 1734.513186 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 84.8125 199.515625 L 84.8125 199.15625 C 85.65625 199.15625 86.078125 199.050781 86.078125 198.835938 L 86.078125 193.515625 C 85.730469 193.683594 85.289062 193.769531 84.753906 193.769531 L 84.753906 193.417969 C 85.582031 193.417969 86.207031 193.199219 86.628906 192.765625 L 86.769531 192.765625 C 86.792969 192.765625 86.816406 192.773438 86.839844 192.792969 C 86.859375 192.808594 86.871094 192.832031 86.871094 192.855469 L 86.871094 198.835938 C 86.871094 199.050781 87.292969 199.15625 88.136719 199.15625 L 88.136719 199.515625 L 84.8125 199.515625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 91.40625 199.738281 C 90.578125 199.738281 90.015625 199.398438 89.71875 198.714844 C 89.421875 198.03125 89.273438 197.222656 89.273438 196.285156 C 89.273438 195.699219 89.328125 195.144531 89.433594 194.628906 C 89.539062 194.109375 89.75 193.667969 90.070312 193.308594 C 90.386719 192.945312 90.832031 192.765625 91.40625 192.765625 C 91.851562 192.765625 92.21875 192.875 92.5 193.089844 C 92.785156 193.308594 93 193.589844 93.148438 193.9375 C 93.296875 194.28125 93.398438 194.652344 93.453125 195.042969 C 93.507812 195.4375 93.535156 195.851562 93.535156 196.285156 C 93.535156 196.867188 93.480469 197.410156 93.371094 197.917969 C 93.265625 198.425781 93.054688 198.855469 92.742188 199.207031 C 92.429688 199.5625 91.984375 199.738281 91.40625 199.738281 Z M 91.40625 199.476562 C 91.78125 199.476562 92.0625 199.28125 92.246094 198.898438 C 92.433594 198.511719 92.546875 198.085938 92.589844 197.617188 C 92.632812 197.148438 92.65625 196.648438 92.65625 196.121094 C 92.65625 195.613281 92.632812 195.144531 92.589844 194.714844 C 92.546875 194.289062 92.433594 193.898438 92.25 193.550781 C 92.066406 193.203125 91.785156 193.03125 91.40625 193.03125 C 91.023438 193.03125 90.742188 193.203125 90.558594 193.554688 C 90.375 193.90625 90.261719 194.292969 90.21875 194.71875 C 90.175781 195.144531 90.152344 195.613281 90.152344 196.121094 C 90.152344 196.496094 90.160156 196.851562 90.179688 197.183594 C 90.199219 197.519531 90.246094 197.863281 90.324219 198.21875 C 90.402344 198.570312 90.53125 198.867188 90.707031 199.109375 C 90.886719 199.355469 91.117188 199.476562 91.40625 199.476562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 95.65625 196.042969 C 95.074219 196.042969 94.679688 195.800781 94.46875 195.320312 C 94.261719 194.839844 94.15625 194.269531 94.15625 193.609375 C 94.15625 193.199219 94.195312 192.808594 94.269531 192.445312 C 94.34375 192.078125 94.492188 191.769531 94.71875 191.515625 C 94.941406 191.261719 95.253906 191.132812 95.65625 191.132812 C 95.96875 191.132812 96.226562 191.210938 96.425781 191.363281 C 96.625 191.515625 96.777344 191.714844 96.882812 191.957031 C 96.988281 192.203125 97.058594 192.460938 97.09375 192.738281 C 97.132812 193.011719 97.152344 193.304688 97.152344 193.609375 C 97.152344 194.019531 97.113281 194.402344 97.039062 194.757812 C 96.964844 195.113281 96.820312 195.417969 96.597656 195.667969 C 96.378906 195.917969 96.0625 196.042969 95.65625 196.042969 Z M 95.65625 195.855469 C 95.921875 195.855469 96.121094 195.71875 96.25 195.445312 C 96.378906 195.175781 96.457031 194.875 96.488281 194.546875 C 96.519531 194.21875 96.535156 193.867188 96.535156 193.496094 C 96.535156 193.136719 96.519531 192.808594 96.488281 192.507812 C 96.457031 192.207031 96.378906 191.933594 96.25 191.6875 C 96.121094 191.445312 95.921875 191.320312 95.65625 191.320312 C 95.386719 191.320312 95.1875 191.445312 95.058594 191.6875 C 94.929688 191.933594 94.851562 192.207031 94.820312 192.507812 C 94.789062 192.808594 94.773438 193.136719 94.773438 193.496094 C 94.773438 193.757812 94.78125 194.007812 94.792969 194.242188 C 94.804688 194.476562 94.839844 194.71875 94.894531 194.96875 C 94.949219 195.21875 95.039062 195.429688 95.164062 195.597656 C 95.289062 195.769531 95.453125 195.855469 95.65625 195.855469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 167.3125 199.515625 L 167.3125 199.15625 C 168.15625 199.15625 168.578125 199.050781 168.578125 198.835938 L 168.578125 193.515625 C 168.230469 193.683594 167.789062 193.769531 167.257812 193.769531 L 167.257812 193.417969 C 168.085938 193.417969 168.710938 193.199219 169.132812 192.765625 L 169.269531 192.765625 C 169.296875 192.765625 169.316406 192.773438 169.339844 192.792969 C 169.359375 192.808594 169.371094 192.832031 169.371094 192.855469 L 169.371094 198.835938 C 169.371094 199.050781 169.792969 199.15625 170.636719 199.15625 L 170.636719 199.515625 L 167.3125 199.515625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 173.910156 199.738281 C 173.078125 199.738281 172.519531 199.398438 172.222656 198.714844 C 171.925781 198.03125 171.773438 197.222656 171.773438 196.285156 C 171.773438 195.699219 171.828125 195.144531 171.933594 194.628906 C 172.039062 194.109375 172.25 193.667969 172.570312 193.308594 C 172.886719 192.945312 173.335938 192.765625 173.910156 192.765625 C 174.355469 192.765625 174.71875 192.875 175 193.089844 C 175.285156 193.308594 175.5 193.589844 175.648438 193.9375 C 175.796875 194.28125 175.898438 194.652344 175.953125 195.042969 C 176.007812 195.4375 176.035156 195.851562 176.035156 196.285156 C 176.035156 196.867188 175.980469 197.410156 175.875 197.917969 C 175.765625 198.425781 175.558594 198.855469 175.242188 199.207031 C 174.933594 199.5625 174.484375 199.738281 173.910156 199.738281 Z M 173.910156 199.476562 C 174.285156 199.476562 174.5625 199.28125 174.75 198.898438 C 174.933594 198.511719 175.050781 198.085938 175.09375 197.617188 C 175.136719 197.148438 175.15625 196.648438 175.15625 196.121094 C 175.15625 195.613281 175.136719 195.144531 175.09375 194.714844 C 175.050781 194.289062 174.9375 193.898438 174.753906 193.550781 C 174.566406 193.203125 174.285156 193.03125 173.910156 193.03125 C 173.523438 193.03125 173.242188 193.203125 173.058594 193.554688 C 172.875 193.90625 172.761719 194.292969 172.71875 194.71875 C 172.675781 195.144531 172.652344 195.613281 172.652344 196.121094 C 172.652344 196.496094 172.664062 196.851562 172.679688 197.183594 C 172.699219 197.519531 172.746094 197.863281 172.824219 198.21875 C 172.902344 198.570312 173.03125 198.867188 173.207031 199.109375 C 173.386719 199.355469 173.617188 199.476562 173.910156 199.476562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 176.734375 195.882812 L 176.734375 195.691406 C 176.734375 195.679688 176.738281 195.667969 176.746094 195.65625 L 177.855469 194.429688 C 178.019531 194.246094 178.15625 194.09375 178.261719 193.972656 C 178.363281 193.851562 178.46875 193.710938 178.570312 193.550781 C 178.671875 193.390625 178.75 193.226562 178.808594 193.058594 C 178.867188 192.894531 178.898438 192.71875 178.898438 192.53125 C 178.898438 192.332031 178.863281 192.148438 178.789062 191.96875 C 178.722656 191.792969 178.613281 191.648438 178.472656 191.542969 C 178.328125 191.4375 178.15625 191.386719 177.953125 191.386719 C 177.746094 191.386719 177.5625 191.449219 177.398438 191.570312 C 177.234375 191.695312 177.117188 191.855469 177.050781 192.054688 C 177.066406 192.050781 177.09375 192.046875 177.128906 192.046875 C 177.230469 192.046875 177.324219 192.082031 177.398438 192.152344 C 177.476562 192.222656 177.515625 192.320312 177.515625 192.433594 C 177.515625 192.539062 177.476562 192.632812 177.398438 192.707031 C 177.324219 192.785156 177.230469 192.824219 177.128906 192.824219 C 177.015625 192.824219 176.921875 192.785156 176.847656 192.707031 C 176.769531 192.628906 176.734375 192.535156 176.734375 192.433594 C 176.734375 192.257812 176.769531 192.085938 176.835938 191.929688 C 176.898438 191.773438 176.996094 191.636719 177.125 191.511719 C 177.25 191.390625 177.394531 191.292969 177.550781 191.230469 C 177.710938 191.164062 177.878906 191.132812 178.058594 191.132812 C 178.328125 191.132812 178.578125 191.191406 178.8125 191.304688 C 179.050781 191.421875 179.234375 191.585938 179.371094 191.792969 C 179.507812 192.003906 179.574219 192.246094 179.574219 192.53125 C 179.574219 192.734375 179.53125 192.933594 179.441406 193.117188 C 179.351562 193.304688 179.238281 193.472656 179.097656 193.625 C 178.953125 193.777344 178.773438 193.949219 178.554688 194.140625 C 178.332031 194.332031 178.1875 194.460938 178.117188 194.527344 L 177.308594 195.304688 L 177.996094 195.304688 C 178.328125 195.304688 178.609375 195.300781 178.839844 195.292969 C 179.066406 195.289062 179.1875 195.28125 179.199219 195.269531 C 179.257812 195.210938 179.3125 194.992188 179.371094 194.609375 L 179.574219 194.609375 L 179.378906 195.882812 L 176.734375 195.882812 "/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -248.835825 L 496.468446 -597.744805 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -248.835825 L 1734.513186 -597.744805 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -252.232768 L 508.856709 -252.232768 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -366.284147 L 508.856709 -366.284147 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -480.296482 L 508.856709 -480.296482 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.468446 -594.308817 L 508.856709 -594.308817 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -252.232768 L 1722.124922 -252.232768 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -366.284147 L 1722.124922 -366.284147 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -480.296482 L 1722.124922 -480.296482 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1734.513186 -594.308817 L 1722.124922 -594.308817 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.402344 187.289062 L 27.402344 186.660156 L 30.085938 186.660156 L 30.085938 187.289062 L 27.402344 187.289062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 31.5625 189.164062 L 31.5625 188.808594 C 32.40625 188.808594 32.828125 188.699219 32.828125 188.484375 L 32.828125 183.164062 C 32.480469 183.332031 32.039062 183.417969 31.503906 183.417969 L 31.503906 183.066406 C 32.332031 183.066406 32.957031 182.847656 33.378906 182.414062 L 33.519531 182.414062 C 33.542969 182.414062 33.566406 182.421875 33.585938 182.441406 C 33.609375 182.460938 33.621094 182.480469 33.621094 182.503906 L 33.621094 188.484375 C 33.621094 188.699219 34.042969 188.808594 34.886719 188.808594 L 34.886719 189.164062 L 31.5625 189.164062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 36.054688 187.628906 C 36.054688 187.222656 36.1875 186.863281 36.453125 186.550781 C 36.71875 186.234375 37.058594 185.976562 37.476562 185.769531 L 37.101562 185.527344 C 36.871094 185.375 36.683594 185.175781 36.539062 184.921875 C 36.394531 184.667969 36.324219 184.40625 36.324219 184.128906 C 36.324219 183.800781 36.40625 183.511719 36.578125 183.25 C 36.746094 182.992188 36.972656 182.785156 37.253906 182.636719 C 37.535156 182.488281 37.835938 182.414062 38.15625 182.414062 C 38.457031 182.414062 38.746094 182.476562 39.023438 182.597656 C 39.300781 182.722656 39.53125 182.898438 39.710938 183.125 C 39.890625 183.351562 39.980469 183.621094 39.980469 183.933594 C 39.980469 184.160156 39.925781 184.371094 39.820312 184.566406 C 39.714844 184.761719 39.570312 184.9375 39.382812 185.09375 C 39.195312 185.246094 38.996094 185.378906 38.785156 185.488281 L 39.363281 185.855469 C 39.628906 186.03125 39.84375 186.261719 40.007812 186.546875 C 40.171875 186.828125 40.253906 187.128906 40.253906 187.441406 C 40.253906 187.808594 40.15625 188.144531 39.957031 188.445312 C 39.761719 188.746094 39.5 188.976562 39.179688 189.140625 C 38.855469 189.304688 38.515625 189.386719 38.15625 189.386719 C 37.808594 189.386719 37.472656 189.316406 37.144531 189.171875 C 36.820312 189.03125 36.554688 188.824219 36.355469 188.558594 C 36.152344 188.289062 36.054688 187.980469 36.054688 187.628906 Z M 36.597656 187.628906 C 36.597656 187.894531 36.671875 188.136719 36.816406 188.359375 C 36.964844 188.578125 37.160156 188.753906 37.402344 188.878906 C 37.644531 189.003906 37.894531 189.066406 38.15625 189.066406 C 38.546875 189.066406 38.902344 188.949219 39.222656 188.722656 C 39.542969 188.492188 39.703125 188.191406 39.703125 187.808594 C 39.703125 187.679688 39.679688 187.554688 39.628906 187.425781 C 39.578125 187.296875 39.507812 187.183594 39.417969 187.082031 C 39.328125 186.976562 39.226562 186.890625 39.113281 186.824219 L 37.753906 185.945312 C 37.542969 186.054688 37.347656 186.195312 37.171875 186.367188 C 36.996094 186.539062 36.855469 186.734375 36.753906 186.949219 C 36.648438 187.164062 36.597656 187.390625 36.597656 187.628906 Z M 37.296875 184.53125 L 38.519531 185.324219 C 38.804688 185.160156 39.039062 184.960938 39.21875 184.726562 C 39.402344 184.492188 39.492188 184.226562 39.492188 183.933594 C 39.492188 183.707031 39.429688 183.5 39.300781 183.308594 C 39.175781 183.121094 39.007812 182.972656 38.804688 182.867188 C 38.597656 182.761719 38.378906 182.707031 38.144531 182.707031 C 37.941406 182.707031 37.738281 182.746094 37.53125 182.824219 C 37.324219 182.902344 37.152344 183.023438 37.015625 183.179688 C 36.882812 183.339844 36.816406 183.523438 36.816406 183.734375 C 36.816406 184.050781 36.976562 184.316406 37.296875 184.53125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 43.15625 189.386719 C 42.328125 189.386719 41.765625 189.046875 41.46875 188.363281 C 41.171875 187.683594 41.023438 186.871094 41.023438 185.933594 C 41.023438 185.347656 41.078125 184.792969 41.183594 184.277344 C 41.289062 183.757812 41.5 183.320312 41.816406 182.957031 C 42.136719 182.59375 42.582031 182.414062 43.15625 182.414062 C 43.601562 182.414062 43.964844 182.523438 44.25 182.742188 C 44.53125 182.957031 44.75 183.238281 44.898438 183.585938 C 45.046875 183.929688 45.148438 184.300781 45.203125 184.695312 C 45.257812 185.085938 45.285156 185.5 45.285156 185.933594 C 45.285156 186.515625 45.230469 187.058594 45.121094 187.566406 C 45.015625 188.074219 44.804688 188.503906 44.492188 188.855469 C 44.179688 189.210938 43.734375 189.386719 43.15625 189.386719 Z M 43.15625 189.125 C 43.53125 189.125 43.8125 188.929688 43.996094 188.546875 C 44.183594 188.160156 44.296875 187.734375 44.339844 187.265625 C 44.382812 186.796875 44.40625 186.296875 44.40625 185.769531 C 44.40625 185.261719 44.382812 184.792969 44.339844 184.363281 C 44.296875 183.9375 44.183594 183.546875 44 183.199219 C 43.816406 182.851562 43.535156 182.679688 43.15625 182.679688 C 42.773438 182.679688 42.492188 182.855469 42.308594 183.203125 C 42.125 183.554688 42.011719 183.941406 41.96875 184.367188 C 41.925781 184.792969 41.902344 185.261719 41.902344 185.769531 C 41.902344 186.144531 41.910156 186.5 41.929688 186.832031 C 41.945312 187.167969 41.996094 187.511719 42.074219 187.867188 C 42.152344 188.21875 42.277344 188.519531 42.457031 188.761719 C 42.632812 189.003906 42.867188 189.125 43.15625 189.125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 32.402344 175.882812 L 32.402344 175.253906 L 35.085938 175.253906 L 35.085938 175.882812 L 32.402344 175.882812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 36.769531 177.328125 C 36.953125 177.546875 37.273438 177.65625 37.730469 177.65625 C 37.988281 177.65625 38.226562 177.570312 38.449219 177.398438 C 38.671875 177.222656 38.84375 177.007812 38.964844 176.753906 C 39.109375 176.464844 39.203125 176.160156 39.242188 175.835938 C 39.28125 175.511719 39.300781 175.105469 39.300781 174.625 C 39.183594 174.898438 39.015625 175.125 38.800781 175.296875 C 38.585938 175.472656 38.339844 175.558594 38.058594 175.558594 C 37.667969 175.558594 37.316406 175.453125 37.007812 175.242188 C 36.699219 175.03125 36.464844 174.75 36.300781 174.402344 C 36.136719 174.050781 36.054688 173.679688 36.054688 173.289062 C 36.054688 172.882812 36.144531 172.503906 36.328125 172.15625 C 36.511719 171.804688 36.765625 171.527344 37.09375 171.320312 C 37.417969 171.113281 37.789062 171.007812 38.203125 171.007812 C 38.613281 171.007812 38.957031 171.121094 39.230469 171.34375 C 39.507812 171.566406 39.71875 171.851562 39.863281 172.203125 C 40.007812 172.554688 40.109375 172.929688 40.167969 173.320312 C 40.226562 173.714844 40.253906 174.101562 40.253906 174.480469 C 40.253906 175.003906 40.160156 175.535156 39.96875 176.078125 C 39.777344 176.617188 39.488281 177.070312 39.109375 177.433594 C 38.726562 177.800781 38.269531 177.980469 37.730469 177.980469 C 37.332031 177.980469 36.992188 177.886719 36.71875 177.699219 C 36.441406 177.511719 36.304688 177.226562 36.304688 176.847656 C 36.304688 176.707031 36.351562 176.589844 36.445312 176.496094 C 36.539062 176.402344 36.65625 176.355469 36.792969 176.355469 C 36.929688 176.355469 37.042969 176.402344 37.136719 176.496094 C 37.230469 176.589844 37.277344 176.707031 37.277344 176.847656 C 37.277344 176.976562 37.230469 177.089844 37.132812 177.1875 C 37.039062 177.28125 36.925781 177.328125 36.792969 177.328125 Z M 38.097656 175.292969 C 38.375 175.292969 38.601562 175.199219 38.777344 175.011719 C 38.953125 174.824219 39.082031 174.59375 39.160156 174.320312 C 39.242188 174.042969 39.28125 173.769531 39.28125 173.496094 L 39.28125 173.261719 C 39.28125 172.75 39.207031 172.296875 39.058594 171.898438 C 38.910156 171.5 38.625 171.300781 38.203125 171.300781 C 37.9375 171.300781 37.722656 171.359375 37.554688 171.476562 C 37.390625 171.59375 37.265625 171.75 37.1875 171.945312 C 37.105469 172.136719 37.054688 172.34375 37.035156 172.566406 C 37.011719 172.785156 37.003906 173.027344 37.003906 173.289062 C 37.003906 173.671875 37.019531 174 37.058594 174.269531 C 37.09375 174.539062 37.195312 174.777344 37.355469 174.984375 C 37.519531 175.191406 37.765625 175.292969 38.097656 175.292969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 43.15625 177.980469 C 42.328125 177.980469 41.765625 177.640625 41.46875 176.957031 C 41.171875 176.277344 41.023438 175.464844 41.023438 174.527344 C 41.023438 173.941406 41.078125 173.386719 41.183594 172.871094 C 41.289062 172.351562 41.5 171.910156 41.816406 171.550781 C 42.136719 171.1875 42.582031 171.007812 43.15625 171.007812 C 43.601562 171.007812 43.964844 171.117188 44.25 171.332031 C 44.53125 171.550781 44.75 171.832031 44.898438 172.179688 C 45.046875 172.523438 45.148438 172.894531 45.203125 173.285156 C 45.257812 173.679688 45.285156 174.09375 45.285156 174.527344 C 45.285156 175.109375 45.230469 175.652344 45.121094 176.160156 C 45.015625 176.667969 44.804688 177.097656 44.492188 177.449219 C 44.179688 177.804688 43.734375 177.980469 43.15625 177.980469 Z M 43.15625 177.71875 C 43.53125 177.71875 43.8125 177.523438 43.996094 177.140625 C 44.183594 176.753906 44.296875 176.328125 44.339844 175.859375 C 44.382812 175.390625 44.40625 174.890625 44.40625 174.363281 C 44.40625 173.855469 44.382812 173.386719 44.339844 172.957031 C 44.296875 172.53125 44.183594 172.140625 44 171.792969 C 43.816406 171.445312 43.535156 171.273438 43.15625 171.273438 C 42.773438 171.273438 42.492188 171.445312 42.308594 171.796875 C 42.125 172.148438 42.011719 172.535156 41.96875 172.960938 C 41.925781 173.386719 41.902344 173.855469 41.902344 174.363281 C 41.902344 174.738281 41.910156 175.09375 41.929688 175.425781 C 41.945312 175.761719 41.996094 176.105469 42.074219 176.460938 C 42.152344 176.8125 42.277344 177.109375 42.457031 177.351562 C 42.632812 177.59375 42.867188 177.71875 43.15625 177.71875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 43.15625 166.574219 C 42.328125 166.574219 41.765625 166.234375 41.46875 165.550781 C 41.171875 164.867188 41.023438 164.058594 41.023438 163.121094 C 41.023438 162.53125 41.078125 161.980469 41.183594 161.464844 C 41.289062 160.945312 41.5 160.503906 41.816406 160.144531 C 42.136719 159.78125 42.582031 159.601562 43.15625 159.601562 C 43.601562 159.601562 43.964844 159.710938 44.25 159.925781 C 44.53125 160.144531 44.75 160.425781 44.898438 160.769531 C 45.046875 161.117188 45.148438 161.484375 45.203125 161.878906 C 45.257812 162.273438 45.285156 162.683594 45.285156 163.121094 C 45.285156 163.703125 45.230469 164.246094 45.121094 164.753906 C 45.015625 165.257812 44.804688 165.691406 44.492188 166.042969 C 44.179688 166.398438 43.734375 166.574219 43.15625 166.574219 Z M 43.15625 166.308594 C 43.53125 166.308594 43.8125 166.117188 43.996094 165.730469 C 44.183594 165.347656 44.296875 164.917969 44.339844 164.449219 C 44.382812 163.980469 44.40625 163.484375 44.40625 162.957031 C 44.40625 162.449219 44.382812 161.980469 44.339844 161.550781 C 44.296875 161.121094 44.183594 160.734375 44 160.386719 C 43.816406 160.039062 43.535156 159.863281 43.15625 159.863281 C 42.773438 159.863281 42.492188 160.039062 42.308594 160.390625 C 42.125 160.738281 42.011719 161.128906 41.96875 161.554688 C 41.925781 161.980469 41.902344 162.449219 41.902344 162.957031 C 41.902344 163.332031 41.910156 163.683594 41.929688 164.019531 C 41.945312 164.355469 41.996094 164.699219 42.074219 165.050781 C 42.152344 165.40625 42.277344 165.703125 42.457031 165.945312 C 42.632812 166.1875 42.867188 166.308594 43.15625 166.308594 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 36.769531 154.515625 C 36.953125 154.734375 37.273438 154.84375 37.730469 154.84375 C 37.988281 154.84375 38.226562 154.757812 38.449219 154.582031 C 38.671875 154.410156 38.84375 154.195312 38.964844 153.941406 C 39.109375 153.652344 39.203125 153.34375 39.242188 153.019531 C 39.28125 152.695312 39.300781 152.292969 39.300781 151.8125 C 39.183594 152.085938 39.015625 152.308594 38.800781 152.484375 C 38.585938 152.65625 38.339844 152.746094 38.058594 152.746094 C 37.667969 152.746094 37.316406 152.640625 37.007812 152.429688 C 36.699219 152.21875 36.464844 151.9375 36.300781 151.585938 C 36.136719 151.238281 36.054688 150.867188 36.054688 150.476562 C 36.054688 150.070312 36.144531 149.691406 36.328125 149.339844 C 36.511719 148.992188 36.765625 148.710938 37.09375 148.503906 C 37.417969 148.296875 37.789062 148.195312 38.203125 148.195312 C 38.613281 148.195312 38.957031 148.304688 39.230469 148.527344 C 39.507812 148.75 39.71875 149.039062 39.863281 149.390625 C 40.007812 149.742188 40.109375 150.113281 40.167969 150.507812 C 40.226562 150.902344 40.253906 151.285156 40.253906 151.664062 C 40.253906 152.191406 40.160156 152.722656 39.96875 153.265625 C 39.777344 153.804688 39.488281 154.257812 39.109375 154.621094 C 38.726562 154.984375 38.269531 155.167969 37.730469 155.167969 C 37.332031 155.167969 36.992188 155.074219 36.71875 154.886719 C 36.441406 154.699219 36.304688 154.414062 36.304688 154.035156 C 36.304688 153.894531 36.351562 153.777344 36.445312 153.683594 C 36.539062 153.589844 36.65625 153.542969 36.792969 153.542969 C 36.929688 153.542969 37.042969 153.589844 37.136719 153.683594 C 37.230469 153.777344 37.277344 153.894531 37.277344 154.035156 C 37.277344 154.164062 37.230469 154.277344 37.132812 154.371094 C 37.039062 154.46875 36.925781 154.515625 36.792969 154.515625 Z M 38.097656 152.480469 C 38.375 152.480469 38.601562 152.386719 38.777344 152.199219 C 38.953125 152.011719 39.082031 151.78125 39.160156 151.503906 C 39.242188 151.230469 39.28125 150.953125 39.28125 150.679688 L 39.28125 150.445312 C 39.28125 149.9375 39.207031 149.484375 39.058594 149.085938 C 38.910156 148.6875 38.625 148.488281 38.203125 148.488281 C 37.9375 148.488281 37.722656 148.546875 37.554688 148.664062 C 37.390625 148.78125 37.265625 148.933594 37.1875 149.128906 C 37.105469 149.324219 37.054688 149.53125 37.035156 149.75 C 37.011719 149.972656 37.003906 150.214844 37.003906 150.476562 C 37.003906 150.859375 37.019531 151.183594 37.058594 151.453125 C 37.09375 151.722656 37.195312 151.964844 37.355469 152.167969 C 37.519531 152.378906 37.765625 152.480469 38.097656 152.480469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 43.15625 155.167969 C 42.328125 155.167969 41.765625 154.824219 41.46875 154.144531 C 41.171875 153.460938 41.023438 152.652344 41.023438 151.714844 C 41.023438 151.125 41.078125 150.574219 41.183594 150.054688 C 41.289062 149.539062 41.5 149.097656 41.816406 148.734375 C 42.136719 148.375 42.582031 148.195312 43.15625 148.195312 C 43.601562 148.195312 43.964844 148.300781 44.25 148.519531 C 44.53125 148.734375 44.75 149.019531 44.898438 149.363281 C 45.046875 149.710938 45.148438 150.078125 45.203125 150.472656 C 45.257812 150.863281 45.285156 151.277344 45.285156 151.714844 C 45.285156 152.296875 45.230469 152.839844 45.121094 153.34375 C 45.015625 153.851562 44.804688 154.28125 44.492188 154.636719 C 44.179688 154.988281 43.734375 155.167969 43.15625 155.167969 Z M 43.15625 154.902344 C 43.53125 154.902344 43.8125 154.710938 43.996094 154.324219 C 44.183594 153.941406 44.296875 153.511719 44.339844 153.042969 C 44.382812 152.574219 44.40625 152.078125 44.40625 151.546875 C 44.40625 151.039062 44.382812 150.570312 44.339844 150.144531 C 44.296875 149.714844 44.183594 149.328125 44 148.980469 C 43.816406 148.632812 43.535156 148.457031 43.15625 148.457031 C 42.773438 148.457031 42.492188 148.632812 42.308594 148.984375 C 42.125 149.332031 42.011719 149.71875 41.96875 150.148438 C 41.925781 150.574219 41.902344 151.039062 41.902344 151.546875 C 41.902344 151.921875 41.910156 152.277344 41.929688 152.613281 C 41.945312 152.949219 41.996094 153.289062 42.074219 153.644531 C 42.152344 154 42.277344 154.296875 42.457031 154.539062 C 42.632812 154.78125 42.867188 154.902344 43.15625 154.902344 "/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="21.6668" y="185.9793"/>
<use xlink:href="#glyph0-2" x="21.6668" y="179.863862"/>
<use xlink:href="#glyph0-3" x="21.6668" y="174.298914"/>
<use xlink:href="#glyph0-4" x="21.6668" y="171.516439"/>
<use xlink:href="#glyph0-5" x="21.6668" y="168.733965"/>
<use xlink:href="#glyph0-7" x="21.6668" y="161.507539"/>
</g>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.312127 -366.557465 L 509.208427 -366.557465 L 536.720532 -366.59651 L 646.768953 -366.908873 L 701.793164 -367.221235 L 729.305269 -367.455507 L 756.856454 -367.728824 L 769.049319 -367.924051 L 792.692535 -368.353549 L 812.388701 -368.900184 L 828.802173 -369.603 L 842.480066 -370.501042 L 853.852257 -371.633356 L 863.348623 -373.195169 L 871.281801 -375.303616 L 877.88627 -378.349151 L 883.357427 -382.956499 L 887.929752 -390.414155 L 891.759562 -403.923836 L 894.925017 -431.060333 L 897.582436 -478.695624 L 900.200776 -527.385138 L 903.405311 -555.497768 L 907.196041 -569.397902 L 911.768366 -577.01174 L 917.278603 -581.697178 L 923.843991 -584.742713 L 931.777169 -586.890206 L 941.273535 -588.452019 L 952.645727 -589.623378 L 966.32362 -590.482375 L 982.737092 -591.185191 L 1002.433258 -591.69278 L 1026.076474 -592.083233 L 1031.977508 -592.161324 L 1059.489613 -592.395596 L 1087.001718 -592.551777 L 1114.513824 -592.590823 L 1142.065009 -592.590823 L 1169.577114 -592.512732 L 1197.089219 -592.317505 L 1220.341638 -592.083233 L 1243.984853 -591.69278 L 1263.68102 -591.185191 L 1280.055412 -590.482375 L 1293.733305 -589.623378 L 1305.144576 -588.491064 L 1314.640942 -586.929251 L 1322.53504 -584.820804 L 1329.139509 -581.775269 L 1334.610666 -577.167921 L 1339.22207 -569.710265 L 1343.012801 -556.200584 L 1346.217336 -529.064087 L 1348.835675 -481.428796 L 1351.493094 -432.778328 L 1354.65855 -404.626652 L 1358.48836 -390.726518 L 1363.060684 -383.11268 L 1368.531842 -378.427242 L 1375.13631 -375.342662 L 1383.069488 -373.234214 L 1392.526774 -371.672402 L 1403.938045 -370.501042 L 1417.615939 -369.603 L 1434.02941 -368.900184 L 1453.725577 -368.353549 L 1477.368792 -367.924051 L 1499.722378 -367.611688 L 1527.273563 -367.377416 L 1554.785668 -367.18219 L 1609.809879 -366.869827 L 1692.346195 -366.635555 L 1719.8583 -366.59651 L 1734.669505 -366.557465 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 179.375 63.246094 L 302.75 63.246094 L 302.75 24.214844 L 179.375 24.214844 Z M 179.375 63.246094 "/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1486.884833 L 3028.832686 -1486.884833 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1877.025671 L 3028.832686 -1877.025671 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -1486.884833 L 2205.970627 -1499.223154 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1486.884833 L 3028.832686 -1499.223154 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -1877.025671 L 2205.970627 -1864.68735 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1877.025671 L 3028.832686 -1864.68735 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1486.884833 L 1794.539597 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1918.383151 -1486.884833 L 1918.383151 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1990.836906 -1486.884833 L 1990.836906 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2042.265784 -1486.884833 L 2042.265784 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2082.127073 -1486.884833 L 2082.127073 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2114.719539 -1486.884833 L 2114.719539 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2142.231644 -1486.884833 L 2142.231644 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2166.109338 -1486.884833 L 2166.109338 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2187.134214 -1486.884833 L 2187.134214 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -1486.884833 L 2205.970627 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2329.814181 -1486.884833 L 2329.814181 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2402.267935 -1486.884833 L 2402.267935 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2453.696814 -1486.884833 L 2453.696814 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2493.558103 -1486.884833 L 2493.558103 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2526.111489 -1486.884833 L 2526.111489 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2553.662674 -1486.884833 L 2553.662674 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2577.540368 -1486.884833 L 2577.540368 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2598.565244 -1486.884833 L 2598.565244 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2617.401657 -1486.884833 L 2617.401657 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2741.24521 -1486.884833 L 2741.24521 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2813.698965 -1486.884833 L 2813.698965 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2865.127844 -1486.884833 L 2865.127844 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2904.989133 -1486.884833 L 2904.989133 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2937.542519 -1486.884833 L 2937.542519 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2965.093704 -1486.884833 L 2965.093704 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2988.971397 -1486.884833 L 2988.971397 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3009.996273 -1486.884833 L 3009.996273 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1486.884833 L 3028.832686 -1493.053994 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1877.025671 L 1794.539597 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1918.383151 -1877.025671 L 1918.383151 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1990.836906 -1877.025671 L 1990.836906 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2042.265784 -1877.025671 L 2042.265784 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2082.127073 -1877.025671 L 2082.127073 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2114.719539 -1877.025671 L 2114.719539 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2142.231644 -1877.025671 L 2142.231644 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2166.109338 -1877.025671 L 2166.109338 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2187.134214 -1877.025671 L 2187.134214 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -1877.025671 L 2205.970627 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2329.814181 -1877.025671 L 2329.814181 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2402.267935 -1877.025671 L 2402.267935 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2453.696814 -1877.025671 L 2453.696814 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2493.558103 -1877.025671 L 2493.558103 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2526.111489 -1877.025671 L 2526.111489 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2553.662674 -1877.025671 L 2553.662674 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2577.540368 -1877.025671 L 2577.540368 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2598.565244 -1877.025671 L 2598.565244 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2617.401657 -1877.025671 L 2617.401657 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2741.24521 -1877.025671 L 2741.24521 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2813.698965 -1877.025671 L 2813.698965 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2865.127844 -1877.025671 L 2865.127844 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2904.989133 -1877.025671 L 2904.989133 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2937.542519 -1877.025671 L 2937.542519 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2965.093704 -1877.025671 L 2965.093704 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2988.971397 -1877.025671 L 2988.971397 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3009.996273 -1877.025671 L 3009.996273 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1877.025671 L 3028.832686 -1870.856511 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1486.884833 L 1794.539597 -1877.025671 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1486.884833 L 3028.832686 -1877.025671 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1573.877806 L 1806.888781 -1573.877806 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1725.451739 L 1806.888781 -1725.451739 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1877.025671 L 1806.888781 -1877.025671 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1573.877806 L 3016.483503 -1573.877806 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1725.451739 L 3016.483503 -1725.451739 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1877.025671 L 3016.483503 -1877.025671 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="218.941" y="20.648"/>
<use xlink:href="#glyph1-2" x="225.051062" y="20.648"/>
<use xlink:href="#glyph1-3" x="228.381096" y="20.648"/>
<use xlink:href="#glyph1-4" x="233.941153" y="20.648"/>
<use xlink:href="#glyph1-5" x="242.271238" y="20.648"/>
<use xlink:href="#glyph1-6" x="245.051267" y="20.648"/>
<use xlink:href="#glyph1-1" x="247.831295" y="20.648"/>
<use xlink:href="#glyph1-8" x="253.941358" y="20.648"/>
</g>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.383279 -1663.877269 L 1807.240498 -1665.79049 L 1834.674444 -1670.007384 L 1862.10839 -1674.185233 L 1889.542336 -1678.480219 L 1916.976282 -1682.853295 L 1944.371148 -1687.343506 L 1971.805094 -1692.028945 L 1999.23904 -1696.90961 L 2026.672986 -1702.180728 L 2054.106932 -1707.998481 L 2066.299797 -1710.848789 L 2089.864853 -1716.939859 L 2109.48286 -1722.913793 L 2125.857252 -1728.887727 L 2139.496066 -1734.939752 L 2150.868257 -1741.187003 L 2160.325543 -1747.668526 L 2168.219642 -1754.579547 L 2174.78503 -1762.037204 L 2180.256188 -1770.314811 L 2184.828512 -1779.724734 L 2188.619242 -1790.618378 L 2191.784698 -1802.44911 L 2194.403037 -1808.969678 L 2197.060457 -1802.917654 L 2200.225912 -1791.086922 L 2204.016642 -1780.076141 L 2208.588967 -1770.588129 L 2214.060124 -1762.271476 L 2220.625513 -1754.813819 L 2228.519611 -1747.902798 L 2237.976897 -1741.421275 L 2249.349089 -1735.252114 L 2262.987902 -1729.239135 L 2279.362294 -1723.343291 L 2298.980301 -1717.486493 L 2322.545357 -1711.551605 L 2328.446391 -1710.224064 L 2355.841258 -1704.523447 L 2383.314283 -1699.564692 L 2410.748229 -1695.113525 L 2438.143095 -1691.169948 L 2465.577041 -1687.694914 L 2493.010987 -1684.844606 L 2516.224326 -1683.009476 L 2539.789382 -1681.955252 L 2559.407389 -1682.033343 L 2575.781781 -1683.087566 L 2589.381515 -1685.078878 L 2600.753707 -1687.929186 L 2610.210993 -1691.599446 L 2618.105091 -1696.128703 L 2624.67048 -1701.634093 L 2630.141637 -1708.232753 L 2634.713962 -1716.276089 L 2638.504692 -1726.076464 L 2641.709227 -1736.931063 L 2644.327567 -1742.670725 L 2646.984986 -1735.876839 L 2650.150441 -1723.069974 L 2653.941172 -1710.92688 L 2658.513496 -1700.072281 L 2663.984653 -1690.115724 L 2670.550042 -1680.705802 L 2678.44414 -1671.452061 L 2687.901427 -1662.12023 L 2699.273618 -1652.515081 L 2712.873352 -1642.441388 L 2729.247744 -1631.625835 L 2748.904831 -1619.873193 L 2772.469887 -1606.832056 L 2794.784393 -1595.196551 L 2822.218339 -1581.491644 L 2849.652285 -1568.294325 L 2877.08623 -1555.40937 L 2904.481097 -1542.719641 L 2931.915043 -1530.186093 L 2959.348989 -1517.769681 L 2986.782934 -1505.43136 L 3014.21688 -1493.132084 L 3028.40281 -1486.806743 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 179.375 102.65625 L 302.75 102.65625 L 302.75 67.75 L 179.375 67.75 Z M 179.375 102.65625 "/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1092.956599 L 3028.832686 -1092.956599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1441.865579 L 3028.832686 -1441.865579 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -1092.956599 L 2205.970627 -1105.29492 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1092.956599 L 3028.832686 -1105.29492 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -1441.865579 L 2205.970627 -1429.488213 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1441.865579 L 3028.832686 -1429.488213 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1092.956599 L 1794.539597 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1918.383151 -1092.956599 L 1918.383151 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1990.836906 -1092.956599 L 1990.836906 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2042.265784 -1092.956599 L 2042.265784 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2082.127073 -1092.956599 L 2082.127073 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2114.719539 -1092.956599 L 2114.719539 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2142.231644 -1092.956599 L 2142.231644 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2166.109338 -1092.956599 L 2166.109338 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2187.134214 -1092.956599 L 2187.134214 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -1092.956599 L 2205.970627 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2329.814181 -1092.956599 L 2329.814181 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2402.267935 -1092.956599 L 2402.267935 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2453.696814 -1092.956599 L 2453.696814 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2493.558103 -1092.956599 L 2493.558103 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2526.111489 -1092.956599 L 2526.111489 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2553.662674 -1092.956599 L 2553.662674 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2577.540368 -1092.956599 L 2577.540368 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2598.565244 -1092.956599 L 2598.565244 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2617.401657 -1092.956599 L 2617.401657 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2741.24521 -1092.956599 L 2741.24521 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2813.698965 -1092.956599 L 2813.698965 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2865.127844 -1092.956599 L 2865.127844 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2904.989133 -1092.956599 L 2904.989133 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2937.542519 -1092.956599 L 2937.542519 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2965.093704 -1092.956599 L 2965.093704 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2988.971397 -1092.956599 L 2988.971397 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3009.996273 -1092.956599 L 3009.996273 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1092.956599 L 3028.832686 -1099.12576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1441.865579 L 1794.539597 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1918.383151 -1441.865579 L 1918.383151 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1990.836906 -1441.865579 L 1990.836906 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2042.265784 -1441.865579 L 2042.265784 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2082.127073 -1441.865579 L 2082.127073 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2114.719539 -1441.865579 L 2114.719539 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2142.231644 -1441.865579 L 2142.231644 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2166.109338 -1441.865579 L 2166.109338 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2187.134214 -1441.865579 L 2187.134214 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -1441.865579 L 2205.970627 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2329.814181 -1441.865579 L 2329.814181 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2402.267935 -1441.865579 L 2402.267935 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2453.696814 -1441.865579 L 2453.696814 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2493.558103 -1441.865579 L 2493.558103 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2526.111489 -1441.865579 L 2526.111489 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2553.662674 -1441.865579 L 2553.662674 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2577.540368 -1441.865579 L 2577.540368 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2598.565244 -1441.865579 L 2598.565244 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2617.401657 -1441.865579 L 2617.401657 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2741.24521 -1441.865579 L 2741.24521 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2813.698965 -1441.865579 L 2813.698965 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2865.127844 -1441.865579 L 2865.127844 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2904.989133 -1441.865579 L 2904.989133 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2937.542519 -1441.865579 L 2937.542519 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2965.093704 -1441.865579 L 2965.093704 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2988.971397 -1441.865579 L 2988.971397 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3009.996273 -1441.865579 L 3009.996273 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1441.865579 L 3028.832686 -1435.696419 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1092.956599 L 1794.539597 -1441.865579 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1092.956599 L 3028.832686 -1441.865579 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1096.353542 L 1806.888781 -1096.353542 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1210.404922 L 1806.888781 -1210.404922 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1324.417256 L 1806.888781 -1324.417256 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1438.429591 L 1806.888781 -1438.429591 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1096.353542 L 3016.483503 -1096.353542 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1210.404922 L 3016.483503 -1210.404922 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1324.417256 L 3016.483503 -1324.417256 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1438.429591 L 3016.483503 -1438.429591 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.383279 -1096.626859 L 1807.240498 -1096.665905 L 1834.674444 -1096.70495 L 1862.10839 -1096.78304 L 1889.542336 -1096.822086 L 1916.976282 -1096.939222 L 1944.371148 -1097.017312 L 1999.23904 -1097.329675 L 2026.672986 -1097.524902 L 2054.106932 -1097.837264 L 2066.299797 -1097.993445 L 2089.864853 -1098.461989 L 2109.48286 -1099.008624 L 2125.857252 -1099.711439 L 2139.496066 -1100.570437 L 2150.868257 -1101.741796 L 2160.325543 -1103.303609 L 2168.219642 -1105.412056 L 2174.78503 -1108.457591 L 2180.256188 -1113.064939 L 2184.828512 -1120.522595 L 2188.619242 -1134.032276 L 2191.784698 -1161.168773 L 2194.403037 -1208.804064 L 2197.060457 -1257.454533 L 2200.225912 -1285.606208 L 2204.016642 -1299.506342 L 2208.588967 -1307.12018 L 2214.060124 -1311.805618 L 2220.625513 -1314.851153 L 2228.519611 -1316.998646 L 2237.976897 -1318.560458 L 2249.349089 -1319.692773 L 2262.987902 -1320.590815 L 2279.362294 -1321.254585 L 2298.980301 -1321.80122 L 2322.545357 -1322.191673 L 2328.446391 -1322.269764 L 2355.841258 -1322.504036 L 2383.314283 -1322.660217 L 2410.748229 -1322.699262 L 2438.143095 -1322.699262 L 2465.577041 -1322.621172 L 2493.010987 -1322.425945 L 2516.224326 -1322.191673 L 2539.789382 -1321.80122 L 2559.407389 -1321.254585 L 2575.781781 -1320.590815 L 2589.381515 -1319.731818 L 2600.753707 -1318.560458 L 2610.210993 -1317.037691 L 2618.105091 -1314.929244 L 2624.67048 -1311.883709 L 2630.141637 -1307.276361 L 2634.713962 -1299.818705 L 2638.504692 -1286.309024 L 2641.709227 -1259.172527 L 2644.327567 -1211.537236 L 2646.984986 -1162.847722 L 2650.150441 -1134.735092 L 2653.941172 -1120.834958 L 2658.513496 -1113.182075 L 2663.984653 -1108.535682 L 2670.550042 -1105.451102 L 2678.44414 -1103.303609 L 2687.901427 -1101.741796 L 2699.273618 -1100.609482 L 2712.873352 -1099.711439 L 2729.247744 -1099.008624 L 2748.904831 -1098.461989 L 2772.469887 -1098.032491 L 2794.784393 -1097.720128 L 2822.218339 -1097.446811 L 2849.652285 -1097.251584 L 2877.08623 -1097.095403 L 2904.481097 -1096.978267 L 2986.782934 -1096.743995 L 3014.21688 -1096.70495 L 3028.989005 -1096.665905 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 179.375 147.695312 L 302.75 147.695312 L 302.75 108.664062 L 179.375 108.664062 Z M 179.375 147.695312 "/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -642.764059 L 3028.832686 -642.764059 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1032.904897 L 3028.832686 -1032.904897 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -642.764059 L 2205.970627 -655.10238 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -642.764059 L 3028.832686 -655.10238 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -1032.904897 L 2205.970627 -1020.566576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1032.904897 L 3028.832686 -1020.566576 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -642.764059 L 1794.539597 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1918.383151 -642.764059 L 1918.383151 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1990.836906 -642.764059 L 1990.836906 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2042.265784 -642.764059 L 2042.265784 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2082.127073 -642.764059 L 2082.127073 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2114.719539 -642.764059 L 2114.719539 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2142.231644 -642.764059 L 2142.231644 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2166.109338 -642.764059 L 2166.109338 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2187.134214 -642.764059 L 2187.134214 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -642.764059 L 2205.970627 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2329.814181 -642.764059 L 2329.814181 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2402.267935 -642.764059 L 2402.267935 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2453.696814 -642.764059 L 2453.696814 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2493.558103 -642.764059 L 2493.558103 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2526.111489 -642.764059 L 2526.111489 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2553.662674 -642.764059 L 2553.662674 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2577.540368 -642.764059 L 2577.540368 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2598.565244 -642.764059 L 2598.565244 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2617.401657 -642.764059 L 2617.401657 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2741.24521 -642.764059 L 2741.24521 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2813.698965 -642.764059 L 2813.698965 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2865.127844 -642.764059 L 2865.127844 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2904.989133 -642.764059 L 2904.989133 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2937.542519 -642.764059 L 2937.542519 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2965.093704 -642.764059 L 2965.093704 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2988.971397 -642.764059 L 2988.971397 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3009.996273 -642.764059 L 3009.996273 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -642.764059 L 3028.832686 -648.933219 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1032.904897 L 1794.539597 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1918.383151 -1032.904897 L 1918.383151 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1990.836906 -1032.904897 L 1990.836906 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2042.265784 -1032.904897 L 2042.265784 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2082.127073 -1032.904897 L 2082.127073 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2114.719539 -1032.904897 L 2114.719539 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2142.231644 -1032.904897 L 2142.231644 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2166.109338 -1032.904897 L 2166.109338 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2187.134214 -1032.904897 L 2187.134214 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -1032.904897 L 2205.970627 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2329.814181 -1032.904897 L 2329.814181 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2402.267935 -1032.904897 L 2402.267935 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2453.696814 -1032.904897 L 2453.696814 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2493.558103 -1032.904897 L 2493.558103 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2526.111489 -1032.904897 L 2526.111489 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2553.662674 -1032.904897 L 2553.662674 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2577.540368 -1032.904897 L 2577.540368 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2598.565244 -1032.904897 L 2598.565244 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2617.401657 -1032.904897 L 2617.401657 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2741.24521 -1032.904897 L 2741.24521 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2813.698965 -1032.904897 L 2813.698965 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2865.127844 -1032.904897 L 2865.127844 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2904.989133 -1032.904897 L 2904.989133 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2937.542519 -1032.904897 L 2937.542519 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2965.093704 -1032.904897 L 2965.093704 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2988.971397 -1032.904897 L 2988.971397 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3009.996273 -1032.904897 L 3009.996273 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1032.904897 L 3028.832686 -1026.735736 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -642.764059 L 1794.539597 -1032.904897 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -642.764059 L 3028.832686 -1032.904897 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -729.757032 L 1806.888781 -729.757032 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -881.330964 L 1806.888781 -881.330964 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -1032.904897 L 1806.888781 -1032.904897 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -729.757032 L 3016.483503 -729.757032 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -881.330964 L 3016.483503 -881.330964 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -1032.904897 L 3016.483503 -1032.904897 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.383279 -851.031796 L 1890.36301 -851.031796 L 1918.304992 -851.070841 L 1974.228035 -851.070841 L 2002.209097 -851.109887 L 2058.093061 -851.187977 L 2114.055184 -851.344159 L 2141.997166 -851.461295 L 2169.939148 -851.656521 L 2197.92021 -851.890793 L 2225.862192 -852.203156 L 2253.843254 -852.632654 L 2281.785236 -853.257379 L 2309.766297 -854.155422 L 2337.708279 -855.404872 L 2365.689341 -857.200957 L 2377.29601 -858.17709 L 2400.861066 -860.793126 L 2420.479073 -863.838661 L 2436.853466 -867.391785 L 2450.492279 -871.452498 L 2461.825391 -875.981756 L 2471.321757 -881.057647 L 2479.176775 -886.797309 L 2485.781244 -893.278832 L 2491.252401 -900.736488 L 2495.785646 -909.443595 L 2499.615456 -919.790605 L 2502.780911 -931.152793 L 2505.399251 -937.282908 L 2508.05667 -930.84043 L 2511.222125 -918.541154 L 2515.012856 -906.944694 L 2519.58518 -896.792911 L 2525.056337 -887.656306 L 2531.621726 -879.222517 L 2539.515824 -871.140136 L 2548.973111 -863.213936 L 2560.345302 -855.326781 L 2573.984116 -847.2444 L 2590.358508 -838.849656 L 2609.976515 -829.986368 L 2633.541571 -820.420265 L 2645.265479 -816.008144 L 2673.246541 -805.934451 L 2701.188523 -796.446439 L 2729.169585 -787.348879 L 2757.111567 -778.485591 L 2785.092628 -769.778485 L 2813.03461 -761.22756 L 2841.015672 -752.754725 L 2868.957654 -744.320936 L 2896.938716 -735.965238 L 2952.822679 -719.331931 L 2980.803741 -711.054324 L 3008.745723 -702.776716 L 3028.989005 -696.802782 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.383279 -876.723617 L 1807.240498 -876.762662 L 1834.674444 -876.879798 L 1862.10839 -877.075024 L 1889.542336 -877.348342 L 1916.976282 -877.69975 L 1944.371148 -878.168293 L 1971.805094 -878.832064 L 1999.23904 -879.769152 L 2026.672986 -881.096692 L 2054.106932 -882.970868 L 2066.299797 -884.064137 L 2089.864853 -886.836355 L 2109.48286 -890.077116 L 2125.857252 -893.825467 L 2139.496066 -898.003316 L 2150.868257 -902.7278 L 2160.325543 -907.959873 L 2168.219642 -913.816671 L 2174.78503 -920.454375 L 2180.256188 -927.990122 L 2184.828512 -936.814364 L 2188.619242 -947.239465 L 2191.784698 -958.679743 L 2194.403037 -964.848904 L 2197.060457 -958.484517 L 2200.225912 -946.263332 L 2204.016642 -934.744962 L 2208.588967 -924.74936 L 2214.060124 -915.768937 L 2220.625513 -907.491329 L 2228.519611 -899.682265 L 2237.976897 -892.107473 L 2249.349089 -884.649817 L 2262.987902 -877.19216 L 2279.362294 -869.656414 L 2298.980301 -862.003531 L 2322.545357 -854.194467 L 2328.446391 -852.437428 L 2355.841258 -845.135953 L 2383.314283 -839.044883 L 2410.748229 -834.125172 L 2438.143095 -830.259686 L 2465.577041 -827.526513 L 2493.010987 -825.964701 L 2516.224326 -825.652338 L 2539.789382 -826.47229 L 2559.407389 -828.346465 L 2575.781781 -831.040592 L 2589.381515 -834.47658 L 2600.753707 -838.576339 L 2610.210993 -843.339868 L 2618.105091 -848.806213 L 2624.67048 -855.092509 L 2630.141637 -862.393984 L 2634.713962 -870.983955 L 2638.504692 -881.213828 L 2641.709227 -892.497926 L 2644.327567 -898.549951 L 2646.984986 -892.068427 L 2650.150441 -879.691061 L 2653.941172 -868.01651 L 2658.513496 -857.747591 L 2663.984653 -848.532896 L 2670.550042 -839.942925 L 2678.44414 -831.704363 L 2687.901427 -823.661027 L 2699.273618 -815.578645 L 2712.873352 -807.340083 L 2729.247744 -798.789158 L 2748.904831 -789.769689 L 2772.469887 -780.047404 L 2794.784393 -771.57457 L 2822.218339 -761.852285 L 2849.652285 -752.598544 L 2877.08623 -743.696211 L 2904.481097 -735.02815 L 2931.915043 -726.477225 L 2959.348989 -718.082481 L 2986.782934 -709.765828 L 3014.21688 -701.527266 L 3028.989005 -697.115144 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 179.375 187.105469 L 302.75 187.105469 L 302.75 152.199219 L 179.375 152.199219 Z M 179.375 187.105469 "/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -248.835825 L 3028.832686 -248.835825 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -597.744805 L 3028.832686 -597.744805 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -248.835825 L 2205.970627 -261.174146 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -248.835825 L 3028.832686 -261.174146 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -597.744805 L 2205.970627 -585.367438 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -597.744805 L 3028.832686 -585.367438 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -248.835825 L 1794.539597 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1918.383151 -248.835825 L 1918.383151 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1990.836906 -248.835825 L 1990.836906 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2042.265784 -248.835825 L 2042.265784 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2082.127073 -248.835825 L 2082.127073 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2114.719539 -248.835825 L 2114.719539 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2142.231644 -248.835825 L 2142.231644 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2166.109338 -248.835825 L 2166.109338 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2187.134214 -248.835825 L 2187.134214 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -248.835825 L 2205.970627 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2329.814181 -248.835825 L 2329.814181 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2402.267935 -248.835825 L 2402.267935 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2453.696814 -248.835825 L 2453.696814 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2493.558103 -248.835825 L 2493.558103 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2526.111489 -248.835825 L 2526.111489 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2553.662674 -248.835825 L 2553.662674 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2577.540368 -248.835825 L 2577.540368 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2598.565244 -248.835825 L 2598.565244 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2617.401657 -248.835825 L 2617.401657 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2741.24521 -248.835825 L 2741.24521 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2813.698965 -248.835825 L 2813.698965 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2865.127844 -248.835825 L 2865.127844 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2904.989133 -248.835825 L 2904.989133 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2937.542519 -248.835825 L 2937.542519 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2965.093704 -248.835825 L 2965.093704 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2988.971397 -248.835825 L 2988.971397 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3009.996273 -248.835825 L 3009.996273 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -248.835825 L 3028.832686 -255.004985 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -597.744805 L 1794.539597 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1918.383151 -597.744805 L 1918.383151 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1990.836906 -597.744805 L 1990.836906 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2042.265784 -597.744805 L 2042.265784 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2082.127073 -597.744805 L 2082.127073 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2114.719539 -597.744805 L 2114.719539 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2142.231644 -597.744805 L 2142.231644 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2166.109338 -597.744805 L 2166.109338 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2187.134214 -597.744805 L 2187.134214 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2205.970627 -597.744805 L 2205.970627 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2329.814181 -597.744805 L 2329.814181 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2402.267935 -597.744805 L 2402.267935 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2453.696814 -597.744805 L 2453.696814 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2493.558103 -597.744805 L 2493.558103 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2526.111489 -597.744805 L 2526.111489 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2553.662674 -597.744805 L 2553.662674 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2577.540368 -597.744805 L 2577.540368 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2598.565244 -597.744805 L 2598.565244 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2617.401657 -597.744805 L 2617.401657 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2741.24521 -597.744805 L 2741.24521 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2813.698965 -597.744805 L 2813.698965 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2865.127844 -597.744805 L 2865.127844 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2904.989133 -597.744805 L 2904.989133 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2937.542519 -597.744805 L 2937.542519 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2965.093704 -597.744805 L 2965.093704 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2988.971397 -597.744805 L 2988.971397 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3009.996273 -597.744805 L 3009.996273 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -597.744805 L 3028.832686 -591.536599 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 214.441406 199.515625 L 214.441406 199.15625 C 215.285156 199.15625 215.707031 199.050781 215.707031 198.835938 L 215.707031 193.515625 C 215.359375 193.683594 214.917969 193.769531 214.382812 193.769531 L 214.382812 193.417969 C 215.210938 193.417969 215.835938 193.199219 216.257812 192.765625 L 216.398438 192.765625 C 216.421875 192.765625 216.441406 192.773438 216.464844 192.792969 C 216.484375 192.808594 216.496094 192.832031 216.496094 192.855469 L 216.496094 198.835938 C 216.496094 199.050781 216.917969 199.15625 217.761719 199.15625 L 217.761719 199.515625 L 214.441406 199.515625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 221.035156 199.738281 C 220.207031 199.738281 219.644531 199.398438 219.347656 198.714844 C 219.050781 198.03125 218.902344 197.222656 218.902344 196.285156 C 218.902344 195.699219 218.953125 195.144531 219.058594 194.628906 C 219.164062 194.109375 219.378906 193.667969 219.695312 193.308594 C 220.011719 192.945312 220.460938 192.765625 221.035156 192.765625 C 221.480469 192.765625 221.84375 192.875 222.128906 193.089844 C 222.410156 193.308594 222.625 193.589844 222.773438 193.9375 C 222.921875 194.28125 223.023438 194.652344 223.078125 195.042969 C 223.132812 195.4375 223.160156 195.851562 223.160156 196.285156 C 223.160156 196.867188 223.105469 197.410156 223 197.917969 C 222.890625 198.425781 222.683594 198.855469 222.371094 199.207031 C 222.058594 199.5625 221.613281 199.738281 221.035156 199.738281 Z M 221.035156 199.476562 C 221.410156 199.476562 221.6875 199.28125 221.875 198.898438 C 222.058594 198.511719 222.175781 198.085938 222.21875 197.617188 C 222.261719 197.148438 222.28125 196.648438 222.28125 196.121094 C 222.28125 195.613281 222.261719 195.144531 222.21875 194.714844 C 222.175781 194.289062 222.0625 193.898438 221.878906 193.550781 C 221.695312 193.203125 221.414062 193.03125 221.035156 193.03125 C 220.652344 193.03125 220.367188 193.203125 220.183594 193.554688 C 220 193.90625 219.886719 194.292969 219.84375 194.71875 C 219.800781 195.144531 219.78125 195.613281 219.78125 196.121094 C 219.78125 196.496094 219.789062 196.851562 219.804688 197.183594 C 219.824219 197.519531 219.871094 197.863281 219.949219 198.21875 C 220.027344 198.570312 220.15625 198.867188 220.335938 199.109375 C 220.511719 199.355469 220.746094 199.476562 221.035156 199.476562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 225.285156 196.042969 C 224.703125 196.042969 224.308594 195.800781 224.097656 195.320312 C 223.886719 194.839844 223.785156 194.269531 223.785156 193.609375 C 223.785156 193.199219 223.820312 192.808594 223.894531 192.445312 C 223.96875 192.078125 224.117188 191.769531 224.34375 191.515625 C 224.566406 191.261719 224.882812 191.132812 225.285156 191.132812 C 225.597656 191.132812 225.851562 191.210938 226.050781 191.363281 C 226.25 191.515625 226.402344 191.714844 226.507812 191.957031 C 226.613281 192.203125 226.6875 192.460938 226.722656 192.738281 C 226.757812 193.011719 226.777344 193.304688 226.777344 193.609375 C 226.777344 194.019531 226.742188 194.402344 226.667969 194.757812 C 226.59375 195.113281 226.445312 195.417969 226.226562 195.667969 C 226.003906 195.917969 225.691406 196.042969 225.285156 196.042969 Z M 225.285156 195.855469 C 225.550781 195.855469 225.746094 195.71875 225.875 195.445312 C 226.003906 195.175781 226.085938 194.875 226.117188 194.546875 C 226.148438 194.21875 226.164062 193.867188 226.164062 193.496094 C 226.164062 193.136719 226.148438 192.808594 226.117188 192.507812 C 226.085938 192.207031 226.003906 191.933594 225.875 191.6875 C 225.746094 191.445312 225.550781 191.320312 225.285156 191.320312 C 225.015625 191.320312 224.816406 191.445312 224.6875 191.6875 C 224.558594 191.933594 224.476562 192.207031 224.445312 192.507812 C 224.414062 192.808594 224.398438 193.136719 224.398438 193.496094 C 224.398438 193.757812 224.40625 194.007812 224.421875 194.242188 C 224.433594 194.476562 224.46875 194.71875 224.523438 194.96875 C 224.578125 195.21875 224.667969 195.429688 224.792969 195.597656 C 224.917969 195.769531 225.082031 195.855469 225.285156 195.855469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 296.691406 199.515625 L 296.691406 199.15625 C 297.535156 199.15625 297.957031 199.050781 297.957031 198.835938 L 297.957031 193.515625 C 297.609375 193.683594 297.167969 193.769531 296.632812 193.769531 L 296.632812 193.417969 C 297.460938 193.417969 298.085938 193.199219 298.507812 192.765625 L 298.648438 192.765625 C 298.671875 192.765625 298.695312 192.773438 298.714844 192.792969 C 298.738281 192.808594 298.746094 192.832031 298.746094 192.855469 L 298.746094 198.835938 C 298.746094 199.050781 299.171875 199.15625 300.015625 199.15625 L 300.015625 199.515625 L 296.691406 199.515625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 303.285156 199.738281 C 302.457031 199.738281 301.894531 199.398438 301.597656 198.714844 C 301.300781 198.03125 301.152344 197.222656 301.152344 196.285156 C 301.152344 195.699219 301.203125 195.144531 301.308594 194.628906 C 301.414062 194.109375 301.628906 193.667969 301.945312 193.308594 C 302.265625 192.945312 302.710938 192.765625 303.285156 192.765625 C 303.730469 192.765625 304.09375 192.875 304.378906 193.089844 C 304.660156 193.308594 304.878906 193.589844 305.023438 193.9375 C 305.171875 194.28125 305.273438 194.652344 305.328125 195.042969 C 305.386719 195.4375 305.410156 195.851562 305.410156 196.285156 C 305.410156 196.867188 305.359375 197.410156 305.25 197.917969 C 305.144531 198.425781 304.933594 198.855469 304.621094 199.207031 C 304.308594 199.5625 303.863281 199.738281 303.285156 199.738281 Z M 303.285156 199.476562 C 303.660156 199.476562 303.941406 199.28125 304.125 198.898438 C 304.3125 198.511719 304.425781 198.085938 304.46875 197.617188 C 304.511719 197.148438 304.53125 196.648438 304.53125 196.121094 C 304.53125 195.613281 304.511719 195.144531 304.46875 194.714844 C 304.425781 194.289062 304.3125 193.898438 304.128906 193.550781 C 303.945312 193.203125 303.664062 193.03125 303.285156 193.03125 C 302.902344 193.03125 302.617188 193.203125 302.433594 193.554688 C 302.253906 193.90625 302.140625 194.292969 302.097656 194.71875 C 302.054688 195.144531 302.03125 195.613281 302.03125 196.121094 C 302.03125 196.496094 302.039062 196.851562 302.058594 197.183594 C 302.074219 197.519531 302.121094 197.863281 302.199219 198.21875 C 302.277344 198.570312 302.40625 198.867188 302.585938 199.109375 C 302.761719 199.355469 302.996094 199.476562 303.285156 199.476562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 306.109375 195.882812 L 306.109375 195.691406 C 306.109375 195.679688 306.113281 195.667969 306.121094 195.65625 L 307.230469 194.429688 C 307.398438 194.246094 307.535156 194.09375 307.636719 193.972656 C 307.742188 193.851562 307.84375 193.710938 307.945312 193.550781 C 308.046875 193.390625 308.128906 193.226562 308.183594 193.058594 C 308.242188 192.894531 308.273438 192.71875 308.273438 192.53125 C 308.273438 192.332031 308.238281 192.148438 308.167969 191.96875 C 308.097656 191.792969 307.992188 191.648438 307.847656 191.542969 C 307.707031 191.4375 307.53125 191.386719 307.328125 191.386719 C 307.121094 191.386719 306.9375 191.449219 306.773438 191.570312 C 306.609375 191.695312 306.492188 191.855469 306.429688 192.054688 C 306.441406 192.050781 306.46875 192.046875 306.503906 192.046875 C 306.609375 192.046875 306.699219 192.082031 306.777344 192.152344 C 306.851562 192.222656 306.890625 192.320312 306.890625 192.433594 C 306.890625 192.539062 306.851562 192.632812 306.777344 192.707031 C 306.699219 192.785156 306.609375 192.824219 306.503906 192.824219 C 306.390625 192.824219 306.296875 192.785156 306.222656 192.707031 C 306.148438 192.628906 306.109375 192.535156 306.109375 192.433594 C 306.109375 192.257812 306.144531 192.085938 306.210938 191.929688 C 306.277344 191.773438 306.375 191.636719 306.5 191.511719 C 306.628906 191.390625 306.769531 191.292969 306.929688 191.230469 C 307.085938 191.164062 307.257812 191.132812 307.433594 191.132812 C 307.703125 191.132812 307.957031 191.191406 308.191406 191.304688 C 308.425781 191.421875 308.609375 191.585938 308.746094 191.792969 C 308.882812 192.003906 308.953125 192.246094 308.953125 192.53125 C 308.953125 192.734375 308.90625 192.933594 308.816406 193.117188 C 308.730469 193.304688 308.613281 193.472656 308.472656 193.625 C 308.332031 193.777344 308.152344 193.949219 307.929688 194.140625 C 307.710938 194.332031 307.5625 194.460938 307.492188 194.527344 L 306.683594 195.304688 L 307.371094 195.304688 C 307.707031 195.304688 307.988281 195.300781 308.214844 195.292969 C 308.441406 195.289062 308.5625 195.28125 308.578125 195.269531 C 308.632812 195.210938 308.6875 194.992188 308.746094 194.609375 L 308.953125 194.609375 L 308.753906 195.882812 L 306.109375 195.882812 "/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -248.835825 L 1794.539597 -597.744805 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -248.835825 L 3028.832686 -597.744805 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -252.232768 L 1806.888781 -252.232768 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -366.284147 L 1806.888781 -366.284147 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -480.296482 L 1806.888781 -480.296482 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.539597 -594.308817 L 1806.888781 -594.308817 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -252.232768 L 3016.483503 -252.232768 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -366.284147 L 3016.483503 -366.284147 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -480.296482 L 3016.483503 -480.296482 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3028.832686 -594.308817 L 3016.483503 -594.308817 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.383279 -480.218391 L 1890.36301 -480.218391 L 1918.304992 -480.179346 L 1946.286053 -480.179346 L 1974.228035 -480.140301 L 2002.209097 -480.140301 L 2058.093061 -480.06221 L 2114.055184 -479.984119 L 2141.997166 -479.906029 L 2169.939148 -479.866984 L 2197.92021 -479.788893 L 2225.862192 -479.671757 L 2253.843254 -479.554621 L 2281.785236 -479.437485 L 2309.766297 -479.242258 L 2337.708279 -479.007986 L 2365.689341 -478.695624 L 2377.29601 -478.539443 L 2400.861066 -478.070899 L 2420.479073 -477.524264 L 2436.853466 -476.821449 L 2450.492279 -475.923406 L 2461.825391 -474.752047 L 2471.321757 -473.190234 L 2479.176775 -471.042741 L 2485.781244 -467.997206 L 2491.252401 -463.389858 L 2495.785646 -455.932202 L 2499.615456 -442.422522 L 2502.780911 -415.286024 L 2505.399251 -367.650734 L 2508.05667 -318.96122 L 2511.222125 -290.809544 L 2515.012856 -276.90941 L 2519.58518 -269.295572 L 2525.056337 -264.610134 L 2531.621726 -261.525554 L 2539.515824 -259.378061 L 2548.973111 -257.816248 L 2560.345302 -256.644889 L 2573.984116 -255.746846 L 2590.358508 -255.044031 L 2609.976515 -254.458351 L 2633.541571 -253.989807 L 2645.265479 -253.833626 L 2673.246541 -253.521263 L 2701.188523 -253.286991 L 2729.169585 -253.091765 L 2757.111567 -252.974629 L 2785.092628 -252.857493 L 2813.03461 -252.740357 L 2841.015672 -252.662266 L 2868.957654 -252.623221 L 2896.938716 -252.54513 L 2952.822679 -252.46704 L 2980.803741 -252.427994 L 3008.745723 -252.427994 L 3028.989005 -252.388949 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1794.383279 -252.388949 L 1807.240498 -252.388949 L 1916.976282 -252.54513 L 1944.371148 -252.623221 L 1999.23904 -252.779402 L 2026.672986 -252.935583 L 2054.106932 -253.169855 L 2066.299797 -253.286991 L 2089.864853 -253.638399 L 2109.48286 -254.106943 L 2125.857252 -254.731668 L 2139.496066 -255.590665 L 2150.868257 -256.683934 L 2160.325543 -258.167656 L 2168.219642 -260.276104 L 2174.78503 -263.282593 L 2180.256188 -267.850896 L 2184.828512 -275.269506 L 2188.619242 -288.779187 L 2191.784698 -315.876639 L 2194.403037 -363.51193 L 2197.060457 -412.162399 L 2200.225912 -440.275029 L 2204.016642 -454.175163 L 2208.588967 -461.749955 L 2214.060124 -466.396348 L 2220.625513 -469.441883 L 2228.519611 -471.511285 L 2237.976897 -472.995007 L 2249.349089 -474.088276 L 2262.987902 -474.908228 L 2279.362294 -475.454862 L 2298.980301 -475.884361 L 2322.545357 -476.118633 L 2328.446391 -476.157678 L 2355.841258 -476.313859 L 2383.314283 -476.352905 L 2410.748229 -476.39195 L 2438.143095 -476.352905 L 2465.577041 -476.352905 L 2493.010987 -476.274814 L 2516.224326 -476.118633 L 2539.789382 -475.884361 L 2559.407389 -475.454862 L 2575.781781 -474.908228 L 2589.381515 -474.127321 L 2600.753707 -473.034053 L 2610.210993 -471.55033 L 2618.105091 -469.480928 L 2624.67048 -466.474439 L 2630.141637 -461.906136 L 2634.713962 -454.44848 L 2638.504692 -440.977845 L 2641.709227 -413.880393 L 2644.327567 -366.245102 L 2646.984986 -317.594633 L 2650.150441 -289.482003 L 2653.941172 -275.581869 L 2658.513496 -267.968032 L 2663.984653 -263.360684 L 2670.550042 -260.315149 L 2678.44414 -258.206702 L 2687.901427 -256.683934 L 2699.273618 -255.590665 L 2712.873352 -254.770713 L 2729.247744 -254.145988 L 2748.904831 -253.638399 L 2772.469887 -253.286991 L 2794.784393 -253.052719 L 2822.218339 -252.857493 L 2849.652285 -252.740357 L 2877.08623 -252.662266 L 2904.481097 -252.584175 L 2931.915043 -252.506085 L 2986.782934 -252.427994 L 3014.21688 -252.427994 L 3028.989005 -252.388949 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 193.25 189.359375 L 294.875 189.359375 L 294.875 166.089844 L 193.25 166.089844 Z M 193.25 189.359375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 227.941406 173.433594 C 228.160156 173.695312 228.425781 173.902344 228.738281 174.050781 C 229.050781 174.203125 229.378906 174.277344 229.71875 174.277344 C 230.050781 174.277344 230.351562 174.191406 230.625 174.023438 C 230.898438 173.851562 231.035156 173.609375 231.035156 173.292969 L 231.035156 172.535156 C 231.035156 172.347656 230.660156 172.253906 229.910156 172.253906 L 229.910156 171.9375 L 232.488281 171.9375 L 232.488281 172.253906 C 232.296875 172.253906 232.144531 172.269531 232.035156 172.300781 C 231.921875 172.332031 231.867188 172.410156 231.867188 172.535156 L 231.867188 174.3125 C 231.867188 174.335938 231.859375 174.355469 231.84375 174.371094 C 231.828125 174.386719 231.8125 174.394531 231.792969 174.394531 C 231.734375 174.394531 231.640625 174.328125 231.511719 174.195312 C 231.382812 174.0625 231.277344 173.945312 231.199219 173.84375 C 231.054688 174.097656 230.824219 174.285156 230.511719 174.410156 C 230.195312 174.53125 229.867188 174.59375 229.523438 174.59375 C 228.941406 174.59375 228.410156 174.441406 227.933594 174.140625 C 227.453125 173.839844 227.074219 173.4375 226.796875 172.9375 C 226.515625 172.433594 226.378906 171.894531 226.378906 171.316406 C 226.378906 170.890625 226.460938 170.476562 226.621094 170.074219 C 226.78125 169.675781 227.007812 169.320312 227.296875 169.015625 C 227.585938 168.710938 227.921875 168.472656 228.304688 168.300781 C 228.6875 168.128906 229.09375 168.042969 229.523438 168.042969 C 229.835938 168.042969 230.132812 168.109375 230.410156 168.242188 C 230.6875 168.375 230.933594 168.5625 231.148438 168.804688 L 231.667969 168.066406 C 231.703125 168.050781 231.726562 168.042969 231.734375 168.042969 L 231.796875 168.042969 C 231.816406 168.042969 231.835938 168.050781 231.847656 168.0625 C 231.859375 168.078125 231.867188 168.09375 231.867188 168.117188 L 231.867188 170.546875 C 231.867188 170.601562 231.84375 170.628906 231.796875 170.628906 L 231.632812 170.628906 C 231.578125 170.628906 231.550781 170.601562 231.550781 170.546875 C 231.550781 170.375 231.515625 170.183594 231.449219 169.96875 C 231.378906 169.757812 231.292969 169.550781 231.183594 169.359375 C 231.078125 169.164062 230.953125 168.996094 230.8125 168.851562 C 230.476562 168.523438 230.089844 168.359375 229.652344 168.359375 C 229.320312 168.359375 229.003906 168.433594 228.699219 168.582031 C 228.394531 168.730469 228.136719 168.9375 227.925781 169.203125 C 227.707031 169.484375 227.554688 169.804688 227.46875 170.164062 C 227.386719 170.527344 227.34375 170.910156 227.34375 171.316406 C 227.34375 172.234375 227.542969 172.941406 227.941406 173.433594 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 235.132812 174.394531 L 233.820312 171.085938 C 233.765625 170.972656 233.679688 170.902344 233.5625 170.871094 C 233.445312 170.84375 233.292969 170.828125 233.105469 170.828125 L 233.105469 170.511719 L 234.996094 170.511719 L 234.996094 170.828125 C 234.664062 170.828125 234.496094 170.898438 234.496094 171.039062 C 234.496094 171.0625 234.496094 171.082031 234.5 171.09375 L 235.515625 173.636719 L 236.421875 171.339844 C 236.4375 171.292969 236.445312 171.246094 236.445312 171.199219 C 236.445312 171.082031 236.402344 170.988281 236.316406 170.925781 C 236.230469 170.859375 236.128906 170.828125 236.011719 170.828125 L 236.011719 170.511719 L 237.507812 170.511719 L 237.507812 170.828125 C 237.324219 170.828125 237.160156 170.871094 237.023438 170.953125 C 236.882812 171.039062 236.777344 171.164062 236.699219 171.332031 L 235.484375 174.394531 C 235.460938 174.460938 235.414062 174.492188 235.339844 174.492188 L 235.273438 174.492188 C 235.199219 174.492188 235.152344 174.460938 235.132812 174.394531 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 239.679688 174.492188 C 239.316406 174.492188 238.988281 174.398438 238.691406 174.210938 C 238.394531 174.019531 238.160156 173.769531 237.988281 173.453125 C 237.820312 173.136719 237.734375 172.800781 237.734375 172.445312 C 237.734375 172.09375 237.820312 171.757812 237.988281 171.429688 C 238.15625 171.101562 238.386719 170.84375 238.6875 170.648438 C 238.984375 170.453125 239.316406 170.351562 239.679688 170.351562 C 240.03125 170.351562 240.351562 170.421875 240.636719 170.5625 C 240.925781 170.699219 241.070312 170.925781 241.070312 171.238281 C 241.070312 171.355469 241.027344 171.457031 240.945312 171.542969 C 240.863281 171.628906 240.761719 171.671875 240.640625 171.671875 C 240.519531 171.671875 240.417969 171.628906 240.335938 171.542969 C 240.25 171.457031 240.207031 171.355469 240.207031 171.238281 C 240.207031 171.132812 240.242188 171.042969 240.308594 170.964844 C 240.378906 170.886719 240.460938 170.835938 240.558594 170.816406 C 240.351562 170.683594 240.0625 170.617188 239.6875 170.617188 C 239.402344 170.617188 239.171875 170.714844 238.996094 170.90625 C 238.820312 171.097656 238.695312 171.332031 238.625 171.613281 C 238.554688 171.894531 238.519531 172.171875 238.519531 172.445312 C 238.519531 172.738281 238.5625 173.023438 238.648438 173.292969 C 238.734375 173.5625 238.875 173.785156 239.066406 173.964844 C 239.257812 174.140625 239.496094 174.230469 239.785156 174.230469 C 240.070312 174.230469 240.3125 174.144531 240.511719 173.96875 C 240.710938 173.792969 240.847656 173.566406 240.921875 173.285156 C 240.921875 173.25 240.945312 173.234375 240.992188 173.234375 L 241.105469 173.234375 C 241.121094 173.234375 241.136719 173.242188 241.152344 173.257812 C 241.167969 173.273438 241.175781 173.289062 241.175781 173.308594 L 241.175781 173.339844 C 241.082031 173.695312 240.898438 173.976562 240.628906 174.183594 C 240.359375 174.390625 240.042969 174.492188 239.679688 174.492188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 244.535156 172.726562 L 244.535156 172.164062 L 246.921875 172.164062 L 246.921875 172.726562 L 244.535156 172.726562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 251.527344 174.492188 C 251.1875 174.492188 250.941406 174.371094 250.789062 174.121094 C 250.640625 173.871094 250.566406 173.566406 250.566406 173.203125 C 250.566406 172.96875 250.585938 172.738281 250.628906 172.507812 C 250.671875 172.28125 250.738281 172.050781 250.824219 171.816406 C 250.910156 171.585938 251.007812 171.367188 251.117188 171.164062 C 251.230469 170.960938 251.355469 170.761719 251.492188 170.566406 C 251.519531 170.53125 251.554688 170.511719 251.597656 170.511719 C 251.636719 170.511719 251.667969 170.523438 251.691406 170.546875 C 251.714844 170.570312 251.726562 170.597656 251.726562 170.628906 C 251.726562 170.660156 251.714844 170.691406 251.695312 170.71875 C 251.148438 171.472656 250.875 172.164062 250.875 172.796875 C 250.875 173.078125 250.9375 173.3125 251.066406 173.511719 C 251.191406 173.707031 251.386719 173.808594 251.648438 173.808594 C 251.875 173.808594 252.085938 173.742188 252.277344 173.609375 C 252.46875 173.480469 252.632812 173.3125 252.773438 173.105469 C 252.773438 173 252.792969 172.835938 252.828125 172.609375 C 252.867188 172.386719 252.925781 172.191406 253.003906 172.015625 C 253.082031 171.84375 253.171875 171.753906 253.277344 171.753906 C 253.417969 171.753906 253.488281 171.835938 253.488281 171.996094 C 253.488281 172.089844 253.46875 172.207031 253.429688 172.351562 C 253.386719 172.492188 253.34375 172.625 253.296875 172.75 C 253.25 172.871094 253.191406 173.011719 253.121094 173.167969 C 253.191406 173.59375 253.402344 173.808594 253.757812 173.808594 C 253.964844 173.808594 254.175781 173.746094 254.386719 173.628906 C 254.597656 173.507812 254.78125 173.351562 254.941406 173.15625 C 255.101562 172.960938 255.226562 172.75 255.320312 172.523438 C 255.410156 172.296875 255.457031 172.082031 255.457031 171.882812 C 255.457031 171.699219 255.429688 171.558594 255.371094 171.457031 C 255.316406 171.355469 255.242188 171.246094 255.148438 171.136719 C 255.054688 171.023438 255.007812 170.9375 255.007812 170.871094 C 255.007812 170.753906 255.058594 170.644531 255.15625 170.550781 C 255.253906 170.453125 255.363281 170.40625 255.476562 170.40625 C 255.625 170.40625 255.726562 170.472656 255.789062 170.605469 C 255.847656 170.738281 255.878906 170.890625 255.878906 171.058594 C 255.878906 171.335938 255.824219 171.683594 255.714844 172.101562 C 255.605469 172.519531 255.480469 172.867188 255.339844 173.152344 C 255.148438 173.527344 254.90625 173.84375 254.613281 174.101562 C 254.320312 174.363281 253.992188 174.492188 253.628906 174.492188 C 253.398438 174.492188 253.214844 174.425781 253.070312 174.285156 C 252.925781 174.148438 252.835938 173.957031 252.796875 173.714844 C 252.628906 173.953125 252.4375 174.140625 252.226562 174.28125 C 252.011719 174.421875 251.78125 174.492188 251.527344 174.492188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 259.539062 173.199219 C 259.488281 173.199219 259.449219 173.179688 259.414062 173.140625 C 259.382812 173.101562 259.363281 173.058594 259.363281 173.015625 C 259.363281 172.964844 259.382812 172.921875 259.414062 172.886719 C 259.449219 172.851562 259.488281 172.835938 259.539062 172.835938 L 265.1875 172.835938 C 265.230469 172.835938 265.269531 172.851562 265.304688 172.886719 C 265.335938 172.921875 265.355469 172.964844 265.355469 173.015625 C 265.355469 173.058594 265.335938 173.101562 265.304688 173.140625 C 265.269531 173.179688 265.230469 173.199219 265.1875 173.199219 Z M 259.539062 171.445312 C 259.488281 171.445312 259.449219 171.425781 259.414062 171.390625 C 259.382812 171.355469 259.363281 171.316406 259.363281 171.269531 C 259.363281 171.222656 259.382812 171.179688 259.414062 171.140625 C 259.449219 171.105469 259.488281 171.085938 259.539062 171.085938 L 265.1875 171.085938 C 265.230469 171.085938 265.269531 171.105469 265.304688 171.140625 C 265.335938 171.179688 265.355469 171.222656 265.355469 171.269531 C 265.355469 171.316406 265.335938 171.355469 265.304688 171.390625 C 265.269531 171.425781 265.230469 171.445312 265.1875 171.445312 L 259.539062 171.445312 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 270.609375 174.59375 C 269.878906 174.59375 269.378906 174.289062 269.109375 173.683594 C 268.84375 173.078125 268.714844 172.355469 268.714844 171.519531 C 268.714844 171 268.761719 170.511719 268.855469 170.046875 C 268.953125 169.585938 269.140625 169.195312 269.425781 168.875 C 269.707031 168.554688 270.101562 168.394531 270.609375 168.394531 C 271.007812 168.394531 271.328125 168.492188 271.582031 168.683594 C 271.832031 168.878906 272.023438 169.128906 272.15625 169.433594 C 272.289062 169.742188 272.382812 170.070312 272.429688 170.421875 C 272.480469 170.769531 272.503906 171.136719 272.503906 171.519531 C 272.503906 172.035156 272.457031 172.519531 272.359375 172.96875 C 272.265625 173.417969 272.078125 173.800781 271.796875 174.117188 C 271.519531 174.433594 271.121094 174.59375 270.609375 174.59375 Z M 270.609375 174.359375 C 270.945312 174.359375 271.195312 174.1875 271.359375 173.84375 C 271.523438 173.5 271.625 173.117188 271.664062 172.703125 C 271.699219 172.285156 271.71875 171.84375 271.71875 171.375 C 271.71875 170.925781 271.699219 170.507812 271.664062 170.128906 C 271.625 169.746094 271.523438 169.402344 271.359375 169.09375 C 271.195312 168.785156 270.945312 168.628906 270.609375 168.628906 C 270.269531 168.628906 270.019531 168.785156 269.855469 169.09375 C 269.691406 169.40625 269.589844 169.75 269.554688 170.132812 C 269.515625 170.511719 269.496094 170.925781 269.496094 171.375 C 269.496094 171.710938 269.503906 172.027344 269.519531 172.320312 C 269.535156 172.617188 269.578125 172.921875 269.648438 173.238281 C 269.71875 173.554688 269.835938 173.820312 269.988281 174.035156 C 270.144531 174.25 270.351562 174.359375 270.609375 174.359375 "/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1948.357277 -397.481358 L 2248.450256 -397.481358 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 227.941406 184.410156 C 228.160156 184.671875 228.425781 184.878906 228.738281 185.03125 C 229.050781 185.179688 229.378906 185.257812 229.71875 185.257812 C 230.050781 185.257812 230.351562 185.171875 230.625 185 C 230.898438 184.832031 231.035156 184.585938 231.035156 184.269531 L 231.035156 183.515625 C 231.035156 183.328125 230.660156 183.234375 229.910156 183.234375 L 229.910156 182.914062 L 232.488281 182.914062 L 232.488281 183.234375 C 232.296875 183.234375 232.144531 183.25 232.035156 183.28125 C 231.921875 183.3125 231.867188 183.390625 231.867188 183.515625 L 231.867188 185.292969 C 231.867188 185.316406 231.859375 185.335938 231.84375 185.351562 C 231.828125 185.367188 231.8125 185.375 231.792969 185.375 C 231.734375 185.375 231.640625 185.308594 231.511719 185.175781 C 231.382812 185.039062 231.277344 184.921875 231.199219 184.824219 C 231.054688 185.078125 230.824219 185.265625 230.511719 185.386719 C 230.195312 185.511719 229.867188 185.574219 229.523438 185.574219 C 228.941406 185.574219 228.410156 185.421875 227.933594 185.121094 C 227.453125 184.820312 227.074219 184.417969 226.796875 183.914062 C 226.515625 183.414062 226.378906 182.871094 226.378906 182.292969 C 226.378906 181.867188 226.460938 181.457031 226.621094 181.054688 C 226.78125 180.652344 227.007812 180.300781 227.296875 179.996094 C 227.585938 179.691406 227.921875 179.453125 228.304688 179.28125 C 228.6875 179.109375 229.09375 179.023438 229.523438 179.023438 C 229.835938 179.023438 230.132812 179.089844 230.410156 179.222656 C 230.6875 179.355469 230.933594 179.542969 231.148438 179.785156 L 231.667969 179.046875 C 231.703125 179.03125 231.726562 179.023438 231.734375 179.023438 L 231.796875 179.023438 C 231.816406 179.023438 231.835938 179.027344 231.847656 179.042969 C 231.859375 179.054688 231.867188 179.074219 231.867188 179.097656 L 231.867188 181.527344 C 231.867188 181.582031 231.84375 181.609375 231.796875 181.609375 L 231.632812 181.609375 C 231.578125 181.609375 231.550781 181.582031 231.550781 181.527344 C 231.550781 181.355469 231.515625 181.160156 231.449219 180.949219 C 231.378906 180.734375 231.292969 180.53125 231.183594 180.339844 C 231.078125 180.144531 230.953125 179.976562 230.8125 179.832031 C 230.476562 179.503906 230.089844 179.339844 229.652344 179.339844 C 229.320312 179.339844 229.003906 179.414062 228.699219 179.5625 C 228.394531 179.710938 228.136719 179.917969 227.925781 180.183594 C 227.707031 180.464844 227.554688 180.785156 227.46875 181.144531 C 227.386719 181.503906 227.34375 181.886719 227.34375 182.292969 C 227.34375 183.214844 227.542969 183.917969 227.941406 184.410156 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 235.132812 185.375 L 233.820312 182.066406 C 233.765625 181.953125 233.679688 181.882812 233.5625 181.851562 C 233.445312 181.824219 233.292969 181.808594 233.105469 181.808594 L 233.105469 181.492188 L 234.996094 181.492188 L 234.996094 181.808594 C 234.664062 181.808594 234.496094 181.878906 234.496094 182.019531 C 234.496094 182.042969 234.496094 182.058594 234.5 182.070312 L 235.515625 184.617188 L 236.421875 182.316406 C 236.4375 182.269531 236.445312 182.222656 236.445312 182.175781 C 236.445312 182.058594 236.402344 181.96875 236.316406 181.90625 C 236.230469 181.839844 236.128906 181.808594 236.011719 181.808594 L 236.011719 181.492188 L 237.507812 181.492188 L 237.507812 181.808594 C 237.324219 181.808594 237.160156 181.851562 237.023438 181.933594 C 236.882812 182.019531 236.777344 182.144531 236.699219 182.3125 L 235.484375 185.375 C 235.460938 185.441406 235.414062 185.472656 235.339844 185.472656 L 235.273438 185.472656 C 235.199219 185.472656 235.152344 185.441406 235.132812 185.375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 239.679688 185.472656 C 239.316406 185.472656 238.988281 185.378906 238.691406 185.1875 C 238.394531 185 238.160156 184.746094 237.988281 184.433594 C 237.820312 184.117188 237.734375 183.78125 237.734375 183.425781 C 237.734375 183.074219 237.820312 182.734375 237.988281 182.410156 C 238.15625 182.082031 238.386719 181.820312 238.6875 181.625 C 238.984375 181.429688 239.316406 181.332031 239.679688 181.332031 C 240.03125 181.332031 240.351562 181.402344 240.636719 181.539062 C 240.925781 181.679688 241.070312 181.90625 241.070312 182.21875 C 241.070312 182.335938 241.027344 182.4375 240.945312 182.523438 C 240.863281 182.609375 240.761719 182.652344 240.640625 182.652344 C 240.519531 182.652344 240.417969 182.609375 240.335938 182.523438 C 240.25 182.4375 240.207031 182.335938 240.207031 182.21875 C 240.207031 182.113281 240.242188 182.019531 240.308594 181.941406 C 240.378906 181.863281 240.460938 181.816406 240.558594 181.796875 C 240.351562 181.664062 240.0625 181.597656 239.6875 181.597656 C 239.402344 181.597656 239.171875 181.691406 238.996094 181.882812 C 238.820312 182.074219 238.695312 182.3125 238.625 182.59375 C 238.554688 182.875 238.519531 183.152344 238.519531 183.425781 C 238.519531 183.71875 238.5625 184 238.648438 184.269531 C 238.734375 184.539062 238.875 184.765625 239.066406 184.941406 C 239.257812 185.121094 239.496094 185.210938 239.785156 185.210938 C 240.070312 185.210938 240.3125 185.121094 240.511719 184.949219 C 240.710938 184.773438 240.847656 184.546875 240.921875 184.265625 C 240.921875 184.230469 240.945312 184.210938 240.992188 184.210938 L 241.105469 184.210938 C 241.121094 184.210938 241.136719 184.21875 241.152344 184.234375 C 241.167969 184.25 241.175781 184.269531 241.175781 184.289062 L 241.175781 184.316406 C 241.082031 184.671875 240.898438 184.957031 240.628906 185.160156 C 240.359375 185.371094 240.042969 185.472656 239.679688 185.472656 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 244.535156 183.707031 L 244.535156 183.144531 L 246.921875 183.144531 L 246.921875 183.707031 L 244.535156 183.707031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 251.527344 185.472656 C 251.1875 185.472656 250.941406 185.347656 250.789062 185.101562 C 250.640625 184.851562 250.566406 184.546875 250.566406 184.183594 C 250.566406 183.949219 250.585938 183.71875 250.628906 183.488281 C 250.671875 183.257812 250.738281 183.027344 250.824219 182.796875 C 250.910156 182.5625 251.007812 182.34375 251.117188 182.140625 C 251.230469 181.9375 251.355469 181.738281 251.492188 181.542969 C 251.519531 181.507812 251.554688 181.492188 251.597656 181.492188 C 251.636719 181.492188 251.667969 181.503906 251.691406 181.527344 C 251.714844 181.550781 251.726562 181.578125 251.726562 181.609375 C 251.726562 181.640625 251.714844 181.667969 251.695312 181.695312 C 251.148438 182.453125 250.875 183.144531 250.875 183.777344 C 250.875 184.054688 250.9375 184.292969 251.066406 184.492188 C 251.191406 184.6875 251.386719 184.785156 251.648438 184.785156 C 251.875 184.785156 252.085938 184.722656 252.277344 184.589844 C 252.46875 184.460938 252.632812 184.289062 252.773438 184.082031 C 252.773438 183.976562 252.792969 183.8125 252.828125 183.589844 C 252.867188 183.367188 252.925781 183.167969 253.003906 182.996094 C 253.082031 182.820312 253.171875 182.734375 253.277344 182.734375 C 253.417969 182.734375 253.488281 182.816406 253.488281 182.972656 C 253.488281 183.070312 253.46875 183.1875 253.429688 183.328125 C 253.386719 183.472656 253.34375 183.605469 253.296875 183.726562 C 253.25 183.851562 253.191406 183.992188 253.121094 184.148438 C 253.191406 184.574219 253.402344 184.785156 253.757812 184.785156 C 253.964844 184.785156 254.175781 184.726562 254.386719 184.609375 C 254.597656 184.488281 254.78125 184.332031 254.941406 184.136719 C 255.101562 183.941406 255.226562 183.730469 255.320312 183.503906 C 255.410156 183.277344 255.457031 183.0625 255.457031 182.863281 C 255.457031 182.679688 255.429688 182.535156 255.371094 182.433594 C 255.316406 182.335938 255.242188 182.226562 255.148438 182.117188 C 255.054688 182.003906 255.007812 181.914062 255.007812 181.847656 C 255.007812 181.730469 255.058594 181.625 255.15625 181.53125 C 255.253906 181.433594 255.363281 181.386719 255.476562 181.386719 C 255.625 181.386719 255.726562 181.453125 255.789062 181.585938 C 255.847656 181.71875 255.878906 181.867188 255.878906 182.035156 C 255.878906 182.3125 255.824219 182.660156 255.714844 183.082031 C 255.605469 183.5 255.480469 183.847656 255.339844 184.128906 C 255.148438 184.503906 254.90625 184.824219 254.613281 185.082031 C 254.320312 185.34375 253.992188 185.472656 253.628906 185.472656 C 253.398438 185.472656 253.214844 185.402344 253.070312 185.265625 C 252.925781 185.125 252.835938 184.933594 252.796875 184.691406 C 252.628906 184.929688 252.4375 185.121094 252.226562 185.261719 C 252.011719 185.402344 251.78125 185.472656 251.527344 185.472656 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 259.539062 184.175781 C 259.488281 184.175781 259.449219 184.15625 259.414062 184.117188 C 259.382812 184.078125 259.363281 184.039062 259.363281 183.996094 C 259.363281 183.945312 259.382812 183.902344 259.414062 183.867188 C 259.449219 183.832031 259.488281 183.8125 259.539062 183.8125 L 265.1875 183.8125 C 265.230469 183.8125 265.269531 183.832031 265.304688 183.867188 C 265.335938 183.902344 265.355469 183.945312 265.355469 183.996094 C 265.355469 184.039062 265.335938 184.078125 265.304688 184.117188 C 265.269531 184.15625 265.230469 184.175781 265.1875 184.175781 Z M 259.539062 182.421875 C 259.488281 182.421875 259.449219 182.40625 259.414062 182.371094 C 259.382812 182.335938 259.363281 182.292969 259.363281 182.246094 C 259.363281 182.199219 259.382812 182.160156 259.414062 182.121094 C 259.449219 182.085938 259.488281 182.066406 259.539062 182.066406 L 265.1875 182.066406 C 265.230469 182.066406 265.269531 182.085938 265.304688 182.121094 C 265.335938 182.160156 265.355469 182.199219 265.355469 182.246094 C 265.355469 182.292969 265.335938 182.335938 265.304688 182.371094 C 265.269531 182.40625 265.230469 182.421875 265.1875 182.421875 L 259.539062 182.421875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 270.609375 185.574219 C 270.238281 185.574219 269.929688 185.472656 269.679688 185.273438 C 269.429688 185.074219 269.238281 184.816406 269.101562 184.503906 C 268.96875 184.1875 268.875 183.855469 268.820312 183.511719 C 268.769531 183.164062 268.742188 182.816406 268.742188 182.457031 C 268.742188 181.984375 268.835938 181.511719 269.019531 181.03125 C 269.199219 180.550781 269.472656 180.15625 269.832031 179.84375 C 270.191406 179.53125 270.617188 179.375 271.109375 179.375 C 271.3125 179.375 271.503906 179.414062 271.679688 179.492188 C 271.859375 179.570312 271.996094 179.683594 272.097656 179.835938 C 272.199219 179.984375 272.253906 180.167969 272.253906 180.382812 C 272.253906 180.503906 272.210938 180.605469 272.125 180.691406 C 272.042969 180.773438 271.9375 180.816406 271.816406 180.816406 C 271.699219 180.816406 271.601562 180.773438 271.515625 180.6875 C 271.425781 180.601562 271.382812 180.5 271.382812 180.382812 C 271.382812 180.265625 271.425781 180.164062 271.515625 180.078125 C 271.601562 179.992188 271.699219 179.949219 271.816406 179.949219 L 271.863281 179.949219 C 271.785156 179.839844 271.679688 179.757812 271.539062 179.707031 C 271.402344 179.65625 271.257812 179.632812 271.109375 179.632812 C 270.925781 179.632812 270.757812 179.671875 270.605469 179.753906 C 270.453125 179.832031 270.316406 179.941406 270.191406 180.074219 C 270.070312 180.210938 269.964844 180.359375 269.882812 180.519531 C 269.800781 180.683594 269.738281 180.867188 269.691406 181.074219 C 269.644531 181.28125 269.613281 181.476562 269.601562 181.65625 C 269.589844 181.839844 269.585938 182.070312 269.585938 182.347656 C 269.691406 182.101562 269.839844 181.898438 270.035156 181.742188 C 270.226562 181.585938 270.445312 181.507812 270.691406 181.507812 C 270.960938 181.507812 271.199219 181.5625 271.421875 181.667969 C 271.640625 181.777344 271.828125 181.925781 271.984375 182.117188 C 272.144531 182.308594 272.265625 182.53125 272.347656 182.777344 C 272.433594 183.023438 272.472656 183.273438 272.472656 183.527344 C 272.472656 183.878906 272.394531 184.214844 272.238281 184.53125 C 272.085938 184.851562 271.863281 185.101562 271.578125 185.292969 C 271.292969 185.480469 270.96875 185.574219 270.609375 185.574219 Z M 270.609375 185.285156 C 270.84375 185.285156 271.027344 185.234375 271.167969 185.128906 C 271.308594 185.023438 271.410156 184.882812 271.476562 184.707031 C 271.546875 184.535156 271.585938 184.359375 271.601562 184.179688 C 271.617188 184.003906 271.625 183.785156 271.625 183.527344 C 271.625 183.1875 271.609375 182.894531 271.578125 182.65625 C 271.546875 182.414062 271.460938 182.203125 271.3125 182.019531 C 271.171875 181.835938 270.949219 181.742188 270.65625 181.742188 C 270.410156 181.742188 270.210938 181.824219 270.054688 181.988281 C 269.898438 182.152344 269.785156 182.359375 269.710938 182.609375 C 269.640625 182.863281 269.601562 183.105469 269.601562 183.339844 C 269.601562 183.417969 269.605469 183.476562 269.613281 183.515625 C 269.613281 183.527344 269.613281 183.535156 269.613281 183.539062 C 269.609375 183.546875 269.605469 183.554688 269.601562 183.5625 C 269.601562 183.820312 269.628906 184.082031 269.683594 184.34375 C 269.734375 184.609375 269.835938 184.832031 269.988281 185.011719 C 270.136719 185.195312 270.34375 185.285156 270.609375 185.285156 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 275.109375 185.574219 C 274.378906 185.574219 273.878906 185.269531 273.609375 184.664062 C 273.34375 184.058594 273.214844 183.335938 273.214844 182.5 C 273.214844 181.980469 273.261719 181.488281 273.355469 181.027344 C 273.453125 180.566406 273.640625 180.175781 273.925781 179.855469 C 274.207031 179.535156 274.601562 179.375 275.109375 179.375 C 275.507812 179.375 275.828125 179.472656 276.082031 179.664062 C 276.332031 179.859375 276.523438 180.109375 276.65625 180.414062 C 276.789062 180.722656 276.882812 181.050781 276.929688 181.402344 C 276.980469 181.75 277.003906 182.117188 277.003906 182.5 C 277.003906 183.015625 276.957031 183.5 276.859375 183.949219 C 276.765625 184.398438 276.578125 184.78125 276.296875 185.097656 C 276.019531 185.414062 275.621094 185.574219 275.109375 185.574219 Z M 275.109375 185.339844 C 275.445312 185.339844 275.695312 185.164062 275.859375 184.824219 C 276.023438 184.476562 276.125 184.097656 276.164062 183.679688 C 276.199219 183.265625 276.21875 182.824219 276.21875 182.351562 C 276.21875 181.902344 276.199219 181.488281 276.164062 181.105469 C 276.125 180.726562 276.023438 180.382812 275.859375 180.070312 C 275.695312 179.761719 275.445312 179.609375 275.109375 179.609375 C 274.769531 179.609375 274.519531 179.765625 274.355469 180.074219 C 274.191406 180.386719 274.089844 180.730469 274.054688 181.109375 C 274.015625 181.488281 273.996094 181.902344 273.996094 182.351562 C 273.996094 182.691406 274.003906 183.003906 274.019531 183.300781 C 274.035156 183.59375 274.078125 183.902344 274.148438 184.21875 C 274.21875 184.535156 274.335938 184.800781 274.488281 185.015625 C 274.644531 185.230469 274.851562 185.339844 275.109375 185.339844 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 277.597656 185.375 L 277.597656 185.054688 C 277.796875 185.054688 277.96875 185.039062 278.101562 185.007812 C 278.230469 184.972656 278.300781 184.894531 278.300781 184.769531 L 278.300781 182.3125 C 278.300781 182.152344 278.273438 182.035156 278.226562 181.964844 C 278.175781 181.890625 278.105469 181.847656 278.019531 181.832031 C 277.925781 181.816406 277.785156 181.808594 277.597656 181.808594 L 277.597656 181.492188 L 278.882812 181.390625 L 278.882812 182.269531 C 278.976562 182.007812 279.113281 181.796875 279.296875 181.636719 C 279.476562 181.472656 279.691406 181.390625 279.945312 181.390625 C 280.125 181.390625 280.285156 181.445312 280.425781 181.550781 C 280.566406 181.65625 280.636719 181.792969 280.636719 181.964844 C 280.636719 182.074219 280.597656 182.171875 280.519531 182.25 C 280.441406 182.332031 280.34375 182.371094 280.230469 182.371094 C 280.117188 182.371094 280.023438 182.332031 279.945312 182.253906 C 279.867188 182.175781 279.828125 182.078125 279.828125 181.964844 C 279.828125 181.804688 279.886719 181.691406 279.996094 181.625 L 279.945312 181.625 C 279.703125 181.625 279.503906 181.714844 279.351562 181.890625 C 279.195312 182.066406 279.085938 182.285156 279.023438 182.542969 C 278.957031 182.804688 278.925781 183.054688 278.925781 183.292969 L 278.925781 184.769531 C 278.925781 184.960938 279.21875 185.054688 279.800781 185.054688 L 279.800781 185.375 L 277.597656 185.375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 281.121094 187.121094 L 281.121094 186.808594 C 281.324219 186.808594 281.492188 186.792969 281.625 186.757812 C 281.757812 186.722656 281.824219 186.640625 281.824219 186.515625 L 281.824219 182.175781 C 281.824219 182.011719 281.765625 181.910156 281.648438 181.871094 C 281.53125 181.828125 281.355469 181.808594 281.121094 181.808594 L 281.121094 181.492188 L 282.449219 181.390625 L 282.449219 181.949219 C 282.613281 181.769531 282.804688 181.632812 283.023438 181.535156 C 283.242188 181.441406 283.476562 181.390625 283.722656 181.390625 C 284.078125 181.390625 284.398438 181.488281 284.679688 181.679688 C 284.964844 181.871094 285.183594 182.121094 285.34375 182.433594 C 285.503906 182.746094 285.585938 183.078125 285.585938 183.425781 C 285.585938 183.789062 285.496094 184.128906 285.320312 184.445312 C 285.140625 184.757812 284.898438 185.007812 284.59375 185.195312 C 284.285156 185.378906 283.949219 185.472656 283.589844 185.472656 C 283.148438 185.472656 282.78125 185.296875 282.480469 184.941406 L 282.480469 186.515625 C 282.480469 186.640625 282.546875 186.722656 282.679688 186.757812 C 282.8125 186.792969 282.980469 186.808594 283.183594 186.808594 L 283.183594 187.121094 Z M 282.480469 184.5 C 282.585938 184.710938 282.730469 184.886719 282.921875 185.027344 C 283.105469 185.167969 283.3125 185.238281 283.535156 185.238281 C 283.742188 185.238281 283.925781 185.183594 284.085938 185.070312 C 284.246094 184.960938 284.378906 184.808594 284.488281 184.621094 C 284.59375 184.433594 284.671875 184.238281 284.722656 184.03125 C 284.773438 183.824219 284.800781 183.621094 284.800781 183.425781 C 284.800781 183.1875 284.757812 182.929688 284.671875 182.648438 C 284.585938 182.371094 284.453125 182.132812 284.277344 181.941406 C 284.097656 181.746094 283.882812 181.648438 283.632812 181.648438 C 283.390625 181.648438 283.167969 181.710938 282.964844 181.835938 C 282.757812 181.960938 282.597656 182.132812 282.480469 182.347656 L 282.480469 184.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 286.15625 185.375 L 286.15625 185.054688 C 286.359375 185.054688 286.527344 185.039062 286.660156 185.007812 C 286.792969 184.972656 286.859375 184.894531 286.859375 184.769531 L 286.859375 182.3125 C 286.859375 182.152344 286.835938 182.035156 286.785156 181.964844 C 286.738281 181.890625 286.667969 181.847656 286.578125 181.832031 C 286.488281 181.816406 286.347656 181.808594 286.15625 181.808594 L 286.15625 181.492188 L 287.460938 181.390625 L 287.460938 182.269531 C 287.578125 182.011719 287.757812 181.800781 287.992188 181.636719 C 288.230469 181.472656 288.484375 181.390625 288.761719 181.390625 C 289.453125 181.390625 289.859375 181.671875 289.980469 182.234375 C 290.101562 181.984375 290.277344 181.78125 290.507812 181.625 C 290.738281 181.46875 290.992188 181.390625 291.269531 181.390625 C 291.546875 181.390625 291.773438 181.433594 291.960938 181.523438 C 292.144531 181.609375 292.285156 181.746094 292.378906 181.925781 C 292.472656 182.105469 292.519531 182.332031 292.519531 182.605469 L 292.519531 184.769531 C 292.519531 184.894531 292.585938 184.972656 292.71875 185.007812 C 292.851562 185.039062 293.019531 185.054688 293.222656 185.054688 L 293.222656 185.375 L 291.160156 185.375 L 291.160156 185.054688 C 291.367188 185.054688 291.535156 185.039062 291.664062 185.007812 C 291.796875 184.972656 291.863281 184.894531 291.863281 184.769531 L 291.863281 182.636719 C 291.863281 182.328125 291.820312 182.085938 291.738281 181.902344 C 291.652344 181.71875 291.476562 181.625 291.210938 181.625 C 290.867188 181.625 290.582031 181.765625 290.355469 182.042969 C 290.128906 182.320312 290.015625 182.636719 290.015625 182.992188 L 290.015625 184.769531 C 290.015625 184.894531 290.085938 184.972656 290.214844 185.007812 C 290.347656 185.039062 290.515625 185.054688 290.71875 185.054688 L 290.71875 185.375 L 288.65625 185.375 L 288.65625 185.054688 C 288.863281 185.054688 289.035156 185.039062 289.164062 185.007812 C 289.296875 184.972656 289.359375 184.894531 289.359375 184.769531 L 289.359375 182.636719 C 289.359375 182.339844 289.320312 182.101562 289.234375 181.910156 C 289.152344 181.71875 288.976562 181.625 288.710938 181.625 C 288.363281 181.625 288.078125 181.765625 287.851562 182.042969 C 287.628906 182.320312 287.515625 182.636719 287.515625 182.992188 L 287.515625 184.769531 C 287.515625 184.894531 287.582031 184.972656 287.714844 185.007812 C 287.847656 185.039062 288.015625 185.054688 288.21875 185.054688 L 288.21875 185.375 L 286.15625 185.375 "/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1948.357277 -287.764009 L 2248.450256 -287.764009 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<path style="fill:none;stroke-width:5.00095;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1933.350674 -226.306675 L 1933.350674 -458.899647 L 2950.048021 -458.899647 L 2950.048021 -226.306675 Z M 1933.350674 -226.306675 " transform="matrix(0.099956,0,0,0.100044,0,212)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="131.875" y="9.819"/>
<use xlink:href="#glyph2-2" x="139.816944" y="9.819"/>
<use xlink:href="#glyph2-3" x="146.537897" y="9.819"/>
<use xlink:href="#glyph2-4" x="153.258849" y="9.819"/>
<use xlink:href="#glyph2-5" x="159.374806" y="9.819"/>
<use xlink:href="#glyph2-6" x="162.432785" y="9.819"/>
<use xlink:href="#glyph2-7" x="170.374729" y="9.819"/>
<use xlink:href="#glyph2-8" x="173.432707" y="9.819"/>
<use xlink:href="#glyph2-9" x="179.548664" y="9.819"/>
<use xlink:href="#glyph2-10" x="186.269617" y="9.819"/>
<use xlink:href="#glyph2-8" x="190.548587" y="9.819"/>
<use xlink:href="#glyph2-11" x="196.664544" y="9.819"/>
</g>
<g style="fill:rgb(0%,0%,1.197815%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="125.125" y="213.87852"/>
<use xlink:href="#glyph3-2" x="131.845953" y="213.87852"/>
<use xlink:href="#glyph3-3" x="135.508927" y="213.87852"/>
<use xlink:href="#glyph3-4" x="141.624884" y="213.87852"/>
<use xlink:href="#glyph3-5" x="147.740841" y="213.87852"/>
<use xlink:href="#glyph3-3" x="153.856798" y="213.87852"/>
<use xlink:href="#glyph3-6" x="159.972755" y="213.87852"/>
<use xlink:href="#glyph3-7" x="166.088712" y="213.87852"/>
<use xlink:href="#glyph3-8" x="171.588673" y="213.87852"/>
<use xlink:href="#glyph3-9" x="177.088634" y="213.87852"/>
<use xlink:href="#glyph3-9" x="180.146613" y="213.87852"/>
<use xlink:href="#glyph3-10" x="183.204591" y="213.87852"/>
<use xlink:href="#glyph3-2" x="186.867565" y="213.87852"/>
<use xlink:href="#glyph3-11" x="190.53054" y="213.87852"/>
<use xlink:href="#glyph3-12" x="196.646496" y="213.87852"/>
<use xlink:href="#glyph3-13" x="202.762453" y="213.87852"/>
<use xlink:href="#glyph3-14" x="205.820432" y="213.87852"/>
<use xlink:href="#glyph3-15" x="211.320393" y="213.87852"/>
</g>
<g style="fill:rgb(0%,0%,1.197815%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="9.6668" y="186.6645"/>
<use xlink:href="#glyph4-2" x="9.6668" y="177.49352"/>
<use xlink:href="#glyph4-3" x="9.6668" y="171.372194"/>
<use xlink:href="#glyph4-4" x="9.6668" y="165.250867"/>
<use xlink:href="#glyph4-5" x="9.6668" y="159.129541"/>
<use xlink:href="#glyph4-6" x="9.6668" y="156.685414"/>
<use xlink:href="#glyph4-7" x="9.6668" y="153.624751"/>
<use xlink:href="#glyph4-8" x="9.6668" y="147.503424"/>
<use xlink:href="#glyph4-9" x="9.6668" y="141.382098"/>
<use xlink:href="#glyph4-10" x="9.6668" y="135.260771"/>
<use xlink:href="#glyph4-11" x="9.6668" y="132.200108"/>
<use xlink:href="#glyph4-8" x="9.6668" y="128.533918"/>
<use xlink:href="#glyph4-12" x="9.6668" y="122.412592"/>
<use xlink:href="#glyph4-13" x="9.6668" y="115.069202"/>
<use xlink:href="#glyph4-10" x="9.6668" y="111.403012"/>
<use xlink:href="#glyph4-14" x="9.6668" y="108.342349"/>
<use xlink:href="#glyph4-10" x="9.6668" y="105.281685"/>
<use xlink:href="#glyph4-15" x="9.6668" y="102.221022"/>
<use xlink:href="#glyph4-16" x="9.6668" y="94.877632"/>
<use xlink:href="#glyph4-2" x="9.6668" y="88.756306"/>
<use xlink:href="#glyph4-17" x="9.6668" y="82.634979"/>
<use xlink:href="#glyph4-9" x="9.6668" y="77.130189"/>
<use xlink:href="#glyph4-10" x="9.6668" y="71.008863"/>
<use xlink:href="#glyph4-11" x="9.6668" y="67.9482"/>
<use xlink:href="#glyph4-8" x="9.6668" y="64.28201"/>
<use xlink:href="#glyph4-9" x="9.6668" y="58.160683"/>
<use xlink:href="#glyph4-3" x="9.6668" y="52.039357"/>
<use xlink:href="#glyph4-13" x="9.6668" y="45.91803"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 323 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 211 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 149 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 310 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

View File

@ -1,614 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="278pt" height="212pt" viewBox="0 0 278 212" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M -6.46875 -3.546875 L -6.46875 -5.9375 L -7.296875 -5.9375 L -7.296875 -0.203125 L -6.46875 -0.203125 L -6.46875 -2.609375 L 0 -2.609375 L 0 -3.546875 Z M -6.46875 -3.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M -5.390625 -2.71875 C -5.390625 -1.234375 -4.34375 -0.359375 -2.578125 -0.359375 C -0.8125 -0.359375 0.234375 -1.234375 0.234375 -2.734375 C 0.234375 -4.203125 -0.8125 -5.09375 -2.546875 -5.09375 C -4.359375 -5.09375 -5.390625 -4.234375 -5.390625 -2.71875 Z M -4.625 -2.734375 C -4.625 -3.671875 -3.84375 -4.234375 -2.546875 -4.234375 C -1.3125 -4.234375 -0.546875 -3.65625 -0.546875 -2.734375 C -0.546875 -1.796875 -1.3125 -1.234375 -2.578125 -1.234375 C -3.84375 -1.234375 -4.625 -1.796875 -4.625 -2.734375 Z M -4.625 -2.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M -1.046875 -2.140625 L -1.046875 -1.09375 L 0 -1.09375 L 0 -2.140625 Z M -5.234375 -2.140625 L -5.234375 -1.09375 L -4.203125 -1.09375 L -4.203125 -2.140625 Z M -5.234375 -2.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 0 -0.890625 L 0 -3.703125 C 0 -5.546875 -1.375 -6.671875 -3.65625 -6.671875 C -5.90625 -6.671875 -7.296875 -5.546875 -7.296875 -3.703125 L -7.296875 -0.890625 Z M -0.8125 -1.8125 L -6.46875 -1.8125 L -6.46875 -3.546875 C -6.46875 -4.984375 -5.5 -5.734375 -3.640625 -5.734375 C -1.796875 -5.734375 -0.8125 -4.984375 -0.8125 -3.546875 Z M -0.8125 -1.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 0 -4.8125 L -5.234375 -4.8125 L -5.234375 -3.984375 L -2.265625 -3.984375 C -1.203125 -3.984375 -0.5 -3.4375 -0.5 -2.5625 C -0.5 -1.90625 -0.90625 -1.484375 -1.53125 -1.484375 L -5.234375 -1.484375 L -5.234375 -0.65625 L -1.203125 -0.65625 C -0.328125 -0.65625 0.234375 -1.296875 0.234375 -2.3125 C 0.234375 -3.09375 -0.046875 -3.578125 -0.734375 -4.0625 L 0 -4.0625 Z M 0 -4.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 0 -2.84375 L -5.234375 -4.859375 L -5.234375 -3.921875 L -0.984375 -2.4375 L -5.234375 -1.046875 L -5.234375 -0.09375 L 0 -1.9375 Z M 0 -2.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 1.828125 -3.3125 L 5.3125 -3.3125 L 5.3125 -4.140625 L 1.828125 -4.140625 L 1.828125 -6.46875 L 5.796875 -6.46875 L 5.796875 -7.296875 L 0.90625 -7.296875 L 0.90625 0 L 1.828125 0 Z M 1.828125 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 0.6875 -5.234375 L 0.6875 0 L 1.53125 0 L 1.53125 -2.71875 C 1.546875 -3.984375 2.0625 -4.546875 3.203125 -4.515625 L 3.203125 -5.359375 C 3.0625 -5.375 2.984375 -5.390625 2.890625 -5.390625 C 2.34375 -5.390625 1.9375 -5.0625 1.453125 -4.296875 L 1.453125 -5.234375 Z M 0.6875 -5.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 2.71875 -5.390625 C 1.234375 -5.390625 0.359375 -4.34375 0.359375 -2.578125 C 0.359375 -0.8125 1.234375 0.234375 2.734375 0.234375 C 4.203125 0.234375 5.09375 -0.8125 5.09375 -2.546875 C 5.09375 -4.359375 4.234375 -5.390625 2.71875 -5.390625 Z M 2.734375 -4.625 C 3.671875 -4.625 4.234375 -3.84375 4.234375 -2.546875 C 4.234375 -1.3125 3.65625 -0.546875 2.734375 -0.546875 C 1.796875 -0.546875 1.234375 -1.3125 1.234375 -2.578125 C 1.234375 -3.84375 1.796875 -4.625 2.734375 -4.625 Z M 2.734375 -4.625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 0.703125 -5.234375 L 0.703125 0 L 1.546875 0 L 1.546875 -3.296875 C 1.546875 -4.046875 2.09375 -4.65625 2.765625 -4.65625 C 3.390625 -4.65625 3.734375 -4.28125 3.734375 -3.609375 L 3.734375 0 L 4.578125 0 L 4.578125 -3.296875 C 4.578125 -4.046875 5.125 -4.65625 5.8125 -4.65625 C 6.421875 -4.65625 6.78125 -4.265625 6.78125 -3.609375 L 6.78125 0 L 7.625 0 L 7.625 -3.9375 C 7.625 -4.875 7.078125 -5.390625 6.09375 -5.390625 C 5.40625 -5.390625 4.984375 -5.1875 4.484375 -4.59375 C 4.1875 -5.15625 3.765625 -5.390625 3.078125 -5.390625 C 2.375 -5.390625 1.90625 -5.125 1.46875 -4.5 L 1.46875 -5.234375 Z M 0.703125 -5.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 2.140625 -1.046875 L 1.09375 -1.046875 L 1.09375 0 L 2.140625 0 Z M 2.140625 -5.234375 L 1.09375 -5.234375 L 1.09375 -4.203125 L 2.140625 -4.203125 Z M 2.140625 -5.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 4.8125 0 L 4.8125 -5.234375 L 3.984375 -5.234375 L 3.984375 -2.265625 C 3.984375 -1.203125 3.4375 -0.5 2.5625 -0.5 C 1.90625 -0.5 1.484375 -0.90625 1.484375 -1.53125 L 1.484375 -5.234375 L 0.65625 -5.234375 L 0.65625 -1.203125 C 0.65625 -0.328125 1.296875 0.234375 2.3125 0.234375 C 3.09375 0.234375 3.578125 -0.046875 4.0625 -0.734375 L 4.0625 0 Z M 4.8125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 2.84375 0 L 4.859375 -5.234375 L 3.921875 -5.234375 L 2.4375 -0.984375 L 1.046875 -5.234375 L 0.09375 -5.234375 L 1.9375 0 Z M 2.84375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 0.90625 0 L 4.515625 0 C 5.4375 0 6.046875 -0.171875 6.53125 -0.578125 C 7.015625 -0.984375 7.328125 -1.65625 7.328125 -2.3125 C 7.328125 -3.109375 6.90625 -3.734375 6 -4.25 C 6.78125 -4.765625 7.09375 -5.21875 7.09375 -5.90625 C 7.09375 -6.46875 6.8125 -7.046875 6.375 -7.4375 C 5.890625 -7.84375 5.328125 -8.015625 4.484375 -8.015625 L 0.90625 -8.015625 Z M 2.546875 -6.640625 L 4.34375 -6.640625 C 5.109375 -6.640625 5.515625 -6.34375 5.515625 -5.734375 C 5.515625 -5.140625 5.109375 -4.828125 4.34375 -4.828125 L 2.546875 -4.828125 Z M 2.546875 -3.453125 L 4.515625 -3.453125 C 5.328125 -3.453125 5.734375 -3.109375 5.734375 -2.40625 C 5.734375 -1.734375 5.328125 -1.375 4.515625 -1.375 L 2.546875 -1.375 Z M 2.546875 -3.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.3125 -6.03125 C 1.5 -6.03125 0.390625 -4.84375 0.390625 -2.890625 C 0.390625 -0.9375 1.5 0.25 3.328125 0.25 C 5.140625 0.25 6.265625 -0.9375 6.265625 -2.84375 C 6.265625 -4.859375 5.171875 -6.03125 3.3125 -6.03125 Z M 3.328125 -4.796875 C 4.171875 -4.796875 4.71875 -4.03125 4.71875 -2.875 C 4.71875 -1.765625 4.140625 -0.984375 3.328125 -0.984375 C 2.484375 -0.984375 1.921875 -1.75 1.921875 -2.890625 C 1.921875 -4.03125 2.484375 -4.796875 3.328125 -4.796875 Z M 3.328125 -4.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 4.453125 0 L 6 0 L 6 -8.015625 L 4.453125 -8.015625 L 4.453125 -5.171875 C 4.0625 -5.765625 3.5625 -6.03125 2.8125 -6.03125 C 1.390625 -6.03125 0.3125 -4.671875 0.3125 -2.875 C 0.3125 -2.078125 0.5625 -1.265625 0.953125 -0.6875 C 1.359375 -0.109375 2.09375 0.25 2.8125 0.25 C 3.5625 0.25 4.0625 -0.015625 4.453125 -0.609375 Z M 3.15625 -4.75 C 3.9375 -4.75 4.453125 -4 4.453125 -2.859375 C 4.453125 -1.78125 3.921875 -1.03125 3.15625 -1.03125 C 2.390625 -1.03125 1.859375 -1.796875 1.859375 -2.875 C 1.859375 -4 2.390625 -4.75 3.15625 -4.75 Z M 3.15625 -4.75 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 5.765625 -2.484375 C 5.78125 -2.625 5.78125 -2.671875 5.78125 -2.75 C 5.78125 -3.34375 5.6875 -3.890625 5.546875 -4.3125 C 5.140625 -5.390625 4.1875 -6.03125 2.984375 -6.03125 C 1.28125 -6.03125 0.234375 -4.8125 0.234375 -2.8125 C 0.234375 -0.90625 1.28125 0.25 2.953125 0.25 C 4.296875 0.25 5.375 -0.5 5.703125 -1.671875 L 4.1875 -1.671875 C 4 -1.203125 3.578125 -0.921875 3.015625 -0.921875 C 2.578125 -0.921875 2.21875 -1.109375 2 -1.4375 C 1.859375 -1.65625 1.796875 -1.921875 1.78125 -2.484375 Z M 1.796875 -3.515625 C 1.90625 -4.421875 2.28125 -4.859375 2.96875 -4.859375 C 3.671875 -4.859375 4.09375 -4.390625 4.171875 -3.515625 Z M 1.796875 -3.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 0.84375 0 L 3.984375 0 C 5.203125 0 5.96875 -0.28125 6.515625 -0.9375 C 7.15625 -1.6875 7.484375 -2.765625 7.484375 -4.015625 C 7.484375 -5.265625 7.15625 -6.34375 6.515625 -7.09375 C 5.96875 -7.75 5.21875 -8.015625 3.984375 -8.015625 L 0.84375 -8.015625 Z M 2.5 -1.375 L 2.5 -6.640625 L 3.984375 -6.640625 C 5.21875 -6.640625 5.84375 -5.78125 5.84375 -4 C 5.84375 -2.25 5.21875 -1.375 3.984375 -1.375 Z M 2.5 -1.375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 2.28125 -5.9375 L 0.734375 -5.9375 L 0.734375 0 L 2.28125 0 Z M 2.28125 -8.015625 L 0.734375 -8.015625 L 0.734375 -6.640625 L 2.28125 -6.640625 Z M 2.28125 -8.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 5.765625 -0.1875 C 5.5 -0.4375 5.40625 -0.609375 5.40625 -0.90625 L 5.40625 -4.21875 C 5.40625 -5.421875 4.59375 -6.03125 2.984375 -6.03125 C 1.375 -6.03125 0.53125 -5.359375 0.4375 -3.984375 L 1.921875 -3.984375 C 2 -4.59375 2.25 -4.796875 3.015625 -4.796875 C 3.609375 -4.796875 3.90625 -4.59375 3.90625 -4.203125 C 3.90625 -4 3.8125 -3.84375 3.640625 -3.734375 C 3.4375 -3.625 3.4375 -3.625 2.671875 -3.515625 L 2.0625 -3.40625 C 0.875 -3.203125 0.3125 -2.59375 0.3125 -1.53125 C 0.3125 -0.46875 1.015625 0.25 2.109375 0.25 C 2.765625 0.25 3.359375 -0.015625 3.921875 -0.59375 C 3.921875 -0.28125 3.953125 -0.171875 4.09375 0 L 5.765625 0 Z M 3.90625 -2.390625 C 3.90625 -1.5 3.46875 -0.984375 2.6875 -0.984375 C 2.171875 -0.984375 1.84375 -1.265625 1.84375 -1.703125 C 1.84375 -2.171875 2.09375 -2.390625 2.734375 -2.515625 L 3.25 -2.625 C 3.65625 -2.6875 3.734375 -2.71875 3.90625 -2.8125 Z M 3.90625 -2.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-9">
<path style="stroke:none;" d="M 4.40625 -5.9375 L 4.40625 -5.03125 C 3.96875 -5.71875 3.5 -6.03125 2.875 -6.03125 C 2.34375 -6.03125 1.765625 -5.78125 1.359375 -5.34375 C 0.765625 -4.734375 0.453125 -3.875 0.453125 -2.828125 C 0.453125 -1 1.421875 0.25 2.84375 0.25 C 3.46875 0.25 3.859375 0.046875 4.40625 -0.609375 L 4.40625 0.203125 C 4.40625 0.90625 3.890625 1.40625 3.171875 1.40625 C 2.625 1.40625 2.28125 1.171875 2.15625 0.71875 L 0.578125 0.71875 C 0.578125 1.171875 0.75 1.5 1.15625 1.828125 C 1.625 2.21875 2.28125 2.390625 3.109375 2.390625 C 4.828125 2.390625 5.859375 1.578125 5.859375 0.203125 L 5.859375 -5.9375 Z M 3.15625 -4.75 C 3.890625 -4.75 4.421875 -3.953125 4.421875 -2.84375 C 4.421875 -1.765625 3.90625 -1.03125 3.140625 -1.03125 C 2.46875 -1.03125 1.984375 -1.765625 1.984375 -2.84375 C 1.984375 -3.96875 2.46875 -4.75 3.15625 -4.75 Z M 3.15625 -4.75 "/>
</symbol>
<symbol overflow="visible" id="glyph2-10">
<path style="stroke:none;" d="M 0.6875 -5.9375 L 0.6875 0 L 2.234375 0 L 2.234375 -3.15625 C 2.234375 -4.0625 2.6875 -4.515625 3.59375 -4.515625 C 3.75 -4.515625 3.859375 -4.5 4.0625 -4.46875 L 4.0625 -6.03125 C 3.984375 -6.03125 3.953125 -6.03125 3.890625 -6.03125 C 3.171875 -6.03125 2.578125 -5.578125 2.234375 -4.78125 L 2.234375 -5.9375 Z M 0.6875 -5.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-11">
<path style="stroke:none;" d="M 0.65625 -5.9375 L 0.65625 0 L 2.203125 0 L 2.203125 -3.5625 C 2.203125 -4.296875 2.59375 -4.734375 3.25 -4.734375 C 3.765625 -4.734375 4.09375 -4.4375 4.09375 -3.953125 L 4.09375 0 L 5.625 0 L 5.625 -3.5625 C 5.625 -4.296875 6.03125 -4.734375 6.6875 -4.734375 C 7.203125 -4.734375 7.53125 -4.4375 7.53125 -3.953125 L 7.53125 0 L 9.0625 0 L 9.0625 -4.203125 C 9.0625 -5.359375 8.359375 -6.03125 7.171875 -6.03125 C 6.40625 -6.03125 5.890625 -5.78125 5.4375 -5.15625 C 5.140625 -5.71875 4.546875 -6.03125 3.8125 -6.03125 C 3.140625 -6.03125 2.6875 -5.8125 2.1875 -5.203125 L 2.1875 -5.9375 Z M 0.65625 -5.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 2.015625 -3.65625 L 5.84375 -3.65625 L 5.84375 -4.546875 L 2.015625 -4.546875 L 2.015625 -7.109375 L 6.375 -7.109375 L 6.375 -8.015625 L 0.984375 -8.015625 L 0.984375 0 L 2.015625 0 Z M 2.015625 -3.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 0.765625 -5.765625 L 0.765625 0 L 1.6875 0 L 1.6875 -2.984375 C 1.6875 -4.375 2.265625 -5 3.53125 -4.96875 L 3.53125 -5.890625 C 3.375 -5.921875 3.28125 -5.921875 3.171875 -5.921875 C 2.578125 -5.921875 2.140625 -5.578125 1.609375 -4.71875 L 1.609375 -5.765625 Z M 0.765625 -5.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 5.640625 -2.578125 C 5.640625 -3.453125 5.578125 -3.984375 5.40625 -4.40625 C 5.03125 -5.359375 4.15625 -5.921875 3.078125 -5.921875 C 1.46875 -5.921875 0.4375 -4.703125 0.4375 -2.8125 C 0.4375 -0.90625 1.4375 0.25 3.0625 0.25 C 4.375 0.25 5.296875 -0.5 5.515625 -1.75 L 4.59375 -1.75 C 4.34375 -0.984375 3.828125 -0.59375 3.09375 -0.59375 C 2.515625 -0.59375 2.015625 -0.859375 1.703125 -1.34375 C 1.484375 -1.671875 1.40625 -2 1.390625 -2.578125 Z M 1.421875 -3.328125 C 1.5 -4.390625 2.140625 -5.078125 3.0625 -5.078125 C 4 -5.078125 4.65625 -4.359375 4.65625 -3.328125 Z M 1.421875 -3.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 5.4375 2.390625 L 5.4375 -5.765625 L 4.625 -5.765625 L 4.625 -5 C 4.203125 -5.59375 3.546875 -5.921875 2.796875 -5.921875 C 1.28125 -5.921875 0.28125 -4.6875 0.28125 -2.765625 C 0.28125 -0.90625 1.21875 0.25 2.75 0.25 C 3.546875 0.25 4.109375 -0.03125 4.53125 -0.65625 L 4.53125 2.390625 Z M 2.921875 -5.078125 C 3.90625 -5.078125 4.53125 -4.203125 4.53125 -2.8125 C 4.53125 -1.484375 3.890625 -0.609375 2.921875 -0.609375 C 1.90625 -0.609375 1.25 -1.5 1.25 -2.84375 C 1.25 -4.1875 1.90625 -5.078125 2.921875 -5.078125 Z M 2.921875 -5.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -5.765625 L 4.390625 -5.765625 L 4.390625 -2.5 C 4.390625 -1.3125 3.765625 -0.546875 2.8125 -0.546875 C 2.09375 -0.546875 1.625 -0.984375 1.625 -1.6875 L 1.625 -5.765625 L 0.71875 -5.765625 L 0.71875 -1.3125 C 0.71875 -0.359375 1.4375 0.25 2.546875 0.25 C 3.40625 0.25 3.9375 -0.046875 4.484375 -0.796875 L 4.484375 0 Z M 5.296875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 0.765625 -5.765625 L 0.765625 0 L 1.6875 0 L 1.6875 -3.171875 C 1.6875 -4.359375 2.3125 -5.125 3.25 -5.125 C 3.984375 -5.125 4.4375 -4.6875 4.4375 -4 L 4.4375 0 L 5.359375 0 L 5.359375 -4.359375 C 5.359375 -5.3125 4.640625 -5.921875 3.53125 -5.921875 C 2.671875 -5.921875 2.125 -5.59375 1.609375 -4.796875 L 1.609375 -5.765625 Z M 0.765625 -5.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 5.1875 -3.828125 C 5.140625 -4.390625 5.015625 -4.75 4.796875 -5.078125 C 4.40625 -5.609375 3.703125 -5.921875 2.90625 -5.921875 C 1.34375 -5.921875 0.34375 -4.703125 0.34375 -2.78125 C 0.34375 -0.921875 1.328125 0.25 2.890625 0.25 C 4.265625 0.25 5.140625 -0.578125 5.25 -1.984375 L 4.328125 -1.984375 C 4.171875 -1.0625 3.703125 -0.59375 2.921875 -0.59375 C 1.90625 -0.59375 1.296875 -1.421875 1.296875 -2.78125 C 1.296875 -4.21875 1.890625 -5.078125 2.890625 -5.078125 C 3.65625 -5.078125 4.140625 -4.625 4.25 -3.828125 Z M 5.1875 -3.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 4.265625 -5.765625 L 2.671875 -1.28125 L 1.203125 -5.765625 L 0.21875 -5.765625 L 2.171875 0.015625 L 1.8125 0.9375 C 1.65625 1.34375 1.46875 1.5 1.078125 1.5 C 0.921875 1.5 0.796875 1.46875 0.59375 1.4375 L 0.59375 2.25 C 0.78125 2.359375 0.96875 2.390625 1.203125 2.390625 C 1.5 2.390625 1.828125 2.296875 2.0625 2.125 C 2.359375 1.90625 2.515625 1.671875 2.6875 1.203125 L 5.265625 -5.765625 Z M 4.265625 -5.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 2.59375 -8.015625 C 1.5 -6.578125 0.796875 -4.578125 0.796875 -2.84375 C 0.796875 -1.109375 1.5 0.890625 2.59375 2.328125 L 3.203125 2.328125 C 2.234375 0.765625 1.6875 -1.09375 1.6875 -2.84375 C 1.6875 -4.59375 2.234375 -6.453125 3.203125 -8.015625 Z M 2.59375 -8.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 5.890625 -0.53125 C 5.78125 -0.515625 5.734375 -0.515625 5.6875 -0.515625 C 5.375 -0.515625 5.1875 -0.6875 5.1875 -0.96875 L 5.1875 -4.359375 C 5.1875 -5.375 4.4375 -5.921875 3.03125 -5.921875 C 2.171875 -5.921875 1.5 -5.6875 1.109375 -5.265625 C 0.84375 -4.96875 0.734375 -4.625 0.71875 -4.0625 L 1.640625 -4.0625 C 1.71875 -4.765625 2.140625 -5.078125 2.984375 -5.078125 C 3.828125 -5.078125 4.28125 -4.78125 4.28125 -4.21875 L 4.28125 -3.984375 C 4.265625 -3.59375 4.0625 -3.4375 3.328125 -3.34375 C 2.03125 -3.171875 1.828125 -3.140625 1.46875 -2.984375 C 0.796875 -2.703125 0.46875 -2.203125 0.46875 -1.453125 C 0.46875 -0.40625 1.1875 0.25 2.359375 0.25 C 3.078125 0.25 3.65625 0 4.3125 -0.59375 C 4.375 0 4.65625 0.25 5.265625 0.25 C 5.453125 0.25 5.578125 0.234375 5.890625 0.15625 Z M 4.28125 -1.8125 C 4.28125 -1.5 4.1875 -1.3125 3.921875 -1.0625 C 3.546875 -0.71875 3.09375 -0.546875 2.546875 -0.546875 C 1.84375 -0.546875 1.421875 -0.890625 1.421875 -1.46875 C 1.421875 -2.078125 1.8125 -2.390625 2.8125 -2.53125 C 3.78125 -2.65625 3.96875 -2.703125 4.28125 -2.84375 Z M 4.28125 -1.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 5.4375 -8.015625 L 4.53125 -8.015625 L 4.53125 -5.03125 C 4.140625 -5.625 3.53125 -5.921875 2.765625 -5.921875 C 1.265625 -5.921875 0.28125 -4.734375 0.28125 -2.890625 C 0.28125 -0.953125 1.234375 0.25 2.796875 0.25 C 3.59375 0.25 4.140625 -0.046875 4.625 -0.765625 L 4.625 0 L 5.4375 0 Z M 2.921875 -5.078125 C 3.90625 -5.078125 4.53125 -4.203125 4.53125 -2.8125 C 4.53125 -1.484375 3.890625 -0.609375 2.921875 -0.609375 C 1.90625 -0.609375 1.25 -1.5 1.25 -2.84375 C 1.25 -4.1875 1.90625 -5.078125 2.921875 -5.078125 Z M 2.921875 -5.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-13">
<path style="stroke:none;" d="M 2.515625 -8.015625 L -0.09375 0.21875 L 0.515625 0.21875 L 3.125 -8.015625 Z M 2.515625 -8.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-14">
<path style="stroke:none;" d="M 4.8125 -4.15625 C 4.8125 -5.296875 4.0625 -5.921875 2.734375 -5.921875 C 1.390625 -5.921875 0.515625 -5.234375 0.515625 -4.171875 C 0.515625 -3.265625 0.984375 -2.84375 2.34375 -2.515625 L 3.203125 -2.296875 C 3.84375 -2.140625 4.09375 -1.90625 4.09375 -1.5 C 4.09375 -0.953125 3.546875 -0.59375 2.75 -0.59375 C 2.25 -0.59375 1.84375 -0.734375 1.609375 -0.984375 C 1.46875 -1.140625 1.390625 -1.3125 1.34375 -1.71875 L 0.375 -1.71875 C 0.421875 -0.390625 1.171875 0.25 2.671875 0.25 C 4.125 0.25 5.046875 -0.46875 5.046875 -1.578125 C 5.046875 -2.4375 4.5625 -2.90625 3.421875 -3.171875 L 2.546875 -3.390625 C 1.796875 -3.5625 1.46875 -3.8125 1.46875 -4.21875 C 1.46875 -4.75 1.953125 -5.078125 2.6875 -5.078125 C 3.4375 -5.078125 3.828125 -4.765625 3.84375 -4.15625 Z M 4.8125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-15">
<path style="stroke:none;" d="M 1.015625 2.328125 C 2.125 0.890625 2.8125 -1.109375 2.8125 -2.84375 C 2.8125 -4.578125 2.125 -6.578125 1.015625 -8.015625 L 0.421875 -8.015625 C 1.390625 -6.453125 1.921875 -4.59375 1.921875 -2.84375 C 1.921875 -1.09375 1.390625 0.765625 0.421875 2.328125 Z M 1.015625 2.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 0 -5.140625 L -6.71875 -7.40625 L 0 -7.40625 L 0 -8.375 L -8.015625 -8.375 L -8.015625 -6.953125 L -1.03125 -4.625 L -8.015625 -2.25 L -8.015625 -0.828125 L 0 -0.828125 L 0 -1.796875 L -6.71875 -1.796875 L 0 -4.0625 Z M 0 -5.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M -0.53125 -5.890625 C -0.515625 -5.78125 -0.515625 -5.734375 -0.515625 -5.6875 C -0.515625 -5.375 -0.6875 -5.1875 -0.96875 -5.1875 L -4.359375 -5.1875 C -5.375 -5.1875 -5.921875 -4.4375 -5.921875 -3.03125 C -5.921875 -2.171875 -5.6875 -1.5 -5.265625 -1.109375 C -4.96875 -0.84375 -4.625 -0.734375 -4.0625 -0.71875 L -4.0625 -1.640625 C -4.765625 -1.71875 -5.078125 -2.140625 -5.078125 -2.984375 C -5.078125 -3.828125 -4.78125 -4.28125 -4.21875 -4.28125 L -3.984375 -4.28125 C -3.59375 -4.265625 -3.4375 -4.0625 -3.34375 -3.328125 C -3.171875 -2.03125 -3.140625 -1.828125 -2.984375 -1.46875 C -2.703125 -0.796875 -2.203125 -0.46875 -1.453125 -0.46875 C -0.40625 -0.46875 0.25 -1.1875 0.25 -2.359375 C 0.25 -3.078125 0 -3.65625 -0.59375 -4.3125 C 0 -4.375 0.25 -4.65625 0.25 -5.265625 C 0.25 -5.453125 0.234375 -5.578125 0.15625 -5.890625 Z M -1.8125 -4.28125 C -1.5 -4.28125 -1.3125 -4.1875 -1.0625 -3.921875 C -0.71875 -3.546875 -0.546875 -3.09375 -0.546875 -2.546875 C -0.546875 -1.84375 -0.890625 -1.421875 -1.46875 -1.421875 C -2.078125 -1.421875 -2.390625 -1.8125 -2.53125 -2.8125 C -2.65625 -3.78125 -2.703125 -3.96875 -2.84375 -4.28125 Z M -1.8125 -4.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M -5.765625 -4.4375 L -4.921875 -4.4375 C -5.625 -3.984375 -5.921875 -3.46875 -5.921875 -2.75 C -5.921875 -1.359375 -4.625 -0.390625 -2.78125 -0.390625 C -1.8125 -0.390625 -1.109375 -0.609375 -0.53125 -1.109375 C -0.015625 -1.546875 0.25 -2.09375 0.25 -2.6875 C 0.25 -3.375 -0.0625 -3.875 -0.78125 -4.359375 L -0.484375 -4.359375 C 1.0625 -4.359375 1.625 -3.921875 1.625 -2.78125 C 1.625 -2 1.3125 -1.59375 0.65625 -1.5 L 0.65625 -0.578125 C 1.734375 -0.65625 2.390625 -1.5 2.390625 -2.765625 C 2.390625 -3.609375 2.125 -4.3125 1.65625 -4.6875 C 1.125 -5.125 0.40625 -5.296875 -0.953125 -5.296875 L -5.765625 -5.296875 Z M -5.078125 -2.84375 C -5.078125 -3.8125 -4.265625 -4.359375 -2.8125 -4.359375 C -1.40625 -4.359375 -0.59375 -3.796875 -0.59375 -2.84375 C -0.59375 -1.890625 -1.421875 -1.34375 -2.84375 -1.34375 C -4.25 -1.34375 -5.078125 -1.890625 -5.078125 -2.84375 Z M -5.078125 -2.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M -5.765625 -0.765625 L 0 -0.765625 L 0 -1.6875 L -3.171875 -1.6875 C -4.359375 -1.6875 -5.125 -2.3125 -5.125 -3.25 C -5.125 -3.984375 -4.6875 -4.4375 -4 -4.4375 L 0 -4.4375 L 0 -5.359375 L -4.359375 -5.359375 C -5.3125 -5.359375 -5.921875 -4.640625 -5.921875 -3.53125 C -5.921875 -2.671875 -5.59375 -2.125 -4.796875 -1.609375 L -5.765625 -1.609375 Z M -5.765625 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-5">
<path style="stroke:none;" d="M -5.765625 -1.65625 L -5.765625 -0.734375 L 0 -0.734375 L 0 -1.65625 Z M -8.015625 -1.65625 L -8.015625 -0.71875 L -6.859375 -0.71875 L -6.859375 -1.65625 Z M -8.015625 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-6">
<path style="stroke:none;" d="M -5.765625 -2.796875 L -5.765625 -1.84375 L -7.34375 -1.84375 L -7.34375 -0.9375 L -5.765625 -0.9375 L -5.765625 -0.15625 L -5.015625 -0.15625 L -5.015625 -0.9375 L -0.65625 -0.9375 C -0.0625 -0.9375 0.25 -1.328125 0.25 -2.046875 C 0.25 -2.28125 0.234375 -2.484375 0.171875 -2.796875 L -0.59375 -2.796875 C -0.5625 -2.65625 -0.546875 -2.546875 -0.546875 -2.359375 C -0.546875 -1.953125 -0.65625 -1.84375 -1.0625 -1.84375 L -5.015625 -1.84375 L -5.015625 -2.796875 Z M -5.765625 -2.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-7">
<path style="stroke:none;" d="M 0 -5.296875 L -5.765625 -5.296875 L -5.765625 -4.390625 L -2.5 -4.390625 C -1.3125 -4.390625 -0.546875 -3.765625 -0.546875 -2.8125 C -0.546875 -2.09375 -0.984375 -1.625 -1.6875 -1.625 L -5.765625 -1.625 L -5.765625 -0.71875 L -1.3125 -0.71875 C -0.359375 -0.71875 0.25 -1.4375 0.25 -2.546875 C 0.25 -3.40625 -0.046875 -3.9375 -0.796875 -4.484375 L 0 -4.484375 Z M 0 -5.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-8">
<path style="stroke:none;" d="M -8.015625 -5.4375 L -8.015625 -4.53125 L -5.03125 -4.53125 C -5.625 -4.140625 -5.921875 -3.53125 -5.921875 -2.765625 C -5.921875 -1.265625 -4.734375 -0.28125 -2.890625 -0.28125 C -0.953125 -0.28125 0.25 -1.234375 0.25 -2.796875 C 0.25 -3.59375 -0.046875 -4.140625 -0.765625 -4.625 L 0 -4.625 L 0 -5.4375 Z M -5.078125 -2.921875 C -5.078125 -3.90625 -4.203125 -4.53125 -2.8125 -4.53125 C -1.484375 -4.53125 -0.609375 -3.890625 -0.609375 -2.921875 C -0.609375 -1.90625 -1.5 -1.25 -2.84375 -1.25 C -4.1875 -1.25 -5.078125 -1.90625 -5.078125 -2.921875 Z M -5.078125 -2.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-9">
<path style="stroke:none;" d="M -2.578125 -5.640625 C -3.453125 -5.640625 -3.984375 -5.578125 -4.40625 -5.40625 C -5.359375 -5.03125 -5.921875 -4.15625 -5.921875 -3.078125 C -5.921875 -1.46875 -4.703125 -0.4375 -2.8125 -0.4375 C -0.90625 -0.4375 0.25 -1.4375 0.25 -3.0625 C 0.25 -4.375 -0.5 -5.296875 -1.75 -5.515625 L -1.75 -4.59375 C -0.984375 -4.34375 -0.59375 -3.828125 -0.59375 -3.09375 C -0.59375 -2.515625 -0.859375 -2.015625 -1.34375 -1.703125 C -1.671875 -1.484375 -2 -1.40625 -2.578125 -1.390625 Z M -3.328125 -1.421875 C -4.390625 -1.5 -5.078125 -2.140625 -5.078125 -3.0625 C -5.078125 -4 -4.359375 -4.65625 -3.328125 -4.65625 Z M -3.328125 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-10">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-11">
<path style="stroke:none;" d="M -8.015625 -2.59375 C -6.578125 -1.5 -4.578125 -0.796875 -2.84375 -0.796875 C -1.109375 -0.796875 0.890625 -1.5 2.328125 -2.59375 L 2.328125 -3.203125 C 0.765625 -2.234375 -1.09375 -1.6875 -2.84375 -1.6875 C -4.59375 -1.6875 -6.453125 -2.234375 -8.015625 -3.203125 Z M -8.015625 -2.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-12">
<path style="stroke:none;" d="M 0 -0.875 L 0 -4.484375 C 0 -5.25 -0.203125 -5.8125 -0.671875 -6.234375 C -1.09375 -6.640625 -1.65625 -6.859375 -2.28125 -6.859375 C -3.25 -6.859375 -3.84375 -6.40625 -4.234375 -5.390625 C -4.578125 -6.125 -5.15625 -6.5 -5.984375 -6.5 C -6.578125 -6.5 -7.078125 -6.28125 -7.453125 -5.859375 C -7.84375 -5.4375 -8.015625 -4.890625 -8.015625 -4.125 L -8.015625 -0.875 Z M -4.5625 -1.890625 L -7.109375 -1.890625 L -7.109375 -3.875 C -7.109375 -4.4375 -7.046875 -4.765625 -6.828125 -5.03125 C -6.609375 -5.328125 -6.28125 -5.484375 -5.84375 -5.484375 C -5.40625 -5.484375 -5.078125 -5.328125 -4.84375 -5.03125 C -4.640625 -4.765625 -4.5625 -4.4375 -4.5625 -3.875 Z M -0.90625 -1.890625 L -3.65625 -1.890625 L -3.65625 -4.390625 C -3.65625 -5.296875 -3.140625 -5.828125 -2.28125 -5.828125 C -1.421875 -5.828125 -0.90625 -5.296875 -0.90625 -4.390625 Z M -0.90625 -1.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-13">
<path style="stroke:none;" d="M 2.328125 -1.015625 C 0.890625 -2.125 -1.109375 -2.8125 -2.84375 -2.8125 C -4.578125 -2.8125 -6.578125 -2.125 -8.015625 -1.015625 L -8.015625 -0.421875 C -6.453125 -1.390625 -4.59375 -1.921875 -2.84375 -1.921875 C -1.09375 -1.921875 0.765625 -1.390625 2.328125 -0.421875 Z M 2.328125 -1.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-14">
<path style="stroke:none;" d="M -5.765625 -2.359375 L -5.765625 -1.21875 L -4.625 -1.21875 L -4.625 -2.359375 Z M -1.140625 -1.203125 L 0 -1.203125 L 0 -1.875 L 0.203125 -1.875 C 0.953125 -1.875 1.171875 -1.734375 1.203125 -1.203125 L 1.609375 -1.203125 C 1.640625 -1.9375 1.109375 -2.359375 0.171875 -2.359375 L -1.140625 -2.359375 Z M -1.140625 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-15">
<path style="stroke:none;" d="M -3.40625 -2.03125 L -3.40625 -4.546875 C -3.40625 -5.171875 -3.59375 -5.671875 -3.96875 -6.09375 C -4.40625 -6.578125 -4.921875 -6.78125 -5.671875 -6.78125 C -7.171875 -6.78125 -8.015625 -5.890625 -8.015625 -4.3125 L -8.015625 -1 L 0 -1 L 0 -2.03125 Z M -4.296875 -2.03125 L -7.109375 -2.03125 L -7.109375 -4.15625 C -7.109375 -5.140625 -6.59375 -5.71875 -5.703125 -5.71875 C -4.828125 -5.71875 -4.296875 -5.140625 -4.296875 -4.15625 Z M -4.296875 -2.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-16">
<path style="stroke:none;" d="M -8.015625 -0.765625 L 0 -0.765625 L 0 -1.6875 L -3.171875 -1.6875 C -4.359375 -1.6875 -5.125 -2.296875 -5.125 -3.25 C -5.125 -3.546875 -5.03125 -3.84375 -4.875 -4.0625 C -4.671875 -4.328125 -4.40625 -4.4375 -4 -4.4375 L 0 -4.4375 L 0 -5.34375 L -4.359375 -5.34375 C -5.328125 -5.34375 -5.921875 -4.65625 -5.921875 -3.53125 C -5.921875 -2.71875 -5.671875 -2.21875 -4.96875 -1.6875 L -8.015625 -1.6875 Z M -8.015625 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-17">
<path style="stroke:none;" d="M -4.15625 -4.8125 C -5.296875 -4.8125 -5.921875 -4.0625 -5.921875 -2.734375 C -5.921875 -1.390625 -5.234375 -0.515625 -4.171875 -0.515625 C -3.265625 -0.515625 -2.84375 -0.984375 -2.515625 -2.34375 L -2.296875 -3.203125 C -2.140625 -3.84375 -1.90625 -4.09375 -1.5 -4.09375 C -0.953125 -4.09375 -0.59375 -3.546875 -0.59375 -2.75 C -0.59375 -2.25 -0.734375 -1.84375 -0.984375 -1.609375 C -1.140625 -1.46875 -1.3125 -1.390625 -1.71875 -1.34375 L -1.71875 -0.375 C -0.390625 -0.421875 0.25 -1.171875 0.25 -2.671875 C 0.25 -4.125 -0.46875 -5.046875 -1.578125 -5.046875 C -2.4375 -5.046875 -2.90625 -4.5625 -3.171875 -3.421875 L -3.390625 -2.546875 C -3.5625 -1.796875 -3.8125 -1.46875 -4.21875 -1.46875 C -4.75 -1.46875 -5.078125 -1.953125 -5.078125 -2.6875 C -5.078125 -3.4375 -4.765625 -3.828125 -4.15625 -3.84375 Z M -4.15625 -4.8125 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 45.496094 63.347656 L 156.859375 63.347656 L 156.859375 24.339844 L 45.496094 24.339844 Z M 45.496094 63.347656 "/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1486.300492 L 1568.824367 -1486.300492 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1876.320114 L 1568.824367 -1876.320114 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -1486.300492 L 826.29334 -1497.431635 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -1876.320114 L 826.29334 -1865.188972 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1486.300492 L 455.027827 -1491.885592 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 640.641049 -1486.300492 L 640.641049 -1491.885592 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -1486.300492 L 826.29334 -1491.885592 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1011.906563 -1486.300492 L 1011.906563 -1491.885592 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.558854 -1486.300492 L 1197.558854 -1491.885592 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1383.172076 -1486.300492 L 1383.172076 -1491.885592 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1486.300492 L 1568.824367 -1491.885592 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1876.320114 L 455.027827 -1870.735015 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 640.641049 -1876.320114 L 640.641049 -1870.735015 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -1876.320114 L 826.29334 -1870.735015 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1011.906563 -1876.320114 L 1011.906563 -1870.735015 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.558854 -1876.320114 L 1197.558854 -1870.735015 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1383.172076 -1876.320114 L 1383.172076 -1870.735015 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1876.320114 L 1568.824367 -1870.735015 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1486.300492 L 455.027827 -1876.320114 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1486.300492 L 1568.824367 -1876.320114 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1536.292994 L 466.162276 -1536.292994 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1677.951432 L 466.162276 -1677.951432 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1819.648928 L 466.162276 -1819.648928 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1536.292994 L 1557.689918 -1536.292994 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1677.951432 L 1557.689918 -1677.951432 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1819.648928 L 1557.689918 -1819.648928 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.277344 58.871094 L 23.277344 58.246094 L 25.957031 58.246094 L 25.957031 58.871094 L 23.277344 58.871094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.464844 59.96875 C 27.621094 60.199219 27.832031 60.371094 28.097656 60.480469 C 28.367188 60.59375 28.652344 60.648438 28.957031 60.648438 C 29.351562 60.648438 29.632812 60.480469 29.796875 60.148438 C 29.960938 59.8125 30.042969 59.433594 30.042969 59.007812 C 30.042969 58.816406 30.023438 58.625 29.988281 58.433594 C 29.953125 58.242188 29.894531 58.0625 29.8125 57.898438 C 29.730469 57.734375 29.617188 57.605469 29.476562 57.503906 C 29.332031 57.402344 29.160156 57.355469 28.953125 57.355469 L 28.277344 57.355469 C 28.21875 57.355469 28.191406 57.324219 28.191406 57.261719 L 28.191406 57.171875 C 28.191406 57.117188 28.21875 57.089844 28.277344 57.089844 L 28.835938 57.050781 C 29.074219 57.050781 29.269531 56.960938 29.425781 56.78125 C 29.582031 56.605469 29.695312 56.390625 29.769531 56.132812 C 29.839844 55.878906 29.878906 55.632812 29.878906 55.402344 C 29.878906 55.078125 29.800781 54.8125 29.652344 54.605469 C 29.5 54.398438 29.269531 54.296875 28.957031 54.296875 C 28.699219 54.296875 28.453125 54.34375 28.222656 54.441406 C 27.988281 54.539062 27.804688 54.6875 27.664062 54.882812 C 27.679688 54.878906 27.691406 54.875 27.699219 54.875 C 27.710938 54.875 27.722656 54.875 27.734375 54.875 C 27.886719 54.875 28.011719 54.929688 28.113281 55.035156 C 28.214844 55.140625 28.265625 55.265625 28.265625 55.414062 C 28.265625 55.558594 28.214844 55.683594 28.113281 55.789062 C 28.011719 55.894531 27.886719 55.949219 27.734375 55.949219 C 27.585938 55.949219 27.457031 55.894531 27.351562 55.789062 C 27.246094 55.683594 27.195312 55.558594 27.195312 55.414062 C 27.195312 55.121094 27.28125 54.867188 27.457031 54.65625 C 27.628906 54.441406 27.851562 54.28125 28.128906 54.171875 C 28.402344 54.058594 28.679688 54.003906 28.957031 54.003906 C 29.164062 54.003906 29.382812 54.03125 29.609375 54.09375 C 29.835938 54.152344 30.039062 54.242188 30.222656 54.355469 C 30.40625 54.472656 30.558594 54.617188 30.675781 54.796875 C 30.792969 54.972656 30.847656 55.175781 30.847656 55.402344 C 30.847656 55.683594 30.785156 55.945312 30.660156 56.1875 C 30.53125 56.429688 30.359375 56.640625 30.136719 56.8125 C 29.917969 56.984375 29.675781 57.117188 29.414062 57.203125 C 29.707031 57.257812 29.984375 57.367188 30.25 57.53125 C 30.511719 57.699219 30.722656 57.910156 30.886719 58.164062 C 31.046875 58.421875 31.125 58.699219 31.125 58.996094 C 31.125 59.371094 31.023438 59.710938 30.816406 60.007812 C 30.613281 60.308594 30.34375 60.546875 30.011719 60.714844 C 29.679688 60.886719 29.328125 60.972656 28.957031 60.972656 C 28.640625 60.972656 28.324219 60.910156 28.003906 60.789062 C 27.6875 60.667969 27.425781 60.488281 27.226562 60.246094 C 27.023438 60.007812 26.925781 59.71875 26.925781 59.382812 C 26.925781 59.214844 26.980469 59.074219 27.089844 58.964844 C 27.203125 58.851562 27.34375 58.796875 27.511719 58.796875 C 27.621094 58.796875 27.71875 58.820312 27.808594 58.871094 C 27.898438 58.921875 27.96875 58.996094 28.019531 59.085938 C 28.070312 59.179688 28.097656 59.277344 28.097656 59.382812 C 28.097656 59.546875 28.039062 59.683594 27.921875 59.796875 C 27.808594 59.910156 27.671875 59.96875 27.511719 59.96875 L 27.464844 59.96875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 34.027344 60.972656 C 33.199219 60.972656 32.636719 60.628906 32.339844 59.949219 C 32.042969 59.265625 31.894531 58.457031 31.894531 57.519531 C 31.894531 56.933594 31.949219 56.382812 32.054688 55.863281 C 32.160156 55.34375 32.371094 54.90625 32.6875 54.546875 C 33.007812 54.183594 33.453125 54.003906 34.027344 54.003906 C 34.472656 54.003906 34.835938 54.109375 35.121094 54.328125 C 35.402344 54.546875 35.617188 54.824219 35.765625 55.171875 C 35.914062 55.519531 36.015625 55.886719 36.070312 56.277344 C 36.125 56.671875 36.152344 57.085938 36.152344 57.519531 C 36.152344 58.101562 36.101562 58.644531 35.992188 59.152344 C 35.886719 59.65625 35.675781 60.085938 35.363281 60.441406 C 35.050781 60.792969 34.605469 60.972656 34.027344 60.972656 Z M 34.027344 60.707031 C 34.402344 60.707031 34.683594 60.515625 34.867188 60.128906 C 35.054688 59.746094 35.167969 59.316406 35.210938 58.847656 C 35.253906 58.378906 35.273438 57.882812 35.273438 57.355469 C 35.273438 56.847656 35.253906 56.378906 35.210938 55.949219 C 35.167969 55.523438 35.054688 55.136719 34.871094 54.785156 C 34.6875 54.441406 34.40625 54.265625 34.027344 54.265625 C 33.644531 54.265625 33.359375 54.441406 33.175781 54.789062 C 32.992188 55.140625 32.882812 55.527344 32.839844 55.953125 C 32.792969 56.378906 32.773438 56.847656 32.773438 57.355469 C 32.773438 57.730469 32.78125 58.085938 32.800781 58.417969 C 32.816406 58.753906 32.863281 59.097656 32.945312 59.449219 C 33.023438 59.804688 33.148438 60.101562 33.328125 60.34375 C 33.503906 60.585938 33.738281 60.707031 34.027344 60.707031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 60.972656 C 38.199219 60.972656 37.636719 60.628906 37.339844 59.949219 C 37.042969 59.265625 36.894531 58.457031 36.894531 57.519531 C 36.894531 56.933594 36.945312 56.382812 37.050781 55.863281 C 37.15625 55.34375 37.371094 54.90625 37.6875 54.546875 C 38.007812 54.183594 38.453125 54.003906 39.027344 54.003906 C 39.472656 54.003906 39.835938 54.109375 40.121094 54.328125 C 40.402344 54.546875 40.617188 54.824219 40.765625 55.171875 C 40.914062 55.519531 41.015625 55.886719 41.070312 56.277344 C 41.125 56.671875 41.152344 57.085938 41.152344 57.519531 C 41.152344 58.101562 41.101562 58.644531 40.992188 59.152344 C 40.886719 59.65625 40.675781 60.085938 40.363281 60.441406 C 40.050781 60.792969 39.605469 60.972656 39.027344 60.972656 Z M 39.027344 60.707031 C 39.402344 60.707031 39.683594 60.515625 39.867188 60.128906 C 40.054688 59.746094 40.167969 59.316406 40.210938 58.847656 C 40.253906 58.378906 40.273438 57.882812 40.273438 57.355469 C 40.273438 56.847656 40.253906 56.378906 40.210938 55.949219 C 40.167969 55.523438 40.054688 55.136719 39.871094 54.785156 C 39.6875 54.441406 39.40625 54.265625 39.027344 54.265625 C 38.644531 54.265625 38.359375 54.441406 38.175781 54.789062 C 37.992188 55.140625 37.878906 55.527344 37.835938 55.953125 C 37.792969 56.378906 37.773438 56.847656 37.773438 57.355469 C 37.773438 57.730469 37.78125 58.085938 37.800781 58.417969 C 37.816406 58.753906 37.863281 59.097656 37.941406 59.449219 C 38.019531 59.804688 38.148438 60.101562 38.328125 60.34375 C 38.503906 60.585938 38.738281 60.707031 39.027344 60.707031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.277344 44.703125 L 23.277344 44.074219 L 25.957031 44.074219 L 25.957031 44.703125 L 23.277344 44.703125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27 46.578125 L 27 46.308594 C 27 46.289062 27.007812 46.269531 27.019531 46.25 L 28.59375 44.511719 C 28.832031 44.253906 29.023438 44.035156 29.171875 43.863281 C 29.316406 43.6875 29.464844 43.488281 29.609375 43.261719 C 29.757812 43.035156 29.871094 42.804688 29.957031 42.566406 C 30.039062 42.332031 30.082031 42.078125 30.082031 41.8125 C 30.082031 41.539062 30.03125 41.277344 29.925781 41.023438 C 29.824219 40.769531 29.671875 40.566406 29.46875 40.414062 C 29.269531 40.265625 29.023438 40.191406 28.734375 40.191406 C 28.441406 40.191406 28.179688 40.277344 27.945312 40.453125 C 27.710938 40.628906 27.546875 40.859375 27.453125 41.140625 C 27.480469 41.132812 27.515625 41.128906 27.558594 41.128906 C 27.710938 41.128906 27.839844 41.179688 27.945312 41.28125 C 28.054688 41.382812 28.109375 41.515625 28.109375 41.679688 C 28.109375 41.832031 28.054688 41.960938 27.945312 42.070312 C 27.839844 42.175781 27.710938 42.230469 27.558594 42.230469 C 27.402344 42.230469 27.269531 42.175781 27.160156 42.066406 C 27.054688 41.957031 27 41.828125 27 41.679688 C 27 41.425781 27.046875 41.1875 27.144531 40.964844 C 27.238281 40.742188 27.378906 40.542969 27.558594 40.371094 C 27.738281 40.195312 27.941406 40.0625 28.167969 39.972656 C 28.394531 39.878906 28.632812 39.835938 28.886719 39.835938 C 29.269531 39.835938 29.628906 39.914062 29.960938 40.078125 C 30.296875 40.242188 30.558594 40.472656 30.753906 40.769531 C 30.945312 41.066406 31.042969 41.414062 31.042969 41.8125 C 31.042969 42.109375 30.980469 42.390625 30.847656 42.65625 C 30.722656 42.917969 30.558594 43.15625 30.359375 43.371094 C 30.160156 43.589844 29.902344 43.832031 29.585938 44.105469 C 29.273438 44.378906 29.066406 44.5625 28.96875 44.65625 L 27.820312 45.757812 L 28.792969 45.757812 C 29.273438 45.757812 29.675781 45.753906 29.996094 45.746094 C 30.316406 45.738281 30.484375 45.726562 30.503906 45.703125 C 30.585938 45.621094 30.667969 45.3125 30.75 44.773438 L 31.042969 44.773438 L 30.757812 46.578125 L 27 46.578125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 34.027344 46.800781 C 33.199219 46.800781 32.636719 46.460938 32.339844 45.777344 C 32.042969 45.097656 31.894531 44.285156 31.894531 43.351562 C 31.894531 42.765625 31.949219 42.210938 32.054688 41.695312 C 32.160156 41.175781 32.371094 40.738281 32.6875 40.375 C 33.007812 40.015625 33.453125 39.835938 34.027344 39.835938 C 34.472656 39.835938 34.835938 39.941406 35.121094 40.160156 C 35.402344 40.375 35.617188 40.65625 35.765625 41.003906 C 35.914062 41.347656 36.015625 41.71875 36.070312 42.109375 C 36.125 42.503906 36.152344 42.914062 36.152344 43.351562 C 36.152344 43.933594 36.101562 44.476562 35.992188 44.980469 C 35.886719 45.488281 35.675781 45.917969 35.363281 46.269531 C 35.050781 46.625 34.605469 46.800781 34.027344 46.800781 Z M 34.027344 46.539062 C 34.402344 46.539062 34.683594 46.34375 34.867188 45.960938 C 35.054688 45.574219 35.167969 45.148438 35.210938 44.679688 C 35.253906 44.210938 35.273438 43.714844 35.273438 43.1875 C 35.273438 42.679688 35.253906 42.210938 35.210938 41.78125 C 35.167969 41.355469 35.054688 40.964844 34.871094 40.617188 C 34.6875 40.269531 34.40625 40.097656 34.027344 40.097656 C 33.644531 40.097656 33.359375 40.273438 33.175781 40.621094 C 32.992188 40.972656 32.882812 41.359375 32.839844 41.785156 C 32.792969 42.210938 32.773438 42.679688 32.773438 43.1875 C 32.773438 43.5625 32.78125 43.914062 32.800781 44.25 C 32.816406 44.582031 32.863281 44.925781 32.945312 45.28125 C 33.023438 45.632812 33.148438 45.933594 33.328125 46.175781 C 33.503906 46.417969 33.738281 46.539062 34.027344 46.539062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 46.800781 C 38.199219 46.800781 37.636719 46.460938 37.339844 45.777344 C 37.042969 45.097656 36.894531 44.285156 36.894531 43.351562 C 36.894531 42.765625 36.945312 42.210938 37.050781 41.695312 C 37.15625 41.175781 37.371094 40.738281 37.6875 40.375 C 38.007812 40.015625 38.453125 39.835938 39.027344 39.835938 C 39.472656 39.835938 39.835938 39.941406 40.121094 40.160156 C 40.402344 40.375 40.617188 40.65625 40.765625 41.003906 C 40.914062 41.347656 41.015625 41.71875 41.070312 42.109375 C 41.125 42.503906 41.152344 42.914062 41.152344 43.351562 C 41.152344 43.933594 41.101562 44.476562 40.992188 44.980469 C 40.886719 45.488281 40.675781 45.917969 40.363281 46.269531 C 40.050781 46.625 39.605469 46.800781 39.027344 46.800781 Z M 39.027344 46.539062 C 39.402344 46.539062 39.683594 46.34375 39.867188 45.960938 C 40.054688 45.574219 40.167969 45.148438 40.210938 44.679688 C 40.253906 44.210938 40.273438 43.714844 40.273438 43.1875 C 40.273438 42.679688 40.253906 42.210938 40.210938 41.78125 C 40.167969 41.355469 40.054688 40.964844 39.871094 40.617188 C 39.6875 40.269531 39.40625 40.097656 39.027344 40.097656 C 38.644531 40.097656 38.359375 40.273438 38.175781 40.621094 C 37.992188 40.972656 37.878906 41.359375 37.835938 41.785156 C 37.792969 42.210938 37.773438 42.679688 37.773438 43.1875 C 37.773438 43.5625 37.78125 43.914062 37.800781 44.25 C 37.816406 44.582031 37.863281 44.925781 37.941406 45.28125 C 38.019531 45.632812 38.148438 45.933594 38.328125 46.175781 C 38.503906 46.417969 38.738281 46.539062 39.027344 46.539062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.277344 30.535156 L 23.277344 29.90625 L 25.957031 29.90625 L 25.957031 30.535156 L 23.277344 30.535156 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.433594 32.410156 L 27.433594 32.050781 C 28.277344 32.050781 28.699219 31.945312 28.699219 31.730469 L 28.699219 26.414062 C 28.351562 26.582031 27.910156 26.664062 27.375 26.664062 L 27.375 26.316406 C 28.203125 26.316406 28.828125 26.097656 29.25 25.664062 L 29.390625 25.664062 C 29.414062 25.664062 29.4375 25.671875 29.457031 25.691406 C 29.480469 25.707031 29.492188 25.730469 29.492188 25.753906 L 29.492188 31.730469 C 29.492188 31.945312 29.914062 32.050781 30.757812 32.050781 L 30.757812 32.410156 L 27.433594 32.410156 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 34.027344 32.632812 C 33.199219 32.632812 32.636719 32.292969 32.339844 31.609375 C 32.042969 30.929688 31.894531 30.117188 31.894531 29.179688 C 31.894531 28.59375 31.949219 28.042969 32.054688 27.523438 C 32.160156 27.007812 32.371094 26.566406 32.6875 26.207031 C 33.007812 25.84375 33.453125 25.664062 34.027344 25.664062 C 34.472656 25.664062 34.835938 25.773438 35.121094 25.988281 C 35.402344 26.207031 35.617188 26.488281 35.765625 26.835938 C 35.914062 27.179688 36.015625 27.550781 36.070312 27.941406 C 36.125 28.335938 36.152344 28.746094 36.152344 29.179688 C 36.152344 29.761719 36.101562 30.308594 35.992188 30.8125 C 35.886719 31.320312 35.675781 31.75 35.363281 32.101562 C 35.050781 32.457031 34.605469 32.632812 34.027344 32.632812 Z M 34.027344 32.367188 C 34.402344 32.367188 34.683594 32.175781 34.867188 31.789062 C 35.054688 31.40625 35.167969 30.980469 35.210938 30.511719 C 35.253906 30.042969 35.273438 29.542969 35.273438 29.015625 C 35.273438 28.507812 35.253906 28.039062 35.210938 27.613281 C 35.167969 27.183594 35.054688 26.796875 34.871094 26.449219 C 34.6875 26.101562 34.40625 25.929688 34.027344 25.929688 C 33.644531 25.929688 33.359375 26.101562 33.175781 26.453125 C 32.992188 26.800781 32.882812 27.191406 32.839844 27.617188 C 32.792969 28.042969 32.773438 28.507812 32.773438 29.015625 C 32.773438 29.390625 32.78125 29.746094 32.800781 30.078125 C 32.816406 30.414062 32.863281 30.757812 32.945312 31.113281 C 33.023438 31.464844 33.148438 31.761719 33.328125 32.003906 C 33.503906 32.246094 33.738281 32.367188 34.027344 32.367188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 32.632812 C 38.199219 32.632812 37.636719 32.292969 37.339844 31.609375 C 37.042969 30.929688 36.894531 30.117188 36.894531 29.179688 C 36.894531 28.59375 36.945312 28.042969 37.050781 27.523438 C 37.15625 27.007812 37.371094 26.566406 37.6875 26.207031 C 38.007812 25.84375 38.453125 25.664062 39.027344 25.664062 C 39.472656 25.664062 39.835938 25.773438 40.121094 25.988281 C 40.402344 26.207031 40.617188 26.488281 40.765625 26.835938 C 40.914062 27.179688 41.015625 27.550781 41.070312 27.941406 C 41.125 28.335938 41.152344 28.746094 41.152344 29.179688 C 41.152344 29.761719 41.101562 30.308594 40.992188 30.8125 C 40.886719 31.320312 40.675781 31.75 40.363281 32.101562 C 40.050781 32.457031 39.605469 32.632812 39.027344 32.632812 Z M 39.027344 32.367188 C 39.402344 32.367188 39.683594 32.175781 39.867188 31.789062 C 40.054688 31.40625 40.167969 30.980469 40.210938 30.511719 C 40.253906 30.042969 40.273438 29.542969 40.273438 29.015625 C 40.273438 28.507812 40.253906 28.039062 40.210938 27.613281 C 40.167969 27.183594 40.054688 26.796875 39.871094 26.449219 C 39.6875 26.101562 39.40625 25.929688 39.027344 25.929688 C 38.644531 25.929688 38.359375 26.101562 38.175781 26.453125 C 37.992188 26.800781 37.878906 27.191406 37.835938 27.617188 C 37.792969 28.042969 37.773438 28.507812 37.773438 29.015625 C 37.773438 29.390625 37.78125 29.746094 37.800781 30.078125 C 37.816406 30.414062 37.863281 30.757812 37.941406 31.113281 C 38.019531 31.464844 38.148438 31.761719 38.328125 32.003906 C 38.503906 32.246094 38.738281 32.367188 39.027344 32.367188 "/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="17.5398" y="60.347"/>
<use xlink:href="#glyph0-2" x="17.5398" y="54.235803"/>
<use xlink:href="#glyph0-3" x="17.5398" y="48.674713"/>
<use xlink:href="#glyph0-4" x="17.5398" y="45.894168"/>
<use xlink:href="#glyph0-5" x="17.5398" y="43.113623"/>
<use xlink:href="#glyph0-6" x="17.5398" y="35.892208"/>
</g>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="78.8656" y="20.777"/>
<use xlink:href="#glyph1-2" x="84.975031" y="20.777"/>
<use xlink:href="#glyph1-3" x="88.304722" y="20.777"/>
<use xlink:href="#glyph1-4" x="93.864204" y="20.777"/>
<use xlink:href="#glyph1-5" x="102.193429" y="20.777"/>
<use xlink:href="#glyph1-6" x="104.97317" y="20.777"/>
<use xlink:href="#glyph1-1" x="107.752912" y="20.777"/>
<use xlink:href="#glyph1-7" x="113.862343" y="20.777"/>
</g>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 454.871554 -1734.622619 L 1016.321274 -1734.622619 L 1109.108351 -1734.661676 L 1159.232907 -1734.661676 L 1171.61754 -1734.700732 L 1184.041242 -1734.700732 L 1196.425875 -1734.739789 L 1208.849576 -1734.778846 L 1221.234209 -1734.817902 L 1246.081611 -1734.974129 L 1258.466245 -1735.130355 L 1270.889946 -1735.286582 L 1283.274579 -1735.559979 L 1295.69828 -1735.872432 L 1308.082913 -1736.380168 L 1320.506614 -1737.083188 L 1328.593741 -1737.708094 L 1339.72819 -1738.840736 L 1339.767258 -1738.840736 L 1348.948295 -1740.207719 L 1356.566603 -1741.730928 L 1362.817522 -1743.488477 L 1362.85659 -1743.488477 L 1368.013598 -1745.402252 L 1368.052666 -1745.402252 L 1372.311105 -1747.511311 L 1372.350173 -1747.511311 L 1375.866315 -1749.815653 L 1375.905383 -1749.815653 L 1378.796433 -1752.315278 L 1378.835501 -1752.315278 L 1381.218664 -1755.049243 L 1381.257732 -1755.049243 L 1383.211145 -1758.017547 L 1383.211145 -1758.056604 L 1383.250213 -1758.056604 L 1384.891079 -1761.376419 L 1384.891079 -1761.415475 L 1386.258467 -1765.203969 L 1386.258467 -1765.243026 L 1387.391447 -1769.73454 L 1387.391447 -1769.812653 L 1388.329084 -1775.475866 L 1388.329084 -1775.593036 L 1389.071381 -1783.248138 L 1389.071381 -1783.365308 L 1389.110449 -1783.443421 L 1389.735541 -1790.31739 L 1390.360633 -1783.326251 L 1390.360633 -1783.130968 L 1391.141998 -1775.20247 L 1391.141998 -1775.0853 L 1392.079636 -1769.14869 L 1392.079636 -1769.03152 L 1393.212615 -1764.227553 L 1393.212615 -1764.14944 L 1394.540935 -1759.931323 L 1394.580003 -1759.931323 L 1394.580003 -1759.892266 L 1396.220869 -1756.064715 L 1398.21335 -1752.471504 L 1398.252418 -1752.432448 L 1400.635581 -1748.995463 L 1400.674649 -1748.995463 L 1403.565699 -1745.597535 L 1403.604767 -1745.597535 L 1407.120909 -1742.238664 L 1407.120909 -1742.199608 L 1411.418416 -1738.80168 L 1411.457484 -1738.80168 L 1416.614492 -1735.286582 L 1422.904479 -1731.615258 L 1430.522787 -1727.74865 L 1439.703824 -1723.608646 L 1439.703824 -1723.56959 L 1439.742892 -1723.56959 L 1450.838273 -1719.039019 L 1450.877341 -1719.039019 L 1456.971987 -1716.695621 L 1469.395689 -1712.16505 L 1481.81939 -1707.86882 L 1494.204023 -1703.689759 L 1506.627724 -1699.666925 L 1519.012357 -1695.683148 L 1531.436059 -1691.777483 L 1543.820692 -1687.871819 L 1556.244393 -1684.005212 L 1568.668094 -1680.177661 L 1568.941572 -1680.060491 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 454.871554 -1876.320114 L 575.787766 -1876.320114 L 588.211467 -1876.281058 L 637.828136 -1876.281058 L 650.212769 -1876.242001 L 662.63647 -1876.242001 L 675.021103 -1876.202945 L 687.444804 -1876.163888 L 699.829437 -1876.085775 L 712.253139 -1876.007661 L 724.637772 -1875.929548 L 737.061473 -1875.773322 L 749.446106 -1875.617095 L 761.869807 -1875.343698 L 774.25444 -1875.031245 L 786.678142 -1874.640679 L 799.062775 -1874.132943 L 811.486476 -1873.508036 L 823.871109 -1872.726903 L 836.29481 -1871.828601 L 848.718512 -1870.735015 L 861.103145 -1869.524259 L 873.526846 -1868.157276 L 885.911479 -1866.673124 L 898.33518 -1865.071802 L 910.719813 -1863.35331 L 923.143515 -1861.517647 L 935.528148 -1859.603872 L 947.951849 -1857.572927 L 960.336482 -1855.424811 L 972.760183 -1853.198583 L 985.144816 -1850.816128 L 997.568518 -1848.316503 L 1009.953151 -1845.660651 L 1022.376852 -1842.848573 L 1034.761485 -1839.880268 L 1047.185186 -1836.794793 L 1059.608888 -1833.553092 L 1071.993521 -1830.194221 L 1084.378154 -1826.796293 L 1109.225556 -1819.687984 L 1121.610189 -1816.055717 L 1133.994822 -1812.384392 L 1158.842225 -1804.96363 L 1171.226858 -1801.214193 L 1183.650559 -1797.464755 L 1196.035192 -1793.676261 L 1208.458893 -1789.926823 L 1220.843526 -1786.138329 L 1233.267228 -1782.388892 L 1245.651861 -1778.600397 L 1258.075562 -1774.811903 L 1270.460195 -1771.023409 L 1282.883896 -1767.234915 L 1295.268529 -1763.446421 L 1307.692231 -1759.696983 L 1320.076864 -1755.908489 L 1332.500565 -1752.119995 L 1518.113788 -1695.448808 L 1568.941572 -1679.943321 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 45.496094 102.730469 L 156.859375 102.730469 L 156.859375 67.847656 L 45.496094 67.847656 Z M 45.496094 102.730469 "/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1092.531433 L 1568.824367 -1092.531433 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1441.307241 L 1568.824367 -1441.307241 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -1092.531433 L 826.29334 -1103.662576 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -1441.307241 L 826.29334 -1430.176099 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1092.531433 L 455.027827 -1098.116533 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 640.641049 -1092.531433 L 640.641049 -1098.116533 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -1092.531433 L 826.29334 -1098.116533 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1011.906563 -1092.531433 L 1011.906563 -1098.116533 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.558854 -1092.531433 L 1197.558854 -1098.116533 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1383.172076 -1092.531433 L 1383.172076 -1098.116533 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1092.531433 L 1568.824367 -1098.116533 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1441.307241 L 455.027827 -1435.722142 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 640.641049 -1441.307241 L 640.641049 -1435.722142 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -1441.307241 L 826.29334 -1435.722142 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1011.906563 -1441.307241 L 1011.906563 -1435.722142 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.558854 -1441.307241 L 1197.558854 -1435.722142 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1383.172076 -1441.307241 L 1383.172076 -1435.722142 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1441.307241 L 1568.824367 -1435.722142 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1092.531433 L 455.027827 -1441.307241 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1092.531433 L 1568.824367 -1441.307241 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1095.968417 L 466.162276 -1095.968417 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1181.424349 L 466.162276 -1181.424349 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1266.919337 L 466.162276 -1266.919337 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1352.414325 L 466.162276 -1352.414325 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1437.870257 L 466.162276 -1437.870257 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1095.968417 L 1557.689918 -1095.968417 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1181.424349 L 1557.689918 -1181.424349 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1266.919337 L 1557.689918 -1266.919337 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1352.414325 L 1557.689918 -1352.414325 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1437.870257 L 1557.689918 -1437.870257 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.277344 102.914062 L 23.277344 102.285156 L 25.957031 102.285156 L 25.957031 102.914062 L 23.277344 102.914062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27 104.789062 L 27 104.519531 C 27 104.5 27.007812 104.480469 27.019531 104.460938 L 28.59375 102.71875 C 28.832031 102.460938 29.023438 102.246094 29.171875 102.070312 C 29.316406 101.898438 29.464844 101.699219 29.609375 101.472656 C 29.757812 101.246094 29.871094 101.015625 29.957031 100.777344 C 30.039062 100.539062 30.082031 100.289062 30.082031 100.023438 C 30.082031 99.75 30.03125 99.488281 29.925781 99.234375 C 29.824219 98.980469 29.671875 98.777344 29.46875 98.625 C 29.269531 98.476562 29.023438 98.402344 28.734375 98.402344 C 28.441406 98.402344 28.179688 98.488281 27.945312 98.664062 C 27.710938 98.839844 27.546875 99.070312 27.453125 99.351562 C 27.480469 99.34375 27.515625 99.339844 27.558594 99.339844 C 27.710938 99.339844 27.839844 99.390625 27.945312 99.492188 C 28.054688 99.59375 28.109375 99.726562 28.109375 99.890625 C 28.109375 100.042969 28.054688 100.171875 27.945312 100.277344 C 27.839844 100.386719 27.710938 100.441406 27.558594 100.441406 C 27.402344 100.441406 27.269531 100.386719 27.160156 100.277344 C 27.054688 100.167969 27 100.035156 27 99.890625 C 27 99.636719 27.046875 99.398438 27.144531 99.175781 C 27.238281 98.953125 27.378906 98.753906 27.558594 98.578125 C 27.738281 98.40625 27.941406 98.273438 28.167969 98.179688 C 28.394531 98.089844 28.632812 98.042969 28.886719 98.042969 C 29.269531 98.042969 29.628906 98.125 29.960938 98.289062 C 30.296875 98.453125 30.558594 98.683594 30.753906 98.980469 C 30.945312 99.277344 31.042969 99.625 31.042969 100.023438 C 31.042969 100.320312 30.980469 100.601562 30.847656 100.863281 C 30.722656 101.128906 30.558594 101.367188 30.359375 101.582031 C 30.160156 101.796875 29.902344 102.042969 29.585938 102.316406 C 29.273438 102.589844 29.066406 102.773438 28.96875 102.867188 L 27.820312 103.96875 L 28.792969 103.96875 C 29.273438 103.96875 29.675781 103.964844 29.996094 103.957031 C 30.316406 103.949219 30.484375 103.933594 30.503906 103.914062 C 30.585938 103.835938 30.667969 103.523438 30.75 102.984375 L 31.042969 102.984375 L 30.757812 104.789062 L 27 104.789062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 33.253906 104.523438 C 33.253906 104.148438 33.285156 103.78125 33.351562 103.421875 C 33.417969 103.0625 33.515625 102.707031 33.644531 102.355469 C 33.769531 102.003906 33.921875 101.660156 34.101562 101.320312 C 34.28125 100.984375 34.480469 100.667969 34.695312 100.375 L 35.621094 99.085938 L 34.460938 99.085938 C 33.261719 99.085938 32.644531 99.105469 32.609375 99.140625 C 32.519531 99.246094 32.433594 99.554688 32.355469 100.070312 L 32.066406 100.070312 L 32.398438 97.945312 L 32.691406 97.945312 L 32.691406 97.972656 C 32.691406 98.097656 32.898438 98.179688 33.308594 98.214844 C 33.722656 98.246094 34.125 98.265625 34.519531 98.265625 L 36.40625 98.265625 L 36.40625 98.527344 C 36.40625 98.535156 36.40625 98.535156 36.402344 98.539062 C 36.402344 98.546875 36.398438 98.550781 36.394531 98.558594 L 35 100.515625 C 34.65625 101.023438 34.441406 101.589844 34.359375 102.207031 C 34.273438 102.828125 34.230469 103.597656 34.230469 104.523438 C 34.230469 104.65625 34.183594 104.773438 34.089844 104.867188 C 33.992188 104.964844 33.878906 105.011719 33.746094 105.011719 C 33.609375 105.011719 33.492188 104.964844 33.398438 104.867188 C 33.300781 104.773438 33.253906 104.65625 33.253906 104.523438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 105.011719 C 38.199219 105.011719 37.636719 104.671875 37.339844 103.988281 C 37.042969 103.308594 36.894531 102.496094 36.894531 101.558594 C 36.894531 100.972656 36.945312 100.421875 37.050781 99.902344 C 37.15625 99.386719 37.371094 98.945312 37.6875 98.585938 C 38.007812 98.222656 38.453125 98.042969 39.027344 98.042969 C 39.472656 98.042969 39.835938 98.152344 40.121094 98.367188 C 40.402344 98.585938 40.617188 98.867188 40.765625 99.210938 C 40.914062 99.558594 41.015625 99.925781 41.070312 100.320312 C 41.125 100.710938 41.152344 101.125 41.152344 101.558594 C 41.152344 102.140625 41.101562 102.6875 40.992188 103.191406 C 40.886719 103.699219 40.675781 104.128906 40.363281 104.480469 C 40.050781 104.835938 39.605469 105.011719 39.027344 105.011719 Z M 39.027344 104.746094 C 39.402344 104.746094 39.683594 104.554688 39.867188 104.171875 C 40.054688 103.785156 40.167969 103.359375 40.210938 102.890625 C 40.253906 102.421875 40.273438 101.921875 40.273438 101.394531 C 40.273438 100.886719 40.253906 100.421875 40.210938 99.992188 C 40.167969 99.5625 40.054688 99.175781 39.871094 98.828125 C 39.6875 98.480469 39.40625 98.308594 39.027344 98.308594 C 38.644531 98.308594 38.359375 98.480469 38.175781 98.832031 C 37.992188 99.179688 37.878906 99.570312 37.835938 99.996094 C 37.792969 100.421875 37.773438 100.886719 37.773438 101.394531 C 37.773438 101.769531 37.78125 102.125 37.800781 102.460938 C 37.816406 102.792969 37.863281 103.136719 37.941406 103.492188 C 38.019531 103.84375 38.148438 104.140625 38.328125 104.382812 C 38.503906 104.628906 38.738281 104.746094 39.027344 104.746094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.277344 94.363281 L 23.277344 93.738281 L 25.957031 93.738281 L 25.957031 94.363281 L 23.277344 94.363281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.433594 96.238281 L 27.433594 95.882812 C 28.277344 95.882812 28.699219 95.773438 28.699219 95.558594 L 28.699219 90.242188 C 28.351562 90.410156 27.910156 90.496094 27.375 90.496094 L 27.375 90.144531 C 28.203125 90.144531 28.828125 89.929688 29.25 89.492188 L 29.390625 89.492188 C 29.414062 89.492188 29.4375 89.503906 29.457031 89.519531 C 29.480469 89.539062 29.492188 89.558594 29.492188 89.582031 L 29.492188 95.558594 C 29.492188 95.773438 29.914062 95.882812 30.757812 95.882812 L 30.757812 96.238281 L 27.433594 96.238281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 31.925781 94.703125 C 31.925781 94.296875 32.054688 93.9375 32.324219 93.625 C 32.589844 93.3125 32.929688 93.054688 33.347656 92.847656 L 32.972656 92.605469 C 32.742188 92.453125 32.554688 92.25 32.410156 92 C 32.265625 91.746094 32.195312 91.480469 32.195312 91.203125 C 32.195312 90.882812 32.277344 90.589844 32.449219 90.328125 C 32.617188 90.070312 32.84375 89.863281 33.125 89.714844 C 33.40625 89.566406 33.707031 89.492188 34.027344 89.492188 C 34.328125 89.492188 34.617188 89.554688 34.894531 89.679688 C 35.171875 89.800781 35.398438 89.976562 35.582031 90.203125 C 35.761719 90.429688 35.847656 90.699219 35.847656 91.011719 C 35.847656 91.238281 35.796875 91.449219 35.691406 91.644531 C 35.585938 91.839844 35.441406 92.015625 35.253906 92.167969 C 35.066406 92.324219 34.863281 92.453125 34.65625 92.566406 L 35.234375 92.933594 C 35.5 93.109375 35.714844 93.339844 35.878906 93.621094 C 36.042969 93.90625 36.125 94.203125 36.125 94.515625 C 36.125 94.882812 36.027344 95.21875 35.828125 95.519531 C 35.632812 95.820312 35.371094 96.050781 35.050781 96.214844 C 34.726562 96.378906 34.386719 96.460938 34.027344 96.460938 C 33.679688 96.460938 33.34375 96.390625 33.015625 96.246094 C 32.691406 96.105469 32.425781 95.898438 32.226562 95.632812 C 32.023438 95.363281 31.925781 95.054688 31.925781 94.703125 Z M 32.46875 94.703125 C 32.46875 94.96875 32.542969 95.214844 32.6875 95.433594 C 32.835938 95.652344 33.03125 95.828125 33.273438 95.953125 C 33.515625 96.078125 33.765625 96.140625 34.027344 96.140625 C 34.417969 96.140625 34.773438 96.023438 35.09375 95.796875 C 35.414062 95.566406 35.574219 95.265625 35.574219 94.886719 C 35.574219 94.757812 35.546875 94.628906 35.496094 94.503906 C 35.445312 94.375 35.378906 94.257812 35.285156 94.15625 C 35.195312 94.050781 35.09375 93.96875 34.980469 93.902344 L 33.621094 93.023438 C 33.410156 93.132812 33.21875 93.273438 33.042969 93.445312 C 32.867188 93.617188 32.726562 93.808594 32.625 94.023438 C 32.519531 94.238281 32.46875 94.464844 32.46875 94.703125 Z M 33.164062 91.609375 L 34.390625 92.402344 C 34.675781 92.238281 34.910156 92.035156 35.089844 91.804688 C 35.273438 91.566406 35.363281 91.304688 35.363281 91.011719 C 35.363281 90.785156 35.300781 90.578125 35.171875 90.386719 C 35.046875 90.199219 34.878906 90.050781 34.675781 89.945312 C 34.46875 89.839844 34.25 89.785156 34.015625 89.785156 C 33.8125 89.785156 33.605469 89.824219 33.402344 89.902344 C 33.195312 89.980469 33.023438 90.101562 32.886719 90.257812 C 32.753906 90.417969 32.683594 90.601562 32.683594 90.8125 C 32.683594 91.128906 32.84375 91.394531 33.164062 91.609375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 96.460938 C 38.199219 96.460938 37.636719 96.121094 37.339844 95.4375 C 37.042969 94.757812 36.894531 93.949219 36.894531 93.011719 C 36.894531 92.425781 36.945312 91.871094 37.050781 91.355469 C 37.15625 90.835938 37.371094 90.398438 37.6875 90.035156 C 38.007812 89.675781 38.453125 89.492188 39.027344 89.492188 C 39.472656 89.492188 39.835938 89.601562 40.121094 89.820312 C 40.402344 90.035156 40.617188 90.316406 40.765625 90.664062 C 40.914062 91.007812 41.015625 91.378906 41.070312 91.769531 C 41.125 92.164062 41.152344 92.578125 41.152344 93.011719 C 41.152344 93.59375 41.101562 94.136719 40.992188 94.640625 C 40.886719 95.148438 40.675781 95.578125 40.363281 95.933594 C 40.050781 96.285156 39.605469 96.460938 39.027344 96.460938 Z M 39.027344 96.199219 C 39.402344 96.199219 39.683594 96.007812 39.867188 95.621094 C 40.054688 95.234375 40.167969 94.808594 40.210938 94.339844 C 40.253906 93.871094 40.273438 93.371094 40.273438 92.847656 C 40.273438 92.339844 40.253906 91.871094 40.210938 91.441406 C 40.167969 91.015625 40.054688 90.628906 39.871094 90.277344 C 39.6875 89.933594 39.40625 89.757812 39.027344 89.757812 C 38.644531 89.757812 38.359375 89.933594 38.175781 90.28125 C 37.992188 90.632812 37.878906 91.019531 37.835938 91.445312 C 37.792969 91.871094 37.773438 92.339844 37.773438 92.847656 C 37.773438 93.222656 37.78125 93.574219 37.800781 93.910156 C 37.816406 94.242188 37.863281 94.585938 37.941406 94.941406 C 38.019531 95.296875 38.148438 95.59375 38.328125 95.835938 C 38.503906 96.078125 38.738281 96.199219 39.027344 96.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 28.273438 85.8125 L 28.273438 85.1875 L 30.957031 85.1875 L 30.957031 85.8125 L 28.273438 85.8125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 32.640625 87.261719 C 32.824219 87.480469 33.144531 87.589844 33.597656 87.589844 C 33.855469 87.589844 34.097656 87.503906 34.320312 87.328125 C 34.542969 87.15625 34.714844 86.941406 34.835938 86.6875 C 34.980469 86.398438 35.074219 86.09375 35.109375 85.769531 C 35.152344 85.441406 35.167969 85.039062 35.167969 84.558594 C 35.050781 84.835938 34.886719 85.058594 34.671875 85.230469 C 34.457031 85.40625 34.210938 85.492188 33.925781 85.492188 C 33.535156 85.492188 33.1875 85.386719 32.878906 85.175781 C 32.570312 84.964844 32.335938 84.683594 32.167969 84.335938 C 32.007812 83.984375 31.925781 83.613281 31.925781 83.222656 C 31.925781 82.816406 32.015625 82.441406 32.199219 82.089844 C 32.382812 81.742188 32.636719 81.460938 32.964844 81.253906 C 33.289062 81.046875 33.660156 80.945312 34.074219 80.945312 C 34.484375 80.945312 34.828125 81.054688 35.101562 81.277344 C 35.378906 81.5 35.585938 81.789062 35.730469 82.140625 C 35.875 82.492188 35.976562 82.863281 36.035156 83.257812 C 36.09375 83.648438 36.125 84.035156 36.125 84.414062 C 36.125 84.9375 36.027344 85.46875 35.835938 86.011719 C 35.644531 86.550781 35.359375 87.003906 34.980469 87.367188 C 34.597656 87.730469 34.140625 87.910156 33.597656 87.910156 C 33.203125 87.910156 32.863281 87.820312 32.589844 87.632812 C 32.3125 87.445312 32.175781 87.160156 32.175781 86.78125 C 32.175781 86.640625 32.222656 86.523438 32.316406 86.429688 C 32.410156 86.335938 32.527344 86.289062 32.664062 86.289062 C 32.800781 86.289062 32.914062 86.335938 33.007812 86.429688 C 33.101562 86.523438 33.148438 86.640625 33.148438 86.78125 C 33.148438 86.910156 33.101562 87.023438 33.003906 87.117188 C 32.910156 87.214844 32.792969 87.261719 32.664062 87.261719 Z M 33.96875 85.226562 C 34.246094 85.226562 34.472656 85.132812 34.648438 84.945312 C 34.824219 84.757812 34.953125 84.527344 35.03125 84.253906 C 35.113281 83.976562 35.152344 83.703125 35.152344 83.429688 L 35.152344 83.195312 C 35.152344 82.6875 35.078125 82.234375 34.929688 81.835938 C 34.78125 81.4375 34.496094 81.238281 34.074219 81.238281 C 33.808594 81.238281 33.59375 81.296875 33.425781 81.414062 C 33.261719 81.53125 33.136719 81.6875 33.058594 81.878906 C 32.976562 82.074219 32.925781 82.28125 32.90625 82.5 C 32.882812 82.722656 32.871094 82.960938 32.871094 83.222656 C 32.871094 83.605469 32.890625 83.933594 32.929688 84.203125 C 32.964844 84.472656 33.066406 84.710938 33.226562 84.917969 C 33.390625 85.125 33.636719 85.226562 33.96875 85.226562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 87.910156 C 38.199219 87.910156 37.636719 87.570312 37.339844 86.890625 C 37.042969 86.207031 36.894531 85.398438 36.894531 84.460938 C 36.894531 83.875 36.945312 83.324219 37.050781 82.804688 C 37.15625 82.285156 37.371094 81.847656 37.6875 81.488281 C 38.007812 81.125 38.453125 80.945312 39.027344 80.945312 C 39.472656 80.945312 39.835938 81.054688 40.121094 81.269531 C 40.402344 81.488281 40.617188 81.769531 40.765625 82.113281 C 40.914062 82.460938 41.015625 82.828125 41.070312 83.222656 C 41.125 83.613281 41.152344 84.027344 41.152344 84.460938 C 41.152344 85.042969 41.101562 85.585938 40.992188 86.09375 C 40.886719 86.597656 40.675781 87.027344 40.363281 87.382812 C 40.050781 87.734375 39.605469 87.910156 39.027344 87.910156 Z M 39.027344 87.648438 C 39.402344 87.648438 39.683594 87.457031 39.867188 87.070312 C 40.054688 86.6875 40.167969 86.261719 40.210938 85.789062 C 40.253906 85.320312 40.273438 84.824219 40.273438 84.296875 C 40.273438 83.789062 40.253906 83.320312 40.210938 82.894531 C 40.167969 82.464844 40.054688 82.078125 39.871094 81.730469 C 39.6875 81.382812 39.40625 81.207031 39.027344 81.207031 C 38.644531 81.207031 38.359375 81.382812 38.175781 81.734375 C 37.992188 82.082031 37.878906 82.46875 37.835938 82.894531 C 37.792969 83.320312 37.773438 83.789062 37.773438 84.296875 C 37.773438 84.671875 37.78125 85.027344 37.800781 85.359375 C 37.816406 85.695312 37.863281 86.039062 37.941406 86.390625 C 38.019531 86.746094 38.148438 87.042969 38.328125 87.285156 C 38.503906 87.527344 38.738281 87.648438 39.027344 87.648438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 79.363281 C 38.199219 79.363281 37.636719 79.023438 37.339844 78.339844 C 37.042969 77.660156 36.894531 76.847656 36.894531 75.910156 C 36.894531 75.324219 36.945312 74.773438 37.050781 74.253906 C 37.15625 73.738281 37.371094 73.296875 37.6875 72.9375 C 38.007812 72.574219 38.453125 72.394531 39.027344 72.394531 C 39.472656 72.394531 39.835938 72.503906 40.121094 72.71875 C 40.402344 72.9375 40.617188 73.21875 40.765625 73.5625 C 40.914062 73.910156 41.015625 74.277344 41.070312 74.671875 C 41.125 75.0625 41.152344 75.476562 41.152344 75.910156 C 41.152344 76.492188 41.101562 77.035156 40.992188 77.542969 C 40.886719 78.050781 40.675781 78.480469 40.363281 78.832031 C 40.050781 79.1875 39.605469 79.363281 39.027344 79.363281 Z M 39.027344 79.101562 C 39.402344 79.101562 39.683594 78.90625 39.867188 78.523438 C 40.054688 78.136719 40.167969 77.710938 40.210938 77.242188 C 40.253906 76.773438 40.273438 76.273438 40.273438 75.746094 C 40.273438 75.238281 40.253906 74.769531 40.210938 74.34375 C 40.167969 73.914062 40.054688 73.527344 39.871094 73.179688 C 39.6875 72.832031 39.40625 72.660156 39.027344 72.660156 C 38.644531 72.660156 38.359375 72.835938 38.175781 73.183594 C 37.992188 73.53125 37.878906 73.921875 37.835938 74.347656 C 37.792969 74.773438 37.773438 75.238281 37.773438 75.746094 C 37.773438 76.121094 37.78125 76.476562 37.800781 76.8125 C 37.816406 77.144531 37.863281 77.488281 37.941406 77.84375 C 38.019531 78.195312 38.148438 78.492188 38.328125 78.734375 C 38.503906 78.980469 38.738281 79.101562 39.027344 79.101562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 32.640625 70.164062 C 32.824219 70.382812 33.144531 70.492188 33.597656 70.492188 C 33.855469 70.492188 34.097656 70.40625 34.320312 70.230469 C 34.542969 70.058594 34.714844 69.84375 34.835938 69.589844 C 34.980469 69.300781 35.074219 68.992188 35.109375 68.667969 C 35.152344 68.34375 35.167969 67.941406 35.167969 67.460938 C 35.050781 67.734375 34.886719 67.960938 34.671875 68.132812 C 34.457031 68.308594 34.210938 68.394531 33.925781 68.394531 C 33.535156 68.394531 33.1875 68.289062 32.878906 68.078125 C 32.570312 67.867188 32.335938 67.585938 32.167969 67.234375 C 32.007812 66.886719 31.925781 66.515625 31.925781 66.125 C 31.925781 65.71875 32.015625 65.339844 32.199219 64.992188 C 32.382812 64.640625 32.636719 64.363281 32.964844 64.15625 C 33.289062 63.949219 33.660156 63.847656 34.074219 63.847656 C 34.484375 63.847656 34.828125 63.957031 35.101562 64.179688 C 35.378906 64.402344 35.585938 64.691406 35.730469 65.039062 C 35.875 65.394531 35.976562 65.765625 36.035156 66.15625 C 36.09375 66.550781 36.125 66.9375 36.125 67.316406 C 36.125 67.839844 36.027344 68.371094 35.835938 68.910156 C 35.644531 69.453125 35.359375 69.90625 34.980469 70.269531 C 34.597656 70.632812 34.140625 70.8125 33.597656 70.8125 C 33.203125 70.8125 32.863281 70.71875 32.589844 70.53125 C 32.3125 70.34375 32.175781 70.0625 32.175781 69.683594 C 32.175781 69.542969 32.222656 69.425781 32.316406 69.332031 C 32.410156 69.238281 32.527344 69.191406 32.664062 69.191406 C 32.800781 69.191406 32.914062 69.238281 33.007812 69.332031 C 33.101562 69.425781 33.148438 69.542969 33.148438 69.683594 C 33.148438 69.8125 33.101562 69.925781 33.003906 70.019531 C 32.910156 70.113281 32.792969 70.164062 32.664062 70.164062 Z M 33.96875 68.128906 C 34.246094 68.128906 34.472656 68.035156 34.648438 67.847656 C 34.824219 67.660156 34.953125 67.429688 35.03125 67.152344 C 35.113281 66.878906 35.152344 66.605469 35.152344 66.332031 L 35.152344 66.097656 C 35.152344 65.589844 35.078125 65.136719 34.929688 64.738281 C 34.78125 64.339844 34.496094 64.140625 34.074219 64.140625 C 33.808594 64.140625 33.59375 64.199219 33.425781 64.316406 C 33.261719 64.433594 33.136719 64.585938 33.058594 64.78125 C 32.976562 64.972656 32.925781 65.179688 32.90625 65.402344 C 32.882812 65.621094 32.871094 65.863281 32.871094 66.125 C 32.871094 66.507812 32.890625 66.835938 32.929688 67.105469 C 32.964844 67.375 33.066406 67.613281 33.226562 67.820312 C 33.390625 68.027344 33.636719 68.128906 33.96875 68.128906 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 70.8125 C 38.199219 70.8125 37.636719 70.472656 37.339844 69.789062 C 37.042969 69.109375 36.894531 68.300781 36.894531 67.363281 C 36.894531 66.777344 36.945312 66.222656 37.050781 65.707031 C 37.15625 65.1875 37.371094 64.75 37.6875 64.386719 C 38.007812 64.027344 38.453125 63.847656 39.027344 63.847656 C 39.472656 63.847656 39.835938 63.953125 40.121094 64.171875 C 40.402344 64.386719 40.617188 64.667969 40.765625 65.015625 C 40.914062 65.359375 41.015625 65.730469 41.070312 66.121094 C 41.125 66.515625 41.152344 66.929688 41.152344 67.363281 C 41.152344 67.945312 41.101562 68.488281 40.992188 68.992188 C 40.886719 69.5 40.675781 69.929688 40.363281 70.285156 C 40.050781 70.636719 39.605469 70.8125 39.027344 70.8125 Z M 39.027344 70.550781 C 39.402344 70.550781 39.683594 70.359375 39.867188 69.972656 C 40.054688 69.589844 40.167969 69.160156 40.210938 68.691406 C 40.253906 68.222656 40.273438 67.726562 40.273438 67.199219 C 40.273438 66.691406 40.253906 66.222656 40.210938 65.796875 C 40.167969 65.367188 40.054688 64.980469 39.871094 64.632812 C 39.6875 64.28125 39.40625 64.109375 39.027344 64.109375 C 38.644531 64.109375 38.359375 64.285156 38.175781 64.632812 C 37.992188 64.984375 37.878906 65.371094 37.835938 65.796875 C 37.792969 66.222656 37.773438 66.691406 37.773438 67.199219 C 37.773438 67.574219 37.78125 67.929688 37.800781 68.261719 C 37.816406 68.597656 37.863281 68.9375 37.941406 69.292969 C 38.019531 69.644531 38.148438 69.945312 38.328125 70.1875 C 38.503906 70.429688 38.738281 70.550781 39.027344 70.550781 "/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="17.5398" y="101.793"/>
<use xlink:href="#glyph0-2" x="17.5398" y="95.681803"/>
<use xlink:href="#glyph0-3" x="17.5398" y="90.120713"/>
<use xlink:href="#glyph0-4" x="17.5398" y="87.340168"/>
<use xlink:href="#glyph0-5" x="17.5398" y="84.559623"/>
<use xlink:href="#glyph0-6" x="17.5398" y="77.338208"/>
</g>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 454.871554 -1352.414325 L 1016.321274 -1352.414325 L 1109.108351 -1352.375269 L 1171.61754 -1352.375269 L 1184.041242 -1352.336212 L 1221.234209 -1352.336212 L 1233.65791 -1352.297155 L 1258.466245 -1352.297155 L 1270.889946 -1352.258099 L 1283.274579 -1352.219042 L 1295.69828 -1352.219042 L 1308.082913 -1352.140929 L 1320.506614 -1352.101872 L 1328.593741 -1352.062816 L 1339.72819 -1351.945646 L 1339.767258 -1351.945646 L 1348.948295 -1351.828476 L 1356.566603 -1351.711306 L 1362.817522 -1351.516023 L 1362.85659 -1351.516023 L 1368.013598 -1351.320739 L 1368.052666 -1351.320739 L 1372.311105 -1351.047343 L 1372.350173 -1351.047343 L 1375.866315 -1350.695833 L 1375.905383 -1350.695833 L 1378.796433 -1350.227153 L 1378.835501 -1350.227153 L 1381.218664 -1349.602247 L 1381.257732 -1349.602247 L 1383.211145 -1348.743001 L 1383.250213 -1348.743001 L 1384.891079 -1347.493189 L 1386.258467 -1345.61847 L 1386.258467 -1345.579413 L 1387.391447 -1342.415825 L 1387.391447 -1342.337712 L 1388.329084 -1336.166762 L 1388.329084 -1335.971479 L 1389.071381 -1320.114483 L 1389.071381 -1319.80203 L 1389.110449 -1319.489577 L 1389.735541 -1268.16915 L 1389.735541 -1266.255374 L 1390.360633 -1214.544381 L 1390.360633 -1213.919475 L 1391.141998 -1197.906252 L 1391.141998 -1197.750025 L 1392.079636 -1191.500962 L 1392.079636 -1191.461906 L 1393.212615 -1188.259261 L 1394.540935 -1186.345486 L 1394.580003 -1186.345486 L 1396.220869 -1185.095673 L 1398.21335 -1184.236427 L 1398.252418 -1184.236427 L 1400.635581 -1183.611521 L 1400.674649 -1183.611521 L 1403.565699 -1183.142841 L 1403.604767 -1183.142841 L 1407.120909 -1182.791331 L 1411.418416 -1182.517935 L 1411.457484 -1182.517935 L 1416.614492 -1182.322652 L 1416.614492 -1182.283595 L 1422.904479 -1182.127368 L 1430.522787 -1181.971142 L 1439.703824 -1181.893029 L 1439.742892 -1181.893029 L 1450.838273 -1181.775859 L 1450.877341 -1181.775859 L 1456.971987 -1181.736802 L 1481.81939 -1181.658689 L 1494.204023 -1181.619632 L 1506.627724 -1181.580575 L 1519.012357 -1181.541519 L 1543.820692 -1181.541519 L 1556.244393 -1181.502462 L 1568.941572 -1181.502462 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 454.871554 -1351.828476 L 459.442538 -1351.828476 L 552.229615 -1350.578663 L 575.787766 -1349.953757 L 588.211467 -1349.563191 L 600.5961 -1349.094511 L 613.019801 -1348.547718 L 625.404434 -1347.883755 L 637.828136 -1347.141679 L 650.212769 -1346.282433 L 662.63647 -1345.26696 L 675.021103 -1344.095261 L 687.444804 -1342.728278 L 699.829437 -1341.166013 L 712.253139 -1339.369407 L 724.637772 -1337.260348 L 737.061473 -1334.877893 L 749.446106 -1332.104872 L 761.869807 -1329.019397 L 774.25444 -1325.543356 L 786.678142 -1321.715805 L 799.062775 -1317.497688 L 811.486476 -1312.967117 L 823.871109 -1308.163151 L 836.29481 -1303.1639 L 848.718512 -1298.04748 L 861.103145 -1292.892004 L 873.526846 -1287.775584 L 885.911479 -1282.69822 L 898.33518 -1277.69897 L 910.719813 -1272.777833 L 923.143515 -1267.895753 L 935.528148 -1263.013673 L 947.951849 -1258.092536 L 960.336482 -1253.132343 L 972.760183 -1248.094036 L 985.144816 -1242.977616 L 997.568518 -1237.822139 L 1009.953151 -1232.705719 L 1022.376852 -1227.667412 L 1034.761485 -1222.785332 L 1047.185186 -1218.137592 L 1059.608888 -1213.763248 L 1071.993521 -1209.779471 L 1084.378154 -1206.147203 L 1096.801855 -1202.905502 L 1109.225556 -1200.01531 L 1121.610189 -1197.515685 L 1133.994822 -1195.289457 L 1146.418524 -1193.375681 L 1158.842225 -1191.696246 L 1171.226858 -1190.25115 L 1183.650559 -1189.001337 L 1196.035192 -1187.946808 L 1208.458893 -1187.009449 L 1220.843526 -1186.228316 L 1233.267228 -1185.525296 L 1245.651861 -1184.978503 L 1258.075562 -1184.470767 L 1270.460195 -1184.041144 L 1282.883896 -1183.650577 L 1295.268529 -1183.338124 L 1307.692231 -1183.064728 L 1320.076864 -1182.830388 L 1332.500565 -1182.635105 L 1518.113788 -1181.541519 L 1568.941572 -1181.541519 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 45.496094 147.738281 L 156.859375 147.738281 L 156.859375 108.730469 L 45.496094 108.730469 Z M 45.496094 147.738281 "/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -642.520809 L 1568.824367 -642.520809 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1032.540431 L 1568.824367 -1032.540431 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -642.520809 L 826.29334 -653.651952 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -1032.540431 L 826.29334 -1021.409289 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -642.520809 L 455.027827 -648.105909 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 640.641049 -642.520809 L 640.641049 -648.105909 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -642.520809 L 826.29334 -648.105909 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1011.906563 -642.520809 L 1011.906563 -648.105909 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.558854 -642.520809 L 1197.558854 -648.105909 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1383.172076 -642.520809 L 1383.172076 -648.105909 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -642.520809 L 1568.824367 -648.105909 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -1032.540431 L 455.027827 -1026.955332 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 640.641049 -1032.540431 L 640.641049 -1026.955332 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -1032.540431 L 826.29334 -1026.955332 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1011.906563 -1032.540431 L 1011.906563 -1026.955332 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.558854 -1032.540431 L 1197.558854 -1026.955332 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1383.172076 -1032.540431 L 1383.172076 -1026.955332 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -1032.540431 L 1568.824367 -1026.955332 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -642.520809 L 455.027827 -1032.540431 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -642.520809 L 1568.824367 -1032.540431 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -692.513311 L 466.162276 -692.513311 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -834.171749 L 466.162276 -834.171749 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -975.869245 L 466.162276 -975.869245 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -692.513311 L 1557.689918 -692.513311 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -834.171749 L 1557.689918 -834.171749 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -975.869245 L 1557.689918 -975.869245 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.277344 143.261719 L 23.277344 142.636719 L 25.957031 142.636719 L 25.957031 143.261719 L 23.277344 143.261719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.464844 144.359375 C 27.621094 144.589844 27.832031 144.761719 28.097656 144.871094 C 28.367188 144.984375 28.652344 145.039062 28.957031 145.039062 C 29.351562 145.039062 29.632812 144.871094 29.796875 144.539062 C 29.960938 144.203125 30.042969 143.824219 30.042969 143.398438 C 30.042969 143.207031 30.023438 143.015625 29.988281 142.824219 C 29.953125 142.632812 29.894531 142.453125 29.8125 142.289062 C 29.730469 142.125 29.617188 141.992188 29.476562 141.894531 C 29.332031 141.792969 29.160156 141.746094 28.953125 141.746094 L 28.277344 141.746094 C 28.21875 141.746094 28.191406 141.714844 28.191406 141.652344 L 28.191406 141.5625 C 28.191406 141.507812 28.21875 141.480469 28.277344 141.480469 L 28.835938 141.441406 C 29.074219 141.441406 29.269531 141.351562 29.425781 141.171875 C 29.582031 140.996094 29.695312 140.78125 29.769531 140.523438 C 29.839844 140.265625 29.878906 140.023438 29.878906 139.792969 C 29.878906 139.46875 29.800781 139.203125 29.652344 138.996094 C 29.5 138.789062 29.269531 138.6875 28.957031 138.6875 C 28.699219 138.6875 28.453125 138.734375 28.222656 138.832031 C 27.988281 138.929688 27.804688 139.078125 27.664062 139.273438 C 27.679688 139.269531 27.691406 139.265625 27.699219 139.265625 C 27.710938 139.265625 27.722656 139.265625 27.734375 139.265625 C 27.886719 139.265625 28.011719 139.320312 28.113281 139.425781 C 28.214844 139.53125 28.265625 139.65625 28.265625 139.804688 C 28.265625 139.949219 28.214844 140.074219 28.113281 140.179688 C 28.011719 140.285156 27.886719 140.339844 27.734375 140.339844 C 27.585938 140.339844 27.457031 140.285156 27.351562 140.179688 C 27.246094 140.074219 27.195312 139.949219 27.195312 139.804688 C 27.195312 139.511719 27.28125 139.257812 27.457031 139.046875 C 27.628906 138.832031 27.851562 138.671875 28.128906 138.558594 C 28.402344 138.449219 28.679688 138.394531 28.957031 138.394531 C 29.164062 138.394531 29.382812 138.421875 29.609375 138.484375 C 29.835938 138.542969 30.039062 138.632812 30.222656 138.746094 C 30.40625 138.863281 30.558594 139.007812 30.675781 139.1875 C 30.792969 139.363281 30.847656 139.566406 30.847656 139.792969 C 30.847656 140.074219 30.785156 140.335938 30.660156 140.578125 C 30.53125 140.820312 30.359375 141.027344 30.136719 141.203125 C 29.917969 141.378906 29.675781 141.507812 29.414062 141.59375 C 29.707031 141.648438 29.984375 141.757812 30.25 141.921875 C 30.511719 142.089844 30.722656 142.300781 30.886719 142.554688 C 31.046875 142.8125 31.125 143.089844 31.125 143.386719 C 31.125 143.761719 31.023438 144.097656 30.816406 144.398438 C 30.613281 144.699219 30.34375 144.9375 30.011719 145.105469 C 29.679688 145.277344 29.328125 145.359375 28.957031 145.359375 C 28.640625 145.359375 28.324219 145.300781 28.003906 145.179688 C 27.6875 145.058594 27.425781 144.878906 27.226562 144.636719 C 27.023438 144.398438 26.925781 144.109375 26.925781 143.773438 C 26.925781 143.605469 26.980469 143.464844 27.089844 143.355469 C 27.203125 143.242188 27.34375 143.1875 27.511719 143.1875 C 27.621094 143.1875 27.71875 143.210938 27.808594 143.261719 C 27.898438 143.3125 27.96875 143.386719 28.019531 143.476562 C 28.070312 143.570312 28.097656 143.667969 28.097656 143.773438 C 28.097656 143.9375 28.039062 144.074219 27.921875 144.1875 C 27.808594 144.300781 27.671875 144.359375 27.511719 144.359375 L 27.464844 144.359375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 34.027344 145.359375 C 33.199219 145.359375 32.636719 145.019531 32.339844 144.339844 C 32.042969 143.65625 31.894531 142.847656 31.894531 141.910156 C 31.894531 141.324219 31.949219 140.769531 32.054688 140.253906 C 32.160156 139.734375 32.371094 139.296875 32.6875 138.933594 C 33.007812 138.574219 33.453125 138.394531 34.027344 138.394531 C 34.472656 138.394531 34.835938 138.5 35.121094 138.71875 C 35.402344 138.933594 35.617188 139.214844 35.765625 139.5625 C 35.914062 139.90625 36.015625 140.277344 36.070312 140.667969 C 36.125 141.0625 36.152344 141.476562 36.152344 141.910156 C 36.152344 142.492188 36.101562 143.035156 35.992188 143.542969 C 35.886719 144.046875 35.675781 144.476562 35.363281 144.832031 C 35.050781 145.183594 34.605469 145.359375 34.027344 145.359375 Z M 34.027344 145.097656 C 34.402344 145.097656 34.683594 144.90625 34.867188 144.519531 C 35.054688 144.136719 35.167969 143.707031 35.210938 143.238281 C 35.253906 142.769531 35.273438 142.273438 35.273438 141.746094 C 35.273438 141.238281 35.253906 140.769531 35.210938 140.339844 C 35.167969 139.914062 35.054688 139.527344 34.871094 139.179688 C 34.6875 138.832031 34.40625 138.65625 34.027344 138.65625 C 33.644531 138.65625 33.359375 138.832031 33.175781 139.179688 C 32.992188 139.53125 32.882812 139.917969 32.839844 140.34375 C 32.792969 140.769531 32.773438 141.238281 32.773438 141.746094 C 32.773438 142.121094 32.78125 142.472656 32.800781 142.808594 C 32.816406 143.144531 32.863281 143.488281 32.945312 143.839844 C 33.023438 144.195312 33.148438 144.492188 33.328125 144.734375 C 33.503906 144.976562 33.738281 145.097656 34.027344 145.097656 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 145.359375 C 38.199219 145.359375 37.636719 145.019531 37.339844 144.339844 C 37.042969 143.65625 36.894531 142.847656 36.894531 141.910156 C 36.894531 141.324219 36.945312 140.769531 37.050781 140.253906 C 37.15625 139.734375 37.371094 139.296875 37.6875 138.933594 C 38.007812 138.574219 38.453125 138.394531 39.027344 138.394531 C 39.472656 138.394531 39.835938 138.5 40.121094 138.71875 C 40.402344 138.933594 40.617188 139.214844 40.765625 139.5625 C 40.914062 139.90625 41.015625 140.277344 41.070312 140.667969 C 41.125 141.0625 41.152344 141.476562 41.152344 141.910156 C 41.152344 142.492188 41.101562 143.035156 40.992188 143.542969 C 40.886719 144.046875 40.675781 144.476562 40.363281 144.832031 C 40.050781 145.183594 39.605469 145.359375 39.027344 145.359375 Z M 39.027344 145.097656 C 39.402344 145.097656 39.683594 144.90625 39.867188 144.519531 C 40.054688 144.136719 40.167969 143.707031 40.210938 143.238281 C 40.253906 142.769531 40.273438 142.273438 40.273438 141.746094 C 40.273438 141.238281 40.253906 140.769531 40.210938 140.339844 C 40.167969 139.914062 40.054688 139.527344 39.871094 139.179688 C 39.6875 138.832031 39.40625 138.65625 39.027344 138.65625 C 38.644531 138.65625 38.359375 138.832031 38.175781 139.179688 C 37.992188 139.53125 37.878906 139.917969 37.835938 140.34375 C 37.792969 140.769531 37.773438 141.238281 37.773438 141.746094 C 37.773438 142.121094 37.78125 142.472656 37.800781 142.808594 C 37.816406 143.144531 37.863281 143.488281 37.941406 143.839844 C 38.019531 144.195312 38.148438 144.492188 38.328125 144.734375 C 38.503906 144.976562 38.738281 145.097656 39.027344 145.097656 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.277344 129.09375 L 23.277344 128.46875 L 25.957031 128.46875 L 25.957031 129.09375 L 23.277344 129.09375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27 130.96875 L 27 130.699219 C 27 130.679688 27.007812 130.660156 27.019531 130.640625 L 28.59375 128.902344 C 28.832031 128.644531 29.023438 128.425781 29.171875 128.253906 C 29.316406 128.078125 29.464844 127.878906 29.609375 127.652344 C 29.757812 127.425781 29.871094 127.195312 29.957031 126.957031 C 30.039062 126.722656 30.082031 126.46875 30.082031 126.203125 C 30.082031 125.929688 30.03125 125.667969 29.925781 125.414062 C 29.824219 125.160156 29.671875 124.957031 29.46875 124.808594 C 29.269531 124.65625 29.023438 124.582031 28.734375 124.582031 C 28.441406 124.582031 28.179688 124.667969 27.945312 124.84375 C 27.710938 125.019531 27.546875 125.25 27.453125 125.53125 C 27.480469 125.523438 27.515625 125.519531 27.558594 125.519531 C 27.710938 125.519531 27.839844 125.570312 27.945312 125.671875 C 28.054688 125.773438 28.109375 125.90625 28.109375 126.070312 C 28.109375 126.222656 28.054688 126.351562 27.945312 126.460938 C 27.839844 126.566406 27.710938 126.621094 27.558594 126.621094 C 27.402344 126.621094 27.269531 126.566406 27.160156 126.457031 C 27.054688 126.347656 27 126.21875 27 126.070312 C 27 125.816406 27.046875 125.578125 27.144531 125.355469 C 27.238281 125.132812 27.378906 124.933594 27.558594 124.761719 C 27.738281 124.585938 27.941406 124.453125 28.167969 124.363281 C 28.394531 124.269531 28.632812 124.222656 28.886719 124.222656 C 29.269531 124.222656 29.628906 124.304688 29.960938 124.46875 C 30.296875 124.632812 30.558594 124.863281 30.753906 125.160156 C 30.945312 125.457031 31.042969 125.804688 31.042969 126.203125 C 31.042969 126.5 30.980469 126.78125 30.847656 127.046875 C 30.722656 127.308594 30.558594 127.546875 30.359375 127.765625 C 30.160156 127.976562 29.902344 128.222656 29.585938 128.496094 C 29.273438 128.769531 29.066406 128.953125 28.96875 129.046875 L 27.820312 130.148438 L 28.792969 130.148438 C 29.273438 130.148438 29.675781 130.144531 29.996094 130.136719 C 30.316406 130.128906 30.484375 130.117188 30.503906 130.097656 C 30.585938 130.015625 30.667969 129.703125 30.75 129.164062 L 31.042969 129.164062 L 30.757812 130.96875 L 27 130.96875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 34.027344 131.191406 C 33.199219 131.191406 32.636719 130.851562 32.339844 130.167969 C 32.042969 129.488281 31.894531 128.679688 31.894531 127.738281 C 31.894531 127.15625 31.949219 126.601562 32.054688 126.085938 C 32.160156 125.566406 32.371094 125.128906 32.6875 124.765625 C 33.007812 124.40625 33.453125 124.222656 34.027344 124.222656 C 34.472656 124.222656 34.835938 124.332031 35.121094 124.550781 C 35.402344 124.765625 35.617188 125.046875 35.765625 125.394531 C 35.914062 125.738281 36.015625 126.109375 36.070312 126.5 C 36.125 126.894531 36.152344 127.304688 36.152344 127.738281 C 36.152344 128.324219 36.101562 128.867188 35.992188 129.371094 C 35.886719 129.878906 35.675781 130.308594 35.363281 130.660156 C 35.050781 131.015625 34.605469 131.191406 34.027344 131.191406 Z M 34.027344 130.929688 C 34.402344 130.929688 34.683594 130.734375 34.867188 130.351562 C 35.054688 129.964844 35.167969 129.539062 35.210938 129.070312 C 35.253906 128.601562 35.273438 128.101562 35.273438 127.578125 C 35.273438 127.070312 35.253906 126.601562 35.210938 126.171875 C 35.167969 125.746094 35.054688 125.355469 34.871094 125.007812 C 34.6875 124.660156 34.40625 124.488281 34.027344 124.488281 C 33.644531 124.488281 33.359375 124.664062 33.175781 125.011719 C 32.992188 125.363281 32.882812 125.75 32.839844 126.175781 C 32.792969 126.601562 32.773438 127.070312 32.773438 127.578125 C 32.773438 127.953125 32.78125 128.304688 32.800781 128.640625 C 32.816406 128.972656 32.863281 129.316406 32.945312 129.671875 C 33.023438 130.023438 33.148438 130.324219 33.328125 130.566406 C 33.503906 130.808594 33.738281 130.929688 34.027344 130.929688 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 131.191406 C 38.199219 131.191406 37.636719 130.851562 37.339844 130.167969 C 37.042969 129.488281 36.894531 128.679688 36.894531 127.738281 C 36.894531 127.15625 36.945312 126.601562 37.050781 126.085938 C 37.15625 125.566406 37.371094 125.128906 37.6875 124.765625 C 38.007812 124.40625 38.453125 124.222656 39.027344 124.222656 C 39.472656 124.222656 39.835938 124.332031 40.121094 124.550781 C 40.402344 124.765625 40.617188 125.046875 40.765625 125.394531 C 40.914062 125.738281 41.015625 126.109375 41.070312 126.5 C 41.125 126.894531 41.152344 127.304688 41.152344 127.738281 C 41.152344 128.324219 41.101562 128.867188 40.992188 129.371094 C 40.886719 129.878906 40.675781 130.308594 40.363281 130.660156 C 40.050781 131.015625 39.605469 131.191406 39.027344 131.191406 Z M 39.027344 130.929688 C 39.402344 130.929688 39.683594 130.734375 39.867188 130.351562 C 40.054688 129.964844 40.167969 129.539062 40.210938 129.070312 C 40.253906 128.601562 40.273438 128.101562 40.273438 127.578125 C 40.273438 127.070312 40.253906 126.601562 40.210938 126.171875 C 40.167969 125.746094 40.054688 125.355469 39.871094 125.007812 C 39.6875 124.660156 39.40625 124.488281 39.027344 124.488281 C 38.644531 124.488281 38.359375 124.664062 38.175781 125.011719 C 37.992188 125.363281 37.878906 125.75 37.835938 126.175781 C 37.792969 126.601562 37.773438 127.070312 37.773438 127.578125 C 37.773438 127.953125 37.78125 128.304688 37.800781 128.640625 C 37.816406 128.972656 37.863281 129.316406 37.941406 129.671875 C 38.019531 130.023438 38.148438 130.324219 38.328125 130.566406 C 38.503906 130.808594 38.738281 130.929688 39.027344 130.929688 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.277344 114.925781 L 23.277344 114.296875 L 25.957031 114.296875 L 25.957031 114.925781 L 23.277344 114.925781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.433594 116.800781 L 27.433594 116.441406 C 28.277344 116.441406 28.699219 116.335938 28.699219 116.121094 L 28.699219 110.804688 C 28.351562 110.972656 27.910156 111.058594 27.375 111.058594 L 27.375 110.703125 C 28.203125 110.703125 28.828125 110.488281 29.25 110.054688 L 29.390625 110.054688 C 29.414062 110.054688 29.4375 110.0625 29.457031 110.082031 C 29.480469 110.097656 29.492188 110.121094 29.492188 110.144531 L 29.492188 116.121094 C 29.492188 116.335938 29.914062 116.441406 30.757812 116.441406 L 30.757812 116.800781 L 27.433594 116.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 34.027344 117.023438 C 33.199219 117.023438 32.636719 116.683594 32.339844 116 C 32.042969 115.320312 31.894531 114.507812 31.894531 113.570312 C 31.894531 112.984375 31.949219 112.433594 32.054688 111.914062 C 32.160156 111.398438 32.371094 110.960938 32.6875 110.597656 C 33.007812 110.234375 33.453125 110.054688 34.027344 110.054688 C 34.472656 110.054688 34.835938 110.164062 35.121094 110.378906 C 35.402344 110.597656 35.617188 110.878906 35.765625 111.222656 C 35.914062 111.570312 36.015625 111.9375 36.070312 112.332031 C 36.125 112.722656 36.152344 113.136719 36.152344 113.570312 C 36.152344 114.152344 36.101562 114.699219 35.992188 115.203125 C 35.886719 115.710938 35.675781 116.140625 35.363281 116.492188 C 35.050781 116.847656 34.605469 117.023438 34.027344 117.023438 Z M 34.027344 116.757812 C 34.402344 116.757812 34.683594 116.566406 34.867188 116.183594 C 35.054688 115.796875 35.167969 115.371094 35.210938 114.902344 C 35.253906 114.433594 35.273438 113.933594 35.273438 113.40625 C 35.273438 112.898438 35.253906 112.429688 35.210938 112.003906 C 35.167969 111.574219 35.054688 111.1875 34.871094 110.839844 C 34.6875 110.492188 34.40625 110.320312 34.027344 110.320312 C 33.644531 110.320312 33.359375 110.492188 33.175781 110.84375 C 32.992188 111.191406 32.882812 111.582031 32.839844 112.007812 C 32.792969 112.433594 32.773438 112.898438 32.773438 113.40625 C 32.773438 113.78125 32.78125 114.136719 32.800781 114.46875 C 32.816406 114.804688 32.863281 115.148438 32.945312 115.503906 C 33.023438 115.855469 33.148438 116.152344 33.328125 116.394531 C 33.503906 116.636719 33.738281 116.757812 34.027344 116.757812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 117.023438 C 38.199219 117.023438 37.636719 116.683594 37.339844 116 C 37.042969 115.320312 36.894531 114.507812 36.894531 113.570312 C 36.894531 112.984375 36.945312 112.433594 37.050781 111.914062 C 37.15625 111.398438 37.371094 110.960938 37.6875 110.597656 C 38.007812 110.234375 38.453125 110.054688 39.027344 110.054688 C 39.472656 110.054688 39.835938 110.164062 40.121094 110.378906 C 40.402344 110.597656 40.617188 110.878906 40.765625 111.222656 C 40.914062 111.570312 41.015625 111.9375 41.070312 112.332031 C 41.125 112.722656 41.152344 113.136719 41.152344 113.570312 C 41.152344 114.152344 41.101562 114.699219 40.992188 115.203125 C 40.886719 115.710938 40.675781 116.140625 40.363281 116.492188 C 40.050781 116.847656 39.605469 117.023438 39.027344 117.023438 Z M 39.027344 116.757812 C 39.402344 116.757812 39.683594 116.566406 39.867188 116.183594 C 40.054688 115.796875 40.167969 115.371094 40.210938 114.902344 C 40.253906 114.433594 40.273438 113.933594 40.273438 113.40625 C 40.273438 112.898438 40.253906 112.429688 40.210938 112.003906 C 40.167969 111.574219 40.054688 111.1875 39.871094 110.839844 C 39.6875 110.492188 39.40625 110.320312 39.027344 110.320312 C 38.644531 110.320312 38.359375 110.492188 38.175781 110.84375 C 37.992188 111.191406 37.878906 111.582031 37.835938 112.007812 C 37.792969 112.433594 37.773438 112.898438 37.773438 113.40625 C 37.773438 113.78125 37.78125 114.136719 37.800781 114.46875 C 37.816406 114.804688 37.863281 115.148438 37.941406 115.503906 C 38.019531 115.855469 38.148438 116.152344 38.328125 116.394531 C 38.503906 116.636719 38.738281 116.757812 39.027344 116.757812 "/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="17.5398" y="144.5504"/>
<use xlink:href="#glyph0-2" x="17.5398" y="138.439203"/>
<use xlink:href="#glyph0-3" x="17.5398" y="132.878113"/>
<use xlink:href="#glyph0-4" x="17.5398" y="130.097568"/>
<use xlink:href="#glyph0-5" x="17.5398" y="127.317023"/>
<use xlink:href="#glyph0-7" x="17.5398" y="120.095608"/>
</g>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 454.871554 -642.911376 L 459.40347 -643.614395 L 552.229615 -657.791956 L 645.055761 -671.93046 L 737.842838 -686.108021 L 923.495129 -714.463143 L 1016.321274 -728.601647 L 1109.108351 -742.818265 L 1134.385505 -746.684872 L 1159.232907 -750.512423 L 1171.61754 -752.426199 L 1184.041242 -754.379031 L 1196.425875 -756.331863 L 1208.849576 -758.284695 L 1221.234209 -760.276584 L 1233.65791 -762.307529 L 1246.081611 -764.377531 L 1258.466245 -766.564703 L 1270.889946 -768.790931 L 1283.274579 -771.173386 L 1295.69828 -773.790181 L 1308.082913 -776.641316 L 1320.506614 -779.922074 L 1328.593741 -782.382643 L 1339.72819 -786.36642 L 1339.72819 -786.405477 L 1339.767258 -786.405477 L 1348.948295 -790.506424 L 1356.566603 -794.763598 L 1362.817522 -799.216055 L 1362.85659 -799.216055 L 1368.013598 -803.863795 L 1368.052666 -803.863795 L 1372.311105 -808.745876 L 1372.350173 -808.745876 L 1375.866315 -813.862296 L 1375.905383 -813.901352 L 1378.796433 -819.291169 L 1378.796433 -819.330225 L 1378.835501 -819.330225 L 1381.218664 -825.110608 L 1381.218664 -825.149665 L 1381.257732 -825.149665 L 1383.211145 -831.398728 L 1383.211145 -831.437784 L 1383.250213 -831.476841 L 1384.891079 -838.35081 L 1384.891079 -838.428923 L 1386.258467 -846.201195 L 1386.258467 -846.318365 L 1387.391447 -855.457619 L 1387.391447 -855.613845 L 1388.329084 -867.057441 L 1388.329084 -867.291781 L 1389.071381 -882.758211 L 1389.071381 -882.953494 L 1389.110449 -883.148778 L 1389.735541 -896.935772 L 1390.360633 -883.070664 L 1390.360633 -882.680098 L 1391.141998 -866.940271 L 1391.141998 -866.705932 L 1392.079636 -854.949883 L 1392.079636 -854.793656 L 1393.212615 -845.263835 L 1393.212615 -845.185722 L 1394.540935 -836.983827 L 1394.580003 -836.944771 L 1394.580003 -836.905714 L 1396.220869 -829.484952 L 1396.220869 -829.445896 L 1398.21335 -822.571927 L 1398.252418 -822.53287 L 1400.635581 -816.010411 L 1400.674649 -815.971354 L 1403.565699 -809.683235 L 1403.604767 -809.644178 L 1407.120909 -803.434172 L 1411.418416 -797.263223 L 1411.457484 -797.224166 L 1416.614492 -791.01416 L 1422.904479 -784.647928 L 1430.522787 -778.047355 L 1439.703824 -771.13433 L 1439.742892 -771.13433 L 1450.838273 -763.713568 L 1450.877341 -763.713568 L 1456.971987 -759.96413 L 1469.395689 -752.816765 L 1481.81939 -746.099023 L 1494.204023 -739.693733 L 1506.627724 -733.483727 L 1519.012357 -727.429948 L 1531.436059 -721.493338 L 1543.820692 -715.595786 L 1556.244393 -709.776346 L 1568.668094 -703.995963 L 1568.941572 -703.839737 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 454.871554 -926.26731 L 459.442538 -926.970329 L 552.229615 -941.14789 L 575.787766 -944.702045 L 588.211467 -946.61582 L 600.5961 -948.490539 L 613.019801 -950.365258 L 625.404434 -952.239977 L 637.828136 -954.114695 L 650.212769 -955.950357 L 662.63647 -957.825076 L 675.021103 -959.660738 L 687.444804 -961.457344 L 699.829437 -963.253949 L 712.253139 -964.972442 L 724.637772 -966.651877 L 737.061473 -968.292256 L 749.446106 -969.815465 L 761.869807 -971.221504 L 774.25444 -972.510373 L 786.678142 -973.564903 L 799.062775 -974.463206 L 811.486476 -975.088112 L 823.871109 -975.439622 L 836.29481 -975.517735 L 848.718512 -975.244338 L 861.103145 -974.697545 L 873.526846 -973.877356 L 885.911479 -972.78377 L 898.33518 -971.455844 L 910.719813 -969.932635 L 923.143515 -968.175086 L 935.528148 -966.222254 L 947.951849 -964.074139 L 960.336482 -961.691684 L 972.760183 -959.074889 L 985.144816 -956.223754 L 997.568518 -953.099223 L 1009.953151 -949.701295 L 1022.376852 -945.951857 L 1034.761485 -941.929023 L 1047.185186 -937.632793 L 1059.608888 -933.063166 L 1071.993521 -928.259199 L 1084.378154 -923.299005 L 1096.801855 -918.143528 L 1109.225556 -912.870882 L 1121.610189 -907.481065 L 1133.994822 -902.052192 L 1146.418524 -896.545206 L 1158.842225 -890.999163 L 1171.226858 -885.414063 L 1183.650559 -879.789907 L 1196.035192 -874.16575 L 1208.458893 -868.502537 L 1220.843526 -862.878381 L 1233.267228 -857.215168 L 1245.651861 -851.551955 L 1258.075562 -845.888742 L 1270.460195 -840.186472 L 1282.883896 -834.523259 L 1295.268529 -828.860046 L 1307.692231 -823.157776 L 1320.076864 -817.494563 L 1332.500565 -811.83135 L 1518.113788 -726.805042 L 1568.941572 -703.56634 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 45.496094 187.121094 L 156.859375 187.121094 L 156.859375 152.238281 L 45.496094 152.238281 Z M 45.496094 187.121094 "/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -248.75175 L 1568.824367 -248.75175 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -597.527558 L 1568.824367 -597.527558 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -248.75175 L 826.29334 -259.882893 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -597.527558 L 826.29334 -586.396416 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -248.75175 L 455.027827 -254.336849 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 640.641049 -248.75175 L 640.641049 -254.336849 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -248.75175 L 826.29334 -254.336849 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1011.906563 -248.75175 L 1011.906563 -254.336849 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.558854 -248.75175 L 1197.558854 -254.336849 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1383.172076 -248.75175 L 1383.172076 -254.336849 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -248.75175 L 1568.824367 -254.336849 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -597.527558 L 455.027827 -591.942459 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 640.641049 -597.527558 L 640.641049 -591.942459 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 826.29334 -597.527558 L 826.29334 -591.942459 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1011.906563 -597.527558 L 1011.906563 -591.942459 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.558854 -597.527558 L 1197.558854 -591.942459 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1383.172076 -597.527558 L 1383.172076 -591.942459 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -597.527558 L 1568.824367 -591.942459 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 76.554688 199.523438 L 76.554688 199.164062 C 77.398438 199.164062 77.820312 199.058594 77.820312 198.84375 L 77.820312 193.527344 C 77.472656 193.695312 77.03125 193.78125 76.496094 193.78125 L 76.496094 193.429688 C 77.324219 193.429688 77.949219 193.210938 78.371094 192.777344 L 78.511719 192.777344 C 78.535156 192.777344 78.554688 192.785156 78.578125 192.804688 C 78.597656 192.820312 78.609375 192.84375 78.609375 192.867188 L 78.609375 198.84375 C 78.609375 199.058594 79.03125 199.164062 79.875 199.164062 L 79.875 199.523438 L 76.554688 199.523438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 83.148438 199.746094 C 82.320312 199.746094 81.757812 199.40625 81.460938 198.722656 C 81.164062 198.042969 81.015625 197.230469 81.015625 196.292969 C 81.015625 195.707031 81.066406 195.15625 81.171875 194.636719 C 81.277344 194.121094 81.488281 193.679688 81.808594 193.320312 C 82.125 192.957031 82.574219 192.777344 83.148438 192.777344 C 83.59375 192.777344 83.957031 192.886719 84.238281 193.101562 C 84.523438 193.320312 84.738281 193.601562 84.886719 193.945312 C 85.035156 194.292969 85.136719 194.660156 85.191406 195.054688 C 85.246094 195.445312 85.273438 195.859375 85.273438 196.292969 C 85.273438 196.875 85.21875 197.421875 85.113281 197.925781 C 85.003906 198.433594 84.792969 198.863281 84.480469 199.214844 C 84.167969 199.570312 83.722656 199.746094 83.148438 199.746094 Z M 83.148438 199.480469 C 83.523438 199.480469 83.800781 199.289062 83.988281 198.90625 C 84.171875 198.519531 84.285156 198.09375 84.332031 197.625 C 84.371094 197.15625 84.394531 196.65625 84.394531 196.128906 C 84.394531 195.621094 84.371094 195.15625 84.332031 194.726562 C 84.285156 194.296875 84.171875 193.910156 83.988281 193.5625 C 83.804688 193.214844 83.527344 193.042969 83.148438 193.042969 C 82.765625 193.042969 82.480469 193.214844 82.296875 193.566406 C 82.113281 193.914062 82 194.304688 81.957031 194.730469 C 81.914062 195.15625 81.894531 195.621094 81.894531 196.128906 C 81.894531 196.503906 81.902344 196.859375 81.917969 197.195312 C 81.9375 197.527344 81.984375 197.871094 82.0625 198.226562 C 82.140625 198.578125 82.269531 198.875 82.445312 199.117188 C 82.625 199.359375 82.855469 199.480469 83.148438 199.480469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 87.394531 196.050781 C 86.8125 196.050781 86.417969 195.8125 86.210938 195.332031 C 86 194.851562 85.894531 194.28125 85.894531 193.621094 C 85.894531 193.210938 85.933594 192.820312 86.007812 192.457031 C 86.082031 192.089844 86.230469 191.78125 86.457031 191.527344 C 86.679688 191.273438 86.992188 191.148438 87.394531 191.148438 C 87.707031 191.148438 87.964844 191.222656 88.164062 191.375 C 88.363281 191.527344 88.515625 191.726562 88.621094 191.96875 C 88.726562 192.214844 88.796875 192.472656 88.835938 192.75 C 88.871094 193.023438 88.890625 193.316406 88.890625 193.621094 C 88.890625 194.03125 88.851562 194.414062 88.777344 194.769531 C 88.703125 195.125 88.558594 195.425781 88.335938 195.675781 C 88.117188 195.925781 87.800781 196.050781 87.394531 196.050781 Z M 87.394531 195.863281 C 87.660156 195.863281 87.859375 195.726562 87.988281 195.457031 C 88.117188 195.183594 88.195312 194.886719 88.226562 194.558594 C 88.257812 194.230469 88.273438 193.878906 88.273438 193.507812 C 88.273438 193.148438 88.257812 192.820312 88.226562 192.519531 C 88.195312 192.21875 88.117188 191.945312 87.988281 191.699219 C 87.859375 191.457031 87.660156 191.335938 87.394531 191.335938 C 87.125 191.335938 86.925781 191.457031 86.796875 191.699219 C 86.667969 191.945312 86.589844 192.21875 86.558594 192.519531 C 86.527344 192.820312 86.511719 193.148438 86.511719 193.507812 C 86.511719 193.769531 86.519531 194.019531 86.53125 194.253906 C 86.546875 194.488281 86.578125 194.730469 86.632812 194.980469 C 86.691406 195.230469 86.78125 195.4375 86.90625 195.609375 C 87.03125 195.78125 87.191406 195.863281 87.394531 195.863281 "/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -248.75175 L 455.027827 -597.527558 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -248.75175 L 1568.824367 -597.527558 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -252.188734 L 466.162276 -252.188734 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -366.156014 L 466.162276 -366.156014 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -480.123294 L 466.162276 -480.123294 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.027827 -594.090574 L 466.162276 -594.090574 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -252.188734 L 1557.689918 -252.188734 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -366.156014 L 1557.689918 -366.156014 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -480.123294 L 1557.689918 -480.123294 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1568.824367 -594.090574 L 1557.689918 -594.090574 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.277344 187.304688 L 23.277344 186.675781 L 25.957031 186.675781 L 25.957031 187.304688 L 23.277344 187.304688 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.464844 188.398438 C 27.621094 188.628906 27.832031 188.800781 28.097656 188.914062 C 28.367188 189.023438 28.652344 189.078125 28.957031 189.078125 C 29.351562 189.078125 29.632812 188.914062 29.796875 188.578125 C 29.960938 188.242188 30.042969 187.863281 30.042969 187.4375 C 30.042969 187.246094 30.023438 187.054688 29.988281 186.863281 C 29.953125 186.671875 29.894531 186.496094 29.8125 186.332031 C 29.730469 186.167969 29.617188 186.035156 29.476562 185.933594 C 29.332031 185.835938 29.160156 185.785156 28.953125 185.785156 L 28.277344 185.785156 C 28.21875 185.785156 28.191406 185.753906 28.191406 185.691406 L 28.191406 185.605469 C 28.191406 185.550781 28.21875 185.523438 28.277344 185.523438 L 28.835938 185.480469 C 29.074219 185.480469 29.269531 185.394531 29.425781 185.214844 C 29.582031 185.035156 29.695312 184.820312 29.769531 184.5625 C 29.839844 184.308594 29.878906 184.066406 29.878906 183.835938 C 29.878906 183.511719 29.800781 183.246094 29.652344 183.039062 C 29.5 182.832031 29.269531 182.726562 28.957031 182.726562 C 28.699219 182.726562 28.453125 182.777344 28.222656 182.871094 C 27.988281 182.972656 27.804688 183.117188 27.664062 183.3125 C 27.679688 183.308594 27.691406 183.308594 27.699219 183.308594 C 27.710938 183.308594 27.722656 183.308594 27.734375 183.308594 C 27.886719 183.308594 28.011719 183.359375 28.113281 183.464844 C 28.214844 183.570312 28.265625 183.699219 28.265625 183.847656 C 28.265625 183.992188 28.214844 184.117188 28.113281 184.222656 C 28.011719 184.328125 27.886719 184.378906 27.734375 184.378906 C 27.585938 184.378906 27.457031 184.328125 27.351562 184.222656 C 27.246094 184.117188 27.195312 183.992188 27.195312 183.847656 C 27.195312 183.554688 27.28125 183.300781 27.457031 183.085938 C 27.628906 182.875 27.851562 182.710938 28.128906 182.601562 C 28.402344 182.488281 28.679688 182.433594 28.957031 182.433594 C 29.164062 182.433594 29.382812 182.464844 29.609375 182.523438 C 29.835938 182.585938 30.039062 182.671875 30.222656 182.789062 C 30.40625 182.902344 30.558594 183.050781 30.675781 183.226562 C 30.792969 183.40625 30.847656 183.609375 30.847656 183.835938 C 30.847656 184.117188 30.785156 184.378906 30.660156 184.621094 C 30.53125 184.863281 30.359375 185.070312 30.136719 185.242188 C 29.917969 185.417969 29.675781 185.546875 29.414062 185.632812 C 29.707031 185.6875 29.984375 185.796875 30.25 185.964844 C 30.511719 186.132812 30.722656 186.34375 30.886719 186.597656 C 31.046875 186.851562 31.125 187.128906 31.125 187.425781 C 31.125 187.800781 31.023438 188.140625 30.816406 188.441406 C 30.613281 188.742188 30.34375 188.976562 30.011719 189.148438 C 29.679688 189.316406 29.328125 189.402344 28.957031 189.402344 C 28.640625 189.402344 28.324219 189.339844 28.003906 189.21875 C 27.6875 189.097656 27.425781 188.917969 27.226562 188.679688 C 27.023438 188.4375 26.925781 188.148438 26.925781 187.8125 C 26.925781 187.644531 26.980469 187.507812 27.089844 187.394531 C 27.203125 187.28125 27.34375 187.226562 27.511719 187.226562 C 27.621094 187.226562 27.71875 187.253906 27.808594 187.304688 C 27.898438 187.355469 27.96875 187.425781 28.019531 187.519531 C 28.070312 187.609375 28.097656 187.707031 28.097656 187.8125 C 28.097656 187.976562 28.039062 188.117188 27.921875 188.230469 C 27.808594 188.34375 27.671875 188.398438 27.511719 188.398438 L 27.464844 188.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 34.027344 189.402344 C 33.609375 189.402344 33.261719 189.289062 32.976562 189.066406 C 32.699219 188.84375 32.480469 188.558594 32.328125 188.203125 C 32.175781 187.847656 32.070312 187.476562 32.011719 187.089844 C 31.953125 186.703125 31.925781 186.304688 31.925781 185.902344 C 31.925781 185.371094 32.027344 184.835938 32.234375 184.300781 C 32.441406 183.761719 32.746094 183.316406 33.152344 182.964844 C 33.554688 182.609375 34.03125 182.433594 34.585938 182.433594 C 34.816406 182.433594 35.03125 182.476562 35.230469 182.566406 C 35.433594 182.652344 35.589844 182.78125 35.703125 182.953125 C 35.816406 183.121094 35.871094 183.328125 35.871094 183.566406 C 35.871094 183.707031 35.824219 183.824219 35.730469 183.917969 C 35.636719 184.011719 35.519531 184.058594 35.382812 184.058594 C 35.246094 184.058594 35.132812 184.007812 35.039062 183.914062 C 34.945312 183.816406 34.898438 183.703125 34.898438 183.566406 C 34.898438 183.4375 34.945312 183.324219 35.039062 183.226562 C 35.132812 183.132812 35.246094 183.085938 35.382812 183.085938 L 35.433594 183.085938 C 35.351562 182.960938 35.230469 182.867188 35.074219 182.8125 C 34.914062 182.753906 34.753906 182.726562 34.585938 182.726562 C 34.382812 182.726562 34.191406 182.769531 34.019531 182.859375 C 33.84375 182.945312 33.691406 183.066406 33.550781 183.21875 C 33.414062 183.371094 33.300781 183.539062 33.207031 183.722656 C 33.113281 183.90625 33.039062 184.117188 32.988281 184.351562 C 32.941406 184.585938 32.90625 184.804688 32.894531 185.007812 C 32.878906 185.210938 32.871094 185.464844 32.871094 185.773438 C 32.992188 185.5 33.164062 185.273438 33.378906 185.097656 C 33.597656 184.917969 33.84375 184.832031 34.113281 184.832031 C 34.414062 184.832031 34.691406 184.890625 34.9375 185.015625 C 35.1875 185.140625 35.398438 185.308594 35.578125 185.523438 C 35.753906 185.738281 35.890625 185.984375 35.984375 186.261719 C 36.078125 186.539062 36.125 186.820312 36.125 187.105469 C 36.125 187.5 36.035156 187.875 35.859375 188.230469 C 35.679688 188.589844 35.433594 188.875 35.113281 189.085938 C 34.796875 189.296875 34.433594 189.402344 34.027344 189.402344 Z M 34.027344 189.078125 C 34.289062 189.078125 34.5 189.019531 34.65625 188.902344 C 34.816406 188.78125 34.929688 188.625 35.007812 188.429688 C 35.082031 188.234375 35.125 188.035156 35.144531 187.835938 C 35.160156 187.636719 35.167969 187.394531 35.167969 187.105469 C 35.167969 186.722656 35.152344 186.394531 35.113281 186.121094 C 35.078125 185.851562 34.976562 185.613281 34.820312 185.40625 C 34.65625 185.203125 34.410156 185.101562 34.074219 185.101562 C 33.800781 185.101562 33.578125 185.191406 33.402344 185.375 C 33.222656 185.558594 33.097656 185.792969 33.015625 186.074219 C 32.9375 186.359375 32.898438 186.628906 32.898438 186.886719 C 32.898438 186.976562 32.898438 187.046875 32.902344 187.09375 C 32.902344 187.101562 32.902344 187.109375 32.902344 187.117188 C 32.902344 187.125 32.902344 187.132812 32.898438 187.140625 C 32.898438 187.433594 32.925781 187.726562 32.984375 188.023438 C 33.042969 188.316406 33.15625 188.566406 33.324219 188.773438 C 33.492188 188.976562 33.726562 189.078125 34.027344 189.078125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 189.402344 C 38.199219 189.402344 37.636719 189.0625 37.339844 188.378906 C 37.042969 187.699219 36.894531 186.886719 36.894531 185.949219 C 36.894531 185.363281 36.945312 184.8125 37.050781 184.292969 C 37.15625 183.777344 37.371094 183.335938 37.6875 182.976562 C 38.007812 182.613281 38.453125 182.433594 39.027344 182.433594 C 39.472656 182.433594 39.835938 182.542969 40.121094 182.757812 C 40.402344 182.976562 40.617188 183.257812 40.765625 183.601562 C 40.914062 183.949219 41.015625 184.316406 41.070312 184.710938 C 41.125 185.101562 41.152344 185.515625 41.152344 185.949219 C 41.152344 186.53125 41.101562 187.078125 40.992188 187.582031 C 40.886719 188.089844 40.675781 188.519531 40.363281 188.871094 C 40.050781 189.226562 39.605469 189.402344 39.027344 189.402344 Z M 39.027344 189.136719 C 39.402344 189.136719 39.683594 188.945312 39.867188 188.5625 C 40.054688 188.175781 40.167969 187.75 40.210938 187.28125 C 40.253906 186.8125 40.273438 186.3125 40.273438 185.785156 C 40.273438 185.277344 40.253906 184.808594 40.210938 184.382812 C 40.167969 183.953125 40.054688 183.566406 39.871094 183.21875 C 39.6875 182.871094 39.40625 182.699219 39.027344 182.699219 C 38.644531 182.699219 38.359375 182.871094 38.175781 183.222656 C 37.992188 183.570312 37.878906 183.960938 37.835938 184.386719 C 37.792969 184.8125 37.773438 185.277344 37.773438 185.785156 C 37.773438 186.160156 37.78125 186.515625 37.800781 186.847656 C 37.816406 187.183594 37.863281 187.527344 37.941406 187.882812 C 38.019531 188.234375 38.148438 188.53125 38.328125 188.773438 C 38.503906 189.015625 38.738281 189.136719 39.027344 189.136719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.277344 175.90625 L 23.277344 175.277344 L 25.957031 175.277344 L 25.957031 175.90625 L 23.277344 175.90625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.433594 177.78125 L 27.433594 177.421875 C 28.277344 177.421875 28.699219 177.316406 28.699219 177.101562 L 28.699219 171.785156 C 28.351562 171.953125 27.910156 172.035156 27.375 172.035156 L 27.375 171.683594 C 28.203125 171.683594 28.828125 171.46875 29.25 171.035156 L 29.390625 171.035156 C 29.414062 171.035156 29.4375 171.042969 29.457031 171.0625 C 29.480469 171.078125 29.492188 171.097656 29.492188 171.121094 L 29.492188 177.101562 C 29.492188 177.316406 29.914062 177.421875 30.757812 177.421875 L 30.757812 177.78125 L 27.433594 177.78125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 31.925781 176.246094 C 31.925781 175.839844 32.054688 175.480469 32.324219 175.164062 C 32.589844 174.851562 32.929688 174.59375 33.347656 174.386719 L 32.972656 174.148438 C 32.742188 173.992188 32.554688 173.792969 32.410156 173.539062 C 32.265625 173.289062 32.195312 173.023438 32.195312 172.746094 C 32.195312 172.421875 32.277344 172.128906 32.449219 171.871094 C 32.617188 171.609375 32.84375 171.40625 33.125 171.257812 C 33.40625 171.109375 33.707031 171.035156 34.027344 171.035156 C 34.328125 171.035156 34.617188 171.097656 34.894531 171.21875 C 35.171875 171.34375 35.398438 171.515625 35.582031 171.742188 C 35.761719 171.96875 35.847656 172.238281 35.847656 172.550781 C 35.847656 172.78125 35.796875 172.988281 35.691406 173.183594 C 35.585938 173.382812 35.441406 173.554688 35.253906 173.710938 C 35.066406 173.863281 34.863281 173.996094 34.65625 174.105469 L 35.234375 174.472656 C 35.5 174.652344 35.714844 174.878906 35.878906 175.164062 C 36.042969 175.445312 36.125 175.746094 36.125 176.058594 C 36.125 176.425781 36.027344 176.757812 35.828125 177.058594 C 35.632812 177.359375 35.371094 177.59375 35.050781 177.757812 C 34.726562 177.921875 34.386719 178.003906 34.027344 178.003906 C 33.679688 178.003906 33.34375 177.929688 33.015625 177.789062 C 32.691406 177.644531 32.425781 177.441406 32.226562 177.171875 C 32.023438 176.90625 31.925781 176.597656 31.925781 176.246094 Z M 32.46875 176.246094 C 32.46875 176.511719 32.542969 176.753906 32.6875 176.972656 C 32.835938 177.195312 33.03125 177.367188 33.273438 177.492188 C 33.515625 177.617188 33.765625 177.679688 34.027344 177.679688 C 34.417969 177.679688 34.773438 177.566406 35.09375 177.335938 C 35.414062 177.109375 35.574219 176.804688 35.574219 176.425781 C 35.574219 176.296875 35.546875 176.167969 35.496094 176.042969 C 35.445312 175.914062 35.378906 175.800781 35.285156 175.695312 C 35.195312 175.59375 35.09375 175.507812 34.980469 175.441406 L 33.621094 174.5625 C 33.410156 174.671875 33.21875 174.8125 33.042969 174.984375 C 32.867188 175.15625 32.726562 175.351562 32.625 175.566406 C 32.519531 175.78125 32.46875 176.007812 32.46875 176.246094 Z M 33.164062 173.152344 L 34.390625 173.941406 C 34.675781 173.777344 34.910156 173.578125 35.089844 173.34375 C 35.273438 173.109375 35.363281 172.84375 35.363281 172.550781 C 35.363281 172.324219 35.300781 172.117188 35.171875 171.929688 C 35.046875 171.738281 34.878906 171.589844 34.675781 171.484375 C 34.46875 171.378906 34.25 171.328125 34.015625 171.328125 C 33.8125 171.328125 33.605469 171.367188 33.402344 171.445312 C 33.195312 171.523438 33.023438 171.640625 32.886719 171.800781 C 32.753906 171.957031 32.683594 172.140625 32.683594 172.351562 C 32.683594 172.667969 32.84375 172.933594 33.164062 173.152344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 178.003906 C 38.199219 178.003906 37.636719 177.660156 37.339844 176.980469 C 37.042969 176.296875 36.894531 175.488281 36.894531 174.550781 C 36.894531 173.964844 36.945312 173.414062 37.050781 172.894531 C 37.15625 172.378906 37.371094 171.9375 37.6875 171.578125 C 38.007812 171.214844 38.453125 171.035156 39.027344 171.035156 C 39.472656 171.035156 39.835938 171.144531 40.121094 171.359375 C 40.402344 171.578125 40.617188 171.859375 40.765625 172.203125 C 40.914062 172.550781 41.015625 172.917969 41.070312 173.3125 C 41.125 173.703125 41.152344 174.117188 41.152344 174.550781 C 41.152344 175.132812 41.101562 175.675781 40.992188 176.183594 C 40.886719 176.6875 40.675781 177.117188 40.363281 177.472656 C 40.050781 177.828125 39.605469 178.003906 39.027344 178.003906 Z M 39.027344 177.738281 C 39.402344 177.738281 39.683594 177.546875 39.867188 177.160156 C 40.054688 176.777344 40.167969 176.351562 40.210938 175.882812 C 40.253906 175.410156 40.273438 174.914062 40.273438 174.386719 C 40.273438 173.878906 40.253906 173.410156 40.210938 172.984375 C 40.167969 172.554688 40.054688 172.167969 39.871094 171.820312 C 39.6875 171.472656 39.40625 171.296875 39.027344 171.296875 C 38.644531 171.296875 38.359375 171.472656 38.175781 171.824219 C 37.992188 172.171875 37.878906 172.558594 37.835938 172.984375 C 37.792969 173.410156 37.773438 173.878906 37.773438 174.386719 C 37.773438 174.761719 37.78125 175.117188 37.800781 175.449219 C 37.816406 175.785156 37.863281 176.128906 37.941406 176.480469 C 38.019531 176.835938 38.148438 177.132812 38.328125 177.375 C 38.503906 177.617188 38.738281 177.738281 39.027344 177.738281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 166.601562 C 38.199219 166.601562 37.636719 166.261719 37.339844 165.582031 C 37.042969 164.898438 36.894531 164.089844 36.894531 163.152344 C 36.894531 162.566406 36.945312 162.015625 37.050781 161.496094 C 37.15625 160.976562 37.371094 160.539062 37.6875 160.175781 C 38.007812 159.816406 38.453125 159.636719 39.027344 159.636719 C 39.472656 159.636719 39.835938 159.742188 40.121094 159.960938 C 40.402344 160.175781 40.617188 160.460938 40.765625 160.804688 C 40.914062 161.152344 41.015625 161.519531 41.070312 161.914062 C 41.125 162.304688 41.152344 162.71875 41.152344 163.152344 C 41.152344 163.734375 41.101562 164.277344 40.992188 164.785156 C 40.886719 165.289062 40.675781 165.71875 40.363281 166.074219 C 40.050781 166.425781 39.605469 166.601562 39.027344 166.601562 Z M 39.027344 166.339844 C 39.402344 166.339844 39.683594 166.148438 39.867188 165.761719 C 40.054688 165.378906 40.167969 164.949219 40.210938 164.480469 C 40.253906 164.011719 40.273438 163.515625 40.273438 162.988281 C 40.273438 162.480469 40.253906 162.011719 40.210938 161.585938 C 40.167969 161.15625 40.054688 160.769531 39.871094 160.421875 C 39.6875 160.074219 39.40625 159.898438 39.027344 159.898438 C 38.644531 159.898438 38.359375 160.074219 38.175781 160.421875 C 37.992188 160.773438 37.878906 161.160156 37.835938 161.585938 C 37.792969 162.011719 37.773438 162.480469 37.773438 162.988281 C 37.773438 163.363281 37.78125 163.71875 37.800781 164.050781 C 37.816406 164.386719 37.863281 164.730469 37.941406 165.082031 C 38.019531 165.4375 38.148438 165.734375 38.328125 165.976562 C 38.503906 166.21875 38.738281 166.339844 39.027344 166.339844 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.433594 154.980469 L 27.433594 154.625 C 28.277344 154.625 28.699219 154.515625 28.699219 154.300781 L 28.699219 148.988281 C 28.351562 149.15625 27.910156 149.238281 27.375 149.238281 L 27.375 148.886719 C 28.203125 148.886719 28.828125 148.667969 29.25 148.234375 L 29.390625 148.234375 C 29.414062 148.234375 29.4375 148.246094 29.457031 148.261719 C 29.480469 148.28125 29.492188 148.300781 29.492188 148.324219 L 29.492188 154.300781 C 29.492188 154.515625 29.914062 154.625 30.757812 154.625 L 30.757812 154.980469 L 27.433594 154.980469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 31.925781 153.445312 C 31.925781 153.039062 32.054688 152.679688 32.324219 152.367188 C 32.589844 152.054688 32.929688 151.796875 33.347656 151.589844 L 32.972656 151.347656 C 32.742188 151.195312 32.554688 150.992188 32.410156 150.742188 C 32.265625 150.488281 32.195312 150.226562 32.195312 149.949219 C 32.195312 149.625 32.277344 149.332031 32.449219 149.070312 C 32.617188 148.8125 32.84375 148.605469 33.125 148.460938 C 33.40625 148.308594 33.707031 148.234375 34.027344 148.234375 C 34.328125 148.234375 34.617188 148.296875 34.894531 148.421875 C 35.171875 148.542969 35.398438 148.71875 35.582031 148.945312 C 35.761719 149.171875 35.847656 149.441406 35.847656 149.753906 C 35.847656 149.980469 35.796875 150.191406 35.691406 150.386719 C 35.585938 150.582031 35.441406 150.757812 35.253906 150.910156 C 35.066406 151.066406 34.863281 151.199219 34.65625 151.308594 L 35.234375 151.675781 C 35.5 151.851562 35.714844 152.082031 35.878906 152.363281 C 36.042969 152.648438 36.125 152.945312 36.125 153.257812 C 36.125 153.625 36.027344 153.960938 35.828125 154.261719 C 35.632812 154.5625 35.371094 154.792969 35.050781 154.957031 C 34.726562 155.121094 34.386719 155.203125 34.027344 155.203125 C 33.679688 155.203125 33.34375 155.132812 33.015625 154.988281 C 32.691406 154.847656 32.425781 154.644531 32.226562 154.375 C 32.023438 154.105469 31.925781 153.796875 31.925781 153.445312 Z M 32.46875 153.445312 C 32.46875 153.710938 32.542969 153.957031 32.6875 154.175781 C 32.835938 154.398438 33.03125 154.570312 33.273438 154.695312 C 33.515625 154.820312 33.765625 154.882812 34.027344 154.882812 C 34.417969 154.882812 34.773438 154.769531 35.09375 154.539062 C 35.414062 154.308594 35.574219 154.007812 35.574219 153.628906 C 35.574219 153.5 35.546875 153.371094 35.496094 153.242188 C 35.445312 153.117188 35.378906 153.003906 35.285156 152.898438 C 35.195312 152.792969 35.09375 152.710938 34.980469 152.644531 L 33.621094 151.765625 C 33.410156 151.875 33.21875 152.015625 33.042969 152.1875 C 32.867188 152.359375 32.726562 152.550781 32.625 152.765625 C 32.519531 152.980469 32.46875 153.207031 32.46875 153.445312 Z M 33.164062 150.351562 L 34.390625 151.144531 C 34.675781 150.980469 34.910156 150.78125 35.089844 150.546875 C 35.273438 150.3125 35.363281 150.046875 35.363281 149.753906 C 35.363281 149.527344 35.300781 149.320312 35.171875 149.128906 C 35.046875 148.941406 34.878906 148.792969 34.675781 148.6875 C 34.46875 148.582031 34.25 148.53125 34.015625 148.53125 C 33.8125 148.53125 33.605469 148.570312 33.402344 148.648438 C 33.195312 148.722656 33.023438 148.84375 32.886719 149 C 32.753906 149.160156 32.683594 149.34375 32.683594 149.554688 C 32.683594 149.871094 32.84375 150.136719 33.164062 150.351562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.027344 155.203125 C 38.199219 155.203125 37.636719 154.863281 37.339844 154.179688 C 37.042969 153.5 36.894531 152.691406 36.894531 151.753906 C 36.894531 151.167969 36.945312 150.613281 37.050781 150.097656 C 37.15625 149.578125 37.371094 149.140625 37.6875 148.777344 C 38.007812 148.417969 38.453125 148.234375 39.027344 148.234375 C 39.472656 148.234375 39.835938 148.34375 40.121094 148.5625 C 40.402344 148.777344 40.617188 149.058594 40.765625 149.40625 C 40.914062 149.75 41.015625 150.121094 41.070312 150.511719 C 41.125 150.90625 41.152344 151.320312 41.152344 151.753906 C 41.152344 152.335938 41.101562 152.878906 40.992188 153.386719 C 40.886719 153.890625 40.675781 154.320312 40.363281 154.675781 C 40.050781 155.027344 39.605469 155.203125 39.027344 155.203125 Z M 39.027344 154.941406 C 39.402344 154.941406 39.683594 154.75 39.867188 154.363281 C 40.054688 153.976562 40.167969 153.550781 40.210938 153.082031 C 40.253906 152.613281 40.273438 152.117188 40.273438 151.589844 C 40.273438 151.082031 40.253906 150.613281 40.210938 150.183594 C 40.167969 149.757812 40.054688 149.367188 39.871094 149.023438 C 39.6875 148.671875 39.40625 148.5 39.027344 148.5 C 38.644531 148.5 38.359375 148.675781 38.175781 149.023438 C 37.992188 149.375 37.878906 149.761719 37.835938 150.1875 C 37.792969 150.613281 37.773438 151.082031 37.773438 151.589844 C 37.773438 151.964844 37.78125 152.316406 37.800781 152.652344 C 37.816406 152.984375 37.863281 153.332031 37.941406 153.683594 C 38.019531 154.035156 38.148438 154.335938 38.328125 154.578125 C 38.503906 154.820312 38.738281 154.941406 39.027344 154.941406 "/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="17.5398" y="185.9957"/>
<use xlink:href="#glyph0-2" x="17.5398" y="179.884503"/>
<use xlink:href="#glyph0-3" x="17.5398" y="174.323413"/>
<use xlink:href="#glyph0-4" x="17.5398" y="171.542868"/>
<use xlink:href="#glyph0-5" x="17.5398" y="168.762323"/>
<use xlink:href="#glyph0-7" x="17.5398" y="161.540908"/>
</g>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 454.871554 -537.106934 L 1016.321274 -537.106934 L 1109.108351 -537.067877 L 1184.041242 -537.067877 L 1196.425875 -537.028821 L 1221.234209 -537.028821 L 1233.65791 -536.989764 L 1246.081611 -536.989764 L 1258.466245 -536.950707 L 1270.889946 -536.911651 L 1283.274579 -536.872594 L 1295.69828 -536.833537 L 1308.082913 -536.794481 L 1320.506614 -536.716368 L 1328.593741 -536.638254 L 1339.72819 -536.521084 L 1339.767258 -536.521084 L 1348.948295 -536.364858 L 1356.566603 -536.169575 L 1362.817522 -535.935235 L 1362.85659 -535.935235 L 1368.013598 -535.661838 L 1368.052666 -535.661838 L 1372.311105 -535.310328 L 1372.350173 -535.310328 L 1375.866315 -534.841649 L 1375.905383 -534.841649 L 1378.796433 -534.216742 L 1378.835501 -534.216742 L 1381.218664 -533.396553 L 1381.257732 -533.396553 L 1383.211145 -532.26391 L 1383.211145 -532.224854 L 1383.250213 -532.224854 L 1384.891079 -530.584475 L 1386.258467 -528.045793 L 1386.258467 -528.006736 L 1387.391447 -523.788619 L 1387.391447 -523.710506 L 1388.329084 -515.430498 L 1388.329084 -515.196158 L 1389.071381 -494.027458 L 1389.071381 -493.636892 L 1389.110449 -493.207269 L 1389.735541 -424.81909 L 1389.735541 -422.241351 L 1390.360633 -353.306379 L 1390.360633 -352.48619 L 1391.141998 -331.122207 L 1391.141998 -330.887867 L 1392.079636 -322.607859 L 1392.079636 -322.490689 L 1393.212615 -318.272572 L 1393.212615 -318.233515 L 1394.540935 -315.694833 L 1394.580003 -315.694833 L 1396.220869 -314.054454 L 1396.220869 -314.015398 L 1398.21335 -312.882755 L 1398.252418 -312.882755 L 1400.635581 -312.062566 L 1400.674649 -312.062566 L 1403.565699 -311.437659 L 1403.604767 -311.437659 L 1407.120909 -310.96898 L 1411.418416 -310.61747 L 1411.457484 -310.61747 L 1416.614492 -310.305017 L 1422.904479 -310.109734 L 1430.522787 -309.91445 L 1439.703824 -309.758224 L 1439.742892 -309.758224 L 1450.838273 -309.641054 L 1450.877341 -309.641054 L 1456.971987 -309.562941 L 1469.395689 -309.484827 L 1481.81939 -309.445771 L 1494.204023 -309.406714 L 1506.627724 -309.367657 L 1519.012357 -309.328601 L 1531.436059 -309.289544 L 1543.820692 -309.289544 L 1556.244393 -309.250487 L 1568.941572 -309.250487 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 454.871554 -536.364858 L 459.442538 -536.325801 L 552.229615 -534.685422 L 575.787766 -533.865233 L 588.211467 -533.31844 L 600.5961 -532.693533 L 613.019801 -531.951457 L 625.404434 -531.092211 L 637.828136 -530.115795 L 650.212769 -528.944096 L 662.63647 -527.61617 L 675.021103 -526.053904 L 687.444804 -524.218242 L 699.829437 -522.14824 L 712.253139 -519.726728 L 724.637772 -516.91465 L 737.061473 -513.712006 L 749.446106 -510.079738 L 761.869807 -505.939734 L 774.25444 -501.33105 L 786.678142 -496.175574 L 799.062775 -490.590474 L 811.486476 -484.536694 L 823.871109 -478.131405 L 836.29481 -471.45272 L 848.718512 -464.656864 L 861.103145 -457.782895 L 873.526846 -450.947983 L 885.911479 -444.191184 L 898.33518 -437.512498 L 910.719813 -430.950982 L 923.143515 -424.428523 L 935.528148 -417.945121 L 947.951849 -411.383605 L 960.336482 -404.743976 L 972.760183 -398.026234 L 985.144816 -391.230378 L 997.568518 -384.356409 L 1009.953151 -377.521497 L 1022.376852 -370.764698 L 1034.761485 -364.281295 L 1047.185186 -358.071289 L 1059.608888 -352.290906 L 1071.993521 -346.940146 L 1084.378154 -342.13618 L 1096.801855 -337.800892 L 1109.225556 -333.973341 L 1121.610189 -330.575414 L 1133.994822 -327.646166 L 1146.418524 -325.068427 L 1158.842225 -322.842199 L 1171.226858 -320.928423 L 1183.650559 -319.248988 L 1196.035192 -317.842949 L 1208.458893 -316.593136 L 1220.843526 -315.538607 L 1233.267228 -314.640304 L 1245.651861 -313.859171 L 1258.075562 -313.195208 L 1270.460195 -312.609359 L 1282.883896 -312.101622 L 1295.268529 -311.711056 L 1307.692231 -311.320489 L 1320.076864 -311.047093 L 1332.500565 -310.773696 L 1518.113788 -309.328601 L 1568.941572 -309.289544 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 162.859375 63.347656 L 274.222656 63.347656 L 274.222656 24.339844 L 162.859375 24.339844 Z M 162.859375 63.347656 "/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1486.300492 L 2742.590661 -1486.300492 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1876.320114 L 2742.590661 -1876.320114 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -1486.300492 L 2000.098702 -1497.431635 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -1876.320114 L 2000.098702 -1865.188972 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1486.300492 L 1628.833188 -1491.885592 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1814.446411 -1486.300492 L 1814.446411 -1491.885592 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -1486.300492 L 2000.098702 -1491.885592 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2185.711925 -1486.300492 L 2185.711925 -1491.885592 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2371.364216 -1486.300492 L 2371.364216 -1491.885592 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2556.977438 -1486.300492 L 2556.977438 -1491.885592 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1486.300492 L 2742.590661 -1491.885592 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1876.320114 L 1628.833188 -1870.735015 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1814.446411 -1876.320114 L 1814.446411 -1870.735015 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -1876.320114 L 2000.098702 -1870.735015 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2185.711925 -1876.320114 L 2185.711925 -1870.735015 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2371.364216 -1876.320114 L 2371.364216 -1870.735015 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2556.977438 -1876.320114 L 2556.977438 -1870.735015 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1876.320114 L 2742.590661 -1870.735015 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1486.300492 L 1628.833188 -1876.320114 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1486.300492 L 2742.590661 -1876.320114 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1536.292994 L 1639.967638 -1536.292994 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1677.951432 L 1639.967638 -1677.951432 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1819.648928 L 1639.967638 -1819.648928 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1536.292994 L 2731.456212 -1536.292994 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1677.951432 L 2731.456212 -1677.951432 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1819.648928 L 2731.456212 -1819.648928 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="196.414" y="20.777"/>
<use xlink:href="#glyph1-2" x="202.523431" y="20.777"/>
<use xlink:href="#glyph1-3" x="205.853122" y="20.777"/>
<use xlink:href="#glyph1-4" x="211.412604" y="20.777"/>
<use xlink:href="#glyph1-5" x="219.741829" y="20.777"/>
<use xlink:href="#glyph1-6" x="222.52157" y="20.777"/>
<use xlink:href="#glyph1-1" x="225.301312" y="20.777"/>
<use xlink:href="#glyph1-8" x="231.410743" y="20.777"/>
</g>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.676916 -1486.691059 L 1633.208832 -1487.394078 L 1726.034977 -1501.571639 L 1818.822054 -1515.7492 L 1911.6482 -1529.887704 L 2190.126636 -1572.420387 L 2282.913713 -1586.597948 L 2308.190867 -1590.464555 L 2320.614568 -1592.378331 L 2332.999201 -1594.292106 L 2345.422902 -1596.205882 L 2357.846603 -1598.158714 L 2370.231236 -1600.111546 L 2382.654938 -1602.064378 L 2395.039571 -1604.056267 L 2407.463272 -1606.087212 L 2419.847905 -1608.196271 L 2432.271606 -1610.344386 L 2444.695308 -1612.570614 L 2457.079941 -1614.95307 L 2469.503642 -1617.569865 L 2481.888275 -1620.420999 L 2494.311976 -1623.701757 L 2502.399103 -1626.162326 L 2513.533552 -1630.18516 L 2522.714589 -1634.286107 L 2522.753657 -1634.286107 L 2530.332896 -1638.543281 L 2530.371965 -1638.543281 L 2536.622884 -1642.995738 L 2541.81896 -1647.643478 L 2541.858028 -1647.643478 L 2546.116467 -1652.525559 L 2546.155535 -1652.525559 L 2549.671677 -1657.641979 L 2549.671677 -1657.681035 L 2552.601795 -1663.070852 L 2552.601795 -1663.109909 L 2555.024026 -1668.890291 L 2555.024026 -1668.929348 L 2557.016506 -1675.178411 L 2557.016506 -1675.217467 L 2557.055575 -1675.256524 L 2558.696441 -1682.130493 L 2558.696441 -1682.208606 L 2560.063829 -1689.980878 L 2560.063829 -1690.098048 L 2561.196808 -1699.237302 L 2561.196808 -1699.393528 L 2562.095378 -1710.837124 L 2562.134446 -1710.954294 L 2562.134446 -1711.071464 L 2562.876743 -1726.537894 L 2562.876743 -1726.733178 L 2562.915811 -1726.928461 L 2563.501835 -1740.715455 L 2563.540903 -1740.715455 L 2564.165995 -1726.889404 L 2564.165995 -1726.459781 L 2564.94736 -1710.759011 L 2564.94736 -1710.485615 L 2565.845929 -1698.729566 L 2565.884998 -1698.651452 L 2565.884998 -1698.573339 L 2567.017977 -1689.043518 L 2567.017977 -1688.965405 L 2568.346297 -1680.76351 L 2568.385365 -1680.724454 L 2568.385365 -1680.685397 L 2570.026231 -1673.303692 L 2570.026231 -1673.225579 L 2572.018712 -1666.35161 L 2572.05778 -1666.312553 L 2574.440943 -1659.790094 L 2574.440943 -1659.751037 L 2577.371061 -1653.462918 L 2577.371061 -1653.423861 L 2580.926271 -1647.213855 L 2585.223778 -1641.042906 L 2585.223778 -1641.003849 L 2590.419854 -1634.793843 L 2596.709841 -1628.427611 L 2604.328149 -1621.866095 L 2604.328149 -1621.827038 L 2613.509186 -1614.914013 L 2613.548254 -1614.914013 L 2624.643635 -1607.493251 L 2624.682703 -1607.493251 L 2630.777349 -1603.743813 L 2643.201051 -1596.596448 L 2655.585684 -1589.878706 L 2668.009385 -1583.473416 L 2680.394018 -1577.26341 L 2692.817719 -1571.209631 L 2705.202352 -1565.273022 L 2717.626054 -1559.375469 L 2730.049755 -1553.556029 L 2742.434388 -1547.775646 L 2742.746934 -1547.61942 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.676916 -1770.08605 L 1633.2479 -1770.750012 L 1726.034977 -1784.927573 L 1749.593128 -1788.481728 L 1761.977761 -1790.395503 L 1774.401462 -1792.270222 L 1786.786095 -1794.144941 L 1799.209796 -1796.01966 L 1811.594429 -1797.894378 L 1824.018131 -1799.769097 L 1836.402764 -1801.604759 L 1848.826465 -1803.440421 L 1861.211098 -1805.237027 L 1873.634799 -1807.033632 L 1886.058501 -1808.752125 L 1898.443134 -1810.43156 L 1910.866835 -1812.071939 L 1923.251468 -1813.595148 L 1935.675169 -1815.001187 L 1948.059802 -1816.290056 L 1960.483504 -1817.383642 L 1972.868137 -1818.242889 L 1985.291838 -1818.867795 L 1997.676471 -1819.219305 L 2010.100172 -1819.297418 L 2022.484805 -1819.024021 L 2034.908507 -1818.516285 L 2047.29314 -1817.657039 L 2059.716841 -1816.563453 L 2072.101474 -1815.235527 L 2084.525175 -1813.712318 L 2096.909808 -1811.954769 L 2109.33351 -1810.001937 L 2121.757211 -1807.853822 L 2134.141844 -1805.471367 L 2146.565545 -1802.893628 L 2158.950178 -1800.042494 L 2171.334811 -1796.917962 L 2183.758513 -1793.480978 L 2196.182214 -1789.73154 L 2208.566847 -1785.747763 L 2220.990548 -1781.412476 L 2233.375181 -1776.842849 L 2245.798882 -1772.077938 L 2258.183515 -1767.078688 L 2270.607217 -1761.923212 L 2282.99185 -1756.650565 L 2295.415551 -1751.260748 L 2307.800184 -1745.831875 L 2320.223885 -1740.324889 L 2332.608518 -1734.778846 L 2345.03222 -1729.193746 L 2357.455921 -1723.56959 L 2369.840554 -1717.945433 L 2382.225187 -1712.28222 L 2394.648888 -1706.658064 L 2407.033521 -1700.994851 L 2419.457223 -1695.331638 L 2431.841856 -1689.668425 L 2444.265557 -1684.005212 L 2456.689258 -1678.302942 L 2469.073891 -1672.639729 L 2481.497593 -1666.976516 L 2493.882226 -1661.274246 L 2506.305927 -1655.611033 L 2691.91915 -1570.623781 L 2742.746934 -1547.346023 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 162.859375 102.730469 L 274.222656 102.730469 L 274.222656 67.847656 L 162.859375 67.847656 Z M 162.859375 102.730469 "/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1092.531433 L 2742.590661 -1092.531433 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1441.307241 L 2742.590661 -1441.307241 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -1092.531433 L 2000.098702 -1103.662576 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -1441.307241 L 2000.098702 -1430.176099 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1092.531433 L 1628.833188 -1098.116533 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1814.446411 -1092.531433 L 1814.446411 -1098.116533 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -1092.531433 L 2000.098702 -1098.116533 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2185.711925 -1092.531433 L 2185.711925 -1098.116533 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2371.364216 -1092.531433 L 2371.364216 -1098.116533 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2556.977438 -1092.531433 L 2556.977438 -1098.116533 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1092.531433 L 2742.590661 -1098.116533 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1441.307241 L 1628.833188 -1435.722142 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1814.446411 -1441.307241 L 1814.446411 -1435.722142 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -1441.307241 L 2000.098702 -1435.722142 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2185.711925 -1441.307241 L 2185.711925 -1435.722142 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2371.364216 -1441.307241 L 2371.364216 -1435.722142 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2556.977438 -1441.307241 L 2556.977438 -1435.722142 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1441.307241 L 2742.590661 -1435.722142 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1092.531433 L 1628.833188 -1441.307241 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1092.531433 L 2742.590661 -1441.307241 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1095.968417 L 1639.967638 -1095.968417 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1181.424349 L 1639.967638 -1181.424349 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1266.919337 L 1639.967638 -1266.919337 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1352.414325 L 1639.967638 -1352.414325 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1437.870257 L 1639.967638 -1437.870257 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1095.968417 L 2731.456212 -1095.968417 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1181.424349 L 2731.456212 -1181.424349 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1266.919337 L 2731.456212 -1266.919337 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1352.414325 L 2731.456212 -1352.414325 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1437.870257 L 2731.456212 -1437.870257 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.676916 -1437.870257 L 2190.126636 -1437.870257 L 2282.913713 -1437.8312 L 2320.614568 -1437.8312 L 2332.999201 -1437.792144 L 2357.846603 -1437.792144 L 2370.231236 -1437.753087 L 2382.654938 -1437.753087 L 2395.039571 -1437.71403 L 2407.463272 -1437.71403 L 2419.847905 -1437.674974 L 2444.695308 -1437.59686 L 2457.079941 -1437.557804 L 2469.503642 -1437.479691 L 2481.888275 -1437.401577 L 2494.311976 -1437.284407 L 2502.399103 -1437.167237 L 2513.533552 -1436.971954 L 2522.714589 -1436.776671 L 2522.753657 -1436.776671 L 2530.332896 -1436.503275 L 2530.332896 -1436.464218 L 2530.371965 -1436.464218 L 2536.622884 -1436.151765 L 2541.81896 -1435.722142 L 2541.858028 -1435.722142 L 2546.116467 -1435.175349 L 2546.155535 -1435.175349 L 2549.671677 -1434.472329 L 2552.601795 -1433.53497 L 2555.024026 -1432.285157 L 2557.016506 -1430.605722 L 2557.016506 -1430.566665 L 2557.055575 -1430.566665 L 2558.696441 -1428.106097 L 2558.696441 -1428.06704 L 2560.063829 -1424.317602 L 2560.063829 -1424.239489 L 2561.196808 -1417.912313 L 2561.196808 -1417.756087 L 2562.095378 -1405.375131 L 2562.134446 -1405.218905 L 2562.134446 -1405.023621 L 2562.876743 -1373.270572 L 2562.876743 -1372.684722 L 2562.915811 -1372.059816 L 2563.501835 -1269.458019 L 2563.540903 -1267.505187 L 2563.540903 -1265.552355 L 2564.165995 -1162.169425 L 2564.165995 -1160.919612 L 2564.94736 -1128.893166 L 2564.94736 -1128.541656 L 2565.845929 -1116.121644 L 2565.884998 -1116.043531 L 2565.884998 -1115.965418 L 2567.017977 -1109.599185 L 2567.017977 -1109.560128 L 2568.346297 -1105.771634 L 2568.385365 -1105.771634 L 2568.385365 -1105.732578 L 2570.026231 -1103.272009 L 2570.026231 -1103.232953 L 2572.018712 -1101.553517 L 2572.05778 -1101.553517 L 2574.440943 -1100.303704 L 2577.371061 -1099.366345 L 2580.926271 -1098.663326 L 2585.223778 -1098.116533 L 2590.419854 -1097.686909 L 2596.709841 -1097.3354 L 2604.328149 -1097.062003 L 2613.509186 -1096.86672 L 2613.548254 -1096.86672 L 2624.643635 -1096.671437 L 2624.682703 -1096.671437 L 2630.777349 -1096.593324 L 2643.201051 -1096.476154 L 2655.585684 -1096.358984 L 2668.009385 -1096.28087 L 2680.394018 -1096.241814 L 2692.817719 -1096.202757 L 2705.202352 -1096.1637 L 2730.049755 -1096.085587 L 2742.746934 -1096.085587 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.676916 -1436.776671 L 1633.2479 -1436.737614 L 1726.034977 -1434.237989 L 1749.593128 -1433.027233 L 1761.977761 -1432.207044 L 1774.401462 -1431.269685 L 1786.786095 -1430.176099 L 1799.209796 -1428.887229 L 1811.594429 -1427.403077 L 1824.018131 -1425.645528 L 1836.402764 -1423.653639 L 1848.826465 -1421.271184 L 1861.211098 -1418.576276 L 1873.634799 -1415.412688 L 1886.058501 -1411.78042 L 1898.443134 -1407.60136 L 1910.866835 -1402.797393 L 1923.251468 -1397.329463 L 1935.675169 -1391.119457 L 1948.059802 -1384.206432 L 1960.483504 -1376.473217 L 1972.868137 -1368.076039 L 1985.291838 -1359.014898 L 1997.676471 -1349.406964 L 2010.100172 -1339.408464 L 2022.484805 -1329.21468 L 2034.908507 -1318.903727 L 2047.29314 -1308.63183 L 2059.716841 -1298.51616 L 2072.101474 -1288.51766 L 2084.525175 -1278.63633 L 2096.909808 -1268.872169 L 2109.33351 -1259.108009 L 2121.757211 -1249.304792 L 2134.141844 -1239.345348 L 2146.565545 -1229.268735 L 2158.950178 -1219.035895 L 2171.334811 -1208.763998 L 2183.758513 -1198.492101 L 2196.182214 -1188.376431 L 2208.566847 -1178.612271 L 2220.990548 -1169.31679 L 2233.375181 -1160.646216 L 2245.798882 -1152.639604 L 2258.183515 -1145.414125 L 2270.607217 -1138.891666 L 2282.99185 -1133.15034 L 2295.415551 -1128.072977 L 2307.800184 -1123.659576 L 2320.223885 -1119.792969 L 2332.608518 -1116.473154 L 2345.03222 -1113.582963 L 2357.455921 -1111.083337 L 2369.840554 -1108.935222 L 2382.225187 -1107.09956 L 2394.648888 -1105.537294 L 2407.033521 -1104.170312 L 2419.457223 -1102.998613 L 2431.841856 -1101.98314 L 2444.265557 -1101.123894 L 2456.689258 -1100.381818 L 2469.073891 -1099.756911 L 2481.497593 -1099.210118 L 2493.882226 -1098.741439 L 2506.305927 -1098.350872 L 2691.91915 -1096.202757 L 2742.746934 -1096.1637 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 162.859375 147.738281 L 274.222656 147.738281 L 274.222656 108.730469 L 162.859375 108.730469 Z M 162.859375 147.738281 "/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -642.520809 L 2742.590661 -642.520809 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1032.540431 L 2742.590661 -1032.540431 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -642.520809 L 2000.098702 -653.651952 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -1032.540431 L 2000.098702 -1021.409289 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -642.520809 L 1628.833188 -648.105909 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1814.446411 -642.520809 L 1814.446411 -648.105909 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -642.520809 L 2000.098702 -648.105909 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2185.711925 -642.520809 L 2185.711925 -648.105909 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2371.364216 -642.520809 L 2371.364216 -648.105909 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2556.977438 -642.520809 L 2556.977438 -648.105909 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -642.520809 L 2742.590661 -648.105909 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -1032.540431 L 1628.833188 -1026.955332 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1814.446411 -1032.540431 L 1814.446411 -1026.955332 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -1032.540431 L 2000.098702 -1026.955332 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2185.711925 -1032.540431 L 2185.711925 -1026.955332 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2371.364216 -1032.540431 L 2371.364216 -1026.955332 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2556.977438 -1032.540431 L 2556.977438 -1026.955332 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -1032.540431 L 2742.590661 -1026.955332 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -642.520809 L 1628.833188 -1032.540431 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -642.520809 L 2742.590661 -1032.540431 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -692.513311 L 1639.967638 -692.513311 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -834.171749 L 1639.967638 -834.171749 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -975.869245 L 1639.967638 -975.869245 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -692.513311 L 2731.456212 -692.513311 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -834.171749 L 2731.456212 -834.171749 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -975.869245 L 2731.456212 -975.869245 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.676916 -890.842936 L 2190.126636 -890.842936 L 2282.913713 -890.881993 L 2332.999201 -890.881993 L 2345.422902 -890.921049 L 2357.846603 -890.921049 L 2370.231236 -890.960106 L 2382.654938 -890.999163 L 2395.039571 -891.038219 L 2407.463272 -891.116333 L 2419.847905 -891.194446 L 2444.695308 -891.506899 L 2457.079941 -891.780295 L 2469.503642 -892.092749 L 2481.888275 -892.600485 L 2494.311976 -893.303504 L 2502.399103 -893.889354 L 2513.533552 -895.061053 L 2522.714589 -896.428036 L 2522.753657 -896.428036 L 2530.332896 -897.951245 L 2530.371965 -897.951245 L 2536.622884 -899.708794 L 2541.81896 -901.622569 L 2541.858028 -901.622569 L 2546.116467 -903.731628 L 2546.155535 -903.731628 L 2549.671677 -906.03597 L 2552.601795 -908.535595 L 2555.024026 -911.26956 L 2557.016506 -914.237864 L 2557.016506 -914.276921 L 2557.055575 -914.276921 L 2558.696441 -917.596735 L 2558.696441 -917.635792 L 2560.063829 -921.424286 L 2560.063829 -921.463343 L 2561.196808 -925.954857 L 2561.196808 -926.03297 L 2562.095378 -931.696183 L 2562.134446 -931.73524 L 2562.134446 -931.813353 L 2562.876743 -939.468455 L 2562.876743 -939.585625 L 2562.915811 -939.663738 L 2563.501835 -946.49865 L 2563.540903 -946.49865 L 2564.165995 -939.546568 L 2564.165995 -939.351285 L 2564.94736 -931.422787 L 2564.94736 -931.305617 L 2565.845929 -925.329951 L 2565.884998 -925.290894 L 2565.884998 -925.251837 L 2567.017977 -920.408814 L 2567.017977 -920.369757 L 2568.346297 -916.15164 L 2568.385365 -916.15164 L 2568.385365 -916.112583 L 2570.026231 -912.285032 L 2572.018712 -908.691821 L 2572.05778 -908.652765 L 2574.440943 -905.21578 L 2577.371061 -901.817852 L 2580.926271 -898.458981 L 2580.926271 -898.419925 L 2585.223778 -895.021997 L 2590.419854 -891.506899 L 2596.709841 -887.835575 L 2604.328149 -883.968967 L 2613.509186 -879.789907 L 2613.548254 -879.789907 L 2624.643635 -875.259336 L 2624.682703 -875.259336 L 2630.777349 -872.876881 L 2643.201051 -868.385367 L 2655.585684 -864.05008 L 2668.009385 -859.910076 L 2680.394018 -855.887242 L 2692.817719 -851.903464 L 2705.202352 -847.958744 L 2730.049755 -840.225529 L 2742.434388 -836.397978 L 2742.746934 -836.280808 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.676916 -1032.540431 L 1726.034977 -1032.540431 L 1749.593128 -1032.501375 L 1811.594429 -1032.501375 L 1824.018131 -1032.462318 L 1836.402764 -1032.462318 L 1848.826465 -1032.423262 L 1861.211098 -1032.384205 L 1886.058501 -1032.227978 L 1898.443134 -1032.149865 L 1910.866835 -1031.993638 L 1923.251468 -1031.837412 L 1935.675169 -1031.564015 L 1948.059802 -1031.251562 L 1960.483504 -1030.860996 L 1972.868137 -1030.35326 L 1985.291838 -1029.728353 L 1997.676471 -1028.94722 L 2010.100172 -1028.048918 L 2022.484805 -1026.955332 L 2034.908507 -1025.744576 L 2047.29314 -1024.377593 L 2059.716841 -1022.893441 L 2072.101474 -1021.292119 L 2084.525175 -1019.573626 L 2096.909808 -1017.737964 L 2109.33351 -1015.824189 L 2121.757211 -1013.793244 L 2134.141844 -1011.645128 L 2146.565545 -1009.4189 L 2158.950178 -1007.036445 L 2171.334811 -1004.536819 L 2183.758513 -1001.880968 L 2196.182214 -999.06889 L 2208.566847 -996.100585 L 2220.990548 -993.01511 L 2233.375181 -989.773409 L 2245.798882 -986.414538 L 2258.183515 -982.977553 L 2270.607217 -979.462456 L 2282.99185 -975.869245 L 2295.415551 -972.236977 L 2307.800184 -968.565653 L 2320.223885 -964.894328 L 2332.608518 -961.144891 L 2345.03222 -957.43451 L 2357.455921 -953.685072 L 2369.840554 -949.896578 L 2382.225187 -946.14714 L 2394.648888 -942.358646 L 2407.033521 -938.609209 L 2419.457223 -934.820714 L 2431.841856 -931.03222 L 2456.689258 -923.455232 L 2469.073891 -919.666737 L 2481.497593 -915.878243 L 2493.882226 -912.089749 L 2506.305927 -908.340311 L 2691.91915 -851.669125 L 2742.746934 -836.163638 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 162.859375 187.121094 L 274.222656 187.121094 L 274.222656 152.238281 L 162.859375 152.238281 Z M 162.859375 187.121094 "/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -248.75175 L 2742.590661 -248.75175 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -597.527558 L 2742.590661 -597.527558 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -248.75175 L 2000.098702 -259.882893 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -597.527558 L 2000.098702 -586.396416 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -248.75175 L 1628.833188 -254.336849 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1814.446411 -248.75175 L 1814.446411 -254.336849 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -248.75175 L 2000.098702 -254.336849 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2185.711925 -248.75175 L 2185.711925 -254.336849 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2371.364216 -248.75175 L 2371.364216 -254.336849 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2556.977438 -248.75175 L 2556.977438 -254.336849 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -248.75175 L 2742.590661 -254.336849 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -597.527558 L 1628.833188 -591.942459 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1814.446411 -597.527558 L 1814.446411 -591.942459 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2000.098702 -597.527558 L 2000.098702 -591.942459 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2185.711925 -597.527558 L 2185.711925 -591.942459 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2371.364216 -597.527558 L 2371.364216 -591.942459 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2556.977438 -597.527558 L 2556.977438 -591.942459 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -597.527558 L 2742.590661 -591.942459 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 193.914062 199.523438 L 193.914062 199.164062 C 194.757812 199.164062 195.179688 199.058594 195.179688 198.84375 L 195.179688 193.527344 C 194.832031 193.695312 194.390625 193.78125 193.855469 193.78125 L 193.855469 193.429688 C 194.683594 193.429688 195.308594 193.210938 195.730469 192.777344 L 195.871094 192.777344 C 195.894531 192.777344 195.917969 192.785156 195.9375 192.804688 C 195.960938 192.820312 195.972656 192.84375 195.972656 192.867188 L 195.972656 198.84375 C 195.972656 199.058594 196.394531 199.164062 197.234375 199.164062 L 197.234375 199.523438 L 193.914062 199.523438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 200.507812 199.746094 C 199.679688 199.746094 199.117188 199.40625 198.820312 198.722656 C 198.523438 198.042969 198.375 197.230469 198.375 196.292969 C 198.375 195.707031 198.429688 195.15625 198.53125 194.636719 C 198.640625 194.121094 198.851562 193.679688 199.167969 193.320312 C 199.488281 192.957031 199.933594 192.777344 200.507812 192.777344 C 200.953125 192.777344 201.316406 192.886719 201.601562 193.101562 C 201.882812 193.320312 202.097656 193.601562 202.246094 193.945312 C 202.394531 194.292969 202.496094 194.660156 202.550781 195.054688 C 202.605469 195.445312 202.632812 195.859375 202.632812 196.292969 C 202.632812 196.875 202.578125 197.421875 202.472656 197.925781 C 202.367188 198.433594 202.15625 198.863281 201.84375 199.214844 C 201.53125 199.570312 201.085938 199.746094 200.507812 199.746094 Z M 200.507812 199.480469 C 200.882812 199.480469 201.164062 199.289062 201.347656 198.90625 C 201.535156 198.519531 201.648438 198.09375 201.691406 197.625 C 201.734375 197.15625 201.753906 196.65625 201.753906 196.128906 C 201.753906 195.621094 201.734375 195.15625 201.691406 194.726562 C 201.648438 194.296875 201.535156 193.910156 201.351562 193.5625 C 201.167969 193.214844 200.886719 193.042969 200.507812 193.042969 C 200.125 193.042969 199.839844 193.214844 199.65625 193.566406 C 199.476562 193.914062 199.359375 194.304688 199.316406 194.730469 C 199.273438 195.15625 199.253906 195.621094 199.253906 196.128906 C 199.253906 196.503906 199.261719 196.859375 199.28125 197.195312 C 199.296875 197.527344 199.347656 197.871094 199.421875 198.226562 C 199.503906 198.578125 199.628906 198.875 199.808594 199.117188 C 199.984375 199.359375 200.21875 199.480469 200.507812 199.480469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 204.757812 196.050781 C 204.175781 196.050781 203.78125 195.8125 203.570312 195.332031 C 203.363281 194.851562 203.257812 194.28125 203.257812 193.621094 C 203.257812 193.210938 203.292969 192.820312 203.367188 192.457031 C 203.441406 192.089844 203.59375 191.78125 203.816406 191.527344 C 204.039062 191.273438 204.355469 191.148438 204.757812 191.148438 C 205.070312 191.148438 205.324219 191.222656 205.523438 191.375 C 205.722656 191.527344 205.875 191.726562 205.980469 191.96875 C 206.085938 192.214844 206.15625 192.472656 206.195312 192.75 C 206.230469 193.023438 206.25 193.316406 206.25 193.621094 C 206.25 194.03125 206.214844 194.414062 206.140625 194.769531 C 206.066406 195.125 205.917969 195.425781 205.695312 195.675781 C 205.476562 195.925781 205.164062 196.050781 204.757812 196.050781 Z M 204.757812 195.863281 C 205.023438 195.863281 205.21875 195.726562 205.347656 195.457031 C 205.476562 195.183594 205.558594 194.886719 205.589844 194.558594 C 205.621094 194.230469 205.636719 193.878906 205.636719 193.507812 C 205.636719 193.148438 205.621094 192.820312 205.589844 192.519531 C 205.558594 192.21875 205.476562 191.945312 205.347656 191.699219 C 205.21875 191.457031 205.023438 191.335938 204.757812 191.335938 C 204.488281 191.335938 204.289062 191.457031 204.160156 191.699219 C 204.03125 191.945312 203.949219 192.21875 203.921875 192.519531 C 203.886719 192.820312 203.871094 193.148438 203.871094 193.507812 C 203.871094 193.769531 203.878906 194.019531 203.894531 194.253906 C 203.90625 194.488281 203.941406 194.730469 203.996094 194.980469 C 204.050781 195.230469 204.140625 195.4375 204.265625 195.609375 C 204.390625 195.78125 204.554688 195.863281 204.757812 195.863281 "/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -248.75175 L 1628.833188 -597.527558 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -248.75175 L 2742.590661 -597.527558 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -252.188734 L 1639.967638 -252.188734 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -366.156014 L 1639.967638 -366.156014 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -480.123294 L 1639.967638 -480.123294 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.833188 -594.090574 L 1639.967638 -594.090574 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -252.188734 L 2731.456212 -252.188734 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -366.156014 L 2731.456212 -366.156014 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -480.123294 L 2731.456212 -480.123294 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2742.590661 -594.090574 L 2731.456212 -594.090574 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.676916 -594.090574 L 2332.999201 -594.090574 L 2345.422902 -594.051517 L 2407.463272 -594.051517 L 2419.847905 -594.012461 L 2444.695308 -594.012461 L 2457.079941 -593.973404 L 2469.503642 -593.973404 L 2481.888275 -593.934347 L 2494.311976 -593.895291 L 2502.399103 -593.856234 L 2513.533552 -593.817177 L 2522.714589 -593.739064 L 2522.753657 -593.739064 L 2530.332896 -593.621894 L 2530.371965 -593.621894 L 2536.622884 -593.504724 L 2541.81896 -593.387554 L 2541.858028 -593.387554 L 2546.116467 -593.192271 L 2546.155535 -593.192271 L 2549.671677 -592.957931 L 2552.601795 -592.645478 L 2555.024026 -592.254912 L 2557.016506 -591.669062 L 2557.055575 -591.669062 L 2558.696441 -590.848873 L 2560.063829 -589.560003 L 2561.196808 -587.450945 L 2561.196808 -587.372832 L 2562.095378 -583.271884 L 2562.134446 -583.193771 L 2562.134446 -583.154714 L 2562.876743 -572.570364 L 2562.876743 -572.375081 L 2562.915811 -572.140741 L 2563.501835 -537.96618 L 2563.540903 -537.302217 L 2563.540903 -536.677311 L 2564.165995 -502.190296 L 2564.165995 -501.760673 L 2564.94736 -491.09821 L 2564.94736 -490.98104 L 2565.845929 -486.841036 L 2565.884998 -486.80198 L 2567.017977 -484.692921 L 2567.017977 -484.653864 L 2568.346297 -483.404052 L 2568.385365 -483.404052 L 2570.026231 -482.544806 L 2572.018712 -481.998013 L 2572.05778 -481.998013 L 2574.440943 -481.56839 L 2577.371061 -481.255937 L 2580.926271 -481.021597 L 2585.223778 -480.826314 L 2590.419854 -480.709144 L 2596.709841 -480.591974 L 2604.328149 -480.51386 L 2604.328149 -480.474804 L 2613.509186 -480.435747 L 2613.548254 -480.435747 L 2624.643635 -480.357634 L 2624.682703 -480.357634 L 2630.777349 -480.318577 L 2643.201051 -480.279521 L 2655.585684 -480.279521 L 2668.009385 -480.240464 L 2680.394018 -480.201407 L 2717.626054 -480.201407 L 2730.049755 -480.162351 L 2742.746934 -480.162351 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<path style="fill:none;stroke-width:4.99895;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1628.676916 -593.739064 L 1633.2479 -593.700007 L 1726.034977 -592.879818 L 1749.593128 -592.489252 L 1761.977761 -592.215855 L 1774.401462 -591.903402 L 1786.786095 -591.512836 L 1799.209796 -591.083213 L 1811.594429 -590.614533 L 1824.018131 -590.028683 L 1836.402764 -589.36472 L 1848.826465 -588.583587 L 1861.211098 -587.646228 L 1873.634799 -586.591699 L 1886.058501 -585.380943 L 1898.443134 -584.01396 L 1910.866835 -582.412638 L 1923.251468 -580.576976 L 1935.675169 -578.506974 L 1948.059802 -576.202632 L 1960.483504 -573.624894 L 1972.868137 -570.812816 L 1985.291838 -567.805454 L 1997.676471 -564.60281 L 2010.100172 -561.282995 L 2022.484805 -557.885067 L 2034.908507 -554.448083 L 2047.29314 -551.011098 L 2059.716841 -547.652227 L 2072.101474 -544.293356 L 2084.525175 -541.012598 L 2096.909808 -537.770897 L 2109.33351 -534.490139 L 2121.757211 -531.248438 L 2134.141844 -527.928623 L 2146.565545 -524.569752 L 2158.950178 -521.171824 L 2171.334811 -517.73484 L 2183.758513 -514.297855 L 2196.182214 -510.938984 L 2208.566847 -507.697283 L 2220.990548 -504.572752 L 2233.375181 -501.68256 L 2245.798882 -499.026708 L 2258.183515 -496.605197 L 2270.607217 -494.457081 L 2282.99185 -492.504249 L 2295.415551 -490.824814 L 2307.800184 -489.340661 L 2320.223885 -488.090849 L 2332.608518 -486.958206 L 2345.03222 -485.98179 L 2357.455921 -485.161601 L 2369.840554 -484.458581 L 2382.225187 -483.833675 L 2394.648888 -483.325939 L 2407.033521 -482.857259 L 2419.457223 -482.466692 L 2431.841856 -482.154239 L 2444.265557 -481.841786 L 2456.689258 -481.607446 L 2469.073891 -481.412163 L 2481.497593 -481.21688 L 2493.882226 -481.060653 L 2506.305927 -480.904427 L 2691.91915 -480.201407 L 2742.746934 -480.201407 " transform="matrix(0.0999853,0,0,0.100015,0,212)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="115.513" y="10.073"/>
<use xlink:href="#glyph2-2" x="123.454044" y="10.073"/>
<use xlink:href="#glyph2-3" x="130.174236" y="10.073"/>
<use xlink:href="#glyph2-4" x="136.894427" y="10.073"/>
<use xlink:href="#glyph2-5" x="143.009691" y="10.073"/>
<use xlink:href="#glyph2-6" x="146.067323" y="10.073"/>
<use xlink:href="#glyph2-7" x="154.008368" y="10.073"/>
<use xlink:href="#glyph2-8" x="157.066" y="10.073"/>
<use xlink:href="#glyph2-9" x="163.181264" y="10.073"/>
<use xlink:href="#glyph2-10" x="169.901455" y="10.073"/>
<use xlink:href="#glyph2-8" x="174.17994" y="10.073"/>
<use xlink:href="#glyph2-11" x="180.295204" y="10.073"/>
</g>
<g style="fill:rgb(0%,0%,1.197815%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="108.763" y="213.87578"/>
<use xlink:href="#glyph3-2" x="115.483191" y="213.87578"/>
<use xlink:href="#glyph3-3" x="119.145751" y="213.87578"/>
<use xlink:href="#glyph3-4" x="125.261015" y="213.87578"/>
<use xlink:href="#glyph3-5" x="131.376279" y="213.87578"/>
<use xlink:href="#glyph3-3" x="137.491543" y="213.87578"/>
<use xlink:href="#glyph3-6" x="143.606807" y="213.87578"/>
<use xlink:href="#glyph3-7" x="149.722071" y="213.87578"/>
<use xlink:href="#glyph3-8" x="155.221409" y="213.87578"/>
<use xlink:href="#glyph3-9" x="160.720748" y="213.87578"/>
<use xlink:href="#glyph3-9" x="163.77838" y="213.87578"/>
<use xlink:href="#glyph3-10" x="166.836012" y="213.87578"/>
<use xlink:href="#glyph3-2" x="170.498571" y="213.87578"/>
<use xlink:href="#glyph3-11" x="174.16113" y="213.87578"/>
<use xlink:href="#glyph3-12" x="180.276394" y="213.87578"/>
<use xlink:href="#glyph3-13" x="186.391658" y="213.87578"/>
<use xlink:href="#glyph3-14" x="189.44929" y="213.87578"/>
<use xlink:href="#glyph3-15" x="194.948629" y="213.87578"/>
</g>
<g style="fill:rgb(0%,0%,1.197815%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="5.54102" y="186.7387"/>
<use xlink:href="#glyph4-2" x="5.54102" y="177.574126"/>
<use xlink:href="#glyph4-3" x="5.54102" y="171.457075"/>
<use xlink:href="#glyph4-4" x="5.54102" y="165.340025"/>
<use xlink:href="#glyph4-5" x="5.54102" y="159.222974"/>
<use xlink:href="#glyph4-6" x="5.54102" y="156.780555"/>
<use xlink:href="#glyph4-7" x="5.54102" y="153.722029"/>
<use xlink:href="#glyph4-8" x="5.54102" y="147.604979"/>
<use xlink:href="#glyph4-9" x="5.54102" y="141.487928"/>
<use xlink:href="#glyph4-10" x="5.54102" y="135.370877"/>
<use xlink:href="#glyph4-11" x="5.54102" y="132.312352"/>
<use xlink:href="#glyph4-8" x="5.54102" y="128.648723"/>
<use xlink:href="#glyph4-12" x="5.54102" y="122.531672"/>
<use xlink:href="#glyph4-13" x="5.54102" y="115.193412"/>
<use xlink:href="#glyph4-10" x="5.54102" y="111.529783"/>
<use xlink:href="#glyph4-14" x="5.54102" y="108.471257"/>
<use xlink:href="#glyph4-10" x="5.54102" y="105.412732"/>
<use xlink:href="#glyph4-15" x="5.54102" y="102.354207"/>
<use xlink:href="#glyph4-16" x="5.54102" y="95.015946"/>
<use xlink:href="#glyph4-2" x="5.54102" y="88.898896"/>
<use xlink:href="#glyph4-17" x="5.54102" y="82.781845"/>
<use xlink:href="#glyph4-9" x="5.54102" y="77.2809"/>
<use xlink:href="#glyph4-10" x="5.54102" y="71.16385"/>
<use xlink:href="#glyph4-11" x="5.54102" y="68.105324"/>
<use xlink:href="#glyph4-8" x="5.54102" y="64.441695"/>
<use xlink:href="#glyph4-9" x="5.54102" y="58.324644"/>
<use xlink:href="#glyph4-3" x="5.54102" y="52.207594"/>
<use xlink:href="#glyph4-13" x="5.54102" y="46.090543"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 216 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

View File

@ -1,652 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="285pt" height="212pt" viewBox="0 0 285 212" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M -6.46875 -3.546875 L -6.46875 -5.9375 L -7.296875 -5.9375 L -7.296875 -0.203125 L -6.46875 -0.203125 L -6.46875 -2.609375 L 0 -2.609375 L 0 -3.546875 Z M -6.46875 -3.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M -5.390625 -2.71875 C -5.390625 -1.234375 -4.34375 -0.359375 -2.578125 -0.359375 C -0.8125 -0.359375 0.234375 -1.234375 0.234375 -2.734375 C 0.234375 -4.203125 -0.8125 -5.09375 -2.546875 -5.09375 C -4.359375 -5.09375 -5.390625 -4.234375 -5.390625 -2.71875 Z M -4.625 -2.734375 C -4.625 -3.671875 -3.84375 -4.234375 -2.546875 -4.234375 C -1.3125 -4.234375 -0.546875 -3.65625 -0.546875 -2.734375 C -0.546875 -1.796875 -1.3125 -1.234375 -2.578125 -1.234375 C -3.84375 -1.234375 -4.625 -1.796875 -4.625 -2.734375 Z M -4.625 -2.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M -1.046875 -2.140625 L -1.046875 -1.09375 L 0 -1.09375 L 0 -2.140625 Z M -5.234375 -2.140625 L -5.234375 -1.09375 L -4.203125 -1.09375 L -4.203125 -2.140625 Z M -5.234375 -2.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 0 -0.890625 L 0 -3.703125 C 0 -5.546875 -1.375 -6.671875 -3.65625 -6.671875 C -5.90625 -6.671875 -7.296875 -5.546875 -7.296875 -3.703125 L -7.296875 -0.890625 Z M -0.8125 -1.8125 L -6.46875 -1.8125 L -6.46875 -3.546875 C -6.46875 -4.984375 -5.5 -5.734375 -3.640625 -5.734375 C -1.796875 -5.734375 -0.8125 -4.984375 -0.8125 -3.546875 Z M -0.8125 -1.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 0 -4.8125 L -5.234375 -4.8125 L -5.234375 -3.984375 L -2.265625 -3.984375 C -1.203125 -3.984375 -0.5 -3.4375 -0.5 -2.5625 C -0.5 -1.90625 -0.90625 -1.484375 -1.53125 -1.484375 L -5.234375 -1.484375 L -5.234375 -0.65625 L -1.203125 -0.65625 C -0.328125 -0.65625 0.234375 -1.296875 0.234375 -2.3125 C 0.234375 -3.09375 -0.046875 -3.578125 -0.734375 -4.0625 L 0 -4.0625 Z M 0 -4.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 0 -2.84375 L -5.234375 -4.859375 L -5.234375 -3.921875 L -0.984375 -2.4375 L -5.234375 -1.046875 L -5.234375 -0.09375 L 0 -1.9375 Z M 0 -2.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 1.828125 -3.3125 L 5.3125 -3.3125 L 5.3125 -4.140625 L 1.828125 -4.140625 L 1.828125 -6.46875 L 5.796875 -6.46875 L 5.796875 -7.296875 L 0.90625 -7.296875 L 0.90625 0 L 1.828125 0 Z M 1.828125 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 0.6875 -5.234375 L 0.6875 0 L 1.53125 0 L 1.53125 -2.71875 C 1.546875 -3.984375 2.0625 -4.546875 3.203125 -4.515625 L 3.203125 -5.359375 C 3.0625 -5.375 2.984375 -5.390625 2.890625 -5.390625 C 2.34375 -5.390625 1.9375 -5.0625 1.453125 -4.296875 L 1.453125 -5.234375 Z M 0.6875 -5.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 2.71875 -5.390625 C 1.234375 -5.390625 0.359375 -4.34375 0.359375 -2.578125 C 0.359375 -0.8125 1.234375 0.234375 2.734375 0.234375 C 4.203125 0.234375 5.09375 -0.8125 5.09375 -2.546875 C 5.09375 -4.359375 4.234375 -5.390625 2.71875 -5.390625 Z M 2.734375 -4.625 C 3.671875 -4.625 4.234375 -3.84375 4.234375 -2.546875 C 4.234375 -1.3125 3.65625 -0.546875 2.734375 -0.546875 C 1.796875 -0.546875 1.234375 -1.3125 1.234375 -2.578125 C 1.234375 -3.84375 1.796875 -4.625 2.734375 -4.625 Z M 2.734375 -4.625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 0.703125 -5.234375 L 0.703125 0 L 1.546875 0 L 1.546875 -3.296875 C 1.546875 -4.046875 2.09375 -4.65625 2.765625 -4.65625 C 3.390625 -4.65625 3.734375 -4.28125 3.734375 -3.609375 L 3.734375 0 L 4.578125 0 L 4.578125 -3.296875 C 4.578125 -4.046875 5.125 -4.65625 5.8125 -4.65625 C 6.421875 -4.65625 6.78125 -4.265625 6.78125 -3.609375 L 6.78125 0 L 7.625 0 L 7.625 -3.9375 C 7.625 -4.875 7.078125 -5.390625 6.09375 -5.390625 C 5.40625 -5.390625 4.984375 -5.1875 4.484375 -4.59375 C 4.1875 -5.15625 3.765625 -5.390625 3.078125 -5.390625 C 2.375 -5.390625 1.90625 -5.125 1.46875 -4.5 L 1.46875 -5.234375 Z M 0.703125 -5.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 2.140625 -1.046875 L 1.09375 -1.046875 L 1.09375 0 L 2.140625 0 Z M 2.140625 -5.234375 L 1.09375 -5.234375 L 1.09375 -4.203125 L 2.140625 -4.203125 Z M 2.140625 -5.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 4.8125 0 L 4.8125 -5.234375 L 3.984375 -5.234375 L 3.984375 -2.265625 C 3.984375 -1.203125 3.4375 -0.5 2.5625 -0.5 C 1.90625 -0.5 1.484375 -0.90625 1.484375 -1.53125 L 1.484375 -5.234375 L 0.65625 -5.234375 L 0.65625 -1.203125 C 0.65625 -0.328125 1.296875 0.234375 2.3125 0.234375 C 3.09375 0.234375 3.578125 -0.046875 4.0625 -0.734375 L 4.0625 0 Z M 4.8125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 2.84375 0 L 4.859375 -5.234375 L 3.921875 -5.234375 L 2.4375 -0.984375 L 1.046875 -5.234375 L 0.09375 -5.234375 L 1.9375 0 Z M 2.84375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 0.90625 0 L 4.515625 0 C 5.4375 0 6.046875 -0.171875 6.53125 -0.578125 C 7.015625 -0.984375 7.328125 -1.65625 7.328125 -2.3125 C 7.328125 -3.109375 6.90625 -3.734375 6 -4.25 C 6.78125 -4.765625 7.09375 -5.21875 7.09375 -5.90625 C 7.09375 -6.46875 6.8125 -7.046875 6.375 -7.4375 C 5.890625 -7.84375 5.328125 -8.015625 4.484375 -8.015625 L 0.90625 -8.015625 Z M 2.546875 -6.640625 L 4.34375 -6.640625 C 5.109375 -6.640625 5.515625 -6.34375 5.515625 -5.734375 C 5.515625 -5.140625 5.109375 -4.828125 4.34375 -4.828125 L 2.546875 -4.828125 Z M 2.546875 -3.453125 L 4.515625 -3.453125 C 5.328125 -3.453125 5.734375 -3.109375 5.734375 -2.40625 C 5.734375 -1.734375 5.328125 -1.375 4.515625 -1.375 L 2.546875 -1.375 Z M 2.546875 -3.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.3125 -6.03125 C 1.5 -6.03125 0.390625 -4.84375 0.390625 -2.890625 C 0.390625 -0.9375 1.5 0.25 3.328125 0.25 C 5.140625 0.25 6.265625 -0.9375 6.265625 -2.84375 C 6.265625 -4.859375 5.171875 -6.03125 3.3125 -6.03125 Z M 3.328125 -4.796875 C 4.171875 -4.796875 4.71875 -4.03125 4.71875 -2.875 C 4.71875 -1.765625 4.140625 -0.984375 3.328125 -0.984375 C 2.484375 -0.984375 1.921875 -1.75 1.921875 -2.890625 C 1.921875 -4.03125 2.484375 -4.796875 3.328125 -4.796875 Z M 3.328125 -4.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 4.453125 0 L 6 0 L 6 -8.015625 L 4.453125 -8.015625 L 4.453125 -5.171875 C 4.0625 -5.765625 3.5625 -6.03125 2.8125 -6.03125 C 1.390625 -6.03125 0.3125 -4.671875 0.3125 -2.875 C 0.3125 -2.078125 0.5625 -1.265625 0.953125 -0.6875 C 1.359375 -0.109375 2.09375 0.25 2.8125 0.25 C 3.5625 0.25 4.0625 -0.015625 4.453125 -0.609375 Z M 3.15625 -4.75 C 3.9375 -4.75 4.453125 -4 4.453125 -2.859375 C 4.453125 -1.78125 3.921875 -1.03125 3.15625 -1.03125 C 2.390625 -1.03125 1.859375 -1.796875 1.859375 -2.875 C 1.859375 -4 2.390625 -4.75 3.15625 -4.75 Z M 3.15625 -4.75 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 5.765625 -2.484375 C 5.78125 -2.625 5.78125 -2.671875 5.78125 -2.75 C 5.78125 -3.34375 5.6875 -3.890625 5.546875 -4.3125 C 5.140625 -5.390625 4.1875 -6.03125 2.984375 -6.03125 C 1.28125 -6.03125 0.234375 -4.8125 0.234375 -2.8125 C 0.234375 -0.90625 1.28125 0.25 2.953125 0.25 C 4.296875 0.25 5.375 -0.5 5.703125 -1.671875 L 4.1875 -1.671875 C 4 -1.203125 3.578125 -0.921875 3.015625 -0.921875 C 2.578125 -0.921875 2.21875 -1.109375 2 -1.4375 C 1.859375 -1.65625 1.796875 -1.921875 1.78125 -2.484375 Z M 1.796875 -3.515625 C 1.90625 -4.421875 2.28125 -4.859375 2.96875 -4.859375 C 3.671875 -4.859375 4.09375 -4.390625 4.171875 -3.515625 Z M 1.796875 -3.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 0.84375 0 L 3.984375 0 C 5.203125 0 5.96875 -0.28125 6.515625 -0.9375 C 7.15625 -1.6875 7.484375 -2.765625 7.484375 -4.015625 C 7.484375 -5.265625 7.15625 -6.34375 6.515625 -7.09375 C 5.96875 -7.75 5.21875 -8.015625 3.984375 -8.015625 L 0.84375 -8.015625 Z M 2.5 -1.375 L 2.5 -6.640625 L 3.984375 -6.640625 C 5.21875 -6.640625 5.84375 -5.78125 5.84375 -4 C 5.84375 -2.25 5.21875 -1.375 3.984375 -1.375 Z M 2.5 -1.375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 2.28125 -5.9375 L 0.734375 -5.9375 L 0.734375 0 L 2.28125 0 Z M 2.28125 -8.015625 L 0.734375 -8.015625 L 0.734375 -6.640625 L 2.28125 -6.640625 Z M 2.28125 -8.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 5.765625 -0.1875 C 5.5 -0.4375 5.40625 -0.609375 5.40625 -0.90625 L 5.40625 -4.21875 C 5.40625 -5.421875 4.59375 -6.03125 2.984375 -6.03125 C 1.375 -6.03125 0.53125 -5.359375 0.4375 -3.984375 L 1.921875 -3.984375 C 2 -4.59375 2.25 -4.796875 3.015625 -4.796875 C 3.609375 -4.796875 3.90625 -4.59375 3.90625 -4.203125 C 3.90625 -4 3.8125 -3.84375 3.640625 -3.734375 C 3.4375 -3.625 3.4375 -3.625 2.671875 -3.515625 L 2.0625 -3.40625 C 0.875 -3.203125 0.3125 -2.59375 0.3125 -1.53125 C 0.3125 -0.46875 1.015625 0.25 2.109375 0.25 C 2.765625 0.25 3.359375 -0.015625 3.921875 -0.59375 C 3.921875 -0.28125 3.953125 -0.171875 4.09375 0 L 5.765625 0 Z M 3.90625 -2.390625 C 3.90625 -1.5 3.46875 -0.984375 2.6875 -0.984375 C 2.171875 -0.984375 1.84375 -1.265625 1.84375 -1.703125 C 1.84375 -2.171875 2.09375 -2.390625 2.734375 -2.515625 L 3.25 -2.625 C 3.65625 -2.6875 3.734375 -2.71875 3.90625 -2.8125 Z M 3.90625 -2.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-9">
<path style="stroke:none;" d="M 4.40625 -5.9375 L 4.40625 -5.03125 C 3.96875 -5.71875 3.5 -6.03125 2.875 -6.03125 C 2.34375 -6.03125 1.765625 -5.78125 1.359375 -5.34375 C 0.765625 -4.734375 0.453125 -3.875 0.453125 -2.828125 C 0.453125 -1 1.421875 0.25 2.84375 0.25 C 3.46875 0.25 3.859375 0.046875 4.40625 -0.609375 L 4.40625 0.203125 C 4.40625 0.90625 3.890625 1.40625 3.171875 1.40625 C 2.625 1.40625 2.28125 1.171875 2.15625 0.71875 L 0.578125 0.71875 C 0.578125 1.171875 0.75 1.5 1.15625 1.828125 C 1.625 2.21875 2.28125 2.390625 3.109375 2.390625 C 4.828125 2.390625 5.859375 1.578125 5.859375 0.203125 L 5.859375 -5.9375 Z M 3.15625 -4.75 C 3.890625 -4.75 4.421875 -3.953125 4.421875 -2.84375 C 4.421875 -1.765625 3.90625 -1.03125 3.140625 -1.03125 C 2.46875 -1.03125 1.984375 -1.765625 1.984375 -2.84375 C 1.984375 -3.96875 2.46875 -4.75 3.15625 -4.75 Z M 3.15625 -4.75 "/>
</symbol>
<symbol overflow="visible" id="glyph2-10">
<path style="stroke:none;" d="M 0.6875 -5.9375 L 0.6875 0 L 2.234375 0 L 2.234375 -3.15625 C 2.234375 -4.0625 2.6875 -4.515625 3.59375 -4.515625 C 3.75 -4.515625 3.859375 -4.5 4.0625 -4.46875 L 4.0625 -6.03125 C 3.984375 -6.03125 3.953125 -6.03125 3.890625 -6.03125 C 3.171875 -6.03125 2.578125 -5.578125 2.234375 -4.78125 L 2.234375 -5.9375 Z M 0.6875 -5.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-11">
<path style="stroke:none;" d="M 0.65625 -5.9375 L 0.65625 0 L 2.203125 0 L 2.203125 -3.5625 C 2.203125 -4.296875 2.59375 -4.734375 3.25 -4.734375 C 3.765625 -4.734375 4.09375 -4.4375 4.09375 -3.953125 L 4.09375 0 L 5.625 0 L 5.625 -3.5625 C 5.625 -4.296875 6.03125 -4.734375 6.6875 -4.734375 C 7.203125 -4.734375 7.53125 -4.4375 7.53125 -3.953125 L 7.53125 0 L 9.0625 0 L 9.0625 -4.203125 C 9.0625 -5.359375 8.359375 -6.03125 7.171875 -6.03125 C 6.40625 -6.03125 5.890625 -5.78125 5.4375 -5.15625 C 5.140625 -5.71875 4.546875 -6.03125 3.8125 -6.03125 C 3.140625 -6.03125 2.6875 -5.8125 2.1875 -5.203125 L 2.1875 -5.9375 Z M 0.65625 -5.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 2.015625 -3.65625 L 5.84375 -3.65625 L 5.84375 -4.546875 L 2.015625 -4.546875 L 2.015625 -7.109375 L 6.375 -7.109375 L 6.375 -8.015625 L 0.984375 -8.015625 L 0.984375 0 L 2.015625 0 Z M 2.015625 -3.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 0.765625 -5.765625 L 0.765625 0 L 1.6875 0 L 1.6875 -2.984375 C 1.6875 -4.375 2.265625 -5 3.53125 -4.96875 L 3.53125 -5.890625 C 3.375 -5.921875 3.28125 -5.921875 3.171875 -5.921875 C 2.578125 -5.921875 2.140625 -5.578125 1.609375 -4.71875 L 1.609375 -5.765625 Z M 0.765625 -5.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 5.640625 -2.578125 C 5.640625 -3.453125 5.578125 -3.984375 5.40625 -4.40625 C 5.03125 -5.359375 4.15625 -5.921875 3.078125 -5.921875 C 1.46875 -5.921875 0.4375 -4.703125 0.4375 -2.8125 C 0.4375 -0.90625 1.4375 0.25 3.0625 0.25 C 4.375 0.25 5.296875 -0.5 5.515625 -1.75 L 4.59375 -1.75 C 4.34375 -0.984375 3.828125 -0.59375 3.09375 -0.59375 C 2.515625 -0.59375 2.015625 -0.859375 1.703125 -1.34375 C 1.484375 -1.671875 1.40625 -2 1.390625 -2.578125 Z M 1.421875 -3.328125 C 1.5 -4.390625 2.140625 -5.078125 3.0625 -5.078125 C 4 -5.078125 4.65625 -4.359375 4.65625 -3.328125 Z M 1.421875 -3.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 5.4375 2.390625 L 5.4375 -5.765625 L 4.625 -5.765625 L 4.625 -5 C 4.203125 -5.59375 3.546875 -5.921875 2.796875 -5.921875 C 1.28125 -5.921875 0.28125 -4.6875 0.28125 -2.765625 C 0.28125 -0.90625 1.21875 0.25 2.75 0.25 C 3.546875 0.25 4.109375 -0.03125 4.53125 -0.65625 L 4.53125 2.390625 Z M 2.921875 -5.078125 C 3.90625 -5.078125 4.53125 -4.203125 4.53125 -2.8125 C 4.53125 -1.484375 3.890625 -0.609375 2.921875 -0.609375 C 1.90625 -0.609375 1.25 -1.5 1.25 -2.84375 C 1.25 -4.1875 1.90625 -5.078125 2.921875 -5.078125 Z M 2.921875 -5.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -5.765625 L 4.390625 -5.765625 L 4.390625 -2.5 C 4.390625 -1.3125 3.765625 -0.546875 2.8125 -0.546875 C 2.09375 -0.546875 1.625 -0.984375 1.625 -1.6875 L 1.625 -5.765625 L 0.71875 -5.765625 L 0.71875 -1.3125 C 0.71875 -0.359375 1.4375 0.25 2.546875 0.25 C 3.40625 0.25 3.9375 -0.046875 4.484375 -0.796875 L 4.484375 0 Z M 5.296875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 0.765625 -5.765625 L 0.765625 0 L 1.6875 0 L 1.6875 -3.171875 C 1.6875 -4.359375 2.3125 -5.125 3.25 -5.125 C 3.984375 -5.125 4.4375 -4.6875 4.4375 -4 L 4.4375 0 L 5.359375 0 L 5.359375 -4.359375 C 5.359375 -5.3125 4.640625 -5.921875 3.53125 -5.921875 C 2.671875 -5.921875 2.125 -5.59375 1.609375 -4.796875 L 1.609375 -5.765625 Z M 0.765625 -5.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 5.1875 -3.828125 C 5.140625 -4.390625 5.015625 -4.75 4.796875 -5.078125 C 4.40625 -5.609375 3.703125 -5.921875 2.90625 -5.921875 C 1.34375 -5.921875 0.34375 -4.703125 0.34375 -2.78125 C 0.34375 -0.921875 1.328125 0.25 2.890625 0.25 C 4.265625 0.25 5.140625 -0.578125 5.25 -1.984375 L 4.328125 -1.984375 C 4.171875 -1.0625 3.703125 -0.59375 2.921875 -0.59375 C 1.90625 -0.59375 1.296875 -1.421875 1.296875 -2.78125 C 1.296875 -4.21875 1.890625 -5.078125 2.890625 -5.078125 C 3.65625 -5.078125 4.140625 -4.625 4.25 -3.828125 Z M 5.1875 -3.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 4.265625 -5.765625 L 2.671875 -1.28125 L 1.203125 -5.765625 L 0.21875 -5.765625 L 2.171875 0.015625 L 1.8125 0.9375 C 1.65625 1.34375 1.46875 1.5 1.078125 1.5 C 0.921875 1.5 0.796875 1.46875 0.59375 1.4375 L 0.59375 2.25 C 0.78125 2.359375 0.96875 2.390625 1.203125 2.390625 C 1.5 2.390625 1.828125 2.296875 2.0625 2.125 C 2.359375 1.90625 2.515625 1.671875 2.6875 1.203125 L 5.265625 -5.765625 Z M 4.265625 -5.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 2.59375 -8.015625 C 1.5 -6.578125 0.796875 -4.578125 0.796875 -2.84375 C 0.796875 -1.109375 1.5 0.890625 2.59375 2.328125 L 3.203125 2.328125 C 2.234375 0.765625 1.6875 -1.09375 1.6875 -2.84375 C 1.6875 -4.59375 2.234375 -6.453125 3.203125 -8.015625 Z M 2.59375 -8.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 5.890625 -0.53125 C 5.78125 -0.515625 5.734375 -0.515625 5.6875 -0.515625 C 5.375 -0.515625 5.1875 -0.6875 5.1875 -0.96875 L 5.1875 -4.359375 C 5.1875 -5.375 4.4375 -5.921875 3.03125 -5.921875 C 2.171875 -5.921875 1.5 -5.6875 1.109375 -5.265625 C 0.84375 -4.96875 0.734375 -4.625 0.71875 -4.0625 L 1.640625 -4.0625 C 1.71875 -4.765625 2.140625 -5.078125 2.984375 -5.078125 C 3.828125 -5.078125 4.28125 -4.78125 4.28125 -4.21875 L 4.28125 -3.984375 C 4.265625 -3.59375 4.0625 -3.4375 3.328125 -3.34375 C 2.03125 -3.171875 1.828125 -3.140625 1.46875 -2.984375 C 0.796875 -2.703125 0.46875 -2.203125 0.46875 -1.453125 C 0.46875 -0.40625 1.1875 0.25 2.359375 0.25 C 3.078125 0.25 3.65625 0 4.3125 -0.59375 C 4.375 0 4.65625 0.25 5.265625 0.25 C 5.453125 0.25 5.578125 0.234375 5.890625 0.15625 Z M 4.28125 -1.8125 C 4.28125 -1.5 4.1875 -1.3125 3.921875 -1.0625 C 3.546875 -0.71875 3.09375 -0.546875 2.546875 -0.546875 C 1.84375 -0.546875 1.421875 -0.890625 1.421875 -1.46875 C 1.421875 -2.078125 1.8125 -2.390625 2.8125 -2.53125 C 3.78125 -2.65625 3.96875 -2.703125 4.28125 -2.84375 Z M 4.28125 -1.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 5.4375 -8.015625 L 4.53125 -8.015625 L 4.53125 -5.03125 C 4.140625 -5.625 3.53125 -5.921875 2.765625 -5.921875 C 1.265625 -5.921875 0.28125 -4.734375 0.28125 -2.890625 C 0.28125 -0.953125 1.234375 0.25 2.796875 0.25 C 3.59375 0.25 4.140625 -0.046875 4.625 -0.765625 L 4.625 0 L 5.4375 0 Z M 2.921875 -5.078125 C 3.90625 -5.078125 4.53125 -4.203125 4.53125 -2.8125 C 4.53125 -1.484375 3.890625 -0.609375 2.921875 -0.609375 C 1.90625 -0.609375 1.25 -1.5 1.25 -2.84375 C 1.25 -4.1875 1.90625 -5.078125 2.921875 -5.078125 Z M 2.921875 -5.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-13">
<path style="stroke:none;" d="M 2.515625 -8.015625 L -0.09375 0.21875 L 0.515625 0.21875 L 3.125 -8.015625 Z M 2.515625 -8.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-14">
<path style="stroke:none;" d="M 4.8125 -4.15625 C 4.8125 -5.296875 4.0625 -5.921875 2.734375 -5.921875 C 1.390625 -5.921875 0.515625 -5.234375 0.515625 -4.171875 C 0.515625 -3.265625 0.984375 -2.84375 2.34375 -2.515625 L 3.203125 -2.296875 C 3.84375 -2.140625 4.09375 -1.90625 4.09375 -1.5 C 4.09375 -0.953125 3.546875 -0.59375 2.75 -0.59375 C 2.25 -0.59375 1.84375 -0.734375 1.609375 -0.984375 C 1.46875 -1.140625 1.390625 -1.3125 1.34375 -1.71875 L 0.375 -1.71875 C 0.421875 -0.390625 1.171875 0.25 2.671875 0.25 C 4.125 0.25 5.046875 -0.46875 5.046875 -1.578125 C 5.046875 -2.4375 4.5625 -2.90625 3.421875 -3.171875 L 2.546875 -3.390625 C 1.796875 -3.5625 1.46875 -3.8125 1.46875 -4.21875 C 1.46875 -4.75 1.953125 -5.078125 2.6875 -5.078125 C 3.4375 -5.078125 3.828125 -4.765625 3.84375 -4.15625 Z M 4.8125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-15">
<path style="stroke:none;" d="M 1.015625 2.328125 C 2.125 0.890625 2.8125 -1.109375 2.8125 -2.84375 C 2.8125 -4.578125 2.125 -6.578125 1.015625 -8.015625 L 0.421875 -8.015625 C 1.390625 -6.453125 1.921875 -4.59375 1.921875 -2.84375 C 1.921875 -1.09375 1.390625 0.765625 0.421875 2.328125 Z M 1.015625 2.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 0 -5.140625 L -6.71875 -7.40625 L 0 -7.40625 L 0 -8.375 L -8.015625 -8.375 L -8.015625 -6.953125 L -1.03125 -4.625 L -8.015625 -2.25 L -8.015625 -0.828125 L 0 -0.828125 L 0 -1.796875 L -6.71875 -1.796875 L 0 -4.0625 Z M 0 -5.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M -0.53125 -5.890625 C -0.515625 -5.78125 -0.515625 -5.734375 -0.515625 -5.6875 C -0.515625 -5.375 -0.6875 -5.1875 -0.96875 -5.1875 L -4.359375 -5.1875 C -5.375 -5.1875 -5.921875 -4.4375 -5.921875 -3.03125 C -5.921875 -2.171875 -5.6875 -1.5 -5.265625 -1.109375 C -4.96875 -0.84375 -4.625 -0.734375 -4.0625 -0.71875 L -4.0625 -1.640625 C -4.765625 -1.71875 -5.078125 -2.140625 -5.078125 -2.984375 C -5.078125 -3.828125 -4.78125 -4.28125 -4.21875 -4.28125 L -3.984375 -4.28125 C -3.59375 -4.265625 -3.4375 -4.0625 -3.34375 -3.328125 C -3.171875 -2.03125 -3.140625 -1.828125 -2.984375 -1.46875 C -2.703125 -0.796875 -2.203125 -0.46875 -1.453125 -0.46875 C -0.40625 -0.46875 0.25 -1.1875 0.25 -2.359375 C 0.25 -3.078125 0 -3.65625 -0.59375 -4.3125 C 0 -4.375 0.25 -4.65625 0.25 -5.265625 C 0.25 -5.453125 0.234375 -5.578125 0.15625 -5.890625 Z M -1.8125 -4.28125 C -1.5 -4.28125 -1.3125 -4.1875 -1.0625 -3.921875 C -0.71875 -3.546875 -0.546875 -3.09375 -0.546875 -2.546875 C -0.546875 -1.84375 -0.890625 -1.421875 -1.46875 -1.421875 C -2.078125 -1.421875 -2.390625 -1.8125 -2.53125 -2.8125 C -2.65625 -3.78125 -2.703125 -3.96875 -2.84375 -4.28125 Z M -1.8125 -4.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M -5.765625 -4.4375 L -4.921875 -4.4375 C -5.625 -3.984375 -5.921875 -3.46875 -5.921875 -2.75 C -5.921875 -1.359375 -4.625 -0.390625 -2.78125 -0.390625 C -1.8125 -0.390625 -1.109375 -0.609375 -0.53125 -1.109375 C -0.015625 -1.546875 0.25 -2.09375 0.25 -2.6875 C 0.25 -3.375 -0.0625 -3.875 -0.78125 -4.359375 L -0.484375 -4.359375 C 1.0625 -4.359375 1.625 -3.921875 1.625 -2.78125 C 1.625 -2 1.3125 -1.59375 0.65625 -1.5 L 0.65625 -0.578125 C 1.734375 -0.65625 2.390625 -1.5 2.390625 -2.765625 C 2.390625 -3.609375 2.125 -4.3125 1.65625 -4.6875 C 1.125 -5.125 0.40625 -5.296875 -0.953125 -5.296875 L -5.765625 -5.296875 Z M -5.078125 -2.84375 C -5.078125 -3.8125 -4.265625 -4.359375 -2.8125 -4.359375 C -1.40625 -4.359375 -0.59375 -3.796875 -0.59375 -2.84375 C -0.59375 -1.890625 -1.421875 -1.34375 -2.84375 -1.34375 C -4.25 -1.34375 -5.078125 -1.890625 -5.078125 -2.84375 Z M -5.078125 -2.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M -5.765625 -0.765625 L 0 -0.765625 L 0 -1.6875 L -3.171875 -1.6875 C -4.359375 -1.6875 -5.125 -2.3125 -5.125 -3.25 C -5.125 -3.984375 -4.6875 -4.4375 -4 -4.4375 L 0 -4.4375 L 0 -5.359375 L -4.359375 -5.359375 C -5.3125 -5.359375 -5.921875 -4.640625 -5.921875 -3.53125 C -5.921875 -2.671875 -5.59375 -2.125 -4.796875 -1.609375 L -5.765625 -1.609375 Z M -5.765625 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-5">
<path style="stroke:none;" d="M -5.765625 -1.65625 L -5.765625 -0.734375 L 0 -0.734375 L 0 -1.65625 Z M -8.015625 -1.65625 L -8.015625 -0.71875 L -6.859375 -0.71875 L -6.859375 -1.65625 Z M -8.015625 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-6">
<path style="stroke:none;" d="M -5.765625 -2.796875 L -5.765625 -1.84375 L -7.34375 -1.84375 L -7.34375 -0.9375 L -5.765625 -0.9375 L -5.765625 -0.15625 L -5.015625 -0.15625 L -5.015625 -0.9375 L -0.65625 -0.9375 C -0.0625 -0.9375 0.25 -1.328125 0.25 -2.046875 C 0.25 -2.28125 0.234375 -2.484375 0.171875 -2.796875 L -0.59375 -2.796875 C -0.5625 -2.65625 -0.546875 -2.546875 -0.546875 -2.359375 C -0.546875 -1.953125 -0.65625 -1.84375 -1.0625 -1.84375 L -5.015625 -1.84375 L -5.015625 -2.796875 Z M -5.765625 -2.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-7">
<path style="stroke:none;" d="M 0 -5.296875 L -5.765625 -5.296875 L -5.765625 -4.390625 L -2.5 -4.390625 C -1.3125 -4.390625 -0.546875 -3.765625 -0.546875 -2.8125 C -0.546875 -2.09375 -0.984375 -1.625 -1.6875 -1.625 L -5.765625 -1.625 L -5.765625 -0.71875 L -1.3125 -0.71875 C -0.359375 -0.71875 0.25 -1.4375 0.25 -2.546875 C 0.25 -3.40625 -0.046875 -3.9375 -0.796875 -4.484375 L 0 -4.484375 Z M 0 -5.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-8">
<path style="stroke:none;" d="M -8.015625 -5.4375 L -8.015625 -4.53125 L -5.03125 -4.53125 C -5.625 -4.140625 -5.921875 -3.53125 -5.921875 -2.765625 C -5.921875 -1.265625 -4.734375 -0.28125 -2.890625 -0.28125 C -0.953125 -0.28125 0.25 -1.234375 0.25 -2.796875 C 0.25 -3.59375 -0.046875 -4.140625 -0.765625 -4.625 L 0 -4.625 L 0 -5.4375 Z M -5.078125 -2.921875 C -5.078125 -3.90625 -4.203125 -4.53125 -2.8125 -4.53125 C -1.484375 -4.53125 -0.609375 -3.890625 -0.609375 -2.921875 C -0.609375 -1.90625 -1.5 -1.25 -2.84375 -1.25 C -4.1875 -1.25 -5.078125 -1.90625 -5.078125 -2.921875 Z M -5.078125 -2.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-9">
<path style="stroke:none;" d="M -2.578125 -5.640625 C -3.453125 -5.640625 -3.984375 -5.578125 -4.40625 -5.40625 C -5.359375 -5.03125 -5.921875 -4.15625 -5.921875 -3.078125 C -5.921875 -1.46875 -4.703125 -0.4375 -2.8125 -0.4375 C -0.90625 -0.4375 0.25 -1.4375 0.25 -3.0625 C 0.25 -4.375 -0.5 -5.296875 -1.75 -5.515625 L -1.75 -4.59375 C -0.984375 -4.34375 -0.59375 -3.828125 -0.59375 -3.09375 C -0.59375 -2.515625 -0.859375 -2.015625 -1.34375 -1.703125 C -1.671875 -1.484375 -2 -1.40625 -2.578125 -1.390625 Z M -3.328125 -1.421875 C -4.390625 -1.5 -5.078125 -2.140625 -5.078125 -3.0625 C -5.078125 -4 -4.359375 -4.65625 -3.328125 -4.65625 Z M -3.328125 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-10">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-11">
<path style="stroke:none;" d="M -8.015625 -2.59375 C -6.578125 -1.5 -4.578125 -0.796875 -2.84375 -0.796875 C -1.109375 -0.796875 0.890625 -1.5 2.328125 -2.59375 L 2.328125 -3.203125 C 0.765625 -2.234375 -1.09375 -1.6875 -2.84375 -1.6875 C -4.59375 -1.6875 -6.453125 -2.234375 -8.015625 -3.203125 Z M -8.015625 -2.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-12">
<path style="stroke:none;" d="M 0 -0.875 L 0 -4.484375 C 0 -5.25 -0.203125 -5.8125 -0.671875 -6.234375 C -1.09375 -6.640625 -1.65625 -6.859375 -2.28125 -6.859375 C -3.25 -6.859375 -3.84375 -6.40625 -4.234375 -5.390625 C -4.578125 -6.125 -5.15625 -6.5 -5.984375 -6.5 C -6.578125 -6.5 -7.078125 -6.28125 -7.453125 -5.859375 C -7.84375 -5.4375 -8.015625 -4.890625 -8.015625 -4.125 L -8.015625 -0.875 Z M -4.5625 -1.890625 L -7.109375 -1.890625 L -7.109375 -3.875 C -7.109375 -4.4375 -7.046875 -4.765625 -6.828125 -5.03125 C -6.609375 -5.328125 -6.28125 -5.484375 -5.84375 -5.484375 C -5.40625 -5.484375 -5.078125 -5.328125 -4.84375 -5.03125 C -4.640625 -4.765625 -4.5625 -4.4375 -4.5625 -3.875 Z M -0.90625 -1.890625 L -3.65625 -1.890625 L -3.65625 -4.390625 C -3.65625 -5.296875 -3.140625 -5.828125 -2.28125 -5.828125 C -1.421875 -5.828125 -0.90625 -5.296875 -0.90625 -4.390625 Z M -0.90625 -1.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-13">
<path style="stroke:none;" d="M 2.328125 -1.015625 C 0.890625 -2.125 -1.109375 -2.8125 -2.84375 -2.8125 C -4.578125 -2.8125 -6.578125 -2.125 -8.015625 -1.015625 L -8.015625 -0.421875 C -6.453125 -1.390625 -4.59375 -1.921875 -2.84375 -1.921875 C -1.09375 -1.921875 0.765625 -1.390625 2.328125 -0.421875 Z M 2.328125 -1.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-14">
<path style="stroke:none;" d="M -5.765625 -2.359375 L -5.765625 -1.21875 L -4.625 -1.21875 L -4.625 -2.359375 Z M -1.140625 -1.203125 L 0 -1.203125 L 0 -1.875 L 0.203125 -1.875 C 0.953125 -1.875 1.171875 -1.734375 1.203125 -1.203125 L 1.609375 -1.203125 C 1.640625 -1.9375 1.109375 -2.359375 0.171875 -2.359375 L -1.140625 -2.359375 Z M -1.140625 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-15">
<path style="stroke:none;" d="M -3.40625 -2.03125 L -3.40625 -4.546875 C -3.40625 -5.171875 -3.59375 -5.671875 -3.96875 -6.09375 C -4.40625 -6.578125 -4.921875 -6.78125 -5.671875 -6.78125 C -7.171875 -6.78125 -8.015625 -5.890625 -8.015625 -4.3125 L -8.015625 -1 L 0 -1 L 0 -2.03125 Z M -4.296875 -2.03125 L -7.109375 -2.03125 L -7.109375 -4.15625 C -7.109375 -5.140625 -6.59375 -5.71875 -5.703125 -5.71875 C -4.828125 -5.71875 -4.296875 -5.140625 -4.296875 -4.15625 Z M -4.296875 -2.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-16">
<path style="stroke:none;" d="M -8.015625 -0.765625 L 0 -0.765625 L 0 -1.6875 L -3.171875 -1.6875 C -4.359375 -1.6875 -5.125 -2.296875 -5.125 -3.25 C -5.125 -3.546875 -5.03125 -3.84375 -4.875 -4.0625 C -4.671875 -4.328125 -4.40625 -4.4375 -4 -4.4375 L 0 -4.4375 L 0 -5.34375 L -4.359375 -5.34375 C -5.328125 -5.34375 -5.921875 -4.65625 -5.921875 -3.53125 C -5.921875 -2.71875 -5.671875 -2.21875 -4.96875 -1.6875 L -8.015625 -1.6875 Z M -8.015625 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-17">
<path style="stroke:none;" d="M -4.15625 -4.8125 C -5.296875 -4.8125 -5.921875 -4.0625 -5.921875 -2.734375 C -5.921875 -1.390625 -5.234375 -0.515625 -4.171875 -0.515625 C -3.265625 -0.515625 -2.84375 -0.984375 -2.515625 -2.34375 L -2.296875 -3.203125 C -2.140625 -3.84375 -1.90625 -4.09375 -1.5 -4.09375 C -0.953125 -4.09375 -0.59375 -3.546875 -0.59375 -2.75 C -0.59375 -2.25 -0.734375 -1.84375 -0.984375 -1.609375 C -1.140625 -1.46875 -1.3125 -1.390625 -1.71875 -1.34375 L -1.71875 -0.375 C -0.390625 -0.421875 0.25 -1.171875 0.25 -2.671875 C 0.25 -4.125 -0.46875 -5.046875 -1.578125 -5.046875 C -2.4375 -5.046875 -2.90625 -4.5625 -3.171875 -3.421875 L -3.390625 -2.546875 C -3.5625 -1.796875 -3.8125 -1.46875 -4.21875 -1.46875 C -4.75 -1.46875 -5.078125 -1.953125 -5.078125 -2.6875 C -5.078125 -3.4375 -4.765625 -3.828125 -4.15625 -3.84375 Z M -4.15625 -4.8125 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 45.886719 63.347656 L 158.421875 63.347656 L 158.421875 24.339844 L 45.886719 24.339844 Z M 45.886719 63.347656 "/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1486.602227 L 1584.100482 -1486.602227 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1876.701028 L 1584.100482 -1876.701028 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -1486.602227 L 780.351607 -1497.852824 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1486.602227 L 1584.100482 -1497.852824 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -1876.701028 L 780.351607 -1865.450431 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1876.701028 L 1584.100482 -1865.450431 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1486.602227 L 458.844245 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 619.617457 -1486.602227 L 619.617457 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -1486.602227 L 780.351607 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 941.124819 -1486.602227 L 941.124819 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1101.85897 -1486.602227 L 1101.85897 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1262.632181 -1486.602227 L 1262.632181 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1423.366332 -1486.602227 L 1423.366332 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1486.602227 L 1584.100482 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1876.701028 L 458.844245 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 619.617457 -1876.701028 L 619.617457 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -1876.701028 L 780.351607 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 941.124819 -1876.701028 L 941.124819 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1101.85897 -1876.701028 L 1101.85897 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1262.632181 -1876.701028 L 1262.632181 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1423.366332 -1876.701028 L 1423.366332 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1876.701028 L 1584.100482 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1486.602227 L 458.844245 -1876.701028 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1486.602227 L 1584.100482 -1876.701028 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1498.087211 L 470.093683 -1498.087211 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1650.517165 L 470.093683 -1650.517165 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1802.986183 L 470.093683 -1802.986183 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1498.087211 L 1572.851045 -1498.087211 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1650.517165 L 1572.851045 -1650.517165 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1802.986183 L 1572.851045 -1802.986183 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.660156 62.722656 L 23.660156 62.097656 L 26.34375 62.097656 L 26.34375 62.722656 L 23.660156 62.722656 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.847656 63.820312 C 28.003906 64.050781 28.21875 64.222656 28.484375 64.332031 C 28.753906 64.445312 29.039062 64.5 29.34375 64.5 C 29.738281 64.5 30.019531 64.332031 30.183594 63.996094 C 30.347656 63.664062 30.429688 63.285156 30.429688 62.859375 C 30.429688 62.667969 30.410156 62.476562 30.375 62.285156 C 30.339844 62.09375 30.28125 61.914062 30.199219 61.75 C 30.117188 61.585938 30.003906 61.453125 29.863281 61.355469 C 29.71875 61.253906 29.542969 61.207031 29.339844 61.207031 L 28.664062 61.207031 C 28.605469 61.207031 28.578125 61.175781 28.578125 61.113281 L 28.578125 61.023438 C 28.578125 60.96875 28.605469 60.941406 28.664062 60.941406 L 29.21875 60.902344 C 29.457031 60.902344 29.65625 60.8125 29.8125 60.632812 C 29.96875 60.457031 30.082031 60.238281 30.15625 59.984375 C 30.226562 59.726562 30.265625 59.484375 30.265625 59.253906 C 30.265625 58.929688 30.1875 58.664062 30.039062 58.457031 C 29.886719 58.25 29.65625 58.144531 29.34375 58.144531 C 29.085938 58.144531 28.839844 58.195312 28.609375 58.292969 C 28.375 58.390625 28.1875 58.535156 28.046875 58.730469 C 28.0625 58.730469 28.078125 58.726562 28.085938 58.726562 C 28.097656 58.726562 28.105469 58.726562 28.117188 58.726562 C 28.269531 58.726562 28.398438 58.78125 28.5 58.886719 C 28.601562 58.992188 28.652344 59.117188 28.652344 59.265625 C 28.652344 59.410156 28.601562 59.535156 28.5 59.640625 C 28.398438 59.746094 28.269531 59.800781 28.117188 59.800781 C 27.96875 59.800781 27.84375 59.746094 27.738281 59.640625 C 27.632812 59.535156 27.578125 59.410156 27.578125 59.265625 C 27.578125 58.972656 27.667969 58.71875 27.839844 58.507812 C 28.015625 58.292969 28.238281 58.132812 28.515625 58.019531 C 28.789062 57.910156 29.066406 57.855469 29.34375 57.855469 C 29.550781 57.855469 29.769531 57.882812 29.992188 57.945312 C 30.21875 58.003906 30.425781 58.09375 30.609375 58.207031 C 30.792969 58.324219 30.945312 58.46875 31.0625 58.648438 C 31.179688 58.824219 31.238281 59.027344 31.238281 59.253906 C 31.238281 59.535156 31.171875 59.796875 31.046875 60.039062 C 30.917969 60.28125 30.746094 60.488281 30.523438 60.664062 C 30.304688 60.835938 30.0625 60.96875 29.800781 61.054688 C 30.09375 61.109375 30.371094 61.21875 30.636719 61.386719 C 30.898438 61.550781 31.113281 61.761719 31.273438 62.015625 C 31.433594 62.273438 31.511719 62.550781 31.511719 62.847656 C 31.511719 63.222656 31.410156 63.558594 31.203125 63.859375 C 31 64.160156 30.730469 64.398438 30.398438 64.566406 C 30.066406 64.738281 29.714844 64.820312 29.34375 64.820312 C 29.027344 64.820312 28.710938 64.761719 28.390625 64.640625 C 28.074219 64.519531 27.8125 64.339844 27.613281 64.097656 C 27.410156 63.855469 27.308594 63.570312 27.308594 63.234375 C 27.308594 63.066406 27.367188 62.925781 27.476562 62.8125 C 27.589844 62.703125 27.726562 62.648438 27.894531 62.648438 C 28.003906 62.648438 28.105469 62.671875 28.195312 62.722656 C 28.285156 62.773438 28.355469 62.847656 28.40625 62.9375 C 28.457031 63.027344 28.480469 63.128906 28.480469 63.234375 C 28.480469 63.398438 28.425781 63.535156 28.308594 63.648438 C 28.195312 63.761719 28.054688 63.820312 27.894531 63.820312 L 27.847656 63.820312 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 34.414062 64.820312 C 33.585938 64.820312 33.023438 64.480469 32.726562 63.800781 C 32.429688 63.117188 32.28125 62.308594 32.28125 61.371094 C 32.28125 60.785156 32.335938 60.230469 32.441406 59.714844 C 32.546875 59.195312 32.757812 58.757812 33.078125 58.394531 C 33.394531 58.035156 33.839844 57.855469 34.414062 57.855469 C 34.859375 57.855469 35.226562 57.960938 35.507812 58.179688 C 35.792969 58.394531 36.007812 58.675781 36.15625 59.023438 C 36.304688 59.367188 36.40625 59.738281 36.460938 60.128906 C 36.515625 60.523438 36.542969 60.9375 36.542969 61.371094 C 36.542969 61.953125 36.488281 62.496094 36.382812 63.003906 C 36.273438 63.507812 36.066406 63.9375 35.753906 64.289062 C 35.441406 64.644531 34.992188 64.820312 34.414062 64.820312 Z M 34.414062 64.558594 C 34.789062 64.558594 35.070312 64.367188 35.257812 63.980469 C 35.441406 63.597656 35.554688 63.167969 35.597656 62.699219 C 35.640625 62.230469 35.664062 61.734375 35.664062 61.207031 C 35.664062 60.699219 35.640625 60.230469 35.597656 59.800781 C 35.554688 59.375 35.445312 58.988281 35.257812 58.640625 C 35.074219 58.289062 34.792969 58.117188 34.414062 58.117188 C 34.03125 58.117188 33.75 58.292969 33.566406 58.640625 C 33.382812 58.992188 33.269531 59.378906 33.226562 59.804688 C 33.183594 60.230469 33.160156 60.699219 33.160156 61.207031 C 33.160156 61.582031 33.171875 61.9375 33.1875 62.269531 C 33.207031 62.605469 33.253906 62.945312 33.332031 63.300781 C 33.410156 63.652344 33.535156 63.953125 33.714844 64.195312 C 33.894531 64.4375 34.125 64.558594 34.414062 64.558594 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 64.820312 C 38.589844 64.820312 38.027344 64.480469 37.730469 63.800781 C 37.433594 63.117188 37.285156 62.308594 37.285156 61.371094 C 37.285156 60.785156 37.335938 60.230469 37.441406 59.714844 C 37.546875 59.195312 37.757812 58.757812 38.078125 58.394531 C 38.394531 58.035156 38.84375 57.855469 39.417969 57.855469 C 39.863281 57.855469 40.226562 57.960938 40.511719 58.179688 C 40.792969 58.394531 41.007812 58.675781 41.15625 59.023438 C 41.304688 59.367188 41.40625 59.738281 41.460938 60.128906 C 41.515625 60.523438 41.542969 60.9375 41.542969 61.371094 C 41.542969 61.953125 41.492188 62.496094 41.382812 63.003906 C 41.277344 63.507812 41.066406 63.9375 40.753906 64.289062 C 40.441406 64.644531 39.996094 64.820312 39.417969 64.820312 Z M 39.417969 64.558594 C 39.792969 64.558594 40.074219 64.367188 40.257812 63.980469 C 40.445312 63.597656 40.558594 63.167969 40.601562 62.699219 C 40.644531 62.230469 40.664062 61.734375 40.664062 61.207031 C 40.664062 60.699219 40.644531 60.230469 40.601562 59.800781 C 40.558594 59.375 40.445312 58.988281 40.261719 58.640625 C 40.078125 58.289062 39.796875 58.117188 39.417969 58.117188 C 39.035156 58.117188 38.75 58.292969 38.566406 58.640625 C 38.382812 58.992188 38.269531 59.378906 38.226562 59.804688 C 38.183594 60.230469 38.164062 60.699219 38.164062 61.207031 C 38.164062 61.582031 38.171875 61.9375 38.1875 62.269531 C 38.207031 62.605469 38.253906 62.945312 38.332031 63.300781 C 38.410156 63.652344 38.539062 63.953125 38.714844 64.195312 C 38.894531 64.4375 39.128906 64.558594 39.417969 64.558594 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.660156 47.480469 L 23.660156 46.855469 L 26.34375 46.855469 L 26.34375 47.480469 L 23.660156 47.480469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.386719 49.355469 L 27.386719 49.085938 C 27.386719 49.066406 27.390625 49.046875 27.402344 49.027344 L 28.980469 47.285156 C 29.21875 47.027344 29.410156 46.8125 29.558594 46.640625 C 29.703125 46.464844 29.851562 46.265625 29.996094 46.039062 C 30.144531 45.8125 30.257812 45.582031 30.34375 45.34375 C 30.425781 45.109375 30.46875 44.855469 30.46875 44.589844 C 30.46875 44.316406 30.417969 44.054688 30.3125 43.800781 C 30.210938 43.546875 30.058594 43.34375 29.855469 43.195312 C 29.65625 43.042969 29.410156 42.96875 29.121094 42.96875 C 28.828125 42.96875 28.5625 43.054688 28.328125 43.230469 C 28.09375 43.40625 27.929688 43.636719 27.835938 43.917969 C 27.863281 43.910156 27.898438 43.90625 27.941406 43.90625 C 28.09375 43.90625 28.226562 43.957031 28.332031 44.058594 C 28.441406 44.160156 28.492188 44.292969 28.492188 44.457031 C 28.492188 44.609375 28.441406 44.738281 28.332031 44.847656 C 28.226562 44.953125 28.09375 45.007812 27.941406 45.007812 C 27.785156 45.007812 27.65625 44.953125 27.546875 44.84375 C 27.441406 44.734375 27.386719 44.605469 27.386719 44.457031 C 27.386719 44.203125 27.433594 43.964844 27.53125 43.742188 C 27.625 43.519531 27.761719 43.320312 27.941406 43.148438 C 28.121094 42.972656 28.324219 42.839844 28.550781 42.746094 C 28.777344 42.65625 29.019531 42.609375 29.273438 42.609375 C 29.65625 42.609375 30.015625 42.691406 30.347656 42.855469 C 30.683594 43.019531 30.945312 43.253906 31.140625 43.546875 C 31.332031 43.84375 31.429688 44.191406 31.429688 44.589844 C 31.429688 44.886719 31.367188 45.167969 31.238281 45.433594 C 31.109375 45.695312 30.945312 45.9375 30.746094 46.148438 C 30.546875 46.363281 30.289062 46.609375 29.972656 46.882812 C 29.660156 47.15625 29.453125 47.339844 29.355469 47.433594 L 28.207031 48.535156 L 29.179688 48.535156 C 29.660156 48.535156 30.058594 48.53125 30.382812 48.523438 C 30.703125 48.515625 30.871094 48.503906 30.890625 48.484375 C 30.972656 48.402344 31.054688 48.089844 31.136719 47.550781 L 31.429688 47.550781 L 31.144531 49.355469 L 27.386719 49.355469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 34.414062 49.578125 C 33.585938 49.578125 33.023438 49.238281 32.726562 48.554688 C 32.429688 47.875 32.28125 47.066406 32.28125 46.128906 C 32.28125 45.539062 32.335938 44.988281 32.441406 44.472656 C 32.546875 43.953125 32.757812 43.515625 33.078125 43.152344 C 33.394531 42.789062 33.839844 42.609375 34.414062 42.609375 C 34.859375 42.609375 35.226562 42.71875 35.507812 42.9375 C 35.792969 43.152344 36.007812 43.433594 36.15625 43.78125 C 36.304688 44.125 36.40625 44.496094 36.460938 44.886719 C 36.515625 45.28125 36.542969 45.691406 36.542969 46.128906 C 36.542969 46.710938 36.488281 47.253906 36.382812 47.757812 C 36.273438 48.265625 36.066406 48.695312 35.753906 49.046875 C 35.441406 49.402344 34.992188 49.578125 34.414062 49.578125 Z M 34.414062 49.316406 C 34.789062 49.316406 35.070312 49.121094 35.257812 48.738281 C 35.441406 48.351562 35.554688 47.925781 35.597656 47.457031 C 35.640625 46.988281 35.664062 46.488281 35.664062 45.964844 C 35.664062 45.453125 35.640625 44.988281 35.597656 44.558594 C 35.554688 44.132812 35.445312 43.742188 35.257812 43.394531 C 35.074219 43.046875 34.792969 42.875 34.414062 42.875 C 34.03125 42.875 33.75 43.050781 33.566406 43.398438 C 33.382812 43.746094 33.269531 44.136719 33.226562 44.5625 C 33.183594 44.988281 33.160156 45.453125 33.160156 45.964844 C 33.160156 46.339844 33.171875 46.691406 33.1875 47.027344 C 33.207031 47.359375 33.253906 47.703125 33.332031 48.058594 C 33.410156 48.410156 33.535156 48.710938 33.714844 48.953125 C 33.894531 49.195312 34.125 49.316406 34.414062 49.316406 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 49.578125 C 38.589844 49.578125 38.027344 49.238281 37.730469 48.554688 C 37.433594 47.875 37.285156 47.066406 37.285156 46.128906 C 37.285156 45.539062 37.335938 44.988281 37.441406 44.472656 C 37.546875 43.953125 37.757812 43.515625 38.078125 43.152344 C 38.394531 42.789062 38.84375 42.609375 39.417969 42.609375 C 39.863281 42.609375 40.226562 42.71875 40.511719 42.9375 C 40.792969 43.152344 41.007812 43.433594 41.15625 43.78125 C 41.304688 44.125 41.40625 44.496094 41.460938 44.886719 C 41.515625 45.28125 41.542969 45.691406 41.542969 46.128906 C 41.542969 46.710938 41.492188 47.253906 41.382812 47.757812 C 41.277344 48.265625 41.066406 48.695312 40.753906 49.046875 C 40.441406 49.402344 39.996094 49.578125 39.417969 49.578125 Z M 39.417969 49.316406 C 39.792969 49.316406 40.074219 49.121094 40.257812 48.738281 C 40.445312 48.351562 40.558594 47.925781 40.601562 47.457031 C 40.644531 46.988281 40.664062 46.488281 40.664062 45.964844 C 40.664062 45.453125 40.644531 44.988281 40.601562 44.558594 C 40.558594 44.132812 40.445312 43.742188 40.261719 43.394531 C 40.078125 43.046875 39.796875 42.875 39.417969 42.875 C 39.035156 42.875 38.75 43.050781 38.566406 43.398438 C 38.382812 43.746094 38.269531 44.136719 38.226562 44.5625 C 38.183594 44.988281 38.164062 45.453125 38.164062 45.964844 C 38.164062 46.339844 38.171875 46.691406 38.1875 47.027344 C 38.207031 47.359375 38.253906 47.703125 38.332031 48.058594 C 38.410156 48.410156 38.539062 48.710938 38.714844 48.953125 C 38.894531 49.195312 39.128906 49.316406 39.417969 49.316406 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.660156 32.238281 L 23.660156 31.609375 L 26.34375 31.609375 L 26.34375 32.238281 L 23.660156 32.238281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.820312 34.113281 L 27.820312 33.753906 C 28.664062 33.753906 29.085938 33.648438 29.085938 33.433594 L 29.085938 28.117188 C 28.738281 28.285156 28.296875 28.371094 27.761719 28.371094 L 27.761719 28.019531 C 28.589844 28.019531 29.214844 27.800781 29.636719 27.367188 L 29.777344 27.367188 C 29.800781 27.367188 29.824219 27.378906 29.84375 27.394531 C 29.867188 27.410156 29.878906 27.433594 29.878906 27.453125 L 29.878906 33.433594 C 29.878906 33.648438 30.296875 33.753906 31.144531 33.753906 L 31.144531 34.113281 L 27.820312 34.113281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 34.414062 34.335938 C 33.585938 34.335938 33.023438 33.996094 32.726562 33.3125 C 32.429688 32.632812 32.28125 31.820312 32.28125 30.882812 C 32.28125 30.296875 32.335938 29.746094 32.441406 29.226562 C 32.546875 28.710938 32.757812 28.269531 33.078125 27.910156 C 33.394531 27.546875 33.839844 27.367188 34.414062 27.367188 C 34.859375 27.367188 35.226562 27.476562 35.507812 27.691406 C 35.792969 27.910156 36.007812 28.191406 36.15625 28.535156 C 36.304688 28.882812 36.40625 29.253906 36.460938 29.644531 C 36.515625 30.035156 36.542969 30.449219 36.542969 30.882812 C 36.542969 31.464844 36.488281 32.011719 36.382812 32.515625 C 36.273438 33.023438 36.066406 33.453125 35.753906 33.804688 C 35.441406 34.160156 34.992188 34.335938 34.414062 34.335938 Z M 34.414062 34.070312 C 34.789062 34.070312 35.070312 33.878906 35.257812 33.496094 C 35.441406 33.109375 35.554688 32.683594 35.597656 32.214844 C 35.640625 31.746094 35.664062 31.246094 35.664062 30.71875 C 35.664062 30.210938 35.640625 29.742188 35.597656 29.316406 C 35.554688 28.886719 35.445312 28.5 35.257812 28.152344 C 35.074219 27.804688 34.792969 27.632812 34.414062 27.632812 C 34.03125 27.632812 33.75 27.804688 33.566406 28.15625 C 33.382812 28.503906 33.269531 28.894531 33.226562 29.320312 C 33.183594 29.746094 33.160156 30.210938 33.160156 30.71875 C 33.160156 31.09375 33.171875 31.449219 33.1875 31.785156 C 33.207031 32.117188 33.253906 32.460938 33.332031 32.816406 C 33.410156 33.167969 33.535156 33.464844 33.714844 33.710938 C 33.894531 33.949219 34.125 34.070312 34.414062 34.070312 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 34.335938 C 38.589844 34.335938 38.027344 33.996094 37.730469 33.3125 C 37.433594 32.632812 37.285156 31.820312 37.285156 30.882812 C 37.285156 30.296875 37.335938 29.746094 37.441406 29.226562 C 37.546875 28.710938 37.757812 28.269531 38.078125 27.910156 C 38.394531 27.546875 38.84375 27.367188 39.417969 27.367188 C 39.863281 27.367188 40.226562 27.476562 40.511719 27.691406 C 40.792969 27.910156 41.007812 28.191406 41.15625 28.535156 C 41.304688 28.882812 41.40625 29.253906 41.460938 29.644531 C 41.515625 30.035156 41.542969 30.449219 41.542969 30.882812 C 41.542969 31.464844 41.492188 32.011719 41.382812 32.515625 C 41.277344 33.023438 41.066406 33.453125 40.753906 33.804688 C 40.441406 34.160156 39.996094 34.335938 39.417969 34.335938 Z M 39.417969 34.070312 C 39.792969 34.070312 40.074219 33.878906 40.257812 33.496094 C 40.445312 33.109375 40.558594 32.683594 40.601562 32.214844 C 40.644531 31.746094 40.664062 31.246094 40.664062 30.71875 C 40.664062 30.210938 40.644531 29.742188 40.601562 29.316406 C 40.558594 28.886719 40.445312 28.5 40.261719 28.152344 C 40.078125 27.804688 39.796875 27.632812 39.417969 27.632812 C 39.035156 27.632812 38.75 27.804688 38.566406 28.15625 C 38.382812 28.503906 38.269531 28.894531 38.226562 29.320312 C 38.183594 29.746094 38.164062 30.210938 38.164062 30.71875 C 38.164062 31.09375 38.171875 31.449219 38.1875 31.785156 C 38.207031 32.117188 38.253906 32.460938 38.332031 32.816406 C 38.410156 33.167969 38.539062 33.464844 38.714844 33.710938 C 38.894531 33.949219 39.128906 34.070312 39.417969 34.070312 "/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="17.9211" y="60.347"/>
<use xlink:href="#glyph0-2" x="17.9211" y="54.23576"/>
<use xlink:href="#glyph0-3" x="17.9211" y="48.674631"/>
<use xlink:href="#glyph0-4" x="17.9211" y="45.894067"/>
<use xlink:href="#glyph0-5" x="17.9211" y="43.113503"/>
<use xlink:href="#glyph0-6" x="17.9211" y="35.892037"/>
</g>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="79.8348" y="20.777"/>
<use xlink:href="#glyph1-2" x="85.946694" y="20.777"/>
<use xlink:href="#glyph1-3" x="89.277727" y="20.777"/>
<use xlink:href="#glyph1-4" x="94.83945" y="20.777"/>
<use xlink:href="#glyph1-5" x="103.172033" y="20.777"/>
<use xlink:href="#glyph1-6" x="105.952895" y="20.777"/>
<use xlink:href="#glyph1-1" x="108.733757" y="20.777"/>
<use xlink:href="#glyph1-7" x="114.845651" y="20.777"/>
</g>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.727064 -1711.496959 L 1035.026374 -1711.496959 L 1045.807085 -1711.536024 L 1099.554397 -1711.536024 L 1110.296048 -1711.575088 L 1121.037698 -1711.575088 L 1131.818409 -1711.614153 L 1153.30171 -1711.692282 L 1164.04336 -1711.770411 L 1174.824071 -1711.887605 L 1185.565722 -1712.043863 L 1196.307372 -1712.239186 L 1207.088083 -1712.473574 L 1217.829734 -1712.864219 L 1228.571384 -1713.372059 L 1239.313034 -1714.114286 L 1246.226751 -1714.778383 L 1246.500175 -1714.817448 L 1246.734538 -1714.817448 L 1255.835646 -1716.02845 L 1256.382493 -1716.106579 L 1263.843058 -1717.473839 L 1264.077421 -1717.512903 L 1264.350845 -1717.591032 L 1270.44429 -1719.114551 L 1270.717714 -1719.19268 L 1270.952077 -1719.270809 L 1275.912767 -1721.028715 L 1276.186191 -1721.106844 L 1276.420554 -1721.224037 L 1280.44379 -1723.099137 L 1280.717214 -1723.21633 L 1280.951577 -1723.372589 L 1284.193603 -1725.403946 L 1284.467027 -1725.560205 L 1284.70139 -1725.755528 L 1287.318447 -1727.904079 L 1287.59187 -1728.138466 L 1287.826234 -1728.372854 L 1289.896443 -1730.638599 L 1290.130806 -1730.951115 L 1290.40423 -1731.302697 L 1292.005712 -1733.646571 L 1292.279136 -1734.115346 L 1292.55256 -1734.545056 L 1293.802497 -1737.006124 L 1294.036861 -1737.592092 L 1294.310284 -1738.25619 L 1295.247738 -1740.834452 L 1295.521161 -1741.654808 L 1295.794585 -1742.553293 L 1296.458615 -1745.287813 L 1296.732038 -1746.498814 L 1297.005462 -1747.82701 L 1297.474189 -1750.717788 L 1297.747613 -1752.553823 L 1297.981976 -1754.624245 L 1298.29446 -1757.515023 L 1298.567884 -1760.05422 L 1298.841308 -1762.163707 L 1298.99755 -1762.944999 L 1299.270974 -1763.179386 L 1299.505337 -1762.866869 L 1299.70064 -1762.085578 L 1299.935003 -1759.858898 L 1300.208427 -1757.241571 L 1300.520911 -1754.233599 L 1300.794335 -1752.045983 L 1301.028699 -1750.092755 L 1301.536486 -1747.006654 L 1301.770849 -1745.600329 L 1302.044273 -1744.272134 L 1302.747363 -1741.264162 L 1302.981726 -1740.287548 L 1303.25515 -1739.349998 L 1304.192603 -1736.381091 L 1304.739451 -1734.974766 L 1305.989388 -1732.005859 L 1306.223751 -1731.458955 L 1306.497175 -1730.951115 L 1308.098658 -1727.943143 L 1308.645505 -1727.083723 L 1310.676654 -1724.075751 L 1310.950077 -1723.72417 L 1311.184441 -1723.372589 L 1313.801497 -1720.247423 L 1314.035861 -1719.973971 L 1317.824734 -1716.184708 L 1318.059097 -1715.989385 L 1322.082333 -1712.551703 L 1322.629181 -1712.161057 L 1327.55081 -1708.567117 L 1327.824234 -1708.371794 L 1328.097658 -1708.215535 L 1334.152042 -1704.348143 L 1334.69889 -1704.035626 L 1342.159455 -1699.816653 L 1342.393818 -1699.699459 L 1342.667242 -1699.543201 L 1351.768349 -1694.933581 L 1352.041773 -1694.777323 L 1352.276136 -1694.660129 L 1357.588371 -1692.120932 L 1368.369082 -1687.276926 L 1379.110732 -1682.628242 L 1389.852382 -1678.174881 L 1400.594033 -1673.838713 L 1411.374744 -1669.541611 L 1432.858045 -1661.103663 L 1454.341345 -1652.821975 L 1465.122056 -1648.720195 L 1486.605357 -1640.516635 L 1497.386068 -1636.414855 L 1518.869369 -1628.211295 L 1529.611019 -1624.14858 L 1540.39173 -1620.0468 L 1551.133381 -1615.984085 L 1561.875031 -1611.882305 L 1572.655742 -1607.819589 L 1584.256725 -1603.405293 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.727064 -1876.701028 L 499.584396 -1876.701028 L 510.326046 -1876.661963 L 553.292648 -1876.661963 L 564.034298 -1876.622899 L 574.775949 -1876.622899 L 585.478539 -1876.583834 L 606.961839 -1876.505705 L 617.70349 -1876.388511 L 628.44514 -1876.310382 L 639.186791 -1876.154124 L 649.928441 -1875.919736 L 660.670091 -1875.646284 L 671.411742 -1875.216574 L 682.153392 -1874.66967 L 692.895043 -1873.927443 L 703.636693 -1872.989893 L 714.339283 -1871.817956 L 725.080933 -1870.450696 L 735.822584 -1868.927178 L 746.564234 -1867.247402 L 757.305885 -1865.450431 L 768.047535 -1863.575332 L 789.530836 -1859.668875 L 811.014137 -1855.684289 L 821.755787 -1853.652931 L 832.497438 -1851.660638 L 843.200027 -1849.62928 L 875.424979 -1843.535207 L 886.166629 -1841.464785 L 896.90828 -1839.433427 L 907.64993 -1837.363005 L 918.39158 -1835.331648 L 929.133231 -1833.261225 L 950.616532 -1829.042252 L 961.319122 -1826.8937 L 972.060772 -1824.66702 L 982.802422 -1822.401275 L 993.544073 -1819.979271 L 1004.285723 -1817.40101 L 1015.027374 -1814.66649 L 1025.769024 -1811.736647 L 1036.510674 -1808.533352 L 1047.252325 -1805.173799 L 1057.993975 -1801.618923 L 1068.735626 -1797.946854 L 1079.438216 -1794.15759 L 1090.218927 -1790.290198 L 1100.921516 -1786.344676 L 1111.663167 -1782.399155 L 1154.629769 -1766.304552 L 1197.59637 -1750.05369 L 1208.29896 -1745.990975 L 1229.782261 -1737.865544 L 1240.523911 -1733.763764 L 1272.748863 -1721.575619 L 1283.490513 -1717.473839 L 1294.232163 -1713.411123 L 1454.966314 -1652.431329 L 1584.256725 -1603.405293 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 45.886719 102.730469 L 158.421875 102.730469 L 158.421875 67.847656 L 45.886719 67.847656 Z M 45.886719 102.730469 "/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1092.753228 L 1584.100482 -1092.753228 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1441.599842 L 1584.100482 -1441.599842 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -1092.753228 L 780.351607 -1104.003825 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1092.753228 L 1584.100482 -1104.003825 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -1441.599842 L 780.351607 -1430.349246 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1441.599842 L 1584.100482 -1430.349246 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1092.753228 L 458.844245 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 619.617457 -1092.753228 L 619.617457 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -1092.753228 L 780.351607 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 941.124819 -1092.753228 L 941.124819 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1101.85897 -1092.753228 L 1101.85897 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1262.632181 -1092.753228 L 1262.632181 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1423.366332 -1092.753228 L 1423.366332 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1092.753228 L 1584.100482 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1441.599842 L 458.844245 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 619.617457 -1441.599842 L 619.617457 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -1441.599842 L 780.351607 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 941.124819 -1441.599842 L 941.124819 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1101.85897 -1441.599842 L 1101.85897 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1262.632181 -1441.599842 L 1262.632181 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1423.366332 -1441.599842 L 1423.366332 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1441.599842 L 1584.100482 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1092.753228 L 458.844245 -1441.599842 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1092.753228 L 1584.100482 -1441.599842 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1096.190911 L 470.093683 -1096.190911 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1181.664191 L 470.093683 -1181.664191 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1267.176535 L 470.093683 -1267.176535 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1352.68888 L 470.093683 -1352.68888 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1438.16216 L 470.093683 -1438.16216 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1096.190911 L 1572.851045 -1096.190911 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1181.664191 L 1572.851045 -1181.664191 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1267.176535 L 1572.851045 -1267.176535 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1352.68888 L 1572.851045 -1352.68888 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1438.16216 L 1572.851045 -1438.16216 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.660156 102.914062 L 23.660156 102.285156 L 26.34375 102.285156 L 26.34375 102.914062 L 23.660156 102.914062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.386719 104.789062 L 27.386719 104.519531 C 27.386719 104.5 27.390625 104.480469 27.402344 104.460938 L 28.980469 102.71875 C 29.21875 102.460938 29.410156 102.246094 29.558594 102.070312 C 29.703125 101.898438 29.851562 101.699219 29.996094 101.472656 C 30.144531 101.246094 30.257812 101.015625 30.34375 100.777344 C 30.425781 100.539062 30.46875 100.289062 30.46875 100.023438 C 30.46875 99.75 30.417969 99.488281 30.3125 99.234375 C 30.210938 98.980469 30.058594 98.777344 29.855469 98.625 C 29.65625 98.476562 29.410156 98.402344 29.121094 98.402344 C 28.828125 98.402344 28.5625 98.488281 28.328125 98.664062 C 28.09375 98.839844 27.929688 99.070312 27.835938 99.351562 C 27.863281 99.34375 27.898438 99.339844 27.941406 99.339844 C 28.09375 99.339844 28.226562 99.390625 28.332031 99.492188 C 28.441406 99.59375 28.492188 99.726562 28.492188 99.890625 C 28.492188 100.042969 28.441406 100.171875 28.332031 100.277344 C 28.226562 100.386719 28.09375 100.441406 27.941406 100.441406 C 27.785156 100.441406 27.65625 100.386719 27.546875 100.277344 C 27.441406 100.167969 27.386719 100.035156 27.386719 99.890625 C 27.386719 99.636719 27.433594 99.398438 27.53125 99.175781 C 27.625 98.953125 27.761719 98.753906 27.941406 98.578125 C 28.121094 98.40625 28.324219 98.273438 28.550781 98.179688 C 28.777344 98.089844 29.019531 98.042969 29.273438 98.042969 C 29.65625 98.042969 30.015625 98.125 30.347656 98.289062 C 30.683594 98.453125 30.945312 98.683594 31.140625 98.980469 C 31.332031 99.277344 31.429688 99.625 31.429688 100.023438 C 31.429688 100.320312 31.367188 100.601562 31.238281 100.863281 C 31.109375 101.128906 30.945312 101.367188 30.746094 101.582031 C 30.546875 101.796875 30.289062 102.042969 29.972656 102.316406 C 29.660156 102.589844 29.453125 102.773438 29.355469 102.867188 L 28.207031 103.96875 L 29.179688 103.96875 C 29.660156 103.96875 30.058594 103.964844 30.382812 103.957031 C 30.703125 103.949219 30.871094 103.933594 30.890625 103.914062 C 30.972656 103.835938 31.054688 103.523438 31.136719 102.984375 L 31.429688 102.984375 L 31.144531 104.789062 L 27.386719 104.789062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 33.640625 104.523438 C 33.640625 104.148438 33.675781 103.78125 33.742188 103.421875 C 33.808594 103.0625 33.90625 102.707031 34.03125 102.355469 C 34.160156 102.003906 34.3125 101.660156 34.492188 101.320312 C 34.671875 100.984375 34.867188 100.667969 35.085938 100.375 L 36.011719 99.085938 L 34.847656 99.085938 C 33.648438 99.085938 33.03125 99.105469 32.996094 99.140625 C 32.90625 99.246094 32.824219 99.554688 32.746094 100.070312 L 32.453125 100.070312 L 32.785156 97.945312 L 33.078125 97.945312 L 33.078125 97.972656 C 33.078125 98.097656 33.285156 98.179688 33.699219 98.214844 C 34.109375 98.246094 34.511719 98.265625 34.90625 98.265625 L 36.792969 98.265625 L 36.792969 98.527344 C 36.792969 98.535156 36.792969 98.535156 36.792969 98.539062 C 36.789062 98.546875 36.785156 98.550781 36.785156 98.558594 L 35.386719 100.515625 C 35.042969 101.023438 34.832031 101.589844 34.746094 102.207031 C 34.664062 102.828125 34.621094 103.597656 34.621094 104.523438 C 34.621094 104.65625 34.574219 104.773438 34.476562 104.867188 C 34.382812 104.964844 34.265625 105.011719 34.132812 105.011719 C 33.996094 105.011719 33.882812 104.964844 33.785156 104.867188 C 33.691406 104.773438 33.640625 104.65625 33.640625 104.523438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 105.011719 C 38.589844 105.011719 38.027344 104.671875 37.730469 103.988281 C 37.433594 103.308594 37.285156 102.496094 37.285156 101.558594 C 37.285156 100.972656 37.335938 100.421875 37.441406 99.902344 C 37.546875 99.386719 37.757812 98.945312 38.078125 98.585938 C 38.394531 98.222656 38.84375 98.042969 39.417969 98.042969 C 39.863281 98.042969 40.226562 98.152344 40.511719 98.367188 C 40.792969 98.585938 41.007812 98.867188 41.15625 99.210938 C 41.304688 99.558594 41.40625 99.925781 41.460938 100.320312 C 41.515625 100.710938 41.542969 101.125 41.542969 101.558594 C 41.542969 102.140625 41.492188 102.6875 41.382812 103.191406 C 41.277344 103.699219 41.066406 104.128906 40.753906 104.480469 C 40.441406 104.835938 39.996094 105.011719 39.417969 105.011719 Z M 39.417969 104.746094 C 39.792969 104.746094 40.074219 104.554688 40.257812 104.171875 C 40.445312 103.785156 40.558594 103.359375 40.601562 102.890625 C 40.644531 102.421875 40.664062 101.921875 40.664062 101.394531 C 40.664062 100.886719 40.644531 100.421875 40.601562 99.992188 C 40.558594 99.5625 40.445312 99.175781 40.261719 98.828125 C 40.078125 98.480469 39.796875 98.308594 39.417969 98.308594 C 39.035156 98.308594 38.75 98.480469 38.566406 98.832031 C 38.382812 99.179688 38.269531 99.570312 38.226562 99.996094 C 38.183594 100.421875 38.164062 100.886719 38.164062 101.394531 C 38.164062 101.769531 38.171875 102.125 38.1875 102.460938 C 38.207031 102.792969 38.253906 103.136719 38.332031 103.492188 C 38.410156 103.84375 38.539062 104.140625 38.714844 104.382812 C 38.894531 104.628906 39.128906 104.746094 39.417969 104.746094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.660156 94.363281 L 23.660156 93.738281 L 26.34375 93.738281 L 26.34375 94.363281 L 23.660156 94.363281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.820312 96.238281 L 27.820312 95.882812 C 28.664062 95.882812 29.085938 95.773438 29.085938 95.558594 L 29.085938 90.242188 C 28.738281 90.410156 28.296875 90.496094 27.761719 90.496094 L 27.761719 90.144531 C 28.589844 90.144531 29.214844 89.929688 29.636719 89.492188 L 29.777344 89.492188 C 29.800781 89.492188 29.824219 89.503906 29.84375 89.519531 C 29.867188 89.539062 29.878906 89.558594 29.878906 89.582031 L 29.878906 95.558594 C 29.878906 95.773438 30.296875 95.882812 31.144531 95.882812 L 31.144531 96.238281 L 27.820312 96.238281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 32.3125 94.703125 C 32.3125 94.296875 32.445312 93.9375 32.710938 93.625 C 32.976562 93.3125 33.316406 93.054688 33.734375 92.847656 L 33.359375 92.605469 C 33.128906 92.453125 32.941406 92.25 32.796875 92 C 32.652344 91.746094 32.582031 91.480469 32.582031 91.203125 C 32.582031 90.882812 32.664062 90.589844 32.835938 90.328125 C 33.007812 90.070312 33.230469 89.863281 33.511719 89.714844 C 33.792969 89.566406 34.09375 89.492188 34.414062 89.492188 C 34.714844 89.492188 35.003906 89.554688 35.28125 89.679688 C 35.558594 89.800781 35.789062 89.976562 35.96875 90.203125 C 36.148438 90.429688 36.238281 90.699219 36.238281 91.011719 C 36.238281 91.238281 36.183594 91.449219 36.082031 91.644531 C 35.972656 91.839844 35.828125 92.015625 35.640625 92.167969 C 35.453125 92.324219 35.253906 92.453125 35.042969 92.566406 L 35.621094 92.933594 C 35.890625 93.109375 36.101562 93.339844 36.269531 93.621094 C 36.429688 93.90625 36.515625 94.203125 36.515625 94.515625 C 36.515625 94.882812 36.414062 95.21875 36.21875 95.519531 C 36.019531 95.820312 35.761719 96.050781 35.4375 96.214844 C 35.117188 96.378906 34.773438 96.460938 34.414062 96.460938 C 34.066406 96.460938 33.730469 96.390625 33.40625 96.246094 C 33.078125 96.105469 32.816406 95.898438 32.613281 95.632812 C 32.410156 95.363281 32.3125 95.054688 32.3125 94.703125 Z M 32.855469 94.703125 C 32.855469 94.96875 32.929688 95.214844 33.078125 95.433594 C 33.222656 95.652344 33.417969 95.828125 33.660156 95.953125 C 33.902344 96.078125 34.152344 96.140625 34.414062 96.140625 C 34.804688 96.140625 35.160156 96.023438 35.480469 95.796875 C 35.800781 95.566406 35.960938 95.265625 35.960938 94.886719 C 35.960938 94.757812 35.9375 94.628906 35.886719 94.503906 C 35.835938 94.375 35.765625 94.257812 35.675781 94.15625 C 35.585938 94.050781 35.484375 93.96875 35.371094 93.902344 L 34.011719 93.023438 C 33.800781 93.132812 33.605469 93.273438 33.429688 93.445312 C 33.253906 93.617188 33.113281 93.808594 33.011719 94.023438 C 32.90625 94.238281 32.855469 94.464844 32.855469 94.703125 Z M 33.554688 91.609375 L 34.777344 92.402344 C 35.0625 92.238281 35.296875 92.035156 35.480469 91.804688 C 35.660156 91.566406 35.753906 91.304688 35.753906 91.011719 C 35.753906 90.785156 35.6875 90.578125 35.5625 90.386719 C 35.433594 90.199219 35.269531 90.050781 35.0625 89.945312 C 34.859375 89.839844 34.636719 89.785156 34.402344 89.785156 C 34.199219 89.785156 33.996094 89.824219 33.789062 89.902344 C 33.582031 89.980469 33.410156 90.101562 33.277344 90.257812 C 33.140625 90.417969 33.074219 90.601562 33.074219 90.8125 C 33.074219 91.128906 33.234375 91.394531 33.554688 91.609375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 96.460938 C 38.589844 96.460938 38.027344 96.121094 37.730469 95.4375 C 37.433594 94.757812 37.285156 93.949219 37.285156 93.011719 C 37.285156 92.425781 37.335938 91.871094 37.441406 91.355469 C 37.546875 90.835938 37.757812 90.398438 38.078125 90.035156 C 38.394531 89.675781 38.84375 89.492188 39.417969 89.492188 C 39.863281 89.492188 40.226562 89.601562 40.511719 89.820312 C 40.792969 90.035156 41.007812 90.316406 41.15625 90.664062 C 41.304688 91.007812 41.40625 91.378906 41.460938 91.769531 C 41.515625 92.164062 41.542969 92.578125 41.542969 93.011719 C 41.542969 93.59375 41.492188 94.136719 41.382812 94.640625 C 41.277344 95.148438 41.066406 95.578125 40.753906 95.933594 C 40.441406 96.285156 39.996094 96.460938 39.417969 96.460938 Z M 39.417969 96.199219 C 39.792969 96.199219 40.074219 96.007812 40.257812 95.621094 C 40.445312 95.234375 40.558594 94.808594 40.601562 94.339844 C 40.644531 93.871094 40.664062 93.371094 40.664062 92.847656 C 40.664062 92.339844 40.644531 91.871094 40.601562 91.441406 C 40.558594 91.015625 40.445312 90.628906 40.261719 90.277344 C 40.078125 89.933594 39.796875 89.757812 39.417969 89.757812 C 39.035156 89.757812 38.75 89.933594 38.566406 90.28125 C 38.382812 90.632812 38.269531 91.019531 38.226562 91.445312 C 38.183594 91.871094 38.164062 92.339844 38.164062 92.847656 C 38.164062 93.222656 38.171875 93.574219 38.1875 93.910156 C 38.207031 94.242188 38.253906 94.585938 38.332031 94.941406 C 38.410156 95.296875 38.539062 95.59375 38.714844 95.835938 C 38.894531 96.078125 39.128906 96.199219 39.417969 96.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 28.660156 85.8125 L 28.660156 85.1875 L 31.34375 85.1875 L 31.34375 85.8125 L 28.660156 85.8125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 33.027344 87.261719 C 33.210938 87.480469 33.53125 87.589844 33.988281 87.589844 C 34.246094 87.589844 34.484375 87.503906 34.707031 87.328125 C 34.929688 87.15625 35.101562 86.941406 35.222656 86.6875 C 35.367188 86.398438 35.460938 86.09375 35.5 85.769531 C 35.539062 85.441406 35.558594 85.039062 35.558594 84.558594 C 35.441406 84.835938 35.273438 85.058594 35.058594 85.230469 C 34.84375 85.40625 34.597656 85.492188 34.316406 85.492188 C 33.925781 85.492188 33.574219 85.386719 33.265625 85.175781 C 32.957031 84.964844 32.722656 84.683594 32.558594 84.335938 C 32.394531 83.984375 32.3125 83.613281 32.3125 83.222656 C 32.3125 82.816406 32.402344 82.441406 32.585938 82.089844 C 32.769531 81.742188 33.027344 81.460938 33.351562 81.253906 C 33.675781 81.046875 34.046875 80.945312 34.460938 80.945312 C 34.871094 80.945312 35.214844 81.054688 35.492188 81.277344 C 35.765625 81.5 35.976562 81.789062 36.121094 82.140625 C 36.265625 82.492188 36.367188 82.863281 36.425781 83.257812 C 36.484375 83.648438 36.515625 84.035156 36.515625 84.414062 C 36.515625 84.9375 36.417969 85.46875 36.226562 86.011719 C 36.035156 86.550781 35.75 87.003906 35.367188 87.367188 C 34.988281 87.730469 34.527344 87.910156 33.988281 87.910156 C 33.589844 87.910156 33.253906 87.820312 32.976562 87.632812 C 32.703125 87.445312 32.5625 87.160156 32.5625 86.78125 C 32.5625 86.640625 32.609375 86.523438 32.703125 86.429688 C 32.796875 86.335938 32.914062 86.289062 33.050781 86.289062 C 33.1875 86.289062 33.300781 86.335938 33.394531 86.429688 C 33.488281 86.523438 33.535156 86.640625 33.535156 86.78125 C 33.535156 86.910156 33.488281 87.023438 33.394531 87.117188 C 33.296875 87.214844 33.183594 87.261719 33.050781 87.261719 Z M 34.355469 85.226562 C 34.632812 85.226562 34.859375 85.132812 35.035156 84.945312 C 35.214844 84.757812 35.339844 84.527344 35.421875 84.253906 C 35.5 83.976562 35.539062 83.703125 35.539062 83.429688 L 35.539062 83.195312 C 35.539062 82.6875 35.464844 82.234375 35.320312 81.835938 C 35.167969 81.4375 34.882812 81.238281 34.460938 81.238281 C 34.195312 81.238281 33.980469 81.296875 33.816406 81.414062 C 33.648438 81.53125 33.527344 81.6875 33.445312 81.878906 C 33.363281 82.074219 33.316406 82.28125 33.292969 82.5 C 33.273438 82.722656 33.261719 82.960938 33.261719 83.222656 C 33.261719 83.605469 33.28125 83.933594 33.316406 84.203125 C 33.351562 84.472656 33.453125 84.710938 33.613281 84.917969 C 33.777344 85.125 34.023438 85.226562 34.355469 85.226562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 87.910156 C 38.589844 87.910156 38.027344 87.570312 37.730469 86.890625 C 37.433594 86.207031 37.285156 85.398438 37.285156 84.460938 C 37.285156 83.875 37.335938 83.324219 37.441406 82.804688 C 37.546875 82.285156 37.757812 81.847656 38.078125 81.488281 C 38.394531 81.125 38.84375 80.945312 39.417969 80.945312 C 39.863281 80.945312 40.226562 81.054688 40.511719 81.269531 C 40.792969 81.488281 41.007812 81.769531 41.15625 82.113281 C 41.304688 82.460938 41.40625 82.828125 41.460938 83.222656 C 41.515625 83.613281 41.542969 84.027344 41.542969 84.460938 C 41.542969 85.042969 41.492188 85.585938 41.382812 86.09375 C 41.277344 86.597656 41.066406 87.027344 40.753906 87.382812 C 40.441406 87.734375 39.996094 87.910156 39.417969 87.910156 Z M 39.417969 87.648438 C 39.792969 87.648438 40.074219 87.457031 40.257812 87.070312 C 40.445312 86.6875 40.558594 86.261719 40.601562 85.789062 C 40.644531 85.320312 40.664062 84.824219 40.664062 84.296875 C 40.664062 83.789062 40.644531 83.320312 40.601562 82.894531 C 40.558594 82.464844 40.445312 82.078125 40.261719 81.730469 C 40.078125 81.382812 39.796875 81.207031 39.417969 81.207031 C 39.035156 81.207031 38.75 81.382812 38.566406 81.734375 C 38.382812 82.082031 38.269531 82.46875 38.226562 82.894531 C 38.183594 83.320312 38.164062 83.789062 38.164062 84.296875 C 38.164062 84.671875 38.171875 85.027344 38.1875 85.359375 C 38.207031 85.695312 38.253906 86.039062 38.332031 86.390625 C 38.410156 86.746094 38.539062 87.042969 38.714844 87.285156 C 38.894531 87.527344 39.128906 87.648438 39.417969 87.648438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 79.363281 C 38.589844 79.363281 38.027344 79.023438 37.730469 78.339844 C 37.433594 77.660156 37.285156 76.847656 37.285156 75.910156 C 37.285156 75.324219 37.335938 74.773438 37.441406 74.253906 C 37.546875 73.738281 37.757812 73.296875 38.078125 72.9375 C 38.394531 72.574219 38.84375 72.394531 39.417969 72.394531 C 39.863281 72.394531 40.226562 72.503906 40.511719 72.71875 C 40.792969 72.9375 41.007812 73.21875 41.15625 73.5625 C 41.304688 73.910156 41.40625 74.277344 41.460938 74.671875 C 41.515625 75.0625 41.542969 75.476562 41.542969 75.910156 C 41.542969 76.492188 41.492188 77.035156 41.382812 77.542969 C 41.277344 78.050781 41.066406 78.480469 40.753906 78.832031 C 40.441406 79.1875 39.996094 79.363281 39.417969 79.363281 Z M 39.417969 79.101562 C 39.792969 79.101562 40.074219 78.90625 40.257812 78.523438 C 40.445312 78.136719 40.558594 77.710938 40.601562 77.242188 C 40.644531 76.773438 40.664062 76.273438 40.664062 75.746094 C 40.664062 75.238281 40.644531 74.769531 40.601562 74.34375 C 40.558594 73.914062 40.445312 73.527344 40.261719 73.179688 C 40.078125 72.832031 39.796875 72.660156 39.417969 72.660156 C 39.035156 72.660156 38.75 72.835938 38.566406 73.183594 C 38.382812 73.53125 38.269531 73.921875 38.226562 74.347656 C 38.183594 74.773438 38.164062 75.238281 38.164062 75.746094 C 38.164062 76.121094 38.171875 76.476562 38.1875 76.8125 C 38.207031 77.144531 38.253906 77.488281 38.332031 77.84375 C 38.410156 78.195312 38.539062 78.492188 38.714844 78.734375 C 38.894531 78.980469 39.128906 79.101562 39.417969 79.101562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 33.027344 70.164062 C 33.210938 70.382812 33.53125 70.492188 33.988281 70.492188 C 34.246094 70.492188 34.484375 70.40625 34.707031 70.230469 C 34.929688 70.058594 35.101562 69.84375 35.222656 69.589844 C 35.367188 69.300781 35.460938 68.992188 35.5 68.667969 C 35.539062 68.34375 35.558594 67.941406 35.558594 67.460938 C 35.441406 67.734375 35.273438 67.960938 35.058594 68.132812 C 34.84375 68.308594 34.597656 68.394531 34.316406 68.394531 C 33.925781 68.394531 33.574219 68.289062 33.265625 68.078125 C 32.957031 67.867188 32.722656 67.585938 32.558594 67.234375 C 32.394531 66.886719 32.3125 66.515625 32.3125 66.125 C 32.3125 65.71875 32.402344 65.339844 32.585938 64.992188 C 32.769531 64.640625 33.027344 64.363281 33.351562 64.15625 C 33.675781 63.949219 34.046875 63.847656 34.460938 63.847656 C 34.871094 63.847656 35.214844 63.957031 35.492188 64.179688 C 35.765625 64.402344 35.976562 64.691406 36.121094 65.039062 C 36.265625 65.394531 36.367188 65.765625 36.425781 66.15625 C 36.484375 66.550781 36.515625 66.9375 36.515625 67.316406 C 36.515625 67.839844 36.417969 68.371094 36.226562 68.910156 C 36.035156 69.453125 35.75 69.90625 35.367188 70.269531 C 34.988281 70.632812 34.527344 70.8125 33.988281 70.8125 C 33.589844 70.8125 33.253906 70.71875 32.976562 70.53125 C 32.703125 70.34375 32.5625 70.0625 32.5625 69.683594 C 32.5625 69.542969 32.609375 69.425781 32.703125 69.332031 C 32.796875 69.238281 32.914062 69.191406 33.050781 69.191406 C 33.1875 69.191406 33.300781 69.238281 33.394531 69.332031 C 33.488281 69.425781 33.535156 69.542969 33.535156 69.683594 C 33.535156 69.8125 33.488281 69.925781 33.394531 70.019531 C 33.296875 70.113281 33.183594 70.164062 33.050781 70.164062 Z M 34.355469 68.128906 C 34.632812 68.128906 34.859375 68.035156 35.035156 67.847656 C 35.214844 67.660156 35.339844 67.429688 35.421875 67.152344 C 35.5 66.878906 35.539062 66.605469 35.539062 66.332031 L 35.539062 66.097656 C 35.539062 65.589844 35.464844 65.136719 35.320312 64.738281 C 35.167969 64.339844 34.882812 64.140625 34.460938 64.140625 C 34.195312 64.140625 33.980469 64.199219 33.816406 64.316406 C 33.648438 64.433594 33.527344 64.585938 33.445312 64.78125 C 33.363281 64.972656 33.316406 65.179688 33.292969 65.402344 C 33.273438 65.621094 33.261719 65.863281 33.261719 66.125 C 33.261719 66.507812 33.28125 66.835938 33.316406 67.105469 C 33.351562 67.375 33.453125 67.613281 33.613281 67.820312 C 33.777344 68.027344 34.023438 68.128906 34.355469 68.128906 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 70.8125 C 38.589844 70.8125 38.027344 70.472656 37.730469 69.789062 C 37.433594 69.109375 37.285156 68.300781 37.285156 67.363281 C 37.285156 66.777344 37.335938 66.222656 37.441406 65.707031 C 37.546875 65.1875 37.757812 64.75 38.078125 64.386719 C 38.394531 64.027344 38.84375 63.847656 39.417969 63.847656 C 39.863281 63.847656 40.226562 63.953125 40.511719 64.171875 C 40.792969 64.386719 41.007812 64.667969 41.15625 65.015625 C 41.304688 65.359375 41.40625 65.730469 41.460938 66.121094 C 41.515625 66.515625 41.542969 66.929688 41.542969 67.363281 C 41.542969 67.945312 41.492188 68.488281 41.382812 68.992188 C 41.277344 69.5 41.066406 69.929688 40.753906 70.285156 C 40.441406 70.636719 39.996094 70.8125 39.417969 70.8125 Z M 39.417969 70.550781 C 39.792969 70.550781 40.074219 70.359375 40.257812 69.972656 C 40.445312 69.589844 40.558594 69.160156 40.601562 68.691406 C 40.644531 68.222656 40.664062 67.726562 40.664062 67.199219 C 40.664062 66.691406 40.644531 66.222656 40.601562 65.796875 C 40.558594 65.367188 40.445312 64.980469 40.261719 64.632812 C 40.078125 64.28125 39.796875 64.109375 39.417969 64.109375 C 39.035156 64.109375 38.75 64.285156 38.566406 64.632812 C 38.382812 64.984375 38.269531 65.371094 38.226562 65.796875 C 38.183594 66.222656 38.164062 66.691406 38.164062 67.199219 C 38.164062 67.574219 38.171875 67.929688 38.1875 68.261719 C 38.207031 68.597656 38.253906 68.9375 38.332031 69.292969 C 38.410156 69.644531 38.539062 69.945312 38.714844 70.1875 C 38.894531 70.429688 39.128906 70.550781 39.417969 70.550781 "/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="17.9211" y="101.793"/>
<use xlink:href="#glyph0-2" x="17.9211" y="95.68176"/>
<use xlink:href="#glyph0-3" x="17.9211" y="90.120631"/>
<use xlink:href="#glyph0-4" x="17.9211" y="87.340067"/>
<use xlink:href="#glyph0-5" x="17.9211" y="84.559503"/>
<use xlink:href="#glyph0-6" x="17.9211" y="77.338037"/>
</g>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.727064 -1352.68888 L 933.664254 -1352.68888 L 1014.05086 -1352.649815 L 1056.548735 -1352.649815 L 1067.290385 -1352.610751 L 1121.037698 -1352.610751 L 1131.818409 -1352.571686 L 1142.560059 -1352.571686 L 1153.30171 -1352.532622 L 1164.04336 -1352.532622 L 1174.824071 -1352.493557 L 1185.565722 -1352.493557 L 1196.307372 -1352.454493 L 1207.088083 -1352.415428 L 1217.829734 -1352.337299 L 1228.571384 -1352.298234 L 1239.313034 -1352.181041 L 1246.226751 -1352.102911 L 1246.734538 -1352.102911 L 1255.835646 -1351.985718 L 1256.382493 -1351.985718 L 1263.843058 -1351.790395 L 1264.350845 -1351.790395 L 1270.44429 -1351.595072 L 1270.717714 -1351.595072 L 1270.952077 -1351.556007 L 1275.912767 -1351.32162 L 1276.186191 -1351.282555 L 1276.420554 -1351.282555 L 1280.44379 -1351.009103 L 1280.717214 -1350.970039 L 1280.951577 -1350.930974 L 1284.193603 -1350.540329 L 1284.467027 -1350.501264 L 1284.70139 -1350.462199 L 1287.318447 -1349.993425 L 1287.59187 -1349.95436 L 1287.826234 -1349.876231 L 1289.896443 -1349.251198 L 1290.130806 -1349.134004 L 1290.40423 -1349.055875 L 1292.005712 -1348.235519 L 1292.279136 -1348.079261 L 1292.55256 -1347.883938 L 1293.802497 -1346.79013 L 1294.036861 -1346.516678 L 1294.310284 -1346.204161 L 1295.247738 -1344.641579 L 1295.521161 -1344.094675 L 1295.794585 -1343.430577 L 1296.458615 -1341.164832 L 1296.732038 -1339.95383 L 1297.005462 -1338.508441 L 1297.474189 -1334.680113 L 1297.747613 -1331.672141 L 1297.981976 -1327.492232 L 1298.29446 -1319.874641 L 1298.567884 -1309.95224 L 1298.841308 -1295.498349 L 1298.99755 -1284.208688 L 1299.270974 -1267.489052 L 1299.505337 -1250.80848 L 1299.70064 -1239.479755 L 1299.935003 -1224.869606 L 1300.208427 -1214.790946 L 1300.520911 -1207.056161 L 1300.794335 -1202.798123 L 1301.028699 -1199.751087 L 1301.536486 -1195.883694 L 1301.770849 -1194.438305 L 1302.044273 -1193.227304 L 1302.747363 -1190.922494 L 1302.981726 -1190.258396 L 1303.25515 -1189.711492 L 1304.192603 -1188.187974 L 1304.466027 -1187.836393 L 1304.739451 -1187.562941 L 1305.989388 -1186.469133 L 1306.223751 -1186.27381 L 1306.497175 -1186.117552 L 1308.098658 -1185.297196 L 1308.372081 -1185.180002 L 1308.645505 -1185.101873 L 1310.676654 -1184.47684 L 1310.950077 -1184.398711 L 1311.184441 -1184.359646 L 1313.801497 -1183.851807 L 1314.035861 -1183.812742 L 1314.309285 -1183.773678 L 1317.55131 -1183.422096 L 1317.824734 -1183.383032 L 1318.059097 -1183.343967 L 1322.082333 -1183.070515 L 1322.355757 -1183.031451 L 1322.629181 -1183.031451 L 1327.55081 -1182.797063 L 1327.824234 -1182.757999 L 1328.097658 -1182.757999 L 1334.152042 -1182.562676 L 1334.425466 -1182.562676 L 1334.69889 -1182.523611 L 1342.159455 -1182.367353 L 1342.667242 -1182.367353 L 1351.768349 -1182.211095 L 1352.276136 -1182.211095 L 1357.588371 -1182.17203 L 1368.369082 -1182.054836 L 1379.110732 -1182.015772 L 1389.852382 -1181.937643 L 1400.594033 -1181.898578 L 1411.374744 -1181.859514 L 1422.116394 -1181.859514 L 1443.599695 -1181.781384 L 1454.341345 -1181.781384 L 1465.122056 -1181.74232 L 1497.386068 -1181.74232 L 1508.127719 -1181.703255 L 1584.256725 -1181.703255 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.727064 -1183.10958 L 467.359445 -1183.265838 L 478.101095 -1183.53929 L 488.842745 -1183.851807 L 499.584396 -1184.242452 L 510.326046 -1184.672163 L 521.067697 -1185.140937 L 531.809347 -1185.726906 L 542.550997 -1186.391004 L 553.292648 -1187.172295 L 564.034298 -1188.109845 L 574.775949 -1189.164588 L 585.478539 -1190.414654 L 596.220189 -1191.899108 L 606.961839 -1193.578885 L 617.70349 -1195.571178 L 628.44514 -1197.875987 L 639.186791 -1200.532378 L 649.928441 -1203.618479 L 660.670091 -1207.095226 L 671.411742 -1211.040748 L 682.153392 -1215.41598 L 692.895043 -1220.103728 L 703.636693 -1224.947735 L 714.339283 -1229.791741 L 725.080933 -1234.440425 L 735.822584 -1238.698464 L 746.564234 -1242.526791 L 757.305885 -1245.84728 L 768.047535 -1248.698994 L 778.789186 -1251.042868 L 789.530836 -1253.035161 L 800.272486 -1254.636808 L 811.014137 -1255.925939 L 821.755787 -1256.902553 L 832.497438 -1257.683845 L 843.200027 -1258.191684 L 853.941678 -1258.465136 L 864.683328 -1258.543265 L 875.424979 -1258.426072 L 886.166629 -1258.113555 L 896.90828 -1257.566651 L 907.64993 -1256.746295 L 918.39158 -1255.691552 L 929.133231 -1254.363356 L 939.874881 -1252.722644 L 950.616532 -1250.691287 L 961.319122 -1248.230219 L 972.060772 -1245.33944 L 982.802422 -1241.901758 L 993.544073 -1237.995301 L 1004.285723 -1233.659134 L 1015.027374 -1228.971385 L 1036.510674 -1219.283372 L 1047.252325 -1214.634688 L 1057.993975 -1210.337585 L 1068.735626 -1206.470193 L 1079.438216 -1203.032511 L 1090.218927 -1200.024539 L 1100.921516 -1197.446277 L 1111.663167 -1195.180532 L 1122.404817 -1193.266368 L 1133.146468 -1191.625656 L 1143.888118 -1190.219332 L 1154.629769 -1188.969265 L 1165.371419 -1187.953587 L 1176.113069 -1187.055101 L 1186.85472 -1186.27381 L 1197.59637 -1185.609712 L 1208.29896 -1185.062808 L 1219.04061 -1184.554969 L 1229.782261 -1184.164323 L 1240.523911 -1183.812742 L 1251.265562 -1183.500226 L 1262.007212 -1183.226774 L 1294.232163 -1182.640805 L 1454.966314 -1181.781384 L 1584.256725 -1181.74232 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 45.886719 147.738281 L 158.421875 147.738281 L 158.421875 108.730469 L 45.886719 108.730469 Z M 45.886719 147.738281 "/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -642.651248 L 1584.100482 -642.651248 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1032.750048 L 1584.100482 -1032.750048 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -642.651248 L 780.351607 -653.901844 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -642.651248 L 1584.100482 -653.901844 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -1032.750048 L 780.351607 -1021.499452 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1032.750048 L 1584.100482 -1021.499452 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -642.651248 L 458.844245 -648.276546 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 619.617457 -642.651248 L 619.617457 -648.276546 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -642.651248 L 780.351607 -648.276546 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 941.124819 -642.651248 L 941.124819 -648.276546 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1101.85897 -642.651248 L 1101.85897 -648.276546 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1262.632181 -642.651248 L 1262.632181 -648.276546 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1423.366332 -642.651248 L 1423.366332 -648.276546 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -642.651248 L 1584.100482 -648.276546 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -1032.750048 L 458.844245 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 619.617457 -1032.750048 L 619.617457 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -1032.750048 L 780.351607 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 941.124819 -1032.750048 L 941.124819 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1101.85897 -1032.750048 L 1101.85897 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1262.632181 -1032.750048 L 1262.632181 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1423.366332 -1032.750048 L 1423.366332 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -1032.750048 L 1584.100482 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -642.651248 L 458.844245 -1032.750048 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -642.651248 L 1584.100482 -1032.750048 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -654.136232 L 470.093683 -654.136232 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -806.566186 L 470.093683 -806.566186 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -959.035204 L 470.093683 -959.035204 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -654.136232 L 1572.851045 -654.136232 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -806.566186 L 1572.851045 -806.566186 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -959.035204 L 1572.851045 -959.035204 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.660156 147.113281 L 23.660156 146.488281 L 26.34375 146.488281 L 26.34375 147.113281 L 23.660156 147.113281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.847656 148.210938 C 28.003906 148.441406 28.21875 148.613281 28.484375 148.722656 C 28.753906 148.835938 29.039062 148.890625 29.34375 148.890625 C 29.738281 148.890625 30.019531 148.722656 30.183594 148.390625 C 30.347656 148.054688 30.429688 147.675781 30.429688 147.25 C 30.429688 147.058594 30.410156 146.867188 30.375 146.675781 C 30.339844 146.484375 30.28125 146.304688 30.199219 146.140625 C 30.117188 145.976562 30.003906 145.84375 29.863281 145.746094 C 29.71875 145.644531 29.542969 145.597656 29.339844 145.597656 L 28.664062 145.597656 C 28.605469 145.597656 28.578125 145.566406 28.578125 145.503906 L 28.578125 145.414062 C 28.578125 145.359375 28.605469 145.332031 28.664062 145.332031 L 29.21875 145.292969 C 29.457031 145.292969 29.65625 145.203125 29.8125 145.023438 C 29.96875 144.847656 30.082031 144.628906 30.15625 144.375 C 30.226562 144.117188 30.265625 143.875 30.265625 143.644531 C 30.265625 143.320312 30.1875 143.054688 30.039062 142.847656 C 29.886719 142.640625 29.65625 142.535156 29.34375 142.535156 C 29.085938 142.535156 28.839844 142.585938 28.609375 142.683594 C 28.375 142.78125 28.1875 142.925781 28.046875 143.121094 C 28.0625 143.121094 28.078125 143.117188 28.085938 143.117188 C 28.097656 143.117188 28.105469 143.117188 28.117188 143.117188 C 28.269531 143.117188 28.398438 143.171875 28.5 143.277344 C 28.601562 143.382812 28.652344 143.507812 28.652344 143.65625 C 28.652344 143.800781 28.601562 143.925781 28.5 144.03125 C 28.398438 144.136719 28.269531 144.191406 28.117188 144.191406 C 27.96875 144.191406 27.84375 144.136719 27.738281 144.03125 C 27.632812 143.925781 27.578125 143.800781 27.578125 143.65625 C 27.578125 143.363281 27.667969 143.109375 27.839844 142.898438 C 28.015625 142.683594 28.238281 142.523438 28.515625 142.410156 C 28.789062 142.300781 29.066406 142.242188 29.34375 142.242188 C 29.550781 142.242188 29.769531 142.273438 29.992188 142.335938 C 30.21875 142.394531 30.425781 142.484375 30.609375 142.597656 C 30.792969 142.714844 30.945312 142.859375 31.0625 143.039062 C 31.179688 143.214844 31.238281 143.417969 31.238281 143.644531 C 31.238281 143.925781 31.171875 144.1875 31.046875 144.429688 C 30.917969 144.671875 30.746094 144.878906 30.523438 145.054688 C 30.304688 145.226562 30.0625 145.359375 29.800781 145.445312 C 30.09375 145.5 30.371094 145.609375 30.636719 145.777344 C 30.898438 145.941406 31.113281 146.152344 31.273438 146.40625 C 31.433594 146.664062 31.511719 146.941406 31.511719 147.238281 C 31.511719 147.613281 31.410156 147.949219 31.203125 148.25 C 31 148.550781 30.730469 148.785156 30.398438 148.957031 C 30.066406 149.128906 29.714844 149.210938 29.34375 149.210938 C 29.027344 149.210938 28.710938 149.152344 28.390625 149.03125 C 28.074219 148.910156 27.8125 148.730469 27.613281 148.488281 C 27.410156 148.246094 27.308594 147.960938 27.308594 147.625 C 27.308594 147.457031 27.367188 147.316406 27.476562 147.207031 C 27.589844 147.09375 27.726562 147.039062 27.894531 147.039062 C 28.003906 147.039062 28.105469 147.0625 28.195312 147.113281 C 28.285156 147.164062 28.355469 147.234375 28.40625 147.328125 C 28.457031 147.417969 28.480469 147.519531 28.480469 147.625 C 28.480469 147.789062 28.425781 147.925781 28.308594 148.039062 C 28.195312 148.152344 28.054688 148.210938 27.894531 148.210938 L 27.847656 148.210938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 34.414062 149.210938 C 33.585938 149.210938 33.023438 148.871094 32.726562 148.191406 C 32.429688 147.507812 32.28125 146.699219 32.28125 145.761719 C 32.28125 145.175781 32.335938 144.621094 32.441406 144.105469 C 32.546875 143.585938 32.757812 143.148438 33.078125 142.785156 C 33.394531 142.425781 33.839844 142.242188 34.414062 142.242188 C 34.859375 142.242188 35.226562 142.351562 35.507812 142.570312 C 35.792969 142.785156 36.007812 143.066406 36.15625 143.414062 C 36.304688 143.757812 36.40625 144.128906 36.460938 144.519531 C 36.515625 144.914062 36.542969 145.328125 36.542969 145.761719 C 36.542969 146.34375 36.488281 146.886719 36.382812 147.394531 C 36.273438 147.898438 36.066406 148.328125 35.753906 148.683594 C 35.441406 149.035156 34.992188 149.210938 34.414062 149.210938 Z M 34.414062 148.949219 C 34.789062 148.949219 35.070312 148.757812 35.257812 148.371094 C 35.441406 147.984375 35.554688 147.558594 35.597656 147.089844 C 35.640625 146.621094 35.664062 146.125 35.664062 145.597656 C 35.664062 145.089844 35.640625 144.621094 35.597656 144.191406 C 35.554688 143.765625 35.445312 143.378906 35.257812 143.03125 C 35.074219 142.679688 34.792969 142.507812 34.414062 142.507812 C 34.03125 142.507812 33.75 142.683594 33.566406 143.03125 C 33.382812 143.382812 33.269531 143.769531 33.226562 144.195312 C 33.183594 144.621094 33.160156 145.089844 33.160156 145.597656 C 33.160156 145.972656 33.171875 146.324219 33.1875 146.660156 C 33.207031 146.992188 33.253906 147.339844 33.332031 147.691406 C 33.410156 148.042969 33.535156 148.34375 33.714844 148.585938 C 33.894531 148.828125 34.125 148.949219 34.414062 148.949219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 149.210938 C 38.589844 149.210938 38.027344 148.871094 37.730469 148.191406 C 37.433594 147.507812 37.285156 146.699219 37.285156 145.761719 C 37.285156 145.175781 37.335938 144.621094 37.441406 144.105469 C 37.546875 143.585938 37.757812 143.148438 38.078125 142.785156 C 38.394531 142.425781 38.84375 142.242188 39.417969 142.242188 C 39.863281 142.242188 40.226562 142.351562 40.511719 142.570312 C 40.792969 142.785156 41.007812 143.066406 41.15625 143.414062 C 41.304688 143.757812 41.40625 144.128906 41.460938 144.519531 C 41.515625 144.914062 41.542969 145.328125 41.542969 145.761719 C 41.542969 146.34375 41.492188 146.886719 41.382812 147.394531 C 41.277344 147.898438 41.066406 148.328125 40.753906 148.683594 C 40.441406 149.035156 39.996094 149.210938 39.417969 149.210938 Z M 39.417969 148.949219 C 39.792969 148.949219 40.074219 148.757812 40.257812 148.371094 C 40.445312 147.984375 40.558594 147.558594 40.601562 147.089844 C 40.644531 146.621094 40.664062 146.125 40.664062 145.597656 C 40.664062 145.089844 40.644531 144.621094 40.601562 144.191406 C 40.558594 143.765625 40.445312 143.378906 40.261719 143.03125 C 40.078125 142.679688 39.796875 142.507812 39.417969 142.507812 C 39.035156 142.507812 38.75 142.683594 38.566406 143.03125 C 38.382812 143.382812 38.269531 143.769531 38.226562 144.195312 C 38.183594 144.621094 38.164062 145.089844 38.164062 145.597656 C 38.164062 145.972656 38.171875 146.324219 38.1875 146.660156 C 38.207031 146.992188 38.253906 147.339844 38.332031 147.691406 C 38.410156 148.042969 38.539062 148.34375 38.714844 148.585938 C 38.894531 148.828125 39.128906 148.949219 39.417969 148.949219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.660156 131.871094 L 23.660156 131.242188 L 26.34375 131.242188 L 26.34375 131.871094 L 23.660156 131.871094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.386719 133.746094 L 27.386719 133.476562 C 27.386719 133.457031 27.390625 133.4375 27.402344 133.417969 L 28.980469 131.675781 C 29.21875 131.417969 29.410156 131.203125 29.558594 131.03125 C 29.703125 130.855469 29.851562 130.65625 29.996094 130.429688 C 30.144531 130.203125 30.257812 129.972656 30.34375 129.734375 C 30.425781 129.5 30.46875 129.246094 30.46875 128.980469 C 30.46875 128.707031 30.417969 128.445312 30.3125 128.191406 C 30.210938 127.9375 30.058594 127.734375 29.855469 127.585938 C 29.65625 127.433594 29.410156 127.359375 29.121094 127.359375 C 28.828125 127.359375 28.5625 127.445312 28.328125 127.621094 C 28.09375 127.796875 27.929688 128.027344 27.835938 128.308594 C 27.863281 128.300781 27.898438 128.296875 27.941406 128.296875 C 28.09375 128.296875 28.226562 128.347656 28.332031 128.449219 C 28.441406 128.550781 28.492188 128.683594 28.492188 128.847656 C 28.492188 129 28.441406 129.128906 28.332031 129.238281 C 28.226562 129.34375 28.09375 129.398438 27.941406 129.398438 C 27.785156 129.398438 27.65625 129.34375 27.546875 129.234375 C 27.441406 129.125 27.386719 128.996094 27.386719 128.847656 C 27.386719 128.59375 27.433594 128.355469 27.53125 128.132812 C 27.625 127.910156 27.761719 127.710938 27.941406 127.539062 C 28.121094 127.363281 28.324219 127.230469 28.550781 127.140625 C 28.777344 127.046875 29.019531 127 29.273438 127 C 29.65625 127 30.015625 127.082031 30.347656 127.246094 C 30.683594 127.410156 30.945312 127.640625 31.140625 127.9375 C 31.332031 128.234375 31.429688 128.582031 31.429688 128.980469 C 31.429688 129.277344 31.367188 129.558594 31.238281 129.824219 C 31.109375 130.085938 30.945312 130.328125 30.746094 130.539062 C 30.546875 130.757812 30.289062 131 29.972656 131.273438 C 29.660156 131.546875 29.453125 131.730469 29.355469 131.824219 L 28.207031 132.925781 L 29.179688 132.925781 C 29.660156 132.925781 30.058594 132.921875 30.382812 132.914062 C 30.703125 132.90625 30.871094 132.894531 30.890625 132.875 C 30.972656 132.792969 31.054688 132.480469 31.136719 131.941406 L 31.429688 131.941406 L 31.144531 133.746094 L 27.386719 133.746094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 34.414062 133.96875 C 33.585938 133.96875 33.023438 133.628906 32.726562 132.945312 C 32.429688 132.265625 32.28125 131.457031 32.28125 130.519531 C 32.28125 129.929688 32.335938 129.378906 32.441406 128.863281 C 32.546875 128.34375 32.757812 127.90625 33.078125 127.542969 C 33.394531 127.183594 33.839844 127 34.414062 127 C 34.859375 127 35.226562 127.109375 35.507812 127.328125 C 35.792969 127.542969 36.007812 127.824219 36.15625 128.171875 C 36.304688 128.515625 36.40625 128.886719 36.460938 129.277344 C 36.515625 129.671875 36.542969 130.085938 36.542969 130.519531 C 36.542969 131.097656 36.488281 131.644531 36.382812 132.148438 C 36.273438 132.65625 36.066406 133.085938 35.753906 133.4375 C 35.441406 133.792969 34.992188 133.96875 34.414062 133.96875 Z M 34.414062 133.707031 C 34.789062 133.707031 35.070312 133.511719 35.257812 133.128906 C 35.441406 132.742188 35.554688 132.316406 35.597656 131.847656 C 35.640625 131.378906 35.664062 130.882812 35.664062 130.351562 C 35.664062 129.84375 35.640625 129.378906 35.597656 128.949219 C 35.554688 128.523438 35.445312 128.132812 35.257812 127.785156 C 35.074219 127.4375 34.792969 127.265625 34.414062 127.265625 C 34.03125 127.265625 33.75 127.441406 33.566406 127.789062 C 33.382812 128.140625 33.269531 128.527344 33.226562 128.953125 C 33.183594 129.378906 33.160156 129.84375 33.160156 130.351562 C 33.160156 130.726562 33.171875 131.082031 33.1875 131.417969 C 33.207031 131.75 33.253906 132.09375 33.332031 132.449219 C 33.410156 132.800781 33.535156 133.101562 33.714844 133.34375 C 33.894531 133.585938 34.125 133.707031 34.414062 133.707031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 133.96875 C 38.589844 133.96875 38.027344 133.628906 37.730469 132.945312 C 37.433594 132.265625 37.285156 131.457031 37.285156 130.519531 C 37.285156 129.929688 37.335938 129.378906 37.441406 128.863281 C 37.546875 128.34375 37.757812 127.90625 38.078125 127.542969 C 38.394531 127.183594 38.84375 127 39.417969 127 C 39.863281 127 40.226562 127.109375 40.511719 127.328125 C 40.792969 127.542969 41.007812 127.824219 41.15625 128.171875 C 41.304688 128.515625 41.40625 128.886719 41.460938 129.277344 C 41.515625 129.671875 41.542969 130.085938 41.542969 130.519531 C 41.542969 131.097656 41.492188 131.644531 41.382812 132.148438 C 41.277344 132.65625 41.066406 133.085938 40.753906 133.4375 C 40.441406 133.792969 39.996094 133.96875 39.417969 133.96875 Z M 39.417969 133.707031 C 39.792969 133.707031 40.074219 133.511719 40.257812 133.128906 C 40.445312 132.742188 40.558594 132.316406 40.601562 131.847656 C 40.644531 131.378906 40.664062 130.882812 40.664062 130.351562 C 40.664062 129.84375 40.644531 129.378906 40.601562 128.949219 C 40.558594 128.523438 40.445312 128.132812 40.261719 127.785156 C 40.078125 127.4375 39.796875 127.265625 39.417969 127.265625 C 39.035156 127.265625 38.75 127.441406 38.566406 127.789062 C 38.382812 128.140625 38.269531 128.527344 38.226562 128.953125 C 38.183594 129.378906 38.164062 129.84375 38.164062 130.351562 C 38.164062 130.726562 38.171875 131.082031 38.1875 131.417969 C 38.207031 131.75 38.253906 132.09375 38.332031 132.449219 C 38.410156 132.800781 38.539062 133.101562 38.714844 133.34375 C 38.894531 133.585938 39.128906 133.707031 39.417969 133.707031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.660156 116.628906 L 23.660156 116 L 26.34375 116 L 26.34375 116.628906 L 23.660156 116.628906 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.820312 118.503906 L 27.820312 118.144531 C 28.664062 118.144531 29.085938 118.039062 29.085938 117.824219 L 29.085938 112.507812 C 28.738281 112.675781 28.296875 112.761719 27.761719 112.761719 L 27.761719 112.410156 C 28.589844 112.410156 29.214844 112.191406 29.636719 111.757812 L 29.777344 111.757812 C 29.800781 111.757812 29.824219 111.765625 29.84375 111.785156 C 29.867188 111.800781 29.878906 111.824219 29.878906 111.847656 L 29.878906 117.824219 C 29.878906 118.039062 30.296875 118.144531 31.144531 118.144531 L 31.144531 118.503906 L 27.820312 118.503906 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 34.414062 118.726562 C 33.585938 118.726562 33.023438 118.386719 32.726562 117.703125 C 32.429688 117.023438 32.28125 116.210938 32.28125 115.273438 C 32.28125 114.6875 32.335938 114.136719 32.441406 113.617188 C 32.546875 113.101562 32.757812 112.660156 33.078125 112.300781 C 33.394531 111.9375 33.839844 111.757812 34.414062 111.757812 C 34.859375 111.757812 35.226562 111.867188 35.507812 112.082031 C 35.792969 112.300781 36.007812 112.582031 36.15625 112.925781 C 36.304688 113.273438 36.40625 113.644531 36.460938 114.035156 C 36.515625 114.425781 36.542969 114.839844 36.542969 115.273438 C 36.542969 115.855469 36.488281 116.402344 36.382812 116.90625 C 36.273438 117.414062 36.066406 117.84375 35.753906 118.195312 C 35.441406 118.550781 34.992188 118.726562 34.414062 118.726562 Z M 34.414062 118.464844 C 34.789062 118.464844 35.070312 118.269531 35.257812 117.886719 C 35.441406 117.5 35.554688 117.074219 35.597656 116.605469 C 35.640625 116.136719 35.664062 115.636719 35.664062 115.109375 C 35.664062 114.601562 35.640625 114.136719 35.597656 113.707031 C 35.554688 113.277344 35.445312 112.890625 35.257812 112.542969 C 35.074219 112.195312 34.792969 112.023438 34.414062 112.023438 C 34.03125 112.023438 33.75 112.195312 33.566406 112.546875 C 33.382812 112.894531 33.269531 113.285156 33.226562 113.710938 C 33.183594 114.136719 33.160156 114.601562 33.160156 115.109375 C 33.160156 115.484375 33.171875 115.839844 33.1875 116.175781 C 33.207031 116.507812 33.253906 116.851562 33.332031 117.207031 C 33.410156 117.558594 33.535156 117.855469 33.714844 118.097656 C 33.894531 118.339844 34.125 118.464844 34.414062 118.464844 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 118.726562 C 38.589844 118.726562 38.027344 118.386719 37.730469 117.703125 C 37.433594 117.023438 37.285156 116.210938 37.285156 115.273438 C 37.285156 114.6875 37.335938 114.136719 37.441406 113.617188 C 37.546875 113.101562 37.757812 112.660156 38.078125 112.300781 C 38.394531 111.9375 38.84375 111.757812 39.417969 111.757812 C 39.863281 111.757812 40.226562 111.867188 40.511719 112.082031 C 40.792969 112.300781 41.007812 112.582031 41.15625 112.925781 C 41.304688 113.273438 41.40625 113.644531 41.460938 114.035156 C 41.515625 114.425781 41.542969 114.839844 41.542969 115.273438 C 41.542969 115.855469 41.492188 116.402344 41.382812 116.90625 C 41.277344 117.414062 41.066406 117.84375 40.753906 118.195312 C 40.441406 118.550781 39.996094 118.726562 39.417969 118.726562 Z M 39.417969 118.464844 C 39.792969 118.464844 40.074219 118.269531 40.257812 117.886719 C 40.445312 117.5 40.558594 117.074219 40.601562 116.605469 C 40.644531 116.136719 40.664062 115.636719 40.664062 115.109375 C 40.664062 114.601562 40.644531 114.136719 40.601562 113.707031 C 40.558594 113.277344 40.445312 112.890625 40.261719 112.542969 C 40.078125 112.195312 39.796875 112.023438 39.417969 112.023438 C 39.035156 112.023438 38.75 112.195312 38.566406 112.546875 C 38.382812 112.894531 38.269531 113.285156 38.226562 113.710938 C 38.183594 114.136719 38.164062 114.601562 38.164062 115.109375 C 38.164062 115.484375 38.171875 115.839844 38.1875 116.175781 C 38.207031 116.507812 38.253906 116.851562 38.332031 117.207031 C 38.410156 117.558594 38.539062 117.855469 38.714844 118.097656 C 38.894531 118.339844 39.128906 118.464844 39.417969 118.464844 "/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="17.9211" y="144.5504"/>
<use xlink:href="#glyph0-2" x="17.9211" y="138.43916"/>
<use xlink:href="#glyph0-3" x="17.9211" y="132.878031"/>
<use xlink:href="#glyph0-4" x="17.9211" y="130.097467"/>
<use xlink:href="#glyph0-5" x="17.9211" y="127.316903"/>
<use xlink:href="#glyph0-7" x="17.9211" y="120.095437"/>
</g>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.727064 -643.237217 L 531.770286 -657.105139 L 692.543498 -687.575504 L 772.891043 -702.810686 L 853.277649 -718.084934 L 1014.05086 -748.555298 L 1035.026374 -752.539885 L 1045.807085 -754.610307 L 1056.548735 -756.641665 L 1067.290385 -758.712087 L 1078.032036 -760.743444 L 1088.812747 -762.813867 L 1099.554397 -764.845224 L 1110.296048 -766.915647 L 1121.037698 -769.025133 L 1131.818409 -771.095556 L 1153.30171 -775.392658 L 1164.04336 -777.580274 L 1174.824071 -779.806955 L 1185.565722 -782.150829 L 1196.307372 -784.572832 L 1207.088083 -787.112029 L 1217.829734 -789.924679 L 1228.571384 -793.01078 L 1239.313034 -796.526591 L 1246.226751 -799.143917 L 1246.500175 -799.222046 L 1246.734538 -799.33924 L 1255.835646 -803.44102 L 1256.382493 -803.675407 L 1263.843058 -807.855316 L 1264.077421 -808.011575 L 1264.350845 -808.167833 L 1270.44429 -812.425871 L 1270.717714 -812.660258 L 1270.952077 -812.855581 L 1275.912767 -817.230813 L 1276.420554 -817.738653 L 1280.44379 -822.270143 L 1280.717214 -822.582659 L 1280.951577 -822.934241 L 1284.193603 -827.54386 L 1284.467027 -827.97357 L 1284.70139 -828.40328 L 1287.318447 -833.169158 L 1287.59187 -833.676997 L 1287.826234 -834.223901 L 1289.896443 -839.146037 L 1290.130806 -839.810135 L 1290.40423 -840.552362 L 1292.005712 -845.552627 L 1292.55256 -847.427726 L 1293.802497 -852.623314 L 1294.036861 -853.834316 L 1294.310284 -855.123447 L 1295.247738 -860.514357 L 1295.521161 -862.194134 L 1295.794585 -864.030169 L 1296.458615 -869.577338 L 1296.732038 -872.038406 L 1297.005462 -874.694796 L 1297.474189 -880.515417 L 1297.747613 -884.226552 L 1297.981976 -888.406461 L 1298.29446 -894.188017 L 1298.567884 -899.461734 L 1298.841308 -904.461999 L 1298.99755 -906.923067 L 1299.270974 -908.368456 L 1299.505337 -906.923067 L 1299.70064 -904.461999 L 1299.935003 -899.383605 L 1300.208427 -894.031759 L 1300.520911 -888.093944 L 1300.794335 -883.796841 L 1301.028699 -880.007578 L 1301.536486 -873.952569 L 1301.770849 -871.178985 L 1302.044273 -868.639788 L 1302.981726 -860.826874 L 1303.25515 -859.068968 L 1304.192603 -853.326476 L 1304.466027 -851.920152 L 1304.739451 -850.591956 L 1305.989388 -844.927594 L 1306.223751 -843.87285 L 1306.497175 -842.857171 L 1308.098658 -837.231873 L 1308.645505 -835.591161 L 1310.676654 -829.926799 L 1310.950077 -829.262701 L 1311.184441 -828.637668 L 1313.801497 -822.895176 L 1314.035861 -822.387337 L 1314.309285 -821.840433 L 1317.55131 -815.980747 L 1317.824734 -815.551037 L 1318.059097 -815.121326 L 1322.082333 -809.105383 L 1322.629181 -808.40222 L 1327.55081 -802.112824 L 1327.824234 -801.839372 L 1328.097658 -801.526856 L 1334.152042 -794.924944 L 1334.425466 -794.690556 L 1334.69889 -794.417104 L 1342.159455 -787.424546 L 1342.393818 -787.190159 L 1342.667242 -786.994836 L 1351.768349 -779.416309 L 1352.041773 -779.220986 L 1352.276136 -779.025663 L 1357.588371 -774.962948 L 1368.369082 -767.306292 L 1379.110732 -760.079347 L 1389.852382 -753.164918 L 1400.594033 -746.484876 L 1411.374744 -739.961093 L 1422.116394 -733.554503 L 1432.858045 -727.226043 L 1443.599695 -720.936647 L 1454.341345 -714.72538 L 1465.122056 -708.514114 L 1486.605357 -696.169709 L 1497.386068 -690.036572 L 1529.611019 -671.637159 L 1540.39173 -665.504022 L 1561.875031 -653.237747 L 1572.655742 -647.104609 L 1580.585033 -642.612183 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.727064 -973.606289 L 467.359445 -975.247001 L 531.809347 -987.435147 L 542.550997 -989.42744 L 553.292648 -991.458797 L 564.034298 -993.45109 L 574.775949 -995.404319 L 585.478539 -997.357547 L 596.220189 -999.310776 L 606.961839 -1001.22494 L 617.70349 -1003.060975 L 628.44514 -1004.81888 L 639.186791 -1006.537721 L 649.928441 -1008.100304 L 660.670091 -1009.506629 L 671.411742 -1010.678566 L 682.153392 -1011.616116 L 692.895043 -1012.241149 L 703.636693 -1012.514601 L 714.339283 -1012.436472 L 725.080933 -1012.006761 L 735.822584 -1011.22547 L 746.564234 -1010.131662 L 757.305885 -1008.842531 L 768.047535 -1007.358077 L 778.789186 -1005.717366 L 789.530836 -1003.998524 L 800.272486 -1002.16249 L 811.014137 -1000.28739 L 821.755787 -998.373226 L 832.497438 -996.419998 L 843.200027 -994.427705 L 875.424979 -988.333632 L 896.90828 -984.192787 L 918.39158 -979.895684 L 929.133231 -977.708069 L 939.874881 -975.442323 L 950.616532 -973.059385 L 961.319122 -970.598317 L 972.060772 -967.98099 L 982.802422 -965.207406 L 993.544073 -962.121305 L 1004.285723 -958.800816 L 1015.027374 -955.128747 L 1025.769024 -951.066031 L 1036.510674 -946.651735 L 1047.252325 -941.885857 L 1057.993975 -936.846528 L 1068.735626 -931.533746 L 1079.438216 -926.025642 L 1090.218927 -920.361279 L 1100.921516 -914.579723 L 1111.663167 -908.720037 L 1122.404817 -902.782222 L 1133.146468 -896.805343 L 1143.888118 -890.789399 L 1176.113069 -872.624374 L 1197.59637 -860.436228 L 1208.29896 -854.342155 L 1251.265562 -829.965863 L 1262.007212 -823.832726 L 1283.490513 -811.64458 L 1294.232163 -805.511442 L 1454.966314 -714.061283 L 1580.585033 -642.612183 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 45.886719 187.121094 L 158.421875 187.121094 L 158.421875 152.238281 L 45.886719 152.238281 Z M 45.886719 187.121094 "/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -248.802249 L 1584.100482 -248.802249 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -597.648863 L 1584.100482 -597.648863 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -248.802249 L 780.351607 -260.052845 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -248.802249 L 1584.100482 -260.052845 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -597.648863 L 780.351607 -586.398267 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -597.648863 L 1584.100482 -586.398267 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -248.802249 L 458.844245 -254.427547 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 619.617457 -248.802249 L 619.617457 -254.427547 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -248.802249 L 780.351607 -254.427547 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 941.124819 -248.802249 L 941.124819 -254.427547 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1101.85897 -248.802249 L 1101.85897 -254.427547 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1262.632181 -248.802249 L 1262.632181 -254.427547 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1423.366332 -248.802249 L 1423.366332 -254.427547 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -248.802249 L 1584.100482 -254.427547 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -597.648863 L 458.844245 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 619.617457 -597.648863 L 619.617457 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 780.351607 -597.648863 L 780.351607 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 941.124819 -597.648863 L 941.124819 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1101.85897 -597.648863 L 1101.85897 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1262.632181 -597.648863 L 1262.632181 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1423.366332 -597.648863 L 1423.366332 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -597.648863 L 1584.100482 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 71.976562 199.523438 L 71.976562 199.164062 C 72.820312 199.164062 73.242188 199.058594 73.242188 198.84375 L 73.242188 193.527344 C 72.894531 193.695312 72.453125 193.78125 71.917969 193.78125 L 71.917969 193.429688 C 72.746094 193.429688 73.371094 193.210938 73.792969 192.777344 L 73.933594 192.777344 C 73.957031 192.777344 73.980469 192.785156 74 192.804688 C 74.023438 192.820312 74.03125 192.84375 74.03125 192.867188 L 74.03125 198.84375 C 74.03125 199.058594 74.453125 199.164062 75.296875 199.164062 L 75.296875 199.523438 L 71.976562 199.523438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 78.570312 199.746094 C 77.742188 199.746094 77.179688 199.40625 76.882812 198.722656 C 76.585938 198.042969 76.4375 197.230469 76.4375 196.292969 C 76.4375 195.707031 76.488281 195.15625 76.59375 194.636719 C 76.703125 194.121094 76.914062 193.679688 77.230469 193.320312 C 77.550781 192.957031 77.996094 192.777344 78.570312 192.777344 C 79.015625 192.777344 79.382812 192.886719 79.664062 193.101562 C 79.949219 193.320312 80.164062 193.601562 80.3125 193.945312 C 80.460938 194.292969 80.5625 194.660156 80.617188 195.054688 C 80.671875 195.445312 80.699219 195.859375 80.699219 196.292969 C 80.699219 196.875 80.644531 197.421875 80.539062 197.925781 C 80.429688 198.433594 80.21875 198.863281 79.90625 199.214844 C 79.59375 199.570312 79.148438 199.746094 78.570312 199.746094 Z M 78.570312 199.480469 C 78.945312 199.480469 79.226562 199.289062 79.410156 198.90625 C 79.597656 198.519531 79.710938 198.09375 79.753906 197.625 C 79.796875 197.15625 79.820312 196.65625 79.820312 196.128906 C 79.820312 195.621094 79.796875 195.15625 79.753906 194.726562 C 79.710938 194.296875 79.597656 193.910156 79.414062 193.5625 C 79.230469 193.214844 78.949219 193.042969 78.570312 193.042969 C 78.1875 193.042969 77.90625 193.214844 77.722656 193.566406 C 77.539062 193.914062 77.425781 194.304688 77.382812 194.730469 C 77.339844 195.15625 77.316406 195.621094 77.316406 196.128906 C 77.316406 196.503906 77.324219 196.859375 77.34375 197.195312 C 77.359375 197.527344 77.410156 197.871094 77.488281 198.226562 C 77.566406 198.578125 77.691406 198.875 77.871094 199.117188 C 78.046875 199.359375 78.28125 199.480469 78.570312 199.480469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 82.824219 196.050781 C 82.238281 196.050781 81.84375 195.8125 81.636719 195.332031 C 81.425781 194.851562 81.320312 194.28125 81.320312 193.621094 C 81.320312 193.210938 81.359375 192.820312 81.433594 192.457031 C 81.507812 192.089844 81.65625 191.78125 81.882812 191.527344 C 82.105469 191.273438 82.417969 191.148438 82.824219 191.148438 C 83.136719 191.148438 83.390625 191.222656 83.589844 191.375 C 83.789062 191.527344 83.941406 191.726562 84.046875 191.96875 C 84.152344 192.214844 84.222656 192.472656 84.261719 192.75 C 84.296875 193.023438 84.316406 193.316406 84.316406 193.621094 C 84.316406 194.03125 84.28125 194.414062 84.207031 194.769531 C 84.132812 195.125 83.984375 195.425781 83.761719 195.675781 C 83.542969 195.925781 83.226562 196.050781 82.824219 196.050781 Z M 82.824219 195.863281 C 83.089844 195.863281 83.285156 195.726562 83.414062 195.457031 C 83.542969 195.183594 83.625 194.886719 83.65625 194.558594 C 83.6875 194.230469 83.703125 193.878906 83.703125 193.507812 C 83.703125 193.148438 83.6875 192.820312 83.65625 192.519531 C 83.625 192.21875 83.542969 191.945312 83.414062 191.699219 C 83.285156 191.457031 83.089844 191.335938 82.824219 191.335938 C 82.550781 191.335938 82.351562 191.457031 82.222656 191.699219 C 82.09375 191.945312 82.015625 192.21875 81.984375 192.519531 C 81.953125 192.820312 81.9375 193.148438 81.9375 193.507812 C 81.9375 193.769531 81.945312 194.019531 81.957031 194.253906 C 81.972656 194.488281 82.007812 194.730469 82.058594 194.980469 C 82.113281 195.230469 82.207031 195.4375 82.332031 195.609375 C 82.457031 195.78125 82.617188 195.863281 82.824219 195.863281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 152.355469 199.523438 L 152.355469 199.164062 C 153.199219 199.164062 153.621094 199.058594 153.621094 198.84375 L 153.621094 193.527344 C 153.273438 193.695312 152.832031 193.78125 152.296875 193.78125 L 152.296875 193.429688 C 153.125 193.429688 153.75 193.210938 154.171875 192.777344 L 154.3125 192.777344 C 154.335938 192.777344 154.359375 192.785156 154.378906 192.804688 C 154.402344 192.820312 154.414062 192.84375 154.414062 192.867188 L 154.414062 198.84375 C 154.414062 199.058594 154.835938 199.164062 155.679688 199.164062 L 155.679688 199.523438 L 152.355469 199.523438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 158.949219 199.746094 C 158.121094 199.746094 157.558594 199.40625 157.261719 198.722656 C 156.964844 198.042969 156.816406 197.230469 156.816406 196.292969 C 156.816406 195.707031 156.871094 195.15625 156.976562 194.636719 C 157.082031 194.121094 157.292969 193.679688 157.613281 193.320312 C 157.929688 192.957031 158.378906 192.777344 158.949219 192.777344 C 159.398438 192.777344 159.761719 192.886719 160.046875 193.101562 C 160.328125 193.320312 160.542969 193.601562 160.691406 193.945312 C 160.839844 194.292969 160.941406 194.660156 160.996094 195.054688 C 161.050781 195.445312 161.078125 195.859375 161.078125 196.292969 C 161.078125 196.875 161.023438 197.421875 160.917969 197.925781 C 160.808594 198.433594 160.601562 198.863281 160.289062 199.214844 C 159.976562 199.570312 159.53125 199.746094 158.949219 199.746094 Z M 158.949219 199.480469 C 159.328125 199.480469 159.605469 199.289062 159.792969 198.90625 C 159.976562 198.519531 160.09375 198.09375 160.136719 197.625 C 160.179688 197.15625 160.199219 196.65625 160.199219 196.128906 C 160.199219 195.621094 160.179688 195.15625 160.136719 194.726562 C 160.09375 194.296875 159.980469 193.910156 159.796875 193.5625 C 159.613281 193.214844 159.328125 193.042969 158.949219 193.042969 C 158.566406 193.042969 158.285156 193.214844 158.101562 193.566406 C 157.917969 193.914062 157.804688 194.304688 157.761719 194.730469 C 157.71875 195.15625 157.695312 195.621094 157.695312 196.128906 C 157.695312 196.503906 157.707031 196.859375 157.722656 197.195312 C 157.742188 197.527344 157.789062 197.871094 157.867188 198.226562 C 157.945312 198.578125 158.074219 198.875 158.25 199.117188 C 158.429688 199.359375 158.660156 199.480469 158.949219 199.480469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 162.042969 195.085938 C 162.089844 195.222656 162.164062 195.347656 162.265625 195.460938 C 162.367188 195.574219 162.484375 195.660156 162.621094 195.726562 C 162.757812 195.789062 162.902344 195.824219 163.050781 195.824219 C 163.394531 195.824219 163.632812 195.691406 163.761719 195.425781 C 163.894531 195.160156 163.960938 194.835938 163.960938 194.453125 C 163.960938 194.289062 163.957031 194.148438 163.949219 194.035156 C 163.945312 193.921875 163.925781 193.816406 163.898438 193.714844 C 163.855469 193.546875 163.78125 193.398438 163.671875 193.273438 C 163.5625 193.148438 163.425781 193.085938 163.265625 193.085938 C 163.105469 193.085938 162.96875 193.109375 162.855469 193.160156 C 162.738281 193.207031 162.644531 193.265625 162.570312 193.328125 C 162.5 193.394531 162.4375 193.460938 162.382812 193.535156 C 162.328125 193.605469 162.292969 193.644531 162.277344 193.648438 L 162.195312 193.648438 C 162.183594 193.648438 162.167969 193.640625 162.152344 193.625 C 162.136719 193.609375 162.128906 193.597656 162.128906 193.585938 L 162.128906 191.207031 C 162.128906 191.195312 162.136719 191.179688 162.148438 191.167969 C 162.164062 191.152344 162.179688 191.148438 162.195312 191.148438 L 162.21875 191.148438 C 162.539062 191.296875 162.878906 191.375 163.238281 191.375 C 163.589844 191.375 163.929688 191.296875 164.257812 191.148438 L 164.273438 191.148438 C 164.296875 191.148438 164.3125 191.152344 164.324219 191.164062 C 164.339844 191.175781 164.34375 191.191406 164.34375 191.207031 L 164.34375 191.269531 C 164.34375 191.292969 164.339844 191.304688 164.328125 191.304688 C 164.167969 191.519531 163.964844 191.6875 163.722656 191.808594 C 163.476562 191.929688 163.222656 191.992188 162.957031 191.992188 C 162.769531 191.992188 162.574219 191.964844 162.375 191.910156 L 162.375 193.257812 C 162.53125 193.128906 162.671875 193.035156 162.796875 192.980469 C 162.921875 192.925781 163.082031 192.898438 163.273438 192.898438 C 163.535156 192.898438 163.769531 192.976562 163.976562 193.128906 C 164.183594 193.28125 164.34375 193.476562 164.453125 193.71875 C 164.566406 193.960938 164.621094 194.207031 164.621094 194.457031 C 164.621094 194.742188 164.550781 195.007812 164.410156 195.253906 C 164.269531 195.496094 164.078125 195.691406 163.839844 195.835938 C 163.597656 195.980469 163.335938 196.050781 163.050781 196.050781 C 162.820312 196.050781 162.605469 195.992188 162.40625 195.871094 C 162.210938 195.75 162.058594 195.585938 161.945312 195.382812 C 161.835938 195.175781 161.777344 194.960938 161.777344 194.734375 C 161.777344 194.625 161.8125 194.535156 161.882812 194.46875 C 161.949219 194.402344 162.035156 194.371094 162.140625 194.371094 C 162.246094 194.371094 162.335938 194.402344 162.40625 194.472656 C 162.476562 194.539062 162.511719 194.628906 162.511719 194.734375 C 162.511719 194.835938 162.476562 194.921875 162.40625 194.992188 C 162.335938 195.0625 162.246094 195.097656 162.140625 195.097656 C 162.125 195.097656 162.105469 195.09375 162.085938 195.089844 C 162.0625 195.085938 162.050781 195.085938 162.042969 195.085938 "/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -248.802249 L 458.844245 -597.648863 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -248.802249 L 1584.100482 -597.648863 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -252.239931 L 470.093683 -252.239931 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -366.230348 L 470.093683 -366.230348 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -480.220764 L 470.093683 -480.220764 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.844245 -594.211181 L 470.093683 -594.211181 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -252.239931 L 1572.851045 -252.239931 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -366.230348 L 1572.851045 -366.230348 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -480.220764 L 1572.851045 -480.220764 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1584.100482 -594.211181 L 1572.851045 -594.211181 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.660156 187.304688 L 23.660156 186.675781 L 26.34375 186.675781 L 26.34375 187.304688 L 23.660156 187.304688 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.847656 188.398438 C 28.003906 188.628906 28.21875 188.800781 28.484375 188.914062 C 28.753906 189.023438 29.039062 189.078125 29.34375 189.078125 C 29.738281 189.078125 30.019531 188.914062 30.183594 188.578125 C 30.347656 188.242188 30.429688 187.863281 30.429688 187.4375 C 30.429688 187.246094 30.410156 187.054688 30.375 186.863281 C 30.339844 186.671875 30.28125 186.496094 30.199219 186.332031 C 30.117188 186.167969 30.003906 186.035156 29.863281 185.933594 C 29.71875 185.835938 29.542969 185.785156 29.339844 185.785156 L 28.664062 185.785156 C 28.605469 185.785156 28.578125 185.753906 28.578125 185.691406 L 28.578125 185.605469 C 28.578125 185.550781 28.605469 185.523438 28.664062 185.523438 L 29.21875 185.480469 C 29.457031 185.480469 29.65625 185.394531 29.8125 185.214844 C 29.96875 185.035156 30.082031 184.820312 30.15625 184.5625 C 30.226562 184.308594 30.265625 184.066406 30.265625 183.835938 C 30.265625 183.511719 30.1875 183.246094 30.039062 183.039062 C 29.886719 182.832031 29.65625 182.726562 29.34375 182.726562 C 29.085938 182.726562 28.839844 182.777344 28.609375 182.871094 C 28.375 182.972656 28.1875 183.117188 28.046875 183.3125 C 28.0625 183.308594 28.078125 183.308594 28.085938 183.308594 C 28.097656 183.308594 28.105469 183.308594 28.117188 183.308594 C 28.269531 183.308594 28.398438 183.359375 28.5 183.464844 C 28.601562 183.570312 28.652344 183.699219 28.652344 183.847656 C 28.652344 183.992188 28.601562 184.117188 28.5 184.222656 C 28.398438 184.328125 28.269531 184.378906 28.117188 184.378906 C 27.96875 184.378906 27.84375 184.328125 27.738281 184.222656 C 27.632812 184.117188 27.578125 183.992188 27.578125 183.847656 C 27.578125 183.554688 27.667969 183.300781 27.839844 183.085938 C 28.015625 182.875 28.238281 182.710938 28.515625 182.601562 C 28.789062 182.488281 29.066406 182.433594 29.34375 182.433594 C 29.550781 182.433594 29.769531 182.464844 29.992188 182.523438 C 30.21875 182.585938 30.425781 182.671875 30.609375 182.789062 C 30.792969 182.902344 30.945312 183.050781 31.0625 183.226562 C 31.179688 183.40625 31.238281 183.609375 31.238281 183.835938 C 31.238281 184.117188 31.171875 184.378906 31.046875 184.621094 C 30.917969 184.863281 30.746094 185.070312 30.523438 185.242188 C 30.304688 185.417969 30.0625 185.546875 29.800781 185.632812 C 30.09375 185.6875 30.371094 185.796875 30.636719 185.964844 C 30.898438 186.132812 31.113281 186.34375 31.273438 186.597656 C 31.433594 186.851562 31.511719 187.128906 31.511719 187.425781 C 31.511719 187.800781 31.410156 188.140625 31.203125 188.441406 C 31 188.742188 30.730469 188.976562 30.398438 189.148438 C 30.066406 189.316406 29.714844 189.402344 29.34375 189.402344 C 29.027344 189.402344 28.710938 189.339844 28.390625 189.21875 C 28.074219 189.097656 27.8125 188.917969 27.613281 188.679688 C 27.410156 188.4375 27.308594 188.148438 27.308594 187.8125 C 27.308594 187.644531 27.367188 187.507812 27.476562 187.394531 C 27.589844 187.28125 27.726562 187.226562 27.894531 187.226562 C 28.003906 187.226562 28.105469 187.253906 28.195312 187.304688 C 28.285156 187.355469 28.355469 187.425781 28.40625 187.519531 C 28.457031 187.609375 28.480469 187.707031 28.480469 187.8125 C 28.480469 187.976562 28.425781 188.117188 28.308594 188.230469 C 28.195312 188.34375 28.054688 188.398438 27.894531 188.398438 L 27.847656 188.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 34.414062 189.402344 C 33.996094 189.402344 33.648438 189.289062 33.367188 189.066406 C 33.085938 188.84375 32.867188 188.558594 32.714844 188.203125 C 32.5625 187.847656 32.457031 187.476562 32.398438 187.089844 C 32.339844 186.703125 32.3125 186.304688 32.3125 185.902344 C 32.3125 185.371094 32.414062 184.835938 32.621094 184.300781 C 32.828125 183.761719 33.136719 183.316406 33.539062 182.964844 C 33.945312 182.609375 34.421875 182.433594 34.972656 182.433594 C 35.203125 182.433594 35.417969 182.476562 35.621094 182.566406 C 35.820312 182.652344 35.976562 182.78125 36.09375 182.953125 C 36.207031 183.121094 36.261719 183.328125 36.261719 183.566406 C 36.261719 183.707031 36.214844 183.824219 36.121094 183.917969 C 36.027344 184.011719 35.910156 184.058594 35.769531 184.058594 C 35.636719 184.058594 35.523438 184.007812 35.429688 183.914062 C 35.335938 183.816406 35.289062 183.703125 35.289062 183.566406 C 35.289062 183.4375 35.335938 183.324219 35.429688 183.226562 C 35.523438 183.132812 35.636719 183.085938 35.769531 183.085938 L 35.820312 183.085938 C 35.738281 182.960938 35.621094 182.867188 35.460938 182.8125 C 35.304688 182.753906 35.140625 182.726562 34.972656 182.726562 C 34.769531 182.726562 34.582031 182.769531 34.40625 182.859375 C 34.234375 182.945312 34.078125 183.066406 33.941406 183.21875 C 33.804688 183.371094 33.6875 183.539062 33.59375 183.722656 C 33.5 183.90625 33.429688 184.117188 33.378906 184.351562 C 33.328125 184.585938 33.296875 184.804688 33.28125 185.007812 C 33.269531 185.210938 33.261719 185.464844 33.261719 185.773438 C 33.382812 185.5 33.550781 185.273438 33.769531 185.097656 C 33.984375 184.917969 34.230469 184.832031 34.503906 184.832031 C 34.804688 184.832031 35.078125 184.890625 35.328125 185.015625 C 35.574219 185.140625 35.789062 185.308594 35.964844 185.523438 C 36.144531 185.738281 36.28125 185.984375 36.371094 186.261719 C 36.46875 186.539062 36.515625 186.820312 36.515625 187.105469 C 36.515625 187.5 36.425781 187.875 36.246094 188.230469 C 36.070312 188.589844 35.820312 188.875 35.503906 189.085938 C 35.183594 189.296875 34.820312 189.402344 34.414062 189.402344 Z M 34.414062 189.078125 C 34.675781 189.078125 34.886719 189.019531 35.046875 188.902344 C 35.203125 188.78125 35.320312 188.625 35.394531 188.429688 C 35.46875 188.234375 35.515625 188.035156 35.53125 187.835938 C 35.550781 187.636719 35.558594 187.394531 35.558594 187.105469 C 35.558594 186.722656 35.539062 186.394531 35.503906 186.121094 C 35.464844 185.851562 35.367188 185.613281 35.207031 185.40625 C 35.046875 185.203125 34.796875 185.101562 34.460938 185.101562 C 34.1875 185.101562 33.964844 185.191406 33.789062 185.375 C 33.613281 185.558594 33.484375 185.792969 33.40625 186.074219 C 33.324219 186.359375 33.285156 186.628906 33.285156 186.886719 C 33.285156 186.976562 33.285156 187.046875 33.289062 187.09375 C 33.289062 187.101562 33.289062 187.109375 33.289062 187.117188 C 33.289062 187.125 33.289062 187.132812 33.285156 187.140625 C 33.285156 187.433594 33.3125 187.726562 33.371094 188.023438 C 33.429688 188.316406 33.542969 188.566406 33.710938 188.773438 C 33.878906 188.976562 34.113281 189.078125 34.414062 189.078125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 189.402344 C 38.589844 189.402344 38.027344 189.0625 37.730469 188.378906 C 37.433594 187.699219 37.285156 186.886719 37.285156 185.949219 C 37.285156 185.363281 37.335938 184.8125 37.441406 184.292969 C 37.546875 183.777344 37.757812 183.335938 38.078125 182.976562 C 38.394531 182.613281 38.84375 182.433594 39.417969 182.433594 C 39.863281 182.433594 40.226562 182.542969 40.511719 182.757812 C 40.792969 182.976562 41.007812 183.257812 41.15625 183.601562 C 41.304688 183.949219 41.40625 184.316406 41.460938 184.710938 C 41.515625 185.101562 41.542969 185.515625 41.542969 185.949219 C 41.542969 186.53125 41.492188 187.078125 41.382812 187.582031 C 41.277344 188.089844 41.066406 188.519531 40.753906 188.871094 C 40.441406 189.226562 39.996094 189.402344 39.417969 189.402344 Z M 39.417969 189.136719 C 39.792969 189.136719 40.074219 188.945312 40.257812 188.5625 C 40.445312 188.175781 40.558594 187.75 40.601562 187.28125 C 40.644531 186.8125 40.664062 186.3125 40.664062 185.785156 C 40.664062 185.277344 40.644531 184.808594 40.601562 184.382812 C 40.558594 183.953125 40.445312 183.566406 40.261719 183.21875 C 40.078125 182.871094 39.796875 182.699219 39.417969 182.699219 C 39.035156 182.699219 38.75 182.871094 38.566406 183.222656 C 38.382812 183.570312 38.269531 183.960938 38.226562 184.386719 C 38.183594 184.8125 38.164062 185.277344 38.164062 185.785156 C 38.164062 186.160156 38.171875 186.515625 38.1875 186.847656 C 38.207031 187.183594 38.253906 187.527344 38.332031 187.882812 C 38.410156 188.234375 38.539062 188.53125 38.714844 188.773438 C 38.894531 189.015625 39.128906 189.136719 39.417969 189.136719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 23.660156 175.90625 L 23.660156 175.277344 L 26.34375 175.277344 L 26.34375 175.90625 L 23.660156 175.90625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.820312 177.78125 L 27.820312 177.421875 C 28.664062 177.421875 29.085938 177.316406 29.085938 177.101562 L 29.085938 171.785156 C 28.738281 171.953125 28.296875 172.035156 27.761719 172.035156 L 27.761719 171.683594 C 28.589844 171.683594 29.214844 171.46875 29.636719 171.035156 L 29.777344 171.035156 C 29.800781 171.035156 29.824219 171.042969 29.84375 171.0625 C 29.867188 171.078125 29.878906 171.097656 29.878906 171.121094 L 29.878906 177.101562 C 29.878906 177.316406 30.296875 177.421875 31.144531 177.421875 L 31.144531 177.78125 L 27.820312 177.78125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 32.3125 176.246094 C 32.3125 175.839844 32.445312 175.480469 32.710938 175.164062 C 32.976562 174.851562 33.316406 174.59375 33.734375 174.386719 L 33.359375 174.148438 C 33.128906 173.992188 32.941406 173.792969 32.796875 173.539062 C 32.652344 173.289062 32.582031 173.023438 32.582031 172.746094 C 32.582031 172.421875 32.664062 172.128906 32.835938 171.871094 C 33.007812 171.609375 33.230469 171.40625 33.511719 171.257812 C 33.792969 171.109375 34.09375 171.035156 34.414062 171.035156 C 34.714844 171.035156 35.003906 171.097656 35.28125 171.21875 C 35.558594 171.34375 35.789062 171.515625 35.96875 171.742188 C 36.148438 171.96875 36.238281 172.238281 36.238281 172.550781 C 36.238281 172.78125 36.183594 172.988281 36.082031 173.183594 C 35.972656 173.382812 35.828125 173.554688 35.640625 173.710938 C 35.453125 173.863281 35.253906 173.996094 35.042969 174.105469 L 35.621094 174.472656 C 35.890625 174.652344 36.101562 174.878906 36.269531 175.164062 C 36.429688 175.445312 36.515625 175.746094 36.515625 176.058594 C 36.515625 176.425781 36.414062 176.757812 36.21875 177.058594 C 36.019531 177.359375 35.761719 177.59375 35.4375 177.757812 C 35.117188 177.921875 34.773438 178.003906 34.414062 178.003906 C 34.066406 178.003906 33.730469 177.929688 33.40625 177.789062 C 33.078125 177.644531 32.816406 177.441406 32.613281 177.171875 C 32.410156 176.90625 32.3125 176.597656 32.3125 176.246094 Z M 32.855469 176.246094 C 32.855469 176.511719 32.929688 176.753906 33.078125 176.972656 C 33.222656 177.195312 33.417969 177.367188 33.660156 177.492188 C 33.902344 177.617188 34.152344 177.679688 34.414062 177.679688 C 34.804688 177.679688 35.160156 177.566406 35.480469 177.335938 C 35.800781 177.109375 35.960938 176.804688 35.960938 176.425781 C 35.960938 176.296875 35.9375 176.167969 35.886719 176.042969 C 35.835938 175.914062 35.765625 175.800781 35.675781 175.695312 C 35.585938 175.59375 35.484375 175.507812 35.371094 175.441406 L 34.011719 174.5625 C 33.800781 174.671875 33.605469 174.8125 33.429688 174.984375 C 33.253906 175.15625 33.113281 175.351562 33.011719 175.566406 C 32.90625 175.78125 32.855469 176.007812 32.855469 176.246094 Z M 33.554688 173.152344 L 34.777344 173.941406 C 35.0625 173.777344 35.296875 173.578125 35.480469 173.34375 C 35.660156 173.109375 35.753906 172.84375 35.753906 172.550781 C 35.753906 172.324219 35.6875 172.117188 35.5625 171.929688 C 35.433594 171.738281 35.269531 171.589844 35.0625 171.484375 C 34.859375 171.378906 34.636719 171.328125 34.402344 171.328125 C 34.199219 171.328125 33.996094 171.367188 33.789062 171.445312 C 33.582031 171.523438 33.410156 171.640625 33.277344 171.800781 C 33.140625 171.957031 33.074219 172.140625 33.074219 172.351562 C 33.074219 172.667969 33.234375 172.933594 33.554688 173.152344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 178.003906 C 38.589844 178.003906 38.027344 177.660156 37.730469 176.980469 C 37.433594 176.296875 37.285156 175.488281 37.285156 174.550781 C 37.285156 173.964844 37.335938 173.414062 37.441406 172.894531 C 37.546875 172.378906 37.757812 171.9375 38.078125 171.578125 C 38.394531 171.214844 38.84375 171.035156 39.417969 171.035156 C 39.863281 171.035156 40.226562 171.144531 40.511719 171.359375 C 40.792969 171.578125 41.007812 171.859375 41.15625 172.203125 C 41.304688 172.550781 41.40625 172.917969 41.460938 173.3125 C 41.515625 173.703125 41.542969 174.117188 41.542969 174.550781 C 41.542969 175.132812 41.492188 175.675781 41.382812 176.183594 C 41.277344 176.6875 41.066406 177.117188 40.753906 177.472656 C 40.441406 177.828125 39.996094 178.003906 39.417969 178.003906 Z M 39.417969 177.738281 C 39.792969 177.738281 40.074219 177.546875 40.257812 177.160156 C 40.445312 176.777344 40.558594 176.351562 40.601562 175.882812 C 40.644531 175.410156 40.664062 174.914062 40.664062 174.386719 C 40.664062 173.878906 40.644531 173.410156 40.601562 172.984375 C 40.558594 172.554688 40.445312 172.167969 40.261719 171.820312 C 40.078125 171.472656 39.796875 171.296875 39.417969 171.296875 C 39.035156 171.296875 38.75 171.472656 38.566406 171.824219 C 38.382812 172.171875 38.269531 172.558594 38.226562 172.984375 C 38.183594 173.410156 38.164062 173.878906 38.164062 174.386719 C 38.164062 174.761719 38.171875 175.117188 38.1875 175.449219 C 38.207031 175.785156 38.253906 176.128906 38.332031 176.480469 C 38.410156 176.835938 38.539062 177.132812 38.714844 177.375 C 38.894531 177.617188 39.128906 177.738281 39.417969 177.738281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 166.601562 C 38.589844 166.601562 38.027344 166.261719 37.730469 165.582031 C 37.433594 164.898438 37.285156 164.089844 37.285156 163.152344 C 37.285156 162.566406 37.335938 162.015625 37.441406 161.496094 C 37.546875 160.976562 37.757812 160.539062 38.078125 160.175781 C 38.394531 159.816406 38.84375 159.636719 39.417969 159.636719 C 39.863281 159.636719 40.226562 159.742188 40.511719 159.960938 C 40.792969 160.175781 41.007812 160.460938 41.15625 160.804688 C 41.304688 161.152344 41.40625 161.519531 41.460938 161.914062 C 41.515625 162.304688 41.542969 162.71875 41.542969 163.152344 C 41.542969 163.734375 41.492188 164.277344 41.382812 164.785156 C 41.277344 165.289062 41.066406 165.71875 40.753906 166.074219 C 40.441406 166.425781 39.996094 166.601562 39.417969 166.601562 Z M 39.417969 166.339844 C 39.792969 166.339844 40.074219 166.148438 40.257812 165.761719 C 40.445312 165.378906 40.558594 164.949219 40.601562 164.480469 C 40.644531 164.011719 40.664062 163.515625 40.664062 162.988281 C 40.664062 162.480469 40.644531 162.011719 40.601562 161.585938 C 40.558594 161.15625 40.445312 160.769531 40.261719 160.421875 C 40.078125 160.074219 39.796875 159.898438 39.417969 159.898438 C 39.035156 159.898438 38.75 160.074219 38.566406 160.421875 C 38.382812 160.773438 38.269531 161.160156 38.226562 161.585938 C 38.183594 162.011719 38.164062 162.480469 38.164062 162.988281 C 38.164062 163.363281 38.171875 163.71875 38.1875 164.050781 C 38.207031 164.386719 38.253906 164.730469 38.332031 165.082031 C 38.410156 165.4375 38.539062 165.734375 38.714844 165.976562 C 38.894531 166.21875 39.128906 166.339844 39.417969 166.339844 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 27.820312 154.980469 L 27.820312 154.625 C 28.664062 154.625 29.085938 154.515625 29.085938 154.300781 L 29.085938 148.988281 C 28.738281 149.15625 28.296875 149.238281 27.761719 149.238281 L 27.761719 148.886719 C 28.589844 148.886719 29.214844 148.667969 29.636719 148.234375 L 29.777344 148.234375 C 29.800781 148.234375 29.824219 148.246094 29.84375 148.261719 C 29.867188 148.28125 29.878906 148.300781 29.878906 148.324219 L 29.878906 154.300781 C 29.878906 154.515625 30.296875 154.625 31.144531 154.625 L 31.144531 154.980469 L 27.820312 154.980469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 32.3125 153.445312 C 32.3125 153.039062 32.445312 152.679688 32.710938 152.367188 C 32.976562 152.054688 33.316406 151.796875 33.734375 151.589844 L 33.359375 151.347656 C 33.128906 151.195312 32.941406 150.992188 32.796875 150.742188 C 32.652344 150.488281 32.582031 150.226562 32.582031 149.949219 C 32.582031 149.625 32.664062 149.332031 32.835938 149.070312 C 33.007812 148.8125 33.230469 148.605469 33.511719 148.460938 C 33.792969 148.308594 34.09375 148.234375 34.414062 148.234375 C 34.714844 148.234375 35.003906 148.296875 35.28125 148.421875 C 35.558594 148.542969 35.789062 148.71875 35.96875 148.945312 C 36.148438 149.171875 36.238281 149.441406 36.238281 149.753906 C 36.238281 149.980469 36.183594 150.191406 36.082031 150.386719 C 35.972656 150.582031 35.828125 150.757812 35.640625 150.910156 C 35.453125 151.066406 35.253906 151.199219 35.042969 151.308594 L 35.621094 151.675781 C 35.890625 151.851562 36.101562 152.082031 36.269531 152.363281 C 36.429688 152.648438 36.515625 152.945312 36.515625 153.257812 C 36.515625 153.625 36.414062 153.960938 36.21875 154.261719 C 36.019531 154.5625 35.761719 154.792969 35.4375 154.957031 C 35.117188 155.121094 34.773438 155.203125 34.414062 155.203125 C 34.066406 155.203125 33.730469 155.132812 33.40625 154.988281 C 33.078125 154.847656 32.816406 154.644531 32.613281 154.375 C 32.410156 154.105469 32.3125 153.796875 32.3125 153.445312 Z M 32.855469 153.445312 C 32.855469 153.710938 32.929688 153.957031 33.078125 154.175781 C 33.222656 154.398438 33.417969 154.570312 33.660156 154.695312 C 33.902344 154.820312 34.152344 154.882812 34.414062 154.882812 C 34.804688 154.882812 35.160156 154.769531 35.480469 154.539062 C 35.800781 154.308594 35.960938 154.007812 35.960938 153.628906 C 35.960938 153.5 35.9375 153.371094 35.886719 153.242188 C 35.835938 153.117188 35.765625 153.003906 35.675781 152.898438 C 35.585938 152.792969 35.484375 152.710938 35.371094 152.644531 L 34.011719 151.765625 C 33.800781 151.875 33.605469 152.015625 33.429688 152.1875 C 33.253906 152.359375 33.113281 152.550781 33.011719 152.765625 C 32.90625 152.980469 32.855469 153.207031 32.855469 153.445312 Z M 33.554688 150.351562 L 34.777344 151.144531 C 35.0625 150.980469 35.296875 150.78125 35.480469 150.546875 C 35.660156 150.3125 35.753906 150.046875 35.753906 149.753906 C 35.753906 149.527344 35.6875 149.320312 35.5625 149.128906 C 35.433594 148.941406 35.269531 148.792969 35.0625 148.6875 C 34.859375 148.582031 34.636719 148.53125 34.402344 148.53125 C 34.199219 148.53125 33.996094 148.570312 33.789062 148.648438 C 33.582031 148.722656 33.410156 148.84375 33.277344 149 C 33.140625 149.160156 33.074219 149.34375 33.074219 149.554688 C 33.074219 149.871094 33.234375 150.136719 33.554688 150.351562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 39.417969 155.203125 C 38.589844 155.203125 38.027344 154.863281 37.730469 154.179688 C 37.433594 153.5 37.285156 152.691406 37.285156 151.753906 C 37.285156 151.167969 37.335938 150.613281 37.441406 150.097656 C 37.546875 149.578125 37.757812 149.140625 38.078125 148.777344 C 38.394531 148.417969 38.84375 148.234375 39.417969 148.234375 C 39.863281 148.234375 40.226562 148.34375 40.511719 148.5625 C 40.792969 148.777344 41.007812 149.058594 41.15625 149.40625 C 41.304688 149.75 41.40625 150.121094 41.460938 150.511719 C 41.515625 150.90625 41.542969 151.320312 41.542969 151.753906 C 41.542969 152.335938 41.492188 152.878906 41.382812 153.386719 C 41.277344 153.890625 41.066406 154.320312 40.753906 154.675781 C 40.441406 155.027344 39.996094 155.203125 39.417969 155.203125 Z M 39.417969 154.941406 C 39.792969 154.941406 40.074219 154.75 40.257812 154.363281 C 40.445312 153.976562 40.558594 153.550781 40.601562 153.082031 C 40.644531 152.613281 40.664062 152.117188 40.664062 151.589844 C 40.664062 151.082031 40.644531 150.613281 40.601562 150.183594 C 40.558594 149.757812 40.445312 149.367188 40.261719 149.023438 C 40.078125 148.671875 39.796875 148.5 39.417969 148.5 C 39.035156 148.5 38.75 148.675781 38.566406 149.023438 C 38.382812 149.375 38.269531 149.761719 38.226562 150.1875 C 38.183594 150.613281 38.164062 151.082031 38.164062 151.589844 C 38.164062 151.964844 38.171875 152.316406 38.1875 152.652344 C 38.207031 152.984375 38.253906 153.332031 38.332031 153.683594 C 38.410156 154.035156 38.539062 154.335938 38.714844 154.578125 C 38.894531 154.820312 39.128906 154.941406 39.417969 154.941406 "/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="17.9211" y="185.9957"/>
<use xlink:href="#glyph0-2" x="17.9211" y="179.88446"/>
<use xlink:href="#glyph0-3" x="17.9211" y="174.323331"/>
<use xlink:href="#glyph0-4" x="17.9211" y="171.542767"/>
<use xlink:href="#glyph0-5" x="17.9211" y="168.762203"/>
<use xlink:href="#glyph0-7" x="17.9211" y="161.540737"/>
</g>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.727064 -537.215972 L 1014.05086 -537.215972 L 1035.026374 -537.176908 L 1088.812747 -537.176908 L 1099.554397 -537.137843 L 1121.037698 -537.137843 L 1131.818409 -537.098779 L 1142.560059 -537.098779 L 1164.04336 -537.02065 L 1174.824071 -537.02065 L 1185.565722 -536.981585 L 1196.307372 -536.903456 L 1207.088083 -536.864391 L 1228.571384 -536.708133 L 1239.313034 -536.590939 L 1246.226751 -536.473746 L 1246.734538 -536.473746 L 1255.835646 -536.278423 L 1256.382493 -536.278423 L 1263.843058 -536.044035 L 1264.350845 -536.044035 L 1270.44429 -535.770583 L 1270.717714 -535.770583 L 1270.952077 -535.731519 L 1275.912767 -535.419002 L 1276.186191 -535.379938 L 1276.420554 -535.379938 L 1280.44379 -534.989292 L 1280.717214 -534.950227 L 1280.951577 -534.911163 L 1284.193603 -534.403323 L 1284.467027 -534.364259 L 1284.70139 -534.28613 L 1287.318447 -533.661097 L 1287.59187 -533.582967 L 1287.826234 -533.504838 L 1289.896443 -532.645418 L 1290.130806 -532.528224 L 1290.40423 -532.41103 L 1292.005712 -531.317222 L 1292.55256 -530.848447 L 1293.802497 -529.403058 L 1294.036861 -529.012413 L 1294.310284 -528.582702 L 1295.247738 -526.551345 L 1295.521161 -525.848182 L 1295.794585 -524.988762 L 1296.458615 -521.98079 L 1296.732038 -520.457272 L 1297.005462 -518.582172 L 1297.474189 -513.660036 L 1297.747613 -509.831709 L 1297.981976 -504.636121 L 1298.29446 -495.260624 L 1298.567884 -483.189672 L 1298.841308 -465.180905 L 1298.99755 -449.867593 L 1299.270974 -423.733395 L 1299.505337 -397.521069 L 1299.70064 -382.090563 L 1299.935003 -363.847409 L 1300.208427 -351.581134 L 1300.520911 -342.049379 L 1300.794335 -336.775662 L 1301.028699 -332.908269 L 1301.536486 -327.947069 L 1301.770849 -326.071969 L 1302.044273 -324.509386 L 1302.747363 -321.501415 L 1302.981726 -320.641994 L 1303.25515 -319.899767 L 1304.192603 -317.86841 L 1304.466027 -317.438699 L 1304.739451 -317.048054 L 1305.989388 -315.602664 L 1306.223751 -315.368277 L 1306.497175 -315.13389 L 1308.098658 -314.040082 L 1308.372081 -313.922888 L 1308.645505 -313.76663 L 1310.676654 -312.946274 L 1310.950077 -312.868145 L 1311.184441 -312.790015 L 1313.801497 -312.164982 L 1314.035861 -312.086853 L 1314.309285 -312.047789 L 1317.55131 -311.539949 L 1317.824734 -311.500885 L 1318.059097 -311.46182 L 1322.082333 -311.071174 L 1322.355757 -311.03211 L 1322.629181 -311.03211 L 1327.55081 -310.680529 L 1328.097658 -310.680529 L 1334.152042 -310.407077 L 1334.425466 -310.407077 L 1334.69889 -310.368012 L 1342.159455 -310.172689 L 1342.393818 -310.133625 L 1342.667242 -310.133625 L 1351.768349 -309.977366 L 1352.276136 -309.977366 L 1357.588371 -309.899237 L 1368.369082 -309.742979 L 1400.594033 -309.508591 L 1411.374744 -309.469527 L 1432.858045 -309.391398 L 1443.599695 -309.391398 L 1454.341345 -309.352333 L 1465.122056 -309.352333 L 1475.863707 -309.313269 L 1497.386068 -309.313269 L 1508.127719 -309.274204 L 1551.133381 -309.274204 L 1561.875031 -309.235139 L 1584.256725 -309.235139 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.727064 -311.149303 L 467.359445 -311.383691 L 478.101095 -311.735272 L 488.842745 -312.125918 L 499.584396 -312.633757 L 510.326046 -313.180661 L 521.067697 -313.844759 L 531.809347 -314.62605 L 542.550997 -315.524535 L 553.292648 -316.579279 L 564.034298 -317.79028 L 574.775949 -319.196605 L 585.478539 -320.837317 L 596.220189 -322.751481 L 606.961839 -324.978161 L 617.70349 -327.517358 L 628.44514 -330.486266 L 639.186791 -333.884883 L 649.928441 -337.752276 L 660.670091 -342.127508 L 671.411742 -347.010579 L 682.153392 -352.323361 L 692.895043 -358.026788 L 703.636693 -363.925538 L 714.339283 -369.863353 L 725.080933 -375.644909 L 735.822584 -381.113949 L 746.564234 -386.114214 L 757.305885 -390.567575 L 768.047535 -394.513097 L 778.789186 -397.911714 L 789.530836 -400.763428 L 800.272486 -403.185431 L 811.014137 -405.099595 L 821.755787 -406.662178 L 832.497438 -407.834115 L 843.200027 -408.654471 L 853.941678 -409.084181 L 864.683328 -409.24044 L 875.424979 -409.045117 L 886.166629 -408.537277 L 896.90828 -407.638792 L 907.64993 -406.427791 L 918.39158 -404.826143 L 929.133231 -402.794786 L 939.874881 -400.294653 L 950.616532 -397.36481 L 961.319122 -393.888064 L 972.060772 -389.864413 L 982.802422 -385.293858 L 993.544073 -380.215464 L 1004.285723 -374.668295 L 1015.027374 -368.847674 L 1025.769024 -362.909859 L 1036.510674 -357.011109 L 1047.252325 -351.385811 L 1057.993975 -346.112094 L 1068.735626 -341.346216 L 1079.438216 -337.049114 L 1090.218927 -333.25985 L 1100.921516 -329.939362 L 1111.663167 -327.048584 L 1122.404817 -324.548451 L 1133.146468 -322.3999 L 1143.888118 -320.5248 L 1154.629769 -318.923153 L 1165.371419 -317.555893 L 1176.113069 -316.383956 L 1186.85472 -315.368277 L 1197.59637 -314.469792 L 1208.29896 -313.727565 L 1219.04061 -313.102532 L 1229.782261 -312.516563 L 1240.523911 -312.047789 L 1251.265562 -311.657143 L 1262.007212 -311.305562 L 1283.490513 -310.758658 L 1294.232163 -310.52427 L 1454.966314 -309.352333 L 1584.256725 -309.313269 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 164.421875 63.347656 L 276.582031 63.347656 L 276.582031 24.339844 L 164.421875 24.339844 Z M 164.421875 63.347656 "/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1486.602227 L 2765.642968 -1486.602227 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1876.701028 L 2765.642968 -1876.701028 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -1486.602227 L 1964.589271 -1497.813759 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1486.602227 L 2765.642968 -1497.813759 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -1876.701028 L 1964.589271 -1865.489496 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1876.701028 L 2765.642968 -1865.489496 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1486.602227 L 1644.136543 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1804.362907 -1486.602227 L 1804.362907 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -1486.602227 L 1964.589271 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2124.776574 -1486.602227 L 2124.776574 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2285.002937 -1486.602227 L 2285.002937 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2445.229301 -1486.602227 L 2445.229301 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2605.455665 -1486.602227 L 2605.455665 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1486.602227 L 2765.642968 -1492.227526 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1876.701028 L 1644.136543 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1804.362907 -1876.701028 L 1804.362907 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -1876.701028 L 1964.589271 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2124.776574 -1876.701028 L 2124.776574 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2285.002937 -1876.701028 L 2285.002937 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2445.229301 -1876.701028 L 2445.229301 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2605.455665 -1876.701028 L 2605.455665 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1876.701028 L 2765.642968 -1871.07573 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1486.602227 L 1644.136543 -1876.701028 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1486.602227 L 2765.642968 -1876.701028 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1498.087211 L 1655.34692 -1498.087211 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1650.517165 L 1655.34692 -1650.517165 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1802.986183 L 1655.34692 -1802.986183 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1498.087211 L 2754.432591 -1498.087211 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1650.517165 L 2754.432591 -1650.517165 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1802.986183 L 2754.432591 -1802.986183 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<g style="fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="198.369" y="20.777"/>
<use xlink:href="#glyph1-2" x="204.480894" y="20.777"/>
<use xlink:href="#glyph1-3" x="207.811927" y="20.777"/>
<use xlink:href="#glyph1-4" x="213.37365" y="20.777"/>
<use xlink:href="#glyph1-5" x="221.706233" y="20.777"/>
<use xlink:href="#glyph1-6" x="224.487095" y="20.777"/>
<use xlink:href="#glyph1-1" x="227.267957" y="20.777"/>
<use xlink:href="#glyph1-8" x="233.379851" y="20.777"/>
</g>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.019362 -1487.188196 L 1716.828221 -1501.056118 L 1957.167767 -1546.761666 L 2037.241888 -1562.035913 L 2197.468252 -1592.506278 L 2218.404705 -1596.490864 L 2229.107295 -1598.561286 L 2239.848945 -1600.592644 L 2250.551535 -1602.624002 L 2261.254125 -1604.694424 L 2271.995775 -1606.764846 L 2293.400955 -1610.905691 L 2304.142605 -1612.976113 L 2325.547785 -1617.195086 L 2336.289436 -1619.343638 L 2346.992025 -1621.531254 L 2357.694615 -1623.757934 L 2368.436266 -1626.062744 L 2379.138856 -1628.523812 L 2389.841445 -1631.063009 L 2400.583096 -1633.875658 L 2411.285686 -1636.961759 L 2422.027336 -1640.47757 L 2428.901992 -1643.094897 L 2429.136356 -1643.173026 L 2429.40978 -1643.290219 L 2438.471826 -1647.391999 L 2439.018674 -1647.626387 L 2446.440178 -1651.806296 L 2446.674541 -1651.962554 L 2446.947965 -1652.118812 L 2453.00235 -1656.37685 L 2453.275774 -1656.572173 L 2453.549198 -1656.806561 L 2458.470826 -1661.181793 L 2458.978614 -1661.689632 L 2463.00185 -1666.221122 L 2463.236213 -1666.533639 L 2463.509637 -1666.88522 L 2466.751662 -1671.494839 L 2466.986026 -1671.92455 L 2467.25945 -1672.35426 L 2469.837446 -1677.120137 L 2470.071809 -1677.627977 L 2470.345233 -1678.174881 L 2472.415442 -1683.097017 L 2472.688866 -1683.761114 L 2472.923229 -1684.503341 L 2474.524711 -1689.503606 L 2474.798135 -1690.441156 L 2475.032498 -1691.378706 L 2476.282436 -1696.574293 L 2476.55586 -1697.785295 L 2476.829284 -1699.074426 L 2477.766737 -1704.465337 L 2478.0011 -1706.145113 L 2478.274524 -1707.942083 L 2478.977614 -1713.528317 L 2479.211977 -1715.989385 L 2479.485401 -1718.645776 L 2479.954127 -1724.505461 L 2480.227551 -1728.177531 L 2480.500975 -1732.35744 L 2480.813459 -1738.138996 L 2481.047823 -1743.412713 L 2481.321246 -1748.412978 L 2481.477489 -1750.874046 L 2481.750912 -1752.319435 L 2481.985276 -1750.874046 L 2482.180578 -1748.412978 L 2482.414942 -1743.334584 L 2482.688366 -1737.943674 L 2483.00085 -1732.044923 L 2483.274274 -1727.747821 L 2483.508637 -1723.958557 L 2484.016424 -1717.903549 L 2484.250787 -1715.0909 L 2484.524211 -1712.590767 L 2485.227301 -1706.692017 L 2485.461664 -1704.816918 L 2485.735088 -1702.980883 L 2486.672541 -1697.277456 L 2486.945965 -1695.871131 L 2487.180328 -1694.542936 L 2488.430266 -1688.878573 L 2488.70369 -1687.82383 L 2488.938053 -1686.808151 L 2490.578596 -1681.182853 L 2490.812959 -1680.362497 L 2491.086383 -1679.542141 L 2493.117532 -1673.877778 L 2493.390955 -1673.21368 L 2493.664379 -1672.588647 L 2496.242375 -1666.846155 L 2496.476739 -1666.338316 L 2496.750162 -1665.791412 L 2499.992188 -1659.931726 L 2500.226551 -1659.502016 L 2500.499975 -1659.072306 L 2504.484151 -1653.056362 L 2504.757575 -1652.704781 L 2504.991938 -1652.3532 L 2509.952627 -1646.063804 L 2510.226051 -1645.751287 L 2510.460414 -1645.477835 L 2516.514799 -1638.875923 L 2516.788223 -1638.641536 L 2517.061647 -1638.368084 L 2524.483151 -1631.375525 L 2524.756575 -1631.141138 L 2524.990938 -1630.945815 L 2534.092045 -1623.367288 L 2534.326409 -1623.171966 L 2534.599833 -1622.976643 L 2539.873006 -1618.913927 L 2550.614657 -1611.257272 L 2561.317247 -1604.030326 L 2572.019837 -1597.115897 L 2582.761487 -1590.435856 L 2593.464077 -1583.912072 L 2604.166667 -1577.505483 L 2614.908317 -1571.177022 L 2625.610907 -1564.887627 L 2636.313497 -1558.67636 L 2647.055147 -1552.465093 L 2657.757737 -1546.292891 L 2668.499388 -1540.120689 L 2689.904567 -1527.854414 L 2700.646218 -1521.682212 L 2711.348808 -1515.588139 L 2722.051397 -1509.455001 L 2732.793048 -1503.321864 L 2743.495638 -1497.188726 L 2754.198228 -1491.094653 L 2762.127519 -1486.563163 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.019362 -1817.557268 L 1652.612682 -1819.19798 L 1663.354332 -1821.229338 L 1684.759512 -1825.292053 L 1695.423041 -1827.323411 L 1706.125631 -1829.354768 L 1716.867282 -1831.386126 L 1727.530811 -1833.378419 L 1738.233401 -1835.370712 L 1748.935991 -1837.40207 L 1759.677641 -1839.355298 L 1770.34117 -1841.347591 L 1791.74635 -1845.175919 L 1802.488001 -1847.011954 L 1813.15153 -1848.808924 L 1823.85412 -1850.488701 L 1834.55671 -1852.051284 L 1845.29836 -1853.457608 L 1855.961889 -1854.629545 L 1866.664479 -1855.567095 L 1877.367069 -1856.192128 L 1888.10872 -1856.46558 L 1898.772249 -1856.387451 L 1909.474839 -1855.957741 L 1920.177429 -1855.176449 L 1930.880018 -1854.082641 L 1941.582608 -1852.793511 L 1952.285198 -1851.309057 L 1962.987788 -1849.668345 L 1973.690378 -1847.949504 L 1984.392968 -1846.113469 L 1995.095558 -1844.23837 L 2005.798148 -1842.324206 L 2016.500737 -1840.370977 L 2027.203327 -1838.378684 L 2037.905917 -1836.347326 L 2048.647568 -1834.315969 L 2059.311097 -1832.284611 L 2070.013687 -1830.214189 L 2080.716277 -1828.104702 L 2091.457927 -1825.995215 L 2102.121456 -1823.846664 L 2112.824046 -1821.659048 L 2123.526636 -1819.393303 L 2134.229226 -1817.010364 L 2144.931816 -1814.549296 L 2155.634406 -1811.93197 L 2166.336996 -1809.158385 L 2177.039586 -1806.072284 L 2187.742175 -1802.751796 L 2198.444765 -1799.040662 L 2209.147355 -1795.017011 L 2219.889006 -1790.602714 L 2230.552535 -1785.836837 L 2241.255125 -1780.797507 L 2251.957715 -1775.484726 L 2262.660304 -1769.976621 L 2273.362894 -1764.312259 L 2284.065484 -1758.530702 L 2294.768074 -1752.671017 L 2305.470664 -1746.733202 L 2316.173254 -1740.756323 L 2326.875844 -1734.740379 L 2337.578434 -1728.68537 L 2348.281023 -1722.669426 L 2369.686203 -1710.481281 L 2380.388793 -1704.426272 L 2391.091383 -1698.293135 L 2433.901742 -1673.916843 L 2444.604332 -1667.783705 L 2466.009512 -1655.595559 L 2476.712102 -1649.462422 L 2636.938466 -1558.012262 L 2762.127519 -1486.563163 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 164.421875 102.730469 L 276.582031 102.730469 L 276.582031 67.847656 L 164.421875 67.847656 Z M 164.421875 102.730469 "/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1092.753228 L 2765.642968 -1092.753228 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1441.599842 L 2765.642968 -1441.599842 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -1092.753228 L 1964.589271 -1103.96476 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1092.753228 L 2765.642968 -1103.96476 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -1441.599842 L 1964.589271 -1430.388311 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1441.599842 L 2765.642968 -1430.388311 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1092.753228 L 1644.136543 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1804.362907 -1092.753228 L 1804.362907 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -1092.753228 L 1964.589271 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2124.776574 -1092.753228 L 2124.776574 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2285.002937 -1092.753228 L 2285.002937 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2445.229301 -1092.753228 L 2445.229301 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2605.455665 -1092.753228 L 2605.455665 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1092.753228 L 2765.642968 -1098.378527 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1441.599842 L 1644.136543 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1804.362907 -1441.599842 L 1804.362907 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -1441.599842 L 1964.589271 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2124.776574 -1441.599842 L 2124.776574 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2285.002937 -1441.599842 L 2285.002937 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2445.229301 -1441.599842 L 2445.229301 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2605.455665 -1441.599842 L 2605.455665 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1441.599842 L 2765.642968 -1435.974544 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1092.753228 L 1644.136543 -1441.599842 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1092.753228 L 2765.642968 -1441.599842 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1096.190911 L 1655.34692 -1096.190911 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1181.664191 L 1655.34692 -1181.664191 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1267.176535 L 1655.34692 -1267.176535 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1352.68888 L 1655.34692 -1352.68888 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1438.16216 L 1655.34692 -1438.16216 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1096.190911 L 2754.432591 -1096.190911 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1181.664191 L 2754.432591 -1181.664191 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1267.176535 L 2754.432591 -1267.176535 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1352.68888 L 2754.432591 -1352.68888 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1438.16216 L 2754.432591 -1438.16216 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.019362 -1438.16216 L 2117.35507 -1438.16216 L 2197.468252 -1438.123096 L 2239.848945 -1438.123096 L 2250.551535 -1438.084031 L 2271.995775 -1438.084031 L 2282.698365 -1438.044966 L 2304.142605 -1438.044966 L 2325.547785 -1437.966837 L 2336.289436 -1437.927773 L 2357.694615 -1437.849644 L 2368.436266 -1437.771514 L 2379.138856 -1437.73245 L 2389.841445 -1437.654321 L 2400.583096 -1437.537127 L 2411.285686 -1437.380869 L 2422.027336 -1437.22461 L 2428.901992 -1437.068352 L 2429.40978 -1437.068352 L 2438.471826 -1436.7949 L 2438.74525 -1436.755836 L 2439.018674 -1436.755836 L 2446.440178 -1436.443319 L 2446.674541 -1436.404254 L 2446.947965 -1436.404254 L 2453.00235 -1436.013609 L 2453.275774 -1435.974544 L 2453.549198 -1435.974544 L 2458.470826 -1435.466705 L 2458.74425 -1435.42764 L 2458.978614 -1435.388576 L 2463.00185 -1434.802607 L 2463.236213 -1434.763542 L 2463.509637 -1434.685413 L 2466.751662 -1433.943186 L 2466.986026 -1433.865057 L 2467.25945 -1433.786928 L 2469.837446 -1432.810314 L 2470.071809 -1432.69312 L 2470.345233 -1432.575927 L 2472.415442 -1431.32586 L 2472.688866 -1431.130537 L 2472.923229 -1430.935215 L 2474.524711 -1429.333567 L 2474.798135 -1428.981986 L 2475.032498 -1428.630405 L 2476.282436 -1426.442789 L 2476.55586 -1425.895885 L 2476.829284 -1425.231787 L 2477.766737 -1422.184751 L 2478.0011 -1421.090943 L 2478.274524 -1419.840877 L 2478.977614 -1415.309386 L 2479.211977 -1413.004577 L 2479.485401 -1410.191928 L 2479.954127 -1402.808724 L 2480.227551 -1397.105297 L 2480.500975 -1389.292382 L 2480.813459 -1375.229137 L 2481.047823 -1357.103176 L 2481.321246 -1330.070494 L 2481.477489 -1307.178655 L 2481.750912 -1267.957827 L 2481.985276 -1228.619804 L 2482.180578 -1205.493579 L 2482.414942 -1178.109315 L 2482.688366 -1159.709902 L 2483.00085 -1145.412269 L 2483.274274 -1137.482162 L 2483.508637 -1131.700605 L 2484.016424 -1124.278337 L 2484.250787 -1121.426623 L 2484.524211 -1119.121813 L 2485.227301 -1114.551259 L 2485.461664 -1113.301192 L 2485.735088 -1112.207384 L 2486.672541 -1109.121283 L 2486.945965 -1108.49625 L 2487.180328 -1107.910282 L 2488.430266 -1105.722666 L 2488.70369 -1105.371085 L 2488.938053 -1105.058568 L 2490.812959 -1103.183469 L 2491.086383 -1103.02721 L 2493.117532 -1101.777144 L 2493.664379 -1101.542757 L 2496.242375 -1100.566143 L 2496.476739 -1100.488013 L 2496.750162 -1100.409884 L 2499.992188 -1099.628593 L 2500.226551 -1099.589528 L 2500.499975 -1099.550464 L 2504.484151 -1098.925431 L 2504.757575 -1098.925431 L 2504.991938 -1098.886366 L 2509.952627 -1098.378527 L 2510.226051 -1098.378527 L 2510.460414 -1098.339462 L 2516.514799 -1097.948816 L 2516.788223 -1097.948816 L 2517.061647 -1097.909752 L 2524.483151 -1097.597235 L 2524.756575 -1097.558171 L 2524.990938 -1097.558171 L 2534.092045 -1097.284719 L 2534.599833 -1097.284719 L 2539.873006 -1097.167525 L 2550.614657 -1096.972202 L 2561.317247 -1096.815944 L 2572.019837 -1096.737815 L 2582.761487 -1096.620621 L 2593.464077 -1096.542492 L 2604.166667 -1096.503427 L 2614.908317 -1096.464363 L 2636.313497 -1096.386233 L 2647.055147 -1096.347169 L 2657.757737 -1096.308104 L 2679.201977 -1096.308104 L 2689.904567 -1096.26904 L 2700.646218 -1096.26904 L 2711.348808 -1096.229975 L 2743.495638 -1096.229975 L 2754.198228 -1096.190911 L 2765.79921 -1096.190911 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.019362 -1099.042624 L 1652.612682 -1099.394205 L 1663.354332 -1099.941109 L 1674.056922 -1100.566143 L 1684.759512 -1101.308369 L 1695.423041 -1102.128725 L 1706.125631 -1103.10534 L 1716.867282 -1104.277277 L 1727.530811 -1105.605472 L 1738.233401 -1107.168055 L 1748.935991 -1109.00409 L 1759.677641 -1111.113577 L 1770.34117 -1113.613709 L 1781.04376 -1116.465423 L 1791.74635 -1119.785911 L 1802.488001 -1123.614239 L 1813.15153 -1128.0676 L 1823.85412 -1133.185059 L 1834.55671 -1138.966615 L 1845.29836 -1145.529463 L 1855.961889 -1152.834538 L 1866.664479 -1160.842775 L 1877.367069 -1169.358851 L 1888.10872 -1178.226509 L 1898.772249 -1187.133231 L 1909.474839 -1195.84463 L 1920.177429 -1204.009125 L 1930.880018 -1211.509523 L 1941.582608 -1218.228629 L 1952.285198 -1224.127379 L 1962.987788 -1229.205773 L 1973.690378 -1233.502876 L 1984.392968 -1237.096816 L 1995.095558 -1240.026659 L 2005.798148 -1242.331469 L 2016.500737 -1244.089374 L 2027.203327 -1245.300376 L 2037.905917 -1246.003538 L 2048.647568 -1246.198861 L 2059.311097 -1245.925409 L 2070.013687 -1245.144118 L 2080.716277 -1243.815922 L 2091.457927 -1241.979887 L 2102.121456 -1239.557884 L 2112.824046 -1236.510848 L 2123.526636 -1232.838778 L 2134.229226 -1228.385417 L 2144.931816 -1223.150764 L 2155.634406 -1217.134821 L 2166.336996 -1210.259456 L 2177.039586 -1202.641865 L 2187.742175 -1194.360176 L 2198.444765 -1185.609712 L 2209.147355 -1176.70299 L 2219.889006 -1167.874397 L 2230.552535 -1159.397386 L 2241.255125 -1151.506342 L 2251.957715 -1144.357526 L 2262.660304 -1137.911872 L 2273.362894 -1132.247509 L 2284.065484 -1127.247244 L 2294.768074 -1122.911077 L 2305.470664 -1119.160878 L 2316.173254 -1115.957583 L 2326.875844 -1113.144934 L 2337.578434 -1110.722931 L 2348.281023 -1108.652509 L 2358.983613 -1106.894603 L 2369.686203 -1105.371085 L 2380.388793 -1104.042889 L 2391.091383 -1102.949081 L 2401.793973 -1101.972467 L 2412.496563 -1101.152111 L 2423.199153 -1100.448949 L 2433.901742 -1099.823916 L 2444.604332 -1099.316076 L 2455.306922 -1098.847301 L 2476.712102 -1098.144139 L 2636.938466 -1096.386233 L 2765.79921 -1096.308104 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 164.421875 147.738281 L 276.582031 147.738281 L 276.582031 108.730469 L 164.421875 108.730469 Z M 164.421875 147.738281 "/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -642.651248 L 2765.642968 -642.651248 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1032.750048 L 2765.642968 -1032.750048 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -642.651248 L 1964.589271 -653.86278 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -642.651248 L 2765.642968 -653.86278 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -1032.750048 L 1964.589271 -1021.538517 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1032.750048 L 2765.642968 -1021.538517 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -642.651248 L 1644.136543 -648.237482 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1804.362907 -642.651248 L 1804.362907 -648.237482 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -642.651248 L 1964.589271 -648.237482 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2124.776574 -642.651248 L 2124.776574 -648.237482 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2285.002937 -642.651248 L 2285.002937 -648.237482 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2445.229301 -642.651248 L 2445.229301 -648.237482 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2605.455665 -642.651248 L 2605.455665 -648.237482 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -642.651248 L 2765.642968 -648.237482 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -1032.750048 L 1644.136543 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1804.362907 -1032.750048 L 1804.362907 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -1032.750048 L 1964.589271 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2124.776574 -1032.750048 L 2124.776574 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2285.002937 -1032.750048 L 2285.002937 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2445.229301 -1032.750048 L 2445.229301 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2605.455665 -1032.750048 L 2605.455665 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -1032.750048 L 2765.642968 -1027.12475 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -642.651248 L 1644.136543 -1032.750048 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -642.651248 L 2765.642968 -1032.750048 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -654.136232 L 1655.34692 -654.136232 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -806.566186 L 1655.34692 -806.566186 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -959.035204 L 1655.34692 -959.035204 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -654.136232 L 2754.432591 -654.136232 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -806.566186 L 2754.432591 -806.566186 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -959.035204 L 2754.432591 -959.035204 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.019362 -867.54598 L 2218.404705 -867.54598 L 2229.107295 -867.585045 L 2282.698365 -867.585045 L 2293.400955 -867.624109 L 2304.142605 -867.624109 L 2325.547785 -867.702238 L 2336.289436 -867.741303 L 2346.992025 -867.819432 L 2357.694615 -867.936626 L 2368.436266 -868.092884 L 2379.138856 -868.288207 L 2389.841445 -868.522594 L 2400.583096 -868.91324 L 2411.285686 -869.421079 L 2422.027336 -870.163306 L 2428.901992 -870.827404 L 2429.136356 -870.866468 L 2429.40978 -870.866468 L 2438.471826 -872.07747 L 2438.74525 -872.07747 L 2439.018674 -872.116535 L 2446.440178 -873.522859 L 2446.674541 -873.561924 L 2446.947965 -873.640053 L 2453.00235 -875.163571 L 2453.549198 -875.319829 L 2458.470826 -877.077735 L 2458.74425 -877.155864 L 2458.978614 -877.273058 L 2463.00185 -879.148157 L 2463.236213 -879.265351 L 2463.509637 -879.421609 L 2466.751662 -881.452967 L 2466.986026 -881.609225 L 2467.25945 -881.804548 L 2469.837446 -883.9531 L 2470.071809 -884.187487 L 2470.345233 -884.421874 L 2472.415442 -886.687619 L 2472.688866 -887.000136 L 2472.923229 -887.351717 L 2474.524711 -889.695591 L 2474.798135 -890.125302 L 2475.032498 -890.594076 L 2476.282436 -893.055144 L 2476.55586 -893.680178 L 2476.829284 -894.266146 L 2477.766737 -896.883472 L 2478.0011 -897.703828 L 2478.274524 -898.602313 L 2478.977614 -901.336833 L 2479.211977 -902.547835 L 2479.485401 -903.87603 L 2479.954127 -906.766809 L 2480.227551 -908.602843 L 2480.500975 -910.673266 L 2480.813459 -913.564044 L 2481.047823 -916.103241 L 2481.321246 -918.212728 L 2481.477489 -918.994019 L 2481.750912 -919.228407 L 2481.985276 -918.91589 L 2482.180578 -918.134599 L 2482.414942 -915.907918 L 2482.688366 -913.290592 L 2483.00085 -910.28262 L 2483.274274 -908.095004 L 2483.508637 -906.141776 L 2484.016424 -903.055674 L 2484.250787 -901.64935 L 2484.524211 -900.321155 L 2485.227301 -897.313183 L 2485.461664 -896.336568 L 2485.735088 -895.399019 L 2486.672541 -892.430111 L 2486.945965 -891.726949 L 2487.180328 -891.023787 L 2488.430266 -888.054879 L 2488.70369 -887.507975 L 2488.938053 -887.000136 L 2490.812959 -883.562454 L 2491.086383 -883.132744 L 2493.117532 -880.124772 L 2493.664379 -879.421609 L 2496.242375 -876.296444 L 2496.476739 -876.022992 L 2496.750162 -875.710475 L 2499.992188 -872.50718 L 2500.226551 -872.233728 L 2500.499975 -871.999341 L 2504.484151 -868.600723 L 2504.757575 -868.4054 L 2504.991938 -868.210078 L 2509.952627 -864.616137 L 2510.226051 -864.420814 L 2510.460414 -864.264556 L 2516.514799 -860.397164 L 2517.061647 -860.084647 L 2524.483151 -855.865673 L 2524.756575 -855.74848 L 2524.990938 -855.592221 L 2534.092045 -850.943538 L 2534.326409 -850.826344 L 2534.599833 -850.70915 L 2539.873006 -848.169953 L 2550.614657 -843.325946 L 2561.317247 -838.677262 L 2572.019837 -834.223901 L 2582.761487 -829.848669 L 2593.464077 -825.590631 L 2604.166667 -821.371658 L 2614.908317 -817.152684 L 2636.313497 -808.870995 L 2647.055147 -804.769215 L 2657.757737 -800.667435 L 2668.499388 -796.565655 L 2689.904567 -788.362096 L 2700.646218 -784.260316 L 2711.348808 -780.1976 L 2722.051397 -776.095821 L 2732.793048 -772.033105 L 2743.495638 -767.931325 L 2754.198228 -763.86861 L 2765.79921 -759.454314 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.019362 -1032.750048 L 1652.612682 -1032.750048 L 1663.354332 -1032.710984 L 1738.233401 -1032.710984 L 1748.935991 -1032.671919 L 1759.677641 -1032.671919 L 1770.34117 -1032.632855 L 1791.74635 -1032.554725 L 1802.488001 -1032.437532 L 1813.15153 -1032.359403 L 1823.85412 -1032.203144 L 1834.55671 -1031.968757 L 1845.29836 -1031.695305 L 1855.961889 -1031.265595 L 1866.664479 -1030.718691 L 1877.367069 -1029.976464 L 1888.10872 -1029.038914 L 1898.772249 -1027.866977 L 1909.474839 -1026.538782 L 1920.177429 -1024.976199 L 1930.880018 -1023.296422 L 1941.582608 -1021.499452 L 1952.285198 -1019.624353 L 1973.690378 -1015.717896 L 1995.095558 -1011.733309 L 2016.500737 -1007.670594 L 2027.203327 -1005.678301 L 2037.905917 -1003.646943 L 2048.647568 -1001.615586 L 2059.311097 -999.584228 L 2070.013687 -997.513806 L 2080.716277 -995.482448 L 2091.457927 -993.412026 L 2102.121456 -991.380668 L 2112.824046 -989.310246 L 2134.229226 -985.091272 L 2144.931816 -982.942721 L 2155.634406 -980.71604 L 2166.336996 -978.450295 L 2177.039586 -976.028292 L 2187.742175 -973.489095 L 2198.444765 -970.71551 L 2209.147355 -967.746603 L 2219.889006 -964.582373 L 2230.552535 -961.22282 L 2241.255125 -957.667944 L 2251.957715 -953.995874 L 2262.660304 -950.206611 L 2273.362894 -946.339218 L 2294.768074 -938.448175 L 2305.470664 -934.424524 L 2316.173254 -930.439938 L 2326.875844 -926.377223 L 2337.578434 -922.353572 L 2401.793973 -897.97728 L 2412.496563 -893.8755 L 2455.306922 -877.624639 L 2466.009512 -873.522859 L 2476.712102 -869.460144 L 2636.938466 -808.480349 L 2765.79921 -759.454314 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 164.421875 187.121094 L 276.582031 187.121094 L 276.582031 152.238281 L 164.421875 152.238281 Z M 164.421875 187.121094 "/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -248.802249 L 2765.642968 -248.802249 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -597.648863 L 2765.642968 -597.648863 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -248.802249 L 1964.589271 -260.013781 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -248.802249 L 2765.642968 -260.013781 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -597.648863 L 1964.589271 -586.437331 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -597.648863 L 2765.642968 -586.437331 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -248.802249 L 1644.136543 -254.388483 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1804.362907 -248.802249 L 1804.362907 -254.388483 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -248.802249 L 1964.589271 -254.388483 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2124.776574 -248.802249 L 2124.776574 -254.388483 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2285.002937 -248.802249 L 2285.002937 -254.388483 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2445.229301 -248.802249 L 2445.229301 -254.388483 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2605.455665 -248.802249 L 2605.455665 -254.388483 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -248.802249 L 2765.642968 -254.388483 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -597.648863 L 1644.136543 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1804.362907 -597.648863 L 1804.362907 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1964.589271 -597.648863 L 1964.589271 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2124.776574 -597.648863 L 2124.776574 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2285.002937 -597.648863 L 2285.002937 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2445.229301 -597.648863 L 2445.229301 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2605.455665 -597.648863 L 2605.455665 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -597.648863 L 2765.642968 -592.023565 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 190.402344 199.523438 L 190.402344 199.164062 C 191.246094 199.164062 191.667969 199.058594 191.667969 198.84375 L 191.667969 193.527344 C 191.320312 193.695312 190.878906 193.78125 190.34375 193.78125 L 190.34375 193.429688 C 191.171875 193.429688 191.796875 193.210938 192.21875 192.777344 L 192.359375 192.777344 C 192.382812 192.777344 192.40625 192.785156 192.425781 192.804688 C 192.449219 192.820312 192.460938 192.84375 192.460938 192.867188 L 192.460938 198.84375 C 192.460938 199.058594 192.882812 199.164062 193.726562 199.164062 L 193.726562 199.523438 L 190.402344 199.523438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 196.996094 199.746094 C 196.171875 199.746094 195.605469 199.40625 195.308594 198.722656 C 195.011719 198.042969 194.863281 197.230469 194.863281 196.292969 C 194.863281 195.707031 194.917969 195.15625 195.023438 194.636719 C 195.128906 194.121094 195.339844 193.679688 195.660156 193.320312 C 195.976562 192.957031 196.421875 192.777344 196.996094 192.777344 C 197.441406 192.777344 197.808594 192.886719 198.089844 193.101562 C 198.375 193.320312 198.589844 193.601562 198.738281 193.945312 C 198.886719 194.292969 198.988281 194.660156 199.042969 195.054688 C 199.097656 195.445312 199.125 195.859375 199.125 196.292969 C 199.125 196.875 199.070312 197.421875 198.964844 197.925781 C 198.855469 198.433594 198.648438 198.863281 198.335938 199.214844 C 198.019531 199.570312 197.574219 199.746094 196.996094 199.746094 Z M 196.996094 199.480469 C 197.371094 199.480469 197.652344 199.289062 197.839844 198.90625 C 198.023438 198.519531 198.140625 198.09375 198.183594 197.625 C 198.226562 197.15625 198.246094 196.65625 198.246094 196.128906 C 198.246094 195.621094 198.226562 195.15625 198.183594 194.726562 C 198.140625 194.296875 198.023438 193.910156 197.84375 193.5625 C 197.65625 193.214844 197.378906 193.042969 196.996094 193.042969 C 196.613281 193.042969 196.332031 193.214844 196.148438 193.566406 C 195.964844 193.914062 195.851562 194.304688 195.808594 194.730469 C 195.765625 195.15625 195.742188 195.621094 195.742188 196.128906 C 195.742188 196.503906 195.753906 196.859375 195.769531 197.195312 C 195.789062 197.527344 195.835938 197.871094 195.914062 198.226562 C 195.992188 198.578125 196.121094 198.875 196.296875 199.117188 C 196.476562 199.359375 196.710938 199.480469 196.996094 199.480469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 201.25 196.050781 C 200.667969 196.050781 200.269531 195.8125 200.0625 195.332031 C 199.851562 194.851562 199.75 194.28125 199.75 193.621094 C 199.75 193.210938 199.785156 192.820312 199.859375 192.457031 C 199.933594 192.089844 200.085938 191.78125 200.308594 191.527344 C 200.53125 191.273438 200.847656 191.148438 201.25 191.148438 C 201.5625 191.148438 201.816406 191.222656 202.015625 191.375 C 202.214844 191.527344 202.367188 191.726562 202.472656 191.96875 C 202.578125 192.214844 202.652344 192.472656 202.6875 192.75 C 202.726562 193.023438 202.742188 193.316406 202.742188 193.621094 C 202.742188 194.03125 202.707031 194.414062 202.632812 194.769531 C 202.558594 195.125 202.410156 195.425781 202.191406 195.675781 C 201.96875 195.925781 201.65625 196.050781 201.25 196.050781 Z M 201.25 195.863281 C 201.515625 195.863281 201.710938 195.726562 201.839844 195.457031 C 201.96875 195.183594 202.050781 194.886719 202.082031 194.558594 C 202.113281 194.230469 202.128906 193.878906 202.128906 193.507812 C 202.128906 193.148438 202.113281 192.820312 202.082031 192.519531 C 202.050781 192.21875 201.96875 191.945312 201.839844 191.699219 C 201.710938 191.457031 201.515625 191.335938 201.25 191.335938 C 200.980469 191.335938 200.78125 191.457031 200.652344 191.699219 C 200.523438 191.945312 200.441406 192.21875 200.410156 192.519531 C 200.378906 192.820312 200.363281 193.148438 200.363281 193.507812 C 200.363281 193.769531 200.371094 194.019531 200.382812 194.253906 C 200.398438 194.488281 200.433594 194.730469 200.488281 194.980469 C 200.542969 195.230469 200.632812 195.4375 200.757812 195.609375 C 200.882812 195.78125 201.046875 195.863281 201.25 195.863281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 270.515625 199.523438 L 270.515625 199.164062 C 271.359375 199.164062 271.78125 199.058594 271.78125 198.84375 L 271.78125 193.527344 C 271.433594 193.695312 270.992188 193.78125 270.457031 193.78125 L 270.457031 193.429688 C 271.285156 193.429688 271.910156 193.210938 272.332031 192.777344 L 272.472656 192.777344 C 272.496094 192.777344 272.519531 192.785156 272.539062 192.804688 C 272.5625 192.820312 272.570312 192.84375 272.570312 192.867188 L 272.570312 198.84375 C 272.570312 199.058594 272.992188 199.164062 273.839844 199.164062 L 273.839844 199.523438 L 270.515625 199.523438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 277.109375 199.746094 C 276.28125 199.746094 275.71875 199.40625 275.421875 198.722656 C 275.125 198.042969 274.976562 197.230469 274.976562 196.292969 C 274.976562 195.707031 275.027344 195.15625 275.136719 194.636719 C 275.242188 194.121094 275.453125 193.679688 275.769531 193.320312 C 276.089844 192.957031 276.535156 192.777344 277.109375 192.777344 C 277.554688 192.777344 277.921875 192.886719 278.203125 193.101562 C 278.488281 193.320312 278.703125 193.601562 278.851562 193.945312 C 279 194.292969 279.101562 194.660156 279.15625 195.054688 C 279.210938 195.445312 279.238281 195.859375 279.238281 196.292969 C 279.238281 196.875 279.183594 197.421875 279.078125 197.925781 C 278.96875 198.433594 278.757812 198.863281 278.445312 199.214844 C 278.132812 199.570312 277.6875 199.746094 277.109375 199.746094 Z M 277.109375 199.480469 C 277.484375 199.480469 277.765625 199.289062 277.949219 198.90625 C 278.136719 198.519531 278.25 198.09375 278.292969 197.625 C 278.335938 197.15625 278.359375 196.65625 278.359375 196.128906 C 278.359375 195.621094 278.335938 195.15625 278.292969 194.726562 C 278.25 194.296875 278.136719 193.910156 277.953125 193.5625 C 277.769531 193.214844 277.488281 193.042969 277.109375 193.042969 C 276.726562 193.042969 276.445312 193.214844 276.261719 193.566406 C 276.078125 193.914062 275.964844 194.304688 275.921875 194.730469 C 275.878906 195.15625 275.855469 195.621094 275.855469 196.128906 C 275.855469 196.503906 275.863281 196.859375 275.882812 197.195312 C 275.898438 197.527344 275.949219 197.871094 276.027344 198.226562 C 276.105469 198.578125 276.230469 198.875 276.410156 199.117188 C 276.589844 199.359375 276.820312 199.480469 277.109375 199.480469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(39.988708%,39.988708%,39.988708%);fill-opacity:1;" d="M 280.199219 195.085938 C 280.246094 195.222656 280.320312 195.347656 280.421875 195.460938 C 280.523438 195.574219 280.644531 195.660156 280.78125 195.726562 C 280.917969 195.789062 281.0625 195.824219 281.210938 195.824219 C 281.554688 195.824219 281.789062 195.691406 281.921875 195.425781 C 282.050781 195.160156 282.117188 194.835938 282.117188 194.453125 C 282.117188 194.289062 282.113281 194.148438 282.109375 194.035156 C 282.101562 193.921875 282.085938 193.816406 282.058594 193.714844 C 282.015625 193.546875 281.941406 193.398438 281.828125 193.273438 C 281.722656 193.148438 281.585938 193.085938 281.425781 193.085938 C 281.265625 193.085938 281.128906 193.109375 281.011719 193.160156 C 280.898438 193.207031 280.804688 193.265625 280.730469 193.328125 C 280.660156 193.394531 280.597656 193.460938 280.539062 193.535156 C 280.484375 193.605469 280.449219 193.644531 280.433594 193.648438 L 280.355469 193.648438 C 280.34375 193.648438 280.328125 193.640625 280.3125 193.625 C 280.296875 193.609375 280.289062 193.597656 280.289062 193.585938 L 280.289062 191.207031 C 280.289062 191.195312 280.296875 191.179688 280.308594 191.167969 C 280.324219 191.152344 280.339844 191.148438 280.355469 191.148438 L 280.378906 191.148438 C 280.695312 191.296875 281.035156 191.375 281.394531 191.375 C 281.746094 191.375 282.089844 191.296875 282.414062 191.148438 L 282.433594 191.148438 C 282.453125 191.148438 282.46875 191.152344 282.484375 191.164062 C 282.496094 191.175781 282.503906 191.191406 282.503906 191.207031 L 282.503906 191.269531 C 282.503906 191.292969 282.496094 191.304688 282.488281 191.304688 C 282.328125 191.519531 282.125 191.6875 281.878906 191.808594 C 281.636719 191.929688 281.382812 191.992188 281.113281 191.992188 C 280.929688 191.992188 280.734375 191.964844 280.535156 191.910156 L 280.535156 193.257812 C 280.691406 193.128906 280.832031 193.035156 280.957031 192.980469 C 281.082031 192.925781 281.238281 192.898438 281.433594 192.898438 C 281.691406 192.898438 281.929688 192.976562 282.136719 193.128906 C 282.34375 193.28125 282.503906 193.476562 282.613281 193.71875 C 282.722656 193.960938 282.78125 194.207031 282.78125 194.457031 C 282.78125 194.742188 282.710938 195.007812 282.570312 195.253906 C 282.429688 195.496094 282.238281 195.691406 281.996094 195.835938 C 281.757812 195.980469 281.492188 196.050781 281.210938 196.050781 C 280.980469 196.050781 280.765625 195.992188 280.566406 195.871094 C 280.371094 195.75 280.214844 195.585938 280.105469 195.382812 C 279.992188 195.175781 279.9375 194.960938 279.9375 194.734375 C 279.9375 194.625 279.972656 194.535156 280.039062 194.46875 C 280.109375 194.402344 280.195312 194.371094 280.300781 194.371094 C 280.40625 194.371094 280.492188 194.402344 280.5625 194.472656 C 280.632812 194.539062 280.671875 194.628906 280.671875 194.734375 C 280.671875 194.835938 280.632812 194.921875 280.5625 194.992188 C 280.492188 195.0625 280.40625 195.097656 280.300781 195.097656 C 280.285156 195.097656 280.265625 195.09375 280.246094 195.089844 C 280.222656 195.085938 280.210938 195.085938 280.199219 195.085938 "/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -248.802249 L 1644.136543 -597.648863 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -248.802249 L 2765.642968 -597.648863 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -252.239931 L 1655.34692 -252.239931 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -366.230348 L 1655.34692 -366.230348 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -480.220764 L 1655.34692 -480.220764 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.136543 -594.211181 L 1655.34692 -594.211181 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -252.239931 L 2754.432591 -252.239931 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -366.230348 L 2754.432591 -366.230348 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -480.220764 L 2754.432591 -480.220764 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(39.988708%,39.988708%,39.988708%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2765.642968 -594.211181 L 2754.432591 -594.211181 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.019362 -594.211181 L 2250.551535 -594.211181 L 2261.254125 -594.172116 L 2325.547785 -594.172116 L 2336.289436 -594.133052 L 2346.992025 -594.133052 L 2357.694615 -594.093987 L 2368.436266 -594.093987 L 2379.138856 -594.054922 L 2389.841445 -594.054922 L 2400.583096 -594.015858 L 2411.285686 -593.976793 L 2422.027336 -593.898664 L 2428.901992 -593.8596 L 2429.40978 -593.8596 L 2438.471826 -593.742406 L 2439.018674 -593.742406 L 2446.440178 -593.625212 L 2446.947965 -593.625212 L 2453.00235 -593.508018 L 2453.275774 -593.508018 L 2453.549198 -593.468954 L 2458.470826 -593.312696 L 2458.978614 -593.312696 L 2463.00185 -593.078308 L 2463.509637 -593.078308 L 2466.751662 -592.804856 L 2466.986026 -592.765792 L 2467.25945 -592.765792 L 2469.837446 -592.453275 L 2470.071809 -592.375146 L 2470.345233 -592.336081 L 2472.415442 -591.945436 L 2472.688866 -591.867306 L 2472.923229 -591.789177 L 2474.524711 -591.281338 L 2474.798135 -591.164144 L 2475.032498 -591.04695 L 2476.282436 -590.304724 L 2476.55586 -590.109401 L 2476.829284 -589.875013 L 2477.766737 -588.859335 L 2478.0011 -588.507753 L 2478.274524 -588.078043 L 2478.977614 -586.554525 L 2479.211977 -585.734169 L 2479.485401 -584.796619 L 2479.954127 -582.218358 L 2480.227551 -580.226064 L 2480.500975 -577.413415 L 2480.813459 -572.335021 L 2481.047823 -565.733109 L 2481.321246 -556.123225 L 2481.477489 -548.583762 L 2481.750912 -537.411295 L 2481.985276 -526.277893 L 2482.180578 -518.738431 L 2482.414942 -509.011353 L 2482.688366 -502.292246 L 2483.00085 -497.135723 L 2483.274274 -494.323074 L 2483.508637 -492.252652 L 2484.016424 -489.713455 L 2484.250787 -488.697776 L 2484.524211 -487.916485 L 2485.227301 -486.392966 L 2485.461664 -485.963256 L 2485.735088 -485.57261 L 2486.672541 -484.556932 L 2486.945965 -484.322544 L 2487.180328 -484.127221 L 2488.430266 -483.424059 L 2488.70369 -483.306865 L 2488.938053 -483.189672 L 2490.812959 -482.564638 L 2491.086383 -482.486509 L 2493.117532 -482.095864 L 2493.664379 -482.017734 L 2496.242375 -481.666153 L 2496.476739 -481.666153 L 2496.750162 -481.627089 L 2499.992188 -481.392701 L 2500.226551 -481.353637 L 2500.499975 -481.353637 L 2504.484151 -481.158314 L 2504.757575 -481.119249 L 2504.991938 -481.119249 L 2509.952627 -480.962991 L 2510.226051 -480.962991 L 2510.460414 -480.923926 L 2516.514799 -480.806733 L 2517.061647 -480.806733 L 2524.483151 -480.689539 L 2524.990938 -480.689539 L 2534.092045 -480.572345 L 2534.599833 -480.572345 L 2539.873006 -480.533281 L 2550.614657 -480.494216 L 2572.019837 -480.416087 L 2582.761487 -480.377022 L 2593.464077 -480.337958 L 2604.166667 -480.337958 L 2614.908317 -480.298893 L 2636.313497 -480.298893 L 2647.055147 -480.259829 L 2700.646218 -480.259829 L 2711.348808 -480.220764 L 2765.79921 -480.220764 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<path style="fill:none;stroke-width:4.99995;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,32.493591%,9.790039%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1644.019362 -481.197378 L 1652.612682 -481.275508 L 1663.354332 -481.47083 L 1674.056922 -481.666153 L 1684.759512 -481.900541 L 1695.423041 -482.213057 L 1706.125631 -482.525574 L 1716.867282 -482.91622 L 1727.530811 -483.384994 L 1738.233401 -483.892834 L 1748.935991 -484.517867 L 1759.677641 -485.221029 L 1770.34117 -486.041385 L 1781.04376 -487.017999 L 1791.74635 -488.150872 L 1802.488001 -489.479067 L 1813.15153 -491.002586 L 1823.85412 -492.799556 L 1834.55671 -494.830914 L 1845.29836 -497.174788 L 1855.961889 -499.792114 L 1866.664479 -502.721957 L 1877.367069 -505.847122 L 1888.10872 -509.089482 L 1898.772249 -512.292777 L 1909.474839 -515.378878 L 1920.177429 -518.230591 L 1930.880018 -520.808853 L 1941.582608 -522.996469 L 1952.285198 -524.871568 L 1962.987788 -526.473216 L 1973.690378 -527.801411 L 1984.392968 -528.856154 L 1995.095558 -529.715575 L 2005.798148 -530.379673 L 2016.500737 -530.887512 L 2027.203327 -531.239093 L 2037.905917 -531.434416 L 2048.647568 -531.473481 L 2059.311097 -531.395351 L 2070.013687 -531.160964 L 2080.716277 -530.809383 L 2091.457927 -530.262479 L 2102.121456 -529.559317 L 2112.824046 -528.699896 L 2123.526636 -527.567024 L 2134.229226 -526.199764 L 2144.931816 -524.598116 L 2155.634406 -522.644888 L 2166.336996 -520.379143 L 2177.039586 -517.761816 L 2187.742175 -514.871038 L 2198.444765 -511.745873 L 2209.147355 -508.503513 L 2219.889006 -505.300218 L 2230.552535 -502.214117 L 2241.255125 -499.323339 L 2251.957715 -496.745077 L 2262.660304 -494.479332 L 2273.362894 -492.447975 L 2284.065484 -490.729134 L 2294.768074 -489.24468 L 2305.470664 -487.955549 L 2316.173254 -486.861741 L 2326.875844 -485.885127 L 2337.578434 -485.103836 L 2348.281023 -484.400673 L 2358.983613 -483.814705 L 2369.686203 -483.306865 L 2380.388793 -482.83809 L 2391.091383 -482.486509 L 2412.496563 -481.861476 L 2423.199153 -481.627089 L 2433.901742 -481.431766 L 2455.306922 -481.119249 L 2476.712102 -480.884862 L 2636.938466 -480.298893 L 2765.79921 -480.259829 " transform="matrix(0.100005,0,0,0.0999947,0,212)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="116.999" y="10.073"/>
<use xlink:href="#glyph2-2" x="124.943246" y="10.073"/>
<use xlink:href="#glyph2-3" x="131.666146" y="10.073"/>
<use xlink:href="#glyph2-4" x="138.389046" y="10.073"/>
<use xlink:href="#glyph2-5" x="144.506776" y="10.073"/>
<use xlink:href="#glyph2-6" x="147.56564" y="10.073"/>
<use xlink:href="#glyph2-7" x="155.509886" y="10.073"/>
<use xlink:href="#glyph2-8" x="158.56875" y="10.073"/>
<use xlink:href="#glyph2-9" x="164.68648" y="10.073"/>
<use xlink:href="#glyph2-10" x="171.40938" y="10.073"/>
<use xlink:href="#glyph2-8" x="175.68959" y="10.073"/>
<use xlink:href="#glyph2-11" x="181.807319" y="10.073"/>
</g>
<g style="fill:rgb(0%,0%,1.197815%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="110.247" y="213.87578"/>
<use xlink:href="#glyph3-2" x="116.9699" y="213.87578"/>
<use xlink:href="#glyph3-3" x="120.633936" y="213.87578"/>
<use xlink:href="#glyph3-4" x="126.751665" y="213.87578"/>
<use xlink:href="#glyph3-5" x="132.869395" y="213.87578"/>
<use xlink:href="#glyph3-3" x="138.987124" y="213.87578"/>
<use xlink:href="#glyph3-6" x="145.104853" y="213.87578"/>
<use xlink:href="#glyph3-7" x="151.222582" y="213.87578"/>
<use xlink:href="#glyph3-8" x="156.724138" y="213.87578"/>
<use xlink:href="#glyph3-9" x="162.225693" y="213.87578"/>
<use xlink:href="#glyph3-9" x="165.284557" y="213.87578"/>
<use xlink:href="#glyph3-10" x="168.343422" y="213.87578"/>
<use xlink:href="#glyph3-2" x="172.007458" y="213.87578"/>
<use xlink:href="#glyph3-11" x="175.671493" y="213.87578"/>
<use xlink:href="#glyph3-12" x="181.789223" y="213.87578"/>
<use xlink:href="#glyph3-13" x="187.906952" y="213.87578"/>
<use xlink:href="#glyph3-14" x="190.965816" y="213.87578"/>
<use xlink:href="#glyph3-15" x="196.467372" y="213.87578"/>
</g>
<g style="fill:rgb(0%,0%,1.197815%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="5.91758" y="186.7387"/>
<use xlink:href="#glyph4-2" x="5.91758" y="177.574098"/>
<use xlink:href="#glyph4-3" x="5.91758" y="171.457029"/>
<use xlink:href="#glyph4-4" x="5.91758" y="165.33996"/>
<use xlink:href="#glyph4-5" x="5.91758" y="159.222891"/>
<use xlink:href="#glyph4-6" x="5.91758" y="156.780465"/>
<use xlink:href="#glyph4-7" x="5.91758" y="153.72193"/>
<use xlink:href="#glyph4-8" x="5.91758" y="147.604861"/>
<use xlink:href="#glyph4-9" x="5.91758" y="141.487792"/>
<use xlink:href="#glyph4-10" x="5.91758" y="135.370723"/>
<use xlink:href="#glyph4-11" x="5.91758" y="132.312189"/>
<use xlink:href="#glyph4-8" x="5.91758" y="128.648548"/>
<use xlink:href="#glyph4-12" x="5.91758" y="122.531479"/>
<use xlink:href="#glyph4-13" x="5.91758" y="115.193197"/>
<use xlink:href="#glyph4-10" x="5.91758" y="111.529557"/>
<use xlink:href="#glyph4-14" x="5.91758" y="108.471022"/>
<use xlink:href="#glyph4-10" x="5.91758" y="105.412488"/>
<use xlink:href="#glyph4-15" x="5.91758" y="102.353953"/>
<use xlink:href="#glyph4-16" x="5.91758" y="95.015671"/>
<use xlink:href="#glyph4-2" x="5.91758" y="88.898602"/>
<use xlink:href="#glyph4-17" x="5.91758" y="82.781533"/>
<use xlink:href="#glyph4-9" x="5.91758" y="77.280571"/>
<use xlink:href="#glyph4-10" x="5.91758" y="71.163502"/>
<use xlink:href="#glyph4-11" x="5.91758" y="68.104968"/>
<use xlink:href="#glyph4-8" x="5.91758" y="64.441328"/>
<use xlink:href="#glyph4-9" x="5.91758" y="58.324259"/>
<use xlink:href="#glyph4-3" x="5.91758" y="52.20719"/>
<use xlink:href="#glyph4-13" x="5.91758" y="46.090121"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 245 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 76 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 219 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 339 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

View File

@ -1,231 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="312pt" height="221pt" viewBox="0 0 312 221" version="1.2">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 38.621094 189.648438 L 151.484375 189.648438 L 151.484375 6.421875 L 38.621094 6.421875 Z M 38.621094 189.648438 "/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -313.624453 L 386.075811 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 950.175251 -313.624453 L 950.175251 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -313.624453 L 1514.31374 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -313.624453 L 386.075811 -313.624453 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -575.473127 L 386.075811 -575.473127 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -837.321801 L 386.075811 -837.321801 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -1099.170475 L 386.075811 -1099.170475 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -1361.019149 L 386.075811 -1361.019149 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -1622.867823 L 386.075811 -1622.867823 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -1884.716497 L 386.075811 -1884.716497 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -2146.526095 L 386.075811 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -313.624453 L 1514.31374 -313.624453 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -2146.526095 L 1514.31374 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -313.624453 L 386.075811 -331.951125 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 950.175251 -313.624453 L 950.175251 -331.951125 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -313.624453 L 1514.31374 -331.951125 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -2146.526095 L 386.075811 -2128.199423 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 950.175251 -2146.526095 L 950.175251 -2128.199423 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -2146.526095 L 1514.31374 -2128.199423 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 38.652344 202.261719 C 37.824219 202.261719 37.261719 201.921875 36.964844 201.238281 C 36.667969 200.558594 36.519531 199.75 36.519531 198.8125 C 36.519531 198.226562 36.574219 197.675781 36.679688 197.160156 C 36.785156 196.640625 36.996094 196.203125 37.3125 195.84375 C 37.632812 195.480469 38.078125 195.300781 38.652344 195.300781 C 39.097656 195.300781 39.460938 195.410156 39.746094 195.625 C 40.027344 195.84375 40.242188 196.121094 40.394531 196.46875 C 40.539062 196.8125 40.644531 197.183594 40.699219 197.574219 C 40.753906 197.96875 40.78125 198.378906 40.78125 198.8125 C 40.78125 199.394531 40.726562 199.9375 40.617188 200.445312 C 40.511719 200.949219 40.300781 201.378906 39.988281 201.730469 C 39.675781 202.085938 39.230469 202.261719 38.652344 202.261719 Z M 38.652344 202 C 39.027344 202 39.308594 201.804688 39.492188 201.421875 C 39.679688 201.035156 39.792969 200.609375 39.835938 200.140625 C 39.878906 199.671875 39.902344 199.175781 39.902344 198.648438 C 39.902344 198.140625 39.878906 197.675781 39.835938 197.246094 C 39.792969 196.820312 39.679688 196.433594 39.496094 196.085938 C 39.3125 195.738281 39.03125 195.5625 38.652344 195.5625 C 38.269531 195.5625 37.988281 195.738281 37.804688 196.089844 C 37.621094 196.4375 37.507812 196.824219 37.464844 197.25 C 37.421875 197.675781 37.398438 198.140625 37.398438 198.648438 C 37.398438 199.023438 37.40625 199.378906 37.425781 199.710938 C 37.441406 200.046875 37.492188 200.390625 37.570312 200.742188 C 37.648438 201.09375 37.773438 201.394531 37.953125 201.636719 C 38.128906 201.878906 38.363281 202 38.652344 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 88.433594 200.886719 C 88.503906 201.085938 88.609375 201.265625 88.753906 201.425781 C 88.894531 201.589844 89.066406 201.714844 89.261719 201.804688 C 89.460938 201.894531 89.664062 201.941406 89.875 201.941406 C 90.363281 201.941406 90.699219 201.75 90.882812 201.371094 C 91.066406 200.992188 91.15625 200.535156 91.15625 199.996094 C 91.15625 199.761719 91.152344 199.566406 91.144531 199.40625 C 91.136719 199.246094 91.117188 199.089844 91.082031 198.941406 C 91.019531 198.703125 90.910156 198.496094 90.75 198.320312 C 90.59375 198.140625 90.398438 198.050781 90.171875 198.050781 C 89.945312 198.050781 89.75 198.085938 89.585938 198.15625 C 89.421875 198.226562 89.289062 198.308594 89.1875 198.402344 C 89.085938 198.492188 88.996094 198.589844 88.917969 198.691406 C 88.839844 198.792969 88.792969 198.847656 88.773438 198.855469 L 88.65625 198.855469 C 88.640625 198.855469 88.621094 198.84375 88.59375 198.824219 C 88.570312 198.800781 88.554688 198.78125 88.554688 198.761719 L 88.554688 195.382812 C 88.554688 195.363281 88.566406 195.34375 88.589844 195.328125 C 88.609375 195.308594 88.632812 195.300781 88.65625 195.300781 L 88.683594 195.300781 C 89.140625 195.519531 89.625 195.628906 90.132812 195.628906 C 90.636719 195.628906 91.121094 195.519531 91.585938 195.300781 L 91.613281 195.300781 C 91.636719 195.300781 91.660156 195.308594 91.679688 195.328125 C 91.699219 195.34375 91.707031 195.363281 91.707031 195.382812 L 91.707031 195.476562 C 91.707031 195.507812 91.699219 195.523438 91.683594 195.523438 C 91.453125 195.832031 91.164062 196.070312 90.816406 196.238281 C 90.46875 196.410156 90.109375 196.496094 89.738281 196.496094 C 89.46875 196.496094 89.191406 196.457031 88.90625 196.382812 L 88.90625 198.292969 C 89.132812 198.113281 89.335938 197.984375 89.511719 197.90625 C 89.6875 197.828125 89.910156 197.789062 90.183594 197.789062 C 90.554688 197.789062 90.890625 197.894531 91.183594 198.109375 C 91.480469 198.324219 91.707031 198.605469 91.863281 198.949219 C 92.023438 199.292969 92.101562 199.644531 92.101562 200 C 92.101562 200.40625 92 200.78125 91.800781 201.128906 C 91.601562 201.472656 91.332031 201.75 90.992188 201.953125 C 90.648438 202.160156 90.277344 202.261719 89.875 202.261719 C 89.542969 202.261719 89.238281 202.175781 88.957031 202.003906 C 88.679688 201.832031 88.457031 201.601562 88.296875 201.3125 C 88.136719 201.023438 88.058594 200.714844 88.058594 200.386719 C 88.058594 200.234375 88.109375 200.113281 88.207031 200.015625 C 88.308594 199.921875 88.429688 199.871094 88.578125 199.871094 C 88.726562 199.871094 88.851562 199.921875 88.953125 200.019531 C 89.050781 200.117188 89.101562 200.238281 89.101562 200.386719 C 89.101562 200.53125 89.050781 200.65625 88.953125 200.757812 C 88.851562 200.859375 88.726562 200.910156 88.578125 200.910156 C 88.554688 200.910156 88.53125 200.90625 88.5 200.902344 C 88.472656 200.894531 88.449219 200.890625 88.433594 200.886719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 95.085938 202.261719 C 94.257812 202.261719 93.695312 201.921875 93.398438 201.238281 C 93.101562 200.558594 92.953125 199.75 92.953125 198.8125 C 92.953125 198.226562 93.003906 197.675781 93.109375 197.160156 C 93.214844 196.640625 93.425781 196.203125 93.746094 195.84375 C 94.066406 195.480469 94.511719 195.300781 95.085938 195.300781 C 95.53125 195.300781 95.894531 195.410156 96.175781 195.625 C 96.460938 195.84375 96.675781 196.121094 96.824219 196.46875 C 96.972656 196.8125 97.074219 197.183594 97.128906 197.574219 C 97.183594 197.96875 97.210938 198.378906 97.210938 198.8125 C 97.210938 199.394531 97.15625 199.9375 97.050781 200.445312 C 96.941406 200.949219 96.734375 201.378906 96.421875 201.730469 C 96.109375 202.085938 95.664062 202.261719 95.085938 202.261719 Z M 95.085938 202 C 95.460938 202 95.738281 201.804688 95.925781 201.421875 C 96.109375 201.035156 96.226562 200.609375 96.269531 200.140625 C 96.3125 199.671875 96.332031 199.175781 96.332031 198.648438 C 96.332031 198.140625 96.3125 197.675781 96.269531 197.246094 C 96.226562 196.820312 96.113281 196.433594 95.929688 196.085938 C 95.746094 195.738281 95.464844 195.5625 95.085938 195.5625 C 94.703125 195.5625 94.417969 195.738281 94.234375 196.089844 C 94.050781 196.4375 93.9375 196.824219 93.894531 197.25 C 93.851562 197.675781 93.832031 198.140625 93.832031 198.648438 C 93.832031 199.023438 93.839844 199.378906 93.855469 199.710938 C 93.875 200.046875 93.921875 200.390625 94 200.742188 C 94.078125 201.09375 94.207031 201.394531 94.386719 201.636719 C 94.5625 201.878906 94.796875 202 95.085938 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 100.085938 202.261719 C 99.257812 202.261719 98.695312 201.921875 98.398438 201.238281 C 98.101562 200.558594 97.953125 199.75 97.953125 198.8125 C 97.953125 198.226562 98.003906 197.675781 98.109375 197.160156 C 98.214844 196.640625 98.425781 196.203125 98.746094 195.84375 C 99.0625 195.480469 99.511719 195.300781 100.085938 195.300781 C 100.53125 195.300781 100.894531 195.410156 101.175781 195.625 C 101.460938 195.84375 101.675781 196.121094 101.824219 196.46875 C 101.972656 196.8125 102.074219 197.183594 102.128906 197.574219 C 102.183594 197.96875 102.210938 198.378906 102.210938 198.8125 C 102.210938 199.394531 102.15625 199.9375 102.050781 200.445312 C 101.941406 200.949219 101.730469 201.378906 101.421875 201.730469 C 101.105469 202.085938 100.664062 202.261719 100.085938 202.261719 Z M 100.085938 202 C 100.460938 202 100.738281 201.804688 100.925781 201.421875 C 101.109375 201.035156 101.226562 200.609375 101.269531 200.140625 C 101.3125 199.671875 101.332031 199.175781 101.332031 198.648438 C 101.332031 198.140625 101.3125 197.675781 101.269531 197.246094 C 101.226562 196.820312 101.113281 196.433594 100.929688 196.085938 C 100.746094 195.738281 100.464844 195.5625 100.085938 195.5625 C 99.703125 195.5625 99.417969 195.738281 99.234375 196.089844 C 99.050781 196.4375 98.9375 196.824219 98.894531 197.25 C 98.851562 197.675781 98.832031 198.140625 98.832031 198.648438 C 98.832031 199.023438 98.839844 199.378906 98.855469 199.710938 C 98.875 200.046875 98.921875 200.390625 99 200.742188 C 99.078125 201.09375 99.207031 201.394531 99.382812 201.636719 C 99.5625 201.878906 99.796875 202 100.085938 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 142.425781 202.039062 L 142.425781 201.683594 C 143.269531 201.683594 143.6875 201.574219 143.6875 201.359375 L 143.6875 196.050781 C 143.34375 196.21875 142.902344 196.300781 142.367188 196.300781 L 142.367188 195.949219 C 143.195312 195.949219 143.820312 195.734375 144.242188 195.300781 L 144.382812 195.300781 C 144.40625 195.300781 144.425781 195.308594 144.449219 195.328125 C 144.46875 195.34375 144.480469 195.363281 144.480469 195.386719 L 144.480469 201.359375 C 144.480469 201.574219 144.902344 201.683594 145.746094 201.683594 L 145.746094 202.039062 L 142.425781 202.039062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 149.019531 202.261719 C 148.1875 202.261719 147.628906 201.921875 147.328125 201.238281 C 147.03125 200.558594 146.886719 199.75 146.886719 198.8125 C 146.886719 198.226562 146.9375 197.675781 147.042969 197.160156 C 147.148438 196.640625 147.359375 196.203125 147.679688 195.84375 C 147.996094 195.480469 148.441406 195.300781 149.019531 195.300781 C 149.464844 195.300781 149.828125 195.410156 150.109375 195.625 C 150.394531 195.84375 150.609375 196.121094 150.757812 196.46875 C 150.90625 196.8125 151.007812 197.183594 151.0625 197.574219 C 151.117188 197.96875 151.144531 198.378906 151.144531 198.8125 C 151.144531 199.394531 151.089844 199.9375 150.984375 200.445312 C 150.875 200.949219 150.664062 201.378906 150.351562 201.730469 C 150.039062 202.085938 149.59375 202.261719 149.019531 202.261719 Z M 149.019531 202 C 149.394531 202 149.671875 201.804688 149.859375 201.421875 C 150.042969 201.035156 150.15625 200.609375 150.199219 200.140625 C 150.242188 199.671875 150.265625 199.175781 150.265625 198.648438 C 150.265625 198.140625 150.242188 197.675781 150.199219 197.246094 C 150.15625 196.820312 150.046875 196.433594 149.859375 196.085938 C 149.675781 195.738281 149.394531 195.5625 149.019531 195.5625 C 148.632812 195.5625 148.351562 195.738281 148.167969 196.089844 C 147.984375 196.4375 147.871094 196.824219 147.828125 197.25 C 147.785156 197.675781 147.765625 198.140625 147.765625 198.648438 C 147.765625 199.023438 147.773438 199.378906 147.789062 199.710938 C 147.808594 200.046875 147.855469 200.390625 147.933594 200.742188 C 148.011719 201.09375 148.140625 201.394531 148.316406 201.636719 C 148.496094 201.878906 148.726562 202 149.019531 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 154.015625 202.261719 C 153.1875 202.261719 152.628906 201.921875 152.328125 201.238281 C 152.03125 200.558594 151.882812 199.75 151.882812 198.8125 C 151.882812 198.226562 151.9375 197.675781 152.042969 197.160156 C 152.148438 196.640625 152.359375 196.203125 152.679688 195.84375 C 152.996094 195.480469 153.441406 195.300781 154.015625 195.300781 C 154.460938 195.300781 154.824219 195.410156 155.109375 195.625 C 155.394531 195.84375 155.609375 196.121094 155.757812 196.46875 C 155.90625 196.8125 156.007812 197.183594 156.0625 197.574219 C 156.117188 197.96875 156.144531 198.378906 156.144531 198.8125 C 156.144531 199.394531 156.089844 199.9375 155.980469 200.445312 C 155.875 200.949219 155.664062 201.378906 155.351562 201.730469 C 155.039062 202.085938 154.59375 202.261719 154.015625 202.261719 Z M 154.015625 202 C 154.390625 202 154.671875 201.804688 154.855469 201.421875 C 155.042969 201.035156 155.15625 200.609375 155.199219 200.140625 C 155.242188 199.671875 155.265625 199.175781 155.265625 198.648438 C 155.265625 198.140625 155.242188 197.675781 155.199219 197.246094 C 155.15625 196.820312 155.042969 196.433594 154.859375 196.085938 C 154.675781 195.738281 154.394531 195.5625 154.015625 195.5625 C 153.632812 195.5625 153.351562 195.738281 153.167969 196.089844 C 152.984375 196.4375 152.871094 196.824219 152.828125 197.25 C 152.785156 197.675781 152.761719 198.140625 152.761719 198.648438 C 152.761719 199.023438 152.773438 199.378906 152.789062 199.710938 C 152.808594 200.046875 152.855469 200.390625 152.933594 200.742188 C 153.011719 201.09375 153.140625 201.394531 153.316406 201.636719 C 153.496094 201.878906 153.726562 202 154.015625 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 159.015625 202.261719 C 158.1875 202.261719 157.625 201.921875 157.328125 201.238281 C 157.03125 200.558594 156.882812 199.75 156.882812 198.8125 C 156.882812 198.226562 156.9375 197.675781 157.042969 197.160156 C 157.148438 196.640625 157.359375 196.203125 157.675781 195.84375 C 157.996094 195.480469 158.441406 195.300781 159.015625 195.300781 C 159.460938 195.300781 159.824219 195.410156 160.109375 195.625 C 160.390625 195.84375 160.609375 196.121094 160.757812 196.46875 C 160.90625 196.8125 161.007812 197.183594 161.0625 197.574219 C 161.117188 197.96875 161.144531 198.378906 161.144531 198.8125 C 161.144531 199.394531 161.089844 199.9375 160.980469 200.445312 C 160.875 200.949219 160.664062 201.378906 160.351562 201.730469 C 160.039062 202.085938 159.59375 202.261719 159.015625 202.261719 Z M 159.015625 202 C 159.390625 202 159.671875 201.804688 159.855469 201.421875 C 160.042969 201.035156 160.15625 200.609375 160.199219 200.140625 C 160.242188 199.671875 160.265625 199.175781 160.265625 198.648438 C 160.265625 198.140625 160.242188 197.675781 160.199219 197.246094 C 160.15625 196.820312 160.042969 196.433594 159.859375 196.085938 C 159.675781 195.738281 159.394531 195.5625 159.015625 195.5625 C 158.632812 195.5625 158.351562 195.738281 158.167969 196.089844 C 157.984375 196.4375 157.871094 196.824219 157.828125 197.25 C 157.785156 197.675781 157.761719 198.140625 157.761719 198.648438 C 157.761719 199.023438 157.769531 199.378906 157.789062 199.710938 C 157.804688 200.046875 157.855469 200.390625 157.933594 200.742188 C 158.011719 201.09375 158.136719 201.394531 158.316406 201.636719 C 158.492188 201.878906 158.726562 202 159.015625 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 30.125 215.867188 L 30.125 215.488281 C 30.871094 215.488281 31.246094 215.371094 31.246094 215.140625 L 31.246094 209.171875 C 31.246094 208.941406 30.871094 208.824219 30.125 208.824219 L 30.125 208.445312 L 33.535156 208.445312 C 33.945312 208.445312 34.375 208.519531 34.824219 208.664062 C 35.269531 208.808594 35.644531 209.035156 35.945312 209.335938 C 36.246094 209.636719 36.394531 209.992188 36.394531 210.410156 C 36.394531 210.714844 36.304688 210.988281 36.121094 211.230469 C 35.941406 211.46875 35.707031 211.667969 35.421875 211.828125 C 35.136719 211.988281 34.847656 212.105469 34.550781 212.175781 C 34.875 212.289062 35.15625 212.46875 35.402344 212.714844 C 35.648438 212.964844 35.792969 213.246094 35.84375 213.566406 L 35.996094 214.53125 C 36.066406 214.964844 36.140625 215.289062 36.21875 215.503906 C 36.296875 215.71875 36.46875 215.828125 36.734375 215.828125 C 36.960938 215.828125 37.132812 215.722656 37.242188 215.511719 C 37.351562 215.300781 37.410156 215.070312 37.410156 214.820312 C 37.410156 214.796875 37.421875 214.773438 37.445312 214.757812 C 37.46875 214.738281 37.492188 214.726562 37.515625 214.726562 L 37.613281 214.726562 C 37.683594 214.726562 37.71875 214.773438 37.71875 214.875 C 37.71875 215.066406 37.679688 215.261719 37.605469 215.449219 C 37.527344 215.640625 37.417969 215.796875 37.269531 215.921875 C 37.121094 216.046875 36.945312 216.109375 36.746094 216.109375 C 36.222656 216.109375 35.773438 215.980469 35.398438 215.71875 C 35.019531 215.460938 34.832031 215.078125 34.832031 214.574219 L 34.832031 213.609375 C 34.832031 213.246094 34.707031 212.933594 34.453125 212.675781 C 34.203125 212.417969 33.894531 212.292969 33.53125 212.292969 L 32.222656 212.292969 L 32.222656 215.140625 C 32.222656 215.371094 32.597656 215.488281 33.34375 215.488281 L 33.34375 215.867188 Z M 32.222656 212.011719 L 33.382812 212.011719 C 33.984375 212.011719 34.445312 211.890625 34.757812 211.648438 C 35.074219 211.40625 35.230469 210.992188 35.230469 210.410156 C 35.230469 209.839844 35.074219 209.429688 34.765625 209.1875 C 34.453125 208.945312 33.992188 208.824219 33.382812 208.824219 L 32.773438 208.824219 C 32.640625 208.824219 32.539062 208.832031 32.46875 208.84375 C 32.394531 208.855469 32.335938 208.886719 32.292969 208.9375 C 32.246094 208.988281 32.222656 209.066406 32.222656 209.171875 L 32.222656 212.011719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 40.578125 215.992188 C 40.144531 215.992188 39.742188 215.882812 39.367188 215.660156 C 38.996094 215.441406 38.703125 215.144531 38.484375 214.769531 C 38.273438 214.398438 38.164062 213.992188 38.164062 213.554688 C 38.164062 213.222656 38.222656 212.902344 38.339844 212.59375 C 38.457031 212.289062 38.628906 212.011719 38.847656 211.769531 C 39.074219 211.527344 39.332031 211.339844 39.621094 211.203125 C 39.914062 211.066406 40.234375 210.996094 40.578125 210.996094 C 41.023438 210.996094 41.429688 211.113281 41.796875 211.351562 C 42.164062 211.585938 42.453125 211.902344 42.667969 212.296875 C 42.878906 212.691406 42.984375 213.109375 42.984375 213.554688 C 42.984375 213.988281 42.878906 214.394531 42.660156 214.765625 C 42.445312 215.140625 42.152344 215.441406 41.78125 215.660156 C 41.414062 215.882812 41.011719 215.992188 40.578125 215.992188 Z M 40.578125 215.667969 C 41.160156 215.667969 41.546875 215.460938 41.742188 215.039062 C 41.933594 214.621094 42.03125 214.085938 42.03125 213.433594 C 42.03125 213.070312 42.011719 212.769531 41.972656 212.527344 C 41.933594 212.289062 41.847656 212.070312 41.71875 211.875 C 41.636719 211.757812 41.535156 211.652344 41.410156 211.5625 C 41.285156 211.46875 41.152344 211.402344 41.011719 211.355469 C 40.871094 211.308594 40.726562 211.285156 40.578125 211.285156 C 40.351562 211.285156 40.136719 211.335938 39.933594 211.4375 C 39.730469 211.542969 39.558594 211.6875 39.421875 211.875 C 39.289062 212.082031 39.207031 212.308594 39.167969 212.554688 C 39.132812 212.800781 39.113281 213.09375 39.113281 213.433594 C 39.113281 213.839844 39.148438 214.203125 39.21875 214.527344 C 39.289062 214.851562 39.429688 215.121094 39.648438 215.339844 C 39.859375 215.558594 40.171875 215.667969 40.578125 215.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 44.464844 214.5625 L 44.464844 211.566406 L 43.5625 211.566406 L 43.5625 211.285156 C 44.039062 211.285156 44.390625 211.0625 44.613281 210.621094 C 44.835938 210.175781 44.945312 209.699219 44.945312 209.183594 L 45.257812 209.183594 L 45.257812 211.183594 L 46.792969 211.183594 L 46.792969 211.566406 L 45.257812 211.566406 L 45.257812 214.539062 C 45.257812 214.839844 45.308594 215.101562 45.410156 215.328125 C 45.511719 215.554688 45.691406 215.667969 45.953125 215.667969 C 46.203125 215.667969 46.382812 215.550781 46.492188 215.3125 C 46.601562 215.074219 46.65625 214.816406 46.65625 214.539062 L 46.65625 213.902344 L 46.96875 213.902344 L 46.96875 214.5625 C 46.96875 214.789062 46.925781 215.011719 46.84375 215.234375 C 46.761719 215.453125 46.640625 215.636719 46.476562 215.777344 C 46.3125 215.917969 46.113281 215.992188 45.878906 215.992188 C 45.445312 215.992188 45.101562 215.863281 44.847656 215.601562 C 44.59375 215.34375 44.464844 214.996094 44.464844 214.5625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 48.070312 214.800781 C 48.070312 214.371094 48.238281 214.019531 48.578125 213.75 C 48.917969 213.480469 49.328125 213.289062 49.804688 213.175781 C 50.28125 213.066406 50.734375 213.011719 51.164062 213.011719 L 51.164062 212.5625 C 51.164062 212.355469 51.117188 212.152344 51.027344 211.953125 C 50.933594 211.757812 50.800781 211.597656 50.628906 211.472656 C 50.453125 211.347656 50.261719 211.285156 50.050781 211.285156 C 49.570312 211.285156 49.203125 211.390625 48.953125 211.605469 C 49.089844 211.605469 49.203125 211.660156 49.292969 211.765625 C 49.382812 211.871094 49.429688 211.992188 49.429688 212.128906 C 49.429688 212.269531 49.378906 212.394531 49.277344 212.5 C 49.175781 212.601562 49.054688 212.652344 48.914062 212.652344 C 48.765625 212.652344 48.640625 212.601562 48.539062 212.5 C 48.4375 212.394531 48.386719 212.269531 48.386719 212.128906 C 48.386719 211.746094 48.558594 211.460938 48.90625 211.273438 C 49.25 211.089844 49.632812 210.996094 50.050781 210.996094 C 50.347656 210.996094 50.644531 211.058594 50.941406 211.183594 C 51.238281 211.308594 51.480469 211.488281 51.667969 211.722656 C 51.859375 211.957031 51.953125 212.230469 51.953125 212.542969 L 51.953125 214.988281 C 51.953125 215.128906 51.984375 215.261719 52.042969 215.378906 C 52.105469 215.5 52.199219 215.558594 52.324219 215.558594 C 52.445312 215.558594 52.535156 215.496094 52.59375 215.375 C 52.652344 215.253906 52.679688 215.125 52.679688 214.988281 L 52.679688 214.292969 L 52.996094 214.292969 L 52.996094 214.988281 C 52.996094 215.148438 52.957031 215.304688 52.871094 215.449219 C 52.785156 215.597656 52.671875 215.714844 52.527344 215.800781 C 52.382812 215.886719 52.230469 215.933594 52.066406 215.933594 C 51.851562 215.933594 51.667969 215.851562 51.515625 215.6875 C 51.363281 215.523438 51.277344 215.328125 51.257812 215.101562 C 51.125 215.371094 50.925781 215.585938 50.664062 215.75 C 50.402344 215.910156 50.121094 215.992188 49.820312 215.992188 C 49.546875 215.992188 49.277344 215.949219 49.011719 215.867188 C 48.742188 215.785156 48.519531 215.65625 48.339844 215.480469 C 48.160156 215.304688 48.070312 215.078125 48.070312 214.800781 Z M 48.953125 214.800781 C 48.953125 215.054688 49.046875 215.269531 49.234375 215.445312 C 49.421875 215.617188 49.644531 215.703125 49.898438 215.703125 C 50.132812 215.703125 50.34375 215.644531 50.535156 215.527344 C 50.726562 215.410156 50.878906 215.253906 50.992188 215.050781 C 51.105469 214.851562 51.164062 214.636719 51.164062 214.417969 L 51.164062 213.285156 C 50.832031 213.285156 50.492188 213.339844 50.148438 213.449219 C 49.804688 213.554688 49.519531 213.722656 49.292969 213.953125 C 49.066406 214.183594 48.953125 214.46875 48.953125 214.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 54.242188 214.5625 L 54.242188 211.566406 L 53.339844 211.566406 L 53.339844 211.285156 C 53.816406 211.285156 54.167969 211.0625 54.390625 210.621094 C 54.613281 210.175781 54.722656 209.699219 54.722656 209.183594 L 55.035156 209.183594 L 55.035156 211.183594 L 56.570312 211.183594 L 56.570312 211.566406 L 55.035156 211.566406 L 55.035156 214.539062 C 55.035156 214.839844 55.085938 215.101562 55.1875 215.328125 C 55.289062 215.554688 55.46875 215.667969 55.730469 215.667969 C 55.980469 215.667969 56.160156 215.550781 56.269531 215.3125 C 56.378906 215.074219 56.433594 214.816406 56.433594 214.539062 L 56.433594 213.902344 L 56.746094 213.902344 L 56.746094 214.5625 C 56.746094 214.789062 56.703125 215.011719 56.621094 215.234375 C 56.539062 215.453125 56.417969 215.636719 56.253906 215.777344 C 56.089844 215.917969 55.890625 215.992188 55.65625 215.992188 C 55.222656 215.992188 54.878906 215.863281 54.625 215.601562 C 54.371094 215.34375 54.242188 214.996094 54.242188 214.5625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 57.746094 215.867188 L 57.746094 215.488281 C 57.996094 215.488281 58.203125 215.46875 58.359375 215.429688 C 58.519531 215.390625 58.597656 215.292969 58.597656 215.140625 L 58.597656 212.175781 C 58.597656 211.898438 58.542969 211.726562 58.433594 211.660156 C 58.328125 211.597656 58.113281 211.566406 57.792969 211.566406 L 57.792969 211.183594 L 59.363281 211.066406 L 59.363281 215.140625 C 59.363281 215.292969 59.433594 215.390625 59.570312 215.429688 C 59.707031 215.46875 59.890625 215.488281 60.121094 215.488281 L 60.121094 215.867188 Z M 58.210938 209.199219 C 58.210938 209.039062 58.269531 208.898438 58.390625 208.777344 C 58.511719 208.65625 58.648438 208.597656 58.800781 208.597656 C 58.90625 208.597656 59.007812 208.625 59.101562 208.679688 C 59.199219 208.734375 59.273438 208.808594 59.324219 208.902344 C 59.378906 209 59.40625 209.097656 59.40625 209.199219 C 59.40625 209.355469 59.34375 209.492188 59.222656 209.613281 C 59.101562 209.730469 58.960938 209.789062 58.800781 209.789062 C 58.648438 209.789062 58.511719 209.730469 58.390625 209.613281 C 58.269531 209.492188 58.210938 209.355469 58.210938 209.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 63.1875 215.992188 C 62.753906 215.992188 62.351562 215.882812 61.976562 215.660156 C 61.605469 215.441406 61.308594 215.144531 61.09375 214.769531 C 60.878906 214.398438 60.773438 213.992188 60.773438 213.554688 C 60.773438 213.222656 60.832031 212.902344 60.949219 212.59375 C 61.066406 212.289062 61.234375 212.011719 61.457031 211.769531 C 61.679688 211.527344 61.9375 211.339844 62.230469 211.203125 C 62.523438 211.066406 62.84375 210.996094 63.1875 210.996094 C 63.632812 210.996094 64.039062 211.113281 64.40625 211.351562 C 64.773438 211.585938 65.0625 211.902344 65.277344 212.296875 C 65.488281 212.691406 65.59375 213.109375 65.59375 213.554688 C 65.59375 213.988281 65.488281 214.394531 65.269531 214.765625 C 65.050781 215.140625 64.761719 215.441406 64.390625 215.660156 C 64.023438 215.882812 63.621094 215.992188 63.1875 215.992188 Z M 63.1875 215.667969 C 63.769531 215.667969 64.15625 215.460938 64.347656 215.039062 C 64.542969 214.621094 64.640625 214.085938 64.640625 213.433594 C 64.640625 213.070312 64.621094 212.769531 64.582031 212.527344 C 64.542969 212.289062 64.457031 212.070312 64.328125 211.875 C 64.246094 211.757812 64.144531 211.652344 64.019531 211.5625 C 63.894531 211.46875 63.761719 211.402344 63.621094 211.355469 C 63.480469 211.308594 63.335938 211.285156 63.1875 211.285156 C 62.960938 211.285156 62.746094 211.335938 62.542969 211.4375 C 62.339844 211.542969 62.167969 211.6875 62.03125 211.875 C 61.898438 212.082031 61.816406 212.308594 61.777344 212.554688 C 61.742188 212.800781 61.722656 213.09375 61.722656 213.433594 C 61.722656 213.839844 61.757812 214.203125 61.828125 214.527344 C 61.898438 214.851562 62.039062 215.121094 62.253906 215.339844 C 62.46875 215.558594 62.78125 215.667969 63.1875 215.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 66.289062 215.867188 L 66.289062 215.488281 C 66.539062 215.488281 66.742188 215.46875 66.902344 215.429688 C 67.058594 215.390625 67.140625 215.292969 67.140625 215.140625 L 67.140625 212.175781 C 67.140625 211.980469 67.109375 211.839844 67.050781 211.753906 C 66.992188 211.667969 66.910156 211.613281 66.800781 211.59375 C 66.691406 211.574219 66.519531 211.566406 66.289062 211.566406 L 66.289062 211.183594 L 67.867188 211.066406 L 67.867188 212.128906 C 68.015625 211.816406 68.230469 211.558594 68.515625 211.363281 C 68.800781 211.164062 69.113281 211.066406 69.449219 211.066406 C 69.949219 211.066406 70.324219 211.1875 70.578125 211.425781 C 70.832031 211.667969 70.960938 212.035156 70.960938 212.53125 L 70.960938 215.140625 C 70.960938 215.292969 71.039062 215.390625 71.195312 215.429688 C 71.355469 215.46875 71.558594 215.488281 71.808594 215.488281 L 71.808594 215.867188 L 69.320312 215.867188 L 69.320312 215.488281 C 69.566406 215.488281 69.769531 215.46875 69.929688 215.429688 C 70.089844 215.390625 70.167969 215.292969 70.167969 215.140625 L 70.167969 212.5625 C 70.167969 212.207031 70.117188 211.917969 70.011719 211.691406 C 69.910156 211.460938 69.699219 211.347656 69.382812 211.347656 C 68.960938 211.347656 68.613281 211.515625 68.34375 211.851562 C 68.074219 212.1875 67.9375 212.570312 67.9375 213 L 67.9375 215.140625 C 67.9375 215.292969 68.015625 215.390625 68.175781 215.429688 C 68.335938 215.46875 68.539062 215.488281 68.78125 215.488281 L 68.78125 215.867188 L 66.289062 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 76.078125 215.867188 L 76.078125 215.488281 C 76.824219 215.488281 77.199219 215.371094 77.199219 215.140625 L 77.199219 209.171875 C 77.199219 208.941406 76.824219 208.824219 76.078125 208.824219 L 76.078125 208.445312 L 82.074219 208.445312 L 82.375 210.933594 L 82.058594 210.933594 C 82.011719 210.476562 81.949219 210.117188 81.863281 209.851562 C 81.78125 209.589844 81.660156 209.382812 81.5 209.230469 C 81.34375 209.082031 81.128906 208.976562 80.863281 208.914062 C 80.59375 208.855469 80.226562 208.824219 79.757812 208.824219 L 78.769531 208.824219 C 78.636719 208.824219 78.53125 208.832031 78.460938 208.84375 C 78.386719 208.855469 78.328125 208.886719 78.28125 208.9375 C 78.234375 208.988281 78.210938 209.066406 78.210938 209.171875 L 78.210938 211.96875 L 78.984375 211.96875 C 79.355469 211.96875 79.628906 211.9375 79.800781 211.871094 C 79.976562 211.804688 80.09375 211.683594 80.160156 211.511719 C 80.222656 211.339844 80.257812 211.066406 80.257812 210.691406 L 80.574219 210.691406 L 80.574219 213.621094 L 80.257812 213.621094 C 80.257812 213.25 80.222656 212.976562 80.160156 212.804688 C 80.09375 212.628906 79.976562 212.507812 79.800781 212.441406 C 79.628906 212.375 79.355469 212.34375 78.984375 212.34375 L 78.210938 212.34375 L 78.210938 215.140625 C 78.210938 215.371094 78.675781 215.488281 79.605469 215.488281 L 79.605469 215.867188 L 76.078125 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 82.289062 215.867188 L 82.289062 215.488281 C 82.535156 215.488281 82.738281 215.46875 82.898438 215.429688 C 83.058594 215.390625 83.140625 215.292969 83.140625 215.140625 L 83.140625 212.175781 C 83.140625 211.980469 83.109375 211.839844 83.050781 211.753906 C 82.992188 211.667969 82.90625 211.613281 82.796875 211.59375 C 82.691406 211.574219 82.519531 211.566406 82.289062 211.566406 L 82.289062 211.183594 L 83.847656 211.066406 L 83.847656 212.128906 C 83.960938 211.8125 84.125 211.554688 84.34375 211.359375 C 84.558594 211.164062 84.820312 211.066406 85.132812 211.066406 C 85.34375 211.066406 85.539062 211.128906 85.707031 211.257812 C 85.878906 211.382812 85.960938 211.554688 85.960938 211.765625 C 85.960938 211.894531 85.914062 212.007812 85.820312 212.105469 C 85.726562 212.199219 85.613281 212.25 85.476562 212.25 C 85.339844 212.25 85.222656 212.203125 85.128906 212.105469 C 85.03125 212.011719 84.984375 211.898438 84.984375 211.765625 C 84.984375 211.570312 85.054688 211.429688 85.195312 211.347656 L 85.132812 211.347656 C 84.839844 211.347656 84.597656 211.453125 84.414062 211.667969 C 84.226562 211.878906 84.09375 212.144531 84.019531 212.457031 C 83.9375 212.773438 83.898438 213.070312 83.898438 213.355469 L 83.898438 215.140625 C 83.898438 215.371094 84.25 215.488281 84.953125 215.488281 L 84.953125 215.867188 L 82.289062 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 89.023438 215.992188 C 88.582031 215.992188 88.175781 215.875 87.804688 215.644531 C 87.4375 215.410156 87.148438 215.101562 86.9375 214.714844 C 86.726562 214.328125 86.621094 213.917969 86.621094 213.484375 C 86.621094 213.058594 86.714844 212.65625 86.90625 212.277344 C 87.097656 211.894531 87.367188 211.585938 87.714844 211.351562 C 88.058594 211.113281 88.445312 210.996094 88.871094 210.996094 C 89.203125 210.996094 89.492188 211.050781 89.738281 211.164062 C 89.984375 211.273438 90.1875 211.429688 90.347656 211.628906 C 90.507812 211.828125 90.625 212.0625 90.707031 212.328125 C 90.785156 212.597656 90.828125 212.890625 90.828125 213.214844 C 90.828125 213.308594 90.789062 213.355469 90.714844 213.355469 L 87.570312 213.355469 L 87.570312 213.472656 C 87.570312 214.074219 87.691406 214.589844 87.933594 215.023438 C 88.175781 215.453125 88.570312 215.667969 89.121094 215.667969 C 89.34375 215.667969 89.550781 215.621094 89.738281 215.523438 C 89.929688 215.425781 90.09375 215.289062 90.230469 215.109375 C 90.371094 214.933594 90.464844 214.742188 90.515625 214.539062 C 90.523438 214.515625 90.539062 214.492188 90.558594 214.476562 C 90.578125 214.457031 90.597656 214.445312 90.621094 214.445312 L 90.714844 214.445312 C 90.789062 214.445312 90.828125 214.492188 90.828125 214.585938 C 90.726562 214.996094 90.503906 215.332031 90.164062 215.59375 C 89.824219 215.859375 89.445312 215.992188 89.023438 215.992188 Z M 87.582031 213.085938 L 90.058594 213.085938 C 90.058594 212.8125 90.023438 212.539062 89.945312 212.257812 C 89.867188 211.980469 89.742188 211.746094 89.5625 211.5625 C 89.386719 211.375 89.15625 211.285156 88.871094 211.285156 C 88.460938 211.285156 88.144531 211.476562 87.917969 211.859375 C 87.695312 212.246094 87.582031 212.652344 87.582031 213.085938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 94.460938 217.976562 L 94.460938 217.59375 C 94.710938 217.59375 94.914062 217.574219 95.074219 217.535156 C 95.230469 217.492188 95.3125 217.398438 95.3125 217.25 L 95.3125 215.234375 C 95.144531 215.460938 94.929688 215.644531 94.671875 215.78125 C 94.414062 215.921875 94.144531 215.992188 93.859375 215.992188 C 93.535156 215.992188 93.230469 215.925781 92.953125 215.789062 C 92.671875 215.65625 92.429688 215.472656 92.222656 215.242188 C 92.015625 215.011719 91.855469 214.746094 91.738281 214.441406 C 91.625 214.140625 91.566406 213.832031 91.566406 213.519531 C 91.566406 213.089844 91.671875 212.6875 91.882812 212.304688 C 92.09375 211.925781 92.386719 211.625 92.757812 211.402344 C 93.128906 211.179688 93.527344 211.066406 93.953125 211.066406 C 94.261719 211.066406 94.546875 211.15625 94.808594 211.328125 C 95.070312 211.5 95.277344 211.734375 95.433594 212.019531 L 95.820312 211.066406 L 96.109375 211.066406 L 96.109375 217.25 C 96.109375 217.398438 96.1875 217.492188 96.347656 217.535156 C 96.507812 217.574219 96.710938 217.59375 96.953125 217.59375 L 96.953125 217.976562 Z M 93.921875 215.703125 C 94.242188 215.703125 94.53125 215.597656 94.785156 215.382812 C 95.039062 215.167969 95.226562 214.898438 95.347656 214.574219 L 95.347656 212.664062 C 95.273438 212.320312 95.117188 212.015625 94.882812 211.761719 C 94.648438 211.503906 94.371094 211.378906 94.046875 211.378906 C 93.796875 211.378906 93.574219 211.441406 93.378906 211.574219 C 93.1875 211.703125 93.027344 211.878906 92.898438 212.101562 C 92.769531 212.320312 92.671875 212.558594 92.605469 212.8125 C 92.542969 213.066406 92.511719 213.304688 92.511719 213.53125 C 92.511719 213.824219 92.5625 214.140625 92.664062 214.480469 C 92.769531 214.820312 92.925781 215.109375 93.136719 215.347656 C 93.347656 215.585938 93.609375 215.703125 93.921875 215.703125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 98.179688 214.574219 L 98.179688 212.175781 C 98.179688 211.980469 98.152344 211.839844 98.09375 211.753906 C 98.035156 211.667969 97.949219 211.613281 97.839844 211.59375 C 97.730469 211.574219 97.5625 211.566406 97.332031 211.566406 L 97.332031 211.183594 L 98.976562 211.066406 L 98.976562 214.574219 C 98.976562 214.855469 98.996094 215.074219 99.039062 215.234375 C 99.082031 215.390625 99.167969 215.507812 99.300781 215.585938 C 99.433594 215.664062 99.644531 215.703125 99.933594 215.703125 C 100.324219 215.703125 100.632812 215.542969 100.863281 215.214844 C 101.09375 214.890625 101.210938 214.519531 101.210938 214.105469 L 101.210938 212.175781 C 101.210938 211.980469 101.179688 211.839844 101.117188 211.753906 C 101.058594 211.667969 100.976562 211.613281 100.867188 211.59375 C 100.757812 211.574219 100.589844 211.566406 100.359375 211.566406 L 100.359375 211.183594 L 102 211.066406 L 102 214.878906 C 102 215.070312 102.03125 215.210938 102.089844 215.296875 C 102.148438 215.386719 102.230469 215.4375 102.339844 215.457031 C 102.449219 215.476562 102.621094 215.488281 102.851562 215.488281 L 102.851562 215.867188 L 101.238281 215.992188 L 101.238281 215.070312 C 101.105469 215.34375 100.921875 215.566406 100.679688 215.738281 C 100.4375 215.90625 100.171875 215.992188 99.878906 215.992188 C 99.359375 215.992188 98.949219 215.882812 98.640625 215.660156 C 98.335938 215.441406 98.179688 215.078125 98.179688 214.574219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 105.824219 215.992188 C 105.386719 215.992188 104.980469 215.875 104.609375 215.644531 C 104.242188 215.410156 103.949219 215.101562 103.738281 214.714844 C 103.53125 214.328125 103.425781 213.917969 103.425781 213.484375 C 103.425781 213.058594 103.519531 212.65625 103.710938 212.277344 C 103.902344 211.894531 104.171875 211.585938 104.515625 211.351562 C 104.863281 211.113281 105.246094 210.996094 105.675781 210.996094 C 106.007812 210.996094 106.296875 211.050781 106.539062 211.164062 C 106.785156 211.273438 106.988281 211.429688 107.148438 211.628906 C 107.3125 211.828125 107.429688 212.0625 107.511719 212.328125 C 107.589844 212.597656 107.628906 212.890625 107.628906 213.214844 C 107.628906 213.308594 107.59375 213.355469 107.519531 213.355469 L 104.371094 213.355469 L 104.371094 213.472656 C 104.371094 214.074219 104.496094 214.589844 104.738281 215.023438 C 104.980469 215.453125 105.375 215.667969 105.925781 215.667969 C 106.148438 215.667969 106.355469 215.621094 106.542969 215.523438 C 106.734375 215.425781 106.898438 215.289062 107.035156 215.109375 C 107.175781 214.933594 107.269531 214.742188 107.320312 214.539062 C 107.328125 214.515625 107.34375 214.492188 107.359375 214.476562 C 107.382812 214.457031 107.402344 214.445312 107.425781 214.445312 L 107.519531 214.445312 C 107.59375 214.445312 107.628906 214.492188 107.628906 214.585938 C 107.527344 214.996094 107.308594 215.332031 106.96875 215.59375 C 106.628906 215.859375 106.246094 215.992188 105.824219 215.992188 Z M 104.386719 213.085938 L 106.863281 213.085938 C 106.863281 212.8125 106.824219 212.539062 106.75 212.257812 C 106.671875 211.980469 106.546875 211.746094 106.367188 211.5625 C 106.191406 211.375 105.960938 211.285156 105.675781 211.285156 C 105.265625 211.285156 104.945312 211.476562 104.722656 211.859375 C 104.496094 212.246094 104.386719 212.652344 104.386719 213.085938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 108.328125 215.867188 L 108.328125 215.488281 C 108.578125 215.488281 108.785156 215.46875 108.941406 215.429688 C 109.101562 215.390625 109.179688 215.292969 109.179688 215.140625 L 109.179688 212.175781 C 109.179688 211.980469 109.148438 211.839844 109.09375 211.753906 C 109.03125 211.667969 108.949219 211.613281 108.839844 211.59375 C 108.730469 211.574219 108.5625 211.566406 108.328125 211.566406 L 108.328125 211.183594 L 109.90625 211.066406 L 109.90625 212.128906 C 110.054688 211.816406 110.269531 211.558594 110.554688 211.363281 C 110.839844 211.164062 111.152344 211.066406 111.488281 211.066406 C 111.988281 211.066406 112.363281 211.1875 112.617188 211.425781 C 112.871094 211.667969 113 212.035156 113 212.53125 L 113 215.140625 C 113 215.292969 113.078125 215.390625 113.238281 215.429688 C 113.394531 215.46875 113.597656 215.488281 113.847656 215.488281 L 113.847656 215.867188 L 111.359375 215.867188 L 111.359375 215.488281 C 111.605469 215.488281 111.808594 215.46875 111.96875 215.429688 C 112.128906 215.390625 112.210938 215.292969 112.210938 215.140625 L 112.210938 212.5625 C 112.210938 212.207031 112.15625 211.917969 112.054688 211.691406 C 111.949219 211.460938 111.738281 211.347656 111.425781 211.347656 C 111.003906 211.347656 110.65625 211.515625 110.382812 211.851562 C 110.113281 212.1875 109.976562 212.570312 109.976562 213 L 109.976562 215.140625 C 109.976562 215.292969 110.054688 215.390625 110.21875 215.429688 C 110.378906 215.46875 110.578125 215.488281 110.820312 215.488281 L 110.820312 215.867188 L 108.328125 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 116.824219 215.992188 C 116.386719 215.992188 115.988281 215.875 115.632812 215.648438 C 115.273438 215.421875 114.992188 215.117188 114.789062 214.734375 C 114.585938 214.355469 114.480469 213.949219 114.480469 213.519531 C 114.480469 213.09375 114.582031 212.6875 114.785156 212.292969 C 114.988281 211.902344 115.269531 211.585938 115.628906 211.351562 C 115.988281 211.113281 116.386719 210.996094 116.824219 210.996094 C 117.25 210.996094 117.636719 211.082031 117.984375 211.246094 C 118.332031 211.410156 118.507812 211.683594 118.507812 212.0625 C 118.507812 212.203125 118.457031 212.324219 118.355469 212.429688 C 118.257812 212.535156 118.136719 212.589844 117.992188 212.589844 C 117.847656 212.589844 117.722656 212.535156 117.621094 212.429688 C 117.519531 212.324219 117.46875 212.203125 117.46875 212.0625 C 117.46875 211.9375 117.511719 211.828125 117.59375 211.734375 C 117.675781 211.640625 117.773438 211.582031 117.890625 211.554688 C 117.640625 211.394531 117.289062 211.3125 116.835938 211.3125 C 116.488281 211.3125 116.210938 211.429688 115.996094 211.660156 C 115.78125 211.890625 115.636719 212.175781 115.550781 212.511719 C 115.46875 212.851562 115.425781 213.1875 115.425781 213.519531 C 115.425781 213.871094 115.476562 214.210938 115.578125 214.539062 C 115.683594 214.867188 115.851562 215.136719 116.085938 215.351562 C 116.316406 215.5625 116.609375 215.667969 116.960938 215.667969 C 117.304688 215.667969 117.597656 215.566406 117.835938 215.355469 C 118.074219 215.148438 118.242188 214.875 118.332031 214.53125 C 118.332031 214.492188 118.359375 214.46875 118.414062 214.46875 L 118.546875 214.46875 C 118.566406 214.46875 118.585938 214.480469 118.605469 214.5 C 118.621094 214.519531 118.628906 214.539062 118.628906 214.5625 L 118.628906 214.59375 C 118.519531 215.019531 118.300781 215.363281 117.976562 215.613281 C 117.648438 215.863281 117.265625 215.992188 116.824219 215.992188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 119.757812 217.652344 C 119.894531 217.761719 120.046875 217.816406 120.214844 217.816406 C 120.671875 217.816406 121.042969 217.472656 121.332031 216.78125 L 121.703125 215.867188 L 120.074219 211.875 C 120.007812 211.742188 119.902344 211.65625 119.765625 211.621094 C 119.628906 211.582031 119.441406 211.566406 119.210938 211.566406 L 119.210938 211.183594 L 121.496094 211.183594 L 121.496094 211.566406 C 121.097656 211.566406 120.898438 211.652344 120.898438 211.824219 C 120.898438 211.855469 120.902344 211.875 120.90625 211.886719 L 122.117188 214.859375 L 123.207031 212.1875 C 123.226562 212.132812 123.238281 212.070312 123.238281 212 C 123.238281 211.914062 123.214844 211.835938 123.164062 211.769531 C 123.121094 211.703125 123.058594 211.652344 122.980469 211.617188 C 122.90625 211.582031 122.820312 211.566406 122.722656 211.566406 L 122.722656 211.183594 L 124.53125 211.183594 L 124.53125 211.566406 C 124.304688 211.566406 124.109375 211.617188 123.941406 211.71875 C 123.773438 211.824219 123.644531 211.976562 123.554688 212.175781 L 121.671875 216.78125 C 121.574219 217.015625 121.460938 217.230469 121.328125 217.425781 C 121.195312 217.621094 121.03125 217.78125 120.839844 217.910156 C 120.648438 218.035156 120.441406 218.097656 120.214844 218.097656 C 119.949219 218.097656 119.714844 218.011719 119.511719 217.835938 C 119.3125 217.660156 119.210938 217.445312 119.210938 217.1875 C 119.210938 217.050781 119.257812 216.933594 119.351562 216.84375 C 119.441406 216.75 119.554688 216.707031 119.691406 216.707031 C 119.78125 216.707031 119.863281 216.726562 119.9375 216.765625 C 120.011719 216.808594 120.070312 216.863281 120.109375 216.933594 C 120.148438 217.003906 120.164062 217.085938 120.164062 217.1875 C 120.164062 217.300781 120.128906 217.40625 120.054688 217.5 C 119.976562 217.589844 119.878906 217.640625 119.757812 217.652344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 129.761719 218.585938 L 129.761719 207.71875 L 131.25 207.71875 L 131.25 208.152344 L 130.199219 208.152344 L 130.199219 218.152344 L 131.25 218.152344 L 131.25 218.585938 L 129.761719 218.585938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 131.8125 215.867188 L 131.8125 215.488281 C 132.058594 215.488281 132.261719 215.46875 132.425781 215.429688 C 132.585938 215.390625 132.664062 215.292969 132.664062 215.140625 L 132.664062 212.175781 C 132.664062 211.980469 132.636719 211.839844 132.574219 211.753906 C 132.519531 211.667969 132.433594 211.613281 132.324219 211.59375 C 132.214844 211.574219 132.046875 211.566406 131.8125 211.566406 L 131.8125 211.183594 L 133.371094 211.066406 L 133.371094 212.128906 C 133.484375 211.8125 133.652344 211.554688 133.867188 211.359375 C 134.085938 211.164062 134.347656 211.066406 134.65625 211.066406 C 134.871094 211.066406 135.0625 211.128906 135.234375 211.257812 C 135.402344 211.382812 135.488281 211.554688 135.488281 211.765625 C 135.488281 211.894531 135.441406 212.007812 135.347656 212.105469 C 135.253906 212.199219 135.136719 212.25 135.003906 212.25 C 134.863281 212.25 134.746094 212.203125 134.652344 212.105469 C 134.558594 212.011719 134.507812 211.898438 134.507812 211.765625 C 134.507812 211.570312 134.578125 211.429688 134.71875 211.347656 L 134.65625 211.347656 C 134.363281 211.347656 134.121094 211.453125 133.9375 211.667969 C 133.753906 211.878906 133.621094 212.144531 133.542969 212.457031 C 133.464844 212.773438 133.425781 213.070312 133.425781 213.355469 L 133.425781 215.140625 C 133.425781 215.371094 133.777344 215.488281 134.480469 215.488281 L 134.480469 215.867188 L 131.8125 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 136.273438 214.800781 C 136.273438 214.371094 136.445312 214.019531 136.785156 213.75 C 137.125 213.480469 137.53125 213.289062 138.007812 213.175781 C 138.484375 213.066406 138.9375 213.011719 139.367188 213.011719 L 139.367188 212.5625 C 139.367188 212.355469 139.320312 212.152344 139.230469 211.953125 C 139.140625 211.757812 139.007812 211.597656 138.832031 211.472656 C 138.65625 211.347656 138.464844 211.285156 138.253906 211.285156 C 137.773438 211.285156 137.410156 211.390625 137.160156 211.605469 C 137.296875 211.605469 137.410156 211.660156 137.5 211.765625 C 137.589844 211.871094 137.632812 211.992188 137.632812 212.128906 C 137.632812 212.269531 137.582031 212.394531 137.480469 212.5 C 137.378906 212.601562 137.257812 212.652344 137.117188 212.652344 C 136.96875 212.652344 136.84375 212.601562 136.742188 212.5 C 136.640625 212.394531 136.589844 212.269531 136.589844 212.128906 C 136.589844 211.746094 136.765625 211.460938 137.109375 211.273438 C 137.453125 211.089844 137.835938 210.996094 138.253906 210.996094 C 138.550781 210.996094 138.847656 211.058594 139.144531 211.183594 C 139.441406 211.308594 139.6875 211.488281 139.875 211.722656 C 140.0625 211.957031 140.160156 212.230469 140.160156 212.542969 L 140.160156 214.988281 C 140.160156 215.128906 140.1875 215.261719 140.25 215.378906 C 140.308594 215.5 140.402344 215.558594 140.527344 215.558594 C 140.648438 215.558594 140.738281 215.496094 140.796875 215.375 C 140.855469 215.253906 140.886719 215.125 140.886719 214.988281 L 140.886719 214.292969 L 141.203125 214.292969 L 141.203125 214.988281 C 141.203125 215.148438 141.160156 215.304688 141.074219 215.449219 C 140.992188 215.597656 140.878906 215.714844 140.734375 215.800781 C 140.589844 215.886719 140.433594 215.933594 140.269531 215.933594 C 140.054688 215.933594 139.871094 215.851562 139.71875 215.6875 C 139.566406 215.523438 139.480469 215.328125 139.460938 215.101562 C 139.328125 215.371094 139.132812 215.585938 138.871094 215.75 C 138.609375 215.910156 138.328125 215.992188 138.027344 215.992188 C 137.753906 215.992188 137.480469 215.949219 137.214844 215.867188 C 136.945312 215.785156 136.722656 215.65625 136.542969 215.480469 C 136.363281 215.304688 136.273438 215.078125 136.273438 214.800781 Z M 137.160156 214.800781 C 137.160156 215.054688 137.253906 215.269531 137.441406 215.445312 C 137.628906 215.617188 137.847656 215.703125 138.101562 215.703125 C 138.335938 215.703125 138.550781 215.644531 138.742188 215.527344 C 138.933594 215.410156 139.085938 215.253906 139.199219 215.050781 C 139.3125 214.851562 139.367188 214.636719 139.367188 214.417969 L 139.367188 213.285156 C 139.035156 213.285156 138.699219 213.339844 138.355469 213.449219 C 138.011719 213.554688 137.726562 213.722656 137.5 213.953125 C 137.273438 214.183594 137.160156 214.46875 137.160156 214.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 143.996094 215.992188 C 143.566406 215.992188 143.171875 215.875 142.820312 215.644531 C 142.464844 215.410156 142.191406 215.105469 141.996094 214.726562 C 141.800781 214.347656 141.703125 213.945312 141.703125 213.519531 C 141.703125 213.082031 141.808594 212.675781 142.023438 212.300781 C 142.234375 211.921875 142.527344 211.625 142.894531 211.402344 C 143.265625 211.179688 143.671875 211.066406 144.113281 211.066406 C 144.378906 211.066406 144.628906 211.125 144.863281 211.234375 C 145.101562 211.34375 145.308594 211.5 145.484375 211.699219 L 145.484375 209.441406 C 145.484375 209.246094 145.453125 209.101562 145.394531 209.015625 C 145.335938 208.925781 145.253906 208.875 145.144531 208.855469 C 145.039062 208.835938 144.871094 208.824219 144.640625 208.824219 L 144.640625 208.445312 L 146.242188 208.328125 L 146.242188 214.878906 C 146.242188 215.070312 146.273438 215.210938 146.332031 215.296875 C 146.390625 215.386719 146.476562 215.4375 146.585938 215.457031 C 146.691406 215.476562 146.859375 215.488281 147.089844 215.488281 L 147.089844 215.867188 L 145.449219 215.992188 L 145.449219 215.304688 C 145.261719 215.519531 145.039062 215.6875 144.78125 215.808594 C 144.523438 215.929688 144.261719 215.992188 143.996094 215.992188 Z M 142.886719 214.925781 C 143.007812 215.160156 143.171875 215.347656 143.378906 215.492188 C 143.585938 215.632812 143.8125 215.703125 144.058594 215.703125 C 144.359375 215.703125 144.636719 215.617188 144.886719 215.445312 C 145.140625 215.269531 145.324219 215.042969 145.449219 214.765625 L 145.449219 212.164062 C 145.367188 212.007812 145.261719 211.863281 145.132812 211.738281 C 145.003906 211.609375 144.855469 211.515625 144.695312 211.449219 C 144.53125 211.382812 144.363281 211.347656 144.183594 211.347656 C 143.804688 211.347656 143.496094 211.457031 143.269531 211.671875 C 143.039062 211.886719 142.875 212.15625 142.785156 212.488281 C 142.691406 212.820312 142.648438 213.167969 142.648438 213.53125 C 142.648438 213.824219 142.660156 214.078125 142.691406 214.292969 C 142.71875 214.507812 142.785156 214.71875 142.886719 214.925781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 148.058594 218.367188 C 148.058594 218.34375 148.0625 218.332031 148.070312 218.328125 L 151.851562 207.851562 C 151.867188 207.808594 151.890625 207.777344 151.925781 207.753906 C 151.960938 207.730469 152.003906 207.71875 152.050781 207.71875 C 152.113281 207.71875 152.164062 207.738281 152.203125 207.777344 C 152.246094 207.816406 152.265625 207.867188 152.265625 207.933594 L 152.265625 207.976562 L 148.488281 218.449219 C 148.445312 218.539062 148.375 218.585938 148.277344 218.585938 C 148.21875 218.585938 148.167969 218.5625 148.125 218.519531 C 148.082031 218.476562 148.058594 218.425781 148.058594 218.367188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 153.3125 215.898438 L 153.3125 214.128906 C 153.3125 214.070312 153.34375 214.042969 153.40625 214.042969 L 153.542969 214.042969 C 153.582031 214.042969 153.609375 214.070312 153.625 214.128906 C 153.828125 215.179688 154.316406 215.703125 155.089844 215.703125 C 155.433594 215.703125 155.722656 215.625 155.953125 215.46875 C 156.1875 215.3125 156.300781 215.074219 156.300781 214.75 C 156.300781 214.515625 156.210938 214.316406 156.027344 214.152344 C 155.847656 213.988281 155.632812 213.875 155.386719 213.8125 L 154.660156 213.671875 C 154.414062 213.617188 154.191406 213.535156 153.992188 213.425781 C 153.792969 213.316406 153.632812 213.171875 153.503906 212.992188 C 153.378906 212.808594 153.3125 212.597656 153.3125 212.355469 C 153.3125 212.035156 153.398438 211.773438 153.566406 211.570312 C 153.734375 211.367188 153.949219 211.222656 154.21875 211.132812 C 154.484375 211.042969 154.777344 210.996094 155.089844 210.996094 C 155.460938 210.996094 155.785156 211.097656 156.0625 211.296875 L 156.378906 211.027344 C 156.378906 211.007812 156.394531 210.996094 156.429688 210.996094 L 156.507812 210.996094 C 156.53125 210.996094 156.550781 211.007812 156.566406 211.027344 C 156.585938 211.046875 156.59375 211.066406 156.59375 211.085938 L 156.59375 212.507812 C 156.59375 212.578125 156.566406 212.613281 156.507812 212.613281 L 156.378906 212.613281 C 156.3125 212.613281 156.277344 212.578125 156.277344 212.507812 C 156.277344 212.128906 156.171875 211.824219 155.960938 211.597656 C 155.75 211.367188 155.457031 211.253906 155.078125 211.253906 C 154.753906 211.253906 154.472656 211.3125 154.234375 211.433594 C 153.996094 211.550781 153.875 211.757812 153.875 212.050781 C 153.875 212.253906 153.960938 212.417969 154.132812 212.550781 C 154.304688 212.675781 154.507812 212.769531 154.738281 212.828125 L 155.46875 212.964844 C 155.71875 213.023438 155.953125 213.117188 156.167969 213.253906 C 156.382812 213.386719 156.550781 213.558594 156.675781 213.761719 C 156.800781 213.96875 156.863281 214.199219 156.863281 214.457031 C 156.863281 214.71875 156.820312 214.945312 156.730469 215.140625 C 156.640625 215.332031 156.515625 215.492188 156.351562 215.621094 C 156.1875 215.746094 156 215.839844 155.78125 215.898438 C 155.5625 215.960938 155.332031 215.992188 155.089844 215.992188 C 154.636719 215.992188 154.25 215.839844 153.929688 215.535156 L 153.53125 215.960938 C 153.53125 215.980469 153.511719 215.992188 153.472656 215.992188 L 153.40625 215.992188 C 153.34375 215.992188 153.3125 215.960938 153.3125 215.898438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 157.527344 218.585938 L 157.527344 218.152344 L 158.585938 218.152344 L 158.585938 208.152344 L 157.527344 208.152344 L 157.527344 207.71875 L 159.015625 207.71875 L 159.015625 218.585938 L 157.527344 218.585938 "/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -313.624453 L 386.075811 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -313.624453 L 1514.31374 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -313.624453 L 404.389714 -313.624453 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -575.473127 L 404.389714 -575.473127 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -837.321801 L 404.389714 -837.321801 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -1099.170475 L 404.389714 -1099.170475 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -1361.019149 L 404.389714 -1361.019149 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -1622.867823 L 404.389714 -1622.867823 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -1884.716497 L 404.389714 -1884.716497 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -2146.526095 L 404.389714 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -313.624453 L 1495.999838 -313.624453 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -575.473127 L 1495.999838 -575.473127 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -837.321801 L 1495.999838 -837.321801 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -1099.170475 L 1495.999838 -1099.170475 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -1361.019149 L 1495.999838 -1361.019149 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -1622.867823 L 1495.999838 -1622.867823 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -1884.716497 L 1495.999838 -1884.716497 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1514.31374 -2146.526095 L 1495.999838 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 16.402344 190.171875 L 16.402344 189.546875 L 19.085938 189.546875 L 19.085938 190.171875 L 16.402344 190.171875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 20.5625 192.046875 L 20.5625 191.691406 C 21.40625 191.691406 21.828125 191.582031 21.828125 191.367188 L 21.828125 186.058594 C 21.476562 186.226562 21.035156 186.308594 20.503906 186.308594 L 20.503906 185.957031 C 21.332031 185.957031 21.957031 185.742188 22.378906 185.308594 L 22.519531 185.308594 C 22.539062 185.308594 22.5625 185.316406 22.585938 185.335938 C 22.605469 185.351562 22.617188 185.371094 22.617188 185.398438 L 22.617188 191.367188 C 22.617188 191.582031 23.039062 191.691406 23.882812 191.691406 L 23.882812 192.046875 L 20.5625 192.046875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 24.902344 190.378906 L 24.902344 190.023438 L 28.03125 185.359375 C 28.054688 185.328125 28.089844 185.308594 28.136719 185.308594 L 28.285156 185.308594 C 28.363281 185.308594 28.402344 185.347656 28.402344 185.425781 L 28.402344 190.023438 L 29.390625 190.023438 L 29.390625 190.378906 L 28.402344 190.378906 L 28.402344 191.367188 C 28.402344 191.507812 28.5 191.597656 28.699219 191.632812 C 28.894531 191.671875 29.125 191.691406 29.386719 191.691406 L 29.386719 192.046875 L 26.597656 192.046875 L 26.597656 191.691406 C 26.855469 191.691406 27.082031 191.671875 27.28125 191.632812 C 27.480469 191.597656 27.582031 191.507812 27.582031 191.367188 L 27.582031 190.378906 Z M 25.238281 190.023438 L 27.640625 190.023438 L 27.640625 186.4375 Z M 25.238281 190.023438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 32.152344 192.269531 C 31.324219 192.269531 30.761719 191.929688 30.464844 191.246094 C 30.167969 190.566406 30.019531 189.757812 30.019531 188.820312 C 30.019531 188.234375 30.074219 187.683594 30.179688 187.167969 C 30.285156 186.648438 30.496094 186.210938 30.816406 185.851562 C 31.132812 185.488281 31.578125 185.308594 32.152344 185.308594 C 32.597656 185.308594 32.964844 185.417969 33.246094 185.632812 C 33.53125 185.851562 33.746094 186.132812 33.894531 186.476562 C 34.042969 186.824219 34.144531 187.191406 34.199219 187.582031 C 34.253906 187.976562 34.28125 188.386719 34.28125 188.820312 C 34.28125 189.402344 34.226562 189.945312 34.117188 190.453125 C 34.011719 190.957031 33.800781 191.386719 33.488281 191.738281 C 33.175781 192.09375 32.730469 192.269531 32.152344 192.269531 Z M 32.152344 192.007812 C 32.527344 192.007812 32.808594 191.8125 32.992188 191.429688 C 33.179688 191.042969 33.292969 190.617188 33.335938 190.148438 C 33.378906 189.679688 33.402344 189.183594 33.402344 188.65625 C 33.402344 188.148438 33.378906 187.683594 33.335938 187.253906 C 33.292969 186.828125 33.179688 186.441406 32.996094 186.09375 C 32.8125 185.746094 32.53125 185.574219 32.152344 185.574219 C 31.769531 185.574219 31.488281 185.746094 31.304688 186.097656 C 31.121094 186.445312 31.007812 186.832031 30.964844 187.257812 C 30.921875 187.683594 30.898438 188.148438 30.898438 188.65625 C 30.898438 189.03125 30.90625 189.386719 30.925781 189.71875 C 30.945312 190.054688 30.992188 190.398438 31.070312 190.75 C 31.148438 191.101562 31.277344 191.402344 31.453125 191.644531 C 31.632812 191.886719 31.863281 192.007812 32.152344 192.007812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 16.402344 163.996094 L 16.402344 163.371094 L 19.085938 163.371094 L 19.085938 163.996094 L 16.402344 163.996094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 20.5625 165.871094 L 20.5625 165.515625 C 21.40625 165.515625 21.828125 165.40625 21.828125 165.191406 L 21.828125 159.882812 C 21.476562 160.050781 21.035156 160.132812 20.503906 160.132812 L 20.503906 159.78125 C 21.332031 159.78125 21.957031 159.566406 22.378906 159.132812 L 22.519531 159.132812 C 22.539062 159.132812 22.5625 159.140625 22.585938 159.160156 C 22.605469 159.175781 22.617188 159.199219 22.617188 159.21875 L 22.617188 165.191406 C 22.617188 165.40625 23.039062 165.515625 23.882812 165.515625 L 23.882812 165.871094 L 20.5625 165.871094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 25.125 165.871094 L 25.125 165.601562 C 25.125 165.582031 25.132812 165.5625 25.144531 165.542969 L 26.71875 163.804688 C 26.957031 163.546875 27.152344 163.332031 27.296875 163.15625 C 27.445312 162.984375 27.589844 162.785156 27.738281 162.558594 C 27.882812 162.332031 28 162.101562 28.082031 161.863281 C 28.167969 161.628906 28.207031 161.378906 28.207031 161.113281 C 28.207031 160.839844 28.15625 160.574219 28.054688 160.320312 C 27.949219 160.066406 27.796875 159.867188 27.597656 159.714844 C 27.394531 159.566406 27.148438 159.488281 26.859375 159.488281 C 26.566406 159.488281 26.304688 159.578125 26.070312 159.753906 C 25.835938 159.929688 25.671875 160.15625 25.578125 160.4375 C 25.605469 160.429688 25.640625 160.425781 25.683594 160.425781 C 25.835938 160.425781 25.964844 160.476562 26.074219 160.578125 C 26.179688 160.679688 26.234375 160.8125 26.234375 160.976562 C 26.234375 161.128906 26.179688 161.257812 26.074219 161.367188 C 25.964844 161.472656 25.835938 161.527344 25.683594 161.527344 C 25.527344 161.527344 25.394531 161.472656 25.289062 161.363281 C 25.179688 161.253906 25.125 161.125 25.125 160.976562 C 25.125 160.722656 25.175781 160.484375 25.269531 160.261719 C 25.367188 160.039062 25.503906 159.84375 25.683594 159.667969 C 25.863281 159.496094 26.066406 159.363281 26.292969 159.269531 C 26.519531 159.179688 26.757812 159.132812 27.011719 159.132812 C 27.394531 159.132812 27.753906 159.214844 28.089844 159.378906 C 28.421875 159.542969 28.6875 159.773438 28.878906 160.070312 C 29.074219 160.367188 29.167969 160.714844 29.167969 161.113281 C 29.167969 161.40625 29.105469 161.6875 28.976562 161.953125 C 28.847656 162.214844 28.683594 162.453125 28.484375 162.667969 C 28.285156 162.882812 28.027344 163.128906 27.714844 163.402344 C 27.398438 163.675781 27.191406 163.859375 27.09375 163.953125 L 25.945312 165.050781 L 26.917969 165.050781 C 27.398438 165.050781 27.800781 165.046875 28.121094 165.039062 C 28.441406 165.03125 28.609375 165.019531 28.628906 165 C 28.710938 164.917969 28.792969 164.605469 28.875 164.070312 L 29.167969 164.070312 L 28.882812 165.871094 L 25.125 165.871094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 32.152344 166.09375 C 31.324219 166.09375 30.761719 165.753906 30.464844 165.074219 C 30.167969 164.390625 30.019531 163.582031 30.019531 162.644531 C 30.019531 162.058594 30.074219 161.507812 30.179688 160.992188 C 30.285156 160.472656 30.496094 160.035156 30.816406 159.675781 C 31.132812 159.3125 31.578125 159.132812 32.152344 159.132812 C 32.597656 159.132812 32.964844 159.242188 33.246094 159.457031 C 33.53125 159.675781 33.746094 159.957031 33.894531 160.300781 C 34.042969 160.648438 34.144531 161.015625 34.199219 161.40625 C 34.253906 161.800781 34.28125 162.210938 34.28125 162.644531 C 34.28125 163.226562 34.226562 163.769531 34.117188 164.277344 C 34.011719 164.78125 33.800781 165.210938 33.488281 165.566406 C 33.175781 165.917969 32.730469 166.09375 32.152344 166.09375 Z M 32.152344 165.832031 C 32.527344 165.832031 32.808594 165.640625 32.992188 165.253906 C 33.179688 164.871094 33.292969 164.441406 33.335938 163.972656 C 33.378906 163.507812 33.402344 163.007812 33.402344 162.480469 C 33.402344 161.972656 33.378906 161.507812 33.335938 161.078125 C 33.292969 160.652344 33.179688 160.265625 32.996094 159.917969 C 32.8125 159.570312 32.53125 159.398438 32.152344 159.398438 C 31.769531 159.398438 31.488281 159.570312 31.304688 159.921875 C 31.121094 160.269531 31.007812 160.65625 30.964844 161.082031 C 30.921875 161.507812 30.898438 161.972656 30.898438 162.480469 C 30.898438 162.855469 30.90625 163.210938 30.925781 163.542969 C 30.945312 163.878906 30.992188 164.222656 31.070312 164.574219 C 31.148438 164.929688 31.277344 165.226562 31.453125 165.46875 C 31.632812 165.710938 31.863281 165.832031 32.152344 165.832031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 16.402344 137.824219 L 16.402344 137.195312 L 19.085938 137.195312 L 19.085938 137.824219 L 16.402344 137.824219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 20.5625 139.695312 L 20.5625 139.339844 C 21.40625 139.339844 21.828125 139.230469 21.828125 139.015625 L 21.828125 133.707031 C 21.476562 133.875 21.035156 133.957031 20.503906 133.957031 L 20.503906 133.605469 C 21.332031 133.605469 21.957031 133.390625 22.378906 132.957031 L 22.519531 132.957031 C 22.539062 132.957031 22.5625 132.964844 22.585938 132.984375 C 22.605469 133 22.617188 133.023438 22.617188 133.046875 L 22.617188 139.015625 C 22.617188 139.230469 23.039062 139.339844 23.882812 139.339844 L 23.882812 139.695312 L 20.5625 139.695312 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 27.152344 139.917969 C 26.324219 139.917969 25.761719 139.578125 25.464844 138.898438 C 25.167969 138.214844 25.019531 137.40625 25.019531 136.46875 C 25.019531 135.886719 25.074219 135.332031 25.179688 134.816406 C 25.285156 134.296875 25.496094 133.859375 25.816406 133.5 C 26.132812 133.136719 26.578125 132.957031 27.152344 132.957031 C 27.597656 132.957031 27.964844 133.066406 28.246094 133.28125 C 28.53125 133.5 28.746094 133.78125 28.894531 134.125 C 29.042969 134.472656 29.144531 134.839844 29.199219 135.230469 C 29.253906 135.625 29.28125 136.035156 29.28125 136.46875 C 29.28125 137.050781 29.226562 137.59375 29.117188 138.101562 C 29.011719 138.605469 28.800781 139.035156 28.488281 139.390625 C 28.175781 139.742188 27.730469 139.917969 27.152344 139.917969 Z M 27.152344 139.65625 C 27.527344 139.65625 27.808594 139.464844 27.992188 139.078125 C 28.179688 138.695312 28.292969 138.269531 28.335938 137.796875 C 28.378906 137.332031 28.402344 136.832031 28.402344 136.304688 C 28.402344 135.796875 28.378906 135.332031 28.335938 134.902344 C 28.292969 134.476562 28.179688 134.089844 27.996094 133.742188 C 27.8125 133.394531 27.53125 133.222656 27.152344 133.222656 C 26.769531 133.222656 26.488281 133.394531 26.304688 133.746094 C 26.121094 134.09375 26.007812 134.480469 25.964844 134.90625 C 25.921875 135.332031 25.898438 135.796875 25.898438 136.304688 C 25.898438 136.679688 25.910156 137.035156 25.925781 137.367188 C 25.945312 137.703125 25.992188 138.046875 26.070312 138.398438 C 26.148438 138.753906 26.277344 139.050781 26.453125 139.292969 C 26.632812 139.535156 26.863281 139.65625 27.152344 139.65625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 32.152344 139.917969 C 31.324219 139.917969 30.761719 139.578125 30.464844 138.898438 C 30.167969 138.214844 30.019531 137.40625 30.019531 136.46875 C 30.019531 135.886719 30.074219 135.332031 30.179688 134.816406 C 30.285156 134.296875 30.496094 133.859375 30.816406 133.5 C 31.132812 133.136719 31.578125 132.957031 32.152344 132.957031 C 32.597656 132.957031 32.964844 133.066406 33.246094 133.28125 C 33.53125 133.5 33.746094 133.78125 33.894531 134.125 C 34.042969 134.472656 34.144531 134.839844 34.199219 135.230469 C 34.253906 135.625 34.28125 136.035156 34.28125 136.46875 C 34.28125 137.050781 34.226562 137.59375 34.117188 138.101562 C 34.011719 138.605469 33.800781 139.035156 33.488281 139.390625 C 33.175781 139.742188 32.730469 139.917969 32.152344 139.917969 Z M 32.152344 139.65625 C 32.527344 139.65625 32.808594 139.464844 32.992188 139.078125 C 33.179688 138.695312 33.292969 138.269531 33.335938 137.796875 C 33.378906 137.332031 33.402344 136.832031 33.402344 136.304688 C 33.402344 135.796875 33.378906 135.332031 33.335938 134.902344 C 33.292969 134.476562 33.179688 134.089844 32.996094 133.742188 C 32.8125 133.394531 32.53125 133.222656 32.152344 133.222656 C 31.769531 133.222656 31.488281 133.394531 31.304688 133.746094 C 31.121094 134.09375 31.007812 134.480469 30.964844 134.90625 C 30.921875 135.332031 30.898438 135.796875 30.898438 136.304688 C 30.898438 136.679688 30.90625 137.035156 30.925781 137.367188 C 30.945312 137.703125 30.992188 138.046875 31.070312 138.398438 C 31.148438 138.753906 31.277344 139.050781 31.453125 139.292969 C 31.632812 139.535156 31.863281 139.65625 32.152344 139.65625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 21.402344 111.648438 L 21.402344 111.019531 L 24.085938 111.019531 L 24.085938 111.648438 L 21.402344 111.648438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 25.050781 111.988281 C 25.050781 111.578125 25.183594 111.222656 25.449219 110.910156 C 25.714844 110.597656 26.054688 110.335938 26.472656 110.128906 L 26.097656 109.890625 C 25.867188 109.738281 25.679688 109.535156 25.535156 109.285156 C 25.390625 109.03125 25.320312 108.769531 25.320312 108.492188 C 25.320312 108.167969 25.40625 107.875 25.574219 107.617188 C 25.746094 107.355469 25.96875 107.152344 26.25 107.003906 C 26.53125 106.855469 26.832031 106.78125 27.152344 106.78125 C 27.453125 106.78125 27.742188 106.84375 28.019531 106.964844 C 28.296875 107.089844 28.527344 107.265625 28.707031 107.488281 C 28.886719 107.714844 28.976562 107.984375 28.976562 108.296875 C 28.976562 108.523438 28.921875 108.734375 28.816406 108.929688 C 28.710938 109.125 28.566406 109.300781 28.378906 109.453125 C 28.191406 109.609375 27.992188 109.742188 27.78125 109.851562 L 28.359375 110.21875 C 28.625 110.394531 28.839844 110.621094 29.003906 110.90625 C 29.167969 111.1875 29.25 111.488281 29.25 111.800781 C 29.25 112.164062 29.152344 112.5 28.957031 112.800781 C 28.757812 113.101562 28.5 113.332031 28.175781 113.496094 C 27.855469 113.660156 27.511719 113.742188 27.152344 113.742188 C 26.804688 113.742188 26.46875 113.671875 26.144531 113.527344 C 25.816406 113.386719 25.554688 113.183594 25.351562 112.914062 C 25.152344 112.648438 25.050781 112.339844 25.050781 111.988281 Z M 25.59375 111.988281 C 25.59375 112.253906 25.667969 112.496094 25.816406 112.714844 C 25.960938 112.9375 26.15625 113.109375 26.398438 113.234375 C 26.640625 113.359375 26.890625 113.421875 27.152344 113.421875 C 27.542969 113.421875 27.898438 113.308594 28.21875 113.078125 C 28.539062 112.851562 28.699219 112.546875 28.699219 112.167969 C 28.699219 112.039062 28.675781 111.910156 28.625 111.785156 C 28.574219 111.65625 28.503906 111.542969 28.414062 111.4375 C 28.324219 111.335938 28.222656 111.25 28.109375 111.183594 L 26.75 110.304688 C 26.539062 110.414062 26.34375 110.554688 26.167969 110.726562 C 25.992188 110.898438 25.855469 111.09375 25.75 111.308594 C 25.648438 111.523438 25.59375 111.746094 25.59375 111.988281 Z M 26.292969 108.894531 L 27.515625 109.6875 C 27.800781 109.523438 28.035156 109.324219 28.21875 109.089844 C 28.398438 108.855469 28.488281 108.589844 28.488281 108.296875 C 28.488281 108.070312 28.425781 107.863281 28.300781 107.675781 C 28.171875 107.484375 28.007812 107.339844 27.800781 107.234375 C 27.597656 107.128906 27.375 107.074219 27.140625 107.074219 C 26.9375 107.074219 26.734375 107.113281 26.527344 107.191406 C 26.320312 107.269531 26.148438 107.386719 26.015625 107.546875 C 25.878906 107.703125 25.8125 107.886719 25.8125 108.097656 C 25.8125 108.414062 25.972656 108.679688 26.292969 108.894531 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 32.152344 113.742188 C 31.324219 113.742188 30.761719 113.402344 30.464844 112.722656 C 30.167969 112.039062 30.019531 111.230469 30.019531 110.296875 C 30.019531 109.710938 30.074219 109.15625 30.179688 108.640625 C 30.285156 108.121094 30.496094 107.683594 30.816406 107.324219 C 31.132812 106.960938 31.578125 106.78125 32.152344 106.78125 C 32.597656 106.78125 32.964844 106.890625 33.246094 107.105469 C 33.53125 107.324219 33.746094 107.605469 33.894531 107.949219 C 34.042969 108.296875 34.144531 108.664062 34.199219 109.054688 C 34.253906 109.449219 34.28125 109.859375 34.28125 110.296875 C 34.28125 110.875 34.226562 111.421875 34.117188 111.925781 C 34.011719 112.429688 33.800781 112.859375 33.488281 113.214844 C 33.175781 113.566406 32.730469 113.742188 32.152344 113.742188 Z M 32.152344 113.480469 C 32.527344 113.480469 32.808594 113.285156 32.992188 112.902344 C 33.179688 112.519531 33.292969 112.09375 33.335938 111.621094 C 33.378906 111.15625 33.402344 110.65625 33.402344 110.128906 C 33.402344 109.621094 33.378906 109.15625 33.335938 108.730469 C 33.292969 108.300781 33.179688 107.914062 32.996094 107.566406 C 32.8125 107.21875 32.53125 107.046875 32.152344 107.046875 C 31.769531 107.046875 31.488281 107.21875 31.304688 107.570312 C 31.121094 107.917969 31.007812 108.304688 30.964844 108.730469 C 30.921875 109.15625 30.898438 109.621094 30.898438 110.128906 C 30.898438 110.503906 30.90625 110.859375 30.925781 111.191406 C 30.945312 111.527344 30.992188 111.871094 31.070312 112.222656 C 31.148438 112.578125 31.277344 112.875 31.453125 113.117188 C 31.632812 113.359375 31.863281 113.480469 32.152344 113.480469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 21.402344 85.472656 L 21.402344 84.84375 L 24.085938 84.84375 L 24.085938 85.472656 L 21.402344 85.472656 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 27.152344 87.566406 C 26.734375 87.566406 26.386719 87.457031 26.105469 87.234375 C 25.824219 87.011719 25.605469 86.722656 25.453125 86.371094 C 25.300781 86.015625 25.195312 85.644531 25.136719 85.257812 C 25.078125 84.871094 25.050781 84.472656 25.050781 84.070312 C 25.050781 83.539062 25.152344 83.007812 25.359375 82.472656 C 25.566406 81.933594 25.875 81.488281 26.277344 81.136719 C 26.683594 80.78125 27.160156 80.605469 27.710938 80.605469 C 27.941406 80.605469 28.15625 80.648438 28.359375 80.738281 C 28.558594 80.824219 28.714844 80.953125 28.828125 81.125 C 28.941406 81.292969 29 81.496094 29 81.734375 C 29 81.878906 28.953125 81.992188 28.859375 82.085938 C 28.765625 82.179688 28.648438 82.226562 28.507812 82.226562 C 28.375 82.226562 28.261719 82.179688 28.167969 82.085938 C 28.074219 81.988281 28.027344 81.871094 28.027344 81.734375 C 28.027344 81.605469 28.074219 81.496094 28.167969 81.398438 C 28.261719 81.304688 28.375 81.257812 28.507812 81.257812 L 28.558594 81.257812 C 28.476562 81.132812 28.359375 81.039062 28.199219 80.984375 C 28.042969 80.925781 27.878906 80.898438 27.710938 80.898438 C 27.507812 80.898438 27.320312 80.941406 27.144531 81.03125 C 26.972656 81.117188 26.816406 81.238281 26.679688 81.390625 C 26.542969 81.542969 26.425781 81.710938 26.332031 81.894531 C 26.238281 82.078125 26.167969 82.285156 26.117188 82.519531 C 26.066406 82.753906 26.035156 82.972656 26.019531 83.175781 C 26.007812 83.378906 26 83.636719 26 83.941406 C 26.121094 83.671875 26.289062 83.445312 26.507812 83.265625 C 26.722656 83.089844 26.96875 83 27.242188 83 C 27.542969 83 27.816406 83.0625 28.066406 83.183594 C 28.3125 83.308594 28.527344 83.476562 28.703125 83.691406 C 28.882812 83.90625 29.015625 84.152344 29.109375 84.429688 C 29.203125 84.707031 29.25 84.988281 29.25 85.273438 C 29.25 85.667969 29.164062 86.042969 28.984375 86.398438 C 28.808594 86.757812 28.558594 87.039062 28.242188 87.25 C 27.921875 87.460938 27.558594 87.566406 27.152344 87.566406 Z M 27.152344 87.246094 C 27.414062 87.246094 27.625 87.1875 27.785156 87.066406 C 27.941406 86.949219 28.058594 86.789062 28.132812 86.597656 C 28.207031 86.398438 28.253906 86.203125 28.269531 86.003906 C 28.289062 85.804688 28.296875 85.5625 28.296875 85.273438 C 28.296875 84.890625 28.277344 84.5625 28.242188 84.289062 C 28.203125 84.019531 28.105469 83.78125 27.945312 83.578125 C 27.785156 83.371094 27.535156 83.269531 27.199219 83.269531 C 26.925781 83.269531 26.703125 83.363281 26.527344 83.546875 C 26.351562 83.730469 26.222656 83.960938 26.144531 84.246094 C 26.0625 84.527344 26.023438 84.796875 26.023438 85.054688 C 26.023438 85.144531 26.023438 85.214844 26.027344 85.261719 C 26.027344 85.269531 26.027344 85.277344 26.027344 85.285156 C 26.027344 85.292969 26.027344 85.300781 26.023438 85.308594 C 26.023438 85.601562 26.050781 85.894531 26.109375 86.1875 C 26.167969 86.484375 26.28125 86.734375 26.449219 86.9375 C 26.617188 87.144531 26.851562 87.246094 27.152344 87.246094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 32.152344 87.566406 C 31.324219 87.566406 30.761719 87.226562 30.464844 86.546875 C 30.167969 85.863281 30.019531 85.054688 30.019531 84.117188 C 30.019531 83.535156 30.074219 82.980469 30.179688 82.464844 C 30.285156 81.949219 30.496094 81.507812 30.816406 81.148438 C 31.132812 80.785156 31.578125 80.605469 32.152344 80.605469 C 32.597656 80.605469 32.964844 80.714844 33.246094 80.929688 C 33.53125 81.148438 33.746094 81.429688 33.894531 81.773438 C 34.042969 82.121094 34.144531 82.488281 34.199219 82.882812 C 34.253906 83.273438 34.28125 83.6875 34.28125 84.117188 C 34.28125 84.699219 34.226562 85.242188 34.117188 85.75 C 34.011719 86.253906 33.800781 86.683594 33.488281 87.039062 C 33.175781 87.390625 32.730469 87.566406 32.152344 87.566406 Z M 32.152344 87.304688 C 32.527344 87.304688 32.808594 87.113281 32.992188 86.726562 C 33.179688 86.34375 33.292969 85.914062 33.335938 85.449219 C 33.378906 84.980469 33.402344 84.480469 33.402344 83.953125 C 33.402344 83.449219 33.378906 82.980469 33.335938 82.554688 C 33.292969 82.125 33.179688 81.738281 32.996094 81.390625 C 32.8125 81.042969 32.53125 80.871094 32.152344 80.871094 C 31.769531 80.871094 31.488281 81.046875 31.304688 81.394531 C 31.121094 81.742188 31.007812 82.128906 30.964844 82.554688 C 30.921875 82.980469 30.898438 83.449219 30.898438 83.953125 C 30.898438 84.328125 30.90625 84.683594 30.925781 85.019531 C 30.945312 85.351562 30.992188 85.695312 31.070312 86.046875 C 31.148438 86.402344 31.277344 86.699219 31.453125 86.941406 C 31.632812 87.183594 31.863281 87.304688 32.152344 87.304688 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 21.402344 59.296875 L 21.402344 58.671875 L 24.085938 58.671875 L 24.085938 59.296875 L 21.402344 59.296875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 24.902344 59.5 L 24.902344 59.144531 L 28.03125 54.484375 C 28.054688 54.449219 28.089844 54.429688 28.136719 54.429688 L 28.285156 54.429688 C 28.363281 54.429688 28.402344 54.46875 28.402344 54.546875 L 28.402344 59.144531 L 29.390625 59.144531 L 29.390625 59.5 L 28.402344 59.5 L 28.402344 60.488281 C 28.402344 60.632812 28.5 60.71875 28.699219 60.757812 C 28.894531 60.792969 29.125 60.8125 29.386719 60.8125 L 29.386719 61.171875 L 26.597656 61.171875 L 26.597656 60.8125 C 26.855469 60.8125 27.082031 60.792969 27.28125 60.757812 C 27.480469 60.71875 27.582031 60.632812 27.582031 60.488281 L 27.582031 59.5 Z M 25.238281 59.144531 L 27.640625 59.144531 L 27.640625 55.5625 Z M 25.238281 59.144531 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 32.152344 61.390625 C 31.324219 61.390625 30.761719 61.050781 30.464844 60.371094 C 30.167969 59.6875 30.019531 58.878906 30.019531 57.945312 C 30.019531 57.359375 30.074219 56.808594 30.179688 56.289062 C 30.285156 55.773438 30.496094 55.332031 30.816406 54.972656 C 31.132812 54.609375 31.578125 54.429688 32.152344 54.429688 C 32.597656 54.429688 32.964844 54.539062 33.246094 54.757812 C 33.53125 54.972656 33.746094 55.253906 33.894531 55.597656 C 34.042969 55.945312 34.144531 56.3125 34.199219 56.703125 C 34.253906 57.097656 34.28125 57.511719 34.28125 57.945312 C 34.28125 58.523438 34.226562 59.070312 34.117188 59.574219 C 34.011719 60.078125 33.800781 60.507812 33.488281 60.863281 C 33.175781 61.214844 32.730469 61.390625 32.152344 61.390625 Z M 32.152344 61.128906 C 32.527344 61.128906 32.808594 60.9375 32.992188 60.550781 C 33.179688 60.167969 33.292969 59.742188 33.335938 59.273438 C 33.378906 58.804688 33.402344 58.304688 33.402344 57.78125 C 33.402344 57.273438 33.378906 56.804688 33.335938 56.378906 C 33.292969 55.949219 33.179688 55.5625 32.996094 55.214844 C 32.8125 54.867188 32.53125 54.695312 32.152344 54.695312 C 31.769531 54.695312 31.488281 54.867188 31.304688 55.21875 C 31.121094 55.566406 31.007812 55.953125 30.964844 56.378906 C 30.921875 56.804688 30.898438 57.273438 30.898438 57.78125 C 30.898438 58.152344 30.90625 58.507812 30.925781 58.84375 C 30.945312 59.175781 30.992188 59.519531 31.070312 59.871094 C 31.148438 60.226562 31.277344 60.523438 31.453125 60.765625 C 31.632812 61.007812 31.863281 61.128906 32.152344 61.128906 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 21.402344 33.121094 L 21.402344 32.492188 L 24.085938 32.492188 L 24.085938 33.121094 L 21.402344 33.121094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 25.125 34.992188 L 25.125 34.726562 C 25.125 34.703125 25.132812 34.6875 25.144531 34.664062 L 26.71875 32.925781 C 26.957031 32.671875 27.152344 32.453125 27.296875 32.28125 C 27.445312 32.105469 27.589844 31.90625 27.738281 31.679688 C 27.882812 31.453125 28 31.222656 28.082031 30.984375 C 28.167969 30.75 28.207031 30.5 28.207031 30.234375 C 28.207031 29.960938 28.15625 29.695312 28.054688 29.441406 C 27.949219 29.191406 27.796875 28.988281 27.597656 28.835938 C 27.394531 28.6875 27.148438 28.613281 26.859375 28.613281 C 26.566406 28.613281 26.304688 28.699219 26.070312 28.875 C 25.835938 29.050781 25.671875 29.28125 25.578125 29.5625 C 25.605469 29.554688 25.640625 29.550781 25.683594 29.550781 C 25.835938 29.550781 25.964844 29.601562 26.074219 29.699219 C 26.179688 29.804688 26.234375 29.933594 26.234375 30.097656 C 26.234375 30.253906 26.179688 30.382812 26.074219 30.488281 C 25.964844 30.597656 25.835938 30.648438 25.683594 30.648438 C 25.527344 30.648438 25.394531 30.59375 25.289062 30.484375 C 25.179688 30.378906 25.125 30.246094 25.125 30.097656 C 25.125 29.847656 25.175781 29.605469 25.269531 29.386719 C 25.367188 29.160156 25.503906 28.964844 25.683594 28.789062 C 25.863281 28.617188 26.066406 28.484375 26.292969 28.394531 C 26.519531 28.300781 26.757812 28.253906 27.011719 28.253906 C 27.394531 28.253906 27.753906 28.335938 28.089844 28.5 C 28.421875 28.664062 28.6875 28.894531 28.878906 29.191406 C 29.074219 29.488281 29.167969 29.835938 29.167969 30.234375 C 29.167969 30.53125 29.105469 30.8125 28.976562 31.074219 C 28.847656 31.335938 28.683594 31.578125 28.484375 31.789062 C 28.285156 32.007812 28.027344 32.25 27.714844 32.523438 C 27.398438 32.796875 27.191406 32.980469 27.09375 33.074219 L 25.945312 34.175781 L 26.917969 34.175781 C 27.398438 34.175781 27.800781 34.171875 28.121094 34.160156 C 28.441406 34.15625 28.609375 34.140625 28.628906 34.121094 C 28.710938 34.039062 28.792969 33.730469 28.875 33.191406 L 29.167969 33.191406 L 28.882812 34.992188 L 25.125 34.992188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 32.152344 35.214844 C 31.324219 35.214844 30.761719 34.875 30.464844 34.195312 C 30.167969 33.515625 30.019531 32.703125 30.019531 31.769531 C 30.019531 31.183594 30.074219 30.632812 30.179688 30.113281 C 30.285156 29.597656 30.496094 29.15625 30.816406 28.796875 C 31.132812 28.4375 31.578125 28.253906 32.152344 28.253906 C 32.597656 28.253906 32.964844 28.363281 33.246094 28.578125 C 33.53125 28.796875 33.746094 29.078125 33.894531 29.421875 C 34.042969 29.769531 34.144531 30.136719 34.199219 30.53125 C 34.253906 30.921875 34.28125 31.335938 34.28125 31.769531 C 34.28125 32.351562 34.226562 32.894531 34.117188 33.398438 C 34.011719 33.902344 33.800781 34.332031 33.488281 34.6875 C 33.175781 35.039062 32.730469 35.214844 32.152344 35.214844 Z M 32.152344 34.953125 C 32.527344 34.953125 32.808594 34.761719 32.992188 34.375 C 33.179688 33.992188 33.292969 33.566406 33.335938 33.097656 C 33.378906 32.628906 33.402344 32.132812 33.402344 31.605469 C 33.402344 31.097656 33.378906 30.628906 33.335938 30.203125 C 33.292969 29.773438 33.179688 29.386719 32.996094 29.039062 C 32.8125 28.691406 32.53125 28.519531 32.152344 28.519531 C 31.769531 28.519531 31.488281 28.691406 31.304688 29.042969 C 31.121094 29.390625 31.007812 29.777344 30.964844 30.203125 C 30.921875 30.628906 30.898438 31.097656 30.898438 31.605469 C 30.898438 31.980469 30.90625 32.332031 30.925781 32.664062 C 30.945312 33 30.992188 33.34375 31.070312 33.695312 C 31.148438 34.050781 31.277344 34.347656 31.453125 34.589844 C 31.632812 34.832031 31.863281 34.953125 32.152344 34.953125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 32.152344 9.039062 C 31.324219 9.039062 30.761719 8.699219 30.464844 8.019531 C 30.167969 7.339844 30.019531 6.527344 30.019531 5.59375 C 30.019531 5.007812 30.074219 4.453125 30.179688 3.9375 C 30.285156 3.421875 30.496094 2.980469 30.816406 2.621094 C 31.132812 2.261719 31.578125 2.078125 32.152344 2.078125 C 32.597656 2.078125 32.964844 2.1875 33.246094 2.40625 C 33.53125 2.621094 33.746094 2.902344 33.894531 3.246094 C 34.042969 3.59375 34.144531 3.960938 34.199219 4.355469 C 34.253906 4.746094 34.28125 5.160156 34.28125 5.59375 C 34.28125 6.175781 34.226562 6.71875 34.117188 7.222656 C 34.011719 7.730469 33.800781 8.15625 33.488281 8.511719 C 33.175781 8.863281 32.730469 9.039062 32.152344 9.039062 Z M 32.152344 8.777344 C 32.527344 8.777344 32.808594 8.585938 32.992188 8.199219 C 33.179688 7.816406 33.292969 7.390625 33.335938 6.921875 C 33.378906 6.453125 33.402344 5.953125 33.402344 5.429688 C 33.402344 4.921875 33.378906 4.453125 33.335938 4.027344 C 33.292969 3.597656 33.179688 3.210938 32.996094 2.863281 C 32.8125 2.515625 32.53125 2.34375 32.152344 2.34375 C 31.769531 2.34375 31.488281 2.519531 31.304688 2.867188 C 31.121094 3.214844 31.007812 3.605469 30.964844 4.027344 C 30.921875 4.453125 30.898438 4.921875 30.898438 5.429688 C 30.898438 5.804688 30.90625 6.15625 30.925781 6.492188 C 30.945312 6.824219 30.992188 7.167969 31.070312 7.519531 C 31.148438 7.875 31.277344 8.171875 31.453125 8.414062 C 31.632812 8.65625 31.863281 8.777344 32.152344 8.777344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.332031 133.027344 L 8.949219 133.027344 C 8.949219 132.28125 8.835938 131.910156 8.605469 131.910156 L 2.628906 131.910156 C 2.398438 131.910156 2.28125 132.28125 2.28125 133.027344 L 1.902344 133.027344 L 1.902344 129.164062 C 1.902344 128.765625 1.984375 128.367188 2.148438 127.972656 C 2.3125 127.574219 2.550781 127.25 2.859375 126.992188 C 3.171875 126.738281 3.53125 126.609375 3.945312 126.609375 C 4.347656 126.609375 4.703125 126.738281 5.007812 126.996094 C 5.3125 127.253906 5.542969 127.578125 5.699219 127.972656 C 5.859375 128.363281 5.9375 128.761719 5.9375 129.164062 L 5.9375 130.902344 L 8.605469 130.902344 C 8.835938 130.902344 8.949219 130.527344 8.949219 129.78125 L 9.332031 129.78125 Z M 5.617188 130.929688 L 5.617188 129.457031 C 5.617188 129.058594 5.558594 128.734375 5.445312 128.484375 C 5.328125 128.238281 5.148438 128.058594 4.90625 127.941406 C 4.664062 127.828125 4.34375 127.769531 3.945312 127.769531 C 3.355469 127.769531 2.933594 127.898438 2.671875 128.160156 C 2.414062 128.417969 2.28125 128.851562 2.28125 129.457031 L 2.28125 130.378906 C 2.28125 130.511719 2.289062 130.617188 2.300781 130.6875 C 2.3125 130.761719 2.34375 130.820312 2.394531 130.863281 C 2.445312 130.90625 2.523438 130.929688 2.628906 130.929688 L 5.617188 130.929688 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.453125 123.496094 C 9.453125 123.929688 9.34375 124.335938 9.121094 124.707031 C 8.902344 125.082031 8.605469 125.375 8.230469 125.589844 C 7.859375 125.804688 7.453125 125.910156 7.015625 125.910156 C 6.683594 125.910156 6.363281 125.851562 6.054688 125.734375 C 5.746094 125.617188 5.472656 125.449219 5.230469 125.226562 C 4.988281 125.003906 4.796875 124.746094 4.660156 124.453125 C 4.523438 124.160156 4.457031 123.839844 4.457031 123.496094 C 4.457031 123.054688 4.574219 122.648438 4.8125 122.28125 C 5.046875 121.914062 5.363281 121.625 5.757812 121.410156 C 6.152344 121.199219 6.570312 121.09375 7.015625 121.09375 C 7.449219 121.09375 7.855469 121.199219 8.230469 121.417969 C 8.605469 121.632812 8.902344 121.925781 9.121094 122.296875 C 9.34375 122.664062 9.453125 123.066406 9.453125 123.496094 Z M 9.132812 123.496094 C 9.132812 122.917969 8.921875 122.53125 8.5 122.335938 C 8.082031 122.144531 7.546875 122.046875 6.894531 122.046875 C 6.53125 122.046875 6.230469 122.066406 5.988281 122.105469 C 5.75 122.144531 5.53125 122.226562 5.335938 122.355469 C 5.21875 122.4375 5.113281 122.542969 5.023438 122.667969 C 4.929688 122.792969 4.859375 122.925781 4.8125 123.066406 C 4.765625 123.207031 4.742188 123.351562 4.742188 123.496094 C 4.742188 123.722656 4.796875 123.941406 4.898438 124.140625 C 5.003906 124.34375 5.148438 124.515625 5.335938 124.652344 C 5.542969 124.785156 5.769531 124.867188 6.015625 124.90625 C 6.261719 124.945312 6.554688 124.960938 6.894531 124.960938 C 7.300781 124.960938 7.664062 124.925781 7.988281 124.855469 C 8.3125 124.785156 8.585938 124.644531 8.804688 124.429688 C 9.023438 124.214844 9.132812 123.902344 9.132812 123.496094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.332031 120.386719 L 8.949219 120.386719 C 8.949219 120.136719 8.929688 119.933594 8.890625 119.773438 C 8.851562 119.617188 8.757812 119.535156 8.605469 119.535156 L 2.898438 119.535156 C 2.703125 119.535156 2.5625 119.566406 2.472656 119.625 C 2.386719 119.683594 2.332031 119.765625 2.3125 119.875 C 2.292969 119.984375 2.28125 120.15625 2.28125 120.386719 L 1.902344 120.386719 L 1.785156 118.769531 L 8.605469 118.769531 C 8.757812 118.769531 8.851562 118.691406 8.890625 118.53125 C 8.929688 118.375 8.949219 118.171875 8.949219 117.925781 L 9.332031 117.925781 L 9.332031 120.386719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.453125 114.960938 C 9.453125 115.402344 9.335938 115.808594 9.105469 116.175781 C 8.871094 116.546875 8.5625 116.835938 8.175781 117.046875 C 7.789062 117.257812 7.378906 117.363281 6.945312 117.363281 C 6.519531 117.363281 6.117188 117.265625 5.738281 117.074219 C 5.355469 116.882812 5.046875 116.613281 4.8125 116.269531 C 4.574219 115.925781 4.457031 115.539062 4.457031 115.113281 C 4.457031 114.78125 4.511719 114.492188 4.625 114.246094 C 4.734375 114 4.890625 113.796875 5.089844 113.636719 C 5.289062 113.476562 5.519531 113.359375 5.789062 113.277344 C 6.054688 113.199219 6.351562 113.15625 6.675781 113.15625 C 6.769531 113.15625 6.816406 113.195312 6.816406 113.269531 L 6.816406 116.414062 L 6.933594 116.414062 C 7.535156 116.414062 8.050781 116.292969 8.484375 116.050781 C 8.917969 115.808594 9.132812 115.410156 9.132812 114.863281 C 9.132812 114.640625 9.082031 114.433594 8.984375 114.242188 C 8.886719 114.054688 8.75 113.890625 8.570312 113.753906 C 8.394531 113.613281 8.203125 113.519531 8 113.46875 C 7.976562 113.460938 7.957031 113.445312 7.9375 113.425781 C 7.917969 113.40625 7.90625 113.386719 7.90625 113.363281 L 7.90625 113.269531 C 7.90625 113.195312 7.953125 113.15625 8.046875 113.15625 C 8.457031 113.257812 8.792969 113.480469 9.058594 113.820312 C 9.320312 114.160156 9.453125 114.539062 9.453125 114.960938 Z M 6.546875 116.402344 L 6.546875 113.925781 C 6.273438 113.925781 6 113.964844 5.71875 114.039062 C 5.4375 114.113281 5.207031 114.242188 5.023438 114.421875 C 4.835938 114.597656 4.742188 114.828125 4.742188 115.113281 C 4.742188 115.523438 4.9375 115.839844 5.320312 116.066406 C 5.707031 116.289062 6.113281 116.402344 6.546875 116.402344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.332031 108.753906 L 8.949219 108.753906 C 8.949219 108.007812 8.835938 107.636719 8.605469 107.636719 L 2.628906 107.636719 C 2.398438 107.636719 2.28125 108.007812 2.28125 108.753906 L 1.902344 108.753906 L 1.902344 105.347656 C 1.902344 104.9375 1.976562 104.507812 2.121094 104.0625 C 2.269531 103.613281 2.492188 103.242188 2.792969 102.941406 C 3.09375 102.640625 3.453125 102.488281 3.871094 102.488281 C 4.175781 102.488281 4.449219 102.578125 4.6875 102.761719 C 4.925781 102.945312 5.128906 103.175781 5.289062 103.460938 C 5.449219 103.746094 5.5625 104.035156 5.632812 104.335938 C 5.746094 104.011719 5.925781 103.726562 6.175781 103.480469 C 6.425781 103.238281 6.707031 103.089844 7.027344 103.039062 L 7.996094 102.886719 C 8.429688 102.816406 8.753906 102.742188 8.96875 102.664062 C 9.183594 102.585938 9.289062 102.414062 9.289062 102.148438 C 9.289062 101.925781 9.183594 101.753906 8.972656 101.644531 C 8.761719 101.53125 8.53125 101.476562 8.28125 101.476562 C 8.257812 101.476562 8.238281 101.464844 8.21875 101.441406 C 8.199219 101.417969 8.1875 101.394531 8.1875 101.371094 L 8.1875 101.273438 C 8.1875 101.203125 8.238281 101.167969 8.335938 101.167969 C 8.53125 101.167969 8.722656 101.203125 8.914062 101.28125 C 9.101562 101.355469 9.257812 101.46875 9.382812 101.617188 C 9.507812 101.765625 9.570312 101.9375 9.570312 102.140625 C 9.570312 102.660156 9.441406 103.113281 9.179688 103.488281 C 8.921875 103.863281 8.539062 104.054688 8.035156 104.054688 L 7.070312 104.054688 C 6.707031 104.054688 6.394531 104.179688 6.136719 104.429688 C 5.878906 104.683594 5.75 104.988281 5.75 105.351562 L 5.75 106.65625 L 8.605469 106.65625 C 8.835938 106.65625 8.949219 106.285156 8.949219 105.539062 L 9.332031 105.539062 Z M 5.46875 106.65625 L 5.46875 105.5 C 5.46875 104.898438 5.347656 104.441406 5.105469 104.125 C 4.863281 103.8125 4.453125 103.65625 3.871094 103.65625 C 3.296875 103.65625 2.886719 103.808594 2.644531 104.121094 C 2.402344 104.429688 2.28125 104.890625 2.28125 105.5 L 2.28125 106.109375 C 2.28125 106.242188 2.289062 106.34375 2.300781 106.414062 C 2.3125 106.488281 2.34375 106.546875 2.394531 106.589844 C 2.445312 106.636719 2.523438 106.65625 2.628906 106.65625 L 5.46875 106.65625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.453125 98.320312 C 9.453125 98.761719 9.335938 99.167969 9.105469 99.535156 C 8.871094 99.90625 8.5625 100.195312 8.175781 100.40625 C 7.789062 100.617188 7.378906 100.722656 6.945312 100.722656 C 6.519531 100.722656 6.117188 100.628906 5.738281 100.433594 C 5.355469 100.242188 5.046875 99.976562 4.8125 99.628906 C 4.574219 99.285156 4.457031 98.898438 4.457031 98.472656 C 4.457031 98.144531 4.511719 97.855469 4.625 97.605469 C 4.734375 97.363281 4.890625 97.160156 5.089844 96.996094 C 5.289062 96.839844 5.519531 96.71875 5.789062 96.640625 C 6.054688 96.558594 6.351562 96.519531 6.675781 96.519531 C 6.769531 96.519531 6.816406 96.554688 6.816406 96.628906 L 6.816406 99.773438 L 6.933594 99.773438 C 7.535156 99.773438 8.050781 99.652344 8.484375 99.410156 C 8.917969 99.167969 9.132812 98.773438 9.132812 98.222656 C 9.132812 98 9.082031 97.792969 8.984375 97.605469 C 8.886719 97.414062 8.75 97.253906 8.570312 97.113281 C 8.394531 96.972656 8.203125 96.878906 8 96.828125 C 7.976562 96.820312 7.957031 96.808594 7.9375 96.789062 C 7.917969 96.769531 7.90625 96.746094 7.90625 96.722656 L 7.90625 96.628906 C 7.90625 96.554688 7.953125 96.519531 8.046875 96.519531 C 8.457031 96.621094 8.792969 96.839844 9.058594 97.179688 C 9.320312 97.519531 9.453125 97.898438 9.453125 98.320312 Z M 6.546875 99.761719 L 6.546875 97.285156 C 6.273438 97.285156 6 97.324219 5.71875 97.398438 C 5.4375 97.476562 5.207031 97.601562 5.023438 97.78125 C 4.835938 97.957031 4.742188 98.1875 4.742188 98.472656 C 4.742188 98.882812 4.9375 99.199219 5.320312 99.425781 C 5.707031 99.648438 6.113281 99.761719 6.546875 99.761719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 8.265625 95.710938 C 7.832031 95.710938 7.480469 95.539062 7.210938 95.199219 C 6.941406 94.859375 6.75 94.453125 6.636719 93.976562 C 6.527344 93.5 6.472656 93.046875 6.472656 92.617188 L 6.019531 92.617188 C 5.8125 92.617188 5.613281 92.664062 5.414062 92.753906 C 5.21875 92.847656 5.054688 92.980469 4.929688 93.152344 C 4.804688 93.328125 4.742188 93.519531 4.742188 93.730469 C 4.742188 94.210938 4.851562 94.574219 5.066406 94.824219 C 5.066406 94.6875 5.117188 94.574219 5.222656 94.484375 C 5.328125 94.394531 5.449219 94.351562 5.585938 94.351562 C 5.730469 94.351562 5.855469 94.402344 5.957031 94.503906 C 6.0625 94.605469 6.113281 94.726562 6.113281 94.863281 C 6.113281 95.015625 6.0625 95.140625 5.957031 95.238281 C 5.855469 95.339844 5.730469 95.390625 5.585938 95.390625 C 5.203125 95.390625 4.917969 95.21875 4.734375 94.875 C 4.550781 94.527344 4.457031 94.148438 4.457031 93.730469 C 4.457031 93.433594 4.519531 93.136719 4.644531 92.839844 C 4.769531 92.542969 4.949219 92.300781 5.183594 92.109375 C 5.417969 91.921875 5.691406 91.828125 6.003906 91.828125 L 8.453125 91.828125 C 8.59375 91.828125 8.722656 91.796875 8.839844 91.734375 C 8.960938 91.675781 9.019531 91.582031 9.019531 91.457031 C 9.019531 91.335938 8.960938 91.246094 8.839844 91.1875 C 8.71875 91.128906 8.589844 91.101562 8.453125 91.101562 L 7.753906 91.101562 L 7.753906 90.785156 L 8.453125 90.785156 C 8.613281 90.785156 8.765625 90.828125 8.914062 90.910156 C 9.058594 90.996094 9.175781 91.109375 9.261719 91.253906 C 9.351562 91.398438 9.394531 91.550781 9.394531 91.714844 C 9.394531 91.929688 9.3125 92.113281 9.148438 92.265625 C 8.984375 92.417969 8.789062 92.503906 8.5625 92.523438 C 8.832031 92.65625 9.046875 92.851562 9.210938 93.113281 C 9.371094 93.375 9.453125 93.65625 9.453125 93.957031 C 9.453125 94.230469 9.414062 94.503906 9.332031 94.769531 C 9.25 95.035156 9.121094 95.257812 8.945312 95.4375 C 8.769531 95.617188 8.542969 95.710938 8.265625 95.710938 Z M 8.265625 94.824219 C 8.519531 94.824219 8.730469 94.730469 8.90625 94.542969 C 9.078125 94.355469 9.167969 94.136719 9.167969 93.882812 C 9.167969 93.648438 9.109375 93.433594 8.992188 93.242188 C 8.875 93.050781 8.714844 92.898438 8.511719 92.785156 C 8.3125 92.675781 8.101562 92.617188 7.878906 92.617188 L 6.746094 92.617188 C 6.746094 92.949219 6.800781 93.285156 6.90625 93.628906 C 7.015625 93.972656 7.183594 94.257812 7.414062 94.484375 C 7.644531 94.710938 7.929688 94.824219 8.265625 94.824219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.332031 90.3125 L 8.949219 90.3125 C 8.949219 90.0625 8.929688 89.859375 8.890625 89.699219 C 8.851562 89.542969 8.757812 89.464844 8.605469 89.464844 L 2.898438 89.464844 C 2.703125 89.464844 2.5625 89.492188 2.472656 89.550781 C 2.386719 89.609375 2.332031 89.695312 2.3125 89.804688 C 2.292969 89.910156 2.28125 90.082031 2.28125 90.3125 L 1.902344 90.3125 L 1.785156 88.695312 L 8.605469 88.695312 C 8.757812 88.695312 8.851562 88.617188 8.890625 88.460938 C 8.929688 88.300781 8.949219 88.097656 8.949219 87.851562 L 9.332031 87.851562 L 9.332031 90.3125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.332031 83.566406 L 8.949219 83.566406 C 8.949219 82.820312 8.835938 82.449219 8.605469 82.449219 L 2.628906 82.449219 C 2.398438 82.449219 2.28125 82.820312 2.28125 83.566406 L 1.902344 83.566406 L 1.902344 79.703125 C 1.902344 79.304688 1.984375 78.90625 2.148438 78.511719 C 2.3125 78.113281 2.550781 77.789062 2.859375 77.53125 C 3.171875 77.277344 3.53125 77.148438 3.945312 77.148438 C 4.347656 77.148438 4.703125 77.277344 5.007812 77.535156 C 5.3125 77.792969 5.542969 78.117188 5.699219 78.511719 C 5.859375 78.902344 5.9375 79.300781 5.9375 79.703125 L 5.9375 81.441406 L 8.605469 81.441406 C 8.835938 81.441406 8.949219 81.066406 8.949219 80.324219 L 9.332031 80.324219 Z M 5.617188 81.46875 L 5.617188 79.996094 C 5.617188 79.597656 5.558594 79.273438 5.445312 79.027344 C 5.328125 78.777344 5.148438 78.597656 4.90625 78.480469 C 4.664062 78.367188 4.34375 78.308594 3.945312 78.308594 C 3.355469 78.308594 2.933594 78.4375 2.671875 78.699219 C 2.414062 78.957031 2.28125 79.390625 2.28125 79.996094 L 2.28125 80.921875 C 2.28125 81.054688 2.289062 81.15625 2.300781 81.226562 C 2.3125 81.300781 2.34375 81.359375 2.394531 81.402344 C 2.445312 81.449219 2.523438 81.46875 2.628906 81.46875 L 5.617188 81.46875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 8.265625 76.320312 C 7.832031 76.320312 7.480469 76.152344 7.210938 75.8125 C 6.941406 75.472656 6.75 75.0625 6.636719 74.589844 C 6.527344 74.113281 6.472656 73.660156 6.472656 73.230469 L 6.019531 73.230469 C 5.8125 73.230469 5.613281 73.277344 5.414062 73.367188 C 5.21875 73.460938 5.054688 73.59375 4.929688 73.765625 C 4.804688 73.9375 4.742188 74.132812 4.742188 74.34375 C 4.742188 74.820312 4.851562 75.1875 5.066406 75.4375 C 5.066406 75.300781 5.117188 75.1875 5.222656 75.097656 C 5.328125 75.007812 5.449219 74.964844 5.585938 74.964844 C 5.730469 74.964844 5.855469 75.015625 5.957031 75.113281 C 6.0625 75.21875 6.113281 75.335938 6.113281 75.476562 C 6.113281 75.628906 6.0625 75.75 5.957031 75.851562 C 5.855469 75.953125 5.730469 76.003906 5.585938 76.003906 C 5.203125 76.003906 4.917969 75.832031 4.734375 75.488281 C 4.550781 75.140625 4.457031 74.761719 4.457031 74.34375 C 4.457031 74.046875 4.519531 73.75 4.644531 73.453125 C 4.769531 73.15625 4.949219 72.914062 5.183594 72.722656 C 5.417969 72.535156 5.691406 72.4375 6.003906 72.4375 L 8.453125 72.4375 C 8.59375 72.4375 8.722656 72.410156 8.839844 72.347656 C 8.960938 72.289062 9.019531 72.195312 9.019531 72.070312 C 9.019531 71.949219 8.960938 71.859375 8.839844 71.800781 C 8.71875 71.742188 8.589844 71.714844 8.453125 71.714844 L 7.753906 71.714844 L 7.753906 71.398438 L 8.453125 71.398438 C 8.613281 71.398438 8.765625 71.4375 8.914062 71.523438 C 9.058594 71.605469 9.175781 71.722656 9.261719 71.867188 C 9.351562 72.011719 9.394531 72.164062 9.394531 72.328125 C 9.394531 72.542969 9.3125 72.726562 9.148438 72.878906 C 8.984375 73.03125 8.789062 73.117188 8.5625 73.136719 C 8.832031 73.269531 9.046875 73.464844 9.210938 73.726562 C 9.371094 73.988281 9.453125 74.269531 9.453125 74.570312 C 9.453125 74.84375 9.414062 75.113281 9.332031 75.382812 C 9.25 75.648438 9.121094 75.871094 8.945312 76.050781 C 8.769531 76.230469 8.542969 76.320312 8.265625 76.320312 Z M 8.265625 75.4375 C 8.519531 75.4375 8.730469 75.34375 8.90625 75.15625 C 9.078125 74.96875 9.167969 74.746094 9.167969 74.496094 C 9.167969 74.261719 9.109375 74.046875 8.992188 73.855469 C 8.875 73.664062 8.714844 73.511719 8.511719 73.398438 C 8.3125 73.285156 8.101562 73.230469 7.878906 73.230469 L 6.746094 73.230469 C 6.746094 73.5625 6.800781 73.898438 6.90625 74.242188 C 7.015625 74.585938 7.183594 74.871094 7.414062 75.097656 C 7.644531 75.324219 7.929688 75.4375 8.265625 75.4375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.332031 70.976562 L 8.949219 70.976562 C 8.949219 70.730469 8.929688 70.527344 8.890625 70.367188 C 8.851562 70.210938 8.757812 70.128906 8.605469 70.128906 L 5.632812 70.128906 C 5.4375 70.128906 5.296875 70.15625 5.210938 70.214844 C 5.125 70.273438 5.074219 70.359375 5.054688 70.46875 C 5.035156 70.578125 5.023438 70.746094 5.023438 70.976562 L 4.644531 70.976562 L 4.527344 69.421875 L 5.585938 69.421875 C 5.269531 69.308594 5.015625 69.140625 4.820312 68.925781 C 4.625 68.710938 4.527344 68.445312 4.527344 68.136719 C 4.527344 67.921875 4.589844 67.730469 4.71875 67.5625 C 4.84375 67.390625 5.011719 67.308594 5.222656 67.308594 C 5.351562 67.308594 5.464844 67.355469 5.5625 67.449219 C 5.660156 67.539062 5.710938 67.65625 5.710938 67.792969 C 5.710938 67.929688 5.664062 68.046875 5.566406 68.140625 C 5.46875 68.238281 5.355469 68.285156 5.222656 68.285156 C 5.027344 68.285156 4.890625 68.214844 4.808594 68.074219 L 4.808594 68.136719 C 4.808594 68.429688 4.914062 68.671875 5.125 68.855469 C 5.339844 69.039062 5.605469 69.171875 5.917969 69.25 C 6.230469 69.328125 6.53125 69.367188 6.816406 69.367188 L 8.605469 69.367188 C 8.835938 69.367188 8.949219 69.015625 8.949219 68.3125 L 9.332031 68.3125 L 9.332031 70.976562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 8.023438 65.847656 L 5.023438 65.847656 L 5.023438 66.75 L 4.742188 66.75 C 4.742188 66.273438 4.523438 65.921875 4.078125 65.699219 C 3.636719 65.480469 3.15625 65.367188 2.640625 65.367188 L 2.640625 65.058594 L 4.644531 65.058594 L 4.644531 63.523438 L 5.023438 63.523438 L 5.023438 65.058594 L 8 65.058594 C 8.300781 65.058594 8.566406 65.007812 8.792969 64.90625 C 9.019531 64.804688 9.132812 64.621094 9.132812 64.359375 C 9.132812 64.109375 9.011719 63.929688 8.773438 63.820312 C 8.535156 63.710938 8.277344 63.65625 8 63.65625 L 7.363281 63.65625 L 7.363281 63.347656 L 8.023438 63.347656 C 8.25 63.347656 8.476562 63.390625 8.695312 63.46875 C 8.914062 63.550781 9.097656 63.675781 9.238281 63.839844 C 9.382812 64.003906 9.453125 64.203125 9.453125 64.4375 C 9.453125 64.871094 9.324219 65.214844 9.0625 65.46875 C 8.804688 65.722656 8.457031 65.847656 8.023438 65.847656 "/>
<path style="fill:none;stroke-width:14.9932;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -1040.048397 L 397.47807 -1046.652251 L 408.880329 -1053.295181 L 420.282589 -1059.899035 L 431.645799 -1066.541965 L 443.048058 -1073.145819 L 454.450317 -1079.788749 L 477.254836 -1092.996457 L 488.657095 -1099.639387 L 500.020305 -1106.243241 L 511.422565 -1112.886172 L 534.227083 -1126.09388 L 545.629342 -1132.73681 L 557.031601 -1139.340664 L 568.433861 -1145.983594 L 579.797071 -1152.587448 L 591.19933 -1159.191302 L 602.601589 -1165.834232 L 614.003849 -1172.438086 L 625.406108 -1179.081016 L 636.808367 -1185.68487 L 648.171577 -1192.3278 L 670.976096 -1205.535508 L 682.378355 -1212.178438 L 693.780614 -1218.782292 L 705.182873 -1225.425223 L 716.585133 -1232.029077 L 727.948343 -1238.632931 L 739.350602 -1245.275861 L 750.752861 -1251.879715 L 762.155121 -1258.522645 L 773.55738 -1265.126499 L 784.959639 -1271.769429 L 796.361898 -1278.373283 L 807.725109 -1284.977137 L 819.127368 -1291.620067 L 830.529627 -1298.223921 L 841.931886 -1304.866851 L 864.736405 -1318.074559 L 876.099615 -1324.717489 L 898.904134 -1337.925198 L 910.306393 -1344.568128 L 921.708652 -1351.171982 L 933.110911 -1357.814912 L 944.51317 -1364.418766 L 955.876381 -1371.02262 L 967.27864 -1377.66555 L 990.083158 -1390.873258 L 1001.485418 -1397.516188 L 1012.887677 -1404.120042 L 1024.250887 -1410.723896 L 1035.653146 -1417.366826 L 1058.457665 -1430.574534 L 1069.859924 -1437.217464 L 1092.664442 -1450.425173 L 1104.027653 -1457.068103 L 1115.429912 -1463.671957 L 1126.832171 -1470.314887 L 1149.63669 -1483.522595 L 1161.038949 -1490.165525 L 1172.402159 -1496.769379 L 1183.804418 -1503.373233 L 1195.206678 -1510.016163 L 1229.413455 -1529.827725 L 1240.815714 -1536.470655 L 1252.217974 -1543.074509 L 1263.581184 -1549.678363 L 1274.983443 -1556.321293 L 1309.190221 -1576.132856 L 1320.553431 -1582.775786 L 1343.35795 -1595.983494 L 1354.760209 -1602.626424 L 1400.369246 -1629.04184 L 1411.732456 -1635.68477 L 1434.536975 -1648.892478 L 1445.939234 -1655.535408 L 1468.743752 -1668.743116 L 1480.106963 -1675.34697 L 1491.509222 -1681.950824 L 1502.911481 -1688.593755 L 1514.31374 -1695.197609 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:14.9932;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.075811 -1040.048397 L 397.47807 -1033.405467 L 420.282589 -1020.197759 L 431.645799 -1013.554829 L 443.048058 -1006.950974 L 454.450317 -1000.308044 L 477.254836 -987.100336 L 488.657095 -980.457406 L 500.020305 -973.853552 L 511.422565 -967.210622 L 522.824824 -960.606768 L 534.227083 -953.963838 L 545.629342 -947.359984 L 557.031601 -940.717054 L 568.433861 -934.1132 L 579.797071 -927.509346 L 591.19933 -920.866416 L 602.601589 -914.262562 L 614.003849 -907.619632 L 625.406108 -901.015777 L 636.808367 -894.372847 L 648.171577 -887.768993 L 659.573837 -881.165139 L 670.976096 -874.522209 L 693.780614 -861.314501 L 705.182873 -854.671571 L 716.585133 -848.067717 L 727.948343 -841.424787 L 739.350602 -834.820933 L 750.752861 -828.178003 L 773.55738 -814.970295 L 784.959639 -808.327365 L 796.361898 -801.723511 L 807.725109 -795.08058 L 830.529627 -781.872872 L 841.931886 -775.229942 L 864.736405 -762.022234 L 876.099615 -755.379304 L 887.501874 -748.77545 L 898.904134 -742.13252 L 921.708652 -728.924812 L 933.110911 -722.281882 L 944.51317 -715.678028 L 955.876381 -709.035098 L 978.680899 -695.82739 L 990.083158 -689.18446 L 1012.887677 -675.976751 L 1024.250887 -669.333821 L 1047.055406 -656.126113 L 1058.457665 -649.483183 L 1081.262183 -636.275475 L 1092.664442 -629.632545 L 1104.027653 -623.028691 L 1115.429912 -616.424837 L 1126.832171 -609.781907 L 1149.63669 -596.574199 L 1161.038949 -589.931269 L 1172.402159 -583.327415 L 1183.804418 -576.684485 L 1218.011196 -556.872922 L 1229.413455 -550.229992 L 1252.217974 -537.022284 L 1263.581184 -530.379354 L 1297.787962 -510.567792 L 1309.190221 -503.924862 L 1320.553431 -497.321008 L 1343.35795 -484.1133 L 1354.760209 -477.47037 L 1377.564727 -464.262662 L 1388.966987 -457.619732 L 1400.369246 -451.015878 L 1411.732456 -444.412023 L 1434.536975 -431.204315 L 1445.939234 -424.561385 L 1468.743752 -411.353677 L 1480.106963 -404.749823 L 1491.509222 -398.106893 L 1514.31374 -384.899185 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:14.9932;stroke-linecap:butt;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:59.9728,59.9728;stroke-miterlimit:10;" d="M 386.075811 -2146.526095 L 1514.31374 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 187.105469 189.648438 L 299.96875 189.648438 L 299.96875 6.421875 L 187.105469 6.421875 Z M 187.105469 189.648438 "/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -313.624453 L 1870.400047 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2434.538537 -313.624453 L 2434.538537 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -313.624453 L 2998.637977 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -313.624453 L 1870.400047 -313.624453 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -619.121085 L 1870.400047 -619.121085 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -924.578641 L 1870.400047 -924.578641 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -1230.075274 L 1870.400047 -1230.075274 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -1535.571906 L 1870.400047 -1535.571906 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -1841.068538 L 1870.400047 -1841.068538 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -2146.526095 L 1870.400047 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -313.624453 L 2998.637977 -313.624453 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -2146.526095 L 2998.637977 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -313.624453 L 1870.400047 -331.951125 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2434.538537 -313.624453 L 2434.538537 -331.951125 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -313.624453 L 2998.637977 -331.951125 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -2146.526095 L 1870.400047 -2128.199423 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2434.538537 -2146.526095 L 2434.538537 -2128.199423 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -2146.526095 L 2998.637977 -2128.199423 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 187.140625 202.261719 C 186.3125 202.261719 185.746094 201.921875 185.449219 201.238281 C 185.15625 200.558594 185.007812 199.75 185.007812 198.8125 C 185.007812 198.226562 185.058594 197.675781 185.164062 197.160156 C 185.269531 196.640625 185.480469 196.203125 185.800781 195.84375 C 186.117188 195.480469 186.5625 195.300781 187.140625 195.300781 C 187.585938 195.300781 187.949219 195.410156 188.230469 195.625 C 188.515625 195.84375 188.730469 196.121094 188.878906 196.46875 C 189.027344 196.8125 189.128906 197.183594 189.183594 197.574219 C 189.238281 197.96875 189.265625 198.378906 189.265625 198.8125 C 189.265625 199.394531 189.210938 199.9375 189.105469 200.445312 C 188.996094 200.949219 188.785156 201.378906 188.476562 201.730469 C 188.160156 202.085938 187.71875 202.261719 187.140625 202.261719 Z M 187.140625 202 C 187.515625 202 187.792969 201.804688 187.980469 201.421875 C 188.164062 201.035156 188.277344 200.609375 188.320312 200.140625 C 188.363281 199.671875 188.386719 199.175781 188.386719 198.648438 C 188.386719 198.140625 188.363281 197.675781 188.320312 197.246094 C 188.277344 196.820312 188.164062 196.433594 187.980469 196.085938 C 187.800781 195.738281 187.519531 195.5625 187.140625 195.5625 C 186.757812 195.5625 186.472656 195.738281 186.289062 196.089844 C 186.105469 196.4375 185.992188 196.824219 185.949219 197.25 C 185.90625 197.675781 185.886719 198.140625 185.886719 198.648438 C 185.886719 199.023438 185.894531 199.378906 185.910156 199.710938 C 185.929688 200.046875 185.976562 200.390625 186.054688 200.742188 C 186.132812 201.09375 186.261719 201.394531 186.4375 201.636719 C 186.617188 201.878906 186.851562 202 187.140625 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 236.921875 200.886719 C 236.988281 201.085938 237.097656 201.265625 237.238281 201.425781 C 237.382812 201.589844 237.550781 201.714844 237.746094 201.804688 C 237.945312 201.894531 238.148438 201.941406 238.359375 201.941406 C 238.847656 201.941406 239.183594 201.75 239.367188 201.371094 C 239.550781 200.992188 239.644531 200.535156 239.644531 199.996094 C 239.644531 199.761719 239.640625 199.566406 239.632812 199.40625 C 239.625 199.246094 239.601562 199.089844 239.566406 198.941406 C 239.503906 198.703125 239.394531 198.496094 239.234375 198.320312 C 239.078125 198.140625 238.886719 198.050781 238.660156 198.050781 C 238.433594 198.050781 238.238281 198.085938 238.074219 198.15625 C 237.910156 198.226562 237.777344 198.308594 237.675781 198.402344 C 237.574219 198.492188 237.484375 198.589844 237.40625 198.691406 C 237.328125 198.792969 237.277344 198.847656 237.257812 198.855469 L 237.140625 198.855469 C 237.125 198.855469 237.105469 198.84375 237.078125 198.824219 C 237.054688 198.800781 237.042969 198.78125 237.042969 198.761719 L 237.042969 195.382812 C 237.042969 195.363281 237.054688 195.34375 237.074219 195.328125 C 237.097656 195.308594 237.117188 195.300781 237.140625 195.300781 L 237.171875 195.300781 C 237.628906 195.519531 238.109375 195.628906 238.617188 195.628906 C 239.121094 195.628906 239.605469 195.519531 240.070312 195.300781 L 240.101562 195.300781 C 240.125 195.300781 240.144531 195.308594 240.164062 195.328125 C 240.183594 195.34375 240.195312 195.363281 240.195312 195.382812 L 240.195312 195.476562 C 240.195312 195.507812 240.1875 195.523438 240.171875 195.523438 C 239.941406 195.832031 239.652344 196.070312 239.304688 196.238281 C 238.957031 196.410156 238.597656 196.496094 238.226562 196.496094 C 237.957031 196.496094 237.679688 196.457031 237.394531 196.382812 L 237.394531 198.292969 C 237.621094 198.113281 237.820312 197.984375 237.996094 197.90625 C 238.171875 197.828125 238.398438 197.789062 238.671875 197.789062 C 239.042969 197.789062 239.375 197.894531 239.671875 198.109375 C 239.964844 198.324219 240.191406 198.605469 240.351562 198.949219 C 240.507812 199.292969 240.585938 199.644531 240.585938 200 C 240.585938 200.40625 240.488281 200.78125 240.289062 201.128906 C 240.089844 201.472656 239.816406 201.75 239.476562 201.953125 C 239.136719 202.160156 238.761719 202.261719 238.359375 202.261719 C 238.027344 202.261719 237.722656 202.175781 237.445312 202.003906 C 237.164062 201.832031 236.945312 201.601562 236.785156 201.3125 C 236.625 201.023438 236.546875 200.714844 236.546875 200.386719 C 236.546875 200.234375 236.59375 200.113281 236.695312 200.015625 C 236.792969 199.921875 236.917969 199.871094 237.066406 199.871094 C 237.214844 199.871094 237.339844 199.921875 237.4375 200.019531 C 237.539062 200.117188 237.585938 200.238281 237.585938 200.386719 C 237.585938 200.53125 237.539062 200.65625 237.4375 200.757812 C 237.339844 200.859375 237.214844 200.910156 237.066406 200.910156 C 237.042969 200.910156 237.015625 200.90625 236.984375 200.902344 C 236.957031 200.894531 236.933594 200.890625 236.921875 200.886719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 243.570312 202.261719 C 242.742188 202.261719 242.179688 201.921875 241.882812 201.238281 C 241.585938 200.558594 241.4375 199.75 241.4375 198.8125 C 241.4375 198.226562 241.492188 197.675781 241.597656 197.160156 C 241.703125 196.640625 241.914062 196.203125 242.230469 195.84375 C 242.550781 195.480469 242.996094 195.300781 243.570312 195.300781 C 244.015625 195.300781 244.378906 195.410156 244.664062 195.625 C 244.945312 195.84375 245.164062 196.121094 245.3125 196.46875 C 245.460938 196.8125 245.5625 197.183594 245.617188 197.574219 C 245.671875 197.96875 245.699219 198.378906 245.699219 198.8125 C 245.699219 199.394531 245.644531 199.9375 245.535156 200.445312 C 245.429688 200.949219 245.21875 201.378906 244.90625 201.730469 C 244.59375 202.085938 244.148438 202.261719 243.570312 202.261719 Z M 243.570312 202 C 243.945312 202 244.226562 201.804688 244.410156 201.421875 C 244.597656 201.035156 244.710938 200.609375 244.753906 200.140625 C 244.796875 199.671875 244.820312 199.175781 244.820312 198.648438 C 244.820312 198.140625 244.796875 197.675781 244.753906 197.246094 C 244.710938 196.820312 244.597656 196.433594 244.414062 196.085938 C 244.230469 195.738281 243.949219 195.5625 243.570312 195.5625 C 243.1875 195.5625 242.90625 195.738281 242.722656 196.089844 C 242.539062 196.4375 242.425781 196.824219 242.382812 197.25 C 242.339844 197.675781 242.316406 198.140625 242.316406 198.648438 C 242.316406 199.023438 242.324219 199.378906 242.34375 199.710938 C 242.359375 200.046875 242.410156 200.390625 242.488281 200.742188 C 242.566406 201.09375 242.691406 201.394531 242.871094 201.636719 C 243.046875 201.878906 243.28125 202 243.570312 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 248.570312 202.261719 C 247.742188 202.261719 247.179688 201.921875 246.882812 201.238281 C 246.585938 200.558594 246.4375 199.75 246.4375 198.8125 C 246.4375 198.226562 246.492188 197.675781 246.597656 197.160156 C 246.703125 196.640625 246.914062 196.203125 247.230469 195.84375 C 247.550781 195.480469 247.996094 195.300781 248.570312 195.300781 C 249.015625 195.300781 249.378906 195.410156 249.664062 195.625 C 249.945312 195.84375 250.160156 196.121094 250.308594 196.46875 C 250.460938 196.8125 250.5625 197.183594 250.613281 197.574219 C 250.671875 197.96875 250.695312 198.378906 250.695312 198.8125 C 250.695312 199.394531 250.644531 199.9375 250.535156 200.445312 C 250.429688 200.949219 250.21875 201.378906 249.90625 201.730469 C 249.59375 202.085938 249.148438 202.261719 248.570312 202.261719 Z M 248.570312 202 C 248.945312 202 249.226562 201.804688 249.410156 201.421875 C 249.597656 201.035156 249.710938 200.609375 249.753906 200.140625 C 249.796875 199.671875 249.816406 199.175781 249.816406 198.648438 C 249.816406 198.140625 249.796875 197.675781 249.753906 197.246094 C 249.710938 196.820312 249.597656 196.433594 249.414062 196.085938 C 249.230469 195.738281 248.949219 195.5625 248.570312 195.5625 C 248.1875 195.5625 247.902344 195.738281 247.722656 196.089844 C 247.539062 196.4375 247.425781 196.824219 247.382812 197.25 C 247.339844 197.675781 247.316406 198.140625 247.316406 198.648438 C 247.316406 199.023438 247.324219 199.378906 247.34375 199.710938 C 247.359375 200.046875 247.410156 200.390625 247.484375 200.742188 C 247.566406 201.09375 247.691406 201.394531 247.871094 201.636719 C 248.046875 201.878906 248.28125 202 248.570312 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 290.910156 202.039062 L 290.910156 201.683594 C 291.753906 201.683594 292.175781 201.574219 292.175781 201.359375 L 292.175781 196.050781 C 291.828125 196.21875 291.386719 196.300781 290.851562 196.300781 L 290.851562 195.949219 C 291.679688 195.949219 292.304688 195.734375 292.726562 195.300781 L 292.867188 195.300781 C 292.890625 195.300781 292.914062 195.308594 292.933594 195.328125 C 292.957031 195.34375 292.96875 195.363281 292.96875 195.386719 L 292.96875 201.359375 C 292.96875 201.574219 293.390625 201.683594 294.230469 201.683594 L 294.230469 202.039062 L 290.910156 202.039062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 297.503906 202.261719 C 296.675781 202.261719 296.113281 201.921875 295.816406 201.238281 C 295.519531 200.558594 295.371094 199.75 295.371094 198.8125 C 295.371094 198.226562 295.421875 197.675781 295.527344 197.160156 C 295.632812 196.640625 295.847656 196.203125 296.164062 195.84375 C 296.484375 195.480469 296.929688 195.300781 297.503906 195.300781 C 297.949219 195.300781 298.3125 195.410156 298.597656 195.625 C 298.878906 195.84375 299.09375 196.121094 299.242188 196.46875 C 299.390625 196.8125 299.492188 197.183594 299.546875 197.574219 C 299.601562 197.96875 299.628906 198.378906 299.628906 198.8125 C 299.628906 199.394531 299.578125 199.9375 299.46875 200.445312 C 299.363281 200.949219 299.152344 201.378906 298.839844 201.730469 C 298.527344 202.085938 298.082031 202.261719 297.503906 202.261719 Z M 297.503906 202 C 297.878906 202 298.160156 201.804688 298.34375 201.421875 C 298.53125 201.035156 298.644531 200.609375 298.6875 200.140625 C 298.730469 199.671875 298.753906 199.175781 298.753906 198.648438 C 298.753906 198.140625 298.730469 197.675781 298.6875 197.246094 C 298.644531 196.820312 298.53125 196.433594 298.347656 196.085938 C 298.164062 195.738281 297.882812 195.5625 297.503906 195.5625 C 297.121094 195.5625 296.839844 195.738281 296.652344 196.089844 C 296.46875 196.4375 296.355469 196.824219 296.3125 197.25 C 296.269531 197.675781 296.25 198.140625 296.25 198.648438 C 296.25 199.023438 296.257812 199.378906 296.277344 199.710938 C 296.292969 200.046875 296.339844 200.390625 296.421875 200.742188 C 296.496094 201.09375 296.625 201.394531 296.804688 201.636719 C 296.980469 201.878906 297.214844 202 297.503906 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 302.503906 202.261719 C 301.675781 202.261719 301.113281 201.921875 300.816406 201.238281 C 300.519531 200.558594 300.371094 199.75 300.371094 198.8125 C 300.371094 198.226562 300.421875 197.675781 300.527344 197.160156 C 300.632812 196.640625 300.847656 196.203125 301.164062 195.84375 C 301.480469 195.480469 301.929688 195.300781 302.503906 195.300781 C 302.949219 195.300781 303.3125 195.410156 303.59375 195.625 C 303.878906 195.84375 304.09375 196.121094 304.242188 196.46875 C 304.390625 196.8125 304.492188 197.183594 304.546875 197.574219 C 304.601562 197.96875 304.628906 198.378906 304.628906 198.8125 C 304.628906 199.394531 304.574219 199.9375 304.46875 200.445312 C 304.359375 200.949219 304.152344 201.378906 303.839844 201.730469 C 303.527344 202.085938 303.082031 202.261719 302.503906 202.261719 Z M 302.503906 202 C 302.878906 202 303.15625 201.804688 303.34375 201.421875 C 303.527344 201.035156 303.644531 200.609375 303.6875 200.140625 C 303.730469 199.671875 303.75 199.175781 303.75 198.648438 C 303.75 198.140625 303.730469 197.675781 303.6875 197.246094 C 303.644531 196.820312 303.53125 196.433594 303.347656 196.085938 C 303.164062 195.738281 302.882812 195.5625 302.503906 195.5625 C 302.121094 195.5625 301.835938 195.738281 301.652344 196.089844 C 301.46875 196.4375 301.355469 196.824219 301.3125 197.25 C 301.269531 197.675781 301.25 198.140625 301.25 198.648438 C 301.25 199.023438 301.257812 199.378906 301.277344 199.710938 C 301.292969 200.046875 301.339844 200.390625 301.417969 200.742188 C 301.496094 201.09375 301.625 201.394531 301.804688 201.636719 C 301.980469 201.878906 302.214844 202 302.503906 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 307.503906 202.261719 C 306.675781 202.261719 306.113281 201.921875 305.816406 201.238281 C 305.519531 200.558594 305.371094 199.75 305.371094 198.8125 C 305.371094 198.226562 305.421875 197.675781 305.527344 197.160156 C 305.632812 196.640625 305.84375 196.203125 306.164062 195.84375 C 306.480469 195.480469 306.929688 195.300781 307.503906 195.300781 C 307.949219 195.300781 308.3125 195.410156 308.59375 195.625 C 308.878906 195.84375 309.09375 196.121094 309.242188 196.46875 C 309.390625 196.8125 309.492188 197.183594 309.546875 197.574219 C 309.601562 197.96875 309.628906 198.378906 309.628906 198.8125 C 309.628906 199.394531 309.574219 199.9375 309.46875 200.445312 C 309.359375 200.949219 309.152344 201.378906 308.839844 201.730469 C 308.527344 202.085938 308.078125 202.261719 307.503906 202.261719 Z M 307.503906 202 C 307.878906 202 308.15625 201.804688 308.34375 201.421875 C 308.527344 201.035156 308.644531 200.609375 308.6875 200.140625 C 308.730469 199.671875 308.75 199.175781 308.75 198.648438 C 308.75 198.140625 308.730469 197.675781 308.6875 197.246094 C 308.644531 196.820312 308.53125 196.433594 308.347656 196.085938 C 308.164062 195.738281 307.882812 195.5625 307.503906 195.5625 C 307.121094 195.5625 306.835938 195.738281 306.652344 196.089844 C 306.46875 196.4375 306.355469 196.824219 306.3125 197.25 C 306.269531 197.675781 306.25 198.140625 306.25 198.648438 C 306.25 199.023438 306.257812 199.378906 306.273438 199.710938 C 306.292969 200.046875 306.339844 200.390625 306.417969 200.742188 C 306.496094 201.09375 306.625 201.394531 306.800781 201.636719 C 306.980469 201.878906 307.214844 202 307.503906 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 178.613281 215.867188 L 178.613281 215.488281 C 179.359375 215.488281 179.730469 215.371094 179.730469 215.140625 L 179.730469 209.171875 C 179.730469 208.941406 179.359375 208.824219 178.613281 208.824219 L 178.613281 208.445312 L 182.023438 208.445312 C 182.433594 208.445312 182.859375 208.519531 183.308594 208.664062 C 183.753906 208.808594 184.128906 209.035156 184.429688 209.335938 C 184.730469 209.636719 184.882812 209.992188 184.882812 210.410156 C 184.882812 210.714844 184.789062 210.988281 184.609375 211.230469 C 184.425781 211.46875 184.195312 211.667969 183.910156 211.828125 C 183.625 211.988281 183.332031 212.105469 183.035156 212.175781 C 183.359375 212.289062 183.644531 212.46875 183.886719 212.714844 C 184.132812 212.964844 184.28125 213.246094 184.328125 213.566406 L 184.484375 214.53125 C 184.554688 214.964844 184.628906 215.289062 184.703125 215.503906 C 184.785156 215.71875 184.953125 215.828125 185.222656 215.828125 C 185.449219 215.828125 185.617188 215.722656 185.726562 215.511719 C 185.839844 215.300781 185.894531 215.070312 185.894531 214.820312 C 185.894531 214.796875 185.90625 214.773438 185.929688 214.757812 C 185.953125 214.738281 185.976562 214.726562 186 214.726562 L 186.101562 214.726562 C 186.171875 214.726562 186.203125 214.773438 186.203125 214.875 C 186.203125 215.066406 186.167969 215.261719 186.089844 215.449219 C 186.015625 215.640625 185.902344 215.796875 185.753906 215.921875 C 185.605469 216.046875 185.433594 216.109375 185.234375 216.109375 C 184.710938 216.109375 184.257812 215.980469 183.882812 215.71875 C 183.503906 215.460938 183.316406 215.078125 183.316406 214.574219 L 183.316406 213.609375 C 183.316406 213.246094 183.191406 212.933594 182.9375 212.675781 C 182.6875 212.417969 182.378906 212.292969 182.015625 212.292969 L 180.710938 212.292969 L 180.710938 215.140625 C 180.710938 215.371094 181.082031 215.488281 181.828125 215.488281 L 181.828125 215.867188 Z M 180.710938 212.011719 L 181.871094 212.011719 C 182.472656 212.011719 182.929688 211.890625 183.242188 211.648438 C 183.558594 211.40625 183.714844 210.992188 183.714844 210.410156 C 183.714844 209.839844 183.5625 209.429688 183.25 209.1875 C 182.9375 208.945312 182.480469 208.824219 181.871094 208.824219 L 181.261719 208.824219 C 181.128906 208.824219 181.023438 208.832031 180.953125 208.84375 C 180.882812 208.855469 180.820312 208.886719 180.777344 208.9375 C 180.730469 208.988281 180.710938 209.066406 180.710938 209.171875 L 180.710938 212.011719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 189.0625 215.992188 C 188.628906 215.992188 188.226562 215.882812 187.855469 215.660156 C 187.480469 215.441406 187.1875 215.144531 186.972656 214.769531 C 186.757812 214.398438 186.648438 213.992188 186.648438 213.554688 C 186.648438 213.222656 186.710938 212.902344 186.824219 212.59375 C 186.941406 212.289062 187.113281 212.011719 187.335938 211.769531 C 187.558594 211.527344 187.816406 211.339844 188.109375 211.203125 C 188.402344 211.066406 188.71875 210.996094 189.0625 210.996094 C 189.507812 210.996094 189.914062 211.113281 190.28125 211.351562 C 190.648438 211.585938 190.941406 211.902344 191.152344 212.296875 C 191.367188 212.691406 191.472656 213.109375 191.472656 213.554688 C 191.472656 213.988281 191.363281 214.394531 191.148438 214.765625 C 190.929688 215.140625 190.636719 215.441406 190.269531 215.660156 C 189.898438 215.882812 189.496094 215.992188 189.0625 215.992188 Z M 189.0625 215.667969 C 189.644531 215.667969 190.035156 215.460938 190.226562 215.039062 C 190.421875 214.621094 190.515625 214.085938 190.515625 213.433594 C 190.515625 213.070312 190.496094 212.769531 190.460938 212.527344 C 190.421875 212.289062 190.335938 212.070312 190.207031 211.875 C 190.125 211.757812 190.019531 211.652344 189.894531 211.5625 C 189.769531 211.46875 189.636719 211.402344 189.496094 211.355469 C 189.355469 211.308594 189.214844 211.285156 189.0625 211.285156 C 188.839844 211.285156 188.621094 211.335938 188.421875 211.4375 C 188.21875 211.542969 188.046875 211.6875 187.910156 211.875 C 187.777344 212.082031 187.691406 212.308594 187.65625 212.554688 C 187.617188 212.800781 187.601562 213.09375 187.601562 213.433594 C 187.601562 213.839844 187.632812 214.203125 187.703125 214.527344 C 187.773438 214.851562 187.917969 215.121094 188.132812 215.339844 C 188.347656 215.558594 188.65625 215.667969 189.0625 215.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 192.953125 214.5625 L 192.953125 211.566406 L 192.050781 211.566406 L 192.050781 211.285156 C 192.527344 211.285156 192.875 211.0625 193.097656 210.621094 C 193.320312 210.175781 193.433594 209.699219 193.433594 209.183594 L 193.742188 209.183594 L 193.742188 211.183594 L 195.277344 211.183594 L 195.277344 211.566406 L 193.742188 211.566406 L 193.742188 214.539062 C 193.742188 214.839844 193.792969 215.101562 193.894531 215.328125 C 193.996094 215.554688 194.179688 215.667969 194.441406 215.667969 C 194.691406 215.667969 194.871094 215.550781 194.980469 215.3125 C 195.089844 215.074219 195.144531 214.816406 195.144531 214.539062 L 195.144531 213.902344 L 195.453125 213.902344 L 195.453125 214.5625 C 195.453125 214.789062 195.414062 215.011719 195.332031 215.234375 C 195.25 215.453125 195.125 215.636719 194.960938 215.777344 C 194.796875 215.917969 194.597656 215.992188 194.363281 215.992188 C 193.929688 215.992188 193.585938 215.863281 193.332031 215.601562 C 193.078125 215.34375 192.953125 214.996094 192.953125 214.5625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 196.554688 214.800781 C 196.554688 214.371094 196.726562 214.019531 197.066406 213.75 C 197.40625 213.480469 197.8125 213.289062 198.289062 213.175781 C 198.765625 213.066406 199.21875 213.011719 199.648438 213.011719 L 199.648438 212.5625 C 199.648438 212.355469 199.605469 212.152344 199.511719 211.953125 C 199.421875 211.757812 199.285156 211.597656 199.113281 211.472656 C 198.9375 211.347656 198.746094 211.285156 198.535156 211.285156 C 198.054688 211.285156 197.691406 211.390625 197.441406 211.605469 C 197.578125 211.605469 197.691406 211.660156 197.78125 211.765625 C 197.871094 211.871094 197.914062 211.992188 197.914062 212.128906 C 197.914062 212.269531 197.863281 212.394531 197.761719 212.5 C 197.660156 212.601562 197.539062 212.652344 197.398438 212.652344 C 197.25 212.652344 197.125 212.601562 197.023438 212.5 C 196.921875 212.394531 196.871094 212.269531 196.871094 212.128906 C 196.871094 211.746094 197.046875 211.460938 197.390625 211.273438 C 197.734375 211.089844 198.117188 210.996094 198.535156 210.996094 C 198.832031 210.996094 199.128906 211.058594 199.425781 211.183594 C 199.722656 211.308594 199.96875 211.488281 200.15625 211.722656 C 200.347656 211.957031 200.441406 212.230469 200.441406 212.542969 L 200.441406 214.988281 C 200.441406 215.128906 200.472656 215.261719 200.53125 215.378906 C 200.59375 215.5 200.683594 215.558594 200.808594 215.558594 C 200.929688 215.558594 201.019531 215.496094 201.078125 215.375 C 201.136719 215.253906 201.167969 215.125 201.167969 214.988281 L 201.167969 214.292969 L 201.484375 214.292969 L 201.484375 214.988281 C 201.484375 215.148438 201.441406 215.304688 201.355469 215.449219 C 201.273438 215.597656 201.160156 215.714844 201.015625 215.800781 C 200.871094 215.886719 200.714844 215.933594 200.550781 215.933594 C 200.335938 215.933594 200.152344 215.851562 200 215.6875 C 199.847656 215.523438 199.761719 215.328125 199.742188 215.101562 C 199.609375 215.371094 199.414062 215.585938 199.152344 215.75 C 198.890625 215.910156 198.609375 215.992188 198.308594 215.992188 C 198.035156 215.992188 197.765625 215.949219 197.496094 215.867188 C 197.230469 215.785156 197.003906 215.65625 196.824219 215.480469 C 196.644531 215.304688 196.554688 215.078125 196.554688 214.800781 Z M 197.441406 214.800781 C 197.441406 215.054688 197.535156 215.269531 197.722656 215.445312 C 197.910156 215.617188 198.128906 215.703125 198.382812 215.703125 C 198.617188 215.703125 198.832031 215.644531 199.023438 215.527344 C 199.214844 215.410156 199.367188 215.253906 199.480469 215.050781 C 199.59375 214.851562 199.648438 214.636719 199.648438 214.417969 L 199.648438 213.285156 C 199.316406 213.285156 198.980469 213.339844 198.636719 213.449219 C 198.292969 213.554688 198.007812 213.722656 197.78125 213.953125 C 197.554688 214.183594 197.441406 214.46875 197.441406 214.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 202.730469 214.5625 L 202.730469 211.566406 L 201.828125 211.566406 L 201.828125 211.285156 C 202.304688 211.285156 202.652344 211.0625 202.875 210.621094 C 203.097656 210.175781 203.210938 209.699219 203.210938 209.183594 L 203.519531 209.183594 L 203.519531 211.183594 L 205.054688 211.183594 L 205.054688 211.566406 L 203.519531 211.566406 L 203.519531 214.539062 C 203.519531 214.839844 203.570312 215.101562 203.671875 215.328125 C 203.773438 215.554688 203.953125 215.667969 204.21875 215.667969 C 204.46875 215.667969 204.648438 215.550781 204.757812 215.3125 C 204.867188 215.074219 204.921875 214.816406 204.921875 214.539062 L 204.921875 213.902344 L 205.230469 213.902344 L 205.230469 214.5625 C 205.230469 214.789062 205.191406 215.011719 205.109375 215.234375 C 205.027344 215.453125 204.902344 215.636719 204.738281 215.777344 C 204.574219 215.917969 204.375 215.992188 204.140625 215.992188 C 203.707031 215.992188 203.363281 215.863281 203.109375 215.601562 C 202.855469 215.34375 202.730469 214.996094 202.730469 214.5625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 206.234375 215.867188 L 206.234375 215.488281 C 206.484375 215.488281 206.6875 215.46875 206.84375 215.429688 C 207.003906 215.390625 207.082031 215.292969 207.082031 215.140625 L 207.082031 212.175781 C 207.082031 211.898438 207.027344 211.726562 206.921875 211.660156 C 206.8125 211.597656 206.601562 211.566406 206.28125 211.566406 L 206.28125 211.183594 L 207.851562 211.066406 L 207.851562 215.140625 C 207.851562 215.292969 207.917969 215.390625 208.054688 215.429688 C 208.191406 215.46875 208.375 215.488281 208.605469 215.488281 L 208.605469 215.867188 Z M 206.695312 209.199219 C 206.695312 209.039062 206.757812 208.898438 206.878906 208.777344 C 206.996094 208.65625 207.136719 208.597656 207.289062 208.597656 C 207.394531 208.597656 207.492188 208.625 207.589844 208.679688 C 207.683594 208.734375 207.757812 208.808594 207.8125 208.902344 C 207.863281 209 207.890625 209.097656 207.890625 209.199219 C 207.890625 209.355469 207.828125 209.492188 207.710938 209.613281 C 207.589844 209.730469 207.449219 209.789062 207.289062 209.789062 C 207.136719 209.789062 206.996094 209.730469 206.878906 209.613281 C 206.757812 209.492188 206.695312 209.355469 206.695312 209.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 211.671875 215.992188 C 211.238281 215.992188 210.835938 215.882812 210.464844 215.660156 C 210.089844 215.441406 209.796875 215.144531 209.582031 214.769531 C 209.367188 214.398438 209.257812 213.992188 209.257812 213.554688 C 209.257812 213.222656 209.316406 212.902344 209.433594 212.59375 C 209.550781 212.289062 209.722656 212.011719 209.945312 211.769531 C 210.167969 211.527344 210.425781 211.339844 210.71875 211.203125 C 211.011719 211.066406 211.328125 210.996094 211.671875 210.996094 C 212.117188 210.996094 212.523438 211.113281 212.890625 211.351562 C 213.257812 211.585938 213.550781 211.902344 213.761719 212.296875 C 213.976562 212.691406 214.082031 213.109375 214.082031 213.554688 C 214.082031 213.988281 213.972656 214.394531 213.757812 214.765625 C 213.539062 215.140625 213.246094 215.441406 212.878906 215.660156 C 212.507812 215.882812 212.105469 215.992188 211.671875 215.992188 Z M 211.671875 215.667969 C 212.253906 215.667969 212.644531 215.460938 212.835938 215.039062 C 213.027344 214.621094 213.125 214.085938 213.125 213.433594 C 213.125 213.070312 213.105469 212.769531 213.066406 212.527344 C 213.027344 212.289062 212.945312 212.070312 212.816406 211.875 C 212.734375 211.757812 212.628906 211.652344 212.503906 211.5625 C 212.378906 211.46875 212.246094 211.402344 212.105469 211.355469 C 211.964844 211.308594 211.820312 211.285156 211.671875 211.285156 C 211.445312 211.285156 211.230469 211.335938 211.027344 211.4375 C 210.824219 211.542969 210.65625 211.6875 210.519531 211.875 C 210.386719 212.082031 210.300781 212.308594 210.265625 212.554688 C 210.226562 212.800781 210.207031 213.09375 210.207031 213.433594 C 210.207031 213.839844 210.242188 214.203125 210.3125 214.527344 C 210.382812 214.851562 210.527344 215.121094 210.742188 215.339844 C 210.957031 215.558594 211.265625 215.667969 211.671875 215.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 214.777344 215.867188 L 214.777344 215.488281 C 215.027344 215.488281 215.230469 215.46875 215.386719 215.429688 C 215.546875 215.390625 215.625 215.292969 215.625 215.140625 L 215.625 212.175781 C 215.625 211.980469 215.597656 211.839844 215.539062 211.753906 C 215.480469 211.667969 215.394531 211.613281 215.285156 211.59375 C 215.175781 211.574219 215.007812 211.566406 214.777344 211.566406 L 214.777344 211.183594 L 216.351562 211.066406 L 216.351562 212.128906 C 216.5 211.816406 216.71875 211.558594 217.003906 211.363281 C 217.289062 211.164062 217.597656 211.066406 217.933594 211.066406 C 218.433594 211.066406 218.8125 211.1875 219.0625 211.425781 C 219.316406 211.667969 219.445312 212.035156 219.445312 212.53125 L 219.445312 215.140625 C 219.445312 215.292969 219.523438 215.390625 219.683594 215.429688 C 219.839844 215.46875 220.046875 215.488281 220.296875 215.488281 L 220.296875 215.867188 L 217.804688 215.867188 L 217.804688 215.488281 C 218.050781 215.488281 218.253906 215.46875 218.414062 215.429688 C 218.574219 215.390625 218.65625 215.292969 218.65625 215.140625 L 218.65625 212.5625 C 218.65625 212.207031 218.601562 211.917969 218.5 211.691406 C 218.394531 211.460938 218.1875 211.347656 217.871094 211.347656 C 217.449219 211.347656 217.101562 211.515625 216.828125 211.851562 C 216.558594 212.1875 216.421875 212.570312 216.421875 213 L 216.421875 215.140625 C 216.421875 215.292969 216.503906 215.390625 216.664062 215.429688 C 216.824219 215.46875 217.023438 215.488281 217.265625 215.488281 L 217.265625 215.867188 L 214.777344 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 224.5625 215.867188 L 224.5625 215.488281 C 225.3125 215.488281 225.683594 215.371094 225.683594 215.140625 L 225.683594 209.171875 C 225.683594 208.941406 225.3125 208.824219 224.5625 208.824219 L 224.5625 208.445312 L 230.558594 208.445312 L 230.863281 210.933594 L 230.546875 210.933594 C 230.5 210.476562 230.433594 210.117188 230.351562 209.851562 C 230.265625 209.589844 230.144531 209.382812 229.988281 209.230469 C 229.828125 209.082031 229.617188 208.976562 229.347656 208.914062 C 229.082031 208.855469 228.714844 208.824219 228.242188 208.824219 L 227.253906 208.824219 C 227.121094 208.824219 227.019531 208.832031 226.945312 208.84375 C 226.875 208.855469 226.8125 208.886719 226.765625 208.9375 C 226.722656 208.988281 226.695312 209.066406 226.695312 209.171875 L 226.695312 211.96875 L 227.46875 211.96875 C 227.84375 211.96875 228.113281 211.9375 228.289062 211.871094 C 228.460938 211.804688 228.582031 211.683594 228.644531 211.511719 C 228.710938 211.339844 228.742188 211.066406 228.742188 210.691406 L 229.058594 210.691406 L 229.058594 213.621094 L 228.742188 213.621094 C 228.742188 213.25 228.710938 212.976562 228.644531 212.804688 C 228.582031 212.628906 228.460938 212.507812 228.289062 212.441406 C 228.113281 212.375 227.84375 212.34375 227.46875 212.34375 L 226.695312 212.34375 L 226.695312 215.140625 C 226.695312 215.371094 227.160156 215.488281 228.09375 215.488281 L 228.09375 215.867188 L 224.5625 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 230.773438 215.867188 L 230.773438 215.488281 C 231.019531 215.488281 231.222656 215.46875 231.382812 215.429688 C 231.546875 215.390625 231.625 215.292969 231.625 215.140625 L 231.625 212.175781 C 231.625 211.980469 231.59375 211.839844 231.535156 211.753906 C 231.476562 211.667969 231.394531 211.613281 231.285156 211.59375 C 231.175781 211.574219 231.003906 211.566406 230.773438 211.566406 L 230.773438 211.183594 L 232.335938 211.066406 L 232.335938 212.128906 C 232.445312 211.8125 232.613281 211.554688 232.828125 211.359375 C 233.046875 211.164062 233.308594 211.066406 233.617188 211.066406 C 233.832031 211.066406 234.023438 211.128906 234.195312 211.257812 C 234.363281 211.382812 234.449219 211.554688 234.449219 211.765625 C 234.449219 211.894531 234.402344 212.007812 234.308594 212.105469 C 234.214844 212.199219 234.097656 212.25 233.960938 212.25 C 233.824219 212.25 233.710938 212.203125 233.613281 212.105469 C 233.519531 212.011719 233.46875 211.898438 233.46875 211.765625 C 233.46875 211.570312 233.539062 211.429688 233.679688 211.347656 L 233.617188 211.347656 C 233.324219 211.347656 233.085938 211.453125 232.898438 211.667969 C 232.714844 211.878906 232.582031 212.144531 232.503906 212.457031 C 232.425781 212.773438 232.386719 213.070312 232.386719 213.355469 L 232.386719 215.140625 C 232.386719 215.371094 232.738281 215.488281 233.441406 215.488281 L 233.441406 215.867188 L 230.773438 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 237.507812 215.992188 C 237.066406 215.992188 236.660156 215.875 236.292969 215.644531 C 235.925781 215.410156 235.632812 215.101562 235.421875 214.714844 C 235.210938 214.328125 235.105469 213.917969 235.105469 213.484375 C 235.105469 213.058594 235.203125 212.65625 235.394531 212.277344 C 235.585938 211.894531 235.855469 211.585938 236.199219 211.351562 C 236.546875 211.113281 236.929688 210.996094 237.355469 210.996094 C 237.6875 210.996094 237.976562 211.050781 238.222656 211.164062 C 238.46875 211.273438 238.671875 211.429688 238.832031 211.628906 C 238.992188 211.828125 239.113281 212.0625 239.191406 212.328125 C 239.273438 212.597656 239.3125 212.890625 239.3125 213.214844 C 239.3125 213.308594 239.277344 213.355469 239.203125 213.355469 L 236.054688 213.355469 L 236.054688 213.472656 C 236.054688 214.074219 236.175781 214.589844 236.417969 215.023438 C 236.660156 215.453125 237.058594 215.667969 237.609375 215.667969 C 237.832031 215.667969 238.035156 215.621094 238.226562 215.523438 C 238.414062 215.425781 238.578125 215.289062 238.71875 215.109375 C 238.855469 214.933594 238.953125 214.742188 239.003906 214.539062 C 239.011719 214.515625 239.023438 214.492188 239.042969 214.476562 C 239.0625 214.457031 239.085938 214.445312 239.109375 214.445312 L 239.203125 214.445312 C 239.277344 214.445312 239.3125 214.492188 239.3125 214.585938 C 239.210938 214.996094 238.992188 215.332031 238.652344 215.59375 C 238.3125 215.859375 237.929688 215.992188 237.507812 215.992188 Z M 236.066406 213.085938 L 238.546875 213.085938 C 238.546875 212.8125 238.507812 212.539062 238.429688 212.257812 C 238.355469 211.980469 238.226562 211.746094 238.050781 211.5625 C 237.871094 211.375 237.640625 211.285156 237.355469 211.285156 C 236.945312 211.285156 236.628906 211.476562 236.402344 211.859375 C 236.179688 212.246094 236.066406 212.652344 236.066406 213.085938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 242.949219 217.976562 L 242.949219 217.59375 C 243.199219 217.59375 243.402344 217.574219 243.558594 217.535156 C 243.71875 217.492188 243.796875 217.398438 243.796875 217.25 L 243.796875 215.234375 C 243.628906 215.460938 243.414062 215.644531 243.15625 215.78125 C 242.902344 215.921875 242.628906 215.992188 242.34375 215.992188 C 242.019531 215.992188 241.71875 215.925781 241.4375 215.789062 C 241.160156 215.65625 240.914062 215.472656 240.710938 215.242188 C 240.503906 215.011719 240.339844 214.746094 240.226562 214.441406 C 240.109375 214.140625 240.054688 213.832031 240.054688 213.519531 C 240.054688 213.089844 240.160156 212.6875 240.371094 212.304688 C 240.582031 211.925781 240.871094 211.625 241.242188 211.402344 C 241.613281 211.179688 242.011719 211.066406 242.4375 211.066406 C 242.746094 211.066406 243.03125 211.15625 243.292969 211.328125 C 243.554688 211.5 243.765625 211.734375 243.921875 212.019531 L 244.308594 211.066406 L 244.59375 211.066406 L 244.59375 217.25 C 244.59375 217.398438 244.675781 217.492188 244.835938 217.535156 C 244.992188 217.574219 245.195312 217.59375 245.4375 217.59375 L 245.4375 217.976562 Z M 242.410156 215.703125 C 242.730469 215.703125 243.015625 215.597656 243.269531 215.382812 C 243.523438 215.167969 243.710938 214.898438 243.832031 214.574219 L 243.832031 212.664062 C 243.757812 212.320312 243.605469 212.015625 243.371094 211.761719 C 243.136719 211.503906 242.855469 211.378906 242.53125 211.378906 C 242.28125 211.378906 242.058594 211.441406 241.867188 211.574219 C 241.671875 211.703125 241.511719 211.878906 241.382812 212.101562 C 241.253906 212.320312 241.15625 212.558594 241.09375 212.8125 C 241.027344 213.066406 240.996094 213.304688 240.996094 213.53125 C 240.996094 213.824219 241.046875 214.140625 241.152344 214.480469 C 241.253906 214.820312 241.414062 215.109375 241.625 215.347656 C 241.835938 215.585938 242.097656 215.703125 242.410156 215.703125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 246.667969 214.574219 L 246.667969 212.175781 C 246.667969 211.980469 246.636719 211.839844 246.578125 211.753906 C 246.519531 211.667969 246.4375 211.613281 246.328125 211.59375 C 246.21875 211.574219 246.046875 211.566406 245.816406 211.566406 L 245.816406 211.183594 L 247.464844 211.066406 L 247.464844 214.574219 C 247.464844 214.855469 247.484375 215.074219 247.523438 215.234375 C 247.566406 215.390625 247.652344 215.507812 247.785156 215.585938 C 247.917969 215.664062 248.128906 215.703125 248.417969 215.703125 C 248.808594 215.703125 249.121094 215.542969 249.351562 215.214844 C 249.578125 214.890625 249.695312 214.519531 249.695312 214.105469 L 249.695312 212.175781 C 249.695312 211.980469 249.664062 211.839844 249.605469 211.753906 C 249.546875 211.667969 249.460938 211.613281 249.351562 211.59375 C 249.246094 211.574219 249.078125 211.566406 248.847656 211.566406 L 248.847656 211.183594 L 250.488281 211.066406 L 250.488281 214.878906 C 250.488281 215.070312 250.515625 215.210938 250.574219 215.296875 C 250.632812 215.386719 250.71875 215.4375 250.828125 215.457031 C 250.9375 215.476562 251.105469 215.488281 251.335938 215.488281 L 251.335938 215.867188 L 249.726562 215.992188 L 249.726562 215.070312 C 249.59375 215.34375 249.40625 215.566406 249.164062 215.738281 C 248.925781 215.90625 248.660156 215.992188 248.367188 215.992188 C 247.847656 215.992188 247.433594 215.882812 247.128906 215.660156 C 246.820312 215.441406 246.667969 215.078125 246.667969 214.574219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 254.3125 215.992188 C 253.871094 215.992188 253.464844 215.875 253.097656 215.644531 C 252.726562 215.410156 252.4375 215.101562 252.226562 214.714844 C 252.015625 214.328125 251.910156 213.917969 251.910156 213.484375 C 251.910156 213.058594 252.007812 212.65625 252.195312 212.277344 C 252.390625 211.894531 252.65625 211.585938 253.003906 211.351562 C 253.347656 211.113281 253.734375 210.996094 254.160156 210.996094 C 254.492188 210.996094 254.78125 211.050781 255.027344 211.164062 C 255.273438 211.273438 255.476562 211.429688 255.636719 211.628906 C 255.796875 211.828125 255.917969 212.0625 255.996094 212.328125 C 256.078125 212.597656 256.117188 212.890625 256.117188 213.214844 C 256.117188 213.308594 256.078125 213.355469 256.003906 213.355469 L 252.859375 213.355469 L 252.859375 213.472656 C 252.859375 214.074219 252.980469 214.589844 253.222656 215.023438 C 253.464844 215.453125 253.859375 215.667969 254.410156 215.667969 C 254.632812 215.667969 254.839844 215.621094 255.03125 215.523438 C 255.21875 215.425781 255.382812 215.289062 255.523438 215.109375 C 255.660156 214.933594 255.753906 214.742188 255.804688 214.539062 C 255.8125 214.515625 255.828125 214.492188 255.847656 214.476562 C 255.867188 214.457031 255.886719 214.445312 255.910156 214.445312 L 256.003906 214.445312 C 256.078125 214.445312 256.117188 214.492188 256.117188 214.585938 C 256.015625 214.996094 255.796875 215.332031 255.453125 215.59375 C 255.113281 215.859375 254.734375 215.992188 254.3125 215.992188 Z M 252.871094 213.085938 L 255.351562 213.085938 C 255.351562 212.8125 255.3125 212.539062 255.234375 212.257812 C 255.160156 211.980469 255.03125 211.746094 254.855469 211.5625 C 254.675781 211.375 254.445312 211.285156 254.160156 211.285156 C 253.75 211.285156 253.433594 211.476562 253.207031 211.859375 C 252.984375 212.246094 252.871094 212.652344 252.871094 213.085938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 256.816406 215.867188 L 256.816406 215.488281 C 257.066406 215.488281 257.269531 215.46875 257.429688 215.429688 C 257.585938 215.390625 257.664062 215.292969 257.664062 215.140625 L 257.664062 212.175781 C 257.664062 211.980469 257.636719 211.839844 257.578125 211.753906 C 257.519531 211.667969 257.433594 211.613281 257.324219 211.59375 C 257.214844 211.574219 257.046875 211.566406 256.816406 211.566406 L 256.816406 211.183594 L 258.390625 211.066406 L 258.390625 212.128906 C 258.539062 211.816406 258.757812 211.558594 259.042969 211.363281 C 259.328125 211.164062 259.636719 211.066406 259.972656 211.066406 C 260.472656 211.066406 260.851562 211.1875 261.105469 211.425781 C 261.359375 211.667969 261.484375 212.035156 261.484375 212.53125 L 261.484375 215.140625 C 261.484375 215.292969 261.566406 215.390625 261.722656 215.429688 C 261.882812 215.46875 262.085938 215.488281 262.335938 215.488281 L 262.335938 215.867188 L 259.84375 215.867188 L 259.84375 215.488281 C 260.089844 215.488281 260.292969 215.46875 260.453125 215.429688 C 260.613281 215.390625 260.695312 215.292969 260.695312 215.140625 L 260.695312 212.5625 C 260.695312 212.207031 260.644531 211.917969 260.539062 211.691406 C 260.4375 211.460938 260.226562 211.347656 259.910156 211.347656 C 259.488281 211.347656 259.140625 211.515625 258.871094 211.851562 C 258.597656 212.1875 258.464844 212.570312 258.464844 213 L 258.464844 215.140625 C 258.464844 215.292969 258.542969 215.390625 258.703125 215.429688 C 258.863281 215.46875 259.0625 215.488281 259.304688 215.488281 L 259.304688 215.867188 L 256.816406 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 265.3125 215.992188 C 264.871094 215.992188 264.476562 215.875 264.117188 215.648438 C 263.761719 215.421875 263.480469 215.117188 263.273438 214.734375 C 263.070312 214.355469 262.96875 213.949219 262.96875 213.519531 C 262.96875 213.09375 263.070312 212.6875 263.273438 212.292969 C 263.476562 211.902344 263.757812 211.585938 264.117188 211.351562 C 264.476562 211.113281 264.871094 210.996094 265.3125 210.996094 C 265.738281 210.996094 266.121094 211.082031 266.472656 211.246094 C 266.820312 211.410156 266.992188 211.683594 266.992188 212.0625 C 266.992188 212.203125 266.941406 212.324219 266.84375 212.429688 C 266.742188 212.535156 266.621094 212.589844 266.476562 212.589844 C 266.332031 212.589844 266.210938 212.535156 266.109375 212.429688 C 266.007812 212.324219 265.953125 212.203125 265.953125 212.0625 C 265.953125 211.9375 265.996094 211.828125 266.078125 211.734375 C 266.160156 211.640625 266.261719 211.582031 266.378906 211.554688 C 266.128906 211.394531 265.777344 211.3125 265.324219 211.3125 C 264.976562 211.3125 264.695312 211.429688 264.480469 211.660156 C 264.269531 211.890625 264.121094 212.175781 264.035156 212.511719 C 263.953125 212.851562 263.910156 213.1875 263.910156 213.519531 C 263.910156 213.871094 263.964844 214.210938 264.066406 214.539062 C 264.171875 214.867188 264.339844 215.136719 264.570312 215.351562 C 264.800781 215.5625 265.09375 215.667969 265.445312 215.667969 C 265.789062 215.667969 266.082031 215.566406 266.320312 215.355469 C 266.5625 215.148438 266.726562 214.875 266.816406 214.53125 C 266.816406 214.492188 266.84375 214.46875 266.898438 214.46875 L 267.035156 214.46875 C 267.054688 214.46875 267.070312 214.480469 267.089844 214.5 C 267.105469 214.519531 267.117188 214.539062 267.117188 214.5625 L 267.117188 214.59375 C 267.007812 215.019531 266.789062 215.363281 266.464844 215.613281 C 266.136719 215.863281 265.753906 215.992188 265.3125 215.992188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 268.242188 217.652344 C 268.378906 217.761719 268.53125 217.816406 268.699219 217.816406 C 269.15625 217.816406 269.53125 217.472656 269.820312 216.78125 L 270.1875 215.867188 L 268.558594 211.875 C 268.492188 211.742188 268.390625 211.65625 268.253906 211.621094 C 268.113281 211.582031 267.929688 211.566406 267.699219 211.566406 L 267.699219 211.183594 L 269.984375 211.183594 L 269.984375 211.566406 C 269.585938 211.566406 269.386719 211.652344 269.386719 211.824219 C 269.386719 211.855469 269.386719 211.875 269.390625 211.886719 L 270.605469 214.859375 L 271.695312 212.1875 C 271.714844 212.132812 271.722656 212.070312 271.722656 212 C 271.722656 211.914062 271.699219 211.835938 271.652344 211.769531 C 271.605469 211.703125 271.542969 211.652344 271.46875 211.617188 C 271.390625 211.582031 271.304688 211.566406 271.207031 211.566406 L 271.207031 211.183594 L 273.019531 211.183594 L 273.019531 211.566406 C 272.789062 211.566406 272.59375 211.617188 272.425781 211.71875 C 272.257812 211.824219 272.128906 211.976562 272.039062 212.175781 L 270.160156 216.78125 C 270.0625 217.015625 269.945312 217.230469 269.8125 217.425781 C 269.679688 217.621094 269.519531 217.78125 269.328125 217.910156 C 269.136719 218.035156 268.925781 218.097656 268.699219 218.097656 C 268.433594 218.097656 268.199219 218.011719 268 217.835938 C 267.796875 217.660156 267.699219 217.445312 267.699219 217.1875 C 267.699219 217.050781 267.742188 216.933594 267.835938 216.84375 C 267.925781 216.75 268.039062 216.707031 268.179688 216.707031 C 268.269531 216.707031 268.351562 216.726562 268.425781 216.765625 C 268.496094 216.808594 268.554688 216.863281 268.59375 216.933594 C 268.632812 217.003906 268.652344 217.085938 268.652344 217.1875 C 268.652344 217.300781 268.613281 217.40625 268.539062 217.5 C 268.464844 217.589844 268.363281 217.640625 268.242188 217.652344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 278.246094 218.585938 L 278.246094 207.71875 L 279.734375 207.71875 L 279.734375 208.152344 L 278.6875 208.152344 L 278.6875 218.152344 L 279.734375 218.152344 L 279.734375 218.585938 L 278.246094 218.585938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 280.300781 215.867188 L 280.300781 215.488281 C 280.546875 215.488281 280.75 215.46875 280.910156 215.429688 C 281.070312 215.390625 281.148438 215.292969 281.148438 215.140625 L 281.148438 212.175781 C 281.148438 211.980469 281.121094 211.839844 281.0625 211.753906 C 281.003906 211.667969 280.921875 211.613281 280.808594 211.59375 C 280.699219 211.574219 280.53125 211.566406 280.300781 211.566406 L 280.300781 211.183594 L 281.859375 211.066406 L 281.859375 212.128906 C 281.972656 211.8125 282.136719 211.554688 282.355469 211.359375 C 282.570312 211.164062 282.832031 211.066406 283.140625 211.066406 C 283.355469 211.066406 283.550781 211.128906 283.71875 211.257812 C 283.890625 211.382812 283.972656 211.554688 283.972656 211.765625 C 283.972656 211.894531 283.925781 212.007812 283.832031 212.105469 C 283.738281 212.199219 283.625 212.25 283.488281 212.25 C 283.351562 212.25 283.234375 212.203125 283.140625 212.105469 C 283.042969 212.011719 282.996094 211.898438 282.996094 211.765625 C 282.996094 211.570312 283.066406 211.429688 283.207031 211.347656 L 283.140625 211.347656 C 282.847656 211.347656 282.609375 211.453125 282.425781 211.667969 C 282.238281 211.878906 282.105469 212.144531 282.027344 212.457031 C 281.949219 212.773438 281.910156 213.070312 281.910156 213.355469 L 281.910156 215.140625 C 281.910156 215.371094 282.261719 215.488281 282.964844 215.488281 L 282.964844 215.867188 L 280.300781 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 284.761719 214.800781 C 284.761719 214.371094 284.929688 214.019531 285.269531 213.75 C 285.609375 213.480469 286.019531 213.289062 286.496094 213.175781 C 286.972656 213.066406 287.425781 213.011719 287.855469 213.011719 L 287.855469 212.5625 C 287.855469 212.355469 287.808594 212.152344 287.714844 211.953125 C 287.625 211.757812 287.492188 211.597656 287.316406 211.472656 C 287.144531 211.347656 286.953125 211.285156 286.742188 211.285156 C 286.261719 211.285156 285.894531 211.390625 285.644531 211.605469 C 285.78125 211.605469 285.894531 211.660156 285.984375 211.765625 C 286.074219 211.871094 286.121094 211.992188 286.121094 212.128906 C 286.121094 212.269531 286.070312 212.394531 285.96875 212.5 C 285.867188 212.601562 285.746094 212.652344 285.605469 212.652344 C 285.457031 212.652344 285.332031 212.601562 285.230469 212.5 C 285.128906 212.394531 285.078125 212.269531 285.078125 212.128906 C 285.078125 211.746094 285.25 211.460938 285.597656 211.273438 C 285.941406 211.089844 286.324219 210.996094 286.742188 210.996094 C 287.039062 210.996094 287.335938 211.058594 287.632812 211.183594 C 287.929688 211.308594 288.171875 211.488281 288.359375 211.722656 C 288.550781 211.957031 288.644531 212.230469 288.644531 212.542969 L 288.644531 214.988281 C 288.644531 215.128906 288.675781 215.261719 288.734375 215.378906 C 288.796875 215.5 288.890625 215.558594 289.015625 215.558594 C 289.136719 215.558594 289.226562 215.496094 289.285156 215.375 C 289.34375 215.253906 289.371094 215.125 289.371094 214.988281 L 289.371094 214.292969 L 289.6875 214.292969 L 289.6875 214.988281 C 289.6875 215.148438 289.644531 215.304688 289.5625 215.449219 C 289.476562 215.597656 289.363281 215.714844 289.21875 215.800781 C 289.074219 215.886719 288.921875 215.933594 288.757812 215.933594 C 288.539062 215.933594 288.359375 215.851562 288.207031 215.6875 C 288.054688 215.523438 287.96875 215.328125 287.949219 215.101562 C 287.816406 215.371094 287.617188 215.585938 287.355469 215.75 C 287.09375 215.910156 286.8125 215.992188 286.511719 215.992188 C 286.238281 215.992188 285.96875 215.949219 285.699219 215.867188 C 285.433594 215.785156 285.210938 215.65625 285.03125 215.480469 C 284.851562 215.304688 284.761719 215.078125 284.761719 214.800781 Z M 285.644531 214.800781 C 285.644531 215.054688 285.738281 215.269531 285.925781 215.445312 C 286.113281 215.617188 286.335938 215.703125 286.589844 215.703125 C 286.824219 215.703125 287.035156 215.644531 287.226562 215.527344 C 287.417969 215.410156 287.570312 215.253906 287.683594 215.050781 C 287.796875 214.851562 287.855469 214.636719 287.855469 214.417969 L 287.855469 213.285156 C 287.523438 213.285156 287.183594 213.339844 286.839844 213.449219 C 286.496094 213.554688 286.210938 213.722656 285.984375 213.953125 C 285.757812 214.183594 285.644531 214.46875 285.644531 214.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 292.480469 215.992188 C 292.050781 215.992188 291.660156 215.875 291.304688 215.644531 C 290.953125 215.410156 290.679688 215.105469 290.484375 214.726562 C 290.289062 214.347656 290.1875 213.945312 290.1875 213.519531 C 290.1875 213.082031 290.296875 212.675781 290.507812 212.300781 C 290.722656 211.921875 291.011719 211.625 291.382812 211.402344 C 291.75 211.179688 292.15625 211.066406 292.597656 211.066406 C 292.863281 211.066406 293.113281 211.125 293.351562 211.234375 C 293.585938 211.34375 293.792969 211.5 293.96875 211.699219 L 293.96875 209.441406 C 293.96875 209.246094 293.9375 209.101562 293.882812 209.015625 C 293.820312 208.925781 293.738281 208.875 293.632812 208.855469 C 293.523438 208.835938 293.355469 208.824219 293.125 208.824219 L 293.125 208.445312 L 294.730469 208.328125 L 294.730469 214.878906 C 294.730469 215.070312 294.761719 215.210938 294.816406 215.296875 C 294.878906 215.386719 294.960938 215.4375 295.070312 215.457031 C 295.179688 215.476562 295.347656 215.488281 295.574219 215.488281 L 295.574219 215.867188 L 293.933594 215.992188 L 293.933594 215.304688 C 293.746094 215.519531 293.523438 215.6875 293.265625 215.808594 C 293.007812 215.929688 292.746094 215.992188 292.480469 215.992188 Z M 291.371094 214.925781 C 291.496094 215.160156 291.65625 215.347656 291.863281 215.492188 C 292.070312 215.632812 292.300781 215.703125 292.546875 215.703125 C 292.847656 215.703125 293.121094 215.617188 293.375 215.445312 C 293.625 215.269531 293.8125 215.042969 293.933594 214.765625 L 293.933594 212.164062 C 293.851562 212.007812 293.746094 211.863281 293.617188 211.738281 C 293.488281 211.609375 293.34375 211.515625 293.179688 211.449219 C 293.019531 211.382812 292.847656 211.347656 292.667969 211.347656 C 292.289062 211.347656 291.984375 211.457031 291.753906 211.671875 C 291.523438 211.886719 291.363281 212.15625 291.269531 212.488281 C 291.179688 212.820312 291.132812 213.167969 291.132812 213.53125 C 291.132812 213.824219 291.148438 214.078125 291.175781 214.292969 C 291.207031 214.507812 291.269531 214.71875 291.371094 214.925781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 296.546875 218.367188 C 296.546875 218.34375 296.550781 218.332031 296.558594 218.328125 L 300.335938 207.851562 C 300.351562 207.808594 300.378906 207.777344 300.414062 207.753906 C 300.449219 207.730469 300.488281 207.71875 300.535156 207.71875 C 300.597656 207.71875 300.648438 207.738281 300.691406 207.777344 C 300.730469 207.816406 300.753906 207.867188 300.753906 207.933594 L 300.753906 207.976562 L 296.972656 218.449219 C 296.929688 218.539062 296.859375 218.585938 296.761719 218.585938 C 296.703125 218.585938 296.652344 218.5625 296.609375 218.519531 C 296.566406 218.476562 296.546875 218.425781 296.546875 218.367188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 301.800781 215.898438 L 301.800781 214.128906 C 301.800781 214.070312 301.832031 214.042969 301.894531 214.042969 L 302.027344 214.042969 C 302.066406 214.042969 302.09375 214.070312 302.109375 214.128906 C 302.3125 215.179688 302.800781 215.703125 303.574219 215.703125 C 303.917969 215.703125 304.207031 215.625 304.4375 215.46875 C 304.671875 215.3125 304.789062 215.074219 304.789062 214.75 C 304.789062 214.515625 304.695312 214.316406 304.515625 214.152344 C 304.335938 213.988281 304.121094 213.875 303.875 213.8125 L 303.148438 213.671875 C 302.902344 213.617188 302.679688 213.535156 302.480469 213.425781 C 302.28125 213.316406 302.117188 213.171875 301.988281 212.992188 C 301.863281 212.808594 301.800781 212.597656 301.800781 212.355469 C 301.800781 212.035156 301.882812 211.773438 302.050781 211.570312 C 302.21875 211.367188 302.4375 211.222656 302.703125 211.132812 C 302.972656 211.042969 303.261719 210.996094 303.574219 210.996094 C 303.945312 210.996094 304.269531 211.097656 304.546875 211.296875 L 304.863281 211.027344 C 304.863281 211.007812 304.882812 210.996094 304.914062 210.996094 L 304.992188 210.996094 C 305.015625 210.996094 305.035156 211.007812 305.054688 211.027344 C 305.070312 211.046875 305.082031 211.066406 305.082031 211.085938 L 305.082031 212.507812 C 305.082031 212.578125 305.050781 212.613281 304.992188 212.613281 L 304.863281 212.613281 C 304.796875 212.613281 304.765625 212.578125 304.765625 212.507812 C 304.765625 212.128906 304.660156 211.824219 304.449219 211.597656 C 304.238281 211.367188 303.941406 211.253906 303.5625 211.253906 C 303.238281 211.253906 302.957031 211.3125 302.71875 211.433594 C 302.480469 211.550781 302.363281 211.757812 302.363281 212.050781 C 302.363281 212.253906 302.449219 212.417969 302.621094 212.550781 C 302.792969 212.675781 302.992188 212.769531 303.222656 212.828125 L 303.957031 212.964844 C 304.207031 213.023438 304.4375 213.117188 304.652344 213.253906 C 304.867188 213.386719 305.039062 213.558594 305.164062 213.761719 C 305.289062 213.96875 305.351562 214.199219 305.351562 214.457031 C 305.351562 214.71875 305.304688 214.945312 305.214844 215.140625 C 305.125 215.332031 305 215.492188 304.839844 215.621094 C 304.675781 215.746094 304.484375 215.839844 304.265625 215.898438 C 304.046875 215.960938 303.816406 215.992188 303.574219 215.992188 C 303.121094 215.992188 302.734375 215.839844 302.414062 215.535156 L 302.015625 215.960938 C 302.015625 215.980469 301.996094 215.992188 301.957031 215.992188 L 301.894531 215.992188 C 301.832031 215.992188 301.800781 215.960938 301.800781 215.898438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 306.015625 218.585938 L 306.015625 218.152344 L 307.070312 218.152344 L 307.070312 208.152344 L 306.015625 208.152344 L 306.015625 207.71875 L 307.503906 207.71875 L 307.503906 218.585938 L 306.015625 218.585938 "/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -313.624453 L 1870.400047 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -313.624453 L 2998.637977 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -313.624453 L 1888.71395 -313.624453 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -619.121085 L 1888.71395 -619.121085 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -924.578641 L 1888.71395 -924.578641 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -1230.075274 L 1888.71395 -1230.075274 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -1535.571906 L 1888.71395 -1535.571906 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -1841.068538 L 1888.71395 -1841.068538 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -2146.526095 L 1888.71395 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -313.624453 L 2980.324074 -313.624453 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -619.121085 L 2980.324074 -619.121085 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -924.578641 L 2980.324074 -924.578641 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -1230.075274 L 2980.324074 -1230.075274 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -1535.571906 L 2980.324074 -1535.571906 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -1841.068538 L 2980.324074 -1841.068538 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:4.99648;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2998.637977 -2146.526095 L 2980.324074 -2146.526095 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 159.886719 190.171875 L 159.886719 189.546875 L 162.570312 189.546875 L 162.570312 190.171875 L 159.886719 190.171875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 164.078125 191.269531 C 164.234375 191.5 164.445312 191.667969 164.714844 191.78125 C 164.980469 191.890625 165.265625 191.949219 165.570312 191.949219 C 165.964844 191.949219 166.242188 191.78125 166.40625 191.445312 C 166.574219 191.113281 166.65625 190.734375 166.65625 190.308594 C 166.65625 190.117188 166.636719 189.925781 166.601562 189.734375 C 166.566406 189.542969 166.507812 189.367188 166.425781 189.203125 C 166.34375 189.039062 166.230469 188.90625 166.089844 188.804688 C 165.945312 188.707031 165.773438 188.65625 165.5625 188.65625 L 164.890625 188.65625 C 164.832031 188.65625 164.804688 188.625 164.804688 188.5625 L 164.804688 188.476562 C 164.804688 188.421875 164.832031 188.394531 164.890625 188.394531 L 165.449219 188.351562 C 165.6875 188.351562 165.882812 188.265625 166.039062 188.085938 C 166.195312 187.910156 166.308594 187.691406 166.382812 187.4375 C 166.453125 187.179688 166.488281 186.9375 166.488281 186.707031 C 166.488281 186.382812 166.414062 186.117188 166.265625 185.910156 C 166.113281 185.703125 165.882812 185.601562 165.570312 185.601562 C 165.3125 185.601562 165.066406 185.648438 164.835938 185.746094 C 164.601562 185.84375 164.414062 185.992188 164.277344 186.1875 C 164.289062 186.183594 164.304688 186.179688 164.3125 186.179688 C 164.324219 186.179688 164.335938 186.179688 164.347656 186.179688 C 164.496094 186.179688 164.625 186.234375 164.726562 186.339844 C 164.828125 186.445312 164.878906 186.570312 164.878906 186.71875 C 164.878906 186.863281 164.828125 186.988281 164.726562 187.09375 C 164.625 187.199219 164.496094 187.253906 164.347656 187.253906 C 164.199219 187.253906 164.070312 187.199219 163.964844 187.09375 C 163.859375 186.988281 163.808594 186.863281 163.808594 186.71875 C 163.808594 186.425781 163.894531 186.171875 164.066406 185.960938 C 164.242188 185.75 164.464844 185.585938 164.742188 185.476562 C 165.015625 185.363281 165.292969 185.308594 165.570312 185.308594 C 165.777344 185.308594 165.992188 185.339844 166.222656 185.398438 C 166.449219 185.460938 166.652344 185.546875 166.835938 185.664062 C 167.019531 185.777344 167.171875 185.925781 167.285156 186.101562 C 167.402344 186.28125 167.464844 186.480469 167.464844 186.707031 C 167.464844 186.988281 167.398438 187.25 167.273438 187.492188 C 167.144531 187.734375 166.972656 187.941406 166.75 188.117188 C 166.53125 188.289062 166.289062 188.417969 166.027344 188.503906 C 166.320312 188.558594 166.597656 188.671875 166.863281 188.835938 C 167.125 189.003906 167.339844 189.210938 167.496094 189.46875 C 167.65625 189.722656 167.738281 190 167.738281 190.296875 C 167.738281 190.671875 167.636719 191.007812 167.429688 191.308594 C 167.226562 191.609375 166.957031 191.84375 166.625 192.015625 C 166.292969 192.183594 165.941406 192.269531 165.570312 192.269531 C 165.253906 192.269531 164.9375 192.210938 164.617188 192.089844 C 164.300781 191.96875 164.039062 191.785156 163.839844 191.546875 C 163.636719 191.304688 163.539062 191.019531 163.539062 190.683594 C 163.539062 190.515625 163.59375 190.375 163.703125 190.265625 C 163.816406 190.152344 163.953125 190.097656 164.121094 190.097656 C 164.234375 190.097656 164.332031 190.121094 164.421875 190.171875 C 164.511719 190.222656 164.582031 190.296875 164.632812 190.386719 C 164.683594 190.480469 164.710938 190.578125 164.710938 190.683594 C 164.710938 190.847656 164.652344 190.984375 164.535156 191.097656 C 164.421875 191.210938 164.285156 191.269531 164.121094 191.269531 L 164.078125 191.269531 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 170.640625 192.269531 C 169.8125 192.269531 169.25 191.929688 168.953125 191.246094 C 168.65625 190.566406 168.507812 189.757812 168.507812 188.820312 C 168.507812 188.234375 168.5625 187.683594 168.664062 187.167969 C 168.769531 186.648438 168.984375 186.210938 169.300781 185.851562 C 169.621094 185.488281 170.066406 185.308594 170.640625 185.308594 C 171.085938 185.308594 171.449219 185.417969 171.734375 185.632812 C 172.015625 185.851562 172.230469 186.132812 172.378906 186.476562 C 172.527344 186.824219 172.628906 187.191406 172.683594 187.582031 C 172.738281 187.976562 172.765625 188.386719 172.765625 188.820312 C 172.765625 189.402344 172.714844 189.945312 172.605469 190.453125 C 172.496094 190.957031 172.289062 191.386719 171.976562 191.738281 C 171.664062 192.09375 171.21875 192.269531 170.640625 192.269531 Z M 170.640625 192.007812 C 171.015625 192.007812 171.296875 191.8125 171.480469 191.429688 C 171.664062 191.042969 171.78125 190.617188 171.824219 190.148438 C 171.867188 189.679688 171.886719 189.183594 171.886719 188.65625 C 171.886719 188.148438 171.867188 187.683594 171.824219 187.253906 C 171.78125 186.828125 171.667969 186.441406 171.484375 186.09375 C 171.300781 185.746094 171.019531 185.574219 170.640625 185.574219 C 170.257812 185.574219 169.976562 185.746094 169.789062 186.097656 C 169.605469 186.445312 169.492188 186.832031 169.449219 187.257812 C 169.40625 187.683594 169.386719 188.148438 169.386719 188.65625 C 169.386719 189.03125 169.394531 189.386719 169.414062 189.71875 C 169.429688 190.054688 169.480469 190.398438 169.554688 190.75 C 169.636719 191.101562 169.761719 191.402344 169.941406 191.644531 C 170.117188 191.886719 170.351562 192.007812 170.640625 192.007812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 175.640625 192.269531 C 174.8125 192.269531 174.25 191.929688 173.953125 191.246094 C 173.65625 190.566406 173.507812 189.757812 173.507812 188.820312 C 173.507812 188.234375 173.558594 187.683594 173.664062 187.167969 C 173.769531 186.648438 173.984375 186.210938 174.300781 185.851562 C 174.621094 185.488281 175.066406 185.308594 175.640625 185.308594 C 176.085938 185.308594 176.449219 185.417969 176.730469 185.632812 C 177.015625 185.851562 177.230469 186.132812 177.378906 186.476562 C 177.527344 186.824219 177.628906 187.191406 177.683594 187.582031 C 177.738281 187.976562 177.765625 188.386719 177.765625 188.820312 C 177.765625 189.402344 177.714844 189.945312 177.605469 190.453125 C 177.496094 190.957031 177.289062 191.386719 176.976562 191.738281 C 176.664062 192.09375 176.21875 192.269531 175.640625 192.269531 Z M 175.640625 192.007812 C 176.015625 192.007812 176.296875 191.8125 176.480469 191.429688 C 176.664062 191.042969 176.78125 190.617188 176.824219 190.148438 C 176.867188 189.679688 176.886719 189.183594 176.886719 188.65625 C 176.886719 188.148438 176.867188 187.683594 176.824219 187.253906 C 176.78125 186.828125 176.667969 186.441406 176.484375 186.09375 C 176.300781 185.746094 176.019531 185.574219 175.640625 185.574219 C 175.257812 185.574219 174.972656 185.746094 174.789062 186.097656 C 174.605469 186.445312 174.492188 186.832031 174.449219 187.257812 C 174.40625 187.683594 174.386719 188.148438 174.386719 188.65625 C 174.386719 189.03125 174.394531 189.386719 174.414062 189.71875 C 174.429688 190.054688 174.476562 190.398438 174.554688 190.75 C 174.632812 191.101562 174.761719 191.402344 174.941406 191.644531 C 175.117188 191.886719 175.351562 192.007812 175.640625 192.007812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 180.640625 192.269531 C 179.8125 192.269531 179.25 191.929688 178.953125 191.246094 C 178.65625 190.566406 178.507812 189.757812 178.507812 188.820312 C 178.507812 188.234375 178.558594 187.683594 178.664062 187.167969 C 178.769531 186.648438 178.980469 186.210938 179.300781 185.851562 C 179.617188 185.488281 180.066406 185.308594 180.640625 185.308594 C 181.085938 185.308594 181.449219 185.417969 181.730469 185.632812 C 182.015625 185.851562 182.230469 186.132812 182.378906 186.476562 C 182.527344 186.824219 182.628906 187.191406 182.683594 187.582031 C 182.738281 187.976562 182.765625 188.386719 182.765625 188.820312 C 182.765625 189.402344 182.714844 189.945312 182.605469 190.453125 C 182.496094 190.957031 182.289062 191.386719 181.976562 191.738281 C 181.664062 192.09375 181.21875 192.269531 180.640625 192.269531 Z M 180.640625 192.007812 C 181.015625 192.007812 181.296875 191.8125 181.480469 191.429688 C 181.664062 191.042969 181.78125 190.617188 181.824219 190.148438 C 181.867188 189.679688 181.886719 189.183594 181.886719 188.65625 C 181.886719 188.148438 181.867188 187.683594 181.824219 187.253906 C 181.78125 186.828125 181.667969 186.441406 181.484375 186.09375 C 181.300781 185.746094 181.019531 185.574219 180.640625 185.574219 C 180.257812 185.574219 179.972656 185.746094 179.789062 186.097656 C 179.605469 186.445312 179.492188 186.832031 179.449219 187.257812 C 179.40625 187.683594 179.386719 188.148438 179.386719 188.65625 C 179.386719 189.03125 179.394531 189.386719 179.410156 189.71875 C 179.429688 190.054688 179.476562 190.398438 179.554688 190.75 C 179.632812 191.101562 179.761719 191.402344 179.9375 191.644531 C 180.117188 191.886719 180.351562 192.007812 180.640625 192.007812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 159.886719 159.636719 L 159.886719 159.007812 L 162.570312 159.007812 L 162.570312 159.636719 L 159.886719 159.636719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 163.613281 161.507812 L 163.613281 161.238281 C 163.613281 161.21875 163.621094 161.199219 163.632812 161.179688 L 165.207031 159.441406 C 165.445312 159.183594 165.636719 158.96875 165.785156 158.796875 C 165.929688 158.621094 166.078125 158.421875 166.222656 158.195312 C 166.371094 157.96875 166.484375 157.738281 166.570312 157.5 C 166.652344 157.265625 166.695312 157.015625 166.695312 156.75 C 166.695312 156.476562 166.644531 156.210938 166.539062 155.957031 C 166.4375 155.707031 166.285156 155.503906 166.082031 155.351562 C 165.882812 155.203125 165.636719 155.128906 165.347656 155.128906 C 165.054688 155.128906 164.789062 155.214844 164.558594 155.390625 C 164.324219 155.566406 164.160156 155.792969 164.066406 156.074219 C 164.09375 156.070312 164.128906 156.066406 164.171875 156.066406 C 164.324219 156.066406 164.453125 156.113281 164.558594 156.214844 C 164.667969 156.316406 164.722656 156.449219 164.722656 156.613281 C 164.722656 156.765625 164.667969 156.898438 164.558594 157.003906 C 164.453125 157.109375 164.324219 157.164062 164.171875 157.164062 C 164.015625 157.164062 163.882812 157.109375 163.773438 157 C 163.667969 156.890625 163.613281 156.761719 163.613281 156.613281 C 163.613281 156.359375 163.660156 156.121094 163.757812 155.902344 C 163.851562 155.675781 163.992188 155.480469 164.171875 155.304688 C 164.351562 155.132812 164.554688 155 164.78125 154.90625 C 165.007812 154.816406 165.246094 154.769531 165.5 154.769531 C 165.882812 154.769531 166.242188 154.851562 166.574219 155.015625 C 166.910156 155.179688 167.171875 155.410156 167.367188 155.707031 C 167.558594 156.003906 167.65625 156.351562 167.65625 156.75 C 167.65625 157.046875 167.59375 157.324219 167.464844 157.589844 C 167.335938 157.851562 167.171875 158.09375 166.972656 158.304688 C 166.773438 158.519531 166.515625 158.765625 166.199219 159.039062 C 165.886719 159.3125 165.679688 159.496094 165.582031 159.589844 L 164.433594 160.6875 L 165.40625 160.6875 C 165.886719 160.6875 166.285156 160.683594 166.609375 160.675781 C 166.929688 160.667969 167.097656 160.65625 167.117188 160.636719 C 167.199219 160.554688 167.28125 160.246094 167.363281 159.707031 L 167.65625 159.707031 L 167.367188 161.507812 L 163.613281 161.507812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 170.640625 161.730469 C 169.8125 161.730469 169.25 161.390625 168.953125 160.710938 C 168.65625 160.027344 168.507812 159.21875 168.507812 158.28125 C 168.507812 157.699219 168.5625 157.148438 168.664062 156.628906 C 168.769531 156.113281 168.984375 155.671875 169.300781 155.3125 C 169.621094 154.949219 170.066406 154.769531 170.640625 154.769531 C 171.085938 154.769531 171.449219 154.878906 171.734375 155.09375 C 172.015625 155.3125 172.230469 155.59375 172.378906 155.9375 C 172.527344 156.285156 172.628906 156.652344 172.683594 157.042969 C 172.738281 157.4375 172.765625 157.851562 172.765625 158.28125 C 172.765625 158.863281 172.714844 159.40625 172.605469 159.914062 C 172.496094 160.417969 172.289062 160.847656 171.976562 161.203125 C 171.664062 161.554688 171.21875 161.730469 170.640625 161.730469 Z M 170.640625 161.46875 C 171.015625 161.46875 171.296875 161.277344 171.480469 160.890625 C 171.664062 160.507812 171.78125 160.082031 171.824219 159.613281 C 171.867188 159.144531 171.886719 158.644531 171.886719 158.117188 C 171.886719 157.613281 171.867188 157.144531 171.824219 156.71875 C 171.78125 156.289062 171.667969 155.902344 171.484375 155.554688 C 171.300781 155.207031 171.019531 155.035156 170.640625 155.035156 C 170.257812 155.035156 169.976562 155.207031 169.789062 155.558594 C 169.605469 155.90625 169.492188 156.292969 169.449219 156.71875 C 169.40625 157.144531 169.386719 157.613281 169.386719 158.117188 C 169.386719 158.492188 169.394531 158.847656 169.414062 159.183594 C 169.429688 159.515625 169.480469 159.859375 169.554688 160.210938 C 169.636719 160.566406 169.761719 160.863281 169.941406 161.105469 C 170.117188 161.347656 170.351562 161.46875 170.640625 161.46875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 175.640625 161.730469 C 174.8125 161.730469 174.25 161.390625 173.953125 160.710938 C 173.65625 160.027344 173.507812 159.21875 173.507812 158.28125 C 173.507812 157.699219 173.558594 157.148438 173.664062 156.628906 C 173.769531 156.113281 173.984375 155.671875 174.300781 155.3125 C 174.621094 154.949219 175.066406 154.769531 175.640625 154.769531 C 176.085938 154.769531 176.449219 154.878906 176.730469 155.09375 C 177.015625 155.3125 177.230469 155.59375 177.378906 155.9375 C 177.527344 156.285156 177.628906 156.652344 177.683594 157.042969 C 177.738281 157.4375 177.765625 157.851562 177.765625 158.28125 C 177.765625 158.863281 177.714844 159.40625 177.605469 159.914062 C 177.496094 160.417969 177.289062 160.847656 176.976562 161.203125 C 176.664062 161.554688 176.21875 161.730469 175.640625 161.730469 Z M 175.640625 161.46875 C 176.015625 161.46875 176.296875 161.277344 176.480469 160.890625 C 176.664062 160.507812 176.78125 160.082031 176.824219 159.613281 C 176.867188 159.144531 176.886719 158.644531 176.886719 158.117188 C 176.886719 157.613281 176.867188 157.144531 176.824219 156.71875 C 176.78125 156.289062 176.667969 155.902344 176.484375 155.554688 C 176.300781 155.207031 176.019531 155.035156 175.640625 155.035156 C 175.257812 155.035156 174.972656 155.207031 174.789062 155.558594 C 174.605469 155.90625 174.492188 156.292969 174.449219 156.71875 C 174.40625 157.144531 174.386719 157.613281 174.386719 158.117188 C 174.386719 158.492188 174.394531 158.847656 174.414062 159.183594 C 174.429688 159.515625 174.476562 159.859375 174.554688 160.210938 C 174.632812 160.566406 174.761719 160.863281 174.941406 161.105469 C 175.117188 161.347656 175.351562 161.46875 175.640625 161.46875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 180.640625 161.730469 C 179.8125 161.730469 179.25 161.390625 178.953125 160.710938 C 178.65625 160.027344 178.507812 159.21875 178.507812 158.28125 C 178.507812 157.699219 178.558594 157.148438 178.664062 156.628906 C 178.769531 156.113281 178.980469 155.671875 179.300781 155.3125 C 179.617188 154.949219 180.066406 154.769531 180.640625 154.769531 C 181.085938 154.769531 181.449219 154.878906 181.730469 155.09375 C 182.015625 155.3125 182.230469 155.59375 182.378906 155.9375 C 182.527344 156.285156 182.628906 156.652344 182.683594 157.042969 C 182.738281 157.4375 182.765625 157.851562 182.765625 158.28125 C 182.765625 158.863281 182.714844 159.40625 182.605469 159.914062 C 182.496094 160.417969 182.289062 160.847656 181.976562 161.203125 C 181.664062 161.554688 181.21875 161.730469 180.640625 161.730469 Z M 180.640625 161.46875 C 181.015625 161.46875 181.296875 161.277344 181.480469 160.890625 C 181.664062 160.507812 181.78125 160.082031 181.824219 159.613281 C 181.867188 159.144531 181.886719 158.644531 181.886719 158.117188 C 181.886719 157.613281 181.867188 157.144531 181.824219 156.71875 C 181.78125 156.289062 181.667969 155.902344 181.484375 155.554688 C 181.300781 155.207031 181.019531 155.035156 180.640625 155.035156 C 180.257812 155.035156 179.972656 155.207031 179.789062 155.558594 C 179.605469 155.90625 179.492188 156.292969 179.449219 156.71875 C 179.40625 157.144531 179.386719 157.613281 179.386719 158.117188 C 179.386719 158.492188 179.394531 158.847656 179.410156 159.183594 C 179.429688 159.515625 179.476562 159.859375 179.554688 160.210938 C 179.632812 160.566406 179.761719 160.863281 179.9375 161.105469 C 180.117188 161.347656 180.351562 161.46875 180.640625 161.46875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 159.886719 129.097656 L 159.886719 128.472656 L 162.570312 128.472656 L 162.570312 129.097656 L 159.886719 129.097656 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 164.046875 130.972656 L 164.046875 130.613281 C 164.890625 130.613281 165.3125 130.507812 165.3125 130.292969 L 165.3125 124.980469 C 164.964844 125.148438 164.523438 125.234375 163.988281 125.234375 L 163.988281 124.882812 C 164.816406 124.882812 165.441406 124.664062 165.863281 124.230469 L 166.003906 124.230469 C 166.027344 124.230469 166.050781 124.242188 166.070312 124.257812 C 166.09375 124.277344 166.105469 124.296875 166.105469 124.320312 L 166.105469 130.292969 C 166.105469 130.507812 166.527344 130.613281 167.367188 130.613281 L 167.367188 130.972656 L 164.046875 130.972656 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 170.640625 131.195312 C 169.8125 131.195312 169.25 130.851562 168.953125 130.171875 C 168.65625 129.492188 168.507812 128.683594 168.507812 127.746094 C 168.507812 127.160156 168.5625 126.609375 168.664062 126.089844 C 168.769531 125.574219 168.984375 125.136719 169.300781 124.773438 C 169.621094 124.414062 170.066406 124.230469 170.640625 124.230469 C 171.085938 124.230469 171.449219 124.339844 171.734375 124.558594 C 172.015625 124.773438 172.230469 125.054688 172.378906 125.402344 C 172.527344 125.746094 172.628906 126.113281 172.683594 126.507812 C 172.738281 126.898438 172.765625 127.3125 172.765625 127.746094 C 172.765625 128.328125 172.714844 128.871094 172.605469 129.375 C 172.496094 129.882812 172.289062 130.308594 171.976562 130.664062 C 171.664062 131.015625 171.21875 131.195312 170.640625 131.195312 Z M 170.640625 130.929688 C 171.015625 130.929688 171.296875 130.738281 171.480469 130.351562 C 171.664062 129.96875 171.78125 129.542969 171.824219 129.074219 C 171.867188 128.605469 171.886719 128.109375 171.886719 127.582031 C 171.886719 127.074219 171.867188 126.605469 171.824219 126.179688 C 171.78125 125.75 171.667969 125.363281 171.484375 125.015625 C 171.300781 124.667969 171.019531 124.496094 170.640625 124.496094 C 170.257812 124.496094 169.976562 124.671875 169.789062 125.019531 C 169.605469 125.367188 169.492188 125.757812 169.449219 126.183594 C 169.40625 126.605469 169.386719 127.074219 169.386719 127.582031 C 169.386719 127.957031 169.394531 128.308594 169.414062 128.644531 C 169.429688 128.976562 169.480469 129.320312 169.554688 129.675781 C 169.636719 130.027344 169.761719 130.324219 169.941406 130.566406 C 170.117188 130.808594 170.351562 130.929688 170.640625 130.929688 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 175.640625 131.195312 C 174.8125 131.195312 174.25 130.851562 173.953125 130.171875 C 173.65625 129.492188 173.507812 128.683594 173.507812 127.746094 C 173.507812 127.160156 173.558594 126.609375 173.664062 126.089844 C 173.769531 125.574219 173.984375 125.136719 174.300781 124.773438 C 174.621094 124.414062 175.066406 124.230469 175.640625 124.230469 C 176.085938 124.230469 176.449219 124.339844 176.730469 124.558594 C 177.015625 124.773438 177.230469 125.054688 177.378906 125.402344 C 177.527344 125.746094 177.628906 126.113281 177.683594 126.507812 C 177.738281 126.898438 177.765625 127.3125 177.765625 127.746094 C 177.765625 128.328125 177.714844 128.871094 177.605469 129.375 C 177.496094 129.882812 177.289062 130.308594 176.976562 130.664062 C 176.664062 131.015625 176.21875 131.195312 175.640625 131.195312 Z M 175.640625 130.929688 C 176.015625 130.929688 176.296875 130.738281 176.480469 130.351562 C 176.664062 129.96875 176.78125 129.542969 176.824219 129.074219 C 176.867188 128.605469 176.886719 128.109375 176.886719 127.582031 C 176.886719 127.074219 176.867188 126.605469 176.824219 126.179688 C 176.78125 125.75 176.667969 125.363281 176.484375 125.015625 C 176.300781 124.667969 176.019531 124.496094 175.640625 124.496094 C 175.257812 124.496094 174.972656 124.671875 174.789062 125.019531 C 174.605469 125.367188 174.492188 125.757812 174.449219 126.183594 C 174.40625 126.605469 174.386719 127.074219 174.386719 127.582031 C 174.386719 127.957031 174.394531 128.308594 174.414062 128.644531 C 174.429688 128.976562 174.476562 129.320312 174.554688 129.675781 C 174.632812 130.027344 174.761719 130.324219 174.941406 130.566406 C 175.117188 130.808594 175.351562 130.929688 175.640625 130.929688 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 180.640625 131.195312 C 179.8125 131.195312 179.25 130.851562 178.953125 130.171875 C 178.65625 129.492188 178.507812 128.683594 178.507812 127.746094 C 178.507812 127.160156 178.558594 126.609375 178.664062 126.089844 C 178.769531 125.574219 178.980469 125.136719 179.300781 124.773438 C 179.617188 124.414062 180.066406 124.230469 180.640625 124.230469 C 181.085938 124.230469 181.449219 124.339844 181.730469 124.558594 C 182.015625 124.773438 182.230469 125.054688 182.378906 125.402344 C 182.527344 125.746094 182.628906 126.113281 182.683594 126.507812 C 182.738281 126.898438 182.765625 127.3125 182.765625 127.746094 C 182.765625 128.328125 182.714844 128.871094 182.605469 129.375 C 182.496094 129.882812 182.289062 130.308594 181.976562 130.664062 C 181.664062 131.015625 181.21875 131.195312 180.640625 131.195312 Z M 180.640625 130.929688 C 181.015625 130.929688 181.296875 130.738281 181.480469 130.351562 C 181.664062 129.96875 181.78125 129.542969 181.824219 129.074219 C 181.867188 128.605469 181.886719 128.109375 181.886719 127.582031 C 181.886719 127.074219 181.867188 126.605469 181.824219 126.179688 C 181.78125 125.75 181.667969 125.363281 181.484375 125.015625 C 181.300781 124.667969 181.019531 124.496094 180.640625 124.496094 C 180.257812 124.496094 179.972656 124.671875 179.789062 125.019531 C 179.605469 125.367188 179.492188 125.757812 179.449219 126.183594 C 179.40625 126.605469 179.386719 127.074219 179.386719 127.582031 C 179.386719 127.957031 179.394531 128.308594 179.410156 128.644531 C 179.429688 128.976562 179.476562 129.320312 179.554688 129.675781 C 179.632812 130.027344 179.761719 130.324219 179.9375 130.566406 C 180.117188 130.808594 180.351562 130.929688 180.640625 130.929688 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 180.640625 100.65625 C 179.8125 100.65625 179.25 100.316406 178.953125 99.632812 C 178.65625 98.953125 178.507812 98.144531 178.507812 97.207031 C 178.507812 96.621094 178.558594 96.070312 178.664062 95.554688 C 178.769531 95.035156 178.980469 94.597656 179.300781 94.234375 C 179.617188 93.875 180.066406 93.695312 180.640625 93.695312 C 181.085938 93.695312 181.449219 93.800781 181.730469 94.019531 C 182.015625 94.234375 182.230469 94.515625 182.378906 94.863281 C 182.527344 95.207031 182.628906 95.578125 182.683594 95.96875 C 182.738281 96.359375 182.765625 96.773438 182.765625 97.207031 C 182.765625 97.789062 182.714844 98.332031 182.605469 98.835938 C 182.496094 99.34375 182.289062 99.773438 181.976562 100.125 C 181.664062 100.480469 181.21875 100.65625 180.640625 100.65625 Z M 180.640625 100.390625 C 181.015625 100.390625 181.296875 100.199219 181.480469 99.816406 C 181.664062 99.429688 181.78125 99.003906 181.824219 98.535156 C 181.867188 98.066406 181.886719 97.570312 181.886719 97.042969 C 181.886719 96.535156 181.867188 96.066406 181.824219 95.640625 C 181.78125 95.214844 181.667969 94.824219 181.484375 94.480469 C 181.300781 94.132812 181.019531 93.957031 180.640625 93.957031 C 180.257812 93.957031 179.972656 94.132812 179.789062 94.480469 C 179.605469 94.832031 179.492188 95.21875 179.449219 95.644531 C 179.40625 96.070312 179.386719 96.535156 179.386719 97.042969 C 179.386719 97.417969 179.394531 97.773438 179.410156 98.105469 C 179.429688 98.4375 179.476562 98.78125 179.554688 99.136719 C 179.632812 99.488281 179.761719 99.785156 179.9375 100.027344 C 180.117188 100.269531 180.351562 100.390625 180.640625 100.390625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 164.046875 69.894531 L 164.046875 69.535156 C 164.890625 69.535156 165.3125 69.429688 165.3125 69.214844 L 165.3125 63.90625 C 164.964844 64.074219 164.523438 64.15625 163.988281 64.15625 L 163.988281 63.804688 C 164.816406 63.804688 165.441406 63.589844 165.863281 63.15625 L 166.003906 63.15625 C 166.027344 63.15625 166.050781 63.164062 166.070312 63.183594 C 166.09375 63.199219 166.105469 63.21875 166.105469 63.242188 L 166.105469 69.214844 C 166.105469 69.429688 166.527344 69.535156 167.367188 69.535156 L 167.367188 69.894531 L 164.046875 69.894531 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 170.640625 70.117188 C 169.8125 70.117188 169.25 69.777344 168.953125 69.09375 C 168.65625 68.414062 168.507812 67.605469 168.507812 66.667969 C 168.507812 66.082031 168.5625 65.53125 168.664062 65.015625 C 168.769531 64.496094 168.984375 64.058594 169.300781 63.699219 C 169.621094 63.335938 170.066406 63.15625 170.640625 63.15625 C 171.085938 63.15625 171.449219 63.265625 171.734375 63.480469 C 172.015625 63.699219 172.230469 63.980469 172.378906 64.324219 C 172.527344 64.671875 172.628906 65.039062 172.683594 65.429688 C 172.738281 65.824219 172.765625 66.234375 172.765625 66.667969 C 172.765625 67.25 172.714844 67.792969 172.605469 68.300781 C 172.496094 68.804688 172.289062 69.234375 171.976562 69.585938 C 171.664062 69.941406 171.21875 70.117188 170.640625 70.117188 Z M 170.640625 69.855469 C 171.015625 69.855469 171.296875 69.660156 171.480469 69.277344 C 171.664062 68.890625 171.78125 68.464844 171.824219 67.996094 C 171.867188 67.527344 171.886719 67.03125 171.886719 66.503906 C 171.886719 65.996094 171.867188 65.53125 171.824219 65.101562 C 171.78125 64.675781 171.667969 64.289062 171.484375 63.941406 C 171.300781 63.59375 171.019531 63.421875 170.640625 63.421875 C 170.257812 63.421875 169.976562 63.59375 169.789062 63.941406 C 169.605469 64.292969 169.492188 64.679688 169.449219 65.105469 C 169.40625 65.53125 169.386719 65.996094 169.386719 66.503906 C 169.386719 66.878906 169.394531 67.234375 169.414062 67.566406 C 169.429688 67.902344 169.480469 68.246094 169.554688 68.597656 C 169.636719 68.949219 169.761719 69.25 169.941406 69.492188 C 170.117188 69.734375 170.351562 69.855469 170.640625 69.855469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 175.640625 70.117188 C 174.8125 70.117188 174.25 69.777344 173.953125 69.09375 C 173.65625 68.414062 173.507812 67.605469 173.507812 66.667969 C 173.507812 66.082031 173.558594 65.53125 173.664062 65.015625 C 173.769531 64.496094 173.984375 64.058594 174.300781 63.699219 C 174.621094 63.335938 175.066406 63.15625 175.640625 63.15625 C 176.085938 63.15625 176.449219 63.265625 176.730469 63.480469 C 177.015625 63.699219 177.230469 63.980469 177.378906 64.324219 C 177.527344 64.671875 177.628906 65.039062 177.683594 65.429688 C 177.738281 65.824219 177.765625 66.234375 177.765625 66.667969 C 177.765625 67.25 177.714844 67.792969 177.605469 68.300781 C 177.496094 68.804688 177.289062 69.234375 176.976562 69.585938 C 176.664062 69.941406 176.21875 70.117188 175.640625 70.117188 Z M 175.640625 69.855469 C 176.015625 69.855469 176.296875 69.660156 176.480469 69.277344 C 176.664062 68.890625 176.78125 68.464844 176.824219 67.996094 C 176.867188 67.527344 176.886719 67.03125 176.886719 66.503906 C 176.886719 65.996094 176.867188 65.53125 176.824219 65.101562 C 176.78125 64.675781 176.667969 64.289062 176.484375 63.941406 C 176.300781 63.59375 176.019531 63.421875 175.640625 63.421875 C 175.257812 63.421875 174.972656 63.59375 174.789062 63.941406 C 174.605469 64.292969 174.492188 64.679688 174.449219 65.105469 C 174.40625 65.53125 174.386719 65.996094 174.386719 66.503906 C 174.386719 66.878906 174.394531 67.234375 174.414062 67.566406 C 174.429688 67.902344 174.476562 68.246094 174.554688 68.597656 C 174.632812 68.949219 174.761719 69.25 174.941406 69.492188 C 175.117188 69.734375 175.351562 69.855469 175.640625 69.855469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 180.640625 70.117188 C 179.8125 70.117188 179.25 69.777344 178.953125 69.09375 C 178.65625 68.414062 178.507812 67.605469 178.507812 66.667969 C 178.507812 66.082031 178.558594 65.53125 178.664062 65.015625 C 178.769531 64.496094 178.980469 64.058594 179.300781 63.699219 C 179.617188 63.335938 180.066406 63.15625 180.640625 63.15625 C 181.085938 63.15625 181.449219 63.265625 181.730469 63.480469 C 182.015625 63.699219 182.230469 63.980469 182.378906 64.324219 C 182.527344 64.671875 182.628906 65.039062 182.683594 65.429688 C 182.738281 65.824219 182.765625 66.234375 182.765625 66.667969 C 182.765625 67.25 182.714844 67.792969 182.605469 68.300781 C 182.496094 68.804688 182.289062 69.234375 181.976562 69.585938 C 181.664062 69.941406 181.21875 70.117188 180.640625 70.117188 Z M 180.640625 69.855469 C 181.015625 69.855469 181.296875 69.660156 181.480469 69.277344 C 181.664062 68.890625 181.78125 68.464844 181.824219 67.996094 C 181.867188 67.527344 181.886719 67.03125 181.886719 66.503906 C 181.886719 65.996094 181.867188 65.53125 181.824219 65.101562 C 181.78125 64.675781 181.667969 64.289062 181.484375 63.941406 C 181.300781 63.59375 181.019531 63.421875 180.640625 63.421875 C 180.257812 63.421875 179.972656 63.59375 179.789062 63.941406 C 179.605469 64.292969 179.492188 64.679688 179.449219 65.105469 C 179.40625 65.53125 179.386719 65.996094 179.386719 66.503906 C 179.386719 66.878906 179.394531 67.234375 179.410156 67.566406 C 179.429688 67.902344 179.476562 68.246094 179.554688 68.597656 C 179.632812 68.949219 179.761719 69.25 179.9375 69.492188 C 180.117188 69.734375 180.351562 69.855469 180.640625 69.855469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 163.613281 39.355469 L 163.613281 39.085938 C 163.613281 39.066406 163.621094 39.046875 163.632812 39.027344 L 165.207031 37.289062 C 165.445312 37.03125 165.636719 36.816406 165.785156 36.644531 C 165.929688 36.46875 166.078125 36.269531 166.222656 36.042969 C 166.371094 35.816406 166.484375 35.585938 166.570312 35.347656 C 166.652344 35.113281 166.695312 34.863281 166.695312 34.597656 C 166.695312 34.324219 166.644531 34.058594 166.539062 33.804688 C 166.4375 33.550781 166.285156 33.351562 166.082031 33.199219 C 165.882812 33.050781 165.636719 32.976562 165.347656 32.976562 C 165.054688 32.976562 164.789062 33.0625 164.558594 33.238281 C 164.324219 33.414062 164.160156 33.640625 164.066406 33.921875 C 164.09375 33.914062 164.128906 33.910156 164.171875 33.910156 C 164.324219 33.910156 164.453125 33.960938 164.558594 34.0625 C 164.667969 34.164062 164.722656 34.296875 164.722656 34.460938 C 164.722656 34.613281 164.667969 34.742188 164.558594 34.851562 C 164.453125 34.960938 164.324219 35.011719 164.171875 35.011719 C 164.015625 35.011719 163.882812 34.957031 163.773438 34.847656 C 163.667969 34.738281 163.613281 34.609375 163.613281 34.460938 C 163.613281 34.207031 163.660156 33.96875 163.757812 33.746094 C 163.851562 33.523438 163.992188 33.328125 164.171875 33.152344 C 164.351562 32.980469 164.554688 32.847656 164.78125 32.753906 C 165.007812 32.664062 165.246094 32.617188 165.5 32.617188 C 165.882812 32.617188 166.242188 32.699219 166.574219 32.863281 C 166.910156 33.027344 167.171875 33.257812 167.367188 33.554688 C 167.558594 33.851562 167.65625 34.199219 167.65625 34.597656 C 167.65625 34.894531 167.59375 35.171875 167.464844 35.4375 C 167.335938 35.699219 167.171875 35.9375 166.972656 36.152344 C 166.773438 36.367188 166.515625 36.613281 166.199219 36.886719 C 165.886719 37.160156 165.679688 37.34375 165.582031 37.4375 L 164.433594 38.535156 L 165.40625 38.535156 C 165.886719 38.535156 166.285156 38.53125 166.609375 38.523438 C 166.929688 38.515625 167.097656 38.503906 167.117188 38.484375 C 167.199219 38.402344 167.28125 38.09375 167.363281 37.554688 L 167.65625 37.554688 L 167.367188 39.355469 L 163.613281 39.355469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 170.640625 39.578125 C 169.8125 39.578125 169.25 39.238281 168.953125 38.558594 C 168.65625 37.875 168.507812 37.066406 168.507812 36.132812 C 168.507812 35.546875 168.5625 34.992188 168.664062 34.476562 C 168.769531 33.960938 168.984375 33.519531 169.300781 33.160156 C 169.621094 32.796875 170.066406 32.617188 170.640625 32.617188 C 171.085938 32.617188 171.449219 32.726562 171.734375 32.941406 C 172.015625 33.160156 172.230469 33.441406 172.378906 33.785156 C 172.527344 34.132812 172.628906 34.5 172.683594 34.890625 C 172.738281 35.285156 172.765625 35.695312 172.765625 36.132812 C 172.765625 36.710938 172.714844 37.253906 172.605469 37.761719 C 172.496094 38.265625 172.289062 38.695312 171.976562 39.050781 C 171.664062 39.402344 171.21875 39.578125 170.640625 39.578125 Z M 170.640625 39.316406 C 171.015625 39.316406 171.296875 39.121094 171.480469 38.738281 C 171.664062 38.355469 171.78125 37.929688 171.824219 37.460938 C 171.867188 36.992188 171.886719 36.492188 171.886719 35.964844 C 171.886719 35.460938 171.867188 34.992188 171.824219 34.5625 C 171.78125 34.136719 171.667969 33.75 171.484375 33.402344 C 171.300781 33.054688 171.019531 32.882812 170.640625 32.882812 C 170.257812 32.882812 169.976562 33.054688 169.789062 33.40625 C 169.605469 33.753906 169.492188 34.140625 169.449219 34.566406 C 169.40625 34.992188 169.386719 35.460938 169.386719 35.964844 C 169.386719 36.339844 169.394531 36.695312 169.414062 37.027344 C 169.429688 37.363281 169.480469 37.707031 169.554688 38.058594 C 169.636719 38.414062 169.761719 38.710938 169.941406 38.953125 C 170.117188 39.195312 170.351562 39.316406 170.640625 39.316406 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 175.640625 39.578125 C 174.8125 39.578125 174.25 39.238281 173.953125 38.558594 C 173.65625 37.875 173.507812 37.066406 173.507812 36.132812 C 173.507812 35.546875 173.558594 34.992188 173.664062 34.476562 C 173.769531 33.960938 173.984375 33.519531 174.300781 33.160156 C 174.621094 32.796875 175.066406 32.617188 175.640625 32.617188 C 176.085938 32.617188 176.449219 32.726562 176.730469 32.941406 C 177.015625 33.160156 177.230469 33.441406 177.378906 33.785156 C 177.527344 34.132812 177.628906 34.5 177.683594 34.890625 C 177.738281 35.285156 177.765625 35.695312 177.765625 36.132812 C 177.765625 36.710938 177.714844 37.253906 177.605469 37.761719 C 177.496094 38.265625 177.289062 38.695312 176.976562 39.050781 C 176.664062 39.402344 176.21875 39.578125 175.640625 39.578125 Z M 175.640625 39.316406 C 176.015625 39.316406 176.296875 39.121094 176.480469 38.738281 C 176.664062 38.355469 176.78125 37.929688 176.824219 37.460938 C 176.867188 36.992188 176.886719 36.492188 176.886719 35.964844 C 176.886719 35.460938 176.867188 34.992188 176.824219 34.5625 C 176.78125 34.136719 176.667969 33.75 176.484375 33.402344 C 176.300781 33.054688 176.019531 32.882812 175.640625 32.882812 C 175.257812 32.882812 174.972656 33.054688 174.789062 33.40625 C 174.605469 33.753906 174.492188 34.140625 174.449219 34.566406 C 174.40625 34.992188 174.386719 35.460938 174.386719 35.964844 C 174.386719 36.339844 174.394531 36.695312 174.414062 37.027344 C 174.429688 37.363281 174.476562 37.707031 174.554688 38.058594 C 174.632812 38.414062 174.761719 38.710938 174.941406 38.953125 C 175.117188 39.195312 175.351562 39.316406 175.640625 39.316406 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 180.640625 39.578125 C 179.8125 39.578125 179.25 39.238281 178.953125 38.558594 C 178.65625 37.875 178.507812 37.066406 178.507812 36.132812 C 178.507812 35.546875 178.558594 34.992188 178.664062 34.476562 C 178.769531 33.960938 178.980469 33.519531 179.300781 33.160156 C 179.617188 32.796875 180.066406 32.617188 180.640625 32.617188 C 181.085938 32.617188 181.449219 32.726562 181.730469 32.941406 C 182.015625 33.160156 182.230469 33.441406 182.378906 33.785156 C 182.527344 34.132812 182.628906 34.5 182.683594 34.890625 C 182.738281 35.285156 182.765625 35.695312 182.765625 36.132812 C 182.765625 36.710938 182.714844 37.253906 182.605469 37.761719 C 182.496094 38.265625 182.289062 38.695312 181.976562 39.050781 C 181.664062 39.402344 181.21875 39.578125 180.640625 39.578125 Z M 180.640625 39.316406 C 181.015625 39.316406 181.296875 39.121094 181.480469 38.738281 C 181.664062 38.355469 181.78125 37.929688 181.824219 37.460938 C 181.867188 36.992188 181.886719 36.492188 181.886719 35.964844 C 181.886719 35.460938 181.867188 34.992188 181.824219 34.5625 C 181.78125 34.136719 181.667969 33.75 181.484375 33.402344 C 181.300781 33.054688 181.019531 32.882812 180.640625 32.882812 C 180.257812 32.882812 179.972656 33.054688 179.789062 33.40625 C 179.605469 33.753906 179.492188 34.140625 179.449219 34.566406 C 179.40625 34.992188 179.386719 35.460938 179.386719 35.964844 C 179.386719 36.339844 179.394531 36.695312 179.410156 37.027344 C 179.429688 37.363281 179.476562 37.707031 179.554688 38.058594 C 179.632812 38.414062 179.761719 38.710938 179.9375 38.953125 C 180.117188 39.195312 180.351562 39.316406 180.640625 39.316406 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 164.078125 8.039062 C 164.234375 8.269531 164.445312 8.441406 164.714844 8.550781 C 164.980469 8.664062 165.265625 8.71875 165.570312 8.71875 C 165.964844 8.71875 166.242188 8.550781 166.40625 8.21875 C 166.574219 7.882812 166.65625 7.503906 166.65625 7.078125 C 166.65625 6.886719 166.636719 6.695312 166.601562 6.503906 C 166.566406 6.3125 166.507812 6.136719 166.425781 5.972656 C 166.34375 5.808594 166.230469 5.675781 166.089844 5.578125 C 165.945312 5.476562 165.773438 5.429688 165.5625 5.429688 L 164.890625 5.429688 C 164.832031 5.429688 164.804688 5.398438 164.804688 5.335938 L 164.804688 5.246094 C 164.804688 5.191406 164.832031 5.164062 164.890625 5.164062 L 165.449219 5.125 C 165.6875 5.125 165.882812 5.035156 166.039062 4.859375 C 166.195312 4.679688 166.308594 4.464844 166.382812 4.207031 C 166.453125 3.953125 166.488281 3.710938 166.488281 3.480469 C 166.488281 3.15625 166.414062 2.890625 166.265625 2.683594 C 166.113281 2.476562 165.882812 2.371094 165.570312 2.371094 C 165.3125 2.371094 165.066406 2.421875 164.835938 2.519531 C 164.601562 2.617188 164.414062 2.761719 164.277344 2.957031 C 164.289062 2.953125 164.304688 2.953125 164.3125 2.953125 C 164.324219 2.953125 164.335938 2.953125 164.347656 2.953125 C 164.496094 2.953125 164.625 3.003906 164.726562 3.109375 C 164.828125 3.214844 164.878906 3.34375 164.878906 3.488281 C 164.878906 3.636719 164.828125 3.761719 164.726562 3.863281 C 164.625 3.972656 164.496094 4.023438 164.347656 4.023438 C 164.199219 4.023438 164.070312 3.972656 163.964844 3.863281 C 163.859375 3.761719 163.808594 3.636719 163.808594 3.488281 C 163.808594 3.199219 163.894531 2.945312 164.066406 2.730469 C 164.242188 2.519531 164.464844 2.355469 164.742188 2.246094 C 165.015625 2.136719 165.292969 2.078125 165.570312 2.078125 C 165.777344 2.078125 165.992188 2.109375 166.222656 2.171875 C 166.449219 2.230469 166.652344 2.320312 166.835938 2.433594 C 167.019531 2.550781 167.171875 2.695312 167.285156 2.871094 C 167.402344 3.050781 167.464844 3.253906 167.464844 3.480469 C 167.464844 3.761719 167.398438 4.019531 167.273438 4.261719 C 167.144531 4.503906 166.972656 4.714844 166.75 4.886719 C 166.53125 5.0625 166.289062 5.191406 166.027344 5.277344 C 166.320312 5.332031 166.597656 5.441406 166.863281 5.605469 C 167.125 5.773438 167.339844 5.984375 167.496094 6.238281 C 167.65625 6.496094 167.738281 6.769531 167.738281 7.066406 C 167.738281 7.441406 167.636719 7.78125 167.429688 8.078125 C 167.226562 8.382812 166.957031 8.617188 166.625 8.785156 C 166.292969 8.957031 165.941406 9.039062 165.570312 9.039062 C 165.253906 9.039062 164.9375 8.980469 164.617188 8.859375 C 164.300781 8.738281 164.039062 8.558594 163.839844 8.316406 C 163.636719 8.078125 163.539062 7.789062 163.539062 7.453125 C 163.539062 7.285156 163.59375 7.144531 163.703125 7.035156 C 163.816406 6.925781 163.953125 6.867188 164.121094 6.867188 C 164.234375 6.867188 164.332031 6.894531 164.421875 6.945312 C 164.511719 6.996094 164.582031 7.066406 164.632812 7.15625 C 164.683594 7.25 164.710938 7.347656 164.710938 7.453125 C 164.710938 7.617188 164.652344 7.757812 164.535156 7.871094 C 164.421875 7.984375 164.285156 8.039062 164.121094 8.039062 L 164.078125 8.039062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 170.640625 9.039062 C 169.8125 9.039062 169.25 8.699219 168.953125 8.019531 C 168.65625 7.339844 168.507812 6.527344 168.507812 5.59375 C 168.507812 5.007812 168.5625 4.453125 168.664062 3.9375 C 168.769531 3.421875 168.984375 2.980469 169.300781 2.621094 C 169.621094 2.261719 170.066406 2.078125 170.640625 2.078125 C 171.085938 2.078125 171.449219 2.1875 171.734375 2.40625 C 172.015625 2.621094 172.230469 2.902344 172.378906 3.246094 C 172.527344 3.59375 172.628906 3.960938 172.683594 4.355469 C 172.738281 4.746094 172.765625 5.160156 172.765625 5.59375 C 172.765625 6.175781 172.714844 6.71875 172.605469 7.222656 C 172.496094 7.730469 172.289062 8.15625 171.976562 8.511719 C 171.664062 8.863281 171.21875 9.039062 170.640625 9.039062 Z M 170.640625 8.777344 C 171.015625 8.777344 171.296875 8.585938 171.480469 8.199219 C 171.664062 7.816406 171.78125 7.390625 171.824219 6.921875 C 171.867188 6.453125 171.886719 5.953125 171.886719 5.429688 C 171.886719 4.921875 171.867188 4.453125 171.824219 4.027344 C 171.78125 3.597656 171.667969 3.210938 171.484375 2.863281 C 171.300781 2.515625 171.019531 2.34375 170.640625 2.34375 C 170.257812 2.34375 169.976562 2.519531 169.789062 2.867188 C 169.605469 3.214844 169.492188 3.605469 169.449219 4.027344 C 169.40625 4.453125 169.386719 4.921875 169.386719 5.429688 C 169.386719 5.804688 169.394531 6.15625 169.414062 6.492188 C 169.429688 6.824219 169.480469 7.167969 169.554688 7.519531 C 169.636719 7.875 169.761719 8.171875 169.941406 8.414062 C 170.117188 8.65625 170.351562 8.777344 170.640625 8.777344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 175.640625 9.039062 C 174.8125 9.039062 174.25 8.699219 173.953125 8.019531 C 173.65625 7.339844 173.507812 6.527344 173.507812 5.59375 C 173.507812 5.007812 173.558594 4.453125 173.664062 3.9375 C 173.769531 3.421875 173.984375 2.980469 174.300781 2.621094 C 174.621094 2.261719 175.066406 2.078125 175.640625 2.078125 C 176.085938 2.078125 176.449219 2.1875 176.730469 2.40625 C 177.015625 2.621094 177.230469 2.902344 177.378906 3.246094 C 177.527344 3.59375 177.628906 3.960938 177.683594 4.355469 C 177.738281 4.746094 177.765625 5.160156 177.765625 5.59375 C 177.765625 6.175781 177.714844 6.71875 177.605469 7.222656 C 177.496094 7.730469 177.289062 8.15625 176.976562 8.511719 C 176.664062 8.863281 176.21875 9.039062 175.640625 9.039062 Z M 175.640625 8.777344 C 176.015625 8.777344 176.296875 8.585938 176.480469 8.199219 C 176.664062 7.816406 176.78125 7.390625 176.824219 6.921875 C 176.867188 6.453125 176.886719 5.953125 176.886719 5.429688 C 176.886719 4.921875 176.867188 4.453125 176.824219 4.027344 C 176.78125 3.597656 176.667969 3.210938 176.484375 2.863281 C 176.300781 2.515625 176.019531 2.34375 175.640625 2.34375 C 175.257812 2.34375 174.972656 2.519531 174.789062 2.867188 C 174.605469 3.214844 174.492188 3.605469 174.449219 4.027344 C 174.40625 4.453125 174.386719 4.921875 174.386719 5.429688 C 174.386719 5.804688 174.394531 6.15625 174.414062 6.492188 C 174.429688 6.824219 174.476562 7.167969 174.554688 7.519531 C 174.632812 7.875 174.761719 8.171875 174.941406 8.414062 C 175.117188 8.65625 175.351562 8.777344 175.640625 8.777344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 180.640625 9.039062 C 179.8125 9.039062 179.25 8.699219 178.953125 8.019531 C 178.65625 7.339844 178.507812 6.527344 178.507812 5.59375 C 178.507812 5.007812 178.558594 4.453125 178.664062 3.9375 C 178.769531 3.421875 178.980469 2.980469 179.300781 2.621094 C 179.617188 2.261719 180.066406 2.078125 180.640625 2.078125 C 181.085938 2.078125 181.449219 2.1875 181.730469 2.40625 C 182.015625 2.621094 182.230469 2.902344 182.378906 3.246094 C 182.527344 3.59375 182.628906 3.960938 182.683594 4.355469 C 182.738281 4.746094 182.765625 5.160156 182.765625 5.59375 C 182.765625 6.175781 182.714844 6.71875 182.605469 7.222656 C 182.496094 7.730469 182.289062 8.15625 181.976562 8.511719 C 181.664062 8.863281 181.21875 9.039062 180.640625 9.039062 Z M 180.640625 8.777344 C 181.015625 8.777344 181.296875 8.585938 181.480469 8.199219 C 181.664062 7.816406 181.78125 7.390625 181.824219 6.921875 C 181.867188 6.453125 181.886719 5.953125 181.886719 5.429688 C 181.886719 4.921875 181.867188 4.453125 181.824219 4.027344 C 181.78125 3.597656 181.667969 3.210938 181.484375 2.863281 C 181.300781 2.515625 181.019531 2.34375 180.640625 2.34375 C 180.257812 2.34375 179.972656 2.519531 179.789062 2.867188 C 179.605469 3.214844 179.492188 3.605469 179.449219 4.027344 C 179.40625 4.453125 179.386719 4.921875 179.386719 5.429688 C 179.386719 5.804688 179.394531 6.15625 179.410156 6.492188 C 179.429688 6.824219 179.476562 7.167969 179.554688 7.519531 C 179.632812 7.875 179.761719 8.171875 179.9375 8.414062 C 180.117188 8.65625 180.351562 8.777344 180.640625 8.777344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 152.816406 146.703125 L 152.4375 146.703125 C 152.4375 145.960938 152.320312 145.585938 152.089844 145.585938 L 146.113281 145.585938 C 145.882812 145.585938 145.769531 145.960938 145.769531 146.703125 L 145.386719 146.703125 L 145.386719 142.839844 C 145.386719 142.441406 145.46875 142.046875 145.636719 141.648438 C 145.796875 141.253906 146.035156 140.925781 146.347656 140.671875 C 146.65625 140.414062 147.019531 140.289062 147.433594 140.289062 C 147.835938 140.289062 148.1875 140.417969 148.492188 140.675781 C 148.796875 140.933594 149.03125 141.257812 149.1875 141.648438 C 149.347656 142.042969 149.425781 142.4375 149.425781 142.839844 L 149.425781 144.578125 L 152.089844 144.578125 C 152.320312 144.578125 152.4375 144.207031 152.4375 143.460938 L 152.816406 143.460938 Z M 149.101562 144.609375 L 149.101562 143.132812 C 149.101562 142.734375 149.046875 142.414062 148.929688 142.164062 C 148.816406 141.917969 148.636719 141.734375 148.394531 141.621094 C 148.152344 141.503906 147.832031 141.449219 147.433594 141.449219 C 146.84375 141.449219 146.417969 141.578125 146.160156 141.835938 C 145.898438 142.097656 145.769531 142.527344 145.769531 143.132812 L 145.769531 144.058594 C 145.769531 144.191406 145.773438 144.292969 145.785156 144.367188 C 145.796875 144.4375 145.828125 144.496094 145.878906 144.542969 C 145.929688 144.585938 146.007812 144.609375 146.113281 144.609375 L 149.101562 144.609375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 152.941406 137.175781 C 152.941406 137.609375 152.828125 138.011719 152.609375 138.386719 C 152.390625 138.757812 152.09375 139.050781 151.71875 139.265625 C 151.347656 139.480469 150.941406 139.589844 150.503906 139.589844 C 150.171875 139.589844 149.851562 139.53125 149.542969 139.414062 C 149.234375 139.296875 148.957031 139.125 148.714844 138.902344 C 148.472656 138.679688 148.285156 138.421875 148.148438 138.128906 C 148.011719 137.839844 147.941406 137.519531 147.941406 137.175781 C 147.941406 136.730469 148.0625 136.324219 148.296875 135.957031 C 148.535156 135.59375 148.847656 135.300781 149.242188 135.089844 C 149.636719 134.875 150.058594 134.769531 150.503906 134.769531 C 150.9375 134.769531 151.339844 134.878906 151.714844 135.09375 C 152.089844 135.3125 152.390625 135.605469 152.609375 135.972656 C 152.828125 136.34375 152.941406 136.742188 152.941406 137.175781 Z M 152.617188 137.175781 C 152.617188 136.59375 152.40625 136.207031 151.988281 136.015625 C 151.566406 135.820312 151.03125 135.722656 150.378906 135.722656 C 150.015625 135.722656 149.714844 135.742188 149.476562 135.78125 C 149.234375 135.820312 149.015625 135.90625 148.820312 136.035156 C 148.703125 136.117188 148.601562 136.21875 148.507812 136.34375 C 148.414062 136.46875 148.347656 136.601562 148.300781 136.742188 C 148.253906 136.882812 148.230469 137.027344 148.230469 137.175781 C 148.230469 137.402344 148.28125 137.617188 148.386719 137.820312 C 148.488281 138.023438 148.632812 138.191406 148.820312 138.328125 C 149.027344 138.460938 149.253906 138.546875 149.5 138.585938 C 149.746094 138.621094 150.039062 138.640625 150.378906 138.640625 C 150.785156 138.640625 151.152344 138.605469 151.476562 138.535156 C 151.800781 138.464844 152.070312 138.320312 152.289062 138.105469 C 152.507812 137.894531 152.617188 137.582031 152.617188 137.175781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 152.816406 134.0625 L 152.4375 134.0625 C 152.4375 133.8125 152.417969 133.609375 152.378906 133.453125 C 152.339844 133.292969 152.242188 133.214844 152.089844 133.214844 L 146.382812 133.214844 C 146.1875 133.214844 146.046875 133.242188 145.960938 133.300781 C 145.871094 133.359375 145.816406 133.445312 145.796875 133.554688 C 145.777344 133.664062 145.769531 133.832031 145.769531 134.0625 L 145.386719 134.0625 L 145.269531 132.449219 L 152.089844 132.449219 C 152.242188 132.449219 152.339844 132.367188 152.378906 132.210938 C 152.417969 132.050781 152.4375 131.851562 152.4375 131.605469 L 152.816406 131.605469 L 152.816406 134.0625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 152.941406 128.640625 C 152.941406 129.082031 152.824219 129.484375 152.59375 129.855469 C 152.359375 130.222656 152.050781 130.511719 151.664062 130.722656 C 151.277344 130.933594 150.867188 131.039062 150.433594 131.039062 C 150.007812 131.039062 149.605469 130.945312 149.222656 130.753906 C 148.84375 130.5625 148.535156 130.292969 148.296875 129.949219 C 148.0625 129.601562 147.941406 129.21875 147.941406 128.792969 C 147.941406 128.460938 147.996094 128.171875 148.109375 127.925781 C 148.222656 127.679688 148.378906 127.476562 148.574219 127.316406 C 148.773438 127.15625 149.007812 127.035156 149.277344 126.957031 C 149.542969 126.875 149.839844 126.835938 150.164062 126.835938 C 150.257812 126.835938 150.304688 126.871094 150.304688 126.949219 L 150.304688 130.089844 L 150.421875 130.089844 C 151.023438 130.089844 151.539062 129.96875 151.972656 129.726562 C 152.402344 129.484375 152.617188 129.089844 152.617188 128.539062 C 152.617188 128.316406 152.570312 128.109375 152.472656 127.921875 C 152.375 127.734375 152.234375 127.570312 152.058594 127.429688 C 151.882812 127.292969 151.691406 127.195312 151.488281 127.144531 C 151.464844 127.136719 151.441406 127.125 151.421875 127.105469 C 151.402344 127.085938 151.394531 127.066406 151.394531 127.039062 L 151.394531 126.949219 C 151.394531 126.871094 151.441406 126.835938 151.535156 126.835938 C 151.945312 126.9375 152.28125 127.15625 152.546875 127.496094 C 152.808594 127.835938 152.941406 128.21875 152.941406 128.640625 Z M 150.035156 130.078125 L 150.035156 127.601562 C 149.761719 127.601562 149.484375 127.640625 149.203125 127.71875 C 148.925781 127.792969 148.695312 127.917969 148.507812 128.097656 C 148.324219 128.273438 148.230469 128.507812 148.230469 128.792969 C 148.230469 129.203125 148.421875 129.519531 148.808594 129.742188 C 149.191406 129.96875 149.601562 130.078125 150.035156 130.078125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 152.816406 122.515625 L 152.4375 122.515625 C 152.4375 121.734375 152.320312 121.34375 152.089844 121.34375 L 146.113281 121.34375 C 145.882812 121.34375 145.769531 121.734375 145.769531 122.515625 L 145.386719 122.515625 L 145.386719 119.152344 L 145.769531 119.152344 C 145.769531 119.9375 145.882812 120.332031 146.113281 120.332031 L 152.089844 120.332031 C 152.320312 120.332031 152.4375 119.9375 152.4375 119.152344 L 152.816406 119.152344 L 152.816406 122.515625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 152.816406 118.503906 L 152.4375 118.503906 C 152.4375 118.253906 152.417969 118.050781 152.378906 117.894531 C 152.339844 117.734375 152.242188 117.65625 152.089844 117.65625 L 149.121094 117.65625 C 148.925781 117.65625 148.785156 117.683594 148.699219 117.742188 C 148.613281 117.800781 148.558594 117.886719 148.539062 117.996094 C 148.519531 118.105469 148.511719 118.273438 148.511719 118.503906 L 148.128906 118.503906 L 148.011719 116.929688 L 149.074219 116.929688 C 148.761719 116.78125 148.507812 116.5625 148.308594 116.28125 C 148.113281 115.996094 148.011719 115.683594 148.011719 115.347656 C 148.011719 114.519531 148.351562 114.027344 149.03125 113.878906 C 148.726562 113.734375 148.480469 113.523438 148.292969 113.242188 C 148.105469 112.964844 148.011719 112.660156 148.011719 112.328125 C 148.011719 112 148.066406 111.722656 148.171875 111.496094 C 148.277344 111.269531 148.4375 111.101562 148.65625 110.988281 C 148.875 110.875 149.148438 110.816406 149.476562 110.816406 L 152.089844 110.816406 C 152.242188 110.816406 152.339844 110.738281 152.378906 110.578125 C 152.417969 110.417969 152.4375 110.214844 152.4375 109.96875 L 152.816406 109.96875 L 152.816406 112.457031 L 152.4375 112.457031 C 152.4375 112.210938 152.417969 112.007812 152.378906 111.847656 C 152.339844 111.6875 152.242188 111.605469 152.089844 111.605469 L 149.507812 111.605469 C 149.144531 111.605469 148.851562 111.660156 148.628906 111.761719 C 148.40625 111.867188 148.292969 112.078125 148.292969 112.398438 C 148.292969 112.816406 148.460938 113.160156 148.796875 113.429688 C 149.132812 113.703125 149.515625 113.839844 149.945312 113.839844 L 152.089844 113.839844 C 152.242188 113.839844 152.339844 113.757812 152.378906 113.601562 C 152.417969 113.441406 152.4375 113.238281 152.4375 112.988281 L 152.816406 112.988281 L 152.816406 115.476562 L 152.4375 115.476562 C 152.4375 115.230469 152.417969 115.027344 152.378906 114.867188 C 152.339844 114.710938 152.242188 114.628906 152.089844 114.628906 L 149.507812 114.628906 C 149.15625 114.628906 148.867188 114.679688 148.636719 114.785156 C 148.410156 114.886719 148.292969 115.097656 148.292969 115.414062 C 148.292969 115.835938 148.460938 116.179688 148.796875 116.453125 C 149.132812 116.722656 149.515625 116.859375 149.945312 116.859375 L 152.089844 116.859375 C 152.242188 116.859375 152.339844 116.777344 152.378906 116.617188 C 152.417969 116.460938 152.4375 116.257812 152.4375 116.015625 L 152.816406 116.015625 L 152.816406 118.503906 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 151.75 109.234375 C 151.316406 109.234375 150.964844 109.0625 150.695312 108.726562 C 150.425781 108.386719 150.238281 107.976562 150.125 107.5 C 150.015625 107.023438 149.957031 106.570312 149.957031 106.140625 L 149.507812 106.140625 C 149.300781 106.140625 149.097656 106.1875 148.902344 106.28125 C 148.703125 106.371094 148.542969 106.503906 148.417969 106.679688 C 148.292969 106.851562 148.230469 107.042969 148.230469 107.253906 C 148.230469 107.734375 148.339844 108.101562 148.550781 108.351562 C 148.550781 108.214844 148.605469 108.101562 148.710938 108.011719 C 148.816406 107.921875 148.9375 107.875 149.074219 107.875 C 149.21875 107.875 149.34375 107.925781 149.445312 108.027344 C 149.550781 108.128906 149.601562 108.25 149.601562 108.390625 C 149.601562 108.539062 149.550781 108.664062 149.445312 108.765625 C 149.34375 108.867188 149.21875 108.917969 149.074219 108.917969 C 148.691406 108.917969 148.40625 108.746094 148.222656 108.398438 C 148.035156 108.054688 147.941406 107.671875 147.941406 107.253906 C 147.941406 106.957031 148.003906 106.660156 148.128906 106.363281 C 148.253906 106.066406 148.433594 105.824219 148.667969 105.636719 C 148.902344 105.445312 149.175781 105.351562 149.488281 105.351562 L 151.9375 105.351562 C 152.078125 105.351562 152.210938 105.320312 152.328125 105.261719 C 152.445312 105.199219 152.507812 105.109375 152.507812 104.984375 C 152.507812 104.863281 152.445312 104.773438 152.324219 104.714844 C 152.203125 104.65625 152.074219 104.625 151.9375 104.625 L 151.242188 104.625 L 151.242188 104.308594 L 151.9375 104.308594 C 152.097656 104.308594 152.253906 104.351562 152.398438 104.4375 C 152.546875 104.519531 152.660156 104.632812 152.75 104.777344 C 152.839844 104.921875 152.882812 105.078125 152.882812 105.242188 C 152.882812 105.453125 152.800781 105.640625 152.636719 105.789062 C 152.472656 105.941406 152.277344 106.027344 152.050781 106.050781 C 152.320312 106.183594 152.535156 106.378906 152.695312 106.640625 C 152.859375 106.902344 152.941406 107.183594 152.941406 107.484375 C 152.941406 107.757812 152.898438 108.027344 152.816406 108.292969 C 152.734375 108.5625 152.605469 108.785156 152.429688 108.964844 C 152.253906 109.144531 152.027344 109.234375 151.75 109.234375 Z M 151.75 108.351562 C 152.003906 108.351562 152.21875 108.257812 152.394531 108.070312 C 152.566406 107.882812 152.652344 107.660156 152.652344 107.40625 C 152.652344 107.171875 152.59375 106.960938 152.476562 106.769531 C 152.359375 106.578125 152.199219 106.425781 152 106.3125 C 151.800781 106.199219 151.585938 106.140625 151.363281 106.140625 L 150.234375 106.140625 C 150.234375 106.472656 150.285156 106.8125 150.394531 107.15625 C 150.503906 107.5 150.671875 107.785156 150.902344 108.011719 C 151.132812 108.238281 151.414062 108.351562 151.75 108.351562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 153.667969 103.867188 C 153.410156 103.867188 153.183594 103.773438 152.988281 103.585938 C 152.796875 103.398438 152.660156 103.175781 152.578125 102.917969 C 152.46875 103.0625 152.328125 103.171875 152.164062 103.25 C 151.996094 103.324219 151.820312 103.363281 151.632812 103.363281 C 151.292969 103.363281 150.992188 103.257812 150.730469 103.039062 C 150.402344 103.371094 150.03125 103.539062 149.613281 103.539062 C 149.386719 103.539062 149.171875 103.488281 148.972656 103.394531 C 148.773438 103.296875 148.601562 103.160156 148.460938 102.984375 C 148.3125 102.8125 148.203125 102.621094 148.128906 102.410156 C 148.050781 102.199219 148.011719 101.980469 148.011719 101.757812 C 148.011719 101.324219 148.136719 100.9375 148.386719 100.59375 C 148.226562 100.445312 148.105469 100.269531 148.019531 100.066406 C 147.933594 99.863281 147.890625 99.652344 147.890625 99.433594 C 147.890625 99.277344 147.945312 99.152344 148.058594 99.050781 C 148.167969 98.953125 148.300781 98.902344 148.460938 98.902344 C 148.546875 98.902344 148.625 98.9375 148.691406 99.003906 C 148.757812 99.074219 148.792969 99.148438 148.792969 99.234375 C 148.792969 99.328125 148.757812 99.410156 148.691406 99.476562 C 148.625 99.542969 148.546875 99.574219 148.460938 99.574219 C 148.324219 99.574219 148.230469 99.53125 148.175781 99.445312 C 148.175781 99.820312 148.304688 100.140625 148.5625 100.40625 C 148.695312 100.277344 148.859375 100.171875 149.046875 100.09375 C 149.238281 100.015625 149.425781 99.972656 149.613281 99.972656 C 149.917969 99.972656 150.191406 100.058594 150.4375 100.226562 C 150.683594 100.398438 150.875 100.621094 151.011719 100.898438 C 151.148438 101.175781 151.21875 101.460938 151.21875 101.757812 C 151.21875 102.152344 151.109375 102.515625 150.894531 102.84375 C 151.035156 102.949219 151.195312 103 151.371094 103 C 151.5625 103 151.730469 102.9375 151.875 102.808594 C 152.019531 102.683594 152.089844 102.523438 152.089844 102.332031 L 152.089844 101.441406 C 152.089844 101.015625 152.128906 100.625 152.207031 100.277344 C 152.285156 99.929688 152.441406 99.640625 152.675781 99.402344 C 152.90625 99.164062 153.238281 99.046875 153.667969 99.046875 C 153.988281 99.046875 154.253906 99.183594 154.460938 99.453125 C 154.671875 99.722656 154.820312 100.042969 154.914062 100.414062 C 155.007812 100.789062 155.054688 101.136719 155.054688 101.453125 C 155.054688 101.773438 155.007812 102.121094 154.914062 102.5 C 154.820312 102.878906 154.671875 103.199219 154.460938 103.464844 C 154.253906 103.734375 153.988281 103.867188 153.667969 103.867188 Z M 153.667969 103.257812 C 153.914062 103.257812 154.117188 103.160156 154.28125 102.960938 C 154.445312 102.765625 154.566406 102.527344 154.648438 102.246094 C 154.726562 101.964844 154.769531 101.699219 154.769531 101.453125 C 154.769531 101.210938 154.726562 100.945312 154.648438 100.667969 C 154.566406 100.386719 154.445312 100.152344 154.28125 99.957031 C 154.117188 99.761719 153.914062 99.664062 153.667969 99.664062 C 153.289062 99.664062 153.042969 99.835938 152.933594 100.179688 C 152.820312 100.527344 152.765625 100.945312 152.765625 101.441406 L 152.765625 102.332031 C 152.765625 102.5 152.804688 102.65625 152.886719 102.796875 C 152.964844 102.9375 153.074219 103.046875 153.21875 103.132812 C 153.359375 103.214844 153.511719 103.257812 153.667969 103.257812 Z M 150.925781 101.757812 C 150.925781 101.144531 150.488281 100.835938 149.613281 100.835938 C 149.234375 100.835938 148.921875 100.898438 148.675781 101.03125 C 148.429688 101.160156 148.304688 101.402344 148.304688 101.757812 C 148.304688 102.109375 148.429688 102.351562 148.675781 102.480469 C 148.921875 102.613281 149.234375 102.679688 149.613281 102.679688 C 149.851562 102.679688 150.066406 102.652344 150.261719 102.605469 C 150.457031 102.558594 150.617188 102.464844 150.742188 102.328125 C 150.863281 102.195312 150.925781 102.003906 150.925781 101.757812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 152.816406 98.34375 L 152.4375 98.34375 C 152.4375 98.09375 152.417969 97.890625 152.378906 97.730469 C 152.339844 97.570312 152.242188 97.492188 152.089844 97.492188 L 149.121094 97.492188 C 148.84375 97.492188 148.671875 97.546875 148.609375 97.652344 C 148.542969 97.761719 148.511719 97.976562 148.511719 98.296875 L 148.128906 98.296875 L 148.011719 96.726562 L 152.089844 96.726562 C 152.242188 96.726562 152.339844 96.65625 152.378906 96.519531 C 152.417969 96.382812 152.4375 96.199219 152.4375 95.972656 L 152.816406 95.972656 Z M 146.144531 97.878906 C 145.984375 97.878906 145.84375 97.820312 145.722656 97.699219 C 145.601562 97.578125 145.539062 97.441406 145.539062 97.289062 C 145.539062 97.183594 145.566406 97.082031 145.621094 96.988281 C 145.675781 96.890625 145.753906 96.816406 145.847656 96.765625 C 145.945312 96.710938 146.042969 96.683594 146.144531 96.683594 C 146.300781 96.683594 146.4375 96.746094 146.558594 96.867188 C 146.675781 96.988281 146.734375 97.128906 146.734375 97.289062 C 146.734375 97.441406 146.675781 97.578125 146.558594 97.699219 C 146.4375 97.820312 146.300781 97.878906 146.144531 97.878906 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 152.816406 95.300781 L 152.4375 95.300781 C 152.4375 95.050781 152.417969 94.847656 152.378906 94.6875 C 152.339844 94.53125 152.242188 94.453125 152.089844 94.453125 L 149.121094 94.453125 C 148.925781 94.453125 148.785156 94.480469 148.699219 94.539062 C 148.613281 94.597656 148.558594 94.683594 148.539062 94.789062 C 148.519531 94.902344 148.511719 95.070312 148.511719 95.300781 L 148.128906 95.300781 L 148.011719 93.726562 L 149.074219 93.726562 C 148.761719 93.578125 148.507812 93.359375 148.308594 93.074219 C 148.113281 92.789062 148.011719 92.480469 148.011719 92.144531 C 148.011719 91.644531 148.132812 91.269531 148.371094 91.015625 C 148.613281 90.761719 148.980469 90.632812 149.476562 90.632812 L 152.089844 90.632812 C 152.242188 90.632812 152.339844 90.554688 152.378906 90.398438 C 152.417969 90.238281 152.4375 90.035156 152.4375 89.785156 L 152.816406 89.785156 L 152.816406 92.273438 L 152.4375 92.273438 C 152.4375 92.027344 152.417969 91.824219 152.378906 91.664062 C 152.339844 91.503906 152.242188 91.425781 152.089844 91.425781 L 149.507812 91.425781 C 149.15625 91.425781 148.867188 91.476562 148.636719 91.578125 C 148.410156 91.683594 148.292969 91.894531 148.292969 92.210938 C 148.292969 92.632812 148.460938 92.976562 148.796875 93.246094 C 149.132812 93.519531 149.515625 93.65625 149.945312 93.65625 L 152.089844 93.65625 C 152.242188 93.65625 152.339844 93.574219 152.378906 93.414062 C 152.417969 93.253906 152.4375 93.054688 152.4375 92.8125 L 152.816406 92.8125 L 152.816406 95.300781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 151.75 89.082031 C 151.316406 89.082031 150.964844 88.914062 150.695312 88.574219 C 150.425781 88.234375 150.238281 87.828125 150.125 87.351562 C 150.015625 86.875 149.957031 86.421875 149.957031 85.992188 L 149.507812 85.992188 C 149.300781 85.992188 149.097656 86.039062 148.902344 86.128906 C 148.703125 86.222656 148.542969 86.355469 148.417969 86.527344 C 148.292969 86.699219 148.230469 86.894531 148.230469 87.105469 C 148.230469 87.585938 148.339844 87.949219 148.550781 88.199219 C 148.550781 88.0625 148.605469 87.949219 148.710938 87.859375 C 148.816406 87.769531 148.9375 87.726562 149.074219 87.726562 C 149.21875 87.726562 149.34375 87.773438 149.445312 87.878906 C 149.550781 87.980469 149.601562 88.101562 149.601562 88.238281 C 149.601562 88.386719 149.550781 88.511719 149.445312 88.613281 C 149.34375 88.714844 149.21875 88.765625 149.074219 88.765625 C 148.691406 88.765625 148.40625 88.59375 148.222656 88.25 C 148.035156 87.902344 147.941406 87.523438 147.941406 87.105469 C 147.941406 86.808594 148.003906 86.511719 148.128906 86.214844 C 148.253906 85.917969 148.433594 85.675781 148.667969 85.484375 C 148.902344 85.296875 149.175781 85.203125 149.488281 85.203125 L 151.9375 85.203125 C 152.078125 85.203125 152.210938 85.171875 152.328125 85.109375 C 152.445312 85.050781 152.507812 84.957031 152.507812 84.832031 C 152.507812 84.710938 152.445312 84.621094 152.324219 84.5625 C 152.203125 84.503906 152.074219 84.476562 151.9375 84.476562 L 151.242188 84.476562 L 151.242188 84.160156 L 151.9375 84.160156 C 152.097656 84.160156 152.253906 84.203125 152.398438 84.285156 C 152.546875 84.367188 152.660156 84.484375 152.75 84.628906 C 152.839844 84.773438 152.882812 84.925781 152.882812 85.089844 C 152.882812 85.304688 152.800781 85.488281 152.636719 85.640625 C 152.472656 85.792969 152.277344 85.878906 152.050781 85.898438 C 152.320312 86.03125 152.535156 86.226562 152.695312 86.488281 C 152.859375 86.75 152.941406 87.03125 152.941406 87.332031 C 152.941406 87.605469 152.898438 87.875 152.816406 88.144531 C 152.734375 88.410156 152.605469 88.632812 152.429688 88.8125 C 152.253906 88.992188 152.027344 89.082031 151.75 89.082031 Z M 151.75 88.199219 C 152.003906 88.199219 152.21875 88.105469 152.394531 87.917969 C 152.566406 87.730469 152.652344 87.511719 152.652344 87.257812 C 152.652344 87.023438 152.59375 86.808594 152.476562 86.617188 C 152.359375 86.425781 152.199219 86.273438 152 86.160156 C 151.800781 86.046875 151.585938 85.992188 151.363281 85.992188 L 150.234375 85.992188 C 150.234375 86.324219 150.285156 86.660156 150.394531 87.003906 C 150.503906 87.347656 150.671875 87.632812 150.902344 87.859375 C 151.132812 88.085938 151.414062 88.199219 151.75 88.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 152.816406 83.738281 L 152.4375 83.738281 C 152.4375 83.492188 152.417969 83.289062 152.378906 83.132812 C 152.339844 82.972656 152.242188 82.890625 152.089844 82.890625 L 149.121094 82.890625 C 148.925781 82.890625 148.785156 82.921875 148.699219 82.980469 C 148.613281 83.035156 148.558594 83.121094 148.539062 83.230469 C 148.519531 83.339844 148.511719 83.507812 148.511719 83.738281 L 148.128906 83.738281 L 148.011719 82.183594 L 149.074219 82.183594 C 148.757812 82.070312 148.503906 81.902344 148.304688 81.6875 C 148.109375 81.472656 148.011719 81.210938 148.011719 80.898438 C 148.011719 80.6875 148.078125 80.492188 148.203125 80.324219 C 148.328125 80.152344 148.5 80.070312 148.710938 80.070312 C 148.839844 80.070312 148.953125 80.117188 149.050781 80.210938 C 149.148438 80.304688 149.195312 80.417969 149.195312 80.554688 C 149.195312 80.691406 149.148438 80.808594 149.054688 80.902344 C 148.957031 81 148.84375 81.046875 148.710938 81.046875 C 148.515625 81.046875 148.378906 80.976562 148.292969 80.835938 L 148.292969 80.898438 C 148.292969 81.191406 148.402344 81.433594 148.613281 81.617188 C 148.828125 81.804688 149.089844 81.933594 149.402344 82.011719 C 149.71875 82.089844 150.019531 82.128906 150.304688 82.128906 L 152.089844 82.128906 C 152.320312 82.128906 152.4375 81.777344 152.4375 81.074219 L 152.816406 81.074219 L 152.816406 83.738281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 154.605469 78.964844 C 154.714844 78.828125 154.769531 78.679688 154.769531 78.511719 C 154.769531 78.054688 154.421875 77.679688 153.730469 77.390625 L 152.816406 77.023438 L 148.820312 78.648438 C 148.6875 78.71875 148.605469 78.820312 148.566406 78.957031 C 148.53125 79.097656 148.511719 79.28125 148.511719 79.511719 L 148.128906 79.511719 L 148.128906 77.226562 L 148.511719 77.226562 C 148.511719 77.625 148.597656 77.824219 148.769531 77.824219 C 148.800781 77.824219 148.820312 77.824219 148.832031 77.820312 L 151.808594 76.605469 L 149.132812 75.519531 C 149.078125 75.5 149.015625 75.488281 148.945312 75.488281 C 148.859375 75.488281 148.78125 75.511719 148.714844 75.558594 C 148.648438 75.605469 148.597656 75.667969 148.5625 75.742188 C 148.527344 75.820312 148.511719 75.90625 148.511719 76.003906 L 148.128906 76.003906 L 148.128906 74.195312 L 148.511719 74.195312 C 148.511719 74.421875 148.5625 74.617188 148.664062 74.785156 C 148.769531 74.953125 148.921875 75.082031 149.121094 75.171875 L 153.730469 77.050781 C 153.964844 77.148438 154.179688 77.265625 154.375 77.398438 C 154.570312 77.53125 154.730469 77.691406 154.859375 77.882812 C 154.984375 78.074219 155.050781 78.285156 155.050781 78.511719 C 155.050781 78.773438 154.960938 79.007812 154.785156 79.210938 C 154.609375 79.410156 154.394531 79.511719 154.136719 79.511719 C 154 79.511719 153.886719 79.464844 153.792969 79.371094 C 153.699219 79.28125 153.65625 79.167969 153.65625 79.03125 C 153.65625 78.941406 153.675781 78.859375 153.714844 78.785156 C 153.757812 78.710938 153.8125 78.652344 153.882812 78.613281 C 153.953125 78.574219 154.039062 78.558594 154.136719 78.558594 C 154.253906 78.558594 154.355469 78.59375 154.449219 78.671875 C 154.539062 78.746094 154.59375 78.847656 154.605469 78.964844 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 152.816406 69.886719 L 152.4375 69.886719 C 152.4375 69.144531 152.320312 68.769531 152.089844 68.769531 L 146.113281 68.769531 C 145.882812 68.769531 145.769531 69.144531 145.769531 69.886719 L 145.386719 69.886719 L 145.386719 66.023438 C 145.386719 65.625 145.46875 65.230469 145.636719 64.832031 C 145.796875 64.4375 146.035156 64.109375 146.347656 63.855469 C 146.65625 63.597656 147.019531 63.472656 147.433594 63.472656 C 147.835938 63.472656 148.1875 63.601562 148.492188 63.859375 C 148.796875 64.113281 149.03125 64.441406 149.1875 64.832031 C 149.347656 65.226562 149.425781 65.621094 149.425781 66.023438 L 149.425781 67.761719 L 152.089844 67.761719 C 152.320312 67.761719 152.4375 67.390625 152.4375 66.644531 L 152.816406 66.644531 Z M 149.101562 67.792969 L 149.101562 66.316406 C 149.101562 65.917969 149.046875 65.597656 148.929688 65.347656 C 148.816406 65.101562 148.636719 64.917969 148.394531 64.804688 C 148.152344 64.6875 147.832031 64.632812 147.433594 64.632812 C 146.84375 64.632812 146.417969 64.761719 146.160156 65.019531 C 145.898438 65.28125 145.769531 65.710938 145.769531 66.316406 L 145.769531 67.242188 C 145.769531 67.375 145.773438 67.476562 145.785156 67.550781 C 145.796875 67.621094 145.828125 67.679688 145.878906 67.726562 C 145.929688 67.769531 146.007812 67.792969 146.113281 67.792969 L 149.101562 67.792969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 151.75 62.644531 C 151.316406 62.644531 150.964844 62.472656 150.695312 62.132812 C 150.425781 61.796875 150.238281 61.386719 150.125 60.910156 C 150.015625 60.433594 149.957031 59.980469 149.957031 59.550781 L 149.507812 59.550781 C 149.300781 59.550781 149.097656 59.597656 148.902344 59.6875 C 148.703125 59.78125 148.542969 59.914062 148.417969 60.085938 C 148.292969 60.261719 148.230469 60.453125 148.230469 60.664062 C 148.230469 61.144531 148.339844 61.507812 148.550781 61.757812 C 148.550781 61.621094 148.605469 61.507812 148.710938 61.421875 C 148.816406 61.328125 148.9375 61.285156 149.074219 61.285156 C 149.21875 61.285156 149.34375 61.335938 149.445312 61.4375 C 149.550781 61.539062 149.601562 61.660156 149.601562 61.800781 C 149.601562 61.949219 149.550781 62.074219 149.445312 62.175781 C 149.34375 62.277344 149.21875 62.328125 149.074219 62.328125 C 148.691406 62.328125 148.40625 62.152344 148.222656 61.808594 C 148.035156 61.464844 147.941406 61.082031 147.941406 60.664062 C 147.941406 60.367188 148.003906 60.070312 148.128906 59.773438 C 148.253906 59.476562 148.433594 59.234375 148.667969 59.046875 C 148.902344 58.855469 149.175781 58.761719 149.488281 58.761719 L 151.9375 58.761719 C 152.078125 58.761719 152.210938 58.730469 152.328125 58.671875 C 152.445312 58.609375 152.507812 58.519531 152.507812 58.394531 C 152.507812 58.273438 152.445312 58.183594 152.324219 58.121094 C 152.203125 58.066406 152.074219 58.035156 151.9375 58.035156 L 151.242188 58.035156 L 151.242188 57.71875 L 151.9375 57.71875 C 152.097656 57.71875 152.253906 57.761719 152.398438 57.84375 C 152.546875 57.929688 152.660156 58.042969 152.75 58.1875 C 152.839844 58.332031 152.882812 58.484375 152.882812 58.648438 C 152.882812 58.863281 152.800781 59.046875 152.636719 59.199219 C 152.472656 59.351562 152.277344 59.4375 152.050781 59.457031 C 152.320312 59.589844 152.535156 59.789062 152.695312 60.050781 C 152.859375 60.3125 152.941406 60.59375 152.941406 60.894531 C 152.941406 61.164062 152.898438 61.4375 152.816406 61.703125 C 152.734375 61.972656 152.605469 62.195312 152.429688 62.375 C 152.253906 62.554688 152.027344 62.644531 151.75 62.644531 Z M 151.75 61.757812 C 152.003906 61.757812 152.21875 61.664062 152.394531 61.476562 C 152.566406 61.289062 152.652344 61.070312 152.652344 60.816406 C 152.652344 60.582031 152.59375 60.371094 152.476562 60.179688 C 152.359375 59.988281 152.199219 59.835938 152 59.722656 C 151.800781 59.609375 151.585938 59.550781 151.363281 59.550781 L 150.234375 59.550781 C 150.234375 59.882812 150.285156 60.222656 150.394531 60.5625 C 150.503906 60.90625 150.671875 61.191406 150.902344 61.421875 C 151.132812 61.644531 151.414062 61.757812 151.75 61.757812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 152.816406 57.300781 L 152.4375 57.300781 C 152.4375 57.054688 152.417969 56.851562 152.378906 56.691406 C 152.339844 56.53125 152.242188 56.449219 152.089844 56.449219 L 149.121094 56.449219 C 148.925781 56.449219 148.785156 56.480469 148.699219 56.539062 C 148.613281 56.597656 148.558594 56.679688 148.539062 56.789062 C 148.519531 56.898438 148.511719 57.070312 148.511719 57.300781 L 148.128906 57.300781 L 148.011719 55.742188 L 149.074219 55.742188 C 148.757812 55.628906 148.503906 55.464844 148.304688 55.246094 C 148.109375 55.03125 148.011719 54.769531 148.011719 54.460938 C 148.011719 54.246094 148.078125 54.054688 148.203125 53.882812 C 148.328125 53.714844 148.5 53.628906 148.710938 53.628906 C 148.839844 53.628906 148.953125 53.675781 149.050781 53.769531 C 149.148438 53.863281 149.195312 53.976562 149.195312 54.113281 C 149.195312 54.253906 149.148438 54.367188 149.054688 54.464844 C 148.957031 54.558594 148.84375 54.605469 148.710938 54.605469 C 148.515625 54.605469 148.378906 54.535156 148.292969 54.394531 L 148.292969 54.460938 C 148.292969 54.753906 148.402344 54.992188 148.613281 55.179688 C 148.828125 55.363281 149.089844 55.496094 149.402344 55.574219 C 149.71875 55.652344 150.019531 55.691406 150.304688 55.691406 L 152.089844 55.691406 C 152.320312 55.691406 152.4375 55.339844 152.4375 54.636719 L 152.816406 54.636719 L 152.816406 57.300781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 151.511719 52.171875 L 148.511719 52.171875 L 148.511719 53.070312 L 148.230469 53.070312 C 148.230469 52.59375 148.007812 52.246094 147.566406 52.023438 C 147.121094 51.800781 146.640625 51.6875 146.128906 51.6875 L 146.128906 51.378906 L 148.128906 51.378906 L 148.128906 49.84375 L 148.511719 49.84375 L 148.511719 51.378906 L 151.488281 51.378906 C 151.789062 51.378906 152.050781 51.328125 152.277344 51.226562 C 152.503906 51.125 152.617188 50.945312 152.617188 50.683594 C 152.617188 50.433594 152.5 50.253906 152.261719 50.144531 C 152.023438 50.035156 151.765625 49.980469 151.488281 49.980469 L 150.847656 49.980469 L 150.847656 49.671875 L 151.511719 49.671875 C 151.738281 49.671875 151.960938 49.710938 152.183594 49.792969 C 152.402344 49.875 152.585938 49.996094 152.726562 50.160156 C 152.867188 50.324219 152.941406 50.523438 152.941406 50.757812 C 152.941406 51.191406 152.8125 51.535156 152.550781 51.789062 C 152.289062 52.042969 151.945312 52.171875 151.511719 52.171875 "/>
<path style="fill:none;stroke-width:14.9932;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -1745.801105 L 1916.009084 -1733.453071 L 1927.372295 -1730.366062 L 1984.383591 -1714.931019 L 1995.746801 -1711.84401 L 2007.14906 -1708.796077 L 2052.758097 -1696.448042 L 2064.121308 -1693.361034 L 2143.937122 -1671.751973 L 2155.300332 -1668.664964 L 2189.50711 -1659.403938 L 2200.909369 -1656.356006 L 2212.27258 -1653.268997 L 2292.088394 -1631.659936 L 2303.451604 -1628.572927 L 2349.060641 -1616.224893 L 2360.423852 -1613.17696 L 2428.837407 -1594.654908 L 2440.200617 -1591.567899 L 2463.005136 -1585.393882 L 2474.407395 -1582.345949 L 2508.614173 -1573.084923 L 2519.977383 -1569.997914 L 2576.988679 -1554.562871 L 2588.351889 -1551.514938 L 2668.167704 -1529.905877 L 2679.530914 -1526.818869 L 2690.933173 -1523.73186 L 2702.335433 -1520.683927 L 2725.139951 -1514.50991 L 2736.503161 -1511.422901 L 2782.112198 -1499.074866 L 2793.514457 -1496.026934 L 2816.318976 -1489.852916 L 2827.682186 -1486.765908 L 2861.888964 -1477.504882 L 2873.291223 -1474.456949 L 2884.693482 -1471.36994 L 2896.056693 -1468.282932 L 2941.665729 -1455.934897 L 2953.067989 -1452.886964 L 2964.431199 -1449.76088 L 2975.833458 -1446.712947 L 2998.637977 -1440.53893 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:14.9932;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -714.349442 L 1916.009084 -726.697477 L 1927.372295 -729.784485 L 1984.383591 -745.219529 L 1995.746801 -748.306537 L 2052.758097 -763.741581 L 2064.121308 -766.82859 L 2075.523567 -769.876522 L 2143.937122 -788.398574 L 2155.300332 -791.485583 L 2200.909369 -803.833618 L 2212.27258 -806.920626 L 2246.479357 -816.181653 L 2257.881616 -819.229585 L 2292.088394 -828.490611 L 2303.451604 -831.57762 L 2349.060641 -843.925655 L 2360.423852 -847.012663 L 2394.630629 -856.273689 L 2406.032888 -859.321622 L 2428.837407 -865.495639 L 2440.200617 -868.582648 L 2508.614173 -887.1047 L 2519.977383 -890.152633 L 2576.988679 -905.587676 L 2588.351889 -908.674685 L 2622.558667 -917.935711 L 2633.960926 -920.983644 L 2668.167704 -930.24467 L 2679.530914 -933.331679 L 2725.139951 -945.679713 L 2736.503161 -948.727646 L 2804.916717 -967.249698 L 2816.318976 -970.297631 L 2827.682186 -973.384639 L 2884.693482 -988.819683 L 2896.056693 -991.906692 L 2907.458952 -994.954624 L 2953.067989 -1007.302659 L 2964.431199 -1010.389668 L 2975.833458 -1013.476676 L 2987.235717 -1016.524609 L 2998.637977 -1019.611618 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:14.9932;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -1745.801105 L 1916.009084 -1758.14914 L 1927.372295 -1761.236149 L 1984.383591 -1776.671192 L 1995.746801 -1779.758201 L 2052.758097 -1795.193245 L 2064.121308 -1798.280253 L 2143.937122 -1819.889314 L 2155.300332 -1822.976323 L 2200.909369 -1835.324358 L 2212.27258 -1838.411366 L 2292.088394 -1860.020427 L 2303.451604 -1863.107436 L 2349.060641 -1875.455471 L 2360.423852 -1878.542479 L 2428.837407 -1897.064531 L 2440.200617 -1900.15154 L 2508.614173 -1918.673592 L 2519.977383 -1921.760601 L 2576.988679 -1937.195644 L 2588.351889 -1940.282653 L 2633.960926 -1952.630688 L 2645.363185 -1955.756773 L 2656.765445 -1958.843781 L 2668.167704 -1961.891714 L 2679.530914 -1965.017799 L 2725.139951 -1977.365833 L 2736.503161 -1980.452842 L 2816.318976 -2002.061903 L 2827.682186 -2005.187988 L 2884.693482 -2020.623031 L 2896.056693 -2023.71004 L 2953.067989 -2039.145083 L 2964.431199 -2042.232092 L 2975.833458 -2045.319101 L 2987.235717 -2048.445185 L 2998.637977 -2051.532194 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
<path style="fill:none;stroke-width:14.9932;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1870.400047 -714.349442 L 1916.009084 -702.001407 L 1927.372295 -698.953474 L 1984.383591 -683.518431 L 1995.746801 -680.431422 L 2052.758097 -664.996379 L 2064.121308 -661.90937 L 2143.937122 -640.300309 L 2155.300332 -637.213301 L 2200.909369 -624.865266 L 2212.27258 -621.778257 L 2292.088394 -600.169196 L 2303.451604 -597.082188 L 2349.060641 -584.734153 L 2360.423852 -581.647144 L 2417.435148 -566.212101 L 2428.837407 -563.086016 L 2440.200617 -559.999007 L 2508.614173 -541.476955 L 2519.977383 -538.389946 L 2576.988679 -522.954903 L 2588.351889 -519.867894 L 2668.167704 -498.258833 L 2679.530914 -495.171825 L 2702.335433 -488.997807 L 2713.737692 -485.871722 L 2725.139951 -482.784714 L 2736.503161 -479.697705 L 2816.318976 -458.088644 L 2827.682186 -455.001636 L 2884.693482 -439.566592 L 2896.056693 -436.440507 L 2953.067989 -421.005464 L 2964.431199 -417.918455 L 2998.637977 -408.657429 " transform="matrix(0.100035,0,0,0.0999653,0,221)"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 263 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

View File

@ -1,215 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="305pt" height="221pt" viewBox="0 0 305 221" version="1.2">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 36.359375 189.648438 L 149.1875 189.648438 L 149.1875 6.421875 L 36.359375 6.421875 Z M 36.359375 189.648438 "/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -313.574263 L 363.52468 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 927.558139 -313.574263 L 927.558139 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -313.574263 L 1491.591598 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -313.574263 L 363.52468 -313.574263 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -619.022007 L 363.52468 -619.022007 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -924.430681 L 363.52468 -924.430681 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -1229.878425 L 363.52468 -1229.878425 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -1535.326168 L 363.52468 -1535.326168 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -1840.773912 L 363.52468 -1840.773912 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -2146.182586 L 363.52468 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -313.574263 L 1491.591598 -313.574263 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -2146.182586 L 1491.591598 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -313.574263 L 363.52468 -331.898002 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 927.558139 -313.574263 L 927.558139 -331.898002 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -313.574263 L 1491.591598 -331.898002 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -2146.182586 L 363.52468 -2127.858847 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 927.558139 -2146.182586 L 927.558139 -2127.858847 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -2146.182586 L 1491.591598 -2127.858847 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 36.390625 202.261719 C 35.5625 202.261719 35 201.921875 34.703125 201.238281 C 34.40625 200.558594 34.257812 199.75 34.257812 198.8125 C 34.257812 198.226562 34.3125 197.675781 34.417969 197.160156 C 34.523438 196.640625 34.734375 196.203125 35.050781 195.84375 C 35.371094 195.480469 35.816406 195.300781 36.390625 195.300781 C 36.835938 195.300781 37.199219 195.410156 37.484375 195.625 C 37.765625 195.84375 37.980469 196.121094 38.128906 196.46875 C 38.277344 196.8125 38.378906 197.183594 38.433594 197.574219 C 38.488281 197.96875 38.515625 198.378906 38.515625 198.8125 C 38.515625 199.394531 38.464844 199.9375 38.355469 200.445312 C 38.25 200.949219 38.039062 201.378906 37.726562 201.730469 C 37.414062 202.085938 36.96875 202.261719 36.390625 202.261719 Z M 36.390625 202 C 36.765625 202 37.046875 201.804688 37.230469 201.421875 C 37.417969 201.035156 37.53125 200.609375 37.574219 200.140625 C 37.617188 199.671875 37.636719 199.175781 37.636719 198.648438 C 37.636719 198.140625 37.617188 197.675781 37.574219 197.246094 C 37.53125 196.820312 37.417969 196.433594 37.234375 196.085938 C 37.050781 195.738281 36.769531 195.5625 36.390625 195.5625 C 36.007812 195.5625 35.726562 195.738281 35.542969 196.089844 C 35.359375 196.4375 35.246094 196.824219 35.203125 197.25 C 35.160156 197.675781 35.136719 198.140625 35.136719 198.648438 C 35.136719 199.023438 35.148438 199.378906 35.164062 199.710938 C 35.179688 200.046875 35.230469 200.390625 35.308594 200.742188 C 35.386719 201.09375 35.511719 201.394531 35.691406 201.636719 C 35.867188 201.878906 36.101562 202 36.390625 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 91.152344 200.886719 C 91.222656 201.085938 91.332031 201.265625 91.472656 201.425781 C 91.613281 201.589844 91.785156 201.714844 91.980469 201.804688 C 92.179688 201.894531 92.382812 201.941406 92.59375 201.941406 C 93.082031 201.941406 93.417969 201.75 93.601562 201.371094 C 93.785156 200.992188 93.878906 200.535156 93.878906 199.996094 C 93.878906 199.761719 93.871094 199.566406 93.863281 199.40625 C 93.855469 199.246094 93.835938 199.089844 93.800781 198.941406 C 93.738281 198.703125 93.628906 198.496094 93.46875 198.320312 C 93.3125 198.140625 93.121094 198.050781 92.894531 198.050781 C 92.667969 198.050781 92.472656 198.085938 92.308594 198.15625 C 92.144531 198.226562 92.011719 198.308594 91.910156 198.402344 C 91.808594 198.492188 91.71875 198.589844 91.640625 198.691406 C 91.5625 198.792969 91.511719 198.847656 91.492188 198.855469 L 91.375 198.855469 C 91.359375 198.855469 91.339844 198.84375 91.316406 198.824219 C 91.289062 198.800781 91.277344 198.78125 91.277344 198.761719 L 91.277344 195.382812 C 91.277344 195.363281 91.285156 195.34375 91.308594 195.328125 C 91.332031 195.308594 91.351562 195.300781 91.375 195.300781 L 91.40625 195.300781 C 91.863281 195.519531 92.34375 195.628906 92.851562 195.628906 C 93.355469 195.628906 93.839844 195.519531 94.304688 195.300781 L 94.332031 195.300781 C 94.355469 195.300781 94.378906 195.308594 94.398438 195.328125 C 94.417969 195.34375 94.425781 195.363281 94.425781 195.382812 L 94.425781 195.476562 C 94.425781 195.507812 94.417969 195.523438 94.402344 195.523438 C 94.171875 195.832031 93.886719 196.070312 93.535156 196.238281 C 93.191406 196.410156 92.832031 196.496094 92.460938 196.496094 C 92.191406 196.496094 91.914062 196.457031 91.628906 196.382812 L 91.628906 198.292969 C 91.855469 198.113281 92.054688 197.984375 92.230469 197.90625 C 92.40625 197.828125 92.632812 197.789062 92.90625 197.789062 C 93.277344 197.789062 93.609375 197.894531 93.902344 198.109375 C 94.199219 198.324219 94.425781 198.605469 94.582031 198.949219 C 94.742188 199.292969 94.820312 199.644531 94.820312 200 C 94.820312 200.40625 94.71875 200.78125 94.519531 201.128906 C 94.320312 201.472656 94.050781 201.75 93.710938 201.953125 C 93.367188 202.160156 92.996094 202.261719 92.59375 202.261719 C 92.261719 202.261719 91.957031 202.175781 91.675781 202.003906 C 91.398438 201.832031 91.179688 201.601562 91.019531 201.3125 C 90.859375 201.023438 90.777344 200.714844 90.777344 200.386719 C 90.777344 200.234375 90.828125 200.113281 90.929688 200.015625 C 91.027344 199.921875 91.152344 199.871094 91.300781 199.871094 C 91.449219 199.871094 91.570312 199.921875 91.671875 200.019531 C 91.769531 200.117188 91.820312 200.238281 91.820312 200.386719 C 91.820312 200.53125 91.769531 200.65625 91.671875 200.757812 C 91.570312 200.859375 91.449219 200.910156 91.300781 200.910156 C 91.277344 200.910156 91.25 200.90625 91.21875 200.902344 C 91.191406 200.894531 91.167969 200.890625 91.152344 200.886719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 145.128906 202.039062 L 145.128906 201.683594 C 145.972656 201.683594 146.390625 201.574219 146.390625 201.359375 L 146.390625 196.050781 C 146.046875 196.21875 145.601562 196.300781 145.066406 196.300781 L 145.066406 195.949219 C 145.894531 195.949219 146.519531 195.734375 146.941406 195.300781 L 147.082031 195.300781 C 147.105469 195.300781 147.128906 195.308594 147.148438 195.328125 C 147.171875 195.34375 147.183594 195.363281 147.183594 195.386719 L 147.183594 201.359375 C 147.183594 201.574219 147.605469 201.683594 148.449219 201.683594 L 148.449219 202.039062 L 145.128906 202.039062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 151.71875 202.261719 C 150.890625 202.261719 150.328125 201.921875 150.03125 201.238281 C 149.734375 200.558594 149.585938 199.75 149.585938 198.8125 C 149.585938 198.226562 149.640625 197.675781 149.742188 197.160156 C 149.851562 196.640625 150.0625 196.203125 150.378906 195.84375 C 150.699219 195.480469 151.144531 195.300781 151.71875 195.300781 C 152.164062 195.300781 152.527344 195.410156 152.808594 195.625 C 153.09375 195.84375 153.308594 196.121094 153.457031 196.46875 C 153.605469 196.8125 153.707031 197.183594 153.761719 197.574219 C 153.816406 197.96875 153.84375 198.378906 153.84375 198.8125 C 153.84375 199.394531 153.789062 199.9375 153.683594 200.445312 C 153.574219 200.949219 153.367188 201.378906 153.054688 201.730469 C 152.742188 202.085938 152.296875 202.261719 151.71875 202.261719 Z M 151.71875 202 C 152.09375 202 152.371094 201.804688 152.558594 201.421875 C 152.742188 201.035156 152.859375 200.609375 152.902344 200.140625 C 152.945312 199.671875 152.964844 199.175781 152.964844 198.648438 C 152.964844 198.140625 152.945312 197.675781 152.902344 197.246094 C 152.859375 196.820312 152.746094 196.433594 152.5625 196.085938 C 152.378906 195.738281 152.097656 195.5625 151.71875 195.5625 C 151.335938 195.5625 151.050781 195.738281 150.867188 196.089844 C 150.683594 196.4375 150.570312 196.824219 150.527344 197.25 C 150.484375 197.675781 150.464844 198.140625 150.464844 198.648438 C 150.464844 199.023438 150.472656 199.378906 150.492188 199.710938 C 150.507812 200.046875 150.554688 200.390625 150.632812 200.742188 C 150.714844 201.09375 150.839844 201.394531 151.019531 201.636719 C 151.195312 201.878906 151.429688 202 151.71875 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 27.867188 215.867188 L 27.867188 215.488281 C 28.613281 215.488281 28.984375 215.371094 28.984375 215.140625 L 28.984375 209.171875 C 28.984375 208.941406 28.613281 208.824219 27.867188 208.824219 L 27.867188 208.445312 L 31.277344 208.445312 C 31.6875 208.445312 32.113281 208.519531 32.5625 208.664062 C 33.007812 208.808594 33.382812 209.035156 33.683594 209.335938 C 33.984375 209.636719 34.132812 209.992188 34.132812 210.410156 C 34.132812 210.714844 34.042969 210.988281 33.863281 211.230469 C 33.679688 211.46875 33.445312 211.667969 33.160156 211.828125 C 32.878906 211.988281 32.585938 212.105469 32.289062 212.175781 C 32.613281 212.289062 32.898438 212.46875 33.140625 212.714844 C 33.386719 212.964844 33.53125 213.246094 33.582031 213.566406 L 33.734375 214.53125 C 33.804688 214.964844 33.878906 215.289062 33.957031 215.503906 C 34.035156 215.71875 34.207031 215.828125 34.472656 215.828125 C 34.699219 215.828125 34.871094 215.722656 34.980469 215.511719 C 35.09375 215.300781 35.148438 215.070312 35.148438 214.820312 C 35.148438 214.796875 35.160156 214.773438 35.183594 214.757812 C 35.207031 214.738281 35.230469 214.726562 35.253906 214.726562 L 35.351562 214.726562 C 35.421875 214.726562 35.457031 214.773438 35.457031 214.875 C 35.457031 215.066406 35.417969 215.261719 35.34375 215.449219 C 35.269531 215.640625 35.15625 215.796875 35.007812 215.921875 C 34.859375 216.046875 34.683594 216.109375 34.484375 216.109375 C 33.960938 216.109375 33.511719 215.980469 33.136719 215.71875 C 32.757812 215.460938 32.570312 215.078125 32.570312 214.574219 L 32.570312 213.609375 C 32.570312 213.246094 32.445312 212.933594 32.191406 212.675781 C 31.941406 212.417969 31.632812 212.292969 31.269531 212.292969 L 29.964844 212.292969 L 29.964844 215.140625 C 29.964844 215.371094 30.335938 215.488281 31.082031 215.488281 L 31.082031 215.867188 Z M 29.964844 212.011719 L 31.125 212.011719 C 31.726562 212.011719 32.183594 211.890625 32.496094 211.648438 C 32.8125 211.40625 32.96875 210.992188 32.96875 210.410156 C 32.96875 209.839844 32.8125 209.429688 32.503906 209.1875 C 32.191406 208.945312 31.734375 208.824219 31.125 208.824219 L 30.515625 208.824219 C 30.382812 208.824219 30.28125 208.832031 30.207031 208.84375 C 30.136719 208.855469 30.078125 208.886719 30.03125 208.9375 C 29.988281 208.988281 29.964844 209.066406 29.964844 209.171875 L 29.964844 212.011719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 38.316406 215.992188 C 37.882812 215.992188 37.480469 215.882812 37.105469 215.660156 C 36.734375 215.441406 36.441406 215.144531 36.222656 214.769531 C 36.011719 214.398438 35.902344 213.992188 35.902344 213.554688 C 35.902344 213.222656 35.960938 212.902344 36.078125 212.59375 C 36.195312 212.289062 36.363281 212.011719 36.589844 211.769531 C 36.808594 211.527344 37.070312 211.339844 37.359375 211.203125 C 37.652344 211.066406 37.972656 210.996094 38.316406 210.996094 C 38.761719 210.996094 39.167969 211.113281 39.535156 211.351562 C 39.902344 211.585938 40.191406 211.902344 40.402344 212.296875 C 40.617188 212.691406 40.722656 213.109375 40.722656 213.554688 C 40.722656 213.988281 40.613281 214.394531 40.398438 214.765625 C 40.179688 215.140625 39.886719 215.441406 39.519531 215.660156 C 39.152344 215.882812 38.75 215.992188 38.316406 215.992188 Z M 38.316406 215.667969 C 38.898438 215.667969 39.285156 215.460938 39.476562 215.039062 C 39.671875 214.621094 39.769531 214.085938 39.769531 213.433594 C 39.769531 213.070312 39.75 212.769531 39.710938 212.527344 C 39.671875 212.289062 39.585938 212.070312 39.457031 211.875 C 39.375 211.757812 39.273438 211.652344 39.148438 211.5625 C 39.023438 211.46875 38.890625 211.402344 38.75 211.355469 C 38.609375 211.308594 38.464844 211.285156 38.316406 211.285156 C 38.089844 211.285156 37.875 211.335938 37.671875 211.4375 C 37.46875 211.542969 37.296875 211.6875 37.160156 211.875 C 37.03125 212.082031 36.945312 212.308594 36.90625 212.554688 C 36.871094 212.800781 36.851562 213.09375 36.851562 213.433594 C 36.851562 213.839844 36.886719 214.203125 36.957031 214.527344 C 37.027344 214.851562 37.167969 215.121094 37.382812 215.339844 C 37.597656 215.558594 37.910156 215.667969 38.316406 215.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 42.203125 214.5625 L 42.203125 211.566406 L 41.300781 211.566406 L 41.300781 211.285156 C 41.777344 211.285156 42.125 211.0625 42.347656 210.621094 C 42.570312 210.175781 42.683594 209.699219 42.683594 209.183594 L 42.992188 209.183594 L 42.992188 211.183594 L 44.527344 211.183594 L 44.527344 211.566406 L 42.992188 211.566406 L 42.992188 214.539062 C 42.992188 214.839844 43.042969 215.101562 43.144531 215.328125 C 43.246094 215.554688 43.429688 215.667969 43.691406 215.667969 C 43.941406 215.667969 44.121094 215.550781 44.230469 215.3125 C 44.339844 215.074219 44.394531 214.816406 44.394531 214.539062 L 44.394531 213.902344 L 44.703125 213.902344 L 44.703125 214.5625 C 44.703125 214.789062 44.664062 215.011719 44.582031 215.234375 C 44.5 215.453125 44.375 215.636719 44.210938 215.777344 C 44.046875 215.917969 43.847656 215.992188 43.613281 215.992188 C 43.179688 215.992188 42.835938 215.863281 42.582031 215.601562 C 42.328125 215.34375 42.203125 214.996094 42.203125 214.5625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 45.804688 214.800781 C 45.804688 214.371094 45.976562 214.019531 46.316406 213.75 C 46.65625 213.480469 47.0625 213.289062 47.539062 213.175781 C 48.015625 213.066406 48.46875 213.011719 48.898438 213.011719 L 48.898438 212.5625 C 48.898438 212.355469 48.851562 212.152344 48.761719 211.953125 C 48.667969 211.757812 48.535156 211.597656 48.363281 211.472656 C 48.1875 211.347656 47.996094 211.285156 47.785156 211.285156 C 47.304688 211.285156 46.941406 211.390625 46.691406 211.605469 C 46.828125 211.605469 46.941406 211.660156 47.03125 211.765625 C 47.117188 211.871094 47.164062 211.992188 47.164062 212.128906 C 47.164062 212.269531 47.113281 212.394531 47.011719 212.5 C 46.910156 212.601562 46.789062 212.652344 46.648438 212.652344 C 46.5 212.652344 46.375 212.601562 46.273438 212.5 C 46.171875 212.394531 46.121094 212.269531 46.121094 212.128906 C 46.121094 211.746094 46.292969 211.460938 46.640625 211.273438 C 46.984375 211.089844 47.367188 210.996094 47.785156 210.996094 C 48.082031 210.996094 48.378906 211.058594 48.675781 211.183594 C 48.972656 211.308594 49.214844 211.488281 49.40625 211.722656 C 49.59375 211.957031 49.6875 212.230469 49.6875 212.542969 L 49.6875 214.988281 C 49.6875 215.128906 49.71875 215.261719 49.777344 215.378906 C 49.839844 215.5 49.933594 215.558594 50.058594 215.558594 C 50.179688 215.558594 50.269531 215.496094 50.328125 215.375 C 50.386719 215.253906 50.414062 215.125 50.414062 214.988281 L 50.414062 214.292969 L 50.730469 214.292969 L 50.730469 214.988281 C 50.730469 215.148438 50.6875 215.304688 50.605469 215.449219 C 50.519531 215.597656 50.40625 215.714844 50.261719 215.800781 C 50.117188 215.886719 49.964844 215.933594 49.800781 215.933594 C 49.585938 215.933594 49.402344 215.851562 49.25 215.6875 C 49.097656 215.523438 49.011719 215.328125 48.992188 215.101562 C 48.859375 215.371094 48.660156 215.585938 48.398438 215.75 C 48.136719 215.910156 47.855469 215.992188 47.554688 215.992188 C 47.28125 215.992188 47.011719 215.949219 46.746094 215.867188 C 46.476562 215.785156 46.253906 215.65625 46.074219 215.480469 C 45.894531 215.304688 45.804688 215.078125 45.804688 214.800781 Z M 46.691406 214.800781 C 46.691406 215.054688 46.78125 215.269531 46.96875 215.445312 C 47.15625 215.617188 47.378906 215.703125 47.632812 215.703125 C 47.867188 215.703125 48.078125 215.644531 48.269531 215.527344 C 48.460938 215.410156 48.613281 215.253906 48.726562 215.050781 C 48.839844 214.851562 48.898438 214.636719 48.898438 214.417969 L 48.898438 213.285156 C 48.566406 213.285156 48.226562 213.339844 47.882812 213.449219 C 47.539062 213.554688 47.257812 213.722656 47.03125 213.953125 C 46.800781 214.183594 46.691406 214.46875 46.691406 214.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 51.976562 214.5625 L 51.976562 211.566406 L 51.074219 211.566406 L 51.074219 211.285156 C 51.550781 211.285156 51.898438 211.0625 52.121094 210.621094 C 52.34375 210.175781 52.457031 209.699219 52.457031 209.183594 L 52.765625 209.183594 L 52.765625 211.183594 L 54.300781 211.183594 L 54.300781 211.566406 L 52.765625 211.566406 L 52.765625 214.539062 C 52.765625 214.839844 52.816406 215.101562 52.917969 215.328125 C 53.019531 215.554688 53.203125 215.667969 53.464844 215.667969 C 53.714844 215.667969 53.894531 215.550781 54.003906 215.3125 C 54.113281 215.074219 54.167969 214.816406 54.167969 214.539062 L 54.167969 213.902344 L 54.476562 213.902344 L 54.476562 214.5625 C 54.476562 214.789062 54.4375 215.011719 54.355469 215.234375 C 54.273438 215.453125 54.148438 215.636719 53.984375 215.777344 C 53.820312 215.917969 53.621094 215.992188 53.386719 215.992188 C 52.953125 215.992188 52.609375 215.863281 52.355469 215.601562 C 52.101562 215.34375 51.976562 214.996094 51.976562 214.5625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 55.480469 215.867188 L 55.480469 215.488281 C 55.730469 215.488281 55.933594 215.46875 56.089844 215.429688 C 56.25 215.390625 56.328125 215.292969 56.328125 215.140625 L 56.328125 212.175781 C 56.328125 211.898438 56.273438 211.726562 56.167969 211.660156 C 56.058594 211.597656 55.847656 211.566406 55.527344 211.566406 L 55.527344 211.183594 L 57.09375 211.066406 L 57.09375 215.140625 C 57.09375 215.292969 57.164062 215.390625 57.300781 215.429688 C 57.4375 215.46875 57.621094 215.488281 57.851562 215.488281 L 57.851562 215.867188 Z M 55.941406 209.199219 C 55.941406 209.039062 56.003906 208.898438 56.125 208.777344 C 56.246094 208.65625 56.382812 208.597656 56.535156 208.597656 C 56.640625 208.597656 56.738281 208.625 56.835938 208.679688 C 56.929688 208.734375 57.003906 208.808594 57.058594 208.902344 C 57.109375 209 57.136719 209.097656 57.136719 209.199219 C 57.136719 209.355469 57.078125 209.492188 56.957031 209.613281 C 56.835938 209.730469 56.695312 209.789062 56.535156 209.789062 C 56.382812 209.789062 56.246094 209.730469 56.125 209.613281 C 56.003906 209.492188 55.941406 209.355469 55.941406 209.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 60.917969 215.992188 C 60.484375 215.992188 60.082031 215.882812 59.707031 215.660156 C 59.335938 215.441406 59.039062 215.144531 58.828125 214.769531 C 58.613281 214.398438 58.503906 213.992188 58.503906 213.554688 C 58.503906 213.222656 58.5625 212.902344 58.679688 212.59375 C 58.796875 212.289062 58.96875 212.011719 59.191406 211.769531 C 59.410156 211.527344 59.667969 211.339844 59.960938 211.203125 C 60.253906 211.066406 60.574219 210.996094 60.917969 210.996094 C 61.363281 210.996094 61.769531 211.113281 62.136719 211.351562 C 62.503906 211.585938 62.792969 211.902344 63.003906 212.296875 C 63.21875 212.691406 63.324219 213.109375 63.324219 213.554688 C 63.324219 213.988281 63.214844 214.394531 63 214.765625 C 62.78125 215.140625 62.488281 215.441406 62.121094 215.660156 C 61.753906 215.882812 61.351562 215.992188 60.917969 215.992188 Z M 60.917969 215.667969 C 61.5 215.667969 61.886719 215.460938 62.078125 215.039062 C 62.273438 214.621094 62.371094 214.085938 62.371094 213.433594 C 62.371094 213.070312 62.351562 212.769531 62.3125 212.527344 C 62.273438 212.289062 62.1875 212.070312 62.058594 211.875 C 61.976562 211.757812 61.875 211.652344 61.75 211.5625 C 61.625 211.46875 61.492188 211.402344 61.351562 211.355469 C 61.210938 211.308594 61.066406 211.285156 60.917969 211.285156 C 60.691406 211.285156 60.476562 211.335938 60.273438 211.4375 C 60.070312 211.542969 59.902344 211.6875 59.765625 211.875 C 59.628906 212.082031 59.546875 212.308594 59.507812 212.554688 C 59.472656 212.800781 59.453125 213.09375 59.453125 213.433594 C 59.453125 213.839844 59.488281 214.203125 59.558594 214.527344 C 59.628906 214.851562 59.769531 215.121094 59.984375 215.339844 C 60.199219 215.558594 60.511719 215.667969 60.917969 215.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 64.019531 215.867188 L 64.019531 215.488281 C 64.269531 215.488281 64.472656 215.46875 64.632812 215.429688 C 64.789062 215.390625 64.867188 215.292969 64.867188 215.140625 L 64.867188 212.175781 C 64.867188 211.980469 64.839844 211.839844 64.78125 211.753906 C 64.722656 211.667969 64.636719 211.613281 64.527344 211.59375 C 64.417969 211.574219 64.25 211.566406 64.019531 211.566406 L 64.019531 211.183594 L 65.59375 211.066406 L 65.59375 212.128906 C 65.742188 211.816406 65.960938 211.558594 66.246094 211.363281 C 66.53125 211.164062 66.839844 211.066406 67.175781 211.066406 C 67.675781 211.066406 68.050781 211.1875 68.304688 211.425781 C 68.558594 211.667969 68.6875 212.035156 68.6875 212.53125 L 68.6875 215.140625 C 68.6875 215.292969 68.765625 215.390625 68.925781 215.429688 C 69.082031 215.46875 69.285156 215.488281 69.535156 215.488281 L 69.535156 215.867188 L 67.046875 215.867188 L 67.046875 215.488281 C 67.292969 215.488281 67.496094 215.46875 67.65625 215.429688 C 67.816406 215.390625 67.898438 215.292969 67.898438 215.140625 L 67.898438 212.5625 C 67.898438 212.207031 67.84375 211.917969 67.742188 211.691406 C 67.636719 211.460938 67.429688 211.347656 67.113281 211.347656 C 66.691406 211.347656 66.34375 211.515625 66.074219 211.851562 C 65.800781 212.1875 65.664062 212.570312 65.664062 213 L 65.664062 215.140625 C 65.664062 215.292969 65.746094 215.390625 65.90625 215.429688 C 66.066406 215.46875 66.265625 215.488281 66.507812 215.488281 L 66.507812 215.867188 L 64.019531 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 73.804688 215.867188 L 73.804688 215.488281 C 74.550781 215.488281 74.921875 215.371094 74.921875 215.140625 L 74.921875 209.171875 C 74.921875 208.941406 74.550781 208.824219 73.804688 208.824219 L 73.804688 208.445312 L 79.796875 208.445312 L 80.101562 210.933594 L 79.785156 210.933594 C 79.738281 210.476562 79.671875 210.117188 79.589844 209.851562 C 79.503906 209.589844 79.382812 209.382812 79.226562 209.230469 C 79.066406 209.082031 78.855469 208.976562 78.585938 208.914062 C 78.320312 208.855469 77.953125 208.824219 77.484375 208.824219 L 76.492188 208.824219 C 76.359375 208.824219 76.257812 208.832031 76.183594 208.84375 C 76.113281 208.855469 76.054688 208.886719 76.007812 208.9375 C 75.960938 208.988281 75.9375 209.066406 75.9375 209.171875 L 75.9375 211.96875 L 76.710938 211.96875 C 77.082031 211.96875 77.351562 211.9375 77.527344 211.871094 C 77.699219 211.804688 77.820312 211.683594 77.882812 211.511719 C 77.949219 211.339844 77.980469 211.066406 77.980469 210.691406 L 78.296875 210.691406 L 78.296875 213.621094 L 77.980469 213.621094 C 77.980469 213.25 77.949219 212.976562 77.882812 212.804688 C 77.820312 212.628906 77.699219 212.507812 77.527344 212.441406 C 77.351562 212.375 77.082031 212.34375 76.710938 212.34375 L 75.9375 212.34375 L 75.9375 215.140625 C 75.9375 215.371094 76.402344 215.488281 77.332031 215.488281 L 77.332031 215.867188 L 73.804688 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 80.011719 215.867188 L 80.011719 215.488281 C 80.257812 215.488281 80.460938 215.46875 80.621094 215.429688 C 80.78125 215.390625 80.863281 215.292969 80.863281 215.140625 L 80.863281 212.175781 C 80.863281 211.980469 80.832031 211.839844 80.773438 211.753906 C 80.714844 211.667969 80.632812 211.613281 80.523438 211.59375 C 80.414062 211.574219 80.242188 211.566406 80.011719 211.566406 L 80.011719 211.183594 L 81.570312 211.066406 L 81.570312 212.128906 C 81.683594 211.8125 81.847656 211.554688 82.066406 211.359375 C 82.28125 211.164062 82.546875 211.066406 82.855469 211.066406 C 83.070312 211.066406 83.261719 211.128906 83.429688 211.257812 C 83.601562 211.382812 83.683594 211.554688 83.683594 211.765625 C 83.683594 211.894531 83.640625 212.007812 83.542969 212.105469 C 83.453125 212.199219 83.335938 212.25 83.199219 212.25 C 83.0625 212.25 82.945312 212.203125 82.851562 212.105469 C 82.753906 212.011719 82.707031 211.898438 82.707031 211.765625 C 82.707031 211.570312 82.777344 211.429688 82.917969 211.347656 L 82.855469 211.347656 C 82.5625 211.347656 82.320312 211.453125 82.136719 211.667969 C 81.949219 211.878906 81.820312 212.144531 81.742188 212.457031 C 81.664062 212.773438 81.625 213.070312 81.625 213.355469 L 81.625 215.140625 C 81.625 215.371094 81.976562 215.488281 82.679688 215.488281 L 82.679688 215.867188 L 80.011719 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 86.746094 215.992188 C 86.304688 215.992188 85.898438 215.875 85.53125 215.644531 C 85.160156 215.410156 84.871094 215.101562 84.660156 214.714844 C 84.449219 214.328125 84.34375 213.917969 84.34375 213.484375 C 84.34375 213.058594 84.4375 212.65625 84.628906 212.277344 C 84.820312 211.894531 85.089844 211.585938 85.433594 211.351562 C 85.78125 211.113281 86.167969 210.996094 86.59375 210.996094 C 86.925781 210.996094 87.214844 211.050781 87.460938 211.164062 C 87.707031 211.273438 87.90625 211.429688 88.066406 211.628906 C 88.226562 211.828125 88.347656 212.0625 88.429688 212.328125 C 88.507812 212.597656 88.546875 212.890625 88.546875 213.214844 C 88.546875 213.308594 88.511719 213.355469 88.4375 213.355469 L 85.292969 213.355469 L 85.292969 213.472656 C 85.292969 214.074219 85.414062 214.589844 85.65625 215.023438 C 85.898438 215.453125 86.292969 215.667969 86.84375 215.667969 C 87.066406 215.667969 87.273438 215.621094 87.460938 215.523438 C 87.652344 215.425781 87.816406 215.289062 87.953125 215.109375 C 88.09375 214.933594 88.1875 214.742188 88.238281 214.539062 C 88.246094 214.515625 88.261719 214.492188 88.28125 214.476562 C 88.296875 214.457031 88.320312 214.445312 88.34375 214.445312 L 88.4375 214.445312 C 88.511719 214.445312 88.546875 214.492188 88.546875 214.585938 C 88.445312 214.996094 88.226562 215.332031 87.886719 215.59375 C 87.546875 215.859375 87.167969 215.992188 86.746094 215.992188 Z M 85.304688 213.085938 L 87.78125 213.085938 C 87.78125 212.8125 87.742188 212.539062 87.667969 212.257812 C 87.589844 211.980469 87.464844 211.746094 87.285156 211.5625 C 87.109375 211.375 86.878906 211.285156 86.59375 211.285156 C 86.183594 211.285156 85.863281 211.476562 85.640625 211.859375 C 85.414062 212.246094 85.304688 212.652344 85.304688 213.085938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 92.183594 217.976562 L 92.183594 217.59375 C 92.433594 217.59375 92.636719 217.574219 92.792969 217.535156 C 92.953125 217.492188 93.03125 217.398438 93.03125 217.25 L 93.03125 215.234375 C 92.863281 215.460938 92.652344 215.644531 92.394531 215.78125 C 92.136719 215.921875 91.863281 215.992188 91.578125 215.992188 C 91.253906 215.992188 90.953125 215.925781 90.671875 215.789062 C 90.394531 215.65625 90.152344 215.472656 89.945312 215.242188 C 89.738281 215.011719 89.578125 214.746094 89.460938 214.441406 C 89.347656 214.140625 89.289062 213.832031 89.289062 213.519531 C 89.289062 213.089844 89.394531 212.6875 89.605469 212.304688 C 89.816406 211.925781 90.105469 211.625 90.476562 211.402344 C 90.847656 211.179688 91.246094 211.066406 91.671875 211.066406 C 91.980469 211.066406 92.265625 211.15625 92.527344 211.328125 C 92.789062 211.5 92.996094 211.734375 93.15625 212.019531 L 93.539062 211.066406 L 93.828125 211.066406 L 93.828125 217.25 C 93.828125 217.398438 93.90625 217.492188 94.066406 217.535156 C 94.226562 217.574219 94.429688 217.59375 94.671875 217.59375 L 94.671875 217.976562 Z M 91.644531 215.703125 C 91.964844 215.703125 92.25 215.597656 92.503906 215.382812 C 92.757812 215.167969 92.945312 214.898438 93.066406 214.574219 L 93.066406 212.664062 C 92.992188 212.320312 92.839844 212.015625 92.601562 211.761719 C 92.367188 211.503906 92.089844 211.378906 91.765625 211.378906 C 91.515625 211.378906 91.292969 211.441406 91.101562 211.574219 C 90.90625 211.703125 90.746094 211.878906 90.617188 212.101562 C 90.488281 212.320312 90.394531 212.558594 90.328125 212.8125 C 90.265625 213.066406 90.230469 213.304688 90.230469 213.53125 C 90.230469 213.824219 90.285156 214.140625 90.386719 214.480469 C 90.488281 214.820312 90.648438 215.109375 90.859375 215.347656 C 91.070312 215.585938 91.332031 215.703125 91.644531 215.703125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 95.898438 214.574219 L 95.898438 212.175781 C 95.898438 211.980469 95.871094 211.839844 95.8125 211.753906 C 95.753906 211.667969 95.667969 211.613281 95.558594 211.59375 C 95.449219 211.574219 95.28125 211.566406 95.050781 211.566406 L 95.050781 211.183594 L 96.695312 211.066406 L 96.695312 214.574219 C 96.695312 214.855469 96.71875 215.074219 96.757812 215.234375 C 96.796875 215.390625 96.886719 215.507812 97.019531 215.585938 C 97.152344 215.664062 97.363281 215.703125 97.652344 215.703125 C 98.042969 215.703125 98.351562 215.542969 98.582031 215.214844 C 98.8125 214.890625 98.929688 214.519531 98.929688 214.105469 L 98.929688 212.175781 C 98.929688 211.980469 98.898438 211.839844 98.835938 211.753906 C 98.777344 211.667969 98.691406 211.613281 98.585938 211.59375 C 98.476562 211.574219 98.308594 211.566406 98.078125 211.566406 L 98.078125 211.183594 L 99.71875 211.066406 L 99.71875 214.878906 C 99.71875 215.070312 99.746094 215.210938 99.804688 215.296875 C 99.863281 215.386719 99.949219 215.4375 100.058594 215.457031 C 100.167969 215.476562 100.339844 215.488281 100.566406 215.488281 L 100.566406 215.867188 L 98.957031 215.992188 L 98.957031 215.070312 C 98.824219 215.34375 98.636719 215.566406 98.398438 215.738281 C 98.15625 215.90625 97.890625 215.992188 97.597656 215.992188 C 97.078125 215.992188 96.664062 215.882812 96.359375 215.660156 C 96.054688 215.441406 95.898438 215.078125 95.898438 214.574219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 103.542969 215.992188 C 103.101562 215.992188 102.695312 215.875 102.328125 215.644531 C 101.960938 215.410156 101.667969 215.101562 101.457031 214.714844 C 101.246094 214.328125 101.140625 213.917969 101.140625 213.484375 C 101.140625 213.058594 101.238281 212.65625 101.429688 212.277344 C 101.621094 211.894531 101.886719 211.585938 102.234375 211.351562 C 102.578125 211.113281 102.964844 210.996094 103.390625 210.996094 C 103.722656 210.996094 104.011719 211.050781 104.257812 211.164062 C 104.503906 211.273438 104.707031 211.429688 104.867188 211.628906 C 105.027344 211.828125 105.148438 212.0625 105.226562 212.328125 C 105.308594 212.597656 105.347656 212.890625 105.347656 213.214844 C 105.347656 213.308594 105.308594 213.355469 105.234375 213.355469 L 102.089844 213.355469 L 102.089844 213.472656 C 102.089844 214.074219 102.210938 214.589844 102.453125 215.023438 C 102.695312 215.453125 103.09375 215.667969 103.644531 215.667969 C 103.863281 215.667969 104.070312 215.621094 104.261719 215.523438 C 104.449219 215.425781 104.613281 215.289062 104.753906 215.109375 C 104.890625 214.933594 104.984375 214.742188 105.035156 214.539062 C 105.046875 214.515625 105.058594 214.492188 105.078125 214.476562 C 105.097656 214.457031 105.117188 214.445312 105.140625 214.445312 L 105.234375 214.445312 C 105.308594 214.445312 105.347656 214.492188 105.347656 214.585938 C 105.246094 214.996094 105.023438 215.332031 104.683594 215.59375 C 104.34375 215.859375 103.964844 215.992188 103.542969 215.992188 Z M 102.101562 213.085938 L 104.578125 213.085938 C 104.578125 212.8125 104.542969 212.539062 104.464844 212.257812 C 104.390625 211.980469 104.261719 211.746094 104.085938 211.5625 C 103.90625 211.375 103.675781 211.285156 103.390625 211.285156 C 102.980469 211.285156 102.664062 211.476562 102.4375 211.859375 C 102.214844 212.246094 102.101562 212.652344 102.101562 213.085938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 106.046875 215.867188 L 106.046875 215.488281 C 106.296875 215.488281 106.5 215.46875 106.65625 215.429688 C 106.816406 215.390625 106.894531 215.292969 106.894531 215.140625 L 106.894531 212.175781 C 106.894531 211.980469 106.867188 211.839844 106.808594 211.753906 C 106.75 211.667969 106.664062 211.613281 106.554688 211.59375 C 106.445312 211.574219 106.277344 211.566406 106.046875 211.566406 L 106.046875 211.183594 L 107.621094 211.066406 L 107.621094 212.128906 C 107.769531 211.816406 107.984375 211.558594 108.269531 211.363281 C 108.558594 211.164062 108.867188 211.066406 109.203125 211.066406 C 109.703125 211.066406 110.078125 211.1875 110.332031 211.425781 C 110.585938 211.667969 110.714844 212.035156 110.714844 212.53125 L 110.714844 215.140625 C 110.714844 215.292969 110.792969 215.390625 110.949219 215.429688 C 111.109375 215.46875 111.3125 215.488281 111.5625 215.488281 L 111.5625 215.867188 L 109.074219 215.867188 L 109.074219 215.488281 C 109.320312 215.488281 109.523438 215.46875 109.683594 215.429688 C 109.84375 215.390625 109.921875 215.292969 109.921875 215.140625 L 109.921875 212.5625 C 109.921875 212.207031 109.871094 211.917969 109.769531 211.691406 C 109.664062 211.460938 109.453125 211.347656 109.140625 211.347656 C 108.71875 211.347656 108.371094 211.515625 108.097656 211.851562 C 107.828125 212.1875 107.691406 212.570312 107.691406 213 L 107.691406 215.140625 C 107.691406 215.292969 107.773438 215.390625 107.933594 215.429688 C 108.09375 215.46875 108.292969 215.488281 108.535156 215.488281 L 108.535156 215.867188 L 106.046875 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 114.539062 215.992188 C 114.101562 215.992188 113.703125 215.875 113.347656 215.648438 C 112.988281 215.421875 112.707031 215.117188 112.503906 214.734375 C 112.296875 214.355469 112.195312 213.949219 112.195312 213.519531 C 112.195312 213.09375 112.296875 212.6875 112.5 212.292969 C 112.703125 211.902344 112.984375 211.585938 113.34375 211.351562 C 113.703125 211.113281 114.101562 210.996094 114.539062 210.996094 C 114.964844 210.996094 115.351562 211.082031 115.699219 211.246094 C 116.046875 211.410156 116.21875 211.683594 116.21875 212.0625 C 116.21875 212.203125 116.171875 212.324219 116.070312 212.429688 C 115.96875 212.535156 115.847656 212.589844 115.703125 212.589844 C 115.558594 212.589844 115.4375 212.535156 115.335938 212.429688 C 115.234375 212.324219 115.183594 212.203125 115.183594 212.0625 C 115.183594 211.9375 115.222656 211.828125 115.304688 211.734375 C 115.386719 211.640625 115.488281 211.582031 115.605469 211.554688 C 115.355469 211.394531 115.003906 211.3125 114.550781 211.3125 C 114.203125 211.3125 113.921875 211.429688 113.710938 211.660156 C 113.496094 211.890625 113.347656 212.175781 113.265625 212.511719 C 113.179688 212.851562 113.140625 213.1875 113.140625 213.519531 C 113.140625 213.871094 113.191406 214.210938 113.292969 214.539062 C 113.398438 214.867188 113.566406 215.136719 113.796875 215.351562 C 114.03125 215.5625 114.320312 215.667969 114.671875 215.667969 C 115.015625 215.667969 115.308594 215.566406 115.550781 215.355469 C 115.789062 215.148438 115.953125 214.875 116.042969 214.53125 C 116.042969 214.492188 116.070312 214.46875 116.125 214.46875 L 116.261719 214.46875 C 116.28125 214.46875 116.296875 214.480469 116.316406 214.5 C 116.335938 214.519531 116.34375 214.539062 116.34375 214.5625 L 116.34375 214.59375 C 116.234375 215.019531 116.015625 215.363281 115.6875 215.613281 C 115.363281 215.863281 114.980469 215.992188 114.539062 215.992188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 117.46875 217.652344 C 117.605469 217.761719 117.757812 217.816406 117.925781 217.816406 C 118.382812 217.816406 118.753906 217.472656 119.046875 216.78125 L 119.414062 215.867188 L 117.785156 211.875 C 117.71875 211.742188 117.617188 211.65625 117.476562 211.621094 C 117.339844 211.582031 117.152344 211.566406 116.925781 211.566406 L 116.925781 211.183594 L 119.207031 211.183594 L 119.207031 211.566406 C 118.808594 211.566406 118.609375 211.652344 118.609375 211.824219 C 118.609375 211.855469 118.613281 211.875 118.617188 211.886719 L 119.828125 214.859375 L 120.917969 212.1875 C 120.9375 212.132812 120.949219 212.070312 120.949219 212 C 120.949219 211.914062 120.925781 211.835938 120.878906 211.769531 C 120.832031 211.703125 120.769531 211.652344 120.691406 211.617188 C 120.617188 211.582031 120.53125 211.566406 120.433594 211.566406 L 120.433594 211.183594 L 122.242188 211.183594 L 122.242188 211.566406 C 122.015625 211.566406 121.820312 211.617188 121.652344 211.71875 C 121.484375 211.824219 121.355469 211.976562 121.265625 212.175781 L 119.382812 216.78125 C 119.285156 217.015625 119.171875 217.230469 119.039062 217.425781 C 118.90625 217.621094 118.742188 217.78125 118.550781 217.910156 C 118.359375 218.035156 118.152344 218.097656 117.925781 218.097656 C 117.660156 218.097656 117.425781 218.011719 117.226562 217.835938 C 117.023438 217.660156 116.925781 217.445312 116.925781 217.1875 C 116.925781 217.050781 116.96875 216.933594 117.0625 216.84375 C 117.152344 216.75 117.269531 216.707031 117.40625 216.707031 C 117.492188 216.707031 117.574219 216.726562 117.648438 216.765625 C 117.726562 216.808594 117.78125 216.863281 117.820312 216.933594 C 117.859375 217.003906 117.878906 217.085938 117.878906 217.1875 C 117.878906 217.300781 117.839844 217.40625 117.765625 217.5 C 117.6875 217.589844 117.589844 217.640625 117.46875 217.652344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 127.46875 218.585938 L 127.46875 207.71875 L 128.957031 207.71875 L 128.957031 208.152344 L 127.910156 208.152344 L 127.910156 218.152344 L 128.957031 218.152344 L 128.957031 218.585938 L 127.46875 218.585938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 129.523438 215.867188 L 129.523438 215.488281 C 129.769531 215.488281 129.972656 215.46875 130.132812 215.429688 C 130.292969 215.390625 130.371094 215.292969 130.371094 215.140625 L 130.371094 212.175781 C 130.371094 211.980469 130.34375 211.839844 130.285156 211.753906 C 130.226562 211.667969 130.140625 211.613281 130.03125 211.59375 C 129.921875 211.574219 129.753906 211.566406 129.523438 211.566406 L 129.523438 211.183594 L 131.078125 211.066406 L 131.078125 212.128906 C 131.195312 211.8125 131.359375 211.554688 131.574219 211.359375 C 131.792969 211.164062 132.054688 211.066406 132.363281 211.066406 C 132.578125 211.066406 132.769531 211.128906 132.941406 211.257812 C 133.109375 211.382812 133.195312 211.554688 133.195312 211.765625 C 133.195312 211.894531 133.148438 212.007812 133.054688 212.105469 C 132.960938 212.199219 132.847656 212.25 132.710938 212.25 C 132.570312 212.25 132.457031 212.203125 132.359375 212.105469 C 132.265625 212.011719 132.21875 211.898438 132.21875 211.765625 C 132.21875 211.570312 132.289062 211.429688 132.429688 211.347656 L 132.363281 211.347656 C 132.070312 211.347656 131.832031 211.453125 131.644531 211.667969 C 131.460938 211.878906 131.328125 212.144531 131.25 212.457031 C 131.171875 212.773438 131.132812 213.070312 131.132812 213.355469 L 131.132812 215.140625 C 131.132812 215.371094 131.484375 215.488281 132.1875 215.488281 L 132.1875 215.867188 L 129.523438 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 133.980469 214.800781 C 133.980469 214.371094 134.152344 214.019531 134.492188 213.75 C 134.832031 213.480469 135.238281 213.289062 135.714844 213.175781 C 136.191406 213.066406 136.644531 213.011719 137.074219 213.011719 L 137.074219 212.5625 C 137.074219 212.355469 137.027344 212.152344 136.9375 211.953125 C 136.84375 211.757812 136.710938 211.597656 136.539062 211.472656 C 136.363281 211.347656 136.171875 211.285156 135.960938 211.285156 C 135.480469 211.285156 135.117188 211.390625 134.867188 211.605469 C 135.003906 211.605469 135.117188 211.660156 135.207031 211.765625 C 135.296875 211.871094 135.339844 211.992188 135.339844 212.128906 C 135.339844 212.269531 135.289062 212.394531 135.1875 212.5 C 135.085938 212.601562 134.964844 212.652344 134.824219 212.652344 C 134.675781 212.652344 134.550781 212.601562 134.449219 212.5 C 134.347656 212.394531 134.296875 212.269531 134.296875 212.128906 C 134.296875 211.746094 134.472656 211.460938 134.816406 211.273438 C 135.160156 211.089844 135.542969 210.996094 135.960938 210.996094 C 136.257812 210.996094 136.554688 211.058594 136.851562 211.183594 C 137.148438 211.308594 137.390625 211.488281 137.582031 211.722656 C 137.769531 211.957031 137.863281 212.230469 137.863281 212.542969 L 137.863281 214.988281 C 137.863281 215.128906 137.894531 215.261719 137.953125 215.378906 C 138.015625 215.5 138.109375 215.558594 138.234375 215.558594 C 138.355469 215.558594 138.445312 215.496094 138.503906 215.375 C 138.5625 215.253906 138.589844 215.125 138.589844 214.988281 L 138.589844 214.292969 L 138.90625 214.292969 L 138.90625 214.988281 C 138.90625 215.148438 138.863281 215.304688 138.78125 215.449219 C 138.695312 215.597656 138.582031 215.714844 138.4375 215.800781 C 138.292969 215.886719 138.140625 215.933594 137.976562 215.933594 C 137.761719 215.933594 137.578125 215.851562 137.425781 215.6875 C 137.273438 215.523438 137.1875 215.328125 137.167969 215.101562 C 137.035156 215.371094 136.839844 215.585938 136.574219 215.75 C 136.3125 215.910156 136.03125 215.992188 135.734375 215.992188 C 135.460938 215.992188 135.1875 215.949219 134.921875 215.867188 C 134.652344 215.785156 134.429688 215.65625 134.25 215.480469 C 134.070312 215.304688 133.980469 215.078125 133.980469 214.800781 Z M 134.867188 214.800781 C 134.867188 215.054688 134.960938 215.269531 135.148438 215.445312 C 135.335938 215.617188 135.554688 215.703125 135.808594 215.703125 C 136.042969 215.703125 136.257812 215.644531 136.445312 215.527344 C 136.640625 215.410156 136.789062 215.253906 136.902344 215.050781 C 137.015625 214.851562 137.074219 214.636719 137.074219 214.417969 L 137.074219 213.285156 C 136.742188 213.285156 136.402344 213.339844 136.0625 213.449219 C 135.71875 213.554688 135.433594 213.722656 135.207031 213.953125 C 134.980469 214.183594 134.867188 214.46875 134.867188 214.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 141.699219 215.992188 C 141.269531 215.992188 140.878906 215.875 140.523438 215.644531 C 140.171875 215.410156 139.898438 215.105469 139.703125 214.726562 C 139.507812 214.347656 139.410156 213.945312 139.410156 213.519531 C 139.410156 213.082031 139.515625 212.675781 139.726562 212.300781 C 139.941406 211.921875 140.230469 211.625 140.601562 211.402344 C 140.96875 211.179688 141.375 211.066406 141.816406 211.066406 C 142.082031 211.066406 142.332031 211.125 142.570312 211.234375 C 142.804688 211.34375 143.011719 211.5 143.1875 211.699219 L 143.1875 209.441406 C 143.1875 209.246094 143.15625 209.101562 143.097656 209.015625 C 143.039062 208.925781 142.957031 208.875 142.851562 208.855469 C 142.742188 208.835938 142.574219 208.824219 142.34375 208.824219 L 142.34375 208.445312 L 143.949219 208.328125 L 143.949219 214.878906 C 143.949219 215.070312 143.976562 215.210938 144.035156 215.296875 C 144.09375 215.386719 144.179688 215.4375 144.289062 215.457031 C 144.398438 215.476562 144.566406 215.488281 144.789062 215.488281 L 144.789062 215.867188 L 143.152344 215.992188 L 143.152344 215.304688 C 142.964844 215.519531 142.742188 215.6875 142.484375 215.808594 C 142.226562 215.929688 141.964844 215.992188 141.699219 215.992188 Z M 140.59375 214.925781 C 140.714844 215.160156 140.878906 215.347656 141.085938 215.492188 C 141.289062 215.632812 141.519531 215.703125 141.765625 215.703125 C 142.0625 215.703125 142.339844 215.617188 142.59375 215.445312 C 142.84375 215.269531 143.03125 215.042969 143.152344 214.765625 L 143.152344 212.164062 C 143.070312 212.007812 142.964844 211.863281 142.835938 211.738281 C 142.707031 211.609375 142.5625 211.515625 142.398438 211.449219 C 142.238281 211.382812 142.066406 211.347656 141.886719 211.347656 C 141.507812 211.347656 141.203125 211.457031 140.972656 211.671875 C 140.742188 211.886719 140.582031 212.15625 140.488281 212.488281 C 140.398438 212.820312 140.351562 213.167969 140.351562 213.53125 C 140.351562 213.824219 140.367188 214.078125 140.394531 214.292969 C 140.425781 214.507812 140.492188 214.71875 140.59375 214.925781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 145.765625 218.367188 C 145.765625 218.34375 145.765625 218.332031 145.773438 218.328125 L 149.554688 207.851562 C 149.566406 207.808594 149.59375 207.777344 149.628906 207.753906 C 149.664062 207.730469 149.703125 207.71875 149.753906 207.71875 C 149.8125 207.71875 149.867188 207.738281 149.90625 207.777344 C 149.949219 207.816406 149.96875 207.867188 149.96875 207.933594 L 149.96875 207.976562 L 146.191406 218.449219 C 146.148438 218.539062 146.078125 218.585938 145.980469 218.585938 C 145.921875 218.585938 145.871094 218.5625 145.828125 218.519531 C 145.785156 218.476562 145.765625 218.425781 145.765625 218.367188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 151.015625 215.898438 L 151.015625 214.128906 C 151.015625 214.070312 151.046875 214.042969 151.109375 214.042969 L 151.242188 214.042969 C 151.28125 214.042969 151.308594 214.070312 151.324219 214.128906 C 151.527344 215.179688 152.015625 215.703125 152.789062 215.703125 C 153.132812 215.703125 153.421875 215.625 153.652344 215.46875 C 153.886719 215.3125 154.003906 215.074219 154.003906 214.75 C 154.003906 214.515625 153.910156 214.316406 153.730469 214.152344 C 153.546875 213.988281 153.335938 213.875 153.089844 213.8125 L 152.363281 213.671875 C 152.117188 213.617188 151.894531 213.535156 151.695312 213.425781 C 151.496094 213.316406 151.332031 213.171875 151.203125 212.992188 C 151.078125 212.808594 151.015625 212.597656 151.015625 212.355469 C 151.015625 212.035156 151.097656 211.773438 151.265625 211.570312 C 151.433594 211.367188 151.652344 211.222656 151.921875 211.132812 C 152.1875 211.042969 152.476562 210.996094 152.789062 210.996094 C 153.160156 210.996094 153.484375 211.097656 153.761719 211.296875 L 154.078125 211.027344 C 154.078125 211.007812 154.097656 210.996094 154.132812 210.996094 L 154.207031 210.996094 C 154.230469 210.996094 154.25 211.007812 154.269531 211.027344 C 154.285156 211.046875 154.296875 211.066406 154.296875 211.085938 L 154.296875 212.507812 C 154.296875 212.578125 154.265625 212.613281 154.207031 212.613281 L 154.078125 212.613281 C 154.011719 212.613281 153.980469 212.578125 153.980469 212.507812 C 153.980469 212.128906 153.871094 211.824219 153.664062 211.597656 C 153.453125 211.367188 153.15625 211.253906 152.777344 211.253906 C 152.453125 211.253906 152.171875 211.3125 151.933594 211.433594 C 151.695312 211.550781 151.578125 211.757812 151.578125 212.050781 C 151.578125 212.253906 151.664062 212.417969 151.835938 212.550781 C 152.007812 212.675781 152.207031 212.769531 152.4375 212.828125 L 153.171875 212.964844 C 153.421875 213.023438 153.652344 213.117188 153.867188 213.253906 C 154.082031 213.386719 154.253906 213.558594 154.378906 213.761719 C 154.503906 213.96875 154.5625 214.199219 154.5625 214.457031 C 154.5625 214.71875 154.519531 214.945312 154.429688 215.140625 C 154.339844 215.332031 154.214844 215.492188 154.050781 215.621094 C 153.890625 215.746094 153.699219 215.839844 153.480469 215.898438 C 153.261719 215.960938 153.03125 215.992188 152.789062 215.992188 C 152.335938 215.992188 151.949219 215.839844 151.628906 215.535156 L 151.230469 215.960938 C 151.230469 215.980469 151.214844 215.992188 151.171875 215.992188 L 151.109375 215.992188 C 151.046875 215.992188 151.015625 215.960938 151.015625 215.898438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 155.230469 218.585938 L 155.230469 218.152344 L 156.28125 218.152344 L 156.28125 208.152344 L 155.230469 208.152344 L 155.230469 207.71875 L 156.71875 207.71875 L 156.71875 218.585938 L 155.230469 218.585938 "/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -313.574263 L 363.52468 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -313.574263 L 1491.591598 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -313.574263 L 381.841513 -313.574263 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -619.022007 L 381.841513 -619.022007 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -924.430681 L 381.841513 -924.430681 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -1229.878425 L 381.841513 -1229.878425 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -1535.326168 L 381.841513 -1535.326168 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -1840.773912 L 381.841513 -1840.773912 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -2146.182586 L 381.841513 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -313.574263 L 1473.274765 -313.574263 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -619.022007 L 1473.274765 -619.022007 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -924.430681 L 1473.274765 -924.430681 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -1229.878425 L 1473.274765 -1229.878425 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -1535.326168 L 1473.274765 -1535.326168 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -1840.773912 L 1473.274765 -1840.773912 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1491.591598 -2146.182586 L 1473.274765 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 16.367188 190.171875 L 16.367188 189.546875 L 19.050781 189.546875 L 19.050781 190.171875 L 16.367188 190.171875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 22.121094 192.269531 C 21.292969 192.269531 20.730469 191.929688 20.433594 191.246094 C 20.136719 190.566406 19.988281 189.757812 19.988281 188.820312 C 19.988281 188.234375 20.039062 187.683594 20.144531 187.167969 C 20.25 186.648438 20.464844 186.210938 20.78125 185.851562 C 21.097656 185.488281 21.546875 185.308594 22.121094 185.308594 C 22.566406 185.308594 22.929688 185.417969 23.210938 185.632812 C 23.496094 185.851562 23.710938 186.132812 23.859375 186.476562 C 24.007812 186.824219 24.109375 187.191406 24.164062 187.582031 C 24.21875 187.976562 24.246094 188.386719 24.246094 188.820312 C 24.246094 189.402344 24.191406 189.945312 24.085938 190.453125 C 23.976562 190.957031 23.765625 191.386719 23.453125 191.738281 C 23.140625 192.09375 22.699219 192.269531 22.121094 192.269531 Z M 22.121094 192.007812 C 22.492188 192.007812 22.773438 191.8125 22.960938 191.429688 C 23.144531 191.042969 23.257812 190.617188 23.300781 190.148438 C 23.34375 189.679688 23.367188 189.183594 23.367188 188.65625 C 23.367188 188.148438 23.34375 187.683594 23.300781 187.253906 C 23.257812 186.828125 23.144531 186.441406 22.964844 186.09375 C 22.777344 185.746094 22.496094 185.574219 22.121094 185.574219 C 21.738281 185.574219 21.453125 185.746094 21.269531 186.097656 C 21.085938 186.445312 20.972656 186.832031 20.929688 187.257812 C 20.886719 187.683594 20.867188 188.148438 20.867188 188.65625 C 20.867188 189.03125 20.875 189.386719 20.890625 189.71875 C 20.910156 190.054688 20.957031 190.398438 21.035156 190.75 C 21.113281 191.101562 21.242188 191.402344 21.417969 191.644531 C 21.597656 191.886719 21.832031 192.007812 22.121094 192.007812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 25.4375 191.492188 C 25.4375 191.339844 25.492188 191.207031 25.605469 191.097656 C 25.71875 190.988281 25.847656 190.933594 25.992188 190.933594 C 26.085938 190.933594 26.179688 190.960938 26.269531 191.007812 C 26.359375 191.054688 26.425781 191.125 26.476562 191.214844 C 26.523438 191.304688 26.550781 191.398438 26.550781 191.492188 C 26.550781 191.640625 26.496094 191.769531 26.386719 191.878906 C 26.277344 191.992188 26.144531 192.046875 25.992188 192.046875 C 25.847656 192.046875 25.71875 191.992188 25.605469 191.878906 C 25.492188 191.769531 25.4375 191.640625 25.4375 191.492188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 27.789062 190.511719 C 27.789062 190.105469 27.921875 189.746094 28.191406 189.4375 C 28.457031 189.125 28.796875 188.863281 29.214844 188.65625 L 28.839844 188.417969 C 28.609375 188.265625 28.421875 188.0625 28.277344 187.8125 C 28.132812 187.558594 28.058594 187.292969 28.058594 187.019531 C 28.058594 186.695312 28.144531 186.402344 28.316406 186.144531 C 28.484375 185.882812 28.710938 185.679688 28.992188 185.53125 C 29.273438 185.382812 29.574219 185.308594 29.894531 185.308594 C 30.195312 185.308594 30.484375 185.371094 30.761719 185.492188 C 31.039062 185.617188 31.265625 185.789062 31.445312 186.015625 C 31.625 186.242188 31.714844 186.511719 31.714844 186.824219 C 31.714844 187.050781 31.664062 187.261719 31.558594 187.457031 C 31.453125 187.652344 31.304688 187.828125 31.117188 187.980469 C 30.929688 188.136719 30.730469 188.265625 30.519531 188.375 L 31.101562 188.746094 C 31.367188 188.921875 31.582031 189.152344 31.746094 189.433594 C 31.910156 189.714844 31.988281 190.015625 31.988281 190.324219 C 31.988281 190.691406 31.890625 191.027344 31.695312 191.328125 C 31.496094 191.628906 31.238281 191.859375 30.914062 192.023438 C 30.59375 192.1875 30.253906 192.269531 29.894531 192.269531 C 29.546875 192.269531 29.210938 192.199219 28.882812 192.054688 C 28.558594 191.914062 28.292969 191.707031 28.09375 191.441406 C 27.890625 191.171875 27.789062 190.863281 27.789062 190.511719 Z M 28.335938 190.511719 C 28.335938 190.777344 28.410156 191.023438 28.554688 191.242188 C 28.703125 191.460938 28.894531 191.636719 29.136719 191.761719 C 29.378906 191.886719 29.632812 191.949219 29.894531 191.949219 C 30.285156 191.949219 30.640625 191.832031 30.960938 191.605469 C 31.28125 191.378906 31.441406 191.074219 31.441406 190.695312 C 31.441406 190.566406 31.414062 190.4375 31.363281 190.3125 C 31.3125 190.183594 31.242188 190.070312 31.152344 189.964844 C 31.0625 189.863281 30.960938 189.777344 30.847656 189.710938 L 29.488281 188.832031 C 29.277344 188.941406 29.085938 189.082031 28.910156 189.253906 C 28.734375 189.425781 28.59375 189.621094 28.492188 189.835938 C 28.386719 190.046875 28.335938 190.273438 28.335938 190.511719 Z M 29.03125 187.421875 L 30.257812 188.210938 C 30.542969 188.046875 30.777344 187.847656 30.957031 187.613281 C 31.136719 187.382812 31.230469 187.117188 31.230469 186.824219 C 31.230469 186.597656 31.164062 186.390625 31.039062 186.203125 C 30.910156 186.011719 30.746094 185.863281 30.539062 185.757812 C 30.335938 185.652344 30.117188 185.601562 29.882812 185.601562 C 29.679688 185.601562 29.472656 185.640625 29.265625 185.71875 C 29.058594 185.796875 28.890625 185.914062 28.753906 186.074219 C 28.621094 186.230469 28.550781 186.414062 28.550781 186.625 C 28.550781 186.941406 28.714844 187.207031 29.03125 187.421875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 16.367188 159.636719 L 16.367188 159.007812 L 19.050781 159.007812 L 19.050781 159.636719 L 16.367188 159.636719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 22.121094 161.730469 C 21.292969 161.730469 20.730469 161.390625 20.433594 160.710938 C 20.136719 160.027344 19.988281 159.21875 19.988281 158.28125 C 19.988281 157.699219 20.039062 157.148438 20.144531 156.628906 C 20.25 156.113281 20.464844 155.671875 20.78125 155.3125 C 21.097656 154.949219 21.546875 154.769531 22.121094 154.769531 C 22.566406 154.769531 22.929688 154.878906 23.210938 155.09375 C 23.496094 155.3125 23.710938 155.59375 23.859375 155.9375 C 24.007812 156.285156 24.109375 156.652344 24.164062 157.042969 C 24.21875 157.4375 24.246094 157.851562 24.246094 158.28125 C 24.246094 158.863281 24.191406 159.40625 24.085938 159.914062 C 23.976562 160.417969 23.765625 160.847656 23.453125 161.203125 C 23.140625 161.554688 22.699219 161.730469 22.121094 161.730469 Z M 22.121094 161.46875 C 22.492188 161.46875 22.773438 161.277344 22.960938 160.890625 C 23.144531 160.507812 23.257812 160.082031 23.300781 159.613281 C 23.34375 159.144531 23.367188 158.644531 23.367188 158.117188 C 23.367188 157.613281 23.34375 157.144531 23.300781 156.71875 C 23.257812 156.289062 23.144531 155.902344 22.964844 155.554688 C 22.777344 155.207031 22.496094 155.035156 22.121094 155.035156 C 21.738281 155.035156 21.453125 155.207031 21.269531 155.558594 C 21.085938 155.90625 20.972656 156.292969 20.929688 156.71875 C 20.886719 157.144531 20.867188 157.613281 20.867188 158.117188 C 20.867188 158.492188 20.875 158.847656 20.890625 159.183594 C 20.910156 159.515625 20.957031 159.859375 21.035156 160.210938 C 21.113281 160.566406 21.242188 160.863281 21.417969 161.105469 C 21.597656 161.347656 21.832031 161.46875 22.121094 161.46875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 25.4375 160.953125 C 25.4375 160.800781 25.492188 160.667969 25.605469 160.558594 C 25.71875 160.453125 25.847656 160.398438 25.992188 160.398438 C 26.085938 160.398438 26.179688 160.421875 26.269531 160.46875 C 26.359375 160.519531 26.425781 160.589844 26.476562 160.675781 C 26.523438 160.769531 26.550781 160.859375 26.550781 160.953125 C 26.550781 161.101562 26.496094 161.230469 26.386719 161.34375 C 26.277344 161.453125 26.144531 161.507812 25.992188 161.507812 C 25.847656 161.507812 25.71875 161.453125 25.605469 161.34375 C 25.492188 161.230469 25.4375 161.101562 25.4375 160.953125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 29.894531 161.730469 C 29.476562 161.730469 29.125 161.621094 28.84375 161.398438 C 28.566406 161.175781 28.347656 160.886719 28.195312 160.535156 C 28.042969 160.179688 27.9375 159.808594 27.878906 159.421875 C 27.820312 159.035156 27.789062 158.636719 27.789062 158.234375 C 27.789062 157.707031 27.894531 157.171875 28.101562 156.636719 C 28.308594 156.097656 28.613281 155.652344 29.019531 155.300781 C 29.421875 154.949219 29.898438 154.769531 30.449219 154.769531 C 30.679688 154.769531 30.898438 154.816406 31.097656 154.902344 C 31.296875 154.988281 31.457031 155.117188 31.570312 155.289062 C 31.683594 155.457031 31.738281 155.660156 31.738281 155.902344 C 31.738281 156.039062 31.691406 156.15625 31.597656 156.25 C 31.503906 156.34375 31.386719 156.390625 31.246094 156.390625 C 31.113281 156.390625 31 156.34375 30.90625 156.25 C 30.8125 156.152344 30.765625 156.035156 30.765625 155.902344 C 30.765625 155.773438 30.8125 155.660156 30.90625 155.5625 C 31 155.46875 31.113281 155.421875 31.246094 155.421875 L 31.300781 155.421875 C 31.21875 155.296875 31.097656 155.203125 30.941406 155.148438 C 30.78125 155.089844 30.617188 155.0625 30.449219 155.0625 C 30.246094 155.0625 30.058594 155.105469 29.886719 155.195312 C 29.710938 155.28125 29.554688 155.402344 29.417969 155.554688 C 29.28125 155.707031 29.167969 155.875 29.074219 156.058594 C 28.980469 156.242188 28.90625 156.449219 28.855469 156.683594 C 28.804688 156.917969 28.773438 157.136719 28.761719 157.339844 C 28.746094 157.542969 28.738281 157.800781 28.738281 158.105469 C 28.859375 157.835938 29.03125 157.609375 29.246094 157.429688 C 29.464844 157.253906 29.707031 157.164062 29.980469 157.164062 C 30.28125 157.164062 30.554688 157.226562 30.804688 157.347656 C 31.050781 157.472656 31.265625 157.640625 31.441406 157.855469 C 31.621094 158.070312 31.757812 158.316406 31.851562 158.59375 C 31.945312 158.871094 31.988281 159.152344 31.988281 159.4375 C 31.988281 159.832031 31.902344 160.207031 31.722656 160.5625 C 31.546875 160.921875 31.296875 161.203125 30.980469 161.414062 C 30.660156 161.625 30.300781 161.730469 29.894531 161.730469 Z M 29.894531 161.410156 C 30.15625 161.410156 30.363281 161.351562 30.523438 161.230469 C 30.679688 161.113281 30.796875 160.953125 30.871094 160.761719 C 30.945312 160.566406 30.992188 160.367188 31.007812 160.167969 C 31.027344 159.96875 31.035156 159.726562 31.035156 159.4375 C 31.035156 159.054688 31.019531 158.726562 30.980469 158.457031 C 30.945312 158.183594 30.84375 157.945312 30.683594 157.742188 C 30.523438 157.535156 30.277344 157.433594 29.941406 157.433594 C 29.667969 157.433594 29.441406 157.527344 29.265625 157.710938 C 29.089844 157.894531 28.964844 158.125 28.882812 158.410156 C 28.804688 158.691406 28.761719 158.960938 28.761719 159.21875 C 28.761719 159.308594 28.765625 159.378906 28.769531 159.425781 C 28.769531 159.433594 28.769531 159.441406 28.769531 159.449219 C 28.769531 159.457031 28.769531 159.464844 28.761719 159.472656 C 28.761719 159.765625 28.792969 160.058594 28.851562 160.351562 C 28.910156 160.648438 29.023438 160.898438 29.191406 161.101562 C 29.359375 161.308594 29.59375 161.410156 29.894531 161.410156 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 16.367188 129.097656 L 16.367188 128.472656 L 19.050781 128.472656 L 19.050781 129.097656 L 16.367188 129.097656 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 22.121094 131.195312 C 21.292969 131.195312 20.730469 130.851562 20.433594 130.171875 C 20.136719 129.492188 19.988281 128.683594 19.988281 127.746094 C 19.988281 127.160156 20.039062 126.609375 20.144531 126.089844 C 20.25 125.574219 20.464844 125.136719 20.78125 124.773438 C 21.097656 124.414062 21.546875 124.230469 22.121094 124.230469 C 22.566406 124.230469 22.929688 124.339844 23.210938 124.558594 C 23.496094 124.773438 23.710938 125.054688 23.859375 125.402344 C 24.007812 125.746094 24.109375 126.113281 24.164062 126.507812 C 24.21875 126.898438 24.246094 127.3125 24.246094 127.746094 C 24.246094 128.328125 24.191406 128.871094 24.085938 129.375 C 23.976562 129.882812 23.765625 130.308594 23.453125 130.664062 C 23.140625 131.015625 22.699219 131.195312 22.121094 131.195312 Z M 22.121094 130.929688 C 22.492188 130.929688 22.773438 130.738281 22.960938 130.351562 C 23.144531 129.96875 23.257812 129.542969 23.300781 129.074219 C 23.34375 128.605469 23.367188 128.109375 23.367188 127.582031 C 23.367188 127.074219 23.34375 126.605469 23.300781 126.179688 C 23.257812 125.75 23.144531 125.363281 22.964844 125.015625 C 22.777344 124.667969 22.496094 124.496094 22.121094 124.496094 C 21.738281 124.496094 21.453125 124.671875 21.269531 125.019531 C 21.085938 125.367188 20.972656 125.757812 20.929688 126.183594 C 20.886719 126.605469 20.867188 127.074219 20.867188 127.582031 C 20.867188 127.957031 20.875 128.308594 20.890625 128.644531 C 20.910156 128.976562 20.957031 129.320312 21.035156 129.675781 C 21.113281 130.027344 21.242188 130.324219 21.417969 130.566406 C 21.597656 130.808594 21.832031 130.929688 22.121094 130.929688 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 25.4375 130.414062 C 25.4375 130.261719 25.492188 130.132812 25.605469 130.023438 C 25.71875 129.914062 25.847656 129.859375 25.992188 129.859375 C 26.085938 129.859375 26.179688 129.882812 26.269531 129.929688 C 26.359375 129.980469 26.425781 130.050781 26.476562 130.140625 C 26.523438 130.230469 26.550781 130.320312 26.550781 130.414062 C 26.550781 130.5625 26.496094 130.691406 26.386719 130.804688 C 26.277344 130.914062 26.144531 130.972656 25.992188 130.972656 C 25.847656 130.972656 25.71875 130.914062 25.605469 130.804688 C 25.492188 130.691406 25.4375 130.5625 25.4375 130.414062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 27.644531 129.300781 L 27.644531 128.945312 L 30.773438 124.285156 C 30.796875 124.25 30.832031 124.230469 30.878906 124.230469 L 31.023438 124.230469 C 31.101562 124.230469 31.140625 124.273438 31.140625 124.347656 L 31.140625 128.945312 L 32.132812 128.945312 L 32.132812 129.300781 L 31.140625 129.300781 L 31.140625 130.292969 C 31.140625 130.433594 31.238281 130.519531 31.4375 130.558594 C 31.632812 130.59375 31.863281 130.613281 32.125 130.613281 L 32.125 130.972656 L 29.335938 130.972656 L 29.335938 130.613281 C 29.59375 130.613281 29.824219 130.59375 30.023438 130.558594 C 30.222656 130.519531 30.320312 130.433594 30.320312 130.292969 L 30.320312 129.300781 Z M 27.976562 128.945312 L 30.378906 128.945312 L 30.378906 125.363281 Z M 27.976562 128.945312 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 16.367188 98.558594 L 16.367188 97.933594 L 19.050781 97.933594 L 19.050781 98.558594 L 16.367188 98.558594 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 22.121094 100.65625 C 21.292969 100.65625 20.730469 100.316406 20.433594 99.632812 C 20.136719 98.953125 19.988281 98.144531 19.988281 97.207031 C 19.988281 96.621094 20.039062 96.070312 20.144531 95.554688 C 20.25 95.035156 20.464844 94.597656 20.78125 94.234375 C 21.097656 93.875 21.546875 93.695312 22.121094 93.695312 C 22.566406 93.695312 22.929688 93.800781 23.210938 94.019531 C 23.496094 94.234375 23.710938 94.515625 23.859375 94.863281 C 24.007812 95.207031 24.109375 95.578125 24.164062 95.96875 C 24.21875 96.359375 24.246094 96.773438 24.246094 97.207031 C 24.246094 97.789062 24.191406 98.332031 24.085938 98.835938 C 23.976562 99.34375 23.765625 99.773438 23.453125 100.125 C 23.140625 100.480469 22.699219 100.65625 22.121094 100.65625 Z M 22.121094 100.390625 C 22.492188 100.390625 22.773438 100.199219 22.960938 99.816406 C 23.144531 99.429688 23.257812 99.003906 23.300781 98.535156 C 23.34375 98.066406 23.367188 97.570312 23.367188 97.042969 C 23.367188 96.535156 23.34375 96.066406 23.300781 95.640625 C 23.257812 95.214844 23.144531 94.824219 22.964844 94.480469 C 22.777344 94.132812 22.496094 93.957031 22.121094 93.957031 C 21.738281 93.957031 21.453125 94.132812 21.269531 94.480469 C 21.085938 94.832031 20.972656 95.21875 20.929688 95.644531 C 20.886719 96.070312 20.867188 96.535156 20.867188 97.042969 C 20.867188 97.417969 20.875 97.773438 20.890625 98.105469 C 20.910156 98.4375 20.957031 98.78125 21.035156 99.136719 C 21.113281 99.488281 21.242188 99.785156 21.417969 100.027344 C 21.597656 100.269531 21.832031 100.390625 22.121094 100.390625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 25.4375 99.878906 C 25.4375 99.722656 25.492188 99.59375 25.605469 99.484375 C 25.71875 99.375 25.847656 99.320312 25.992188 99.320312 C 26.085938 99.320312 26.179688 99.34375 26.269531 99.394531 C 26.359375 99.441406 26.425781 99.511719 26.476562 99.601562 C 26.523438 99.691406 26.550781 99.78125 26.550781 99.878906 C 26.550781 100.023438 26.496094 100.15625 26.386719 100.265625 C 26.277344 100.378906 26.144531 100.433594 25.992188 100.433594 C 25.847656 100.433594 25.71875 100.378906 25.605469 100.265625 C 25.492188 100.15625 25.4375 100.023438 25.4375 99.878906 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 27.867188 100.433594 L 27.867188 100.164062 C 27.867188 100.144531 27.871094 100.125 27.886719 100.105469 L 29.460938 98.367188 C 29.699219 98.109375 29.890625 97.894531 30.035156 97.71875 C 30.183594 97.546875 30.332031 97.34375 30.476562 97.117188 C 30.621094 96.894531 30.738281 96.660156 30.820312 96.425781 C 30.90625 96.1875 30.949219 95.9375 30.949219 95.671875 C 30.949219 95.398438 30.894531 95.136719 30.792969 94.882812 C 30.691406 94.628906 30.535156 94.425781 30.335938 94.277344 C 30.136719 94.125 29.890625 94.050781 29.601562 94.050781 C 29.308594 94.050781 29.042969 94.140625 28.808594 94.316406 C 28.578125 94.488281 28.410156 94.71875 28.320312 95 C 28.34375 94.992188 28.382812 94.988281 28.421875 94.988281 C 28.578125 94.988281 28.707031 95.039062 28.8125 95.140625 C 28.921875 95.242188 28.972656 95.375 28.972656 95.539062 C 28.972656 95.691406 28.921875 95.820312 28.8125 95.925781 C 28.707031 96.035156 28.578125 96.089844 28.421875 96.089844 C 28.269531 96.089844 28.136719 96.035156 28.027344 95.925781 C 27.921875 95.816406 27.867188 95.6875 27.867188 95.539062 C 27.867188 95.285156 27.914062 95.046875 28.011719 94.824219 C 28.105469 94.601562 28.242188 94.402344 28.421875 94.230469 C 28.601562 94.054688 28.804688 93.921875 29.03125 93.832031 C 29.257812 93.738281 29.5 93.695312 29.753906 93.695312 C 30.136719 93.695312 30.492188 93.777344 30.828125 93.941406 C 31.160156 94.105469 31.425781 94.335938 31.617188 94.632812 C 31.8125 94.925781 31.910156 95.273438 31.910156 95.671875 C 31.910156 95.96875 31.84375 96.25 31.714844 96.511719 C 31.585938 96.777344 31.421875 97.015625 31.222656 97.230469 C 31.023438 97.445312 30.769531 97.6875 30.453125 97.960938 C 30.140625 98.234375 29.933594 98.417969 29.835938 98.511719 L 28.6875 99.613281 L 29.660156 99.613281 C 30.140625 99.613281 30.539062 99.609375 30.859375 99.601562 C 31.179688 99.59375 31.351562 99.578125 31.371094 99.5625 C 31.453125 99.480469 31.535156 99.167969 31.617188 98.628906 L 31.910156 98.628906 L 31.621094 100.433594 L 27.867188 100.433594 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 29.894531 70.117188 C 29.066406 70.117188 28.503906 69.777344 28.207031 69.09375 C 27.910156 68.414062 27.761719 67.605469 27.761719 66.667969 C 27.761719 66.082031 27.816406 65.53125 27.917969 65.015625 C 28.027344 64.496094 28.238281 64.058594 28.554688 63.699219 C 28.875 63.335938 29.320312 63.15625 29.894531 63.15625 C 30.339844 63.15625 30.703125 63.265625 30.984375 63.480469 C 31.269531 63.699219 31.484375 63.980469 31.632812 64.324219 C 31.78125 64.671875 31.882812 65.039062 31.9375 65.429688 C 31.992188 65.824219 32.019531 66.234375 32.019531 66.667969 C 32.019531 67.25 31.964844 67.792969 31.859375 68.300781 C 31.75 68.804688 31.542969 69.234375 31.230469 69.585938 C 30.917969 69.941406 30.472656 70.117188 29.894531 70.117188 Z M 29.894531 69.855469 C 30.269531 69.855469 30.546875 69.660156 30.734375 69.277344 C 30.917969 68.890625 31.035156 68.464844 31.078125 67.996094 C 31.121094 67.527344 31.140625 67.03125 31.140625 66.503906 C 31.140625 65.996094 31.121094 65.53125 31.078125 65.101562 C 31.035156 64.675781 30.921875 64.289062 30.738281 63.941406 C 30.554688 63.59375 30.273438 63.421875 29.894531 63.421875 C 29.511719 63.421875 29.226562 63.59375 29.042969 63.941406 C 28.859375 64.292969 28.746094 64.679688 28.707031 65.105469 C 28.660156 65.53125 28.640625 65.996094 28.640625 66.503906 C 28.640625 66.878906 28.648438 67.234375 28.667969 67.566406 C 28.683594 67.902344 28.730469 68.246094 28.808594 68.597656 C 28.890625 68.949219 29.015625 69.25 29.195312 69.492188 C 29.371094 69.734375 29.605469 69.855469 29.894531 69.855469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 22.121094 39.578125 C 21.292969 39.578125 20.730469 39.238281 20.433594 38.558594 C 20.136719 37.875 19.988281 37.066406 19.988281 36.132812 C 19.988281 35.546875 20.039062 34.992188 20.144531 34.476562 C 20.25 33.960938 20.464844 33.519531 20.78125 33.160156 C 21.097656 32.796875 21.546875 32.617188 22.121094 32.617188 C 22.566406 32.617188 22.929688 32.726562 23.210938 32.941406 C 23.496094 33.160156 23.710938 33.441406 23.859375 33.785156 C 24.007812 34.132812 24.109375 34.5 24.164062 34.890625 C 24.21875 35.285156 24.246094 35.695312 24.246094 36.132812 C 24.246094 36.710938 24.191406 37.253906 24.085938 37.761719 C 23.976562 38.265625 23.765625 38.695312 23.453125 39.050781 C 23.140625 39.402344 22.699219 39.578125 22.121094 39.578125 Z M 22.121094 39.316406 C 22.492188 39.316406 22.773438 39.121094 22.960938 38.738281 C 23.144531 38.355469 23.257812 37.929688 23.300781 37.460938 C 23.34375 36.992188 23.367188 36.492188 23.367188 35.964844 C 23.367188 35.460938 23.34375 34.992188 23.300781 34.5625 C 23.257812 34.136719 23.144531 33.75 22.964844 33.402344 C 22.777344 33.054688 22.496094 32.882812 22.121094 32.882812 C 21.738281 32.882812 21.453125 33.054688 21.269531 33.40625 C 21.085938 33.753906 20.972656 34.140625 20.929688 34.566406 C 20.886719 34.992188 20.867188 35.460938 20.867188 35.964844 C 20.867188 36.339844 20.875 36.695312 20.890625 37.027344 C 20.910156 37.363281 20.957031 37.707031 21.035156 38.058594 C 21.113281 38.414062 21.242188 38.710938 21.417969 38.953125 C 21.597656 39.195312 21.832031 39.316406 22.121094 39.316406 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 25.4375 38.800781 C 25.4375 38.648438 25.492188 38.515625 25.605469 38.40625 C 25.71875 38.300781 25.847656 38.242188 25.992188 38.242188 C 26.085938 38.242188 26.179688 38.269531 26.269531 38.316406 C 26.359375 38.367188 26.425781 38.433594 26.476562 38.523438 C 26.523438 38.613281 26.550781 38.707031 26.550781 38.800781 C 26.550781 38.949219 26.496094 39.078125 26.386719 39.191406 C 26.277344 39.300781 26.144531 39.355469 25.992188 39.355469 C 25.847656 39.355469 25.71875 39.300781 25.605469 39.191406 C 25.492188 39.078125 25.4375 38.949219 25.4375 38.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 27.867188 39.355469 L 27.867188 39.085938 C 27.867188 39.066406 27.871094 39.046875 27.886719 39.027344 L 29.460938 37.289062 C 29.699219 37.03125 29.890625 36.816406 30.035156 36.644531 C 30.183594 36.46875 30.332031 36.269531 30.476562 36.042969 C 30.621094 35.816406 30.738281 35.585938 30.820312 35.347656 C 30.90625 35.113281 30.949219 34.863281 30.949219 34.597656 C 30.949219 34.324219 30.894531 34.058594 30.792969 33.804688 C 30.691406 33.550781 30.535156 33.351562 30.335938 33.199219 C 30.136719 33.050781 29.890625 32.976562 29.601562 32.976562 C 29.308594 32.976562 29.042969 33.0625 28.808594 33.238281 C 28.578125 33.414062 28.410156 33.640625 28.320312 33.921875 C 28.34375 33.914062 28.382812 33.910156 28.421875 33.910156 C 28.578125 33.910156 28.707031 33.960938 28.8125 34.0625 C 28.921875 34.164062 28.972656 34.296875 28.972656 34.460938 C 28.972656 34.613281 28.921875 34.742188 28.8125 34.851562 C 28.707031 34.960938 28.578125 35.011719 28.421875 35.011719 C 28.269531 35.011719 28.136719 34.957031 28.027344 34.847656 C 27.921875 34.738281 27.867188 34.609375 27.867188 34.460938 C 27.867188 34.207031 27.914062 33.96875 28.011719 33.746094 C 28.105469 33.523438 28.242188 33.328125 28.421875 33.152344 C 28.601562 32.980469 28.804688 32.847656 29.03125 32.753906 C 29.257812 32.664062 29.5 32.617188 29.753906 32.617188 C 30.136719 32.617188 30.492188 32.699219 30.828125 32.863281 C 31.160156 33.027344 31.425781 33.257812 31.617188 33.554688 C 31.8125 33.851562 31.910156 34.199219 31.910156 34.597656 C 31.910156 34.894531 31.84375 35.171875 31.714844 35.4375 C 31.585938 35.699219 31.421875 35.9375 31.222656 36.152344 C 31.023438 36.367188 30.769531 36.613281 30.453125 36.886719 C 30.140625 37.160156 29.933594 37.34375 29.835938 37.4375 L 28.6875 38.535156 L 29.660156 38.535156 C 30.140625 38.535156 30.539062 38.53125 30.859375 38.523438 C 31.179688 38.515625 31.351562 38.503906 31.371094 38.484375 C 31.453125 38.402344 31.535156 38.09375 31.617188 37.554688 L 31.910156 37.554688 L 31.621094 39.355469 L 27.867188 39.355469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 22.121094 9.039062 C 21.292969 9.039062 20.730469 8.699219 20.433594 8.019531 C 20.136719 7.339844 19.988281 6.527344 19.988281 5.59375 C 19.988281 5.007812 20.039062 4.453125 20.144531 3.9375 C 20.25 3.421875 20.464844 2.980469 20.78125 2.621094 C 21.097656 2.261719 21.546875 2.078125 22.121094 2.078125 C 22.566406 2.078125 22.929688 2.1875 23.210938 2.40625 C 23.496094 2.621094 23.710938 2.902344 23.859375 3.246094 C 24.007812 3.59375 24.109375 3.960938 24.164062 4.355469 C 24.21875 4.746094 24.246094 5.160156 24.246094 5.59375 C 24.246094 6.175781 24.191406 6.71875 24.085938 7.222656 C 23.976562 7.730469 23.765625 8.15625 23.453125 8.511719 C 23.140625 8.863281 22.699219 9.039062 22.121094 9.039062 Z M 22.121094 8.777344 C 22.492188 8.777344 22.773438 8.585938 22.960938 8.199219 C 23.144531 7.816406 23.257812 7.390625 23.300781 6.921875 C 23.34375 6.453125 23.367188 5.953125 23.367188 5.429688 C 23.367188 4.921875 23.34375 4.453125 23.300781 4.027344 C 23.257812 3.597656 23.144531 3.210938 22.964844 2.863281 C 22.777344 2.515625 22.496094 2.34375 22.121094 2.34375 C 21.738281 2.34375 21.453125 2.519531 21.269531 2.867188 C 21.085938 3.214844 20.972656 3.605469 20.929688 4.027344 C 20.886719 4.453125 20.867188 4.921875 20.867188 5.429688 C 20.867188 5.804688 20.875 6.15625 20.890625 6.492188 C 20.910156 6.824219 20.957031 7.167969 21.035156 7.519531 C 21.113281 7.875 21.242188 8.171875 21.417969 8.414062 C 21.597656 8.65625 21.832031 8.777344 22.121094 8.777344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 25.4375 8.261719 C 25.4375 8.109375 25.492188 7.980469 25.605469 7.871094 C 25.71875 7.761719 25.847656 7.707031 25.992188 7.707031 C 26.085938 7.707031 26.179688 7.730469 26.269531 7.777344 C 26.359375 7.828125 26.425781 7.898438 26.476562 7.988281 C 26.523438 8.078125 26.550781 8.167969 26.550781 8.261719 C 26.550781 8.410156 26.496094 8.539062 26.386719 8.652344 C 26.277344 8.761719 26.144531 8.816406 25.992188 8.816406 C 25.847656 8.816406 25.71875 8.761719 25.605469 8.652344 C 25.492188 8.539062 25.4375 8.410156 25.4375 8.261719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 27.644531 7.148438 L 27.644531 6.792969 L 30.773438 2.132812 C 30.796875 2.097656 30.832031 2.078125 30.878906 2.078125 L 31.023438 2.078125 C 31.101562 2.078125 31.140625 2.117188 31.140625 2.195312 L 31.140625 6.792969 L 32.132812 6.792969 L 32.132812 7.148438 L 31.140625 7.148438 L 31.140625 8.140625 C 31.140625 8.28125 31.238281 8.367188 31.4375 8.40625 C 31.632812 8.441406 31.863281 8.460938 32.125 8.460938 L 32.125 8.816406 L 29.335938 8.816406 L 29.335938 8.460938 C 29.59375 8.460938 29.824219 8.441406 30.023438 8.40625 C 30.222656 8.367188 30.320312 8.28125 30.320312 8.140625 L 30.320312 7.148438 Z M 27.976562 6.792969 L 30.378906 6.792969 L 30.378906 3.210938 Z M 27.976562 6.792969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.300781 133.027344 L 8.917969 133.027344 C 8.917969 132.28125 8.804688 131.910156 8.574219 131.910156 L 2.601562 131.910156 C 2.371094 131.910156 2.253906 132.28125 2.253906 133.027344 L 1.875 133.027344 L 1.875 129.164062 C 1.875 128.765625 1.957031 128.367188 2.121094 127.972656 C 2.285156 127.574219 2.519531 127.25 2.832031 126.992188 C 3.140625 126.738281 3.503906 126.609375 3.917969 126.609375 C 4.320312 126.609375 4.671875 126.738281 4.976562 126.996094 C 5.28125 127.253906 5.511719 127.578125 5.671875 127.972656 C 5.828125 128.363281 5.910156 128.761719 5.910156 129.164062 L 5.910156 130.902344 L 8.574219 130.902344 C 8.804688 130.902344 8.917969 130.527344 8.917969 129.78125 L 9.300781 129.78125 Z M 5.585938 130.929688 L 5.585938 129.457031 C 5.585938 129.058594 5.53125 128.734375 5.414062 128.484375 C 5.300781 128.238281 5.121094 128.058594 4.878906 127.941406 C 4.636719 127.828125 4.316406 127.769531 3.917969 127.769531 C 3.328125 127.769531 2.902344 127.898438 2.644531 128.160156 C 2.382812 128.417969 2.253906 128.851562 2.253906 129.457031 L 2.253906 130.378906 C 2.253906 130.511719 2.261719 130.617188 2.273438 130.6875 C 2.285156 130.761719 2.316406 130.820312 2.367188 130.863281 C 2.417969 130.90625 2.492188 130.929688 2.601562 130.929688 L 5.585938 130.929688 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.421875 123.496094 C 9.421875 123.929688 9.3125 124.335938 9.09375 124.707031 C 8.871094 125.082031 8.574219 125.375 8.203125 125.589844 C 7.828125 125.804688 7.425781 125.910156 6.988281 125.910156 C 6.65625 125.910156 6.335938 125.851562 6.027344 125.734375 C 5.71875 125.617188 5.441406 125.449219 5.199219 125.226562 C 4.957031 125.003906 4.769531 124.746094 4.632812 124.453125 C 4.496094 124.160156 4.425781 123.839844 4.425781 123.496094 C 4.425781 123.054688 4.546875 122.648438 4.78125 122.28125 C 5.019531 121.914062 5.332031 121.625 5.726562 121.410156 C 6.121094 121.199219 6.542969 121.09375 6.988281 121.09375 C 7.417969 121.09375 7.824219 121.199219 8.199219 121.417969 C 8.574219 121.632812 8.871094 121.925781 9.09375 122.296875 C 9.3125 122.664062 9.421875 123.066406 9.421875 123.496094 Z M 9.101562 123.496094 C 9.101562 122.917969 8.890625 122.53125 8.472656 122.335938 C 8.050781 122.144531 7.515625 122.046875 6.863281 122.046875 C 6.5 122.046875 6.199219 122.066406 5.957031 122.105469 C 5.71875 122.144531 5.5 122.226562 5.304688 122.355469 C 5.1875 122.4375 5.082031 122.542969 4.992188 122.667969 C 4.902344 122.792969 4.832031 122.925781 4.785156 123.066406 C 4.738281 123.207031 4.714844 123.351562 4.714844 123.496094 C 4.714844 123.722656 4.765625 123.941406 4.871094 124.140625 C 4.972656 124.34375 5.117188 124.515625 5.304688 124.652344 C 5.511719 124.785156 5.738281 124.867188 5.984375 124.90625 C 6.230469 124.945312 6.523438 124.960938 6.863281 124.960938 C 7.269531 124.960938 7.636719 124.925781 7.957031 124.855469 C 8.28125 124.785156 8.554688 124.644531 8.773438 124.429688 C 8.992188 124.214844 9.101562 123.902344 9.101562 123.496094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.300781 120.386719 L 8.917969 120.386719 C 8.917969 120.136719 8.898438 119.933594 8.859375 119.773438 C 8.820312 119.617188 8.726562 119.535156 8.574219 119.535156 L 2.867188 119.535156 C 2.675781 119.535156 2.53125 119.566406 2.445312 119.625 C 2.355469 119.683594 2.300781 119.765625 2.28125 119.875 C 2.265625 119.984375 2.253906 120.15625 2.253906 120.386719 L 1.875 120.386719 L 1.757812 118.769531 L 8.574219 118.769531 C 8.726562 118.769531 8.820312 118.691406 8.859375 118.53125 C 8.898438 118.375 8.917969 118.171875 8.917969 117.925781 L 9.300781 117.925781 L 9.300781 120.386719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.421875 114.960938 C 9.421875 115.402344 9.304688 115.808594 9.074219 116.175781 C 8.84375 116.546875 8.53125 116.835938 8.144531 117.046875 C 7.761719 117.257812 7.351562 117.363281 6.917969 117.363281 C 6.492188 117.363281 6.085938 117.265625 5.707031 117.074219 C 5.324219 116.882812 5.019531 116.613281 4.78125 116.269531 C 4.546875 115.925781 4.425781 115.539062 4.425781 115.113281 C 4.425781 114.78125 4.484375 114.492188 4.59375 114.246094 C 4.707031 114 4.859375 113.796875 5.058594 113.636719 C 5.257812 113.476562 5.492188 113.359375 5.761719 113.277344 C 6.027344 113.199219 6.324219 113.15625 6.648438 113.15625 C 6.742188 113.15625 6.789062 113.195312 6.789062 113.269531 L 6.789062 116.414062 L 6.90625 116.414062 C 7.507812 116.414062 8.023438 116.292969 8.453125 116.050781 C 8.886719 115.808594 9.101562 115.410156 9.101562 114.863281 C 9.101562 114.640625 9.050781 114.433594 8.953125 114.242188 C 8.855469 114.054688 8.71875 113.890625 8.542969 113.753906 C 8.363281 113.613281 8.171875 113.519531 7.96875 113.46875 C 7.945312 113.460938 7.925781 113.445312 7.90625 113.425781 C 7.886719 113.40625 7.875 113.386719 7.875 113.363281 L 7.875 113.269531 C 7.875 113.195312 7.921875 113.15625 8.015625 113.15625 C 8.425781 113.257812 8.765625 113.480469 9.027344 113.820312 C 9.292969 114.160156 9.421875 114.539062 9.421875 114.960938 Z M 6.519531 116.402344 L 6.519531 113.925781 C 6.246094 113.925781 5.96875 113.964844 5.6875 114.039062 C 5.410156 114.113281 5.175781 114.242188 4.992188 114.421875 C 4.808594 114.597656 4.714844 114.828125 4.714844 115.113281 C 4.714844 115.523438 4.90625 115.839844 5.292969 116.066406 C 5.675781 116.289062 6.085938 116.402344 6.519531 116.402344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.300781 108.753906 L 8.917969 108.753906 C 8.917969 108.007812 8.804688 107.636719 8.574219 107.636719 L 2.601562 107.636719 C 2.371094 107.636719 2.253906 108.007812 2.253906 108.753906 L 1.875 108.753906 L 1.875 105.347656 C 1.875 104.9375 1.945312 104.507812 2.09375 104.0625 C 2.238281 103.613281 2.460938 103.242188 2.761719 102.941406 C 3.0625 102.640625 3.425781 102.488281 3.839844 102.488281 C 4.144531 102.488281 4.417969 102.578125 4.65625 102.761719 C 4.898438 102.945312 5.097656 103.175781 5.257812 103.460938 C 5.417969 103.746094 5.535156 104.035156 5.605469 104.335938 C 5.71875 104.011719 5.898438 103.726562 6.144531 103.480469 C 6.394531 103.238281 6.679688 103.089844 7 103.039062 L 7.964844 102.886719 C 8.398438 102.816406 8.722656 102.742188 8.9375 102.664062 C 9.152344 102.585938 9.257812 102.414062 9.257812 102.148438 C 9.257812 101.925781 9.152344 101.753906 8.941406 101.644531 C 8.730469 101.53125 8.5 101.476562 8.25 101.476562 C 8.226562 101.476562 8.207031 101.464844 8.1875 101.441406 C 8.167969 101.417969 8.15625 101.394531 8.15625 101.371094 L 8.15625 101.273438 C 8.15625 101.203125 8.207031 101.167969 8.304688 101.167969 C 8.5 101.167969 8.691406 101.203125 8.882812 101.28125 C 9.070312 101.355469 9.226562 101.46875 9.351562 101.617188 C 9.476562 101.765625 9.539062 101.9375 9.539062 102.140625 C 9.539062 102.660156 9.410156 103.113281 9.148438 103.488281 C 8.890625 103.863281 8.507812 104.054688 8.007812 104.054688 L 7.039062 104.054688 C 6.675781 104.054688 6.367188 104.179688 6.109375 104.429688 C 5.851562 104.683594 5.722656 104.988281 5.722656 105.351562 L 5.722656 106.65625 L 8.574219 106.65625 C 8.804688 106.65625 8.917969 106.285156 8.917969 105.539062 L 9.300781 105.539062 Z M 5.441406 106.65625 L 5.441406 105.5 C 5.441406 104.898438 5.320312 104.441406 5.078125 104.125 C 4.835938 103.8125 4.421875 103.65625 3.839844 103.65625 C 3.269531 103.65625 2.859375 103.808594 2.617188 104.121094 C 2.375 104.429688 2.253906 104.890625 2.253906 105.5 L 2.253906 106.109375 C 2.253906 106.242188 2.261719 106.34375 2.273438 106.414062 C 2.285156 106.488281 2.316406 106.546875 2.367188 106.589844 C 2.417969 106.636719 2.492188 106.65625 2.601562 106.65625 L 5.441406 106.65625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.421875 98.320312 C 9.421875 98.761719 9.304688 99.167969 9.074219 99.535156 C 8.84375 99.90625 8.53125 100.195312 8.144531 100.40625 C 7.761719 100.617188 7.351562 100.722656 6.917969 100.722656 C 6.492188 100.722656 6.085938 100.628906 5.707031 100.433594 C 5.324219 100.242188 5.019531 99.976562 4.78125 99.628906 C 4.546875 99.285156 4.425781 98.898438 4.425781 98.472656 C 4.425781 98.144531 4.484375 97.855469 4.59375 97.605469 C 4.707031 97.363281 4.859375 97.160156 5.058594 96.996094 C 5.257812 96.839844 5.492188 96.71875 5.761719 96.640625 C 6.027344 96.558594 6.324219 96.519531 6.648438 96.519531 C 6.742188 96.519531 6.789062 96.554688 6.789062 96.628906 L 6.789062 99.773438 L 6.90625 99.773438 C 7.507812 99.773438 8.023438 99.652344 8.453125 99.410156 C 8.886719 99.167969 9.101562 98.773438 9.101562 98.222656 C 9.101562 98 9.050781 97.792969 8.953125 97.605469 C 8.855469 97.414062 8.71875 97.253906 8.542969 97.113281 C 8.363281 96.972656 8.171875 96.878906 7.96875 96.828125 C 7.945312 96.820312 7.925781 96.808594 7.90625 96.789062 C 7.886719 96.769531 7.875 96.746094 7.875 96.722656 L 7.875 96.628906 C 7.875 96.554688 7.921875 96.519531 8.015625 96.519531 C 8.425781 96.621094 8.765625 96.839844 9.027344 97.179688 C 9.292969 97.519531 9.421875 97.898438 9.421875 98.320312 Z M 6.519531 99.761719 L 6.519531 97.285156 C 6.246094 97.285156 5.96875 97.324219 5.6875 97.398438 C 5.410156 97.476562 5.175781 97.601562 4.992188 97.78125 C 4.808594 97.957031 4.714844 98.1875 4.714844 98.472656 C 4.714844 98.882812 4.90625 99.199219 5.292969 99.425781 C 5.675781 99.648438 6.085938 99.761719 6.519531 99.761719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 8.234375 95.710938 C 7.800781 95.710938 7.449219 95.539062 7.179688 95.199219 C 6.910156 94.859375 6.71875 94.453125 6.609375 93.976562 C 6.496094 93.5 6.441406 93.046875 6.441406 92.617188 L 5.992188 92.617188 C 5.785156 92.617188 5.582031 92.664062 5.386719 92.753906 C 5.1875 92.847656 5.027344 92.980469 4.902344 93.152344 C 4.777344 93.328125 4.714844 93.519531 4.714844 93.730469 C 4.714844 94.210938 4.820312 94.574219 5.035156 94.824219 C 5.035156 94.6875 5.089844 94.574219 5.195312 94.484375 C 5.300781 94.394531 5.421875 94.351562 5.558594 94.351562 C 5.703125 94.351562 5.824219 94.402344 5.929688 94.503906 C 6.03125 94.605469 6.085938 94.726562 6.085938 94.863281 C 6.085938 95.015625 6.03125 95.140625 5.929688 95.238281 C 5.824219 95.339844 5.703125 95.390625 5.558594 95.390625 C 5.175781 95.390625 4.890625 95.21875 4.707031 94.875 C 4.519531 94.527344 4.425781 94.148438 4.425781 93.730469 C 4.425781 93.433594 4.488281 93.136719 4.613281 92.839844 C 4.738281 92.542969 4.917969 92.300781 5.152344 92.109375 C 5.386719 91.921875 5.660156 91.828125 5.972656 91.828125 L 8.421875 91.828125 C 8.5625 91.828125 8.691406 91.796875 8.8125 91.734375 C 8.929688 91.675781 8.988281 91.582031 8.988281 91.457031 C 8.988281 91.335938 8.929688 91.246094 8.808594 91.1875 C 8.6875 91.128906 8.558594 91.101562 8.421875 91.101562 L 7.726562 91.101562 L 7.726562 90.785156 L 8.421875 90.785156 C 8.582031 90.785156 8.734375 90.828125 8.882812 90.910156 C 9.027344 90.996094 9.144531 91.109375 9.230469 91.253906 C 9.320312 91.398438 9.363281 91.550781 9.363281 91.714844 C 9.363281 91.929688 9.28125 92.113281 9.117188 92.265625 C 8.953125 92.417969 8.757812 92.503906 8.53125 92.523438 C 8.800781 92.65625 9.019531 92.851562 9.179688 93.113281 C 9.34375 93.375 9.421875 93.65625 9.421875 93.957031 C 9.421875 94.230469 9.382812 94.503906 9.300781 94.769531 C 9.21875 95.035156 9.089844 95.257812 8.914062 95.4375 C 8.738281 95.617188 8.511719 95.710938 8.234375 95.710938 Z M 8.234375 94.824219 C 8.488281 94.824219 8.703125 94.730469 8.875 94.542969 C 9.050781 94.355469 9.136719 94.136719 9.136719 93.882812 C 9.136719 93.648438 9.078125 93.433594 8.960938 93.242188 C 8.84375 93.050781 8.683594 92.898438 8.484375 92.785156 C 8.28125 92.675781 8.070312 92.617188 7.847656 92.617188 L 6.71875 92.617188 C 6.71875 92.949219 6.769531 93.285156 6.878906 93.628906 C 6.984375 93.972656 7.15625 94.257812 7.386719 94.484375 C 7.613281 94.710938 7.898438 94.824219 8.234375 94.824219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.300781 90.3125 L 8.917969 90.3125 C 8.917969 90.0625 8.898438 89.859375 8.859375 89.699219 C 8.820312 89.542969 8.726562 89.464844 8.574219 89.464844 L 2.867188 89.464844 C 2.675781 89.464844 2.53125 89.492188 2.445312 89.550781 C 2.355469 89.609375 2.300781 89.695312 2.28125 89.804688 C 2.265625 89.910156 2.253906 90.082031 2.253906 90.3125 L 1.875 90.3125 L 1.757812 88.695312 L 8.574219 88.695312 C 8.726562 88.695312 8.820312 88.617188 8.859375 88.460938 C 8.898438 88.300781 8.917969 88.097656 8.917969 87.851562 L 9.300781 87.851562 L 9.300781 90.3125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.300781 83.566406 L 8.917969 83.566406 C 8.917969 82.820312 8.804688 82.449219 8.574219 82.449219 L 2.601562 82.449219 C 2.371094 82.449219 2.253906 82.820312 2.253906 83.566406 L 1.875 83.566406 L 1.875 79.703125 C 1.875 79.304688 1.957031 78.90625 2.121094 78.511719 C 2.285156 78.113281 2.519531 77.789062 2.832031 77.53125 C 3.140625 77.277344 3.503906 77.148438 3.917969 77.148438 C 4.320312 77.148438 4.671875 77.277344 4.976562 77.535156 C 5.28125 77.792969 5.511719 78.117188 5.671875 78.511719 C 5.828125 78.902344 5.910156 79.300781 5.910156 79.703125 L 5.910156 81.441406 L 8.574219 81.441406 C 8.804688 81.441406 8.917969 81.066406 8.917969 80.324219 L 9.300781 80.324219 Z M 5.585938 81.46875 L 5.585938 79.996094 C 5.585938 79.597656 5.53125 79.273438 5.414062 79.027344 C 5.300781 78.777344 5.121094 78.597656 4.878906 78.480469 C 4.636719 78.367188 4.316406 78.308594 3.917969 78.308594 C 3.328125 78.308594 2.902344 78.4375 2.644531 78.699219 C 2.382812 78.957031 2.253906 79.390625 2.253906 79.996094 L 2.253906 80.921875 C 2.253906 81.054688 2.261719 81.15625 2.273438 81.226562 C 2.285156 81.300781 2.316406 81.359375 2.367188 81.402344 C 2.417969 81.449219 2.492188 81.46875 2.601562 81.46875 L 5.585938 81.46875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 8.234375 76.320312 C 7.800781 76.320312 7.449219 76.152344 7.179688 75.8125 C 6.910156 75.472656 6.71875 75.0625 6.609375 74.589844 C 6.496094 74.113281 6.441406 73.660156 6.441406 73.230469 L 5.992188 73.230469 C 5.785156 73.230469 5.582031 73.277344 5.386719 73.367188 C 5.1875 73.460938 5.027344 73.59375 4.902344 73.765625 C 4.777344 73.9375 4.714844 74.132812 4.714844 74.34375 C 4.714844 74.820312 4.820312 75.1875 5.035156 75.4375 C 5.035156 75.300781 5.089844 75.1875 5.195312 75.097656 C 5.300781 75.007812 5.421875 74.964844 5.558594 74.964844 C 5.703125 74.964844 5.824219 75.015625 5.929688 75.113281 C 6.03125 75.21875 6.085938 75.335938 6.085938 75.476562 C 6.085938 75.628906 6.03125 75.75 5.929688 75.851562 C 5.824219 75.953125 5.703125 76.003906 5.558594 76.003906 C 5.175781 76.003906 4.890625 75.832031 4.707031 75.488281 C 4.519531 75.140625 4.425781 74.761719 4.425781 74.34375 C 4.425781 74.046875 4.488281 73.75 4.613281 73.453125 C 4.738281 73.15625 4.917969 72.914062 5.152344 72.722656 C 5.386719 72.535156 5.660156 72.4375 5.972656 72.4375 L 8.421875 72.4375 C 8.5625 72.4375 8.691406 72.410156 8.8125 72.347656 C 8.929688 72.289062 8.988281 72.195312 8.988281 72.070312 C 8.988281 71.949219 8.929688 71.859375 8.808594 71.800781 C 8.6875 71.742188 8.558594 71.714844 8.421875 71.714844 L 7.726562 71.714844 L 7.726562 71.398438 L 8.421875 71.398438 C 8.582031 71.398438 8.734375 71.4375 8.882812 71.523438 C 9.027344 71.605469 9.144531 71.722656 9.230469 71.867188 C 9.320312 72.011719 9.363281 72.164062 9.363281 72.328125 C 9.363281 72.542969 9.28125 72.726562 9.117188 72.878906 C 8.953125 73.03125 8.757812 73.117188 8.53125 73.136719 C 8.800781 73.269531 9.019531 73.464844 9.179688 73.726562 C 9.34375 73.988281 9.421875 74.269531 9.421875 74.570312 C 9.421875 74.84375 9.382812 75.113281 9.300781 75.382812 C 9.21875 75.648438 9.089844 75.871094 8.914062 76.050781 C 8.738281 76.230469 8.511719 76.320312 8.234375 76.320312 Z M 8.234375 75.4375 C 8.488281 75.4375 8.703125 75.34375 8.875 75.15625 C 9.050781 74.96875 9.136719 74.746094 9.136719 74.496094 C 9.136719 74.261719 9.078125 74.046875 8.960938 73.855469 C 8.84375 73.664062 8.683594 73.511719 8.484375 73.398438 C 8.28125 73.285156 8.070312 73.230469 7.847656 73.230469 L 6.71875 73.230469 C 6.71875 73.5625 6.769531 73.898438 6.878906 74.242188 C 6.984375 74.585938 7.15625 74.871094 7.386719 75.097656 C 7.613281 75.324219 7.898438 75.4375 8.234375 75.4375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 9.300781 70.976562 L 8.917969 70.976562 C 8.917969 70.730469 8.898438 70.527344 8.859375 70.367188 C 8.820312 70.210938 8.726562 70.128906 8.574219 70.128906 L 5.605469 70.128906 C 5.410156 70.128906 5.269531 70.15625 5.183594 70.214844 C 5.097656 70.273438 5.042969 70.359375 5.023438 70.46875 C 5.003906 70.578125 4.996094 70.746094 4.996094 70.976562 L 4.613281 70.976562 L 4.496094 69.421875 L 5.558594 69.421875 C 5.242188 69.308594 4.984375 69.140625 4.789062 68.925781 C 4.59375 68.710938 4.496094 68.445312 4.496094 68.136719 C 4.496094 67.921875 4.5625 67.730469 4.6875 67.5625 C 4.8125 67.390625 4.984375 67.308594 5.195312 67.308594 C 5.324219 67.308594 5.4375 67.355469 5.535156 67.449219 C 5.632812 67.539062 5.679688 67.65625 5.679688 67.792969 C 5.679688 67.929688 5.632812 68.046875 5.539062 68.140625 C 5.441406 68.238281 5.328125 68.285156 5.195312 68.285156 C 5 68.285156 4.859375 68.214844 4.777344 68.074219 L 4.777344 68.136719 C 4.777344 68.429688 4.886719 68.671875 5.097656 68.855469 C 5.3125 69.039062 5.574219 69.171875 5.886719 69.25 C 6.203125 69.328125 6.503906 69.367188 6.789062 69.367188 L 8.574219 69.367188 C 8.804688 69.367188 8.917969 69.015625 8.917969 68.3125 L 9.300781 68.3125 L 9.300781 70.976562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 7.992188 65.847656 L 4.996094 65.847656 L 4.996094 66.75 L 4.714844 66.75 C 4.714844 66.273438 4.492188 65.921875 4.050781 65.699219 C 3.605469 65.480469 3.125 65.367188 2.613281 65.367188 L 2.613281 65.058594 L 4.613281 65.058594 L 4.613281 63.523438 L 4.996094 63.523438 L 4.996094 65.058594 L 7.96875 65.058594 C 8.269531 65.058594 8.535156 65.007812 8.761719 64.90625 C 8.988281 64.804688 9.101562 64.621094 9.101562 64.359375 C 9.101562 64.109375 8.980469 63.929688 8.742188 63.820312 C 8.503906 63.710938 8.246094 63.65625 7.96875 63.65625 L 7.332031 63.65625 L 7.332031 63.347656 L 7.992188 63.347656 C 8.21875 63.347656 8.445312 63.390625 8.664062 63.46875 C 8.886719 63.550781 9.066406 63.675781 9.210938 63.839844 C 9.351562 64.003906 9.421875 64.203125 9.421875 64.4375 C 9.421875 64.871094 9.292969 65.214844 9.035156 65.46875 C 8.773438 65.722656 8.425781 65.847656 7.992188 65.847656 "/>
<path style="fill:none;stroke-width:14.9908;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -1127.163905 L 374.928764 -1134.899726 L 386.332847 -1142.596478 L 397.697875 -1150.3323 L 409.101958 -1158.068121 L 420.506041 -1165.764873 L 431.910125 -1173.500695 L 443.275153 -1181.236516 L 454.679236 -1188.933268 L 477.487402 -1204.404911 L 488.852431 -1212.101663 L 500.256514 -1219.837485 L 511.660597 -1227.534236 L 523.06468 -1235.270058 L 534.429708 -1243.00588 L 545.833792 -1250.702631 L 568.641958 -1266.174275 L 580.006986 -1273.871026 L 591.411069 -1281.606848 L 602.815153 -1289.3036 L 614.219236 -1297.039421 L 625.584264 -1304.736173 L 636.988347 -1312.471995 L 648.39243 -1320.168747 L 659.796514 -1327.904568 L 671.161542 -1335.60132 L 682.565625 -1343.337142 L 705.373791 -1358.730645 L 716.777875 -1366.466467 L 728.142903 -1374.163219 L 739.546986 -1381.89904 L 750.951069 -1389.595792 L 762.316097 -1397.331614 L 796.528347 -1420.421869 L 807.93243 -1428.15769 L 819.297458 -1435.854442 L 842.105625 -1451.247946 L 853.470653 -1458.983767 L 899.086986 -1489.770775 L 910.452014 -1497.467526 L 944.664264 -1520.557782 L 956.029292 -1528.254534 L 990.241542 -1551.344789 L 1001.60657 -1559.041541 L 1013.010653 -1566.738293 L 1024.414736 -1574.395975 L 1035.818819 -1582.092726 L 1047.183848 -1589.789478 L 1058.587931 -1597.48623 L 1069.992014 -1605.143912 L 1081.396097 -1612.840664 L 1092.761125 -1620.537415 L 1104.165209 -1628.195097 L 1115.569292 -1635.891849 L 1126.973375 -1643.549531 L 1138.338403 -1651.246283 L 1161.14657 -1666.561647 L 1172.550653 -1674.258399 L 1183.915681 -1681.916081 L 1206.723847 -1697.231445 L 1218.127931 -1704.928197 L 1229.492959 -1712.585879 L 1275.109292 -1743.216607 L 1286.47432 -1750.874288 L 1320.68657 -1773.847334 L 1332.051598 -1781.505016 L 1343.455681 -1789.123629 L 1354.859764 -1796.781311 L 1366.224792 -1804.438993 L 1377.628876 -1812.096675 L 1389.032959 -1819.715287 L 1400.437042 -1827.372969 L 1411.80207 -1834.991581 L 1423.206153 -1842.649263 L 1446.01432 -1857.886487 L 1457.418403 -1865.544169 L 1468.783431 -1873.162781 L 1491.591598 -1888.400006 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:14.9908;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.52468 -1127.163905 L 374.928764 -1119.428083 L 386.332847 -1111.731331 L 397.697875 -1103.99551 L 409.101958 -1096.298758 L 431.910125 -1080.827115 L 443.275153 -1073.091293 L 454.679236 -1065.394541 L 477.487402 -1049.922898 L 488.852431 -1042.226146 L 500.256514 -1034.490325 L 511.660597 -1026.793573 L 523.06468 -1019.057751 L 534.429708 -1011.32193 L 545.833792 -1003.625178 L 557.237875 -995.889356 L 568.641958 -988.192605 L 580.006986 -980.456783 L 591.411069 -972.720961 L 602.815153 -965.02421 L 614.219236 -957.288388 L 625.584264 -949.591636 L 636.988347 -941.855815 L 648.39243 -934.159063 L 659.796514 -926.423241 L 671.161542 -918.726489 L 682.565625 -910.990668 L 693.969708 -903.293916 L 705.373791 -895.558094 L 716.777875 -887.861343 L 728.142903 -880.164591 L 739.546986 -872.428769 L 750.951069 -864.732017 L 762.316097 -857.035266 L 773.720181 -849.299444 L 796.528347 -833.90594 L 807.93243 -826.170119 L 819.297458 -818.473367 L 842.105625 -803.079863 L 853.470653 -795.344042 L 899.086986 -764.557035 L 910.452014 -756.860283 L 944.664264 -733.770027 L 956.029292 -726.073276 L 990.241542 -702.98302 L 1001.60657 -695.286269 L 1013.010653 -687.589517 L 1024.414736 -679.931835 L 1035.818819 -672.235083 L 1047.183848 -664.538331 L 1058.587931 -656.841579 L 1069.992014 -649.183897 L 1081.396097 -641.487146 L 1092.761125 -633.829464 L 1115.569292 -618.43596 L 1126.973375 -610.778278 L 1138.338403 -603.081526 L 1161.14657 -587.766162 L 1172.550653 -580.06941 L 1183.915681 -572.411728 L 1206.723847 -557.096365 L 1218.127931 -549.399613 L 1229.492959 -541.741931 L 1275.109292 -511.111203 L 1286.47432 -503.453521 L 1320.68657 -480.480475 L 1332.051598 -472.822793 L 1343.455681 -465.204181 L 1354.859764 -457.546499 L 1366.224792 -449.888817 L 1377.628876 -442.270205 L 1400.437042 -426.954841 L 1411.80207 -419.336228 L 1423.206153 -411.717616 L 1434.610237 -404.059934 L 1446.01432 -396.441322 L 1457.418403 -388.78364 L 1468.783431 -381.165028 L 1491.591598 -365.927803 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:14.9908;stroke-linecap:butt;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:59.9632,59.9632;stroke-miterlimit:10;" d="M 363.52468 -1535.326168 L 1491.591598 -1535.326168 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 184.796875 189.648438 L 297.621094 189.648438 L 297.621094 6.421875 L 184.796875 6.421875 Z M 184.796875 189.648438 "/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -313.574263 L 1847.617703 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2411.651161 -313.574263 L 2411.651161 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -313.574263 L 2975.68462 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -313.574263 L 1847.617703 -313.574263 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -542.640536 L 1847.617703 -542.640536 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -771.745879 L 1847.617703 -771.745879 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -1000.812152 L 1847.617703 -1000.812152 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -1229.878425 L 1847.617703 -1229.878425 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -1458.944698 L 1847.617703 -1458.944698 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -1688.05004 L 1847.617703 -1688.05004 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -1917.116313 L 1847.617703 -1917.116313 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(85.15625%,85.15625%,85.15625%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -2146.182586 L 1847.617703 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -313.574263 L 2975.68462 -313.574263 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -2146.182586 L 2975.68462 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -313.574263 L 1847.617703 -331.898002 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2411.651161 -313.574263 L 2411.651161 -331.898002 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -313.574263 L 2975.68462 -331.898002 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -2146.182586 L 1847.617703 -2127.858847 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2411.651161 -2146.182586 L 2411.651161 -2127.858847 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -2146.182586 L 2975.68462 -2127.858847 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 184.828125 202.261719 C 184.003906 202.261719 183.4375 201.921875 183.140625 201.238281 C 182.847656 200.558594 182.695312 199.75 182.695312 198.8125 C 182.695312 198.226562 182.75 197.675781 182.855469 197.160156 C 182.960938 196.640625 183.171875 196.203125 183.492188 195.84375 C 183.808594 195.480469 184.253906 195.300781 184.828125 195.300781 C 185.273438 195.300781 185.636719 195.410156 185.921875 195.625 C 186.203125 195.84375 186.421875 196.121094 186.570312 196.46875 C 186.71875 196.8125 186.820312 197.183594 186.871094 197.574219 C 186.929688 197.96875 186.953125 198.378906 186.953125 198.8125 C 186.953125 199.394531 186.902344 199.9375 186.792969 200.445312 C 186.6875 200.949219 186.476562 201.378906 186.164062 201.730469 C 185.851562 202.085938 185.40625 202.261719 184.828125 202.261719 Z M 184.828125 202 C 185.203125 202 185.484375 201.804688 185.671875 201.421875 C 185.855469 201.035156 185.96875 200.609375 186.011719 200.140625 C 186.054688 199.671875 186.078125 199.175781 186.078125 198.648438 C 186.078125 198.140625 186.054688 197.675781 186.011719 197.246094 C 185.96875 196.820312 185.855469 196.433594 185.671875 196.085938 C 185.488281 195.738281 185.207031 195.5625 184.828125 195.5625 C 184.445312 195.5625 184.164062 195.738281 183.980469 196.089844 C 183.796875 196.4375 183.683594 196.824219 183.640625 197.25 C 183.597656 197.675781 183.574219 198.140625 183.574219 198.648438 C 183.574219 199.023438 183.585938 199.378906 183.601562 199.710938 C 183.621094 200.046875 183.667969 200.390625 183.746094 200.742188 C 183.824219 201.09375 183.953125 201.394531 184.128906 201.636719 C 184.308594 201.878906 184.539062 202 184.828125 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 239.589844 200.886719 C 239.660156 201.085938 239.769531 201.265625 239.910156 201.425781 C 240.054688 201.589844 240.222656 201.714844 240.421875 201.804688 C 240.617188 201.894531 240.820312 201.941406 241.03125 201.941406 C 241.519531 201.941406 241.855469 201.75 242.039062 201.371094 C 242.222656 200.992188 242.316406 200.535156 242.316406 199.996094 C 242.316406 199.761719 242.3125 199.566406 242.304688 199.40625 C 242.296875 199.246094 242.273438 199.089844 242.238281 198.941406 C 242.175781 198.703125 242.066406 198.496094 241.90625 198.320312 C 241.75 198.140625 241.558594 198.050781 241.332031 198.050781 C 241.105469 198.050781 240.910156 198.085938 240.746094 198.15625 C 240.582031 198.226562 240.449219 198.308594 240.347656 198.402344 C 240.246094 198.492188 240.15625 198.589844 240.078125 198.691406 C 240 198.792969 239.949219 198.847656 239.929688 198.855469 L 239.8125 198.855469 C 239.796875 198.855469 239.777344 198.84375 239.753906 198.824219 C 239.726562 198.800781 239.714844 198.78125 239.714844 198.761719 L 239.714844 195.382812 C 239.714844 195.363281 239.726562 195.34375 239.746094 195.328125 C 239.769531 195.308594 239.789062 195.300781 239.8125 195.300781 L 239.84375 195.300781 C 240.300781 195.519531 240.78125 195.628906 241.289062 195.628906 C 241.792969 195.628906 242.277344 195.519531 242.742188 195.300781 L 242.769531 195.300781 C 242.796875 195.300781 242.816406 195.308594 242.835938 195.328125 C 242.855469 195.34375 242.863281 195.363281 242.863281 195.382812 L 242.863281 195.476562 C 242.863281 195.507812 242.855469 195.523438 242.84375 195.523438 C 242.613281 195.832031 242.324219 196.070312 241.976562 196.238281 C 241.628906 196.410156 241.269531 196.496094 240.898438 196.496094 C 240.628906 196.496094 240.351562 196.457031 240.066406 196.382812 L 240.066406 198.292969 C 240.292969 198.113281 240.492188 197.984375 240.667969 197.90625 C 240.84375 197.828125 241.070312 197.789062 241.34375 197.789062 C 241.714844 197.789062 242.046875 197.894531 242.339844 198.109375 C 242.636719 198.324219 242.863281 198.605469 243.019531 198.949219 C 243.179688 199.292969 243.257812 199.644531 243.257812 200 C 243.257812 200.40625 243.15625 200.78125 242.960938 201.128906 C 242.761719 201.472656 242.488281 201.75 242.148438 201.953125 C 241.804688 202.160156 241.433594 202.261719 241.03125 202.261719 C 240.699219 202.261719 240.394531 202.175781 240.117188 202.003906 C 239.835938 201.832031 239.617188 201.601562 239.457031 201.3125 C 239.296875 201.023438 239.21875 200.714844 239.21875 200.386719 C 239.21875 200.234375 239.265625 200.113281 239.367188 200.015625 C 239.464844 199.921875 239.589844 199.871094 239.738281 199.871094 C 239.886719 199.871094 240.011719 199.921875 240.109375 200.019531 C 240.210938 200.117188 240.257812 200.238281 240.257812 200.386719 C 240.257812 200.53125 240.210938 200.65625 240.109375 200.757812 C 240.011719 200.859375 239.886719 200.910156 239.738281 200.910156 C 239.714844 200.910156 239.6875 200.90625 239.660156 200.902344 C 239.628906 200.894531 239.605469 200.890625 239.589844 200.886719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 293.566406 202.039062 L 293.566406 201.683594 C 294.410156 201.683594 294.828125 201.574219 294.828125 201.359375 L 294.828125 196.050781 C 294.484375 196.21875 294.039062 196.300781 293.507812 196.300781 L 293.507812 195.949219 C 294.335938 195.949219 294.960938 195.734375 295.378906 195.300781 L 295.519531 195.300781 C 295.546875 195.300781 295.566406 195.308594 295.589844 195.328125 C 295.609375 195.34375 295.621094 195.363281 295.621094 195.386719 L 295.621094 201.359375 C 295.621094 201.574219 296.042969 201.683594 296.886719 201.683594 L 296.886719 202.039062 L 293.566406 202.039062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 300.15625 202.261719 C 299.328125 202.261719 298.765625 201.921875 298.46875 201.238281 C 298.171875 200.558594 298.023438 199.75 298.023438 198.8125 C 298.023438 198.226562 298.078125 197.675781 298.183594 197.160156 C 298.289062 196.640625 298.5 196.203125 298.816406 195.84375 C 299.136719 195.480469 299.582031 195.300781 300.15625 195.300781 C 300.601562 195.300781 300.964844 195.410156 301.246094 195.625 C 301.53125 195.84375 301.746094 196.121094 301.894531 196.46875 C 302.042969 196.8125 302.144531 197.183594 302.199219 197.574219 C 302.253906 197.96875 302.28125 198.378906 302.28125 198.8125 C 302.28125 199.394531 302.230469 199.9375 302.121094 200.445312 C 302.015625 200.949219 301.804688 201.378906 301.492188 201.730469 C 301.179688 202.085938 300.734375 202.261719 300.15625 202.261719 Z M 300.15625 202 C 300.53125 202 300.8125 201.804688 300.996094 201.421875 C 301.183594 201.035156 301.296875 200.609375 301.339844 200.140625 C 301.382812 199.671875 301.402344 199.175781 301.402344 198.648438 C 301.402344 198.140625 301.382812 197.675781 301.339844 197.246094 C 301.296875 196.820312 301.183594 196.433594 301 196.085938 C 300.816406 195.738281 300.535156 195.5625 300.15625 195.5625 C 299.773438 195.5625 299.488281 195.738281 299.308594 196.089844 C 299.121094 196.4375 299.011719 196.824219 298.96875 197.25 C 298.925781 197.675781 298.902344 198.140625 298.902344 198.648438 C 298.902344 199.023438 298.910156 199.378906 298.929688 199.710938 C 298.945312 200.046875 298.996094 200.390625 299.070312 200.742188 C 299.152344 201.09375 299.277344 201.394531 299.457031 201.636719 C 299.632812 201.878906 299.867188 202 300.15625 202 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 176.304688 215.867188 L 176.304688 215.488281 C 177.050781 215.488281 177.425781 215.371094 177.425781 215.140625 L 177.425781 209.171875 C 177.425781 208.941406 177.050781 208.824219 176.304688 208.824219 L 176.304688 208.445312 L 179.714844 208.445312 C 180.125 208.445312 180.554688 208.519531 181 208.664062 C 181.445312 208.808594 181.820312 209.035156 182.121094 209.335938 C 182.421875 209.636719 182.570312 209.992188 182.570312 210.410156 C 182.570312 210.714844 182.480469 210.988281 182.300781 211.230469 C 182.117188 211.46875 181.886719 211.667969 181.601562 211.828125 C 181.316406 211.988281 181.023438 212.105469 180.726562 212.175781 C 181.050781 212.289062 181.335938 212.46875 181.578125 212.714844 C 181.824219 212.964844 181.972656 213.246094 182.023438 213.566406 L 182.175781 214.53125 C 182.246094 214.964844 182.320312 215.289062 182.394531 215.503906 C 182.476562 215.71875 182.644531 215.828125 182.910156 215.828125 C 183.140625 215.828125 183.308594 215.722656 183.417969 215.511719 C 183.53125 215.300781 183.585938 215.070312 183.585938 214.820312 C 183.585938 214.796875 183.597656 214.773438 183.621094 214.757812 C 183.644531 214.738281 183.667969 214.726562 183.691406 214.726562 L 183.789062 214.726562 C 183.859375 214.726562 183.894531 214.773438 183.894531 214.875 C 183.894531 215.066406 183.859375 215.261719 183.78125 215.449219 C 183.707031 215.640625 183.59375 215.796875 183.445312 215.921875 C 183.296875 216.046875 183.121094 216.109375 182.925781 216.109375 C 182.402344 216.109375 181.949219 215.980469 181.574219 215.71875 C 181.195312 215.460938 181.007812 215.078125 181.007812 214.574219 L 181.007812 213.609375 C 181.007812 213.246094 180.882812 212.933594 180.632812 212.675781 C 180.378906 212.417969 180.070312 212.292969 179.710938 212.292969 L 178.402344 212.292969 L 178.402344 215.140625 C 178.402344 215.371094 178.773438 215.488281 179.519531 215.488281 L 179.519531 215.867188 Z M 178.402344 212.011719 L 179.5625 212.011719 C 180.164062 212.011719 180.621094 211.890625 180.9375 211.648438 C 181.25 211.40625 181.40625 210.992188 181.40625 210.410156 C 181.40625 209.839844 181.253906 209.429688 180.941406 209.1875 C 180.632812 208.945312 180.171875 208.824219 179.5625 208.824219 L 178.953125 208.824219 C 178.820312 208.824219 178.71875 208.832031 178.644531 208.84375 C 178.574219 208.855469 178.515625 208.886719 178.46875 208.9375 C 178.425781 208.988281 178.402344 209.066406 178.402344 209.171875 L 178.402344 212.011719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 186.753906 215.992188 C 186.320312 215.992188 185.917969 215.882812 185.546875 215.660156 C 185.171875 215.441406 184.878906 215.144531 184.664062 214.769531 C 184.449219 214.398438 184.339844 213.992188 184.339844 213.554688 C 184.339844 213.222656 184.398438 212.902344 184.515625 212.59375 C 184.632812 212.289062 184.804688 212.011719 185.027344 211.769531 C 185.25 211.527344 185.507812 211.339844 185.800781 211.203125 C 186.09375 211.066406 186.410156 210.996094 186.753906 210.996094 C 187.199219 210.996094 187.605469 211.113281 187.972656 211.351562 C 188.339844 211.585938 188.628906 211.902344 188.84375 212.296875 C 189.054688 212.691406 189.160156 213.109375 189.160156 213.554688 C 189.160156 213.988281 189.054688 214.394531 188.835938 214.765625 C 188.617188 215.140625 188.328125 215.441406 187.957031 215.660156 C 187.589844 215.882812 187.1875 215.992188 186.753906 215.992188 Z M 186.753906 215.667969 C 187.335938 215.667969 187.722656 215.460938 187.914062 215.039062 C 188.109375 214.621094 188.207031 214.085938 188.207031 213.433594 C 188.207031 213.070312 188.1875 212.769531 188.148438 212.527344 C 188.109375 212.289062 188.023438 212.070312 187.894531 211.875 C 187.8125 211.757812 187.710938 211.652344 187.585938 211.5625 C 187.460938 211.46875 187.328125 211.402344 187.1875 211.355469 C 187.046875 211.308594 186.902344 211.285156 186.753906 211.285156 C 186.527344 211.285156 186.3125 211.335938 186.109375 211.4375 C 185.90625 211.542969 185.738281 211.6875 185.601562 211.875 C 185.46875 212.082031 185.382812 212.308594 185.34375 212.554688 C 185.308594 212.800781 185.289062 213.09375 185.289062 213.433594 C 185.289062 213.839844 185.324219 214.203125 185.394531 214.527344 C 185.464844 214.851562 185.609375 215.121094 185.824219 215.339844 C 186.035156 215.558594 186.347656 215.667969 186.753906 215.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 190.640625 214.5625 L 190.640625 211.566406 L 189.738281 211.566406 L 189.738281 211.285156 C 190.214844 211.285156 190.566406 211.0625 190.789062 210.621094 C 191.011719 210.175781 191.121094 209.699219 191.121094 209.183594 L 191.433594 209.183594 L 191.433594 211.183594 L 192.964844 211.183594 L 192.964844 211.566406 L 191.433594 211.566406 L 191.433594 214.539062 C 191.433594 214.839844 191.480469 215.101562 191.585938 215.328125 C 191.683594 215.554688 191.867188 215.667969 192.128906 215.667969 C 192.378906 215.667969 192.558594 215.550781 192.667969 215.3125 C 192.777344 215.074219 192.832031 214.816406 192.832031 214.539062 L 192.832031 213.902344 L 193.140625 213.902344 L 193.140625 214.5625 C 193.140625 214.789062 193.101562 215.011719 193.019531 215.234375 C 192.9375 215.453125 192.8125 215.636719 192.648438 215.777344 C 192.484375 215.917969 192.285156 215.992188 192.050781 215.992188 C 191.617188 215.992188 191.273438 215.863281 191.019531 215.601562 C 190.769531 215.34375 190.640625 214.996094 190.640625 214.5625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 194.242188 214.800781 C 194.242188 214.371094 194.414062 214.019531 194.753906 213.75 C 195.09375 213.480469 195.5 213.289062 195.976562 213.175781 C 196.453125 213.066406 196.90625 213.011719 197.335938 213.011719 L 197.335938 212.5625 C 197.335938 212.355469 197.289062 212.152344 197.199219 211.953125 C 197.105469 211.757812 196.972656 211.597656 196.800781 211.472656 C 196.625 211.347656 196.433594 211.285156 196.222656 211.285156 C 195.742188 211.285156 195.378906 211.390625 195.128906 211.605469 C 195.265625 211.605469 195.378906 211.660156 195.46875 211.765625 C 195.558594 211.871094 195.601562 211.992188 195.601562 212.128906 C 195.601562 212.269531 195.550781 212.394531 195.449219 212.5 C 195.347656 212.601562 195.226562 212.652344 195.085938 212.652344 C 194.9375 212.652344 194.8125 212.601562 194.710938 212.5 C 194.609375 212.394531 194.558594 212.269531 194.558594 212.128906 C 194.558594 211.746094 194.730469 211.460938 195.078125 211.273438 C 195.421875 211.089844 195.804688 210.996094 196.222656 210.996094 C 196.519531 210.996094 196.816406 211.058594 197.113281 211.183594 C 197.410156 211.308594 197.652344 211.488281 197.84375 211.722656 C 198.03125 211.957031 198.125 212.230469 198.125 212.542969 L 198.125 214.988281 C 198.125 215.128906 198.15625 215.261719 198.21875 215.378906 C 198.277344 215.5 198.371094 215.558594 198.496094 215.558594 C 198.617188 215.558594 198.707031 215.496094 198.765625 215.375 C 198.824219 215.253906 198.851562 215.125 198.851562 214.988281 L 198.851562 214.292969 L 199.167969 214.292969 L 199.167969 214.988281 C 199.167969 215.148438 199.128906 215.304688 199.042969 215.449219 C 198.960938 215.597656 198.84375 215.714844 198.699219 215.800781 C 198.554688 215.886719 198.402344 215.933594 198.238281 215.933594 C 198.023438 215.933594 197.839844 215.851562 197.6875 215.6875 C 197.535156 215.523438 197.449219 215.328125 197.429688 215.101562 C 197.296875 215.371094 197.101562 215.585938 196.839844 215.75 C 196.574219 215.910156 196.296875 215.992188 195.996094 215.992188 C 195.722656 215.992188 195.449219 215.949219 195.183594 215.867188 C 194.914062 215.785156 194.691406 215.65625 194.511719 215.480469 C 194.332031 215.304688 194.242188 215.078125 194.242188 214.800781 Z M 195.128906 214.800781 C 195.128906 215.054688 195.222656 215.269531 195.410156 215.445312 C 195.597656 215.617188 195.816406 215.703125 196.070312 215.703125 C 196.304688 215.703125 196.519531 215.644531 196.710938 215.527344 C 196.898438 215.410156 197.054688 215.253906 197.164062 215.050781 C 197.277344 214.851562 197.335938 214.636719 197.335938 214.417969 L 197.335938 213.285156 C 197.003906 213.285156 196.664062 213.339844 196.324219 213.449219 C 195.980469 213.554688 195.695312 213.722656 195.46875 213.953125 C 195.242188 214.183594 195.128906 214.46875 195.128906 214.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 200.414062 214.5625 L 200.414062 211.566406 L 199.511719 211.566406 L 199.511719 211.285156 C 199.988281 211.285156 200.339844 211.0625 200.5625 210.621094 C 200.785156 210.175781 200.894531 209.699219 200.894531 209.183594 L 201.203125 209.183594 L 201.203125 211.183594 L 202.738281 211.183594 L 202.738281 211.566406 L 201.203125 211.566406 L 201.203125 214.539062 C 201.203125 214.839844 201.257812 215.101562 201.355469 215.328125 C 201.460938 215.554688 201.640625 215.667969 201.902344 215.667969 C 202.152344 215.667969 202.332031 215.550781 202.441406 215.3125 C 202.550781 215.074219 202.605469 214.816406 202.605469 214.539062 L 202.605469 213.902344 L 202.914062 213.902344 L 202.914062 214.5625 C 202.914062 214.789062 202.875 215.011719 202.792969 215.234375 C 202.710938 215.453125 202.589844 215.636719 202.421875 215.777344 C 202.257812 215.917969 202.058594 215.992188 201.824219 215.992188 C 201.394531 215.992188 201.050781 215.863281 200.796875 215.601562 C 200.539062 215.34375 200.414062 214.996094 200.414062 214.5625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 203.917969 215.867188 L 203.917969 215.488281 C 204.167969 215.488281 204.371094 215.46875 204.527344 215.429688 C 204.6875 215.390625 204.765625 215.292969 204.765625 215.140625 L 204.765625 212.175781 C 204.765625 211.898438 204.714844 211.726562 204.605469 211.660156 C 204.496094 211.597656 204.285156 211.566406 203.964844 211.566406 L 203.964844 211.183594 L 205.535156 211.066406 L 205.535156 215.140625 C 205.535156 215.292969 205.601562 215.390625 205.738281 215.429688 C 205.875 215.46875 206.058594 215.488281 206.289062 215.488281 L 206.289062 215.867188 Z M 204.378906 209.199219 C 204.378906 209.039062 204.441406 208.898438 204.5625 208.777344 C 204.683594 208.65625 204.820312 208.597656 204.972656 208.597656 C 205.078125 208.597656 205.179688 208.625 205.273438 208.679688 C 205.367188 208.734375 205.441406 208.808594 205.496094 208.902344 C 205.546875 209 205.574219 209.097656 205.574219 209.199219 C 205.574219 209.355469 205.515625 209.492188 205.394531 209.613281 C 205.273438 209.730469 205.132812 209.789062 204.972656 209.789062 C 204.820312 209.789062 204.683594 209.730469 204.5625 209.613281 C 204.441406 209.492188 204.378906 209.355469 204.378906 209.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 209.355469 215.992188 C 208.921875 215.992188 208.519531 215.882812 208.144531 215.660156 C 207.773438 215.441406 207.480469 215.144531 207.265625 214.769531 C 207.050781 214.398438 206.941406 213.992188 206.941406 213.554688 C 206.941406 213.222656 207 212.902344 207.117188 212.59375 C 207.234375 212.289062 207.40625 212.011719 207.628906 211.769531 C 207.851562 211.527344 208.109375 211.339844 208.402344 211.203125 C 208.695312 211.066406 209.011719 210.996094 209.355469 210.996094 C 209.800781 210.996094 210.207031 211.113281 210.574219 211.351562 C 210.941406 211.585938 211.230469 211.902344 211.441406 212.296875 C 211.65625 212.691406 211.761719 213.109375 211.761719 213.554688 C 211.761719 213.988281 211.652344 214.394531 211.4375 214.765625 C 211.222656 215.140625 210.929688 215.441406 210.558594 215.660156 C 210.191406 215.882812 209.789062 215.992188 209.355469 215.992188 Z M 209.355469 215.667969 C 209.9375 215.667969 210.324219 215.460938 210.519531 215.039062 C 210.710938 214.621094 210.808594 214.085938 210.808594 213.433594 C 210.808594 213.070312 210.789062 212.769531 210.75 212.527344 C 210.710938 212.289062 210.625 212.070312 210.496094 211.875 C 210.414062 211.757812 210.3125 211.652344 210.1875 211.5625 C 210.0625 211.46875 209.929688 211.402344 209.789062 211.355469 C 209.648438 211.308594 209.503906 211.285156 209.355469 211.285156 C 209.128906 211.285156 208.914062 211.335938 208.710938 211.4375 C 208.507812 211.542969 208.339844 211.6875 208.203125 211.875 C 208.070312 212.082031 207.984375 212.308594 207.945312 212.554688 C 207.910156 212.800781 207.890625 213.09375 207.890625 213.433594 C 207.890625 213.839844 207.925781 214.203125 207.996094 214.527344 C 208.066406 214.851562 208.210938 215.121094 208.425781 215.339844 C 208.640625 215.558594 208.949219 215.667969 209.355469 215.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 212.457031 215.867188 L 212.457031 215.488281 C 212.707031 215.488281 212.910156 215.46875 213.070312 215.429688 C 213.226562 215.390625 213.308594 215.292969 213.308594 215.140625 L 213.308594 212.175781 C 213.308594 211.980469 213.277344 211.839844 213.21875 211.753906 C 213.160156 211.667969 213.078125 211.613281 212.96875 211.59375 C 212.859375 211.574219 212.6875 211.566406 212.457031 211.566406 L 212.457031 211.183594 L 214.03125 211.066406 L 214.03125 212.128906 C 214.183594 211.816406 214.398438 211.558594 214.683594 211.363281 C 214.96875 211.164062 215.277344 211.066406 215.613281 211.066406 C 216.113281 211.066406 216.492188 211.1875 216.746094 211.425781 C 216.996094 211.667969 217.125 212.035156 217.125 212.53125 L 217.125 215.140625 C 217.125 215.292969 217.203125 215.390625 217.363281 215.429688 C 217.519531 215.46875 217.726562 215.488281 217.976562 215.488281 L 217.976562 215.867188 L 215.484375 215.867188 L 215.484375 215.488281 C 215.730469 215.488281 215.933594 215.46875 216.09375 215.429688 C 216.253906 215.390625 216.335938 215.292969 216.335938 215.140625 L 216.335938 212.5625 C 216.335938 212.207031 216.28125 211.917969 216.179688 211.691406 C 216.074219 211.460938 215.867188 211.347656 215.550781 211.347656 C 215.128906 211.347656 214.78125 211.515625 214.511719 211.851562 C 214.238281 212.1875 214.105469 212.570312 214.105469 213 L 214.105469 215.140625 C 214.105469 215.292969 214.183594 215.390625 214.34375 215.429688 C 214.503906 215.46875 214.703125 215.488281 214.945312 215.488281 L 214.945312 215.867188 L 212.457031 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 222.242188 215.867188 L 222.242188 215.488281 C 222.988281 215.488281 223.363281 215.371094 223.363281 215.140625 L 223.363281 209.171875 C 223.363281 208.941406 222.988281 208.824219 222.242188 208.824219 L 222.242188 208.445312 L 228.234375 208.445312 L 228.539062 210.933594 L 228.222656 210.933594 C 228.175781 210.476562 228.109375 210.117188 228.027344 209.851562 C 227.941406 209.589844 227.820312 209.382812 227.664062 209.230469 C 227.503906 209.082031 227.292969 208.976562 227.023438 208.914062 C 226.757812 208.855469 226.390625 208.824219 225.921875 208.824219 L 224.929688 208.824219 C 224.796875 208.824219 224.695312 208.832031 224.625 208.84375 C 224.550781 208.855469 224.492188 208.886719 224.445312 208.9375 C 224.398438 208.988281 224.375 209.066406 224.375 209.171875 L 224.375 211.96875 L 225.148438 211.96875 C 225.519531 211.96875 225.789062 211.9375 225.964844 211.871094 C 226.140625 211.804688 226.257812 211.683594 226.320312 211.511719 C 226.386719 211.339844 226.417969 211.066406 226.417969 210.691406 L 226.734375 210.691406 L 226.734375 213.621094 L 226.417969 213.621094 C 226.417969 213.25 226.386719 212.976562 226.320312 212.804688 C 226.257812 212.628906 226.140625 212.507812 225.964844 212.441406 C 225.789062 212.375 225.519531 212.34375 225.148438 212.34375 L 224.375 212.34375 L 224.375 215.140625 C 224.375 215.371094 224.839844 215.488281 225.769531 215.488281 L 225.769531 215.867188 L 222.242188 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 228.449219 215.867188 L 228.449219 215.488281 C 228.695312 215.488281 228.898438 215.46875 229.0625 215.429688 C 229.222656 215.390625 229.300781 215.292969 229.300781 215.140625 L 229.300781 212.175781 C 229.300781 211.980469 229.269531 211.839844 229.214844 211.753906 C 229.152344 211.667969 229.070312 211.613281 228.960938 211.59375 C 228.851562 211.574219 228.683594 211.566406 228.449219 211.566406 L 228.449219 211.183594 L 230.007812 211.066406 L 230.007812 212.128906 C 230.121094 211.8125 230.289062 211.554688 230.503906 211.359375 C 230.722656 211.164062 230.984375 211.066406 231.292969 211.066406 C 231.507812 211.066406 231.699219 211.128906 231.867188 211.257812 C 232.039062 211.382812 232.121094 211.554688 232.121094 211.765625 C 232.121094 211.894531 232.078125 212.007812 231.984375 212.105469 C 231.890625 212.199219 231.773438 212.25 231.636719 212.25 C 231.5 212.25 231.386719 212.203125 231.289062 212.105469 C 231.191406 212.011719 231.144531 211.898438 231.144531 211.765625 C 231.144531 211.570312 231.214844 211.429688 231.355469 211.347656 L 231.292969 211.347656 C 231 211.347656 230.761719 211.453125 230.574219 211.667969 C 230.390625 211.878906 230.257812 212.144531 230.179688 212.457031 C 230.101562 212.773438 230.0625 213.070312 230.0625 213.355469 L 230.0625 215.140625 C 230.0625 215.371094 230.414062 215.488281 231.117188 215.488281 L 231.117188 215.867188 L 228.449219 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 235.183594 215.992188 C 234.742188 215.992188 234.335938 215.875 233.96875 215.644531 C 233.597656 215.410156 233.308594 215.101562 233.097656 214.714844 C 232.886719 214.328125 232.78125 213.917969 232.78125 213.484375 C 232.78125 213.058594 232.878906 212.65625 233.066406 212.277344 C 233.261719 211.894531 233.527344 211.585938 233.875 211.351562 C 234.21875 211.113281 234.605469 210.996094 235.03125 210.996094 C 235.363281 210.996094 235.652344 211.050781 235.898438 211.164062 C 236.144531 211.273438 236.347656 211.429688 236.507812 211.628906 C 236.664062 211.828125 236.785156 212.0625 236.867188 212.328125 C 236.945312 212.597656 236.988281 212.890625 236.988281 213.214844 C 236.988281 213.308594 236.949219 213.355469 236.875 213.355469 L 233.730469 213.355469 L 233.730469 213.472656 C 233.730469 214.074219 233.851562 214.589844 234.09375 215.023438 C 234.335938 215.453125 234.730469 215.667969 235.28125 215.667969 C 235.503906 215.667969 235.710938 215.621094 235.898438 215.523438 C 236.089844 215.425781 236.253906 215.289062 236.390625 215.109375 C 236.53125 214.933594 236.625 214.742188 236.675781 214.539062 C 236.683594 214.515625 236.699219 214.492188 236.71875 214.476562 C 236.738281 214.457031 236.757812 214.445312 236.78125 214.445312 L 236.875 214.445312 C 236.949219 214.445312 236.988281 214.492188 236.988281 214.585938 C 236.886719 214.996094 236.664062 215.332031 236.324219 215.59375 C 235.984375 215.859375 235.605469 215.992188 235.183594 215.992188 Z M 233.742188 213.085938 L 236.21875 213.085938 C 236.21875 212.8125 236.179688 212.539062 236.105469 212.257812 C 236.027344 211.980469 235.902344 211.746094 235.722656 211.5625 C 235.546875 211.375 235.316406 211.285156 235.03125 211.285156 C 234.621094 211.285156 234.304688 211.476562 234.078125 211.859375 C 233.855469 212.246094 233.742188 212.652344 233.742188 213.085938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 240.621094 217.976562 L 240.621094 217.59375 C 240.871094 217.59375 241.074219 217.574219 241.230469 217.535156 C 241.390625 217.492188 241.46875 217.398438 241.46875 217.25 L 241.46875 215.234375 C 241.300781 215.460938 241.089844 215.644531 240.832031 215.78125 C 240.574219 215.921875 240.300781 215.992188 240.015625 215.992188 C 239.691406 215.992188 239.390625 215.925781 239.113281 215.789062 C 238.832031 215.65625 238.589844 215.472656 238.382812 215.242188 C 238.175781 215.011719 238.015625 214.746094 237.898438 214.441406 C 237.785156 214.140625 237.726562 213.832031 237.726562 213.519531 C 237.726562 213.089844 237.832031 212.6875 238.042969 212.304688 C 238.253906 211.925781 238.546875 211.625 238.914062 211.402344 C 239.285156 211.179688 239.683594 211.066406 240.109375 211.066406 C 240.417969 211.066406 240.703125 211.15625 240.964844 211.328125 C 241.226562 211.5 241.4375 211.734375 241.59375 212.019531 L 241.980469 211.066406 L 242.265625 211.066406 L 242.265625 217.25 C 242.265625 217.398438 242.347656 217.492188 242.507812 217.535156 C 242.664062 217.574219 242.867188 217.59375 243.109375 217.59375 L 243.109375 217.976562 Z M 240.082031 215.703125 C 240.402344 215.703125 240.6875 215.597656 240.941406 215.382812 C 241.195312 215.167969 241.382812 214.898438 241.503906 214.574219 L 241.503906 212.664062 C 241.429688 212.320312 241.277344 212.015625 241.042969 211.761719 C 240.808594 211.503906 240.527344 211.378906 240.203125 211.378906 C 239.953125 211.378906 239.730469 211.441406 239.539062 211.574219 C 239.347656 211.703125 239.183594 211.878906 239.054688 212.101562 C 238.925781 212.320312 238.832031 212.558594 238.765625 212.8125 C 238.703125 213.066406 238.671875 213.304688 238.671875 213.53125 C 238.671875 213.824219 238.722656 214.140625 238.824219 214.480469 C 238.929688 214.820312 239.085938 215.109375 239.296875 215.347656 C 239.507812 215.585938 239.769531 215.703125 240.082031 215.703125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 244.339844 214.574219 L 244.339844 212.175781 C 244.339844 211.980469 244.308594 211.839844 244.25 211.753906 C 244.191406 211.667969 244.109375 211.613281 243.996094 211.59375 C 243.890625 211.574219 243.71875 211.566406 243.488281 211.566406 L 243.488281 211.183594 L 245.136719 211.066406 L 245.136719 214.574219 C 245.136719 214.855469 245.15625 215.074219 245.195312 215.234375 C 245.238281 215.390625 245.324219 215.507812 245.457031 215.585938 C 245.589844 215.664062 245.800781 215.703125 246.089844 215.703125 C 246.480469 215.703125 246.789062 215.542969 247.019531 215.214844 C 247.25 214.890625 247.367188 214.519531 247.367188 214.105469 L 247.367188 212.175781 C 247.367188 211.980469 247.335938 211.839844 247.273438 211.753906 C 247.214844 211.667969 247.132812 211.613281 247.023438 211.59375 C 246.914062 211.574219 246.746094 211.566406 246.515625 211.566406 L 246.515625 211.183594 L 248.15625 211.066406 L 248.15625 214.878906 C 248.15625 215.070312 248.1875 215.210938 248.246094 215.296875 C 248.304688 215.386719 248.386719 215.4375 248.496094 215.457031 C 248.605469 215.476562 248.773438 215.488281 249.007812 215.488281 L 249.007812 215.867188 L 247.394531 215.992188 L 247.394531 215.070312 C 247.261719 215.34375 247.074219 215.566406 246.835938 215.738281 C 246.597656 215.90625 246.328125 215.992188 246.035156 215.992188 C 245.515625 215.992188 245.105469 215.882812 244.796875 215.660156 C 244.492188 215.441406 244.339844 215.078125 244.339844 214.574219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 251.980469 215.992188 C 251.539062 215.992188 251.136719 215.875 250.765625 215.644531 C 250.398438 215.410156 250.105469 215.101562 249.894531 214.714844 C 249.683594 214.328125 249.578125 213.917969 249.578125 213.484375 C 249.578125 213.058594 249.675781 212.65625 249.867188 212.277344 C 250.058594 211.894531 250.328125 211.585938 250.671875 211.351562 C 251.019531 211.113281 251.402344 210.996094 251.828125 210.996094 C 252.160156 210.996094 252.449219 211.050781 252.695312 211.164062 C 252.941406 211.273438 253.144531 211.429688 253.304688 211.628906 C 253.464844 211.828125 253.585938 212.0625 253.664062 212.328125 C 253.746094 212.597656 253.785156 212.890625 253.785156 213.214844 C 253.785156 213.308594 253.746094 213.355469 253.675781 213.355469 L 250.527344 213.355469 L 250.527344 213.472656 C 250.527344 214.074219 250.648438 214.589844 250.890625 215.023438 C 251.132812 215.453125 251.53125 215.667969 252.082031 215.667969 C 252.304688 215.667969 252.507812 215.621094 252.699219 215.523438 C 252.886719 215.425781 253.050781 215.289062 253.191406 215.109375 C 253.328125 214.933594 253.425781 214.742188 253.476562 214.539062 C 253.480469 214.515625 253.496094 214.492188 253.515625 214.476562 C 253.535156 214.457031 253.558594 214.445312 253.578125 214.445312 L 253.675781 214.445312 C 253.746094 214.445312 253.785156 214.492188 253.785156 214.585938 C 253.683594 214.996094 253.464844 215.332031 253.121094 215.59375 C 252.78125 215.859375 252.402344 215.992188 251.980469 215.992188 Z M 250.539062 213.085938 L 253.019531 213.085938 C 253.019531 212.8125 252.980469 212.539062 252.902344 212.257812 C 252.828125 211.980469 252.699219 211.746094 252.523438 211.5625 C 252.34375 211.375 252.113281 211.285156 251.828125 211.285156 C 251.417969 211.285156 251.101562 211.476562 250.878906 211.859375 C 250.652344 212.246094 250.539062 212.652344 250.539062 213.085938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 254.484375 215.867188 L 254.484375 215.488281 C 254.734375 215.488281 254.9375 215.46875 255.097656 215.429688 C 255.253906 215.390625 255.332031 215.292969 255.332031 215.140625 L 255.332031 212.175781 C 255.332031 211.980469 255.304688 211.839844 255.246094 211.753906 C 255.1875 211.667969 255.101562 211.613281 254.992188 211.59375 C 254.882812 211.574219 254.714844 211.566406 254.484375 211.566406 L 254.484375 211.183594 L 256.058594 211.066406 L 256.058594 212.128906 C 256.207031 211.816406 256.425781 211.558594 256.710938 211.363281 C 256.996094 211.164062 257.304688 211.066406 257.640625 211.066406 C 258.140625 211.066406 258.519531 211.1875 258.769531 211.425781 C 259.023438 211.667969 259.152344 212.035156 259.152344 212.53125 L 259.152344 215.140625 C 259.152344 215.292969 259.230469 215.390625 259.390625 215.429688 C 259.546875 215.46875 259.75 215.488281 260 215.488281 L 260 215.867188 L 257.511719 215.867188 L 257.511719 215.488281 C 257.757812 215.488281 257.960938 215.46875 258.121094 215.429688 C 258.28125 215.390625 258.359375 215.292969 258.359375 215.140625 L 258.359375 212.5625 C 258.359375 212.207031 258.308594 211.917969 258.207031 211.691406 C 258.101562 211.460938 257.894531 211.347656 257.578125 211.347656 C 257.15625 211.347656 256.808594 211.515625 256.535156 211.851562 C 256.265625 212.1875 256.128906 212.570312 256.128906 213 L 256.128906 215.140625 C 256.128906 215.292969 256.210938 215.390625 256.371094 215.429688 C 256.53125 215.46875 256.730469 215.488281 256.972656 215.488281 L 256.972656 215.867188 L 254.484375 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 262.976562 215.992188 C 262.539062 215.992188 262.140625 215.875 261.785156 215.648438 C 261.425781 215.421875 261.144531 215.117188 260.941406 214.734375 C 260.734375 214.355469 260.632812 213.949219 260.632812 213.519531 C 260.632812 213.09375 260.734375 212.6875 260.9375 212.292969 C 261.140625 211.902344 261.421875 211.585938 261.78125 211.351562 C 262.140625 211.113281 262.539062 210.996094 262.976562 210.996094 C 263.402344 210.996094 263.789062 211.082031 264.136719 211.246094 C 264.484375 211.410156 264.65625 211.683594 264.65625 212.0625 C 264.65625 212.203125 264.605469 212.324219 264.507812 212.429688 C 264.40625 212.535156 264.285156 212.589844 264.140625 212.589844 C 263.996094 212.589844 263.875 212.535156 263.773438 212.429688 C 263.671875 212.324219 263.621094 212.203125 263.621094 212.0625 C 263.621094 211.9375 263.660156 211.828125 263.742188 211.734375 C 263.824219 211.640625 263.925781 211.582031 264.042969 211.554688 C 263.792969 211.394531 263.441406 211.3125 262.988281 211.3125 C 262.640625 211.3125 262.359375 211.429688 262.148438 211.660156 C 261.933594 211.890625 261.785156 212.175781 261.703125 212.511719 C 261.617188 212.851562 261.578125 213.1875 261.578125 213.519531 C 261.578125 213.871094 261.628906 214.210938 261.730469 214.539062 C 261.835938 214.867188 262.003906 215.136719 262.234375 215.351562 C 262.46875 215.5625 262.761719 215.667969 263.109375 215.667969 C 263.453125 215.667969 263.746094 215.566406 263.988281 215.355469 C 264.226562 215.148438 264.390625 214.875 264.480469 214.53125 C 264.480469 214.492188 264.507812 214.46875 264.5625 214.46875 L 264.699219 214.46875 C 264.71875 214.46875 264.734375 214.480469 264.753906 214.5 C 264.769531 214.519531 264.78125 214.539062 264.78125 214.5625 L 264.78125 214.59375 C 264.671875 215.019531 264.453125 215.363281 264.128906 215.613281 C 263.800781 215.863281 263.417969 215.992188 262.976562 215.992188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 265.90625 217.652344 C 266.042969 217.761719 266.195312 217.816406 266.363281 217.816406 C 266.820312 217.816406 267.191406 217.472656 267.480469 216.78125 L 267.851562 215.867188 L 266.222656 211.875 C 266.15625 211.742188 266.054688 211.65625 265.914062 211.621094 C 265.777344 211.582031 265.59375 211.566406 265.363281 211.566406 L 265.363281 211.183594 L 267.644531 211.183594 L 267.644531 211.566406 C 267.246094 211.566406 267.050781 211.652344 267.050781 211.824219 C 267.050781 211.855469 267.050781 211.875 267.054688 211.886719 L 268.265625 214.859375 L 269.355469 212.1875 C 269.375 212.132812 269.386719 212.070312 269.386719 212 C 269.386719 211.914062 269.363281 211.835938 269.316406 211.769531 C 269.269531 211.703125 269.207031 211.652344 269.132812 211.617188 C 269.054688 211.582031 268.96875 211.566406 268.871094 211.566406 L 268.871094 211.183594 L 270.679688 211.183594 L 270.679688 211.566406 C 270.453125 211.566406 270.257812 211.617188 270.089844 211.71875 C 269.921875 211.824219 269.792969 211.976562 269.703125 212.175781 L 267.820312 216.78125 C 267.726562 217.015625 267.609375 217.230469 267.476562 217.425781 C 267.34375 217.621094 267.183594 217.78125 266.988281 217.910156 C 266.800781 218.035156 266.589844 218.097656 266.363281 218.097656 C 266.097656 218.097656 265.863281 218.011719 265.664062 217.835938 C 265.464844 217.660156 265.363281 217.445312 265.363281 217.1875 C 265.363281 217.050781 265.40625 216.933594 265.5 216.84375 C 265.59375 216.75 265.707031 216.707031 265.84375 216.707031 C 265.933594 216.707031 266.015625 216.726562 266.089844 216.765625 C 266.164062 216.808594 266.21875 216.863281 266.257812 216.933594 C 266.296875 217.003906 266.316406 217.085938 266.316406 217.1875 C 266.316406 217.300781 266.277344 217.40625 266.203125 217.5 C 266.128906 217.589844 266.027344 217.640625 265.90625 217.652344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 275.90625 218.585938 L 275.90625 207.71875 L 277.394531 207.71875 L 277.394531 208.152344 L 276.347656 208.152344 L 276.347656 218.152344 L 277.394531 218.152344 L 277.394531 218.585938 L 275.90625 218.585938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 277.960938 215.867188 L 277.960938 215.488281 C 278.207031 215.488281 278.410156 215.46875 278.570312 215.429688 C 278.730469 215.390625 278.808594 215.292969 278.808594 215.140625 L 278.808594 212.175781 C 278.808594 211.980469 278.78125 211.839844 278.722656 211.753906 C 278.664062 211.667969 278.578125 211.613281 278.46875 211.59375 C 278.359375 211.574219 278.191406 211.566406 277.960938 211.566406 L 277.960938 211.183594 L 279.519531 211.066406 L 279.519531 212.128906 C 279.632812 211.8125 279.796875 211.554688 280.015625 211.359375 C 280.230469 211.164062 280.492188 211.066406 280.800781 211.066406 C 281.015625 211.066406 281.210938 211.128906 281.378906 211.257812 C 281.546875 211.382812 281.632812 211.554688 281.632812 211.765625 C 281.632812 211.894531 281.585938 212.007812 281.492188 212.105469 C 281.398438 212.199219 281.285156 212.25 281.148438 212.25 C 281.011719 212.25 280.894531 212.203125 280.796875 212.105469 C 280.703125 212.011719 280.65625 211.898438 280.65625 211.765625 C 280.65625 211.570312 280.726562 211.429688 280.867188 211.347656 L 280.800781 211.347656 C 280.507812 211.347656 280.269531 211.453125 280.085938 211.667969 C 279.898438 211.878906 279.765625 212.144531 279.6875 212.457031 C 279.609375 212.773438 279.570312 213.070312 279.570312 213.355469 L 279.570312 215.140625 C 279.570312 215.371094 279.921875 215.488281 280.625 215.488281 L 280.625 215.867188 L 277.960938 215.867188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 282.421875 214.800781 C 282.421875 214.371094 282.589844 214.019531 282.929688 213.75 C 283.269531 213.480469 283.675781 213.289062 284.152344 213.175781 C 284.628906 213.066406 285.082031 213.011719 285.511719 213.011719 L 285.511719 212.5625 C 285.511719 212.355469 285.464844 212.152344 285.375 211.953125 C 285.28125 211.757812 285.148438 211.597656 284.976562 211.472656 C 284.800781 211.347656 284.609375 211.285156 284.398438 211.285156 C 283.917969 211.285156 283.554688 211.390625 283.304688 211.605469 C 283.441406 211.605469 283.554688 211.660156 283.644531 211.765625 C 283.734375 211.871094 283.777344 211.992188 283.777344 212.128906 C 283.777344 212.269531 283.726562 212.394531 283.625 212.5 C 283.523438 212.601562 283.402344 212.652344 283.261719 212.652344 C 283.113281 212.652344 282.988281 212.601562 282.886719 212.5 C 282.785156 212.394531 282.734375 212.269531 282.734375 212.128906 C 282.734375 211.746094 282.910156 211.460938 283.253906 211.273438 C 283.601562 211.089844 283.980469 210.996094 284.398438 210.996094 C 284.695312 210.996094 284.992188 211.058594 285.289062 211.183594 C 285.585938 211.308594 285.828125 211.488281 286.019531 211.722656 C 286.207031 211.957031 286.304688 212.230469 286.304688 212.542969 L 286.304688 214.988281 C 286.304688 215.128906 286.332031 215.261719 286.394531 215.378906 C 286.453125 215.5 286.546875 215.558594 286.671875 215.558594 C 286.792969 215.558594 286.882812 215.496094 286.941406 215.375 C 287 215.253906 287.027344 215.125 287.027344 214.988281 L 287.027344 214.292969 L 287.34375 214.292969 L 287.34375 214.988281 C 287.34375 215.148438 287.304688 215.304688 287.21875 215.449219 C 287.136719 215.597656 287.019531 215.714844 286.878906 215.800781 C 286.730469 215.886719 286.578125 215.933594 286.414062 215.933594 C 286.199219 215.933594 286.015625 215.851562 285.863281 215.6875 C 285.710938 215.523438 285.625 215.328125 285.605469 215.101562 C 285.472656 215.371094 285.277344 215.585938 285.015625 215.75 C 284.753906 215.910156 284.472656 215.992188 284.171875 215.992188 C 283.898438 215.992188 283.628906 215.949219 283.359375 215.867188 C 283.09375 215.785156 282.867188 215.65625 282.6875 215.480469 C 282.507812 215.304688 282.421875 215.078125 282.421875 214.800781 Z M 283.304688 214.800781 C 283.304688 215.054688 283.398438 215.269531 283.585938 215.445312 C 283.773438 215.617188 283.992188 215.703125 284.246094 215.703125 C 284.480469 215.703125 284.695312 215.644531 284.886719 215.527344 C 285.078125 215.410156 285.230469 215.253906 285.34375 215.050781 C 285.453125 214.851562 285.511719 214.636719 285.511719 214.417969 L 285.511719 213.285156 C 285.179688 213.285156 284.84375 213.339844 284.5 213.449219 C 284.15625 213.554688 283.871094 213.722656 283.644531 213.953125 C 283.417969 214.183594 283.304688 214.46875 283.304688 214.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 290.136719 215.992188 C 289.707031 215.992188 289.316406 215.875 288.964844 215.644531 C 288.609375 215.410156 288.335938 215.105469 288.140625 214.726562 C 287.945312 214.347656 287.847656 213.945312 287.847656 213.519531 C 287.847656 213.082031 287.953125 212.675781 288.164062 212.300781 C 288.378906 211.921875 288.671875 211.625 289.039062 211.402344 C 289.40625 211.179688 289.8125 211.066406 290.253906 211.066406 C 290.519531 211.066406 290.769531 211.125 291.007812 211.234375 C 291.242188 211.34375 291.449219 211.5 291.625 211.699219 L 291.625 209.441406 C 291.625 209.246094 291.597656 209.101562 291.535156 209.015625 C 291.480469 208.925781 291.394531 208.875 291.289062 208.855469 C 291.179688 208.835938 291.011719 208.824219 290.78125 208.824219 L 290.78125 208.445312 L 292.386719 208.328125 L 292.386719 214.878906 C 292.386719 215.070312 292.414062 215.210938 292.472656 215.296875 C 292.53125 215.386719 292.617188 215.4375 292.726562 215.457031 C 292.835938 215.476562 293.003906 215.488281 293.230469 215.488281 L 293.230469 215.867188 L 291.589844 215.992188 L 291.589844 215.304688 C 291.402344 215.519531 291.179688 215.6875 290.921875 215.808594 C 290.664062 215.929688 290.402344 215.992188 290.136719 215.992188 Z M 289.03125 214.925781 C 289.152344 215.160156 289.316406 215.347656 289.523438 215.492188 C 289.730469 215.632812 289.953125 215.703125 290.203125 215.703125 C 290.503906 215.703125 290.777344 215.617188 291.03125 215.445312 C 291.28125 215.269531 291.46875 215.042969 291.589844 214.765625 L 291.589844 212.164062 C 291.507812 212.007812 291.402344 211.863281 291.273438 211.738281 C 291.144531 211.609375 291 211.515625 290.835938 211.449219 C 290.675781 211.382812 290.503906 211.347656 290.324219 211.347656 C 289.945312 211.347656 289.640625 211.457031 289.410156 211.671875 C 289.179688 211.886719 289.019531 212.15625 288.929688 212.488281 C 288.835938 212.820312 288.789062 213.167969 288.789062 213.53125 C 288.789062 213.824219 288.804688 214.078125 288.835938 214.292969 C 288.863281 214.507812 288.929688 214.71875 289.03125 214.925781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 294.203125 218.367188 C 294.203125 218.34375 294.203125 218.332031 294.214844 218.328125 L 297.992188 207.851562 C 298.007812 207.808594 298.03125 207.777344 298.066406 207.753906 C 298.101562 207.730469 298.144531 207.71875 298.191406 207.71875 C 298.253906 207.71875 298.304688 207.738281 298.34375 207.777344 C 298.386719 207.816406 298.40625 207.867188 298.40625 207.933594 L 298.40625 207.976562 L 294.628906 218.449219 C 294.585938 218.539062 294.515625 218.585938 294.417969 218.585938 C 294.359375 218.585938 294.308594 218.5625 294.265625 218.519531 C 294.222656 218.476562 294.203125 218.425781 294.203125 218.367188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 299.453125 215.898438 L 299.453125 214.128906 C 299.453125 214.070312 299.484375 214.042969 299.546875 214.042969 L 299.683594 214.042969 C 299.722656 214.042969 299.746094 214.070312 299.765625 214.128906 C 299.96875 215.179688 300.453125 215.703125 301.226562 215.703125 C 301.570312 215.703125 301.859375 215.625 302.09375 215.46875 C 302.324219 215.3125 302.441406 215.074219 302.441406 214.75 C 302.441406 214.515625 302.351562 214.316406 302.167969 214.152344 C 301.984375 213.988281 301.773438 213.875 301.527344 213.8125 L 300.800781 213.671875 C 300.554688 213.617188 300.332031 213.535156 300.132812 213.425781 C 299.933594 213.316406 299.769531 213.171875 299.644531 212.992188 C 299.515625 212.808594 299.453125 212.597656 299.453125 212.355469 C 299.453125 212.035156 299.535156 211.773438 299.703125 211.570312 C 299.871094 211.367188 300.089844 211.222656 300.359375 211.132812 C 300.625 211.042969 300.914062 210.996094 301.226562 210.996094 C 301.597656 210.996094 301.921875 211.097656 302.199219 211.296875 L 302.515625 211.027344 C 302.515625 211.007812 302.535156 210.996094 302.570312 210.996094 L 302.644531 210.996094 C 302.667969 210.996094 302.6875 211.007812 302.707031 211.027344 C 302.726562 211.046875 302.734375 211.066406 302.734375 211.085938 L 302.734375 212.507812 C 302.734375 212.578125 302.703125 212.613281 302.644531 212.613281 L 302.515625 212.613281 C 302.449219 212.613281 302.417969 212.578125 302.417969 212.507812 C 302.417969 212.128906 302.3125 211.824219 302.101562 211.597656 C 301.890625 211.367188 301.59375 211.253906 301.214844 211.253906 C 300.890625 211.253906 300.609375 211.3125 300.371094 211.433594 C 300.136719 211.550781 300.015625 211.757812 300.015625 212.050781 C 300.015625 212.253906 300.101562 212.417969 300.273438 212.550781 C 300.445312 212.675781 300.644531 212.769531 300.875 212.828125 L 301.609375 212.964844 C 301.859375 213.023438 302.089844 213.117188 302.304688 213.253906 C 302.519531 213.386719 302.691406 213.558594 302.816406 213.761719 C 302.941406 213.96875 303.003906 214.199219 303.003906 214.457031 C 303.003906 214.71875 302.957031 214.945312 302.867188 215.140625 C 302.777344 215.332031 302.652344 215.492188 302.488281 215.621094 C 302.328125 215.746094 302.136719 215.839844 301.917969 215.898438 C 301.699219 215.960938 301.46875 215.992188 301.226562 215.992188 C 300.773438 215.992188 300.386719 215.839844 300.066406 215.535156 L 299.671875 215.960938 C 299.671875 215.980469 299.648438 215.992188 299.609375 215.992188 L 299.546875 215.992188 C 299.484375 215.992188 299.453125 215.960938 299.453125 215.898438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 303.667969 218.585938 L 303.667969 218.152344 L 304.722656 218.152344 L 304.722656 208.152344 L 303.667969 208.152344 L 303.667969 207.71875 L 305.15625 207.71875 L 305.15625 218.585938 L 303.667969 218.585938 "/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -313.574263 L 1847.617703 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -313.574263 L 2975.68462 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -313.574263 L 1865.934535 -313.574263 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -542.640536 L 1865.934535 -542.640536 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -771.745879 L 1865.934535 -771.745879 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -1000.812152 L 1865.934535 -1000.812152 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -1229.878425 L 1865.934535 -1229.878425 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -1458.944698 L 1865.934535 -1458.944698 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -1688.05004 L 1865.934535 -1688.05004 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -1917.116313 L 1865.934535 -1917.116313 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -2146.182586 L 1865.934535 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -313.574263 L 2957.367788 -313.574263 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -542.640536 L 2957.367788 -542.640536 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -771.745879 L 2957.367788 -771.745879 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -1000.812152 L 2957.367788 -1000.812152 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -1229.878425 L 2957.367788 -1229.878425 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -1458.944698 L 2957.367788 -1458.944698 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -1688.05004 L 2957.367788 -1688.05004 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -1917.116313 L 2957.367788 -1917.116313 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:4.99568;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(0%,0%,1.197815%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2975.68462 -2146.182586 L 2957.367788 -2146.182586 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 167.582031 190.171875 L 167.582031 189.546875 L 170.265625 189.546875 L 170.265625 190.171875 L 167.582031 190.171875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 171.308594 192.046875 L 171.308594 191.777344 C 171.308594 191.757812 171.3125 191.738281 171.324219 191.71875 L 172.898438 189.980469 C 173.140625 189.722656 173.332031 189.507812 173.476562 189.332031 C 173.625 189.160156 173.769531 188.960938 173.917969 188.734375 C 174.0625 188.507812 174.179688 188.277344 174.261719 188.039062 C 174.347656 187.804688 174.386719 187.550781 174.386719 187.289062 C 174.386719 187.015625 174.335938 186.75 174.234375 186.496094 C 174.128906 186.242188 173.976562 186.042969 173.777344 185.890625 C 173.574219 185.742188 173.328125 185.664062 173.039062 185.664062 C 172.746094 185.664062 172.484375 185.753906 172.25 185.929688 C 172.015625 186.105469 171.851562 186.332031 171.757812 186.613281 C 171.785156 186.605469 171.820312 186.601562 171.863281 186.601562 C 172.015625 186.601562 172.144531 186.652344 172.253906 186.753906 C 172.359375 186.855469 172.414062 186.988281 172.414062 187.152344 C 172.414062 187.304688 172.359375 187.433594 172.253906 187.542969 C 172.144531 187.648438 172.015625 187.703125 171.863281 187.703125 C 171.707031 187.703125 171.574219 187.648438 171.46875 187.539062 C 171.359375 187.429688 171.308594 187.300781 171.308594 187.152344 C 171.308594 186.898438 171.355469 186.660156 171.449219 186.4375 C 171.546875 186.214844 171.683594 186.019531 171.863281 185.84375 C 172.042969 185.671875 172.246094 185.539062 172.472656 185.445312 C 172.699219 185.355469 172.941406 185.308594 173.191406 185.308594 C 173.574219 185.308594 173.933594 185.390625 174.269531 185.554688 C 174.601562 185.71875 174.867188 185.949219 175.058594 186.246094 C 175.253906 186.542969 175.347656 186.890625 175.347656 187.289062 C 175.347656 187.585938 175.285156 187.863281 175.15625 188.128906 C 175.027344 188.390625 174.863281 188.628906 174.664062 188.84375 C 174.464844 189.058594 174.207031 189.304688 173.894531 189.578125 C 173.578125 189.847656 173.371094 190.03125 173.273438 190.128906 L 172.128906 191.226562 L 173.101562 191.226562 C 173.578125 191.226562 173.980469 191.222656 174.300781 191.214844 C 174.621094 191.207031 174.789062 191.195312 174.808594 191.175781 C 174.890625 191.09375 174.972656 190.78125 175.054688 190.242188 L 175.347656 190.242188 L 175.0625 192.046875 L 171.308594 192.046875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 178.332031 192.269531 C 177.503906 192.269531 176.941406 191.929688 176.644531 191.246094 C 176.347656 190.566406 176.199219 189.757812 176.199219 188.820312 C 176.199219 188.234375 176.253906 187.683594 176.359375 187.167969 C 176.464844 186.648438 176.675781 186.210938 176.992188 185.851562 C 177.3125 185.488281 177.757812 185.308594 178.332031 185.308594 C 178.777344 185.308594 179.140625 185.417969 179.425781 185.632812 C 179.707031 185.851562 179.921875 186.132812 180.070312 186.476562 C 180.21875 186.824219 180.320312 187.191406 180.375 187.582031 C 180.429688 187.976562 180.457031 188.386719 180.457031 188.820312 C 180.457031 189.402344 180.402344 189.945312 180.296875 190.453125 C 180.1875 190.957031 179.980469 191.386719 179.667969 191.738281 C 179.355469 192.09375 178.910156 192.269531 178.332031 192.269531 Z M 178.332031 192.007812 C 178.707031 192.007812 178.988281 191.8125 179.171875 191.429688 C 179.359375 191.042969 179.472656 190.617188 179.515625 190.148438 C 179.558594 189.679688 179.578125 189.183594 179.578125 188.65625 C 179.578125 188.148438 179.558594 187.683594 179.515625 187.253906 C 179.472656 186.828125 179.359375 186.441406 179.175781 186.09375 C 178.992188 185.746094 178.710938 185.574219 178.332031 185.574219 C 177.949219 185.574219 177.664062 185.746094 177.484375 186.097656 C 177.300781 186.445312 177.1875 186.832031 177.144531 187.257812 C 177.101562 187.683594 177.078125 188.148438 177.078125 188.65625 C 177.078125 189.03125 177.085938 189.386719 177.105469 189.71875 C 177.121094 190.054688 177.171875 190.398438 177.246094 190.75 C 177.328125 191.101562 177.453125 191.402344 177.632812 191.644531 C 177.808594 191.886719 178.042969 192.007812 178.332031 192.007812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 167.582031 167.269531 L 167.582031 166.644531 L 170.265625 166.644531 L 170.265625 167.269531 L 167.582031 167.269531 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 171.742188 169.144531 L 171.742188 168.785156 C 172.585938 168.785156 173.007812 168.679688 173.007812 168.464844 L 173.007812 163.15625 C 172.660156 163.320312 172.21875 163.40625 171.683594 163.40625 L 171.683594 163.054688 C 172.511719 163.054688 173.136719 162.839844 173.558594 162.40625 L 173.695312 162.40625 C 173.722656 162.40625 173.742188 162.414062 173.765625 162.429688 C 173.785156 162.449219 173.796875 162.46875 173.796875 162.492188 L 173.796875 168.464844 C 173.796875 168.679688 174.21875 168.785156 175.0625 168.785156 L 175.0625 169.144531 L 171.742188 169.144531 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 176.679688 167.988281 C 176.75 168.191406 176.855469 168.371094 177 168.53125 C 177.140625 168.695312 177.3125 168.820312 177.507812 168.910156 C 177.707031 169 177.910156 169.042969 178.121094 169.042969 C 178.609375 169.042969 178.945312 168.855469 179.128906 168.476562 C 179.3125 168.097656 179.402344 167.640625 179.402344 167.101562 C 179.402344 166.867188 179.398438 166.667969 179.390625 166.507812 C 179.382812 166.347656 179.363281 166.195312 179.328125 166.046875 C 179.265625 165.808594 179.15625 165.601562 178.996094 165.421875 C 178.839844 165.246094 178.644531 165.15625 178.421875 165.15625 C 178.191406 165.15625 177.996094 165.191406 177.835938 165.261719 C 177.671875 165.332031 177.535156 165.414062 177.4375 165.503906 C 177.335938 165.597656 177.246094 165.695312 177.164062 165.792969 C 177.089844 165.894531 177.039062 165.949219 177.019531 165.957031 L 176.902344 165.957031 C 176.886719 165.957031 176.867188 165.949219 176.839844 165.925781 C 176.816406 165.90625 176.804688 165.882812 176.804688 165.863281 L 176.804688 162.488281 C 176.804688 162.46875 176.8125 162.449219 176.835938 162.429688 C 176.855469 162.414062 176.878906 162.40625 176.902344 162.40625 L 176.933594 162.40625 C 177.390625 162.625 177.871094 162.734375 178.378906 162.734375 C 178.882812 162.734375 179.367188 162.625 179.832031 162.40625 L 179.859375 162.40625 C 179.882812 162.40625 179.90625 162.414062 179.925781 162.429688 C 179.945312 162.449219 179.953125 162.46875 179.953125 162.488281 L 179.953125 162.582031 C 179.953125 162.613281 179.945312 162.628906 179.929688 162.628906 C 179.699219 162.9375 179.410156 163.175781 179.0625 163.34375 C 178.714844 163.515625 178.355469 163.597656 177.984375 163.597656 C 177.71875 163.597656 177.441406 163.5625 177.15625 163.488281 L 177.15625 165.398438 C 177.382812 165.21875 177.582031 165.089844 177.757812 165.011719 C 177.933594 164.933594 178.15625 164.894531 178.429688 164.894531 C 178.800781 164.894531 179.136719 165 179.429688 165.214844 C 179.726562 165.429688 179.949219 165.710938 180.109375 166.050781 C 180.269531 166.394531 180.347656 166.746094 180.347656 167.105469 C 180.347656 167.511719 180.246094 167.886719 180.046875 168.234375 C 179.847656 168.578125 179.578125 168.855469 179.238281 169.058594 C 178.894531 169.265625 178.523438 169.367188 178.121094 169.367188 C 177.789062 169.367188 177.484375 169.28125 177.203125 169.109375 C 176.925781 168.9375 176.707031 168.707031 176.546875 168.417969 C 176.386719 168.128906 176.304688 167.820312 176.304688 167.492188 C 176.304688 167.339844 176.355469 167.214844 176.453125 167.121094 C 176.554688 167.027344 176.679688 166.976562 176.828125 166.976562 C 176.976562 166.976562 177.097656 167.027344 177.199219 167.125 C 177.296875 167.222656 177.347656 167.34375 177.347656 167.492188 C 177.347656 167.636719 177.296875 167.761719 177.199219 167.859375 C 177.097656 167.964844 176.976562 168.015625 176.828125 168.015625 C 176.804688 168.015625 176.777344 168.011719 176.746094 168.003906 C 176.71875 168 176.695312 167.992188 176.679688 167.988281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 167.582031 144.367188 L 167.582031 143.738281 L 170.265625 143.738281 L 170.265625 144.367188 L 167.582031 144.367188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 171.742188 146.238281 L 171.742188 145.882812 C 172.585938 145.882812 173.007812 145.777344 173.007812 145.558594 L 173.007812 140.25 C 172.660156 140.417969 172.21875 140.503906 171.683594 140.503906 L 171.683594 140.152344 C 172.511719 140.152344 173.136719 139.933594 173.558594 139.5 L 173.695312 139.5 C 173.722656 139.5 173.742188 139.511719 173.765625 139.527344 C 173.785156 139.546875 173.796875 139.566406 173.796875 139.589844 L 173.796875 145.558594 C 173.796875 145.777344 174.21875 145.882812 175.0625 145.882812 L 175.0625 146.238281 L 171.742188 146.238281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 178.332031 146.460938 C 177.503906 146.460938 176.941406 146.121094 176.644531 145.441406 C 176.347656 144.761719 176.199219 143.953125 176.199219 143.015625 C 176.199219 142.429688 176.253906 141.878906 176.359375 141.359375 C 176.464844 140.84375 176.675781 140.402344 176.992188 140.042969 C 177.3125 139.683594 177.757812 139.5 178.332031 139.5 C 178.777344 139.5 179.140625 139.609375 179.425781 139.828125 C 179.707031 140.042969 179.921875 140.324219 180.070312 140.667969 C 180.21875 141.015625 180.320312 141.382812 180.375 141.777344 C 180.429688 142.167969 180.457031 142.582031 180.457031 143.015625 C 180.457031 143.59375 180.402344 144.140625 180.296875 144.644531 C 180.1875 145.148438 179.980469 145.578125 179.667969 145.933594 C 179.355469 146.285156 178.910156 146.460938 178.332031 146.460938 Z M 178.332031 146.199219 C 178.707031 146.199219 178.988281 146.007812 179.171875 145.621094 C 179.359375 145.238281 179.472656 144.8125 179.515625 144.34375 C 179.558594 143.875 179.578125 143.378906 179.578125 142.851562 C 179.578125 142.34375 179.558594 141.875 179.515625 141.449219 C 179.472656 141.019531 179.359375 140.632812 179.175781 140.285156 C 178.992188 139.9375 178.710938 139.765625 178.332031 139.765625 C 177.949219 139.765625 177.664062 139.941406 177.484375 140.289062 C 177.300781 140.636719 177.1875 141.027344 177.144531 141.453125 C 177.101562 141.875 177.078125 142.34375 177.078125 142.851562 C 177.078125 143.226562 177.085938 143.578125 177.105469 143.914062 C 177.121094 144.246094 177.171875 144.589844 177.246094 144.945312 C 177.328125 145.296875 177.453125 145.59375 177.632812 145.835938 C 177.808594 146.078125 178.042969 146.199219 178.332031 146.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 172.582031 121.464844 L 172.582031 120.835938 L 175.265625 120.835938 L 175.265625 121.464844 L 172.582031 121.464844 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 176.679688 122.183594 C 176.75 122.382812 176.855469 122.5625 177 122.722656 C 177.140625 122.886719 177.3125 123.011719 177.507812 123.101562 C 177.707031 123.191406 177.910156 123.238281 178.121094 123.238281 C 178.609375 123.238281 178.945312 123.046875 179.128906 122.667969 C 179.3125 122.289062 179.402344 121.832031 179.402344 121.292969 C 179.402344 121.058594 179.398438 120.863281 179.390625 120.703125 C 179.382812 120.542969 179.363281 120.386719 179.328125 120.238281 C 179.265625 120 179.15625 119.792969 178.996094 119.617188 C 178.839844 119.4375 178.644531 119.347656 178.421875 119.347656 C 178.191406 119.347656 177.996094 119.382812 177.835938 119.453125 C 177.671875 119.523438 177.535156 119.605469 177.4375 119.699219 C 177.335938 119.789062 177.246094 119.886719 177.164062 119.988281 C 177.089844 120.089844 177.039062 120.144531 177.019531 120.152344 L 176.902344 120.152344 C 176.886719 120.152344 176.867188 120.140625 176.839844 120.117188 C 176.816406 120.097656 176.804688 120.078125 176.804688 120.058594 L 176.804688 116.679688 C 176.804688 116.660156 176.8125 116.640625 176.835938 116.625 C 176.855469 116.605469 176.878906 116.597656 176.902344 116.597656 L 176.933594 116.597656 C 177.390625 116.816406 177.871094 116.925781 178.378906 116.925781 C 178.882812 116.925781 179.367188 116.816406 179.832031 116.597656 L 179.859375 116.597656 C 179.882812 116.597656 179.90625 116.605469 179.925781 116.625 C 179.945312 116.640625 179.953125 116.660156 179.953125 116.679688 L 179.953125 116.773438 C 179.953125 116.804688 179.945312 116.820312 179.929688 116.820312 C 179.699219 117.128906 179.410156 117.367188 179.0625 117.535156 C 178.714844 117.707031 178.355469 117.792969 177.984375 117.792969 C 177.71875 117.792969 177.441406 117.753906 177.15625 117.679688 L 177.15625 119.589844 C 177.382812 119.410156 177.582031 119.28125 177.757812 119.203125 C 177.933594 119.125 178.15625 119.085938 178.429688 119.085938 C 178.800781 119.085938 179.136719 119.191406 179.429688 119.40625 C 179.726562 119.621094 179.949219 119.902344 180.109375 120.246094 C 180.269531 120.589844 180.347656 120.941406 180.347656 121.296875 C 180.347656 121.703125 180.246094 122.082031 180.046875 122.425781 C 179.847656 122.773438 179.578125 123.046875 179.238281 123.25 C 178.894531 123.457031 178.523438 123.558594 178.121094 123.558594 C 177.789062 123.558594 177.484375 123.472656 177.203125 123.300781 C 176.925781 123.128906 176.707031 122.898438 176.546875 122.609375 C 176.386719 122.320312 176.304688 122.011719 176.304688 121.683594 C 176.304688 121.53125 176.355469 121.410156 176.453125 121.3125 C 176.554688 121.21875 176.679688 121.171875 176.828125 121.171875 C 176.976562 121.171875 177.097656 121.21875 177.199219 121.316406 C 177.296875 121.414062 177.347656 121.535156 177.347656 121.683594 C 177.347656 121.828125 177.296875 121.953125 177.199219 122.054688 C 177.097656 122.15625 176.976562 122.207031 176.828125 122.207031 C 176.804688 122.207031 176.777344 122.203125 176.746094 122.199219 C 176.71875 122.191406 176.695312 122.1875 176.679688 122.183594 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 178.332031 100.65625 C 177.503906 100.65625 176.941406 100.316406 176.644531 99.632812 C 176.347656 98.953125 176.199219 98.144531 176.199219 97.207031 C 176.199219 96.621094 176.253906 96.070312 176.359375 95.554688 C 176.464844 95.035156 176.675781 94.597656 176.992188 94.234375 C 177.3125 93.875 177.757812 93.695312 178.332031 93.695312 C 178.777344 93.695312 179.140625 93.800781 179.425781 94.019531 C 179.707031 94.234375 179.921875 94.515625 180.070312 94.863281 C 180.21875 95.207031 180.320312 95.578125 180.375 95.96875 C 180.429688 96.359375 180.457031 96.773438 180.457031 97.207031 C 180.457031 97.789062 180.402344 98.332031 180.296875 98.835938 C 180.1875 99.34375 179.980469 99.773438 179.667969 100.125 C 179.355469 100.480469 178.910156 100.65625 178.332031 100.65625 Z M 178.332031 100.390625 C 178.707031 100.390625 178.988281 100.199219 179.171875 99.816406 C 179.359375 99.429688 179.472656 99.003906 179.515625 98.535156 C 179.558594 98.066406 179.578125 97.570312 179.578125 97.042969 C 179.578125 96.535156 179.558594 96.066406 179.515625 95.640625 C 179.472656 95.214844 179.359375 94.824219 179.175781 94.480469 C 178.992188 94.132812 178.710938 93.957031 178.332031 93.957031 C 177.949219 93.957031 177.664062 94.132812 177.484375 94.480469 C 177.300781 94.832031 177.1875 95.21875 177.144531 95.644531 C 177.101562 96.070312 177.078125 96.535156 177.078125 97.042969 C 177.078125 97.417969 177.085938 97.773438 177.105469 98.105469 C 177.121094 98.4375 177.171875 98.78125 177.246094 99.136719 C 177.328125 99.488281 177.453125 99.785156 177.632812 100.027344 C 177.808594 100.269531 178.042969 100.390625 178.332031 100.390625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 176.679688 76.375 C 176.75 76.574219 176.855469 76.753906 177 76.917969 C 177.140625 77.078125 177.3125 77.203125 177.507812 77.296875 C 177.707031 77.386719 177.910156 77.429688 178.121094 77.429688 C 178.609375 77.429688 178.945312 77.238281 179.128906 76.863281 C 179.3125 76.484375 179.402344 76.023438 179.402344 75.484375 C 179.402344 75.253906 179.398438 75.054688 179.390625 74.894531 C 179.382812 74.734375 179.363281 74.578125 179.328125 74.433594 C 179.265625 74.195312 179.15625 73.984375 178.996094 73.808594 C 178.839844 73.632812 178.644531 73.542969 178.421875 73.542969 C 178.191406 73.542969 177.996094 73.578125 177.835938 73.648438 C 177.671875 73.71875 177.535156 73.800781 177.4375 73.890625 C 177.335938 73.980469 177.246094 74.078125 177.164062 74.179688 C 177.089844 74.28125 177.039062 74.335938 177.019531 74.34375 L 176.902344 74.34375 C 176.886719 74.34375 176.867188 74.335938 176.839844 74.3125 C 176.816406 74.289062 176.804688 74.269531 176.804688 74.25 L 176.804688 70.871094 C 176.804688 70.851562 176.8125 70.835938 176.835938 70.816406 C 176.855469 70.800781 176.878906 70.789062 176.902344 70.789062 L 176.933594 70.789062 C 177.390625 71.007812 177.871094 71.117188 178.378906 71.117188 C 178.882812 71.117188 179.367188 71.007812 179.832031 70.789062 L 179.859375 70.789062 C 179.882812 70.789062 179.90625 70.800781 179.925781 70.816406 C 179.945312 70.835938 179.953125 70.851562 179.953125 70.871094 L 179.953125 70.964844 C 179.953125 70.996094 179.945312 71.011719 179.929688 71.011719 C 179.699219 71.320312 179.410156 71.558594 179.0625 71.730469 C 178.714844 71.898438 178.355469 71.984375 177.984375 71.984375 C 177.71875 71.984375 177.441406 71.949219 177.15625 71.871094 L 177.15625 73.78125 C 177.382812 73.601562 177.582031 73.472656 177.757812 73.394531 C 177.933594 73.316406 178.15625 73.277344 178.429688 73.277344 C 178.800781 73.277344 179.136719 73.386719 179.429688 73.601562 C 179.726562 73.816406 179.949219 74.09375 180.109375 74.4375 C 180.269531 74.78125 180.347656 75.132812 180.347656 75.492188 C 180.347656 75.898438 180.246094 76.273438 180.046875 76.617188 C 179.847656 76.964844 179.578125 77.238281 179.238281 77.445312 C 178.894531 77.648438 178.523438 77.753906 178.121094 77.753906 C 177.789062 77.753906 177.484375 77.664062 177.203125 77.492188 C 176.925781 77.320312 176.707031 77.09375 176.546875 76.804688 C 176.386719 76.515625 176.304688 76.207031 176.304688 75.878906 C 176.304688 75.726562 176.355469 75.601562 176.453125 75.507812 C 176.554688 75.410156 176.679688 75.363281 176.828125 75.363281 C 176.976562 75.363281 177.097656 75.410156 177.199219 75.507812 C 177.296875 75.605469 177.347656 75.730469 177.347656 75.878906 C 177.347656 76.023438 177.296875 76.144531 177.199219 76.246094 C 177.097656 76.347656 176.976562 76.398438 176.828125 76.398438 C 176.804688 76.398438 176.777344 76.394531 176.746094 76.390625 C 176.71875 76.382812 176.695312 76.378906 176.679688 76.375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 171.742188 54.625 L 171.742188 54.269531 C 172.585938 54.269531 173.007812 54.160156 173.007812 53.945312 L 173.007812 48.636719 C 172.660156 48.804688 172.21875 48.886719 171.683594 48.886719 L 171.683594 48.535156 C 172.511719 48.535156 173.136719 48.320312 173.558594 47.886719 L 173.695312 47.886719 C 173.722656 47.886719 173.742188 47.894531 173.765625 47.914062 C 173.785156 47.929688 173.796875 47.949219 173.796875 47.976562 L 173.796875 53.945312 C 173.796875 54.160156 174.21875 54.269531 175.0625 54.269531 L 175.0625 54.625 L 171.742188 54.625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 178.332031 54.847656 C 177.503906 54.847656 176.941406 54.507812 176.644531 53.824219 C 176.347656 53.144531 176.199219 52.335938 176.199219 51.398438 C 176.199219 50.8125 176.253906 50.261719 176.359375 49.746094 C 176.464844 49.230469 176.675781 48.789062 176.992188 48.429688 C 177.3125 48.066406 177.757812 47.886719 178.332031 47.886719 C 178.777344 47.886719 179.140625 47.996094 179.425781 48.210938 C 179.707031 48.429688 179.921875 48.710938 180.070312 49.054688 C 180.21875 49.398438 180.320312 49.769531 180.375 50.160156 C 180.429688 50.554688 180.457031 50.964844 180.457031 51.398438 C 180.457031 51.980469 180.402344 52.523438 180.296875 53.03125 C 180.1875 53.535156 179.980469 53.964844 179.667969 54.316406 C 179.355469 54.671875 178.910156 54.847656 178.332031 54.847656 Z M 178.332031 54.585938 C 178.707031 54.585938 178.988281 54.390625 179.171875 54.007812 C 179.359375 53.621094 179.472656 53.195312 179.515625 52.730469 C 179.558594 52.261719 179.578125 51.761719 179.578125 51.234375 C 179.578125 50.726562 179.558594 50.261719 179.515625 49.835938 C 179.472656 49.40625 179.359375 49.019531 179.175781 48.671875 C 178.992188 48.324219 178.710938 48.148438 178.332031 48.148438 C 177.949219 48.148438 177.664062 48.324219 177.484375 48.675781 C 177.300781 49.023438 177.1875 49.410156 177.144531 49.835938 C 177.101562 50.261719 177.078125 50.726562 177.078125 51.234375 C 177.078125 51.609375 177.085938 51.964844 177.105469 52.296875 C 177.121094 52.632812 177.171875 52.976562 177.246094 53.328125 C 177.328125 53.683594 177.453125 53.980469 177.632812 54.222656 C 177.808594 54.464844 178.042969 54.585938 178.332031 54.585938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 171.742188 31.722656 L 171.742188 31.363281 C 172.585938 31.363281 173.007812 31.257812 173.007812 31.042969 L 173.007812 25.734375 C 172.660156 25.898438 172.21875 25.984375 171.683594 25.984375 L 171.683594 25.632812 C 172.511719 25.632812 173.136719 25.414062 173.558594 24.984375 L 173.695312 24.984375 C 173.722656 24.984375 173.742188 24.992188 173.765625 25.007812 C 173.785156 25.027344 173.796875 25.046875 173.796875 25.070312 L 173.796875 31.042969 C 173.796875 31.257812 174.21875 31.363281 175.0625 31.363281 L 175.0625 31.722656 L 171.742188 31.722656 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 176.679688 30.570312 C 176.75 30.769531 176.855469 30.949219 177 31.109375 C 177.140625 31.273438 177.3125 31.398438 177.507812 31.488281 C 177.707031 31.578125 177.910156 31.621094 178.121094 31.621094 C 178.609375 31.621094 178.945312 31.433594 179.128906 31.054688 C 179.3125 30.675781 179.402344 30.21875 179.402344 29.679688 C 179.402344 29.445312 179.398438 29.246094 179.390625 29.085938 C 179.382812 28.925781 179.363281 28.773438 179.328125 28.625 C 179.265625 28.386719 179.15625 28.179688 178.996094 28 C 178.839844 27.824219 178.644531 27.734375 178.421875 27.734375 C 178.191406 27.734375 177.996094 27.769531 177.835938 27.839844 C 177.671875 27.910156 177.535156 27.992188 177.4375 28.082031 C 177.335938 28.175781 177.246094 28.269531 177.164062 28.371094 C 177.089844 28.476562 177.039062 28.527344 177.019531 28.535156 L 176.902344 28.535156 C 176.886719 28.535156 176.867188 28.527344 176.839844 28.503906 C 176.816406 28.484375 176.804688 28.464844 176.804688 28.441406 L 176.804688 25.066406 C 176.804688 25.046875 176.8125 25.027344 176.835938 25.007812 C 176.855469 24.992188 176.878906 24.984375 176.902344 24.984375 L 176.933594 24.984375 C 177.390625 25.203125 177.871094 25.3125 178.378906 25.3125 C 178.882812 25.3125 179.367188 25.203125 179.832031 24.984375 L 179.859375 24.984375 C 179.882812 24.984375 179.90625 24.992188 179.925781 25.007812 C 179.945312 25.027344 179.953125 25.046875 179.953125 25.066406 L 179.953125 25.160156 C 179.953125 25.191406 179.945312 25.203125 179.929688 25.203125 C 179.699219 25.515625 179.410156 25.753906 179.0625 25.921875 C 178.714844 26.09375 178.355469 26.175781 177.984375 26.175781 C 177.71875 26.175781 177.441406 26.140625 177.15625 26.066406 L 177.15625 27.976562 C 177.382812 27.796875 177.582031 27.664062 177.757812 27.589844 C 177.933594 27.511719 178.15625 27.472656 178.429688 27.472656 C 178.800781 27.472656 179.136719 27.578125 179.429688 27.792969 C 179.726562 28.007812 179.949219 28.285156 180.109375 28.628906 C 180.269531 28.972656 180.347656 29.324219 180.347656 29.683594 C 180.347656 30.089844 180.246094 30.464844 180.046875 30.8125 C 179.847656 31.15625 179.578125 31.433594 179.238281 31.636719 C 178.894531 31.84375 178.523438 31.945312 178.121094 31.945312 C 177.789062 31.945312 177.484375 31.859375 177.203125 31.6875 C 176.925781 31.515625 176.707031 31.285156 176.546875 30.996094 C 176.386719 30.707031 176.304688 30.398438 176.304688 30.070312 C 176.304688 29.917969 176.355469 29.796875 176.453125 29.699219 C 176.554688 29.605469 176.679688 29.554688 176.828125 29.554688 C 176.976562 29.554688 177.097656 29.605469 177.199219 29.703125 C 177.296875 29.800781 177.347656 29.921875 177.347656 30.070312 C 177.347656 30.214844 177.296875 30.339844 177.199219 30.441406 C 177.097656 30.539062 176.976562 30.59375 176.828125 30.59375 C 176.804688 30.59375 176.777344 30.589844 176.746094 30.582031 C 176.71875 30.578125 176.695312 30.570312 176.679688 30.570312 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 171.308594 8.816406 L 171.308594 8.550781 C 171.308594 8.527344 171.3125 8.511719 171.324219 8.488281 L 172.898438 6.753906 C 173.140625 6.492188 173.332031 6.277344 173.476562 6.105469 C 173.625 5.929688 173.769531 5.730469 173.917969 5.503906 C 174.0625 5.277344 174.179688 5.046875 174.261719 4.8125 C 174.347656 4.574219 174.386719 4.324219 174.386719 4.058594 C 174.386719 3.785156 174.335938 3.519531 174.234375 3.269531 C 174.128906 3.015625 173.976562 2.8125 173.777344 2.660156 C 173.574219 2.511719 173.328125 2.4375 173.039062 2.4375 C 172.746094 2.4375 172.484375 2.523438 172.25 2.699219 C 172.015625 2.875 171.851562 3.105469 171.757812 3.386719 C 171.785156 3.378906 171.820312 3.371094 171.863281 3.371094 C 172.015625 3.371094 172.144531 3.425781 172.253906 3.527344 C 172.359375 3.628906 172.414062 3.761719 172.414062 3.921875 C 172.414062 4.074219 172.359375 4.207031 172.253906 4.3125 C 172.144531 4.421875 172.015625 4.472656 171.863281 4.472656 C 171.707031 4.472656 171.574219 4.421875 171.46875 4.308594 C 171.359375 4.199219 171.308594 4.070312 171.308594 3.921875 C 171.308594 3.671875 171.355469 3.433594 171.449219 3.210938 C 171.546875 2.988281 171.683594 2.789062 171.863281 2.613281 C 172.042969 2.441406 172.246094 2.308594 172.472656 2.21875 C 172.699219 2.125 172.941406 2.078125 173.191406 2.078125 C 173.574219 2.078125 173.933594 2.160156 174.269531 2.324219 C 174.601562 2.488281 174.867188 2.71875 175.058594 3.015625 C 175.253906 3.3125 175.347656 3.660156 175.347656 4.058594 C 175.347656 4.355469 175.285156 4.636719 175.15625 4.898438 C 175.027344 5.160156 174.863281 5.402344 174.664062 5.617188 C 174.464844 5.828125 174.207031 6.074219 173.894531 6.347656 C 173.578125 6.621094 173.371094 6.804688 173.273438 6.898438 L 172.128906 7.996094 L 173.101562 7.996094 C 173.578125 7.996094 173.980469 7.996094 174.300781 7.988281 C 174.621094 7.980469 174.789062 7.964844 174.808594 7.945312 C 174.890625 7.863281 174.972656 7.554688 175.054688 7.015625 L 175.347656 7.015625 L 175.0625 8.816406 L 171.308594 8.816406 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 178.332031 9.039062 C 177.503906 9.039062 176.941406 8.699219 176.644531 8.019531 C 176.347656 7.339844 176.199219 6.527344 176.199219 5.59375 C 176.199219 5.007812 176.253906 4.453125 176.359375 3.9375 C 176.464844 3.421875 176.675781 2.980469 176.992188 2.621094 C 177.3125 2.261719 177.757812 2.078125 178.332031 2.078125 C 178.777344 2.078125 179.140625 2.1875 179.425781 2.40625 C 179.707031 2.621094 179.921875 2.902344 180.070312 3.246094 C 180.21875 3.59375 180.320312 3.960938 180.375 4.355469 C 180.429688 4.746094 180.457031 5.160156 180.457031 5.59375 C 180.457031 6.175781 180.402344 6.71875 180.296875 7.222656 C 180.1875 7.730469 179.980469 8.15625 179.667969 8.511719 C 179.355469 8.863281 178.910156 9.039062 178.332031 9.039062 Z M 178.332031 8.777344 C 178.707031 8.777344 178.988281 8.585938 179.171875 8.199219 C 179.359375 7.816406 179.472656 7.390625 179.515625 6.921875 C 179.558594 6.453125 179.578125 5.953125 179.578125 5.429688 C 179.578125 4.921875 179.558594 4.453125 179.515625 4.027344 C 179.472656 3.597656 179.359375 3.210938 179.175781 2.863281 C 178.992188 2.515625 178.710938 2.34375 178.332031 2.34375 C 177.949219 2.34375 177.664062 2.519531 177.484375 2.867188 C 177.300781 3.214844 177.1875 3.605469 177.144531 4.027344 C 177.101562 4.453125 177.078125 4.921875 177.078125 5.429688 C 177.078125 5.804688 177.085938 6.15625 177.105469 6.492188 C 177.121094 6.824219 177.171875 7.167969 177.246094 7.519531 C 177.328125 7.875 177.453125 8.171875 177.632812 8.414062 C 177.808594 8.65625 178.042969 8.777344 178.332031 8.777344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 160.515625 146.703125 L 160.132812 146.703125 C 160.132812 145.960938 160.019531 145.585938 159.789062 145.585938 L 153.8125 145.585938 C 153.585938 145.585938 153.46875 145.960938 153.46875 146.703125 L 153.089844 146.703125 L 153.089844 142.839844 C 153.089844 142.441406 153.171875 142.046875 153.335938 141.648438 C 153.496094 141.253906 153.734375 140.925781 154.046875 140.671875 C 154.355469 140.414062 154.71875 140.289062 155.132812 140.289062 C 155.535156 140.289062 155.886719 140.417969 156.191406 140.675781 C 156.496094 140.933594 156.726562 141.257812 156.886719 141.648438 C 157.046875 142.042969 157.121094 142.4375 157.121094 142.839844 L 157.121094 144.578125 L 159.789062 144.578125 C 160.019531 144.578125 160.132812 144.207031 160.132812 143.460938 L 160.515625 143.460938 Z M 156.800781 144.609375 L 156.800781 143.132812 C 156.800781 142.734375 156.742188 142.414062 156.628906 142.164062 C 156.515625 141.917969 156.335938 141.734375 156.09375 141.621094 C 155.851562 141.503906 155.53125 141.449219 155.132812 141.449219 C 154.542969 141.449219 154.117188 141.578125 153.859375 141.835938 C 153.597656 142.097656 153.46875 142.527344 153.46875 143.132812 L 153.46875 144.058594 C 153.46875 144.191406 153.476562 144.292969 153.484375 144.367188 C 153.496094 144.4375 153.527344 144.496094 153.578125 144.542969 C 153.632812 144.585938 153.710938 144.609375 153.8125 144.609375 L 156.800781 144.609375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 160.636719 137.175781 C 160.636719 137.609375 160.527344 138.011719 160.308594 138.386719 C 160.085938 138.757812 159.789062 139.050781 159.414062 139.265625 C 159.042969 139.480469 158.640625 139.589844 158.199219 139.589844 C 157.871094 139.589844 157.550781 139.53125 157.242188 139.414062 C 156.933594 139.296875 156.65625 139.125 156.414062 138.902344 C 156.171875 138.679688 155.984375 138.421875 155.847656 138.128906 C 155.710938 137.839844 155.640625 137.519531 155.640625 137.175781 C 155.640625 136.730469 155.761719 136.324219 155.996094 135.957031 C 156.230469 135.59375 156.546875 135.300781 156.941406 135.089844 C 157.335938 134.875 157.757812 134.769531 158.199219 134.769531 C 158.632812 134.769531 159.039062 134.878906 159.414062 135.09375 C 159.789062 135.3125 160.085938 135.605469 160.308594 135.972656 C 160.527344 136.34375 160.636719 136.742188 160.636719 137.175781 Z M 160.316406 137.175781 C 160.316406 136.59375 160.105469 136.207031 159.6875 136.015625 C 159.265625 135.820312 158.730469 135.722656 158.078125 135.722656 C 157.714844 135.722656 157.414062 135.742188 157.171875 135.78125 C 156.933594 135.820312 156.714844 135.90625 156.519531 136.035156 C 156.402344 136.117188 156.300781 136.21875 156.207031 136.34375 C 156.113281 136.46875 156.046875 136.601562 156 136.742188 C 155.953125 136.882812 155.929688 137.027344 155.929688 137.175781 C 155.929688 137.402344 155.980469 137.617188 156.085938 137.820312 C 156.1875 138.023438 156.332031 138.191406 156.519531 138.328125 C 156.726562 138.460938 156.953125 138.546875 157.199219 138.585938 C 157.445312 138.621094 157.738281 138.640625 158.078125 138.640625 C 158.484375 138.640625 158.851562 138.605469 159.171875 138.535156 C 159.496094 138.464844 159.769531 138.320312 159.988281 138.105469 C 160.207031 137.894531 160.316406 137.582031 160.316406 137.175781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 160.515625 134.0625 L 160.132812 134.0625 C 160.132812 133.8125 160.113281 133.609375 160.074219 133.453125 C 160.035156 133.292969 159.941406 133.214844 159.789062 133.214844 L 154.085938 133.214844 C 153.890625 133.214844 153.746094 133.242188 153.660156 133.300781 C 153.570312 133.359375 153.519531 133.445312 153.496094 133.554688 C 153.480469 133.664062 153.46875 133.832031 153.46875 134.0625 L 153.089844 134.0625 L 152.972656 132.449219 L 159.789062 132.449219 C 159.941406 132.449219 160.035156 132.367188 160.074219 132.210938 C 160.113281 132.050781 160.132812 131.851562 160.132812 131.605469 L 160.515625 131.605469 L 160.515625 134.0625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 160.636719 128.640625 C 160.636719 129.082031 160.519531 129.484375 160.289062 129.855469 C 160.058594 130.222656 159.746094 130.511719 159.359375 130.722656 C 158.972656 130.933594 158.5625 131.039062 158.132812 131.039062 C 157.703125 131.039062 157.300781 130.945312 156.921875 130.753906 C 156.539062 130.5625 156.230469 130.292969 155.996094 129.949219 C 155.761719 129.601562 155.640625 129.21875 155.640625 128.792969 C 155.640625 128.460938 155.695312 128.171875 155.808594 127.925781 C 155.921875 127.679688 156.074219 127.476562 156.273438 127.316406 C 156.472656 127.15625 156.707031 127.035156 156.972656 126.957031 C 157.242188 126.875 157.539062 126.835938 157.863281 126.835938 C 157.953125 126.835938 158.003906 126.871094 158.003906 126.949219 L 158.003906 130.089844 L 158.117188 130.089844 C 158.722656 130.089844 159.238281 129.96875 159.667969 129.726562 C 160.101562 129.484375 160.316406 129.089844 160.316406 128.539062 C 160.316406 128.316406 160.265625 128.109375 160.167969 127.921875 C 160.070312 127.734375 159.933594 127.570312 159.757812 127.429688 C 159.578125 127.292969 159.386719 127.195312 159.183594 127.144531 C 159.160156 127.136719 159.140625 127.125 159.121094 127.105469 C 159.101562 127.085938 159.089844 127.066406 159.089844 127.039062 L 159.089844 126.949219 C 159.089844 126.871094 159.136719 126.835938 159.230469 126.835938 C 159.640625 126.9375 159.980469 127.15625 160.242188 127.496094 C 160.507812 127.835938 160.636719 128.21875 160.636719 128.640625 Z M 157.734375 130.078125 L 157.734375 127.601562 C 157.460938 127.601562 157.183594 127.640625 156.902344 127.71875 C 156.625 127.792969 156.394531 127.917969 156.207031 128.097656 C 156.019531 128.273438 155.929688 128.507812 155.929688 128.792969 C 155.929688 129.203125 156.121094 129.519531 156.507812 129.742188 C 156.890625 129.96875 157.300781 130.078125 157.734375 130.078125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 160.515625 122.515625 L 160.132812 122.515625 C 160.132812 121.734375 160.019531 121.34375 159.789062 121.34375 L 153.8125 121.34375 C 153.585938 121.34375 153.46875 121.734375 153.46875 122.515625 L 153.089844 122.515625 L 153.089844 119.152344 L 153.46875 119.152344 C 153.46875 119.9375 153.585938 120.332031 153.8125 120.332031 L 159.789062 120.332031 C 160.019531 120.332031 160.132812 119.9375 160.132812 119.152344 L 160.515625 119.152344 L 160.515625 122.515625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 160.515625 118.503906 L 160.132812 118.503906 C 160.132812 118.253906 160.113281 118.050781 160.074219 117.894531 C 160.035156 117.734375 159.941406 117.65625 159.789062 117.65625 L 156.820312 117.65625 C 156.625 117.65625 156.484375 117.683594 156.398438 117.742188 C 156.3125 117.800781 156.257812 117.886719 156.238281 117.996094 C 156.21875 118.105469 156.210938 118.273438 156.210938 118.503906 L 155.828125 118.503906 L 155.710938 116.929688 L 156.773438 116.929688 C 156.460938 116.78125 156.203125 116.5625 156.007812 116.28125 C 155.8125 115.996094 155.710938 115.683594 155.710938 115.347656 C 155.710938 114.519531 156.050781 114.027344 156.730469 113.878906 C 156.425781 113.734375 156.179688 113.523438 155.992188 113.242188 C 155.804688 112.964844 155.710938 112.660156 155.710938 112.328125 C 155.710938 112 155.765625 111.722656 155.871094 111.496094 C 155.976562 111.269531 156.136719 111.101562 156.355469 110.988281 C 156.574219 110.875 156.847656 110.816406 157.175781 110.816406 L 159.789062 110.816406 C 159.941406 110.816406 160.035156 110.738281 160.074219 110.578125 C 160.113281 110.417969 160.132812 110.214844 160.132812 109.96875 L 160.515625 109.96875 L 160.515625 112.457031 L 160.132812 112.457031 C 160.132812 112.210938 160.113281 112.007812 160.074219 111.847656 C 160.035156 111.6875 159.941406 111.605469 159.789062 111.605469 L 157.203125 111.605469 C 156.84375 111.605469 156.550781 111.660156 156.328125 111.761719 C 156.105469 111.867188 155.992188 112.078125 155.992188 112.398438 C 155.992188 112.816406 156.160156 113.160156 156.496094 113.429688 C 156.832031 113.703125 157.214844 113.839844 157.644531 113.839844 L 159.789062 113.839844 C 159.941406 113.839844 160.035156 113.757812 160.074219 113.601562 C 160.113281 113.441406 160.132812 113.238281 160.132812 112.988281 L 160.515625 112.988281 L 160.515625 115.476562 L 160.132812 115.476562 C 160.132812 115.230469 160.113281 115.027344 160.074219 114.867188 C 160.035156 114.710938 159.941406 114.628906 159.789062 114.628906 L 157.203125 114.628906 C 156.855469 114.628906 156.5625 114.679688 156.335938 114.785156 C 156.105469 114.886719 155.992188 115.097656 155.992188 115.414062 C 155.992188 115.835938 156.160156 116.179688 156.496094 116.453125 C 156.832031 116.722656 157.214844 116.859375 157.644531 116.859375 L 159.789062 116.859375 C 159.941406 116.859375 160.035156 116.777344 160.074219 116.617188 C 160.113281 116.460938 160.132812 116.257812 160.132812 116.015625 L 160.515625 116.015625 L 160.515625 118.503906 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 159.449219 109.234375 C 159.015625 109.234375 158.664062 109.0625 158.394531 108.726562 C 158.125 108.386719 157.933594 107.976562 157.824219 107.5 C 157.710938 107.023438 157.65625 106.570312 157.65625 106.140625 L 157.203125 106.140625 C 157 106.140625 156.796875 106.1875 156.601562 106.28125 C 156.402344 106.371094 156.242188 106.503906 156.117188 106.679688 C 155.992188 106.851562 155.929688 107.042969 155.929688 107.253906 C 155.929688 107.734375 156.035156 108.101562 156.25 108.351562 C 156.25 108.214844 156.304688 108.101562 156.410156 108.011719 C 156.515625 107.921875 156.636719 107.875 156.773438 107.875 C 156.917969 107.875 157.039062 107.925781 157.144531 108.027344 C 157.246094 108.128906 157.300781 108.25 157.300781 108.390625 C 157.300781 108.539062 157.246094 108.664062 157.144531 108.765625 C 157.039062 108.867188 156.917969 108.917969 156.773438 108.917969 C 156.390625 108.917969 156.105469 108.746094 155.921875 108.398438 C 155.734375 108.054688 155.640625 107.671875 155.640625 107.253906 C 155.640625 106.957031 155.703125 106.660156 155.828125 106.363281 C 155.953125 106.066406 156.132812 105.824219 156.367188 105.636719 C 156.601562 105.445312 156.875 105.351562 157.1875 105.351562 L 159.636719 105.351562 C 159.777344 105.351562 159.90625 105.320312 160.023438 105.261719 C 160.144531 105.199219 160.203125 105.109375 160.203125 104.984375 C 160.203125 104.863281 160.144531 104.773438 160.023438 104.714844 C 159.902344 104.65625 159.773438 104.625 159.636719 104.625 L 158.9375 104.625 L 158.9375 104.308594 L 159.636719 104.308594 C 159.796875 104.308594 159.949219 104.351562 160.097656 104.4375 C 160.242188 104.519531 160.359375 104.632812 160.445312 104.777344 C 160.535156 104.921875 160.578125 105.078125 160.578125 105.242188 C 160.578125 105.453125 160.496094 105.640625 160.332031 105.789062 C 160.167969 105.941406 159.972656 106.027344 159.746094 106.050781 C 160.015625 106.183594 160.230469 106.378906 160.394531 106.640625 C 160.558594 106.902344 160.636719 107.183594 160.636719 107.484375 C 160.636719 107.757812 160.597656 108.027344 160.515625 108.292969 C 160.433594 108.5625 160.304688 108.785156 160.128906 108.964844 C 159.953125 109.144531 159.726562 109.234375 159.449219 109.234375 Z M 159.449219 108.351562 C 159.703125 108.351562 159.914062 108.257812 160.089844 108.070312 C 160.265625 107.882812 160.351562 107.660156 160.351562 107.40625 C 160.351562 107.171875 160.292969 106.960938 160.175781 106.769531 C 160.058594 106.578125 159.898438 106.425781 159.699219 106.3125 C 159.496094 106.199219 159.285156 106.140625 159.0625 106.140625 L 157.933594 106.140625 C 157.933594 106.472656 157.984375 106.8125 158.09375 107.15625 C 158.199219 107.5 158.367188 107.785156 158.601562 108.011719 C 158.828125 108.238281 159.113281 108.351562 159.449219 108.351562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 161.363281 103.867188 C 161.105469 103.867188 160.882812 103.773438 160.6875 103.585938 C 160.492188 103.398438 160.355469 103.175781 160.273438 102.917969 C 160.164062 103.0625 160.027344 103.171875 159.863281 103.25 C 159.695312 103.324219 159.519531 103.363281 159.332031 103.363281 C 158.992188 103.363281 158.691406 103.257812 158.429688 103.039062 C 158.101562 103.371094 157.730469 103.539062 157.3125 103.539062 C 157.085938 103.539062 156.871094 103.488281 156.671875 103.394531 C 156.472656 103.296875 156.300781 103.160156 156.15625 102.984375 C 156.011719 102.8125 155.902344 102.621094 155.824219 102.410156 C 155.75 102.199219 155.710938 101.980469 155.710938 101.757812 C 155.710938 101.324219 155.835938 100.9375 156.085938 100.59375 C 155.925781 100.445312 155.804688 100.269531 155.71875 100.066406 C 155.632812 99.863281 155.589844 99.652344 155.589844 99.433594 C 155.589844 99.277344 155.644531 99.152344 155.757812 99.050781 C 155.867188 98.953125 156 98.902344 156.15625 98.902344 C 156.246094 98.902344 156.324219 98.9375 156.390625 99.003906 C 156.457031 99.074219 156.492188 99.148438 156.492188 99.234375 C 156.492188 99.328125 156.457031 99.410156 156.390625 99.476562 C 156.324219 99.542969 156.246094 99.574219 156.15625 99.574219 C 156.023438 99.574219 155.929688 99.53125 155.875 99.445312 C 155.875 99.820312 156.003906 100.140625 156.261719 100.40625 C 156.394531 100.277344 156.554688 100.171875 156.746094 100.09375 C 156.933594 100.015625 157.121094 99.972656 157.3125 99.972656 C 157.617188 99.972656 157.890625 100.058594 158.136719 100.226562 C 158.382812 100.398438 158.574219 100.621094 158.710938 100.898438 C 158.847656 101.175781 158.914062 101.460938 158.914062 101.757812 C 158.914062 102.152344 158.808594 102.515625 158.59375 102.84375 C 158.734375 102.949219 158.890625 103 159.066406 103 C 159.257812 103 159.425781 102.9375 159.570312 102.808594 C 159.714844 102.683594 159.789062 102.523438 159.789062 102.332031 L 159.789062 101.441406 C 159.789062 101.015625 159.828125 100.625 159.90625 100.277344 C 159.984375 99.929688 160.140625 99.640625 160.371094 99.402344 C 160.605469 99.164062 160.933594 99.046875 161.363281 99.046875 C 161.683594 99.046875 161.949219 99.183594 162.15625 99.453125 C 162.367188 99.722656 162.519531 100.042969 162.613281 100.414062 C 162.703125 100.789062 162.753906 101.136719 162.753906 101.453125 C 162.753906 101.773438 162.703125 102.121094 162.613281 102.5 C 162.519531 102.878906 162.367188 103.199219 162.15625 103.464844 C 161.949219 103.734375 161.683594 103.867188 161.363281 103.867188 Z M 161.363281 103.257812 C 161.609375 103.257812 161.816406 103.160156 161.980469 102.960938 C 162.144531 102.765625 162.265625 102.527344 162.34375 102.246094 C 162.425781 101.964844 162.464844 101.699219 162.464844 101.453125 C 162.464844 101.210938 162.425781 100.945312 162.34375 100.667969 C 162.265625 100.386719 162.144531 100.152344 161.980469 99.957031 C 161.816406 99.761719 161.609375 99.664062 161.363281 99.664062 C 160.984375 99.664062 160.738281 99.835938 160.628906 100.179688 C 160.519531 100.527344 160.460938 100.945312 160.460938 101.441406 L 160.460938 102.332031 C 160.460938 102.5 160.503906 102.65625 160.582031 102.796875 C 160.660156 102.9375 160.773438 103.046875 160.914062 103.132812 C 161.058594 103.214844 161.207031 103.257812 161.363281 103.257812 Z M 158.621094 101.757812 C 158.621094 101.144531 158.1875 100.835938 157.3125 100.835938 C 156.933594 100.835938 156.621094 100.898438 156.375 101.03125 C 156.128906 101.160156 156.003906 101.402344 156.003906 101.757812 C 156.003906 102.109375 156.128906 102.351562 156.375 102.480469 C 156.621094 102.613281 156.933594 102.679688 157.3125 102.679688 C 157.550781 102.679688 157.765625 102.652344 157.960938 102.605469 C 158.15625 102.558594 158.316406 102.464844 158.4375 102.328125 C 158.5625 102.195312 158.621094 102.003906 158.621094 101.757812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 160.515625 98.34375 L 160.132812 98.34375 C 160.132812 98.09375 160.113281 97.890625 160.074219 97.730469 C 160.035156 97.570312 159.941406 97.492188 159.789062 97.492188 L 156.820312 97.492188 C 156.542969 97.492188 156.371094 97.546875 156.304688 97.652344 C 156.242188 97.761719 156.210938 97.976562 156.210938 98.296875 L 155.828125 98.296875 L 155.710938 96.726562 L 159.789062 96.726562 C 159.941406 96.726562 160.035156 96.65625 160.074219 96.519531 C 160.113281 96.382812 160.132812 96.199219 160.132812 95.972656 L 160.515625 95.972656 Z M 153.84375 97.878906 C 153.683594 97.878906 153.542969 97.820312 153.421875 97.699219 C 153.300781 97.578125 153.242188 97.441406 153.242188 97.289062 C 153.242188 97.183594 153.269531 97.082031 153.320312 96.988281 C 153.378906 96.890625 153.453125 96.816406 153.546875 96.765625 C 153.644531 96.710938 153.742188 96.683594 153.84375 96.683594 C 154 96.683594 154.136719 96.746094 154.257812 96.867188 C 154.375 96.988281 154.433594 97.128906 154.433594 97.289062 C 154.433594 97.441406 154.375 97.578125 154.257812 97.699219 C 154.136719 97.820312 154 97.878906 153.84375 97.878906 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 160.515625 95.300781 L 160.132812 95.300781 C 160.132812 95.050781 160.113281 94.847656 160.074219 94.6875 C 160.035156 94.53125 159.941406 94.453125 159.789062 94.453125 L 156.820312 94.453125 C 156.625 94.453125 156.484375 94.480469 156.398438 94.539062 C 156.3125 94.597656 156.257812 94.683594 156.238281 94.789062 C 156.21875 94.902344 156.210938 95.070312 156.210938 95.300781 L 155.828125 95.300781 L 155.710938 93.726562 L 156.773438 93.726562 C 156.460938 93.578125 156.203125 93.359375 156.007812 93.074219 C 155.8125 92.789062 155.710938 92.480469 155.710938 92.144531 C 155.710938 91.644531 155.832031 91.269531 156.070312 91.015625 C 156.3125 90.761719 156.679688 90.632812 157.175781 90.632812 L 159.789062 90.632812 C 159.941406 90.632812 160.035156 90.554688 160.074219 90.398438 C 160.113281 90.238281 160.132812 90.035156 160.132812 89.785156 L 160.515625 89.785156 L 160.515625 92.273438 L 160.132812 92.273438 C 160.132812 92.027344 160.113281 91.824219 160.074219 91.664062 C 160.035156 91.503906 159.941406 91.425781 159.789062 91.425781 L 157.203125 91.425781 C 156.855469 91.425781 156.5625 91.476562 156.335938 91.578125 C 156.105469 91.683594 155.992188 91.894531 155.992188 92.210938 C 155.992188 92.632812 156.160156 92.976562 156.496094 93.246094 C 156.832031 93.519531 157.214844 93.65625 157.644531 93.65625 L 159.789062 93.65625 C 159.941406 93.65625 160.035156 93.574219 160.074219 93.414062 C 160.113281 93.253906 160.132812 93.054688 160.132812 92.8125 L 160.515625 92.8125 L 160.515625 95.300781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 159.449219 89.082031 C 159.015625 89.082031 158.664062 88.914062 158.394531 88.574219 C 158.125 88.234375 157.933594 87.828125 157.824219 87.351562 C 157.710938 86.875 157.65625 86.421875 157.65625 85.992188 L 157.203125 85.992188 C 157 85.992188 156.796875 86.039062 156.601562 86.128906 C 156.402344 86.222656 156.242188 86.355469 156.117188 86.527344 C 155.992188 86.699219 155.929688 86.894531 155.929688 87.105469 C 155.929688 87.585938 156.035156 87.949219 156.25 88.199219 C 156.25 88.0625 156.304688 87.949219 156.410156 87.859375 C 156.515625 87.769531 156.636719 87.726562 156.773438 87.726562 C 156.917969 87.726562 157.039062 87.773438 157.144531 87.878906 C 157.246094 87.980469 157.300781 88.101562 157.300781 88.238281 C 157.300781 88.386719 157.246094 88.511719 157.144531 88.613281 C 157.039062 88.714844 156.917969 88.765625 156.773438 88.765625 C 156.390625 88.765625 156.105469 88.59375 155.921875 88.25 C 155.734375 87.902344 155.640625 87.523438 155.640625 87.105469 C 155.640625 86.808594 155.703125 86.511719 155.828125 86.214844 C 155.953125 85.917969 156.132812 85.675781 156.367188 85.484375 C 156.601562 85.296875 156.875 85.203125 157.1875 85.203125 L 159.636719 85.203125 C 159.777344 85.203125 159.90625 85.171875 160.023438 85.109375 C 160.144531 85.050781 160.203125 84.957031 160.203125 84.832031 C 160.203125 84.710938 160.144531 84.621094 160.023438 84.5625 C 159.902344 84.503906 159.773438 84.476562 159.636719 84.476562 L 158.9375 84.476562 L 158.9375 84.160156 L 159.636719 84.160156 C 159.796875 84.160156 159.949219 84.203125 160.097656 84.285156 C 160.242188 84.367188 160.359375 84.484375 160.445312 84.628906 C 160.535156 84.773438 160.578125 84.925781 160.578125 85.089844 C 160.578125 85.304688 160.496094 85.488281 160.332031 85.640625 C 160.167969 85.792969 159.972656 85.878906 159.746094 85.898438 C 160.015625 86.03125 160.230469 86.226562 160.394531 86.488281 C 160.558594 86.75 160.636719 87.03125 160.636719 87.332031 C 160.636719 87.605469 160.597656 87.875 160.515625 88.144531 C 160.433594 88.410156 160.304688 88.632812 160.128906 88.8125 C 159.953125 88.992188 159.726562 89.082031 159.449219 89.082031 Z M 159.449219 88.199219 C 159.703125 88.199219 159.914062 88.105469 160.089844 87.917969 C 160.265625 87.730469 160.351562 87.511719 160.351562 87.257812 C 160.351562 87.023438 160.292969 86.808594 160.175781 86.617188 C 160.058594 86.425781 159.898438 86.273438 159.699219 86.160156 C 159.496094 86.046875 159.285156 85.992188 159.0625 85.992188 L 157.933594 85.992188 C 157.933594 86.324219 157.984375 86.660156 158.09375 87.003906 C 158.199219 87.347656 158.367188 87.632812 158.601562 87.859375 C 158.828125 88.085938 159.113281 88.199219 159.449219 88.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 160.515625 83.738281 L 160.132812 83.738281 C 160.132812 83.492188 160.113281 83.289062 160.074219 83.132812 C 160.035156 82.972656 159.941406 82.890625 159.789062 82.890625 L 156.820312 82.890625 C 156.625 82.890625 156.484375 82.921875 156.398438 82.980469 C 156.3125 83.035156 156.257812 83.121094 156.238281 83.230469 C 156.21875 83.339844 156.210938 83.507812 156.210938 83.738281 L 155.828125 83.738281 L 155.710938 82.183594 L 156.773438 82.183594 C 156.457031 82.070312 156.199219 81.902344 156.003906 81.6875 C 155.808594 81.472656 155.710938 81.210938 155.710938 80.898438 C 155.710938 80.6875 155.773438 80.492188 155.902344 80.324219 C 156.027344 80.152344 156.199219 80.070312 156.410156 80.070312 C 156.539062 80.070312 156.652344 80.117188 156.75 80.210938 C 156.847656 80.304688 156.894531 80.417969 156.894531 80.554688 C 156.894531 80.691406 156.847656 80.808594 156.753906 80.902344 C 156.65625 81 156.542969 81.046875 156.410156 81.046875 C 156.214844 81.046875 156.074219 80.976562 155.992188 80.835938 L 155.992188 80.898438 C 155.992188 81.191406 156.101562 81.433594 156.3125 81.617188 C 156.523438 81.804688 156.789062 81.933594 157.101562 82.011719 C 157.417969 82.089844 157.71875 82.128906 158.003906 82.128906 L 159.789062 82.128906 C 160.019531 82.128906 160.132812 81.777344 160.132812 81.074219 L 160.515625 81.074219 L 160.515625 83.738281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 162.300781 78.964844 C 162.410156 78.828125 162.464844 78.679688 162.464844 78.511719 C 162.464844 78.054688 162.121094 77.679688 161.429688 77.390625 L 160.515625 77.023438 L 156.519531 78.648438 C 156.386719 78.71875 156.300781 78.820312 156.265625 78.957031 C 156.230469 79.097656 156.210938 79.28125 156.210938 79.511719 L 155.828125 79.511719 L 155.828125 77.226562 L 156.210938 77.226562 C 156.210938 77.625 156.296875 77.824219 156.46875 77.824219 C 156.5 77.824219 156.519531 77.824219 156.53125 77.820312 L 159.507812 76.605469 L 156.832031 75.519531 C 156.777344 75.5 156.714844 75.488281 156.644531 75.488281 C 156.558594 75.488281 156.480469 75.511719 156.414062 75.558594 C 156.347656 75.605469 156.296875 75.667969 156.261719 75.742188 C 156.226562 75.820312 156.210938 75.90625 156.210938 76.003906 L 155.828125 76.003906 L 155.828125 74.195312 L 156.210938 74.195312 C 156.210938 74.421875 156.261719 74.617188 156.363281 74.785156 C 156.46875 74.953125 156.621094 75.082031 156.820312 75.171875 L 161.429688 77.050781 C 161.664062 77.148438 161.878906 77.265625 162.074219 77.398438 C 162.269531 77.53125 162.429688 77.691406 162.554688 77.882812 C 162.683594 78.074219 162.746094 78.285156 162.746094 78.511719 C 162.746094 78.773438 162.65625 79.007812 162.484375 79.210938 C 162.308594 79.410156 162.089844 79.511719 161.832031 79.511719 C 161.695312 79.511719 161.582031 79.464844 161.488281 79.371094 C 161.398438 79.28125 161.351562 79.167969 161.351562 79.03125 C 161.351562 78.941406 161.371094 78.859375 161.414062 78.785156 C 161.453125 78.710938 161.511719 78.652344 161.582031 78.613281 C 161.652344 78.574219 161.734375 78.558594 161.832031 78.558594 C 161.949219 78.558594 162.054688 78.59375 162.144531 78.671875 C 162.238281 78.746094 162.289062 78.847656 162.300781 78.964844 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 160.515625 69.886719 L 160.132812 69.886719 C 160.132812 69.144531 160.019531 68.769531 159.789062 68.769531 L 153.8125 68.769531 C 153.585938 68.769531 153.46875 69.144531 153.46875 69.886719 L 153.089844 69.886719 L 153.089844 66.023438 C 153.089844 65.625 153.171875 65.230469 153.335938 64.832031 C 153.496094 64.4375 153.734375 64.109375 154.046875 63.855469 C 154.355469 63.597656 154.71875 63.472656 155.132812 63.472656 C 155.535156 63.472656 155.886719 63.601562 156.191406 63.859375 C 156.496094 64.113281 156.726562 64.441406 156.886719 64.832031 C 157.046875 65.226562 157.121094 65.621094 157.121094 66.023438 L 157.121094 67.761719 L 159.789062 67.761719 C 160.019531 67.761719 160.132812 67.390625 160.132812 66.644531 L 160.515625 66.644531 Z M 156.800781 67.792969 L 156.800781 66.316406 C 156.800781 65.917969 156.742188 65.597656 156.628906 65.347656 C 156.515625 65.101562 156.335938 64.917969 156.09375 64.804688 C 155.851562 64.6875 155.53125 64.632812 155.132812 64.632812 C 154.542969 64.632812 154.117188 64.761719 153.859375 65.019531 C 153.597656 65.28125 153.46875 65.710938 153.46875 66.316406 L 153.46875 67.242188 C 153.46875 67.375 153.476562 67.476562 153.484375 67.550781 C 153.496094 67.621094 153.527344 67.679688 153.578125 67.726562 C 153.632812 67.769531 153.710938 67.792969 153.8125 67.792969 L 156.800781 67.792969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 159.449219 62.644531 C 159.015625 62.644531 158.664062 62.472656 158.394531 62.132812 C 158.125 61.796875 157.933594 61.386719 157.824219 60.910156 C 157.710938 60.433594 157.65625 59.980469 157.65625 59.550781 L 157.203125 59.550781 C 157 59.550781 156.796875 59.597656 156.601562 59.6875 C 156.402344 59.78125 156.242188 59.914062 156.117188 60.085938 C 155.992188 60.261719 155.929688 60.453125 155.929688 60.664062 C 155.929688 61.144531 156.035156 61.507812 156.25 61.757812 C 156.25 61.621094 156.304688 61.507812 156.410156 61.421875 C 156.515625 61.328125 156.636719 61.285156 156.773438 61.285156 C 156.917969 61.285156 157.039062 61.335938 157.144531 61.4375 C 157.246094 61.539062 157.300781 61.660156 157.300781 61.800781 C 157.300781 61.949219 157.246094 62.074219 157.144531 62.175781 C 157.039062 62.277344 156.917969 62.328125 156.773438 62.328125 C 156.390625 62.328125 156.105469 62.152344 155.921875 61.808594 C 155.734375 61.464844 155.640625 61.082031 155.640625 60.664062 C 155.640625 60.367188 155.703125 60.070312 155.828125 59.773438 C 155.953125 59.476562 156.132812 59.234375 156.367188 59.046875 C 156.601562 58.855469 156.875 58.761719 157.1875 58.761719 L 159.636719 58.761719 C 159.777344 58.761719 159.90625 58.730469 160.023438 58.671875 C 160.144531 58.609375 160.203125 58.519531 160.203125 58.394531 C 160.203125 58.273438 160.144531 58.183594 160.023438 58.121094 C 159.902344 58.066406 159.773438 58.035156 159.636719 58.035156 L 158.9375 58.035156 L 158.9375 57.71875 L 159.636719 57.71875 C 159.796875 57.71875 159.949219 57.761719 160.097656 57.84375 C 160.242188 57.929688 160.359375 58.042969 160.445312 58.1875 C 160.535156 58.332031 160.578125 58.484375 160.578125 58.648438 C 160.578125 58.863281 160.496094 59.046875 160.332031 59.199219 C 160.167969 59.351562 159.972656 59.4375 159.746094 59.457031 C 160.015625 59.589844 160.230469 59.789062 160.394531 60.050781 C 160.558594 60.3125 160.636719 60.59375 160.636719 60.894531 C 160.636719 61.164062 160.597656 61.4375 160.515625 61.703125 C 160.433594 61.972656 160.304688 62.195312 160.128906 62.375 C 159.953125 62.554688 159.726562 62.644531 159.449219 62.644531 Z M 159.449219 61.757812 C 159.703125 61.757812 159.914062 61.664062 160.089844 61.476562 C 160.265625 61.289062 160.351562 61.070312 160.351562 60.816406 C 160.351562 60.582031 160.292969 60.371094 160.175781 60.179688 C 160.058594 59.988281 159.898438 59.835938 159.699219 59.722656 C 159.496094 59.609375 159.285156 59.550781 159.0625 59.550781 L 157.933594 59.550781 C 157.933594 59.882812 157.984375 60.222656 158.09375 60.5625 C 158.199219 60.90625 158.367188 61.191406 158.601562 61.421875 C 158.828125 61.644531 159.113281 61.757812 159.449219 61.757812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 160.515625 57.300781 L 160.132812 57.300781 C 160.132812 57.054688 160.113281 56.851562 160.074219 56.691406 C 160.035156 56.53125 159.941406 56.449219 159.789062 56.449219 L 156.820312 56.449219 C 156.625 56.449219 156.484375 56.480469 156.398438 56.539062 C 156.3125 56.597656 156.257812 56.679688 156.238281 56.789062 C 156.21875 56.898438 156.210938 57.070312 156.210938 57.300781 L 155.828125 57.300781 L 155.710938 55.742188 L 156.773438 55.742188 C 156.457031 55.628906 156.199219 55.464844 156.003906 55.246094 C 155.808594 55.03125 155.710938 54.769531 155.710938 54.460938 C 155.710938 54.246094 155.773438 54.054688 155.902344 53.882812 C 156.027344 53.714844 156.199219 53.628906 156.410156 53.628906 C 156.539062 53.628906 156.652344 53.675781 156.75 53.769531 C 156.847656 53.863281 156.894531 53.976562 156.894531 54.113281 C 156.894531 54.253906 156.847656 54.367188 156.753906 54.464844 C 156.65625 54.558594 156.542969 54.605469 156.410156 54.605469 C 156.214844 54.605469 156.074219 54.535156 155.992188 54.394531 L 155.992188 54.460938 C 155.992188 54.753906 156.101562 54.992188 156.3125 55.179688 C 156.523438 55.363281 156.789062 55.496094 157.101562 55.574219 C 157.417969 55.652344 157.71875 55.691406 158.003906 55.691406 L 159.789062 55.691406 C 160.019531 55.691406 160.132812 55.339844 160.132812 54.636719 L 160.515625 54.636719 L 160.515625 57.300781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,1.197815%);fill-opacity:1;" d="M 159.210938 52.171875 L 156.210938 52.171875 L 156.210938 53.070312 L 155.929688 53.070312 C 155.929688 52.59375 155.707031 52.246094 155.265625 52.023438 C 154.820312 51.800781 154.339844 51.6875 153.824219 51.6875 L 153.824219 51.378906 L 155.828125 51.378906 L 155.828125 49.84375 L 156.210938 49.84375 L 156.210938 51.378906 L 159.183594 51.378906 C 159.484375 51.378906 159.75 51.328125 159.976562 51.226562 C 160.203125 51.125 160.316406 50.945312 160.316406 50.683594 C 160.316406 50.433594 160.195312 50.253906 159.960938 50.144531 C 159.71875 50.035156 159.460938 49.980469 159.183594 49.980469 L 158.546875 49.980469 L 158.546875 49.671875 L 159.210938 49.671875 C 159.433594 49.671875 159.660156 49.710938 159.878906 49.792969 C 160.101562 49.875 160.28125 49.996094 160.425781 50.160156 C 160.566406 50.324219 160.636719 50.523438 160.636719 50.757812 C 160.636719 51.191406 160.507812 51.535156 160.246094 51.789062 C 159.988281 52.042969 159.640625 52.171875 159.210938 52.171875 "/>
<path style="fill:none;stroke-width:14.9908;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -1474.455411 L 1859.021786 -1469.845174 L 1870.386814 -1465.234936 L 1881.790897 -1460.58563 L 1893.19498 -1455.975392 L 1904.599064 -1451.326085 L 1915.964092 -1446.715848 L 1927.368175 -1442.105611 L 1938.772258 -1437.456304 L 1950.176341 -1432.846067 L 1961.54137 -1428.19676 L 1984.349536 -1418.976286 L 1995.753619 -1414.326979 L 2007.157703 -1409.716742 L 2018.522731 -1405.067435 L 2041.330897 -1395.846961 L 2052.73498 -1391.197654 L 2064.100008 -1386.587417 L 2075.504092 -1381.97718 L 2086.908175 -1377.327873 L 2098.312258 -1372.717636 L 2109.677286 -1368.107399 L 2121.08137 -1363.458092 L 2132.485453 -1358.847855 L 2143.850481 -1354.237617 L 2155.254564 -1349.588311 L 2189.466814 -1335.757599 L 2200.831842 -1331.108292 L 2235.044092 -1317.277581 L 2246.40912 -1312.628274 L 2280.621369 -1298.797563 L 2291.986398 -1294.148256 L 2326.198647 -1280.317544 L 2337.563675 -1275.668237 L 2371.775925 -1261.837526 L 2383.140953 -1257.227289 L 2394.545036 -1252.577982 L 2428.757286 -1238.747271 L 2440.122314 -1234.137034 L 2451.526397 -1230.269123 L 2474.334564 -1239.489597 L 2485.699592 -1244.099834 L 2497.103675 -1248.749141 L 2508.507759 -1253.359378 L 2519.872787 -1257.969615 L 2565.48912 -1276.410564 L 2576.854148 -1281.020801 L 2611.066397 -1294.851512 L 2622.431426 -1299.461749 L 2633.835509 -1304.111056 L 2656.643675 -1313.33153 L 2668.008703 -1317.941768 L 2702.220953 -1331.772479 L 2713.585981 -1336.382716 L 2747.798231 -1350.213427 L 2759.163259 -1354.823665 L 2793.375509 -1368.654376 L 2804.740537 -1373.264613 L 2838.952786 -1387.095324 L 2850.317815 -1391.705561 L 2884.530064 -1405.536273 L 2895.895092 -1410.14651 L 2930.107342 -1423.977221 L 2941.47237 -1428.587458 L 2952.876453 -1433.197695 L 2964.280537 -1437.768863 L 2975.68462 -1442.3791 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:14.9908;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -985.301439 L 1859.021786 -989.911676 L 1870.386814 -994.560983 L 1893.19498 -1003.781457 L 1904.599064 -1008.430764 L 1915.964092 -1013.041001 L 1927.368175 -1017.690308 L 1938.772258 -1022.300545 L 1950.176341 -1026.949852 L 1961.54137 -1031.560089 L 1972.945453 -1036.209396 L 1995.753619 -1045.42987 L 2007.157703 -1050.079177 L 2018.522731 -1054.689414 L 2029.926814 -1059.338721 L 2052.73498 -1068.559196 L 2064.100008 -1073.208502 L 2086.908175 -1082.428977 L 2098.312258 -1087.078284 L 2109.677286 -1091.688521 L 2132.485453 -1100.908995 L 2143.850481 -1105.558302 L 2166.658647 -1114.778776 L 2178.062731 -1119.428083 L 2189.466814 -1124.03832 L 2200.831842 -1128.648557 L 2212.235925 -1133.297864 L 2235.044092 -1142.518338 L 2246.40912 -1147.128576 L 2257.813203 -1151.777882 L 2280.621369 -1160.998357 L 2291.986398 -1165.608594 L 2303.390481 -1170.257901 L 2326.198647 -1179.478375 L 2337.563675 -1184.088612 L 2348.967759 -1188.698849 L 2360.371842 -1193.348156 L 2371.775925 -1197.958393 L 2383.140953 -1202.56863 L 2405.94912 -1211.789105 L 2417.353203 -1216.438411 L 2428.757286 -1221.048649 L 2440.122314 -1225.658886 L 2451.526397 -1229.526797 L 2462.930481 -1224.87749 L 2474.334564 -1220.267252 L 2485.699592 -1215.657015 L 2508.507759 -1206.436541 L 2519.872787 -1201.826304 L 2531.27687 -1197.216067 L 2542.680953 -1192.56676 L 2565.48912 -1183.346286 L 2576.854148 -1178.736049 L 2611.066397 -1164.905337 L 2622.431426 -1160.2951 L 2656.643675 -1146.464389 L 2668.008703 -1141.815082 L 2702.220953 -1127.984371 L 2713.585981 -1123.374133 L 2747.798231 -1109.543422 L 2759.163259 -1104.933185 L 2793.375509 -1091.102474 L 2804.740537 -1086.492237 L 2838.952786 -1072.661525 L 2850.317815 -1068.051288 L 2884.530064 -1054.220577 L 2895.895092 -1049.649409 L 2930.107342 -1035.818698 L 2941.47237 -1031.208461 L 2975.68462 -1017.37775 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:14.9908;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -1474.455411 L 1859.021786 -1479.104718 L 1870.386814 -1483.714955 L 1881.790897 -1488.364262 L 1893.19498 -1492.974499 L 1904.599064 -1497.623806 L 1915.964092 -1502.234043 L 1927.368175 -1506.88335 L 1938.772258 -1511.493587 L 1950.176341 -1516.142894 L 1961.54137 -1520.753131 L 1972.945453 -1525.402438 L 1984.349536 -1530.012675 L 1995.753619 -1534.661982 L 2007.157703 -1539.272219 L 2018.522731 -1543.921526 L 2029.926814 -1548.531763 L 2041.330897 -1553.18107 L 2052.73498 -1557.791307 L 2064.100008 -1562.440614 L 2075.504092 -1567.050851 L 2098.312258 -1576.349465 L 2109.677286 -1580.959702 L 2132.485453 -1590.258316 L 2143.850481 -1594.868553 L 2155.254564 -1599.51786 L 2166.658647 -1604.128097 L 2189.466814 -1613.426711 L 2200.831842 -1618.036948 L 2212.235925 -1622.686255 L 2223.640008 -1627.296492 L 2235.044092 -1631.945799 L 2246.40912 -1636.595106 L 2257.813203 -1641.205343 L 2280.621369 -1650.503957 L 2291.986398 -1655.114194 L 2314.794564 -1664.412808 L 2326.198647 -1669.023045 L 2337.563675 -1673.672352 L 2348.967759 -1678.321659 L 2360.371842 -1682.931896 L 2371.775925 -1687.581203 L 2383.140953 -1692.23051 L 2394.545036 -1696.840747 L 2428.757286 -1710.788667 L 2440.122314 -1715.437974 L 2451.526397 -1720.048212 L 2474.334564 -1729.346825 L 2485.699592 -1733.996132 L 2497.103675 -1738.606369 L 2508.507759 -1743.255676 L 2519.872787 -1747.904983 L 2531.27687 -1752.55429 L 2542.680953 -1757.164527 L 2565.48912 -1766.463141 L 2576.854148 -1771.112448 L 2588.258231 -1775.761755 L 2599.662314 -1780.371992 L 2611.066397 -1785.021299 L 2622.431426 -1789.670606 L 2656.643675 -1803.618527 L 2668.008703 -1808.267834 L 2679.412787 -1812.878071 L 2702.220953 -1822.176685 L 2713.585981 -1826.825991 L 2736.394148 -1836.124605 L 2747.798231 -1840.734842 L 2759.163259 -1845.384149 L 2793.375509 -1859.33207 L 2804.740537 -1863.981377 L 2838.952786 -1877.929298 L 2850.317815 -1882.578605 L 2884.530064 -1896.526525 L 2895.895092 -1901.175832 L 2907.299176 -1905.786069 L 2930.107342 -1915.084683 L 2941.47237 -1919.73399 L 2975.68462 -1933.681911 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
<path style="fill:none;stroke-width:14.9908;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,44.700623%,74.021912%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1847.617703 -985.301439 L 1859.021786 -980.652132 L 1870.386814 -976.041895 L 1881.790897 -971.431658 L 1904.599064 -962.133044 L 1915.964092 -957.522807 L 1927.368175 -952.91257 L 1938.772258 -948.263263 L 1950.176341 -943.653026 L 1961.54137 -939.003719 L 1972.945453 -934.393482 L 1995.753619 -925.094868 L 2007.157703 -920.484631 L 2018.522731 -915.874394 L 2041.330897 -906.57578 L 2052.73498 -901.965543 L 2064.100008 -897.316236 L 2075.504092 -892.705999 L 2086.908175 -888.056692 L 2098.312258 -883.446454 L 2109.677286 -878.797148 L 2121.08137 -874.147841 L 2132.485453 -869.537604 L 2143.850481 -864.888297 L 2155.254564 -860.278059 L 2166.658647 -855.628753 L 2178.062731 -851.018515 L 2189.466814 -846.369209 L 2200.831842 -841.719902 L 2212.235925 -837.109665 L 2235.044092 -827.811051 L 2246.40912 -823.200814 L 2269.217286 -813.9022 L 2280.621369 -809.291963 L 2291.986398 -804.642656 L 2303.390481 -799.993349 L 2314.794564 -795.383112 L 2326.198647 -790.733805 L 2337.563675 -786.084498 L 2348.967759 -781.474261 L 2371.775925 -772.175647 L 2383.140953 -767.56541 L 2417.353203 -753.617489 L 2428.757286 -749.007252 L 2440.122314 -744.357945 L 2462.930481 -735.059331 L 2474.334564 -730.449094 L 2485.699592 -725.799787 L 2508.507759 -716.501173 L 2519.872787 -711.890936 L 2565.48912 -693.293708 L 2576.854148 -688.683471 L 2611.066397 -674.735551 L 2622.431426 -670.086244 L 2633.835509 -665.436937 L 2645.239592 -660.8267 L 2656.643675 -656.177393 L 2668.008703 -651.528086 L 2702.220953 -637.580165 L 2713.585981 -632.969928 L 2747.798231 -619.022007 L 2759.163259 -614.3727 L 2793.375509 -600.424779 L 2804.740537 -595.775473 L 2816.14462 -591.126166 L 2827.548703 -586.515928 L 2838.952786 -581.866622 L 2850.317815 -577.217315 L 2884.530064 -563.269394 L 2895.895092 -558.620087 L 2930.107342 -544.672166 L 2941.47237 -540.022859 L 2975.68462 -526.074939 " transform="matrix(0.100019,0,0,0.0999813,0,221)"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 235 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 67 KiB

View File

@ -1,145 +0,0 @@
.org-bold { /* bold */ font-weight: bold; }
.org-bold-italic { /* bold-italic */ font-weight: bold; font-style: italic; }
.org-buffer-menu-buffer { /* buffer-menu-buffer */ font-weight: bold; }
.org-builtin { /* font-lock-builtin-face */ color: #7a378b; }
.org-button { /* button */ text-decoration: underline; }
.org-calendar-today { /* calendar-today */ text-decoration: underline; }
.org-change-log-acknowledgement { /* change-log-acknowledgement */ color: #b22222; }
.org-change-log-conditionals { /* change-log-conditionals */ color: #a0522d; }
.org-change-log-date { /* change-log-date */ color: #8b2252; }
.org-change-log-email { /* change-log-email */ color: #a0522d; }
.org-change-log-file { /* change-log-file */ color: #0000ff; }
.org-change-log-function { /* change-log-function */ color: #a0522d; }
.org-change-log-list { /* change-log-list */ color: #a020f0; }
.org-change-log-name { /* change-log-name */ color: #008b8b; }
.org-comint-highlight-input { /* comint-highlight-input */ font-weight: bold; }
.org-comint-highlight-prompt { /* comint-highlight-prompt */ color: #00008b; }
.org-comment { /* font-lock-comment-face */ color: #999988; font-style: italic; }
.org-comment-delimiter { /* font-lock-comment-delimiter-face */ color: #999988; font-style: italic; }
.org-completions-annotations { /* completions-annotations */ font-style: italic; }
.org-completions-common-part { /* completions-common-part */ color: #000000; background-color: #ffffff; }
.org-completions-first-difference { /* completions-first-difference */ font-weight: bold; }
.org-constant { /* font-lock-constant-face */ color: #008b8b; }
.org-diary { /* diary */ color: #ff0000; }
.org-diff-context { /* diff-context */ color: #7f7f7f; }
.org-diff-file-header { /* diff-file-header */ background-color: #b3b3b3; font-weight: bold; }
.org-diff-function { /* diff-function */ background-color: #cccccc; }
.org-diff-header { /* diff-header */ background-color: #cccccc; }
.org-diff-hunk-header { /* diff-hunk-header */ background-color: #cccccc; }
.org-diff-index { /* diff-index */ background-color: #b3b3b3; font-weight: bold; }
.org-diff-nonexistent { /* diff-nonexistent */ background-color: #b3b3b3; font-weight: bold; }
.org-diff-refine-change { /* diff-refine-change */ background-color: #d9d9d9; }
.org-dired-directory { /* dired-directory */ color: #0000ff; }
.org-dired-flagged { /* dired-flagged */ color: #ff0000; font-weight: bold; }
.org-dired-header { /* dired-header */ color: #228b22; }
.org-dired-ignored { /* dired-ignored */ color: #7f7f7f; }
.org-dired-mark { /* dired-mark */ color: #008b8b; }
.org-dired-marked { /* dired-marked */ color: #ff0000; font-weight: bold; }
.org-dired-perm-write { /* dired-perm-write */ color: #b22222; }
.org-dired-symlink { /* dired-symlink */ color: #a020f0; }
.org-dired-warning { /* dired-warning */ color: #ff0000; font-weight: bold; }
.org-doc { /* font-lock-doc-face */ color: #8b2252; }
.org-escape-glyph { /* escape-glyph */ color: #a52a2a; }
.org-file-name-shadow { /* file-name-shadow */ color: #7f7f7f; }
.org-flyspell-duplicate { /* flyspell-duplicate */ color: #cdad00; font-weight: bold; text-decoration: underline; }
.org-flyspell-incorrect { /* flyspell-incorrect */ color: #ff4500; font-weight: bold; text-decoration: underline; }
.org-fringe { /* fringe */ background-color: #f2f2f2; }
.org-function-name { /* font-lock-function-name-face */ color: teal; }
.org-header-line { /* header-line */ color: #333333; background-color: #e5e5e5; }
.org-help-argument-name { /* help-argument-name */ font-style: italic; }
.org-highlight { /* highlight */ background-color: #b4eeb4; }
.org-holiday { /* holiday */ background-color: #ffc0cb; }
.org-isearch { /* isearch */ color: #b0e2ff; background-color: #cd00cd; }
.org-isearch-fail { /* isearch-fail */ background-color: #ffc1c1; }
.org-italic { /* italic */ font-style: italic; }
.org-keyword { /* font-lock-keyword-face */ color: #0086b3; }
.org-lazy-highlight { /* lazy-highlight */ background-color: #afeeee; }
.org-link { /* link */ color: #0000ff; text-decoration: underline; }
.org-link-visited { /* link-visited */ color: #8b008b; text-decoration: underline; }
.org-log-edit-header { /* log-edit-header */ color: #a020f0; }
.org-log-edit-summary { /* log-edit-summary */ color: #0000ff; }
.org-log-edit-unknown-header { /* log-edit-unknown-header */ color: #b22222; }
.org-match { /* match */ background-color: #ffff00; }
.org-next-error { /* next-error */ background-color: #eedc82; }
.org-nobreak-space { /* nobreak-space */ color: #a52a2a; text-decoration: underline; }
.org-org-archived { /* org-archived */ color: #7f7f7f; }
.org-org-block { /* org-block */ color: #7f7f7f; }
.org-org-block-begin-line { /* org-block-begin-line */ color: #b22222; }
.org-org-block-end-line { /* org-block-end-line */ color: #b22222; }
.org-org-checkbox { /* org-checkbox */ font-weight: bold; }
.org-org-checkbox-statistics-done { /* org-checkbox-statistics-done */ color: #228b22; font-weight: bold; }
.org-org-checkbox-statistics-todo { /* org-checkbox-statistics-todo */ color: #ff0000; font-weight: bold; }
.org-org-clock-overlay { /* org-clock-overlay */ background-color: #ffff00; }
.org-org-code { /* org-code */ color: #7f7f7f; }
.org-org-column { /* org-column */ background-color: #e5e5e5; }
.org-org-column-title { /* org-column-title */ background-color: #e5e5e5; font-weight: bold; text-decoration: underline; }
.org-org-date { /* org-date */ color: #a020f0; text-decoration: underline; }
.org-org-document-info { /* org-document-info */ color: #191970; }
.org-org-document-info-keyword { /* org-document-info-keyword */ color: #7f7f7f; }
.org-org-document-title { /* org-document-title */ color: #191970; font-size: 144%; font-weight: bold; }
.org-org-done { /* org-done */ color: #228b22; font-weight: bold; }
.org-org-drawer { /* org-drawer */ color: #0000ff; }
.org-org-ellipsis { /* org-ellipsis */ color: #b8860b; text-decoration: underline; }
.org-org-footnote { /* org-footnote */ color: #a020f0; text-decoration: underline; }
.org-org-formula { /* org-formula */ color: #b22222; }
.org-org-headline-done { /* org-headline-done */ color: #bc8f8f; }
.org-org-hide { /* org-hide */ color: #ffffff; }
.org-org-latex-and-export-specials { /* org-latex-and-export-specials */ color: #8b4513; }
.org-org-level-1 { /* org-level-1 */ color: #0000ff; }
.org-org-level-2 { /* org-level-2 */ color: #a0522d; }
.org-org-level-3 { /* org-level-3 */ color: #a020f0; }
.org-org-level-4 { /* org-level-4 */ color: #b22222; }
.org-org-level-5 { /* org-level-5 */ color: #228b22; }
.org-org-level-6 { /* org-level-6 */ color: #008b8b; }
.org-org-level-7 { /* org-level-7 */ color: #7a378b; }
.org-org-level-8 { /* org-level-8 */ color: #8b2252; }
.org-org-link { /* org-link */ color: #0000ff; text-decoration: underline; }
.org-org-meta-line { /* org-meta-line */ color: #b22222; }
.org-org-mode-line-clock { /* org-mode-line-clock */ color: #000000; background-color: #bfbfbf; }
.org-org-mode-line-clock-overrun { /* org-mode-line-clock-overrun */ color: #000000; background-color: #ff0000; }
.org-org-quote { /* org-quote */ color: #7f7f7f; }
.org-org-scheduled { /* org-scheduled */ color: #006400; }
.org-org-scheduled-previously { /* org-scheduled-previously */ color: #b22222; }
.org-org-scheduled-today { /* org-scheduled-today */ color: #006400; }
.org-org-sexp-date { /* org-sexp-date */ color: #a020f0; }
.org-org-special-keyword { /* org-special-keyword */ color: #a020f0; }
.org-org-table { /* org-table */ color: #0000ff; }
.org-org-tag { /* org-tag */ font-weight: bold; }
.org-org-target { /* org-target */ text-decoration: underline; }
.org-org-time-grid { /* org-time-grid */ color: #b8860b; }
.org-org-todo { /* org-todo */ color: #ff0000; font-weight: bold; }
.org-org-upcoming-deadline { /* org-upcoming-deadline */ color: #b22222; }
.org-org-verbatim { /* org-verbatim */ color: #7f7f7f; }
.org-org-verse { /* org-verse */ color: #7f7f7f; }
.org-org-warning { /* org-warning */ color: #ff0000; font-weight: bold; }
.org-outline-1 { /* outline-1 */ color: #0000ff; }
.org-outline-2 { /* outline-2 */ color: #a0522d; }
.org-outline-3 { /* outline-3 */ color: #a020f0; }
.org-outline-4 { /* outline-4 */ color: #b22222; }
.org-outline-5 { /* outline-5 */ color: #228b22; }
.org-outline-6 { /* outline-6 */ color: #008b8b; }
.org-outline-7 { /* outline-7 */ color: #7a378b; }
.org-outline-8 { /* outline-8 */ color: #8b2252; }
.org-preprocessor { /* font-lock-preprocessor-face */ color: #7a378b; }
.org-query-replace { /* query-replace */ color: #b0e2ff; background-color: #cd00cd; }
.org-regexp-grouping-backslash { /* font-lock-regexp-grouping-backslash */ font-weight: bold; }
.org-regexp-grouping-construct { /* font-lock-regexp-grouping-construct */ font-weight: bold; }
.org-region { /* region */ background-color: #eedc82; }
.org-secondary-selection { /* secondary-selection */ background-color: #ffff00; }
.org-shadow { /* shadow */ color: #7f7f7f; }
.org-show-paren-match { /* show-paren-match */ background-color: #40e0d0; }
.org-show-paren-mismatch { /* show-paren-mismatch */ color: #ffffff; background-color: #a020f0; }
.org-string { /* font-lock-string-face */ color: #dd1144; }
.org-tool-bar { /* tool-bar */ color: #000000; background-color: #bfbfbf; }
.org-tooltip { /* tooltip */ color: #000000; background-color: #ffffe0; }
.org-trailing-whitespace { /* trailing-whitespace */ background-color: #ff0000; }
.org-type { /* font-lock-type-face */ color: #228b22; }
.org-underline { /* underline */ text-decoration: underline; }
.org-variable-name { /* font-lock-variable-name-face */ color: teal; }
.org-warning { /* font-lock-warning-face */ color: #ff0000; font-weight: bold; }
.org-widget-button { /* widget-button */ font-weight: bold; }
.org-widget-button-pressed { /* widget-button-pressed */ color: #ff0000; }
.org-widget-documentation { /* widget-documentation */ color: #006400; }
.org-widget-field { /* widget-field */ background-color: #d9d9d9; }
.org-widget-inactive { /* widget-inactive */ color: #7f7f7f; }
.org-widget-single-line-field { /* widget-single-line-field */ background-color: #d9d9d9; }

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

View File

@ -0,0 +1,324 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256.686" height="254.806" viewBox="0 0 256.686 254.806">
<defs>
<g>
<g id="glyph-0-0">
</g>
<g id="glyph-0-1">
<path d="M 5.765625 -3.5625 C 5.75 -3.609375 5.703125 -3.703125 5.578125 -3.65625 C 5.46875 -3.59375 5.5 -3.53125 5.53125 -3.46875 C 5.734375 -2.9375 5.5625 -2.640625 5.3125 -2.515625 C 5.046875 -2.390625 4.90625 -2.515625 4.75 -2.625 C 4.609375 -2.78125 4.28125 -3.265625 4.0625 -3.625 C 3.765625 -4.09375 3.4375 -4.609375 2.40625 -4.46875 C 3.0625 -5.046875 3.46875 -5.828125 3.171875 -6.453125 C 2.796875 -7.265625 1.53125 -7.453125 0.34375 -6.890625 L -2.25 -5.6875 L -2.140625 -5.453125 L -1.953125 -5.53125 C -1.328125 -5.828125 -1.28125 -5.734375 -1.140625 -5.4375 L 0.84375 -1.171875 C 0.984375 -0.875 1.015625 -0.78125 0.390625 -0.484375 L 0.203125 -0.40625 L 0.328125 -0.15625 C 0.6875 -0.359375 1.109375 -0.546875 1.484375 -0.734375 C 1.875 -0.921875 2.28125 -1.09375 2.6875 -1.25 L 2.5625 -1.5 L 2.375 -1.40625 C 1.75 -1.125 1.703125 -1.203125 1.5625 -1.5 L 0.609375 -3.53125 L 1.578125 -4 C 2.15625 -4.265625 2.578125 -4.078125 2.625 -4.0625 C 3.015625 -3.875 3.0625 -3.75 3.328125 -3.171875 C 3.578125 -2.640625 3.75 -2.265625 4.28125 -2.15625 C 4.796875 -2.015625 5.296875 -2.25 5.375 -2.28125 C 6.046875 -2.59375 5.859375 -3.375 5.765625 -3.5625 Z M 2.359375 -6.0625 C 2.6875 -5.375 2.5625 -4.703125 1.453125 -4.1875 L 0.515625 -3.734375 L -0.453125 -5.8125 C -0.546875 -6.03125 -0.5625 -6.109375 -0.421875 -6.203125 C -0.375 -6.28125 -0.109375 -6.40625 0.0625 -6.484375 C 0.765625 -6.796875 1.796875 -7.28125 2.359375 -6.0625 Z M 2.359375 -6.0625 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.109375 -3.5625 C 2.625 -4.625 1.390625 -5.078125 0.375 -4.609375 C -0.65625 -4.125 -1.046875 -2.875 -0.578125 -1.84375 C -0.09375 -0.8125 1.125 -0.421875 2.125 -0.890625 C 3.140625 -1.375 3.578125 -2.5625 3.109375 -3.5625 Z M 2.390625 -3.296875 C 2.53125 -3 2.75 -2.53125 2.71875 -2.09375 C 2.65625 -1.609375 2.359375 -1.265625 2.015625 -1.109375 C 1.625 -0.921875 1.1875 -0.96875 0.84375 -1.1875 C 0.46875 -1.421875 0.265625 -1.875 0.09375 -2.234375 C -0.046875 -2.53125 -0.25 -3 -0.21875 -3.4375 C -0.171875 -3.953125 0.1875 -4.25 0.484375 -4.390625 C 0.9375 -4.609375 1.390625 -4.515625 1.671875 -4.3125 C 2.03125 -4.046875 2.234375 -3.640625 2.390625 -3.296875 Z M 2.390625 -3.296875 "/>
</g>
<g id="glyph-0-3">
<path d="M 2.3125 -2.296875 L 2.09375 -2.765625 L 1.859375 -2.65625 L 2.0625 -2.21875 C 2.34375 -1.609375 2.234375 -1.203125 1.953125 -1.078125 C 1.390625 -0.828125 1.0625 -1.53125 0.984375 -1.671875 L -0.0625 -3.9375 L 1.125 -4.484375 L 1.015625 -4.734375 L -0.171875 -4.1875 L -0.875 -5.671875 L -1.09375 -5.5625 C -0.765625 -4.890625 -0.6875 -3.90625 -1.453125 -3.53125 L -1.359375 -3.328125 L -0.65625 -3.65625 L 0.390625 -1.40625 C 0.8125 -0.5 1.5625 -0.625 2 -0.828125 C 2.546875 -1.078125 2.578125 -1.71875 2.3125 -2.296875 Z M 2.3125 -2.296875 "/>
</g>
<g id="glyph-0-4">
<path d="M 3.6875 -2.59375 L 3.484375 -3.046875 L 3.265625 -2.953125 L 3.46875 -2.515625 C 3.515625 -2.421875 3.703125 -2.015625 3.40625 -1.875 C 3.109375 -1.734375 2.921875 -2.125 2.875 -2.25 L 2.203125 -3.6875 C 1.984375 -4.140625 1.859375 -4.421875 1.34375 -4.578125 C 0.90625 -4.703125 0.46875 -4.65625 0.046875 -4.453125 C -0.625 -4.140625 -1.015625 -3.53125 -0.78125 -3.015625 C -0.65625 -2.75 -0.421875 -2.6875 -0.21875 -2.796875 C 0.015625 -2.890625 0.078125 -3.140625 -0.015625 -3.359375 C -0.1875 -3.6875 -0.5625 -3.5625 -0.5625 -3.5625 C -0.4375 -3.875 -0.078125 -4.125 0.140625 -4.234375 C 0.5625 -4.421875 1.171875 -4.34375 1.5 -3.625 L 1.625 -3.359375 C 1.203125 -3.140625 0.609375 -2.8125 0.171875 -2.3125 C -0.265625 -1.765625 -0.25 -1.25 -0.109375 -0.921875 C 0.203125 -0.25 1.09375 -0.40625 1.640625 -0.671875 C 2.3125 -0.984375 2.40625 -1.5625 2.421875 -1.828125 C 2.625 -1.515625 2.984375 -1.34375 3.328125 -1.5 C 3.546875 -1.59375 4 -1.953125 3.6875 -2.59375 Z M 2.09375 -2.359375 C 2.453125 -1.578125 1.96875 -1.046875 1.609375 -0.875 C 1.234375 -0.703125 0.734375 -0.8125 0.546875 -1.21875 C 0.296875 -1.75 0.484375 -2.53125 1.71875 -3.171875 Z M 2.09375 -2.359375 "/>
</g>
<g id="glyph-0-5">
<path d="M 2.046875 -0.953125 L 1.921875 -1.203125 C 1.40625 -0.96875 1.34375 -0.984375 1.203125 -1.296875 L -0.1875 -4.265625 L -1.296875 -3.65625 L -1.1875 -3.40625 C -0.671875 -3.640625 -0.578125 -3.625 -0.390625 -3.21875 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.65625 -0.3125 0.8125 -0.421875 1.171875 -0.578125 C 1.296875 -0.640625 1.640625 -0.796875 2.046875 -0.953125 Z M -0.6875 -5.65625 C -0.796875 -5.890625 -1.078125 -5.984375 -1.328125 -5.875 C -1.5625 -5.75 -1.671875 -5.484375 -1.5625 -5.25 C -1.453125 -4.984375 -1.15625 -4.875 -0.921875 -5 C -0.671875 -5.109375 -0.578125 -5.390625 -0.6875 -5.65625 Z M -0.6875 -5.65625 "/>
</g>
<g id="glyph-0-6">
<path d="M 4.4375 -2.0625 L 4.3125 -2.3125 C 3.890625 -2.125 3.703125 -2.03125 3.578125 -2.296875 L 2.84375 -3.84375 C 2.53125 -4.515625 2.421875 -4.75 2.0625 -4.921875 C 1.78125 -5.0625 1.421875 -5.015625 1.015625 -4.828125 C 0.25 -4.46875 0.1875 -3.765625 0.15625 -3.484375 L 0.140625 -3.484375 L -0.21875 -4.265625 L -1.34375 -3.625 L -1.234375 -3.375 C -0.6875 -3.640625 -0.578125 -3.609375 -0.390625 -3.21875 L 0.609375 -1.046875 C 0.78125 -0.671875 0.703125 -0.640625 0.15625 -0.375 L 0.28125 -0.125 C 0.671875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.78125 1.703125 -0.8125 2.140625 -1 L 2.015625 -1.25 C 1.46875 -1 1.390625 -0.953125 1.21875 -1.328125 L 0.53125 -2.796875 C 0.140625 -3.65625 0.546875 -4.375 1.0625 -4.625 C 1.515625 -4.84375 1.828125 -4.484375 2.0625 -4 L 2.921875 -2.125 C 3.09375 -1.75 3 -1.703125 2.46875 -1.453125 L 2.59375 -1.203125 C 2.96875 -1.40625 3.109375 -1.484375 3.5 -1.671875 C 3.890625 -1.859375 4 -1.890625 4.4375 -2.0625 Z M 4.4375 -2.0625 "/>
</g>
<g id="glyph-0-7">
<path d="M 2.515625 -5.15625 C 2.453125 -5.3125 2.21875 -5.515625 1.890625 -5.375 C 1.65625 -5.265625 1.34375 -4.984375 1.203125 -4.578125 C 0.875 -4.640625 0.515625 -4.609375 0.1875 -4.4375 C -0.59375 -4.078125 -0.90625 -3.265625 -0.609375 -2.625 C -0.421875 -2.21875 -0.046875 -2.03125 0.125 -1.984375 C 0.125 -1.9375 0.03125 -1.5625 0.203125 -1.1875 C 0.328125 -0.921875 0.59375 -0.671875 0.90625 -0.640625 C 0.546875 -0.3125 0.359375 0.140625 0.53125 0.53125 C 0.796875 1.09375 1.8125 1.1875 2.859375 0.703125 C 3.859375 0.234375 4.5 -0.578125 4.21875 -1.203125 C 4.046875 -1.546875 3.734375 -1.828125 3.34375 -1.890625 C 2.765625 -1.953125 2.296875 -1.734375 1.515625 -1.375 C 1.359375 -1.296875 1.109375 -1.1875 1.015625 -1.15625 C 0.75 -1.109375 0.515625 -1.25 0.390625 -1.515625 C 0.328125 -1.65625 0.3125 -1.78125 0.328125 -1.921875 C 0.609375 -1.875 0.90625 -1.890625 1.28125 -2.0625 C 2.0625 -2.421875 2.390625 -3.25 2.09375 -3.890625 C 1.90625 -4.296875 1.53125 -4.46875 1.375 -4.515625 C 1.5625 -4.953125 1.9375 -5.125 2.046875 -5.171875 C 2.015625 -5.140625 1.96875 -5.0625 2.046875 -4.90625 C 2.078125 -4.828125 2.21875 -4.703125 2.40625 -4.796875 C 2.515625 -4.84375 2.59375 -4.984375 2.515625 -5.15625 Z M 1.46875 -3.59375 C 1.546875 -3.40625 1.921875 -2.625 1.1875 -2.28125 C 0.46875 -1.9375 0.09375 -2.71875 0.015625 -2.90625 C -0.09375 -3.140625 -0.203125 -3.421875 -0.15625 -3.6875 C -0.109375 -3.90625 0.03125 -4.125 0.265625 -4.234375 C 1 -4.578125 1.375 -3.78125 1.46875 -3.59375 Z M 3.765625 -1 C 3.984375 -0.53125 3.53125 0.125 2.765625 0.484375 C 1.96875 0.859375 1.1875 0.75 0.984375 0.296875 C 0.921875 0.171875 0.75 -0.40625 1.453125 -0.734375 L 2.1875 -1.078125 C 2.46875 -1.203125 3.453125 -1.65625 3.765625 -1 Z M 3.765625 -1 "/>
</g>
<g id="glyph-0-8">
<path d="M 3.453125 -3.4375 C 3.234375 -3.90625 2.921875 -4.1875 2.609375 -4.328125 C 2.046875 -4.625 1.640625 -4.53125 1.046875 -4.40625 L 0.265625 -4.265625 C -0.46875 -4.09375 -0.921875 -4.53125 -1.078125 -4.890625 C -1.328125 -5.421875 -1.140625 -6.15625 -0.46875 -6.484375 C 0.578125 -6.96875 1.359375 -6.375 1.875 -5.609375 C 1.953125 -5.46875 1.984375 -5.4375 2.09375 -5.484375 C 2.203125 -5.53125 2.171875 -5.578125 2.09375 -5.75 L 1.359375 -7.328125 C 1.28125 -7.484375 1.25 -7.546875 1.15625 -7.5 C 1.09375 -7.46875 1.109375 -7.453125 1.078125 -7.359375 C 1.046875 -7.140625 1.078125 -7.296875 1 -6.75 C 0.796875 -6.84375 0.1875 -7.046875 -0.578125 -6.703125 C -1.53125 -6.25 -1.859375 -5.203125 -1.46875 -4.375 C -1.171875 -3.75 -0.609375 -3.515625 -0.5625 -3.5 C -0.03125 -3.3125 0.15625 -3.34375 1.203125 -3.578125 C 1.9375 -3.71875 2.03125 -3.734375 2.421875 -3.59375 C 2.421875 -3.59375 2.84375 -3.421875 3.0625 -2.9375 C 3.328125 -2.390625 3.21875 -1.59375 2.46875 -1.25 C 1.859375 -0.953125 0.59375 -0.671875 -0.09375 -2 C -0.15625 -2.109375 -0.171875 -2.15625 -0.28125 -2.109375 C -0.390625 -2.0625 -0.359375 -1.984375 -0.28125 -1.828125 L 0.453125 -0.265625 C 0.515625 -0.109375 0.546875 -0.03125 0.640625 -0.078125 C 0.703125 -0.109375 0.703125 -0.125 0.71875 -0.234375 C 0.765625 -0.453125 0.71875 -0.296875 0.796875 -0.84375 C 1.515625 -0.59375 2.203125 -0.796875 2.59375 -0.984375 C 3.59375 -1.453125 3.859375 -2.578125 3.453125 -3.4375 Z M 3.453125 -3.4375 "/>
</g>
<g id="glyph-0-9">
<path d="M 3.015625 -2.59375 C 3 -2.640625 2.921875 -2.671875 2.859375 -2.640625 C 2.765625 -2.609375 2.78125 -2.53125 2.796875 -2.5 C 2.875 -1.53125 2.171875 -1.1875 2.0625 -1.125 C 1.671875 -0.953125 1.234375 -1.015625 0.90625 -1.203125 C 0.453125 -1.46875 0.234375 -1.953125 0.078125 -2.296875 L 2.390625 -3.375 C 2.5625 -3.453125 2.609375 -3.484375 2.53125 -3.65625 C 2.140625 -4.484375 1.3125 -5.046875 0.265625 -4.5625 C -0.71875 -4.109375 -1.0625 -2.90625 -0.59375 -1.890625 C -0.109375 -0.828125 1.140625 -0.4375 2.125 -0.890625 C 3.125 -1.359375 3.109375 -2.40625 3.015625 -2.59375 Z M 1.96875 -3.40625 L -0.015625 -2.484375 C -0.515625 -3.765625 0.140625 -4.234375 0.375 -4.34375 C 0.828125 -4.546875 1.46875 -4.453125 1.96875 -3.40625 Z M 1.96875 -3.40625 "/>
</g>
<g id="glyph-0-10">
<path d="M 4.4375 -2.0625 L 4.3125 -2.3125 C 3.75 -2.0625 3.671875 -2.09375 3.484375 -2.484375 L 2.140625 -5.359375 L 0.96875 -4.703125 L 1.078125 -4.453125 C 1.625 -4.71875 1.734375 -4.6875 1.921875 -4.296875 L 2.578125 -2.859375 C 2.921875 -2.140625 2.75 -1.421875 2.171875 -1.140625 C 1.5 -0.828125 1.296875 -1.171875 1.09375 -1.609375 L -0.15625 -4.28125 L -1.34375 -3.625 L -1.234375 -3.375 C -0.609375 -3.671875 -0.59375 -3.640625 -0.25 -2.921875 L 0.3125 -1.703125 C 0.5625 -1.171875 0.71875 -0.828125 1.21875 -0.71875 C 1.53125 -0.671875 1.90625 -0.78125 2.234375 -0.9375 C 2.640625 -1.125 2.9375 -1.484375 2.96875 -2.078125 L 2.984375 -2.09375 L 3.296875 -1.4375 Z M 4.4375 -2.0625 "/>
</g>
<g id="glyph-0-11">
<path d="M 2.515625 -2.4375 C 2.34375 -2.8125 2.078125 -2.953125 1.8125 -3.046875 C 1.40625 -3.1875 1.09375 -3.125 0.4375 -2.9375 C 0.21875 -2.890625 -0.421875 -2.71875 -0.640625 -3.1875 C -0.765625 -3.4375 -0.734375 -3.859375 0 -4.203125 C 0.890625 -4.609375 1.25 -3.984375 1.359375 -3.765625 C 1.421875 -3.6875 1.4375 -3.640625 1.53125 -3.6875 C 1.65625 -3.734375 1.640625 -3.796875 1.5625 -3.9375 L 1.203125 -4.71875 C 1.140625 -4.859375 1.09375 -4.9375 0.984375 -4.890625 C 0.9375 -4.875 0.9375 -4.875 0.875 -4.734375 C 0.875 -4.703125 0.828125 -4.59375 0.796875 -4.515625 C 0.46875 -4.578125 0.1875 -4.53125 -0.09375 -4.390625 C -1.171875 -3.890625 -1.15625 -3.171875 -0.96875 -2.765625 C -0.84375 -2.484375 -0.609375 -2.34375 -0.34375 -2.25 C 0.03125 -2.125 0.375 -2.21875 0.828125 -2.328125 C 1.28125 -2.4375 1.4375 -2.46875 1.671875 -2.4375 C 1.78125 -2.390625 2.0625 -2.34375 2.203125 -2.03125 C 2.546875 -1.3125 1.71875 -0.9375 1.609375 -0.875 C 0.78125 -0.5 0.25 -1.109375 -0.046875 -1.5 C -0.109375 -1.546875 -0.15625 -1.59375 -0.25 -1.5625 C -0.375 -1.5 -0.34375 -1.421875 -0.28125 -1.28125 L 0.203125 -0.25 C 0.265625 -0.109375 0.3125 -0.046875 0.421875 -0.09375 C 0.46875 -0.125 0.46875 -0.125 0.546875 -0.34375 C 0.546875 -0.40625 0.578125 -0.5625 0.609375 -0.609375 C 1.109375 -0.421875 1.5 -0.609375 1.703125 -0.6875 C 2.6875 -1.15625 2.765625 -1.90625 2.515625 -2.4375 Z M 2.515625 -2.4375 "/>
</g>
<g id="glyph-0-12">
<path d="M 3.53125 -3.78125 C 3.046875 -4.8125 1.875 -5.234375 0.921875 -4.78125 C 0.484375 -4.578125 0.15625 -4.21875 0 -3.75 L -0.234375 -4.25 L -1.390625 -3.609375 L -1.28125 -3.359375 C -0.6875 -3.640625 -0.640625 -3.609375 -0.46875 -3.25 L 1.296875 0.546875 C 1.46875 0.90625 1.390625 0.953125 0.84375 1.203125 L 0.96875 1.46875 C 1.34375 1.265625 1.5 1.1875 1.890625 1 C 2.28125 0.828125 2.375 0.796875 2.828125 0.59375 L 2.703125 0.328125 C 2.171875 0.59375 2.078125 0.625 1.90625 0.265625 L 1.28125 -1.078125 C 1.609375 -0.96875 2 -0.828125 2.546875 -1.078125 C 3.5 -1.53125 4.015625 -2.71875 3.53125 -3.78125 Z M 2.84375 -3.453125 C 3.265625 -2.53125 3.046875 -1.5625 2.390625 -1.25 C 2.03125 -1.078125 1.609375 -1.15625 1.296875 -1.34375 C 1.109375 -1.453125 1.09375 -1.484375 1.03125 -1.625 L 0.1875 -3.421875 C 0.234375 -4.015625 0.625 -4.390625 0.96875 -4.546875 C 1.59375 -4.828125 2.421875 -4.34375 2.84375 -3.453125 Z M 2.84375 -3.453125 "/>
</g>
<g id="glyph-0-13">
<path d="M 4.375 -2.046875 L 4.25 -2.296875 C 3.703125 -2.03125 3.609375 -2.0625 3.421875 -2.453125 L 1.125 -7.390625 L -0.03125 -6.71875 L 0.078125 -6.484375 C 0.625 -6.75 0.75 -6.71875 0.921875 -6.328125 L 1.734375 -4.578125 C 1.671875 -4.625 1.109375 -4.875 0.46875 -4.578125 C -0.53125 -4.109375 -1.03125 -2.921875 -0.546875 -1.859375 C -0.078125 -0.859375 1.140625 -0.4375 2.09375 -0.875 C 2.6875 -1.15625 2.890625 -1.65625 2.953125 -1.890625 L 3.203125 -1.390625 Z M 2.703125 -2.453125 C 2.765625 -2.296875 2.78125 -2.28125 2.734375 -2.046875 C 2.671875 -1.5625 2.359375 -1.234375 2.03125 -1.078125 C 1.6875 -0.921875 1.28125 -0.96875 0.90625 -1.21875 C 0.515625 -1.453125 0.296875 -1.921875 0.171875 -2.1875 C 0 -2.578125 -0.171875 -3.015625 -0.109375 -3.453125 C -0.03125 -3.78125 0.15625 -4.203125 0.609375 -4.40625 C 0.9375 -4.5625 1.34375 -4.546875 1.703125 -4.328125 C 1.859375 -4.25 1.875 -4.234375 1.9375 -4.09375 Z M 2.703125 -2.453125 "/>
</g>
<g id="glyph-0-14">
<path d="M 3.328125 -6.453125 C 2.9375 -7.265625 1.78125 -7.5625 0.671875 -7.046875 L -2.25 -5.6875 L -2.140625 -5.453125 L -1.953125 -5.53125 C -1.328125 -5.828125 -1.28125 -5.734375 -1.140625 -5.4375 L 0.84375 -1.171875 C 0.984375 -0.875 1.015625 -0.78125 0.390625 -0.484375 L 0.203125 -0.40625 L 0.328125 -0.15625 C 0.671875 -0.359375 1.125 -0.5625 1.5 -0.734375 C 1.875 -0.921875 2.328125 -1.125 2.703125 -1.265625 L 2.578125 -1.515625 L 2.390625 -1.421875 C 1.765625 -1.140625 1.734375 -1.21875 1.59375 -1.515625 L 0.703125 -3.421875 L 2.0625 -4.0625 C 3.1875 -4.59375 3.6875 -5.671875 3.328125 -6.453125 Z M 2.5 -6.078125 C 2.671875 -5.71875 3.078125 -4.828125 1.734375 -4.1875 L 0.5625 -3.640625 L -0.453125 -5.8125 C -0.578125 -6.09375 -0.59375 -6.171875 -0.21875 -6.34375 L 0.5625 -6.703125 C 1.90625 -7.34375 2.328125 -6.453125 2.5 -6.078125 Z M 2.5 -6.078125 "/>
</g>
<g id="glyph-0-15">
<path d="M 2.125 -0.984375 L 2 -1.234375 C 1.46875 -0.984375 1.359375 -0.9375 1.1875 -1.3125 L -1.140625 -6.328125 L -2.28125 -5.671875 L -2.171875 -5.4375 C -1.625 -5.6875 -1.515625 -5.65625 -1.34375 -5.265625 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.6875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.765625 1.71875 -0.8125 2.125 -0.984375 Z M 2.125 -0.984375 "/>
</g>
<g id="glyph-0-16">
<path d="M 0.578125 -6.53125 C 0.421875 -6.84375 -0.015625 -6.953125 -0.46875 -6.75 C -1.078125 -6.453125 -1.515625 -5.65625 -1.140625 -4.859375 L -0.703125 -3.921875 L -1.359375 -3.625 L -1.25 -3.375 L -0.59375 -3.671875 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.71875 -0.359375 0.8125 -0.421875 1.234375 -0.609375 L 2.265625 -1.0625 L 2.140625 -1.3125 L 1.984375 -1.234375 C 1.390625 -0.953125 1.328125 -1.03125 1.1875 -1.328125 L -0.03125 -3.9375 L 0.921875 -4.390625 L 0.8125 -4.640625 L -0.15625 -4.1875 L -0.59375 -5.109375 C -0.9375 -5.84375 -0.703125 -6.390625 -0.375 -6.546875 C -0.28125 -6.578125 -0.1875 -6.609375 -0.078125 -6.625 C -0.15625 -6.546875 -0.234375 -6.390625 -0.140625 -6.1875 C -0.046875 -5.96875 0.1875 -5.890625 0.390625 -5.984375 C 0.59375 -6.078125 0.671875 -6.3125 0.578125 -6.53125 Z M 0.578125 -6.53125 "/>
</g>
<g id="glyph-0-17">
<path d="M 1.59375 -4.5 C 1.46875 -4.75 1.125 -4.875 0.75 -4.703125 C 0.25 -4.46875 0.078125 -3.984375 0.125 -3.40625 L -0.265625 -4.234375 L -1.390625 -3.609375 L -1.28125 -3.359375 C -0.71875 -3.625 -0.625 -3.59375 -0.4375 -3.203125 L 0.5625 -1.03125 C 0.734375 -0.65625 0.65625 -0.609375 0.109375 -0.359375 L 0.234375 -0.109375 C 0.6875 -0.328125 0.765625 -0.390625 1.171875 -0.578125 L 2.21875 -1.03125 L 2.09375 -1.28125 L 1.9375 -1.21875 C 1.34375 -0.9375 1.28125 -1.015625 1.140625 -1.3125 L 0.578125 -2.53125 C 0.40625 -2.859375 -0.046875 -4.109375 0.890625 -4.546875 L 0.890625 -4.53125 C 0.859375 -4.515625 0.78125 -4.34375 0.875 -4.15625 C 0.984375 -3.9375 1.21875 -3.875 1.40625 -3.96875 C 1.578125 -4.046875 1.703125 -4.25 1.59375 -4.5 Z M 1.59375 -4.5 "/>
</g>
<g id="glyph-0-18">
<path d="M 6.75 -3.15625 L 6.625 -3.40625 C 6.21875 -3.203125 6.015625 -3.109375 5.890625 -3.375 L 5.15625 -4.921875 C 4.84375 -5.625 4.734375 -5.84375 4.328125 -6.03125 C 4.0625 -6.140625 3.6875 -6.078125 3.328125 -5.90625 C 2.75 -5.640625 2.5 -5.125 2.484375 -4.578125 C 2.171875 -5.015625 1.703125 -5.15625 1.015625 -4.828125 C 0.375 -4.53125 0.171875 -3.921875 0.171875 -3.484375 L 0.15625 -3.484375 L -0.21875 -4.265625 L -1.34375 -3.625 L -1.234375 -3.375 C -0.6875 -3.640625 -0.578125 -3.609375 -0.390625 -3.21875 L 0.609375 -1.046875 C 0.78125 -0.671875 0.703125 -0.640625 0.15625 -0.375 L 0.28125 -0.125 C 0.671875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.78125 1.703125 -0.8125 2.140625 -1 L 2.015625 -1.25 C 1.46875 -1 1.390625 -0.953125 1.21875 -1.328125 L 0.53125 -2.796875 C 0.125 -3.671875 0.5625 -4.390625 1.0625 -4.625 C 1.5 -4.828125 1.78125 -4.578125 2.0625 -4 L 2.921875 -2.125 C 3.09375 -1.75 3 -1.703125 2.46875 -1.453125 L 2.59375 -1.203125 C 2.96875 -1.40625 3.109375 -1.484375 3.515625 -1.671875 C 3.890625 -1.859375 4.015625 -1.890625 4.453125 -2.078125 L 4.328125 -2.328125 C 3.78125 -2.078125 3.703125 -2.03125 3.53125 -2.40625 L 2.84375 -3.875 C 2.4375 -4.75 2.875 -5.46875 3.359375 -5.6875 C 3.796875 -5.90625 4.09375 -5.65625 4.375 -5.078125 L 5.234375 -3.203125 C 5.40625 -2.828125 5.3125 -2.78125 4.78125 -2.546875 L 4.90625 -2.296875 C 5.296875 -2.484375 5.421875 -2.5625 5.8125 -2.75 C 6.203125 -2.9375 6.328125 -2.96875 6.75 -3.15625 Z M 6.75 -3.15625 "/>
</g>
<g id="glyph-0-19">
<path d="M 2.703125 -5.21875 L 2.59375 -5.46875 C 2.34375 -5.3125 2.078125 -5.203125 1.96875 -5.140625 C 1.75 -5.046875 1.5 -4.9375 1.28125 -4.859375 L 1.390625 -4.609375 C 1.765625 -4.765625 1.90625 -4.46875 1.90625 -4.4375 C 1.953125 -4.34375 1.96875 -4.25 1.953125 -4.171875 L 2.03125 -1.84375 L 0.140625 -3.546875 C 0.046875 -3.640625 0.03125 -3.703125 0.03125 -3.703125 C -0.078125 -3.921875 0.1875 -4.046875 0.359375 -4.125 L 0.25 -4.375 L -0.640625 -3.921875 C -0.671875 -3.90625 -1.140625 -3.6875 -1.453125 -3.578125 L -1.34375 -3.328125 C -0.984375 -3.5 -0.8125 -3.5625 -0.609375 -3.390625 L 2.0625 -0.96875 L 2.09375 -0.390625 C 2.109375 0.125 2.140625 0.765625 1.609375 1.03125 C 1.40625 1.109375 1.21875 1.09375 1.1875 1.078125 C 1.25 1.03125 1.4375 0.875 1.3125 0.59375 C 1.203125 0.390625 0.984375 0.328125 0.8125 0.421875 C 0.609375 0.515625 0.515625 0.703125 0.625 0.90625 C 0.796875 1.28125 1.28125 1.421875 1.6875 1.234375 C 2.21875 0.96875 2.34375 0.34375 2.34375 -0.1875 L 2.21875 -4.3125 C 2.1875 -4.5625 2.203125 -4.953125 2.703125 -5.21875 Z M 2.703125 -5.21875 "/>
</g>
<g id="glyph-1-0">
</g>
<g id="glyph-1-1">
<path d="M 4.40625 -2.484375 C 4.40625 -3.546875 3.53125 -4.421875 2.484375 -4.421875 C 1.40625 -4.421875 0.5625 -3.53125 0.5625 -2.484375 C 0.5625 -1.421875 1.4375 -0.5625 2.484375 -0.5625 C 3.5625 -0.5625 4.40625 -1.4375 4.40625 -2.484375 Z M 4.40625 -2.484375 "/>
</g>
<g id="glyph-2-0">
</g>
<g id="glyph-2-1">
<path d="M 4.5625 -7.390625 L 3.984375 -9.03125 C 3.90625 -9.28125 3.859375 -9.265625 3.640625 -9.15625 L -0.78125 -7.09375 C -0.96875 -7.015625 -1.046875 -6.96875 -0.953125 -6.796875 C -0.921875 -6.6875 -0.84375 -6.734375 -0.671875 -6.8125 C -0.34375 -6.953125 -0.09375 -7.078125 -0.015625 -6.921875 C 0 -6.890625 0.015625 -6.875 0.046875 -6.703125 L 1.09375 -1.359375 C 1.15625 -0.984375 1.171875 -0.890625 0.46875 -0.5625 C 0.3125 -0.484375 0.21875 -0.4375 0.296875 -0.265625 C 0.34375 -0.15625 0.453125 -0.21875 0.484375 -0.21875 L 1.65625 -0.8125 L 3.015625 -1.40625 C 3.09375 -1.4375 3.203125 -1.5 3.125 -1.671875 C 3.09375 -1.734375 3.015625 -1.734375 3.015625 -1.734375 C 2.984375 -1.734375 2.96875 -1.734375 2.765625 -1.625 C 2.5625 -1.53125 2.515625 -1.515625 2.28125 -1.421875 C 2.015625 -1.34375 1.96875 -1.359375 1.921875 -1.484375 C 1.921875 -1.484375 1.890625 -1.546875 1.875 -1.703125 L 1.375 -4.21875 L 2.25 -4.625 C 2.9375 -4.9375 3.0625 -4.828125 3.1875 -4.546875 C 3.203125 -4.5 3.265625 -4.375 3.328125 -4.078125 C 3.328125 -4.046875 3.34375 -3.96875 3.34375 -3.96875 C 3.375 -3.890625 3.4375 -3.890625 3.5 -3.921875 C 3.578125 -3.953125 3.5625 -3.96875 3.53125 -4.15625 L 3.140625 -6.359375 C 3.109375 -6.46875 3.109375 -6.484375 3.09375 -6.5 C 3.09375 -6.5 3.03125 -6.609375 2.9375 -6.5625 C 2.84375 -6.515625 2.859375 -6.46875 2.875 -6.3125 C 3.03125 -5.515625 2.890625 -5.265625 2.125 -4.90625 L 1.296875 -4.53125 L 0.828125 -7.09375 C 0.75 -7.4375 0.734375 -7.46875 1.125 -7.640625 L 2.328125 -8.203125 C 3.4375 -8.71875 3.78125 -8.515625 4.109375 -7.828125 C 4.203125 -7.625 4.21875 -7.578125 4.296875 -7.328125 C 4.34375 -7.21875 4.359375 -7.1875 4.359375 -7.15625 C 4.390625 -7.109375 4.4375 -7.078125 4.515625 -7.109375 C 4.625 -7.15625 4.609375 -7.203125 4.5625 -7.390625 Z M 4.5625 -7.390625 "/>
</g>
<g id="glyph-2-2">
<path d="M 3.828125 -3.34375 C 3.78125 -3.4375 3.6875 -3.390625 3.671875 -3.375 C 3.578125 -3.34375 3.578125 -3.3125 3.625 -3.171875 C 3.75 -2.421875 3.75 -1.859375 3.359375 -1.671875 C 3.1875 -1.59375 3.015625 -1.65625 2.859375 -1.984375 C 2.796875 -2.140625 2.734375 -2.34375 2.703125 -2.515625 C 2.671875 -2.671875 2.65625 -2.71875 2.609375 -2.796875 C 2.328125 -3.390625 1.640625 -3.390625 0.84375 -3.125 C 1.046875 -3.4375 1.1875 -3.84375 1.296875 -4.15625 C 1.515625 -4.84375 1.75 -5.4375 2.1875 -5.640625 C 2.234375 -5.671875 2.234375 -5.671875 2.265625 -5.65625 C 2.390625 -5.6875 2.40625 -5.703125 2.484375 -5.671875 C 2.515625 -5.671875 2.515625 -5.671875 2.5625 -5.65625 C 2.125 -5.421875 2.203125 -5.046875 2.25 -4.9375 C 2.3125 -4.796875 2.5 -4.671875 2.75 -4.78125 C 2.96875 -4.890625 3.15625 -5.21875 3 -5.546875 C 2.875 -5.84375 2.515625 -6.046875 2.109375 -5.84375 C 1.84375 -5.734375 1.46875 -5.4375 1.15625 -4.421875 C 1.015625 -3.9375 0.84375 -3.4375 0.5625 -3.109375 L -0.28125 -7.359375 C -0.28125 -7.359375 -0.328125 -7.46875 -0.4375 -7.421875 C -0.65625 -7.328125 -1.296875 -6.9375 -1.5 -6.8125 C -1.578125 -6.765625 -1.65625 -6.703125 -1.59375 -6.546875 C -1.53125 -6.4375 -1.453125 -6.46875 -1.3125 -6.53125 C -0.875 -6.734375 -0.84375 -6.6875 -0.796875 -6.59375 L -0.75 -6.40625 L 0.359375 -0.609375 C 0.390625 -0.46875 0.40625 -0.453125 0.421875 -0.390625 C 0.53125 -0.171875 0.734375 -0.21875 0.8125 -0.265625 C 0.921875 -0.3125 1 -0.453125 1.015625 -0.578125 C 1.03125 -0.6875 0.65625 -2.546875 0.609375 -2.796875 C 0.921875 -2.921875 1.734375 -3.109375 2.015625 -2.515625 C 2.046875 -2.453125 2.0625 -2.421875 2.078125 -2.3125 C 2.109375 -2.203125 2.125 -2.078125 2.171875 -1.984375 C 2.421875 -1.4375 2.96875 -1.265625 3.4375 -1.484375 C 3.703125 -1.609375 3.875 -1.859375 3.921875 -2.28125 C 3.953125 -2.796875 3.828125 -3.34375 3.828125 -3.34375 Z M 3.828125 -3.34375 "/>
</g>
<g id="glyph-2-3">
<path d="M 3.421875 -2.78125 C 3.40625 -2.828125 3.328125 -2.859375 3.265625 -2.828125 C 3.21875 -2.8125 3.203125 -2.796875 3.1875 -2.6875 C 2.90625 -1.46875 1.90625 -1 1.8125 -0.953125 C 1.234375 -0.6875 0.78125 -1.015625 0.53125 -1.5625 C 0.34375 -1.9375 0.140625 -2.890625 0.1875 -3.609375 C 0.21875 -4.25 0.53125 -4.859375 1.03125 -5.09375 C 1.328125 -5.25 1.734375 -5.28125 1.96875 -5.078125 C 1.828125 -5.015625 1.703125 -4.953125 1.640625 -4.78125 C 1.546875 -4.578125 1.609375 -4.421875 1.640625 -4.359375 C 1.734375 -4.140625 1.9375 -4.125 2.109375 -4.203125 C 2.375 -4.328125 2.53125 -4.640625 2.359375 -5.015625 C 2.15625 -5.453125 1.5625 -5.59375 0.9375 -5.296875 C -0.28125 -4.734375 -0.875 -2.859375 -0.296875 -1.609375 C 0.09375 -0.78125 0.9375 -0.328125 1.875 -0.765625 C 3.15625 -1.359375 3.46875 -2.671875 3.421875 -2.78125 Z M 3.421875 -2.78125 "/>
</g>
<g id="glyph-2-4">
<path d="M 3.046875 -8.171875 C 3.015625 -8.265625 2.9375 -8.28125 2.84375 -8.28125 C 2.578125 -8.328125 2.40625 -8.46875 2.234375 -8.640625 C 2.171875 -8.71875 2.078125 -8.8125 1.953125 -8.75 C 1.828125 -8.6875 1.828125 -8.5625 1.875 -8.484375 C 1.890625 -8.4375 2.09375 -8.1875 2.328125 -8.046875 L -0.71875 -6.625 C -0.875 -6.5625 -1.03125 -6.484375 -0.953125 -6.3125 C -0.859375 -6.125 -0.703125 -6.203125 -0.546875 -6.265625 L 2.34375 -7.625 C 2.265625 -7.453125 2.09375 -7.0625 2.171875 -6.890625 C 2.203125 -6.8125 2.328125 -6.75 2.4375 -6.796875 C 2.515625 -6.84375 2.53125 -6.921875 2.546875 -6.984375 C 2.59375 -7.1875 2.671875 -7.53125 2.984375 -7.921875 C 3.03125 -7.984375 3.109375 -8.0625 3.046875 -8.171875 Z M 3.046875 -8.171875 "/>
</g>
<g id="glyph-2-5">
<path d="M -0.0625 -6.828125 C -0.15625 -7 -0.34375 -7.109375 -0.5625 -7 C -0.796875 -6.890625 -0.9375 -6.53125 -0.828125 -6.296875 C -0.734375 -6.125 -0.53125 -6.03125 -0.328125 -6.125 C -0.109375 -6.21875 0.0625 -6.546875 -0.0625 -6.828125 Z M 2.046875 -2.515625 C 2 -2.609375 1.921875 -2.5625 1.890625 -2.5625 C 1.8125 -2.515625 1.8125 -2.5 1.828125 -2.328125 C 1.9375 -1.703125 1.890625 -1 1.421875 -0.78125 C 1.28125 -0.71875 1.1875 -0.78125 1.078125 -0.984375 C 0.96875 -1.21875 0.96875 -1.359375 0.921875 -2.015625 L 0.828125 -3.125 C 0.8125 -3.421875 0.8125 -3.4375 0.78125 -3.75 C 0.78125 -3.953125 0.75 -4.109375 0.671875 -4.28125 C 0.484375 -4.6875 0.03125 -4.890625 -0.40625 -4.6875 C -1.25 -4.28125 -1 -2.796875 -0.953125 -2.71875 C -0.921875 -2.625 -0.796875 -2.671875 -0.796875 -2.671875 C -0.71875 -2.71875 -0.703125 -2.734375 -0.734375 -2.90625 C -0.875 -3.875 -0.640625 -4.3125 -0.328125 -4.46875 C -0.265625 -4.5 -0.109375 -4.5625 0.03125 -4.265625 C 0.109375 -4.078125 0.140625 -3.84375 0.15625 -3.75 C 0.171875 -3.484375 0.265625 -2.25 0.296875 -1.796875 C 0.296875 -1.53125 0.328125 -1.171875 0.421875 -0.984375 C 0.625 -0.5625 1.078125 -0.390625 1.5 -0.59375 C 2.359375 -0.984375 2.078125 -2.4375 2.046875 -2.515625 Z M 2.046875 -2.515625 "/>
</g>
<g id="glyph-3-0">
</g>
<g id="glyph-3-1">
<path d="M 3.546875 -2.75 C 3.5 -2.828125 3.40625 -2.796875 3.390625 -2.78125 C 3.296875 -2.734375 3.3125 -2.71875 3.34375 -2.53125 C 3.40625 -2.203125 3.484375 -1.75 3.203125 -1.625 C 3.046875 -1.5625 2.921875 -1.671875 2.84375 -1.84375 C 2.796875 -1.953125 2.734375 -2.21875 2.71875 -2.390625 L 2.46875 -3.640625 C 2.4375 -3.828125 2.390625 -4.15625 2.375 -4.171875 C 2.3125 -4.296875 2.171875 -4.328125 2.0625 -4.265625 C 1.828125 -4.171875 1.859375 -3.953125 1.90625 -3.75 L 2.203125 -2.265625 C 2.21875 -2.125 2.28125 -1.859375 2.28125 -1.859375 C 2.234375 -1.59375 2.140625 -1.140625 1.765625 -0.953125 C 1.328125 -0.75 1.125 -1.171875 1.078125 -1.28125 C 0.90625 -1.640625 0.859375 -2.171875 0.84375 -2.734375 C 0.8125 -2.875 0.8125 -2.984375 0.765625 -3.078125 C 0.609375 -3.421875 0.234375 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.65625 -0.265625 -3.046875 -0.03125 -3.15625 C 0.078125 -3.21875 0.15625 -3.15625 0.234375 -3.015625 C 0.296875 -2.859375 0.3125 -2.71875 0.3125 -2.546875 C 0.375 -1.515625 0.46875 -1.328125 0.546875 -1.15625 C 0.59375 -1.0625 0.734375 -0.765625 1.078125 -0.671875 C 1.3125 -0.59375 1.59375 -0.65625 1.8125 -0.765625 C 2.21875 -0.953125 2.3125 -1.265625 2.4375 -1.578125 C 2.78125 -1.21875 3.1875 -1.40625 3.28125 -1.453125 C 3.484375 -1.546875 3.59375 -1.75 3.609375 -2.015625 C 3.625 -2.34375 3.5625 -2.71875 3.546875 -2.75 Z M 3.546875 -2.75 "/>
</g>
<g id="glyph-3-2">
<path d="M 2.3125 -3.875 C 2.078125 -4.375 1.78125 -4.234375 1.765625 -4.21875 C 1.59375 -4.140625 1.5 -3.890625 1.578125 -3.71875 C 1.625 -3.609375 1.71875 -3.59375 1.75 -3.578125 C 1.921875 -3.53125 2.125 -3.4375 2.25 -3.171875 C 2.375 -2.890625 2.59375 -1.34375 1.84375 -0.984375 C 1.328125 -0.75 1.109375 -1.203125 1.0625 -1.328125 C 0.921875 -1.609375 0.875 -2 0.84375 -2.71875 C 0.8125 -2.875 0.8125 -2.984375 0.765625 -3.078125 C 0.609375 -3.421875 0.234375 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.65625 -0.28125 -3.046875 -0.03125 -3.15625 C 0.078125 -3.21875 0.15625 -3.15625 0.234375 -3.015625 C 0.296875 -2.859375 0.3125 -2.71875 0.3125 -2.546875 C 0.375 -1.71875 0.421875 -1.40625 0.53125 -1.1875 C 0.828125 -0.5625 1.421875 -0.578125 1.90625 -0.8125 C 2.96875 -1.296875 2.546875 -3.34375 2.3125 -3.875 Z M 2.3125 -3.875 "/>
</g>
<g id="glyph-3-3">
<path d="M 3.859375 -4.59375 C 3.640625 -5.0625 3.359375 -4.96875 3.3125 -4.953125 C 3.15625 -4.875 3.046875 -4.609375 3.125 -4.4375 C 3.171875 -4.328125 3.265625 -4.3125 3.3125 -4.3125 C 3.53125 -4.25 3.703125 -4.109375 3.796875 -3.90625 C 3.828125 -3.828125 4.296875 -2.140625 3.5 -1.765625 C 2.984375 -1.515625 2.765625 -1.96875 2.71875 -2.09375 C 2.640625 -2.25 2.625 -2.375 2.53125 -2.765625 L 2.390625 -3.5625 C 2.359375 -3.765625 2.28125 -4.109375 2.265625 -4.125 C 2.203125 -4.25 2.078125 -4.28125 1.96875 -4.21875 C 1.84375 -4.171875 1.765625 -4.046875 1.765625 -3.90625 C 1.796875 -3.875 1.84375 -3.5625 1.859375 -3.390625 C 1.953125 -2.984375 1.953125 -2.984375 2.015625 -2.578125 C 2.109375 -2.1875 2.125 -2.125 2.1875 -1.953125 C 2.28125 -1.84375 2.28125 -1.6875 2.21875 -1.4375 C 2.1875 -1.296875 2.125 -1.125 1.90625 -1.015625 C 1.65625 -0.90625 1.296875 -0.84375 1.0625 -1.328125 C 0.921875 -1.65625 0.875 -2.203125 0.84375 -2.59375 C 0.828125 -2.921875 0.8125 -2.984375 0.765625 -3.09375 C 0.625 -3.390625 0.265625 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.671875 -0.265625 -3.046875 -0.015625 -3.171875 C 0.078125 -3.21875 0.171875 -3.171875 0.25 -3.03125 C 0.3125 -2.875 0.3125 -2.71875 0.34375 -2.625 C 0.390625 -1.53125 0.453125 -1.40625 0.546875 -1.203125 C 0.890625 -0.453125 1.625 -0.671875 1.953125 -0.828125 C 2.078125 -0.890625 2.375 -1.03125 2.46875 -1.59375 C 2.765625 -1.375 3.15625 -1.390625 3.546875 -1.578125 C 4.109375 -1.84375 4.15625 -2.453125 4.171875 -2.78125 C 4.203125 -3.4375 3.984375 -4.296875 3.859375 -4.59375 Z M 3.859375 -4.59375 "/>
</g>
<g id="glyph-4-0">
</g>
<g id="glyph-4-1">
<path d="M 6.21875 -6.125 C 6.21875 -6.21875 6.15625 -6.265625 6.078125 -6.3125 C 5.859375 -6.46875 5.75 -6.65625 5.671875 -6.890625 C 5.65625 -6.984375 5.609375 -7.109375 5.46875 -7.109375 C 5.328125 -7.109375 5.28125 -6.984375 5.28125 -6.890625 C 5.28125 -6.84375 5.359375 -6.53125 5.515625 -6.3125 L 2.15625 -6.3125 C 1.984375 -6.3125 1.8125 -6.3125 1.8125 -6.125 C 1.8125 -5.921875 1.984375 -5.921875 2.15625 -5.921875 L 5.34375 -5.921875 C 5.203125 -5.796875 4.875 -5.515625 4.875 -5.328125 C 4.875 -5.234375 4.96875 -5.140625 5.078125 -5.140625 C 5.171875 -5.140625 5.21875 -5.203125 5.265625 -5.265625 C 5.390625 -5.421875 5.609375 -5.6875 6.046875 -5.90625 C 6.125 -5.953125 6.21875 -6 6.21875 -6.125 Z M 6.21875 -6.125 "/>
</g>
<g id="glyph-4-2">
<path d="M 2.828125 -6.21875 C 2.828125 -6.421875 2.6875 -6.578125 2.453125 -6.578125 C 2.1875 -6.578125 1.921875 -6.3125 1.921875 -6.046875 C 1.921875 -5.859375 2.0625 -5.6875 2.296875 -5.6875 C 2.53125 -5.6875 2.828125 -5.921875 2.828125 -6.21875 Z M 2.921875 -1.421875 C 2.921875 -1.515625 2.828125 -1.515625 2.796875 -1.515625 C 2.703125 -1.515625 2.703125 -1.5 2.640625 -1.34375 C 2.46875 -0.71875 2.140625 -0.109375 1.625 -0.109375 C 1.46875 -0.109375 1.390625 -0.203125 1.390625 -0.4375 C 1.390625 -0.6875 1.453125 -0.828125 1.6875 -1.4375 L 2.0625 -2.484375 C 2.1875 -2.765625 2.1875 -2.78125 2.296875 -3.0625 C 2.375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.40625 1.609375 -4.40625 C 0.671875 -4.40625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.953125 C 0.84375 -3.875 1.234375 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.1875 1.828125 -3.859375 C 1.828125 -3.65625 1.75 -3.4375 1.71875 -3.34375 C 1.625 -3.078125 1.1875 -1.9375 1.03125 -1.5 C 0.921875 -1.25 0.796875 -0.921875 0.796875 -0.703125 C 0.796875 -0.234375 1.140625 0.109375 1.609375 0.109375 C 2.546875 0.109375 2.921875 -1.328125 2.921875 -1.421875 Z M 2.921875 -1.421875 "/>
</g>
<g id="glyph-4-3">
<path d="M 4.53125 -4.96875 C 4.53125 -5.640625 4.34375 -7.015625 3.328125 -7.015625 C 1.953125 -7.015625 0.421875 -4.203125 0.421875 -1.9375 C 0.421875 -1 0.703125 0.109375 1.609375 0.109375 C 3.015625 0.109375 4.53125 -2.75 4.53125 -4.96875 Z M 3.546875 -3.609375 L 1.46875 -3.609375 C 1.640625 -4.25 1.84375 -5.046875 2.234375 -5.75 C 2.515625 -6.234375 2.875 -6.796875 3.328125 -6.796875 C 3.8125 -6.796875 3.875 -6.15625 3.875 -5.59375 C 3.875 -5.109375 3.796875 -4.59375 3.546875 -3.609375 Z M 3.46875 -3.296875 C 3.359375 -2.84375 3.140625 -1.984375 2.765625 -1.28125 C 2.421875 -0.59375 2.046875 -0.109375 1.609375 -0.109375 C 1.28125 -0.109375 1.078125 -0.390625 1.078125 -1.328125 C 1.078125 -1.734375 1.140625 -2.3125 1.390625 -3.296875 Z M 3.46875 -3.296875 "/>
</g>
<g id="glyph-5-0">
</g>
<g id="glyph-5-1">
<path d="M 3.90625 -1 C 3.90625 -1.09375 3.8125 -1.09375 3.796875 -1.09375 C 3.6875 -1.09375 3.6875 -1.046875 3.65625 -0.96875 C 3.515625 -0.484375 3.09375 -0.125 2.703125 -0.125 C 2.421875 -0.125 2.28125 -0.3125 2.28125 -0.578125 C 2.28125 -0.765625 2.453125 -1.390625 2.640625 -2.171875 C 2.78125 -2.703125 3.09375 -2.875 3.328125 -2.875 C 3.328125 -2.875 3.546875 -2.875 3.703125 -2.78125 C 3.484375 -2.71875 3.390625 -2.515625 3.390625 -2.390625 C 3.390625 -2.25 3.515625 -2.140625 3.671875 -2.140625 C 3.828125 -2.140625 4.0625 -2.265625 4.0625 -2.5625 C 4.0625 -2.953125 3.609375 -3.078125 3.34375 -3.078125 C 2.984375 -3.078125 2.703125 -2.84375 2.5625 -2.578125 C 2.4375 -2.859375 2.109375 -3.078125 1.71875 -3.078125 C 0.9375 -3.078125 0.5 -2.21875 0.5 -2 C 0.5 -1.921875 0.59375 -1.921875 0.609375 -1.921875 C 0.703125 -1.921875 0.703125 -1.9375 0.75 -2.03125 C 0.921875 -2.578125 1.359375 -2.875 1.703125 -2.875 C 1.9375 -2.875 2.125 -2.75 2.125 -2.421875 C 2.125 -2.28125 2.03125 -1.9375 1.96875 -1.6875 L 1.734375 -0.734375 C 1.671875 -0.5 1.4375 -0.125 1.078125 -0.125 C 1.0625 -0.125 0.84375 -0.125 0.703125 -0.21875 C 0.984375 -0.3125 1.015625 -0.5625 1.015625 -0.609375 C 1.015625 -0.765625 0.890625 -0.859375 0.734375 -0.859375 C 0.53125 -0.859375 0.328125 -0.703125 0.328125 -0.4375 C 0.328125 -0.09375 0.71875 0.0625 1.0625 0.0625 C 1.390625 0.0625 1.671875 -0.125 1.84375 -0.421875 C 2.015625 -0.0625 2.390625 0.0625 2.671875 0.0625 C 3.484375 0.0625 3.90625 -0.796875 3.90625 -1 Z M 3.90625 -1 "/>
</g>
<g id="glyph-5-2">
<path d="M 3.875 -2.625 C 3.90625 -2.71875 3.90625 -2.734375 3.90625 -2.78125 C 3.90625 -2.921875 3.796875 -3 3.671875 -3 C 3.59375 -3 3.46875 -2.96875 3.390625 -2.84375 C 3.359375 -2.796875 3.3125 -2.578125 3.28125 -2.4375 L 3.125 -1.859375 L 2.84375 -0.734375 C 2.84375 -0.734375 2.53125 -0.125 2 -0.125 C 1.515625 -0.125 1.515625 -0.578125 1.515625 -0.703125 C 1.515625 -1.078125 1.671875 -1.515625 1.890625 -2.0625 C 1.96875 -2.28125 2 -2.359375 2 -2.484375 C 2 -2.8125 1.71875 -3.078125 1.34375 -3.078125 C 0.640625 -3.078125 0.328125 -2.125 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.953125 0.578125 -2.03125 C 0.75 -2.609375 1.046875 -2.875 1.328125 -2.875 C 1.4375 -2.875 1.5 -2.796875 1.5 -2.640625 C 1.5 -2.46875 1.4375 -2.328125 1.40625 -2.234375 C 1.0625 -1.375 1 -1.125 1 -0.8125 C 1 -0.703125 1 -0.375 1.265625 -0.140625 C 1.484375 0.03125 1.78125 0.0625 1.96875 0.0625 C 2.25 0.0625 2.5 -0.03125 2.71875 -0.25 C 2.640625 0.140625 2.5625 0.4375 2.265625 0.78125 C 2.078125 1 1.796875 1.21875 1.421875 1.21875 C 1.375 1.21875 1.046875 1.21875 0.90625 1 C 1.28125 0.953125 1.28125 0.609375 1.28125 0.609375 C 1.28125 0.390625 1.078125 0.34375 1.015625 0.34375 C 0.84375 0.34375 0.609375 0.484375 0.609375 0.8125 C 0.609375 1.15625 0.9375 1.421875 1.4375 1.421875 C 2.140625 1.421875 3 0.875 3.21875 0 Z M 3.875 -2.625 "/>
</g>
<g id="glyph-5-3">
<path d="M 3.46875 -1.015625 C 3.46875 -1.09375 3.390625 -1.09375 3.359375 -1.09375 C 3.265625 -1.09375 3.25 -1.0625 3.21875 -0.984375 C 3.09375 -0.640625 2.6875 -0.46875 2.34375 -0.46875 C 2.1875 -0.46875 2 -0.515625 1.828125 -0.546875 C 1.515625 -0.625 1.453125 -0.625 1.328125 -0.625 C 1.328125 -0.625 1.21875 -0.625 1.171875 -0.609375 C 1.359375 -0.796875 1.484375 -0.921875 2.0625 -1.40625 C 2.21875 -1.515625 2.734375 -1.9375 2.9375 -2.125 C 3.359375 -2.546875 3.625 -2.90625 3.625 -2.984375 C 3.625 -3.078125 3.546875 -3.078125 3.515625 -3.078125 C 3.453125 -3.078125 3.421875 -3.0625 3.390625 -3 C 3.171875 -2.6875 3.03125 -2.578125 2.859375 -2.578125 C 2.78125 -2.578125 2.671875 -2.578125 2.46875 -2.78125 C 2.234375 -3.03125 2.078125 -3.078125 1.921875 -3.078125 C 1.359375 -3.078125 0.984375 -2.46875 0.984375 -2.265625 C 0.984375 -2.1875 1.046875 -2.171875 1.09375 -2.171875 C 1.1875 -2.171875 1.203125 -2.1875 1.21875 -2.265625 C 1.328125 -2.515625 1.71875 -2.53125 1.828125 -2.53125 C 2 -2.53125 2.171875 -2.484375 2.265625 -2.46875 C 2.65625 -2.390625 2.703125 -2.390625 2.875 -2.390625 C 2.703125 -2.1875 2.578125 -2.0625 1.90625 -1.546875 C 1.359375 -1.109375 1.171875 -0.9375 1.046875 -0.796875 C 0.625 -0.390625 0.421875 -0.078125 0.421875 -0.015625 C 0.421875 0.0625 0.515625 0.0625 0.546875 0.0625 C 0.609375 0.0625 0.625 0.0625 0.65625 0 C 0.84375 -0.265625 1.0625 -0.421875 1.296875 -0.421875 C 1.390625 -0.421875 1.484375 -0.421875 1.671875 -0.25 C 1.890625 -0.03125 2.03125 0.0625 2.265625 0.0625 C 3 0.0625 3.46875 -0.78125 3.46875 -1.015625 Z M 3.46875 -1.015625 "/>
</g>
<g id="glyph-6-0">
</g>
<g id="glyph-6-1">
<path d="M 6.734375 -1.609375 L 6.484375 -1.609375 C 6.4375 -1.359375 6.40625 -1.125 6.3125 -0.890625 C 6.265625 -0.734375 6.234375 -0.640625 5.65625 -0.640625 L 4.859375 -0.640625 C 4.984375 -1.203125 5.296875 -1.6875 5.75 -2.34375 C 6.203125 -3.046875 6.625 -3.734375 6.625 -4.515625 C 6.625 -5.90625 5.28125 -7.015625 3.59375 -7.015625 C 1.875 -7.015625 0.5625 -5.875 0.5625 -4.515625 C 0.5625 -3.734375 0.96875 -3.046875 1.4375 -2.34375 C 1.875 -1.6875 2.1875 -1.203125 2.3125 -0.640625 L 1.515625 -0.640625 C 0.953125 -0.640625 0.921875 -0.734375 0.859375 -0.875 C 0.78125 -1.109375 0.734375 -1.359375 0.6875 -1.609375 L 0.4375 -1.609375 L 0.765625 0 L 2.359375 0 C 2.578125 0 2.609375 0 2.609375 -0.203125 C 2.609375 -0.90625 2.296875 -1.78125 2.0625 -2.421875 C 1.859375 -3 1.578125 -3.78125 1.578125 -4.53125 C 1.578125 -6.125 2.671875 -6.796875 3.578125 -6.796875 C 4.53125 -6.796875 5.59375 -6.078125 5.59375 -4.53125 C 5.59375 -3.78125 5.328125 -3.03125 5.03125 -2.203125 C 4.890625 -1.796875 4.5625 -0.890625 4.5625 -0.203125 C 4.5625 0 4.59375 0 4.828125 0 L 6.40625 0 Z M 6.734375 -1.609375 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 0 0.0585938 L 256.371094 0.0585938 L 256.371094 254.554688 L 0 254.554688 Z M 0 0.0585938 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 2 217 L 39 217 L 39 254.554688 L 2 254.554688 Z M 2 217 "/>
</clipPath>
</defs>
<path fill-rule="nonzero" fill="rgb(39.99939%, 39.99939%, 39.99939%)" fill-opacity="1" d="M 255.378906 122.796875 C 255.378906 55.558594 200.871094 1.054688 133.632812 1.054688 C 66.398438 1.054688 11.890625 55.558594 11.890625 122.796875 C 11.890625 190.035156 66.398438 244.539062 133.632812 244.539062 C 200.871094 244.539062 255.378906 190.035156 255.378906 122.796875 Z M 255.378906 122.796875 "/>
<g clip-path="url(#clip-0)">
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 121.893307 -0.000240399 C 121.893307 67.320292 67.318816 121.890872 -0.00171655 121.890872 C -67.318338 121.890872 -121.892829 67.320292 -121.892829 -0.000240399 C -121.892829 -67.320773 -67.318338 -121.891353 -0.00171655 -121.891353 C 67.318816 -121.891353 121.893307 -67.320773 121.893307 -0.000240399 Z M 121.893307 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
</g>
<path fill-rule="nonzero" fill="rgb(59.999084%, 59.999084%, 59.999084%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.71974 -0.000240399 C 107.71974 59.490413 59.492848 107.717305 -0.00171655 107.717305 C -59.49237 107.717305 -107.719262 59.490413 -107.719262 -0.000240399 C -107.719262 -59.490894 -59.49237 -107.717786 -0.00171655 -107.717786 C 59.492848 -107.717786 107.71974 -59.490894 107.71974 -0.000240399 Z M 107.71974 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="70.530721" y="59.453122"/>
<use xlink:href="#glyph-0-2" x="76.669973" y="56.590337"/>
<use xlink:href="#glyph-0-3" x="80.840996" y="54.645354"/>
<use xlink:href="#glyph-0-4" x="84.085124" y="53.132589"/>
<use xlink:href="#glyph-0-3" x="88.256147" y="51.187606"/>
<use xlink:href="#glyph-0-5" x="91.500276" y="49.674842"/>
<use xlink:href="#glyph-0-6" x="93.817511" y="48.594295"/>
<use xlink:href="#glyph-0-7" x="98.451981" y="46.433203"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="105.406932" y="43.190051"/>
<use xlink:href="#glyph-0-3" x="110.041401" y="41.028958"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="113.277414" y="39.519978"/>
<use xlink:href="#glyph-0-7" x="117.448437" y="37.574995"/>
<use xlink:href="#glyph-0-9" x="121.619459" y="35.630012"/>
</g>
<path fill-rule="nonzero" fill="rgb(79.998779%, 79.998779%, 79.998779%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -35.64683 -97.944126 L -97.945602 35.648784 L 35.647308 97.943645 L 97.94608 -35.649265 Z M -35.64683 -97.944126 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="43.485804" y="94.628093"/>
<use xlink:href="#glyph-0-10" x="48.120274" y="92.467001"/>
<use xlink:href="#glyph-0-11" x="52.754744" y="90.305908"/>
<use xlink:href="#glyph-0-12" x="56.045136" y="88.771571"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="60.914982" y="86.500721"/>
<use xlink:href="#glyph-0-6" x="64.625804" y="84.770333"/>
<use xlink:href="#glyph-0-13" x="69.260274" y="82.60924"/>
<use xlink:href="#glyph-0-9" x="73.894744" y="80.448148"/>
<use xlink:href="#glyph-0-13" x="77.605566" y="78.71776"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="85.015848" y="75.262284"/>
<use xlink:href="#glyph-0-15" x="90.692464" y="72.615229"/>
<use xlink:href="#glyph-0-4" x="93.009699" y="71.534683"/>
<use xlink:href="#glyph-0-3" x="97.180722" y="69.5897"/>
<use xlink:href="#glyph-0-16" x="100.424851" y="68.076935"/>
<use xlink:href="#glyph-0-2" x="102.973403" y="66.888524"/>
<use xlink:href="#glyph-0-17" x="107.144426" y="64.943541"/>
<use xlink:href="#glyph-0-18" x="110.407223" y="63.422071"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -13.709871 -37.671266 L -37.672743 13.711825 L 13.710349 37.670786 L 37.66931 -13.712306 Z M -13.709871 -37.671266 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="121.048923" y="153.77474"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="126.490164" y="151.237443"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-19" x="130.433927" y="149.398433"/>
<use xlink:href="#glyph-0-15" x="134.836267" y="147.345585"/>
<use xlink:href="#glyph-0-2" x="137.153502" y="146.265039"/>
<use xlink:href="#glyph-0-4" x="141.324525" y="144.320056"/>
<use xlink:href="#glyph-0-13" x="145.495548" y="142.375072"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-1" x="105.486959" y="136.973293"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -25.689351 -11.979721 L -30.828443 -14.377181 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -21.246423 -34.929636 L -40.414374 6.175274 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-1" x="143.111933" y="150.666542"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11.981675 -25.691786 L 14.375224 -30.830878 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -6.17723 -40.412897 L 34.927679 -21.244947 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(89.99939%, 89.99939%, 89.99939%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -45.72555 -49.470839 L -30.312187 -42.28628 L -32.709648 -37.147189 L -48.123011 -44.335659 Z M -45.72555 -49.470839 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -25.446868 -36.889061 L -31.059194 -39.505539 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.052049 0.00154613 L 1.610697 1.684127 L 3.086296 -0.000785306 L 1.60819 -1.6807 Z M 6.052049 0.00154613 " transform="matrix(0.905193, -0.422084, -0.422084, -0.905193, 105.651288, 160.837121)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -52.98833 -49.732878 L -47.376004 -47.112489 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.051849 0.000390099 L 1.610498 1.682971 L 3.087749 0.00160334 L 1.60799 -1.681856 Z M 6.051849 0.000390099 " transform="matrix(-0.905193, 0.422084, 0.422084, 0.905193, 83.278706, 171.269479)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-1" x="86.996578" y="160.958952"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-1" x="93.42593" y="159.607328"/>
</g>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -40.414374 6.175274 L -45.553465 3.781724 L -45.854614 0.891474 L -50.66909 4.14545 L -51.271389 -1.63505 L -56.085865 1.618925 L -56.688163 -4.161575 L -61.502639 -0.907599 L -62.104937 -6.688099 L -66.919413 -3.434123 L -67.525623 -9.214623 L -69.930905 -7.587636 L -76.380191 -10.595216 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-2" x="71.249841" y="119.966097"/>
</g>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -58.960471 -22.656828 L -46.679841 -16.931083 L -42.976097 -24.878292 L -55.256727 -30.604038 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -53.78618 -22.441722 L -51.764178 -26.775141 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -30.828443 -14.377181 L -44.829925 -20.904687 M -52.773223 -24.608431 L -66.794261 -31.147671 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-3" x="78.873515" y="139.891723"/>
</g>
<path fill-rule="nonzero" fill="rgb(89.99939%, 89.99939%, 89.99939%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 49.472793 -45.727985 L 42.284323 -30.310711 L 37.145232 -32.708171 L 44.333702 -48.121535 Z M 49.472793 -45.727985 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36.887104 -25.445392 L 39.503582 -31.057717 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.052561 -0.000848746 L 1.607665 1.683385 L 3.088461 0.000364491 L 1.608702 -1.683095 Z M 6.052561 -0.000848746 " transform="matrix(-0.422084, -0.905193, -0.905193, 0.422084, 171.675013, 150.779873)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 49.730921 -52.990765 L 47.114443 -47.374528 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054882 0.00113212 L 1.608333 1.681821 L 3.089129 -0.00119931 L 1.60937 -1.684659 Z M 6.054882 0.00113212 " transform="matrix(0.422084, 0.905193, 0.905193, -0.422084, 182.107371, 173.152455)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-1" x="164.566688" y="170.654092"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-2" x="170.996945" y="169.302046"/>
</g>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -6.17723 -40.412897 L -3.77977 -45.551989 L -0.893431 -45.853138 L -4.143496 -50.667614 L 1.633093 -51.269912 L -1.616971 -56.084388 L 4.159618 -56.690598 L 0.909553 -61.501163 L 6.686142 -62.107372 L 3.436077 -66.921848 L 9.212666 -67.524147 L 7.585679 -69.929429 L 10.59326 -76.382626 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-2" x="128.955251" y="188.144696"/>
</g>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22.658782 -58.958994 L 16.933037 -46.682276 L 24.876335 -42.974621 L 30.602081 -55.25525 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22.443676 -53.784704 L 26.777095 -51.762702 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14.375224 -30.830878 L 20.902731 -44.828449 M 24.610386 -52.775658 L 31.145714 -66.796695 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-3" x="147.172966" y="176.880475"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -113.386342 -113.388777 L -61.326643 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053923 -0.00153737 L 1.607083 1.684116 L 3.089363 -0.00153737 L 1.607083 -1.68328 Z M 6.053923 -0.00153737 " transform="matrix(0.998778, 0, 0, -0.998778, 69.547224, 236.04534)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-1" x="71.252838" y="246.96674"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-2" x="72.791955" y="249.244953"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-5-1" x="76.219762" y="250.738126"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -113.386342 -113.388777 L -113.386342 -61.329078 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.051488 -0.000897507 L 1.608559 1.684756 L 3.086928 -0.000897507 L 1.608559 -1.68264 Z M 6.051488 -0.000897507 " transform="matrix(0, -0.998778, -0.998778, 0, 20.385822, 186.883938)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-1" x="6.823653" y="180.412155"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-2" x="8.361771" y="182.690368"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-5-2" x="11.790577" y="184.182542"/>
</g>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -111.685045 -113.388777 C -111.685045 -112.44622 -112.447696 -111.68748 -113.386342 -111.68748 C -114.324989 -111.68748 -115.08764 -112.44622 -115.08764 -113.388777 C -115.08764 -114.327424 -114.324989 -115.086164 -113.386342 -115.086164 C -112.447696 -115.086164 -111.685045 -114.327424 -111.685045 -113.388777 Z M -111.685045 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -109.135055 -113.388777 C -109.135055 -111.038249 -111.039725 -109.133578 -113.386342 -109.133578 C -115.736871 -109.133578 -117.63763 -111.038249 -117.63763 -113.388777 C -117.63763 -115.735394 -115.736871 -117.640065 -113.386342 -117.640065 C -111.039725 -117.640065 -109.135055 -115.735394 -109.135055 -113.388777 Z M -109.135055 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-1" x="2.277214" y="237.713059"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-2" x="3.816332" y="239.991273"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-5-3" x="7.244138" y="241.483447"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00171655 -0.000240399 L 47.180931 22.003206 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.051833 0.000637619 L 1.610482 1.683218 L 3.087733 0.00185086 L 1.607974 -1.681609 Z M 6.051833 0.000637619 " transform="matrix(0.905193, -0.422084, -0.422084, -0.905193, 178.190163, 102.019801)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-4" x="116.632705" y="122.356138"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-5" x="118.990441" y="123.770444"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-3" x="122.727719" y="123.674157"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-4" x="176.441542" y="94.466255"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-5" x="178.799278" y="95.880561"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-1" x="182.536556" y="95.784274"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00171655 -0.000240399 L -22.001252 47.182407 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053998 0.00178742 L 1.607449 1.682476 L 3.088245 -0.000544017 L 1.608486 -1.684004 Z M 6.053998 0.00178742 " transform="matrix(-0.422084, -0.905193, -0.905193, 0.422084, 112.857693, 78.240999)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-4" x="98.166295" y="78.699542"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-5" x="100.524031" y="80.113848"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-2" x="104.261731" y="80.018466"/>
</g>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1.699581 -0.000240399 C 1.699581 0.938406 0.940841 1.701057 -0.00171655 1.701057 C -0.940363 1.701057 -1.699103 0.938406 -1.699103 -0.000240399 C -1.699103 -0.938887 -0.940363 -1.701538 -0.00171655 -1.701538 C 0.940841 -1.701538 1.699581 -0.938887 1.699581 -0.000240399 Z M 1.699581 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4.253482 -0.000240399 C 4.253482 2.350288 2.348812 4.251048 -0.00171655 4.251048 C -2.348334 4.251048 -4.253004 2.350288 -4.253004 -0.000240399 C -4.253004 -2.346857 -2.348334 -4.251528 -0.00171655 -4.251528 C 2.348812 -4.251528 4.253482 -2.346857 4.253482 -0.000240399 Z M 4.253482 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M -0.00171655 -0.000240399 L 56.692552 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 42.518985 -0.000240399 C 42.518985 6.206562 41.157947 12.346876 38.537558 17.970935 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-3" x="178.908144" y="117.060652"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 99.213253 -0.000240399 C 99.213253 21.776366 92.048249 42.907653 78.89546 60.155288 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054999 -0.00109799 L 1.608902 1.680577 L 3.085091 -0.000478407 L 1.608483 -1.684544 Z M 6.054999 -0.00109799 " transform="matrix(-0.622289, -0.781144, -0.781144, 0.622289, 214.192881, 64.937543)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-6-1" x="215.750076" y="92.331902"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

View File

@ -0,0 +1,358 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256.686" height="254.806" viewBox="0 0 256.686 254.806">
<defs>
<g>
<g id="glyph-0-0">
</g>
<g id="glyph-0-1">
<path d="M 5.765625 -3.5625 C 5.75 -3.609375 5.703125 -3.703125 5.578125 -3.65625 C 5.46875 -3.59375 5.5 -3.53125 5.53125 -3.46875 C 5.734375 -2.9375 5.5625 -2.640625 5.3125 -2.515625 C 5.046875 -2.390625 4.90625 -2.515625 4.75 -2.625 C 4.609375 -2.78125 4.28125 -3.265625 4.0625 -3.625 C 3.765625 -4.09375 3.4375 -4.609375 2.40625 -4.46875 C 3.0625 -5.046875 3.46875 -5.828125 3.171875 -6.453125 C 2.796875 -7.265625 1.53125 -7.453125 0.34375 -6.890625 L -2.25 -5.6875 L -2.140625 -5.453125 L -1.953125 -5.53125 C -1.328125 -5.828125 -1.28125 -5.734375 -1.140625 -5.4375 L 0.84375 -1.171875 C 0.984375 -0.875 1.015625 -0.78125 0.390625 -0.484375 L 0.203125 -0.40625 L 0.328125 -0.15625 C 0.6875 -0.359375 1.109375 -0.546875 1.484375 -0.734375 C 1.875 -0.921875 2.28125 -1.09375 2.6875 -1.25 L 2.5625 -1.5 L 2.375 -1.40625 C 1.75 -1.125 1.703125 -1.203125 1.5625 -1.5 L 0.609375 -3.53125 L 1.578125 -4 C 2.15625 -4.265625 2.578125 -4.078125 2.625 -4.0625 C 3.015625 -3.875 3.0625 -3.75 3.328125 -3.171875 C 3.578125 -2.640625 3.75 -2.265625 4.28125 -2.15625 C 4.796875 -2.015625 5.296875 -2.25 5.375 -2.28125 C 6.046875 -2.59375 5.859375 -3.375 5.765625 -3.5625 Z M 2.359375 -6.0625 C 2.6875 -5.375 2.5625 -4.703125 1.453125 -4.1875 L 0.515625 -3.734375 L -0.453125 -5.8125 C -0.546875 -6.03125 -0.5625 -6.109375 -0.421875 -6.203125 C -0.375 -6.28125 -0.109375 -6.40625 0.0625 -6.484375 C 0.765625 -6.796875 1.796875 -7.28125 2.359375 -6.0625 Z M 2.359375 -6.0625 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.109375 -3.5625 C 2.625 -4.625 1.390625 -5.078125 0.375 -4.609375 C -0.65625 -4.125 -1.046875 -2.875 -0.578125 -1.84375 C -0.09375 -0.8125 1.125 -0.421875 2.125 -0.890625 C 3.140625 -1.375 3.578125 -2.5625 3.109375 -3.5625 Z M 2.390625 -3.296875 C 2.53125 -3 2.75 -2.53125 2.71875 -2.09375 C 2.65625 -1.609375 2.359375 -1.265625 2.015625 -1.109375 C 1.625 -0.921875 1.1875 -0.96875 0.84375 -1.1875 C 0.46875 -1.421875 0.265625 -1.875 0.09375 -2.234375 C -0.046875 -2.53125 -0.25 -3 -0.21875 -3.4375 C -0.171875 -3.953125 0.1875 -4.25 0.484375 -4.390625 C 0.9375 -4.609375 1.390625 -4.515625 1.671875 -4.3125 C 2.03125 -4.046875 2.234375 -3.640625 2.390625 -3.296875 Z M 2.390625 -3.296875 "/>
</g>
<g id="glyph-0-3">
<path d="M 2.3125 -2.296875 L 2.09375 -2.765625 L 1.859375 -2.65625 L 2.0625 -2.21875 C 2.34375 -1.609375 2.234375 -1.203125 1.953125 -1.078125 C 1.390625 -0.828125 1.0625 -1.53125 0.984375 -1.671875 L -0.0625 -3.9375 L 1.125 -4.484375 L 1.015625 -4.734375 L -0.171875 -4.1875 L -0.875 -5.671875 L -1.09375 -5.5625 C -0.765625 -4.890625 -0.6875 -3.90625 -1.453125 -3.53125 L -1.359375 -3.328125 L -0.65625 -3.65625 L 0.390625 -1.40625 C 0.8125 -0.5 1.5625 -0.625 2 -0.828125 C 2.546875 -1.078125 2.578125 -1.71875 2.3125 -2.296875 Z M 2.3125 -2.296875 "/>
</g>
<g id="glyph-0-4">
<path d="M 3.6875 -2.59375 L 3.484375 -3.046875 L 3.265625 -2.953125 L 3.46875 -2.515625 C 3.515625 -2.421875 3.703125 -2.015625 3.40625 -1.875 C 3.109375 -1.734375 2.921875 -2.125 2.875 -2.25 L 2.203125 -3.6875 C 1.984375 -4.140625 1.859375 -4.421875 1.34375 -4.578125 C 0.90625 -4.703125 0.46875 -4.65625 0.046875 -4.453125 C -0.625 -4.140625 -1.015625 -3.53125 -0.78125 -3.015625 C -0.65625 -2.75 -0.421875 -2.6875 -0.21875 -2.796875 C 0.015625 -2.890625 0.078125 -3.140625 -0.015625 -3.359375 C -0.1875 -3.6875 -0.5625 -3.5625 -0.5625 -3.5625 C -0.4375 -3.875 -0.078125 -4.125 0.140625 -4.234375 C 0.5625 -4.421875 1.171875 -4.34375 1.5 -3.625 L 1.625 -3.359375 C 1.203125 -3.140625 0.609375 -2.8125 0.171875 -2.3125 C -0.265625 -1.765625 -0.25 -1.25 -0.109375 -0.921875 C 0.203125 -0.25 1.09375 -0.40625 1.640625 -0.671875 C 2.3125 -0.984375 2.40625 -1.5625 2.421875 -1.828125 C 2.625 -1.515625 2.984375 -1.34375 3.328125 -1.5 C 3.546875 -1.59375 4 -1.953125 3.6875 -2.59375 Z M 2.09375 -2.359375 C 2.453125 -1.578125 1.96875 -1.046875 1.609375 -0.875 C 1.234375 -0.703125 0.734375 -0.8125 0.546875 -1.21875 C 0.296875 -1.75 0.484375 -2.53125 1.71875 -3.171875 Z M 2.09375 -2.359375 "/>
</g>
<g id="glyph-0-5">
<path d="M 2.046875 -0.953125 L 1.921875 -1.203125 C 1.40625 -0.96875 1.34375 -0.984375 1.203125 -1.296875 L -0.1875 -4.265625 L -1.296875 -3.65625 L -1.1875 -3.40625 C -0.671875 -3.640625 -0.578125 -3.625 -0.390625 -3.21875 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.65625 -0.3125 0.8125 -0.421875 1.171875 -0.578125 C 1.296875 -0.640625 1.640625 -0.796875 2.046875 -0.953125 Z M -0.6875 -5.65625 C -0.796875 -5.890625 -1.078125 -5.984375 -1.328125 -5.875 C -1.5625 -5.75 -1.671875 -5.484375 -1.5625 -5.25 C -1.453125 -4.984375 -1.15625 -4.875 -0.921875 -5 C -0.671875 -5.109375 -0.578125 -5.390625 -0.6875 -5.65625 Z M -0.6875 -5.65625 "/>
</g>
<g id="glyph-0-6">
<path d="M 4.4375 -2.0625 L 4.3125 -2.3125 C 3.890625 -2.125 3.703125 -2.03125 3.578125 -2.296875 L 2.84375 -3.84375 C 2.53125 -4.515625 2.421875 -4.75 2.0625 -4.921875 C 1.78125 -5.0625 1.421875 -5.015625 1.015625 -4.828125 C 0.25 -4.46875 0.1875 -3.765625 0.15625 -3.484375 L 0.140625 -3.484375 L -0.21875 -4.265625 L -1.34375 -3.625 L -1.234375 -3.375 C -0.6875 -3.640625 -0.578125 -3.609375 -0.390625 -3.21875 L 0.609375 -1.046875 C 0.78125 -0.671875 0.703125 -0.640625 0.15625 -0.375 L 0.28125 -0.125 C 0.671875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.78125 1.703125 -0.8125 2.140625 -1 L 2.015625 -1.25 C 1.46875 -1 1.390625 -0.953125 1.21875 -1.328125 L 0.53125 -2.796875 C 0.140625 -3.65625 0.546875 -4.375 1.0625 -4.625 C 1.515625 -4.84375 1.828125 -4.484375 2.0625 -4 L 2.921875 -2.125 C 3.09375 -1.75 3 -1.703125 2.46875 -1.453125 L 2.59375 -1.203125 C 2.96875 -1.40625 3.109375 -1.484375 3.5 -1.671875 C 3.890625 -1.859375 4 -1.890625 4.4375 -2.0625 Z M 4.4375 -2.0625 "/>
</g>
<g id="glyph-0-7">
<path d="M 2.515625 -5.15625 C 2.453125 -5.3125 2.21875 -5.515625 1.890625 -5.375 C 1.65625 -5.265625 1.34375 -4.984375 1.203125 -4.578125 C 0.875 -4.640625 0.515625 -4.609375 0.1875 -4.4375 C -0.59375 -4.078125 -0.90625 -3.265625 -0.609375 -2.625 C -0.421875 -2.21875 -0.046875 -2.03125 0.125 -1.984375 C 0.125 -1.9375 0.03125 -1.5625 0.203125 -1.1875 C 0.328125 -0.921875 0.59375 -0.671875 0.90625 -0.640625 C 0.546875 -0.3125 0.359375 0.140625 0.53125 0.53125 C 0.796875 1.09375 1.8125 1.1875 2.859375 0.703125 C 3.859375 0.234375 4.5 -0.578125 4.21875 -1.203125 C 4.046875 -1.546875 3.734375 -1.828125 3.34375 -1.890625 C 2.765625 -1.953125 2.296875 -1.734375 1.515625 -1.375 C 1.359375 -1.296875 1.109375 -1.1875 1.015625 -1.15625 C 0.75 -1.109375 0.515625 -1.25 0.390625 -1.515625 C 0.328125 -1.65625 0.3125 -1.78125 0.328125 -1.921875 C 0.609375 -1.875 0.90625 -1.890625 1.28125 -2.0625 C 2.0625 -2.421875 2.390625 -3.25 2.09375 -3.890625 C 1.90625 -4.296875 1.53125 -4.46875 1.375 -4.515625 C 1.5625 -4.953125 1.9375 -5.125 2.046875 -5.171875 C 2.015625 -5.140625 1.96875 -5.0625 2.046875 -4.90625 C 2.078125 -4.828125 2.21875 -4.703125 2.40625 -4.796875 C 2.515625 -4.84375 2.59375 -4.984375 2.515625 -5.15625 Z M 1.46875 -3.59375 C 1.546875 -3.40625 1.921875 -2.625 1.1875 -2.28125 C 0.46875 -1.9375 0.09375 -2.71875 0.015625 -2.90625 C -0.09375 -3.140625 -0.203125 -3.421875 -0.15625 -3.6875 C -0.109375 -3.90625 0.03125 -4.125 0.265625 -4.234375 C 1 -4.578125 1.375 -3.78125 1.46875 -3.59375 Z M 3.765625 -1 C 3.984375 -0.53125 3.53125 0.125 2.765625 0.484375 C 1.96875 0.859375 1.1875 0.75 0.984375 0.296875 C 0.921875 0.171875 0.75 -0.40625 1.453125 -0.734375 L 2.1875 -1.078125 C 2.46875 -1.203125 3.453125 -1.65625 3.765625 -1 Z M 3.765625 -1 "/>
</g>
<g id="glyph-0-8">
<path d="M 3.453125 -3.4375 C 3.234375 -3.90625 2.921875 -4.1875 2.609375 -4.328125 C 2.046875 -4.625 1.640625 -4.53125 1.046875 -4.40625 L 0.265625 -4.265625 C -0.46875 -4.09375 -0.921875 -4.53125 -1.078125 -4.890625 C -1.328125 -5.421875 -1.140625 -6.15625 -0.46875 -6.484375 C 0.578125 -6.96875 1.359375 -6.375 1.875 -5.609375 C 1.953125 -5.46875 1.984375 -5.4375 2.09375 -5.484375 C 2.203125 -5.53125 2.171875 -5.578125 2.09375 -5.75 L 1.359375 -7.328125 C 1.28125 -7.484375 1.25 -7.546875 1.15625 -7.5 C 1.09375 -7.46875 1.109375 -7.453125 1.078125 -7.359375 C 1.046875 -7.140625 1.078125 -7.296875 1 -6.75 C 0.796875 -6.84375 0.1875 -7.046875 -0.578125 -6.703125 C -1.53125 -6.25 -1.859375 -5.203125 -1.46875 -4.375 C -1.171875 -3.75 -0.609375 -3.515625 -0.5625 -3.5 C -0.03125 -3.3125 0.15625 -3.34375 1.203125 -3.578125 C 1.9375 -3.71875 2.03125 -3.734375 2.421875 -3.59375 C 2.421875 -3.59375 2.84375 -3.421875 3.0625 -2.9375 C 3.328125 -2.390625 3.21875 -1.59375 2.46875 -1.25 C 1.859375 -0.953125 0.59375 -0.671875 -0.09375 -2 C -0.15625 -2.109375 -0.171875 -2.15625 -0.28125 -2.109375 C -0.390625 -2.0625 -0.359375 -1.984375 -0.28125 -1.828125 L 0.453125 -0.265625 C 0.515625 -0.109375 0.546875 -0.03125 0.640625 -0.078125 C 0.703125 -0.109375 0.703125 -0.125 0.71875 -0.234375 C 0.765625 -0.453125 0.71875 -0.296875 0.796875 -0.84375 C 1.515625 -0.59375 2.203125 -0.796875 2.59375 -0.984375 C 3.59375 -1.453125 3.859375 -2.578125 3.453125 -3.4375 Z M 3.453125 -3.4375 "/>
</g>
<g id="glyph-0-9">
<path d="M 3.015625 -2.59375 C 3 -2.640625 2.921875 -2.671875 2.859375 -2.640625 C 2.765625 -2.609375 2.78125 -2.53125 2.796875 -2.5 C 2.875 -1.53125 2.171875 -1.1875 2.0625 -1.125 C 1.671875 -0.953125 1.234375 -1.015625 0.90625 -1.203125 C 0.453125 -1.46875 0.234375 -1.953125 0.078125 -2.296875 L 2.390625 -3.375 C 2.5625 -3.453125 2.609375 -3.484375 2.53125 -3.65625 C 2.140625 -4.484375 1.3125 -5.046875 0.265625 -4.5625 C -0.71875 -4.109375 -1.0625 -2.90625 -0.59375 -1.890625 C -0.109375 -0.828125 1.140625 -0.4375 2.125 -0.890625 C 3.125 -1.359375 3.109375 -2.40625 3.015625 -2.59375 Z M 1.96875 -3.40625 L -0.015625 -2.484375 C -0.515625 -3.765625 0.140625 -4.234375 0.375 -4.34375 C 0.828125 -4.546875 1.46875 -4.453125 1.96875 -3.40625 Z M 1.96875 -3.40625 "/>
</g>
<g id="glyph-0-10">
<path d="M 4.4375 -2.0625 L 4.3125 -2.3125 C 3.75 -2.0625 3.671875 -2.09375 3.484375 -2.484375 L 2.140625 -5.359375 L 0.96875 -4.703125 L 1.078125 -4.453125 C 1.625 -4.71875 1.734375 -4.6875 1.921875 -4.296875 L 2.578125 -2.859375 C 2.921875 -2.140625 2.75 -1.421875 2.171875 -1.140625 C 1.5 -0.828125 1.296875 -1.171875 1.09375 -1.609375 L -0.15625 -4.28125 L -1.34375 -3.625 L -1.234375 -3.375 C -0.609375 -3.671875 -0.59375 -3.640625 -0.25 -2.921875 L 0.3125 -1.703125 C 0.5625 -1.171875 0.71875 -0.828125 1.21875 -0.71875 C 1.53125 -0.671875 1.90625 -0.78125 2.234375 -0.9375 C 2.640625 -1.125 2.9375 -1.484375 2.96875 -2.078125 L 2.984375 -2.09375 L 3.296875 -1.4375 Z M 4.4375 -2.0625 "/>
</g>
<g id="glyph-0-11">
<path d="M 2.515625 -2.4375 C 2.34375 -2.8125 2.078125 -2.953125 1.8125 -3.046875 C 1.40625 -3.1875 1.09375 -3.125 0.4375 -2.9375 C 0.21875 -2.890625 -0.421875 -2.71875 -0.640625 -3.1875 C -0.765625 -3.4375 -0.734375 -3.859375 0 -4.203125 C 0.890625 -4.609375 1.25 -3.984375 1.359375 -3.765625 C 1.421875 -3.6875 1.4375 -3.640625 1.53125 -3.6875 C 1.65625 -3.734375 1.640625 -3.796875 1.5625 -3.9375 L 1.203125 -4.71875 C 1.140625 -4.859375 1.09375 -4.9375 0.984375 -4.890625 C 0.9375 -4.875 0.9375 -4.875 0.875 -4.734375 C 0.875 -4.703125 0.828125 -4.59375 0.796875 -4.515625 C 0.46875 -4.578125 0.1875 -4.53125 -0.09375 -4.390625 C -1.171875 -3.890625 -1.15625 -3.171875 -0.96875 -2.765625 C -0.84375 -2.484375 -0.609375 -2.34375 -0.34375 -2.25 C 0.03125 -2.125 0.375 -2.21875 0.828125 -2.328125 C 1.28125 -2.4375 1.4375 -2.46875 1.671875 -2.4375 C 1.78125 -2.390625 2.0625 -2.34375 2.203125 -2.03125 C 2.546875 -1.3125 1.71875 -0.9375 1.609375 -0.875 C 0.78125 -0.5 0.25 -1.109375 -0.046875 -1.5 C -0.109375 -1.546875 -0.15625 -1.59375 -0.25 -1.5625 C -0.375 -1.5 -0.34375 -1.421875 -0.28125 -1.28125 L 0.203125 -0.25 C 0.265625 -0.109375 0.3125 -0.046875 0.421875 -0.09375 C 0.46875 -0.125 0.46875 -0.125 0.546875 -0.34375 C 0.546875 -0.40625 0.578125 -0.5625 0.609375 -0.609375 C 1.109375 -0.421875 1.5 -0.609375 1.703125 -0.6875 C 2.6875 -1.15625 2.765625 -1.90625 2.515625 -2.4375 Z M 2.515625 -2.4375 "/>
</g>
<g id="glyph-0-12">
<path d="M 3.53125 -3.78125 C 3.046875 -4.8125 1.875 -5.234375 0.921875 -4.78125 C 0.484375 -4.578125 0.15625 -4.21875 0 -3.75 L -0.234375 -4.25 L -1.390625 -3.609375 L -1.28125 -3.359375 C -0.6875 -3.640625 -0.640625 -3.609375 -0.46875 -3.25 L 1.296875 0.546875 C 1.46875 0.90625 1.390625 0.953125 0.84375 1.203125 L 0.96875 1.46875 C 1.34375 1.265625 1.5 1.1875 1.890625 1 C 2.28125 0.828125 2.375 0.796875 2.828125 0.59375 L 2.703125 0.328125 C 2.171875 0.59375 2.078125 0.625 1.90625 0.265625 L 1.28125 -1.078125 C 1.609375 -0.96875 2 -0.828125 2.546875 -1.078125 C 3.5 -1.53125 4.015625 -2.71875 3.53125 -3.78125 Z M 2.84375 -3.453125 C 3.265625 -2.53125 3.046875 -1.5625 2.390625 -1.25 C 2.03125 -1.078125 1.609375 -1.15625 1.296875 -1.34375 C 1.109375 -1.453125 1.09375 -1.484375 1.03125 -1.625 L 0.1875 -3.421875 C 0.234375 -4.015625 0.625 -4.390625 0.96875 -4.546875 C 1.59375 -4.828125 2.421875 -4.34375 2.84375 -3.453125 Z M 2.84375 -3.453125 "/>
</g>
<g id="glyph-0-13">
<path d="M 4.375 -2.046875 L 4.25 -2.296875 C 3.703125 -2.03125 3.609375 -2.0625 3.421875 -2.453125 L 1.125 -7.390625 L -0.03125 -6.71875 L 0.078125 -6.484375 C 0.625 -6.75 0.75 -6.71875 0.921875 -6.328125 L 1.734375 -4.578125 C 1.671875 -4.625 1.109375 -4.875 0.46875 -4.578125 C -0.53125 -4.109375 -1.03125 -2.921875 -0.546875 -1.859375 C -0.078125 -0.859375 1.140625 -0.4375 2.09375 -0.875 C 2.6875 -1.15625 2.890625 -1.65625 2.953125 -1.890625 L 3.203125 -1.390625 Z M 2.703125 -2.453125 C 2.765625 -2.296875 2.78125 -2.28125 2.734375 -2.046875 C 2.671875 -1.5625 2.359375 -1.234375 2.03125 -1.078125 C 1.6875 -0.921875 1.28125 -0.96875 0.90625 -1.21875 C 0.515625 -1.453125 0.296875 -1.921875 0.171875 -2.1875 C 0 -2.578125 -0.171875 -3.015625 -0.109375 -3.453125 C -0.03125 -3.78125 0.15625 -4.203125 0.609375 -4.40625 C 0.9375 -4.5625 1.34375 -4.546875 1.703125 -4.328125 C 1.859375 -4.25 1.875 -4.234375 1.9375 -4.09375 Z M 2.703125 -2.453125 "/>
</g>
<g id="glyph-0-14">
<path d="M 3.328125 -6.453125 C 2.9375 -7.265625 1.78125 -7.5625 0.671875 -7.046875 L -2.25 -5.6875 L -2.140625 -5.453125 L -1.953125 -5.53125 C -1.328125 -5.828125 -1.28125 -5.734375 -1.140625 -5.4375 L 0.84375 -1.171875 C 0.984375 -0.875 1.015625 -0.78125 0.390625 -0.484375 L 0.203125 -0.40625 L 0.328125 -0.15625 C 0.671875 -0.359375 1.125 -0.5625 1.5 -0.734375 C 1.875 -0.921875 2.328125 -1.125 2.703125 -1.265625 L 2.578125 -1.515625 L 2.390625 -1.421875 C 1.765625 -1.140625 1.734375 -1.21875 1.59375 -1.515625 L 0.703125 -3.421875 L 2.0625 -4.0625 C 3.1875 -4.59375 3.6875 -5.671875 3.328125 -6.453125 Z M 2.5 -6.078125 C 2.671875 -5.71875 3.078125 -4.828125 1.734375 -4.1875 L 0.5625 -3.640625 L -0.453125 -5.8125 C -0.578125 -6.09375 -0.59375 -6.171875 -0.21875 -6.34375 L 0.5625 -6.703125 C 1.90625 -7.34375 2.328125 -6.453125 2.5 -6.078125 Z M 2.5 -6.078125 "/>
</g>
<g id="glyph-0-15">
<path d="M 2.125 -0.984375 L 2 -1.234375 C 1.46875 -0.984375 1.359375 -0.9375 1.1875 -1.3125 L -1.140625 -6.328125 L -2.28125 -5.671875 L -2.171875 -5.4375 C -1.625 -5.6875 -1.515625 -5.65625 -1.34375 -5.265625 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.6875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.765625 1.71875 -0.8125 2.125 -0.984375 Z M 2.125 -0.984375 "/>
</g>
<g id="glyph-0-16">
<path d="M 0.578125 -6.53125 C 0.421875 -6.84375 -0.015625 -6.953125 -0.46875 -6.75 C -1.078125 -6.453125 -1.515625 -5.65625 -1.140625 -4.859375 L -0.703125 -3.921875 L -1.359375 -3.625 L -1.25 -3.375 L -0.59375 -3.671875 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.71875 -0.359375 0.8125 -0.421875 1.234375 -0.609375 L 2.265625 -1.0625 L 2.140625 -1.3125 L 1.984375 -1.234375 C 1.390625 -0.953125 1.328125 -1.03125 1.1875 -1.328125 L -0.03125 -3.9375 L 0.921875 -4.390625 L 0.8125 -4.640625 L -0.15625 -4.1875 L -0.59375 -5.109375 C -0.9375 -5.84375 -0.703125 -6.390625 -0.375 -6.546875 C -0.28125 -6.578125 -0.1875 -6.609375 -0.078125 -6.625 C -0.15625 -6.546875 -0.234375 -6.390625 -0.140625 -6.1875 C -0.046875 -5.96875 0.1875 -5.890625 0.390625 -5.984375 C 0.59375 -6.078125 0.671875 -6.3125 0.578125 -6.53125 Z M 0.578125 -6.53125 "/>
</g>
<g id="glyph-0-17">
<path d="M 1.59375 -4.5 C 1.46875 -4.75 1.125 -4.875 0.75 -4.703125 C 0.25 -4.46875 0.078125 -3.984375 0.125 -3.40625 L -0.265625 -4.234375 L -1.390625 -3.609375 L -1.28125 -3.359375 C -0.71875 -3.625 -0.625 -3.59375 -0.4375 -3.203125 L 0.5625 -1.03125 C 0.734375 -0.65625 0.65625 -0.609375 0.109375 -0.359375 L 0.234375 -0.109375 C 0.6875 -0.328125 0.765625 -0.390625 1.171875 -0.578125 L 2.21875 -1.03125 L 2.09375 -1.28125 L 1.9375 -1.21875 C 1.34375 -0.9375 1.28125 -1.015625 1.140625 -1.3125 L 0.578125 -2.53125 C 0.40625 -2.859375 -0.046875 -4.109375 0.890625 -4.546875 L 0.890625 -4.53125 C 0.859375 -4.515625 0.78125 -4.34375 0.875 -4.15625 C 0.984375 -3.9375 1.21875 -3.875 1.40625 -3.96875 C 1.578125 -4.046875 1.703125 -4.25 1.59375 -4.5 Z M 1.59375 -4.5 "/>
</g>
<g id="glyph-0-18">
<path d="M 6.75 -3.15625 L 6.625 -3.40625 C 6.21875 -3.203125 6.015625 -3.109375 5.890625 -3.375 L 5.15625 -4.921875 C 4.84375 -5.625 4.734375 -5.84375 4.328125 -6.03125 C 4.0625 -6.140625 3.6875 -6.078125 3.328125 -5.90625 C 2.75 -5.640625 2.5 -5.125 2.484375 -4.578125 C 2.171875 -5.015625 1.703125 -5.15625 1.015625 -4.828125 C 0.375 -4.53125 0.171875 -3.921875 0.171875 -3.484375 L 0.15625 -3.484375 L -0.21875 -4.265625 L -1.34375 -3.625 L -1.234375 -3.375 C -0.6875 -3.640625 -0.578125 -3.609375 -0.390625 -3.21875 L 0.609375 -1.046875 C 0.78125 -0.671875 0.703125 -0.640625 0.15625 -0.375 L 0.28125 -0.125 C 0.671875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.78125 1.703125 -0.8125 2.140625 -1 L 2.015625 -1.25 C 1.46875 -1 1.390625 -0.953125 1.21875 -1.328125 L 0.53125 -2.796875 C 0.125 -3.671875 0.5625 -4.390625 1.0625 -4.625 C 1.5 -4.828125 1.78125 -4.578125 2.0625 -4 L 2.921875 -2.125 C 3.09375 -1.75 3 -1.703125 2.46875 -1.453125 L 2.59375 -1.203125 C 2.96875 -1.40625 3.109375 -1.484375 3.515625 -1.671875 C 3.890625 -1.859375 4.015625 -1.890625 4.453125 -2.078125 L 4.328125 -2.328125 C 3.78125 -2.078125 3.703125 -2.03125 3.53125 -2.40625 L 2.84375 -3.875 C 2.4375 -4.75 2.875 -5.46875 3.359375 -5.6875 C 3.796875 -5.90625 4.09375 -5.65625 4.375 -5.078125 L 5.234375 -3.203125 C 5.40625 -2.828125 5.3125 -2.78125 4.78125 -2.546875 L 4.90625 -2.296875 C 5.296875 -2.484375 5.421875 -2.5625 5.8125 -2.75 C 6.203125 -2.9375 6.328125 -2.96875 6.75 -3.15625 Z M 6.75 -3.15625 "/>
</g>
<g id="glyph-0-19">
<path d="M 2.703125 -5.21875 L 2.59375 -5.46875 C 2.34375 -5.3125 2.078125 -5.203125 1.96875 -5.140625 C 1.75 -5.046875 1.5 -4.9375 1.28125 -4.859375 L 1.390625 -4.609375 C 1.765625 -4.765625 1.90625 -4.46875 1.90625 -4.4375 C 1.953125 -4.34375 1.96875 -4.25 1.953125 -4.171875 L 2.03125 -1.84375 L 0.140625 -3.546875 C 0.046875 -3.640625 0.03125 -3.703125 0.03125 -3.703125 C -0.078125 -3.921875 0.1875 -4.046875 0.359375 -4.125 L 0.25 -4.375 L -0.640625 -3.921875 C -0.671875 -3.90625 -1.140625 -3.6875 -1.453125 -3.578125 L -1.34375 -3.328125 C -0.984375 -3.5 -0.8125 -3.5625 -0.609375 -3.390625 L 2.0625 -0.96875 L 2.09375 -0.390625 C 2.109375 0.125 2.140625 0.765625 1.609375 1.03125 C 1.40625 1.109375 1.21875 1.09375 1.1875 1.078125 C 1.25 1.03125 1.4375 0.875 1.3125 0.59375 C 1.203125 0.390625 0.984375 0.328125 0.8125 0.421875 C 0.609375 0.515625 0.515625 0.703125 0.625 0.90625 C 0.796875 1.28125 1.28125 1.421875 1.6875 1.234375 C 2.21875 0.96875 2.34375 0.34375 2.34375 -0.1875 L 2.21875 -4.3125 C 2.1875 -4.5625 2.203125 -4.953125 2.703125 -5.21875 Z M 2.703125 -5.21875 "/>
</g>
<g id="glyph-1-0">
</g>
<g id="glyph-1-1">
<path d="M 4.40625 -2.484375 C 4.40625 -3.546875 3.53125 -4.421875 2.484375 -4.421875 C 1.40625 -4.421875 0.5625 -3.53125 0.5625 -2.484375 C 0.5625 -1.421875 1.4375 -0.5625 2.484375 -0.5625 C 3.5625 -0.5625 4.40625 -1.4375 4.40625 -2.484375 Z M 4.40625 -2.484375 "/>
</g>
<g id="glyph-2-0">
</g>
<g id="glyph-2-1">
<path d="M 3.828125 -3.34375 C 3.78125 -3.4375 3.6875 -3.390625 3.671875 -3.375 C 3.578125 -3.34375 3.578125 -3.3125 3.625 -3.171875 C 3.75 -2.421875 3.75 -1.859375 3.359375 -1.671875 C 3.1875 -1.59375 3.015625 -1.65625 2.859375 -1.984375 C 2.796875 -2.140625 2.734375 -2.34375 2.703125 -2.515625 C 2.671875 -2.671875 2.65625 -2.71875 2.609375 -2.796875 C 2.328125 -3.390625 1.640625 -3.390625 0.84375 -3.125 C 1.046875 -3.4375 1.1875 -3.84375 1.296875 -4.15625 C 1.515625 -4.84375 1.75 -5.4375 2.1875 -5.640625 C 2.234375 -5.671875 2.234375 -5.671875 2.265625 -5.65625 C 2.390625 -5.6875 2.40625 -5.703125 2.484375 -5.671875 C 2.515625 -5.671875 2.515625 -5.671875 2.5625 -5.65625 C 2.125 -5.421875 2.203125 -5.046875 2.25 -4.9375 C 2.3125 -4.796875 2.5 -4.671875 2.75 -4.78125 C 2.96875 -4.890625 3.15625 -5.21875 3 -5.546875 C 2.875 -5.84375 2.515625 -6.046875 2.109375 -5.84375 C 1.84375 -5.734375 1.46875 -5.4375 1.15625 -4.421875 C 1.015625 -3.9375 0.84375 -3.4375 0.5625 -3.109375 L -0.28125 -7.359375 C -0.28125 -7.359375 -0.328125 -7.46875 -0.4375 -7.421875 C -0.65625 -7.328125 -1.296875 -6.9375 -1.5 -6.8125 C -1.578125 -6.765625 -1.65625 -6.703125 -1.59375 -6.546875 C -1.53125 -6.4375 -1.453125 -6.46875 -1.3125 -6.53125 C -0.875 -6.734375 -0.84375 -6.6875 -0.796875 -6.59375 L -0.75 -6.40625 L 0.359375 -0.609375 C 0.390625 -0.46875 0.40625 -0.453125 0.421875 -0.390625 C 0.53125 -0.171875 0.734375 -0.21875 0.8125 -0.265625 C 0.921875 -0.3125 1 -0.453125 1.015625 -0.578125 C 1.03125 -0.6875 0.65625 -2.546875 0.609375 -2.796875 C 0.921875 -2.921875 1.734375 -3.109375 2.015625 -2.515625 C 2.046875 -2.453125 2.0625 -2.421875 2.078125 -2.3125 C 2.109375 -2.203125 2.125 -2.078125 2.171875 -1.984375 C 2.421875 -1.4375 2.96875 -1.265625 3.4375 -1.484375 C 3.703125 -1.609375 3.875 -1.859375 3.921875 -2.28125 C 3.953125 -2.796875 3.828125 -3.34375 3.828125 -3.34375 Z M 3.828125 -3.34375 "/>
</g>
<g id="glyph-2-2">
<path d="M 6.59375 -3.296875 C 6.546875 -3.390625 6.453125 -3.34375 6.375 -3.3125 C 6 -3.140625 5.828125 -3.171875 5.5625 -3.421875 L 2.890625 -5.78125 C 2.890625 -5.8125 2.796875 -5.859375 2.796875 -5.890625 C 2.796875 -5.890625 2.890625 -6.109375 2.953125 -6.234375 L 3.96875 -8.1875 C 4.515625 -9.1875 4.859375 -9.390625 5.125 -9.546875 C 5.1875 -9.59375 5.265625 -9.640625 5.1875 -9.796875 C 5.171875 -9.84375 5.109375 -9.875 5.046875 -9.84375 C 4.84375 -9.75 4.625 -9.625 4.421875 -9.515625 C 4.09375 -9.375 3.71875 -9.234375 3.390625 -9.078125 C 3.34375 -9.0625 3.234375 -9 3.328125 -8.8125 C 3.34375 -8.765625 3.390625 -8.75 3.484375 -8.78125 C 3.6875 -8.84375 3.78125 -8.84375 3.84375 -8.71875 C 3.921875 -8.546875 3.75 -8.234375 3.703125 -8.15625 L 1.4375 -3.8125 L 0.828125 -7.046875 C 0.75 -7.40625 0.734375 -7.5 1.40625 -7.796875 C 1.625 -7.90625 1.703125 -7.9375 1.609375 -8.125 C 1.578125 -8.203125 1.484375 -8.1875 1.4375 -8.15625 L 0.296875 -7.59375 L -0.875 -7.09375 C -0.953125 -7.046875 -1.0625 -7 -0.984375 -6.828125 C -0.921875 -6.71875 -0.84375 -6.765625 -0.65625 -6.84375 C -0.546875 -6.90625 -0.390625 -6.96875 -0.265625 -7.015625 C -0.125 -7.0625 -0.0625 -7.046875 -0.015625 -6.953125 C 0.015625 -6.90625 0 -6.890625 0.03125 -6.765625 L 1.09375 -1.359375 C 1.15625 -0.984375 1.171875 -0.890625 0.46875 -0.5625 C 0.3125 -0.484375 0.21875 -0.4375 0.296875 -0.265625 C 0.34375 -0.15625 0.453125 -0.21875 0.484375 -0.21875 L 1.609375 -0.796875 L 2.1875 -1.046875 C 2.390625 -1.125 2.59375 -1.203125 2.796875 -1.296875 C 2.84375 -1.328125 2.96875 -1.390625 2.890625 -1.578125 C 2.84375 -1.671875 2.765625 -1.625 2.59375 -1.546875 C 2.25 -1.390625 2 -1.265625 1.921875 -1.421875 C 1.890625 -1.5 1.859375 -1.71875 1.8125 -1.859375 L 1.53125 -3.453125 L 2.375 -5.125 L 4.546875 -3.1875 C 4.765625 -3 4.78125 -2.96875 4.8125 -2.90625 C 4.9375 -2.640625 4.5625 -2.46875 4.484375 -2.421875 C 4.375 -2.375 4.28125 -2.328125 4.359375 -2.140625 C 4.40625 -2.046875 4.53125 -2.109375 4.53125 -2.109375 C 4.890625 -2.28125 5.25 -2.484375 5.609375 -2.65625 C 5.796875 -2.75 6.3125 -2.9375 6.515625 -3.03125 C 6.5625 -3.0625 6.671875 -3.109375 6.59375 -3.296875 Z M 6.59375 -3.296875 "/>
</g>
<g id="glyph-2-3">
<path d="M 2.3125 -8.0625 C 2.125 -8.46875 1.59375 -8.484375 1.21875 -8.3125 C 0.921875 -8.171875 0.421875 -7.75 0.578125 -6.734375 C 0.59375 -6.5 0.625 -6.421875 0.9375 -5.171875 L 0.3125 -4.875 C 0.140625 -4.796875 0.046875 -4.75 0.125 -4.5625 C 0.171875 -4.46875 0.25 -4.515625 0.421875 -4.59375 L 1.015625 -4.875 L 2.015625 -0.984375 C 2.265625 -0.046875 2.484375 0.859375 2.015625 1.078125 C 1.96875 1.09375 1.75 1.203125 1.5 1.109375 C 1.921875 0.875 1.828125 0.53125 1.765625 0.390625 C 1.671875 0.1875 1.453125 0.15625 1.296875 0.234375 C 1.046875 0.34375 0.890625 0.65625 1.0625 1.015625 C 1.25 1.40625 1.734375 1.453125 2.109375 1.28125 C 2.59375 1.046875 2.703125 0.328125 2.71875 -0.078125 C 2.734375 -0.78125 2.453125 -1.96875 2.4375 -2.046875 L 1.625 -5.15625 L 2.40625 -5.515625 C 2.578125 -5.59375 2.671875 -5.640625 2.59375 -5.828125 C 2.546875 -5.921875 2.453125 -5.875 2.296875 -5.8125 L 1.5625 -5.46875 C 1.421875 -6.03125 1.40625 -6 1.25 -6.5625 C 1.203125 -6.78125 1.015625 -7.484375 1.03125 -7.59375 C 1.046875 -7.828125 1.125 -8.03125 1.3125 -8.109375 C 1.359375 -8.125 1.578125 -8.234375 1.828125 -8.15625 C 1.453125 -7.9375 1.515625 -7.59375 1.59375 -7.453125 C 1.6875 -7.25 1.890625 -7.203125 2.0625 -7.296875 C 2.296875 -7.40625 2.46875 -7.71875 2.3125 -8.0625 Z M 2.3125 -8.0625 "/>
</g>
<g id="glyph-2-4">
<path d="M 4.5625 -7.390625 L 3.984375 -9.03125 C 3.90625 -9.28125 3.859375 -9.265625 3.640625 -9.15625 L -0.78125 -7.09375 C -0.96875 -7.015625 -1.046875 -6.96875 -0.953125 -6.796875 C -0.921875 -6.6875 -0.84375 -6.734375 -0.671875 -6.8125 C -0.34375 -6.953125 -0.09375 -7.078125 -0.015625 -6.921875 C 0 -6.890625 0.015625 -6.875 0.046875 -6.703125 L 1.09375 -1.359375 C 1.15625 -0.984375 1.171875 -0.890625 0.46875 -0.5625 C 0.3125 -0.484375 0.21875 -0.4375 0.296875 -0.265625 C 0.34375 -0.15625 0.453125 -0.21875 0.484375 -0.21875 L 1.65625 -0.8125 L 3.015625 -1.40625 C 3.09375 -1.4375 3.203125 -1.5 3.125 -1.671875 C 3.09375 -1.734375 3.015625 -1.734375 3.015625 -1.734375 C 2.984375 -1.734375 2.96875 -1.734375 2.765625 -1.625 C 2.5625 -1.53125 2.515625 -1.515625 2.28125 -1.421875 C 2.015625 -1.34375 1.96875 -1.359375 1.921875 -1.484375 C 1.921875 -1.484375 1.890625 -1.546875 1.875 -1.703125 L 1.375 -4.21875 L 2.25 -4.625 C 2.9375 -4.9375 3.0625 -4.828125 3.1875 -4.546875 C 3.203125 -4.5 3.265625 -4.375 3.328125 -4.078125 C 3.328125 -4.046875 3.34375 -3.96875 3.34375 -3.96875 C 3.375 -3.890625 3.4375 -3.890625 3.5 -3.921875 C 3.578125 -3.953125 3.5625 -3.96875 3.53125 -4.15625 L 3.140625 -6.359375 C 3.109375 -6.46875 3.109375 -6.484375 3.09375 -6.5 C 3.09375 -6.5 3.03125 -6.609375 2.9375 -6.5625 C 2.84375 -6.515625 2.859375 -6.46875 2.875 -6.3125 C 3.03125 -5.515625 2.890625 -5.265625 2.125 -4.90625 L 1.296875 -4.53125 L 0.828125 -7.09375 C 0.75 -7.4375 0.734375 -7.46875 1.125 -7.640625 L 2.328125 -8.203125 C 3.4375 -8.71875 3.78125 -8.515625 4.109375 -7.828125 C 4.203125 -7.625 4.21875 -7.578125 4.296875 -7.328125 C 4.34375 -7.21875 4.359375 -7.1875 4.359375 -7.15625 C 4.390625 -7.109375 4.4375 -7.078125 4.515625 -7.109375 C 4.625 -7.15625 4.609375 -7.203125 4.5625 -7.390625 Z M 4.5625 -7.390625 "/>
</g>
<g id="glyph-2-5">
<path d="M 3.046875 -8.171875 C 3.015625 -8.265625 2.9375 -8.28125 2.84375 -8.28125 C 2.578125 -8.328125 2.40625 -8.46875 2.234375 -8.640625 C 2.171875 -8.71875 2.078125 -8.8125 1.953125 -8.75 C 1.828125 -8.6875 1.828125 -8.5625 1.875 -8.484375 C 1.890625 -8.4375 2.09375 -8.1875 2.328125 -8.046875 L -0.71875 -6.625 C -0.875 -6.5625 -1.03125 -6.484375 -0.953125 -6.3125 C -0.859375 -6.125 -0.703125 -6.203125 -0.546875 -6.265625 L 2.34375 -7.625 C 2.265625 -7.453125 2.09375 -7.0625 2.171875 -6.890625 C 2.203125 -6.8125 2.328125 -6.75 2.4375 -6.796875 C 2.515625 -6.84375 2.53125 -6.921875 2.546875 -6.984375 C 2.59375 -7.1875 2.671875 -7.53125 2.984375 -7.921875 C 3.03125 -7.984375 3.109375 -8.0625 3.046875 -8.171875 Z M 3.046875 -8.171875 "/>
</g>
<g id="glyph-2-6">
<path d="M -0.0625 -6.828125 C -0.15625 -7 -0.34375 -7.109375 -0.5625 -7 C -0.796875 -6.890625 -0.9375 -6.53125 -0.828125 -6.296875 C -0.734375 -6.125 -0.53125 -6.03125 -0.328125 -6.125 C -0.109375 -6.21875 0.0625 -6.546875 -0.0625 -6.828125 Z M 2.046875 -2.515625 C 2 -2.609375 1.921875 -2.5625 1.890625 -2.5625 C 1.8125 -2.515625 1.8125 -2.5 1.828125 -2.328125 C 1.9375 -1.703125 1.890625 -1 1.421875 -0.78125 C 1.28125 -0.71875 1.1875 -0.78125 1.078125 -0.984375 C 0.96875 -1.21875 0.96875 -1.359375 0.921875 -2.015625 L 0.828125 -3.125 C 0.8125 -3.421875 0.8125 -3.4375 0.78125 -3.75 C 0.78125 -3.953125 0.75 -4.109375 0.671875 -4.28125 C 0.484375 -4.6875 0.03125 -4.890625 -0.40625 -4.6875 C -1.25 -4.28125 -1 -2.796875 -0.953125 -2.71875 C -0.921875 -2.625 -0.796875 -2.671875 -0.796875 -2.671875 C -0.71875 -2.71875 -0.703125 -2.734375 -0.734375 -2.90625 C -0.875 -3.875 -0.640625 -4.3125 -0.328125 -4.46875 C -0.265625 -4.5 -0.109375 -4.5625 0.03125 -4.265625 C 0.109375 -4.078125 0.140625 -3.84375 0.15625 -3.75 C 0.171875 -3.484375 0.265625 -2.25 0.296875 -1.796875 C 0.296875 -1.53125 0.328125 -1.171875 0.421875 -0.984375 C 0.625 -0.5625 1.078125 -0.390625 1.5 -0.59375 C 2.359375 -0.984375 2.078125 -2.4375 2.046875 -2.515625 Z M 2.046875 -2.515625 "/>
</g>
<g id="glyph-3-0">
</g>
<g id="glyph-3-1">
<path d="M 3.6875 -5.375 L 3.3125 -6.53125 C 3.21875 -6.734375 3.1875 -6.71875 3.03125 -6.640625 L -0.34375 -5.0625 C -0.46875 -5.015625 -0.546875 -4.984375 -0.484375 -4.84375 C -0.4375 -4.75 -0.359375 -4.78125 -0.234375 -4.828125 C -0.234375 -4.828125 -0.109375 -4.890625 0 -4.9375 C 0.15625 -4.96875 0.171875 -4.96875 0.203125 -4.921875 C 0.21875 -4.875 0.234375 -4.796875 0.234375 -4.765625 L 0.9375 -1.078125 C 1 -0.78125 1.015625 -0.75 0.515625 -0.53125 C 0.421875 -0.484375 0.328125 -0.4375 0.390625 -0.296875 C 0.421875 -0.234375 0.484375 -0.21875 0.53125 -0.25 C 0.71875 -0.34375 1.171875 -0.578125 1.359375 -0.671875 L 1.859375 -0.875 C 2.03125 -0.953125 2.1875 -1.03125 2.34375 -1.09375 C 2.390625 -1.109375 2.5 -1.15625 2.4375 -1.296875 C 2.390625 -1.390625 2.3125 -1.359375 2.171875 -1.296875 C 2.171875 -1.296875 2 -1.21875 1.828125 -1.140625 C 1.6875 -1.09375 1.625 -1.0625 1.578125 -1.171875 C 1.578125 -1.1875 1.5625 -1.203125 1.546875 -1.296875 L 1.21875 -3.0625 L 1.875 -3.375 C 2.359375 -3.59375 2.5 -3.53125 2.59375 -3.328125 C 2.640625 -3.234375 2.640625 -3.21875 2.671875 -3.015625 C 2.671875 -3 2.671875 -2.953125 2.6875 -2.9375 C 2.703125 -2.875 2.796875 -2.859375 2.84375 -2.890625 C 2.9375 -2.921875 2.90625 -2.96875 2.890625 -3.09375 L 2.609375 -4.609375 C 2.59375 -4.625 2.5625 -4.734375 2.5625 -4.734375 C 2.53125 -4.796875 2.46875 -4.8125 2.421875 -4.78125 C 2.328125 -4.75 2.34375 -4.6875 2.375 -4.5625 C 2.46875 -4 2.328125 -3.84375 1.78125 -3.59375 L 1.15625 -3.296875 L 0.828125 -5.078125 C 0.78125 -5.265625 0.78125 -5.3125 1.046875 -5.421875 L 2.015625 -5.890625 C 2.859375 -6.28125 3.109375 -6.140625 3.359375 -5.609375 C 3.453125 -5.40625 3.484375 -5.25 3.5 -5.21875 C 3.53125 -5.15625 3.578125 -5.109375 3.65625 -5.15625 C 3.75 -5.203125 3.734375 -5.265625 3.6875 -5.375 Z M 3.6875 -5.375 "/>
</g>
<g id="glyph-3-2">
<path d="M 3.546875 -2.75 C 3.5 -2.828125 3.40625 -2.796875 3.390625 -2.78125 C 3.296875 -2.734375 3.3125 -2.71875 3.34375 -2.53125 C 3.40625 -2.203125 3.484375 -1.75 3.203125 -1.625 C 3.046875 -1.5625 2.921875 -1.671875 2.84375 -1.84375 C 2.796875 -1.953125 2.734375 -2.21875 2.71875 -2.390625 L 2.46875 -3.640625 C 2.4375 -3.828125 2.390625 -4.15625 2.375 -4.171875 C 2.3125 -4.296875 2.171875 -4.328125 2.0625 -4.265625 C 1.828125 -4.171875 1.859375 -3.953125 1.90625 -3.75 L 2.203125 -2.265625 C 2.21875 -2.125 2.28125 -1.859375 2.28125 -1.859375 C 2.234375 -1.59375 2.140625 -1.140625 1.765625 -0.953125 C 1.328125 -0.75 1.125 -1.171875 1.078125 -1.28125 C 0.90625 -1.640625 0.859375 -2.171875 0.84375 -2.734375 C 0.8125 -2.875 0.8125 -2.984375 0.765625 -3.078125 C 0.609375 -3.421875 0.234375 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.65625 -0.265625 -3.046875 -0.03125 -3.15625 C 0.078125 -3.21875 0.15625 -3.15625 0.234375 -3.015625 C 0.296875 -2.859375 0.3125 -2.71875 0.3125 -2.546875 C 0.375 -1.515625 0.46875 -1.328125 0.546875 -1.15625 C 0.59375 -1.0625 0.734375 -0.765625 1.078125 -0.671875 C 1.3125 -0.59375 1.59375 -0.65625 1.8125 -0.765625 C 2.21875 -0.953125 2.3125 -1.265625 2.4375 -1.578125 C 2.78125 -1.21875 3.1875 -1.40625 3.28125 -1.453125 C 3.484375 -1.546875 3.59375 -1.75 3.609375 -2.015625 C 3.625 -2.34375 3.5625 -2.71875 3.546875 -2.75 Z M 3.546875 -2.75 "/>
</g>
<g id="glyph-3-3">
<path d="M 2.3125 -3.875 C 2.078125 -4.375 1.78125 -4.234375 1.765625 -4.21875 C 1.59375 -4.140625 1.5 -3.890625 1.578125 -3.71875 C 1.625 -3.609375 1.71875 -3.59375 1.75 -3.578125 C 1.921875 -3.53125 2.125 -3.4375 2.25 -3.171875 C 2.375 -2.890625 2.59375 -1.34375 1.84375 -0.984375 C 1.328125 -0.75 1.109375 -1.203125 1.0625 -1.328125 C 0.921875 -1.609375 0.875 -2 0.84375 -2.71875 C 0.8125 -2.875 0.8125 -2.984375 0.765625 -3.078125 C 0.609375 -3.421875 0.234375 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.65625 -0.28125 -3.046875 -0.03125 -3.15625 C 0.078125 -3.21875 0.15625 -3.15625 0.234375 -3.015625 C 0.296875 -2.859375 0.3125 -2.71875 0.3125 -2.546875 C 0.375 -1.71875 0.421875 -1.40625 0.53125 -1.1875 C 0.828125 -0.5625 1.421875 -0.578125 1.90625 -0.8125 C 2.96875 -1.296875 2.546875 -3.34375 2.3125 -3.875 Z M 2.3125 -3.875 "/>
</g>
<g id="glyph-3-4">
<path d="M 3.859375 -4.59375 C 3.640625 -5.0625 3.359375 -4.96875 3.3125 -4.953125 C 3.15625 -4.875 3.046875 -4.609375 3.125 -4.4375 C 3.171875 -4.328125 3.265625 -4.3125 3.3125 -4.3125 C 3.53125 -4.25 3.703125 -4.109375 3.796875 -3.90625 C 3.828125 -3.828125 4.296875 -2.140625 3.5 -1.765625 C 2.984375 -1.515625 2.765625 -1.96875 2.71875 -2.09375 C 2.640625 -2.25 2.625 -2.375 2.53125 -2.765625 L 2.390625 -3.5625 C 2.359375 -3.765625 2.28125 -4.109375 2.265625 -4.125 C 2.203125 -4.25 2.078125 -4.28125 1.96875 -4.21875 C 1.84375 -4.171875 1.765625 -4.046875 1.765625 -3.90625 C 1.796875 -3.875 1.84375 -3.5625 1.859375 -3.390625 C 1.953125 -2.984375 1.953125 -2.984375 2.015625 -2.578125 C 2.109375 -2.1875 2.125 -2.125 2.1875 -1.953125 C 2.28125 -1.84375 2.28125 -1.6875 2.21875 -1.4375 C 2.1875 -1.296875 2.125 -1.125 1.90625 -1.015625 C 1.65625 -0.90625 1.296875 -0.84375 1.0625 -1.328125 C 0.921875 -1.65625 0.875 -2.203125 0.84375 -2.59375 C 0.828125 -2.921875 0.8125 -2.984375 0.765625 -3.09375 C 0.625 -3.390625 0.265625 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.671875 -0.265625 -3.046875 -0.015625 -3.171875 C 0.078125 -3.21875 0.171875 -3.171875 0.25 -3.03125 C 0.3125 -2.875 0.3125 -2.71875 0.34375 -2.625 C 0.390625 -1.53125 0.453125 -1.40625 0.546875 -1.203125 C 0.890625 -0.453125 1.625 -0.671875 1.953125 -0.828125 C 2.078125 -0.890625 2.375 -1.03125 2.46875 -1.59375 C 2.765625 -1.375 3.15625 -1.390625 3.546875 -1.578125 C 4.109375 -1.84375 4.15625 -2.453125 4.171875 -2.78125 C 4.203125 -3.4375 3.984375 -4.296875 3.859375 -4.59375 Z M 3.859375 -4.59375 "/>
</g>
<g id="glyph-4-0">
</g>
<g id="glyph-4-1">
<path d="M 6.21875 -6.125 C 6.21875 -6.21875 6.15625 -6.265625 6.078125 -6.3125 C 5.859375 -6.46875 5.75 -6.65625 5.671875 -6.890625 C 5.65625 -6.984375 5.609375 -7.109375 5.46875 -7.109375 C 5.328125 -7.109375 5.28125 -6.984375 5.28125 -6.890625 C 5.28125 -6.84375 5.359375 -6.53125 5.515625 -6.3125 L 2.15625 -6.3125 C 1.984375 -6.3125 1.8125 -6.3125 1.8125 -6.125 C 1.8125 -5.921875 1.984375 -5.921875 2.15625 -5.921875 L 5.34375 -5.921875 C 5.203125 -5.796875 4.875 -5.515625 4.875 -5.328125 C 4.875 -5.234375 4.96875 -5.140625 5.078125 -5.140625 C 5.171875 -5.140625 5.21875 -5.203125 5.265625 -5.265625 C 5.390625 -5.421875 5.609375 -5.6875 6.046875 -5.90625 C 6.125 -5.953125 6.21875 -6 6.21875 -6.125 Z M 6.21875 -6.125 "/>
</g>
<g id="glyph-4-2">
<path d="M 2.828125 -6.21875 C 2.828125 -6.421875 2.6875 -6.578125 2.453125 -6.578125 C 2.1875 -6.578125 1.921875 -6.3125 1.921875 -6.046875 C 1.921875 -5.859375 2.0625 -5.6875 2.296875 -5.6875 C 2.53125 -5.6875 2.828125 -5.921875 2.828125 -6.21875 Z M 2.921875 -1.421875 C 2.921875 -1.515625 2.828125 -1.515625 2.796875 -1.515625 C 2.703125 -1.515625 2.703125 -1.5 2.640625 -1.34375 C 2.46875 -0.71875 2.140625 -0.109375 1.625 -0.109375 C 1.46875 -0.109375 1.390625 -0.203125 1.390625 -0.4375 C 1.390625 -0.6875 1.453125 -0.828125 1.6875 -1.4375 L 2.0625 -2.484375 C 2.1875 -2.765625 2.1875 -2.78125 2.296875 -3.0625 C 2.375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.40625 1.609375 -4.40625 C 0.671875 -4.40625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.953125 C 0.84375 -3.875 1.234375 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.1875 1.828125 -3.859375 C 1.828125 -3.65625 1.75 -3.4375 1.71875 -3.34375 C 1.625 -3.078125 1.1875 -1.9375 1.03125 -1.5 C 0.921875 -1.25 0.796875 -0.921875 0.796875 -0.703125 C 0.796875 -0.234375 1.140625 0.109375 1.609375 0.109375 C 2.546875 0.109375 2.921875 -1.328125 2.921875 -1.421875 Z M 2.921875 -1.421875 "/>
</g>
<g id="glyph-4-3">
<path d="M 4.53125 -4.96875 C 4.53125 -5.640625 4.34375 -7.015625 3.328125 -7.015625 C 1.953125 -7.015625 0.421875 -4.203125 0.421875 -1.9375 C 0.421875 -1 0.703125 0.109375 1.609375 0.109375 C 3.015625 0.109375 4.53125 -2.75 4.53125 -4.96875 Z M 3.546875 -3.609375 L 1.46875 -3.609375 C 1.640625 -4.25 1.84375 -5.046875 2.234375 -5.75 C 2.515625 -6.234375 2.875 -6.796875 3.328125 -6.796875 C 3.8125 -6.796875 3.875 -6.15625 3.875 -5.59375 C 3.875 -5.109375 3.796875 -4.59375 3.546875 -3.609375 Z M 3.46875 -3.296875 C 3.359375 -2.84375 3.140625 -1.984375 2.765625 -1.28125 C 2.421875 -0.59375 2.046875 -0.109375 1.609375 -0.109375 C 1.28125 -0.109375 1.078125 -0.390625 1.078125 -1.328125 C 1.078125 -1.734375 1.140625 -2.3125 1.390625 -3.296875 Z M 3.46875 -3.296875 "/>
</g>
<g id="glyph-5-0">
</g>
<g id="glyph-5-1">
<path d="M 3.90625 -1 C 3.90625 -1.09375 3.8125 -1.09375 3.796875 -1.09375 C 3.6875 -1.09375 3.6875 -1.046875 3.65625 -0.96875 C 3.515625 -0.484375 3.09375 -0.125 2.703125 -0.125 C 2.421875 -0.125 2.28125 -0.3125 2.28125 -0.578125 C 2.28125 -0.765625 2.453125 -1.390625 2.640625 -2.171875 C 2.78125 -2.703125 3.09375 -2.875 3.328125 -2.875 C 3.328125 -2.875 3.546875 -2.875 3.703125 -2.78125 C 3.484375 -2.71875 3.390625 -2.515625 3.390625 -2.390625 C 3.390625 -2.25 3.515625 -2.140625 3.671875 -2.140625 C 3.828125 -2.140625 4.0625 -2.265625 4.0625 -2.5625 C 4.0625 -2.953125 3.609375 -3.078125 3.34375 -3.078125 C 2.984375 -3.078125 2.703125 -2.84375 2.5625 -2.578125 C 2.4375 -2.859375 2.109375 -3.078125 1.71875 -3.078125 C 0.9375 -3.078125 0.5 -2.21875 0.5 -2 C 0.5 -1.921875 0.59375 -1.921875 0.609375 -1.921875 C 0.703125 -1.921875 0.703125 -1.9375 0.75 -2.03125 C 0.921875 -2.578125 1.359375 -2.875 1.703125 -2.875 C 1.9375 -2.875 2.125 -2.75 2.125 -2.421875 C 2.125 -2.28125 2.03125 -1.9375 1.96875 -1.6875 L 1.734375 -0.734375 C 1.671875 -0.5 1.4375 -0.125 1.078125 -0.125 C 1.0625 -0.125 0.84375 -0.125 0.703125 -0.21875 C 0.984375 -0.3125 1.015625 -0.5625 1.015625 -0.609375 C 1.015625 -0.765625 0.890625 -0.859375 0.734375 -0.859375 C 0.53125 -0.859375 0.328125 -0.703125 0.328125 -0.4375 C 0.328125 -0.09375 0.71875 0.0625 1.0625 0.0625 C 1.390625 0.0625 1.671875 -0.125 1.84375 -0.421875 C 2.015625 -0.0625 2.390625 0.0625 2.671875 0.0625 C 3.484375 0.0625 3.90625 -0.796875 3.90625 -1 Z M 3.90625 -1 "/>
</g>
<g id="glyph-5-2">
<path d="M 3.875 -2.625 C 3.90625 -2.71875 3.90625 -2.734375 3.90625 -2.78125 C 3.90625 -2.921875 3.796875 -3 3.671875 -3 C 3.59375 -3 3.46875 -2.96875 3.390625 -2.84375 C 3.359375 -2.796875 3.3125 -2.578125 3.28125 -2.4375 L 3.125 -1.859375 L 2.84375 -0.734375 C 2.84375 -0.734375 2.53125 -0.125 2 -0.125 C 1.515625 -0.125 1.515625 -0.578125 1.515625 -0.703125 C 1.515625 -1.078125 1.671875 -1.515625 1.890625 -2.0625 C 1.96875 -2.28125 2 -2.359375 2 -2.484375 C 2 -2.8125 1.71875 -3.078125 1.34375 -3.078125 C 0.640625 -3.078125 0.328125 -2.125 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.953125 0.578125 -2.03125 C 0.75 -2.609375 1.046875 -2.875 1.328125 -2.875 C 1.4375 -2.875 1.5 -2.796875 1.5 -2.640625 C 1.5 -2.46875 1.4375 -2.328125 1.40625 -2.234375 C 1.0625 -1.375 1 -1.125 1 -0.8125 C 1 -0.703125 1 -0.375 1.265625 -0.140625 C 1.484375 0.03125 1.78125 0.0625 1.96875 0.0625 C 2.25 0.0625 2.5 -0.03125 2.71875 -0.25 C 2.640625 0.140625 2.5625 0.4375 2.265625 0.78125 C 2.078125 1 1.796875 1.21875 1.421875 1.21875 C 1.375 1.21875 1.046875 1.21875 0.90625 1 C 1.28125 0.953125 1.28125 0.609375 1.28125 0.609375 C 1.28125 0.390625 1.078125 0.34375 1.015625 0.34375 C 0.84375 0.34375 0.609375 0.484375 0.609375 0.8125 C 0.609375 1.15625 0.9375 1.421875 1.4375 1.421875 C 2.140625 1.421875 3 0.875 3.21875 0 Z M 3.875 -2.625 "/>
</g>
<g id="glyph-5-3">
<path d="M 3.46875 -1.015625 C 3.46875 -1.09375 3.390625 -1.09375 3.359375 -1.09375 C 3.265625 -1.09375 3.25 -1.0625 3.21875 -0.984375 C 3.09375 -0.640625 2.6875 -0.46875 2.34375 -0.46875 C 2.1875 -0.46875 2 -0.515625 1.828125 -0.546875 C 1.515625 -0.625 1.453125 -0.625 1.328125 -0.625 C 1.328125 -0.625 1.21875 -0.625 1.171875 -0.609375 C 1.359375 -0.796875 1.484375 -0.921875 2.0625 -1.40625 C 2.21875 -1.515625 2.734375 -1.9375 2.9375 -2.125 C 3.359375 -2.546875 3.625 -2.90625 3.625 -2.984375 C 3.625 -3.078125 3.546875 -3.078125 3.515625 -3.078125 C 3.453125 -3.078125 3.421875 -3.0625 3.390625 -3 C 3.171875 -2.6875 3.03125 -2.578125 2.859375 -2.578125 C 2.78125 -2.578125 2.671875 -2.578125 2.46875 -2.78125 C 2.234375 -3.03125 2.078125 -3.078125 1.921875 -3.078125 C 1.359375 -3.078125 0.984375 -2.46875 0.984375 -2.265625 C 0.984375 -2.1875 1.046875 -2.171875 1.09375 -2.171875 C 1.1875 -2.171875 1.203125 -2.1875 1.21875 -2.265625 C 1.328125 -2.515625 1.71875 -2.53125 1.828125 -2.53125 C 2 -2.53125 2.171875 -2.484375 2.265625 -2.46875 C 2.65625 -2.390625 2.703125 -2.390625 2.875 -2.390625 C 2.703125 -2.1875 2.578125 -2.0625 1.90625 -1.546875 C 1.359375 -1.109375 1.171875 -0.9375 1.046875 -0.796875 C 0.625 -0.390625 0.421875 -0.078125 0.421875 -0.015625 C 0.421875 0.0625 0.515625 0.0625 0.546875 0.0625 C 0.609375 0.0625 0.625 0.0625 0.65625 0 C 0.84375 -0.265625 1.0625 -0.421875 1.296875 -0.421875 C 1.390625 -0.421875 1.484375 -0.421875 1.671875 -0.25 C 1.890625 -0.03125 2.03125 0.0625 2.265625 0.0625 C 3 0.0625 3.46875 -0.78125 3.46875 -1.015625 Z M 3.46875 -1.015625 "/>
</g>
<g id="glyph-6-0">
</g>
<g id="glyph-6-1">
<path d="M 6.734375 -1.609375 L 6.484375 -1.609375 C 6.4375 -1.359375 6.40625 -1.125 6.3125 -0.890625 C 6.265625 -0.734375 6.234375 -0.640625 5.65625 -0.640625 L 4.859375 -0.640625 C 4.984375 -1.203125 5.296875 -1.6875 5.75 -2.34375 C 6.203125 -3.046875 6.625 -3.734375 6.625 -4.515625 C 6.625 -5.90625 5.28125 -7.015625 3.59375 -7.015625 C 1.875 -7.015625 0.5625 -5.875 0.5625 -4.515625 C 0.5625 -3.734375 0.96875 -3.046875 1.4375 -2.34375 C 1.875 -1.6875 2.1875 -1.203125 2.3125 -0.640625 L 1.515625 -0.640625 C 0.953125 -0.640625 0.921875 -0.734375 0.859375 -0.875 C 0.78125 -1.109375 0.734375 -1.359375 0.6875 -1.609375 L 0.4375 -1.609375 L 0.765625 0 L 2.359375 0 C 2.578125 0 2.609375 0 2.609375 -0.203125 C 2.609375 -0.90625 2.296875 -1.78125 2.0625 -2.421875 C 1.859375 -3 1.578125 -3.78125 1.578125 -4.53125 C 1.578125 -6.125 2.671875 -6.796875 3.578125 -6.796875 C 4.53125 -6.796875 5.59375 -6.078125 5.59375 -4.53125 C 5.59375 -3.78125 5.328125 -3.03125 5.03125 -2.203125 C 4.890625 -1.796875 4.5625 -0.890625 4.5625 -0.203125 C 4.5625 0 4.59375 0 4.828125 0 L 6.40625 0 Z M 6.734375 -1.609375 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 0 0.0585938 L 256.371094 0.0585938 L 256.371094 254.554688 L 0 254.554688 Z M 0 0.0585938 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 2 217 L 39 217 L 39 254.554688 L 2 254.554688 Z M 2 217 "/>
</clipPath>
</defs>
<path fill-rule="nonzero" fill="rgb(39.99939%, 39.99939%, 39.99939%)" fill-opacity="1" d="M 255.378906 122.796875 C 255.378906 55.558594 200.871094 1.054688 133.632812 1.054688 C 66.398438 1.054688 11.890625 55.558594 11.890625 122.796875 C 11.890625 190.035156 66.398438 244.539062 133.632812 244.539062 C 200.871094 244.539062 255.378906 190.035156 255.378906 122.796875 Z M 255.378906 122.796875 "/>
<g clip-path="url(#clip-0)">
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 121.893307 -0.000240399 C 121.893307 67.320292 67.318816 121.890872 -0.00171655 121.890872 C -67.318338 121.890872 -121.892829 67.320292 -121.892829 -0.000240399 C -121.892829 -67.320773 -67.318338 -121.891353 -0.00171655 -121.891353 C 67.318816 -121.891353 121.893307 -67.320773 121.893307 -0.000240399 Z M 121.893307 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
</g>
<path fill-rule="nonzero" fill="rgb(59.999084%, 59.999084%, 59.999084%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.71974 -0.000240399 C 107.71974 59.490413 59.492848 107.717305 -0.00171655 107.717305 C -59.49237 107.717305 -107.719262 59.490413 -107.719262 -0.000240399 C -107.719262 -59.490894 -59.49237 -107.717786 -0.00171655 -107.717786 C 59.492848 -107.717786 107.71974 -59.490894 107.71974 -0.000240399 Z M 107.71974 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="70.530721" y="59.453122"/>
<use xlink:href="#glyph-0-2" x="76.669973" y="56.590337"/>
<use xlink:href="#glyph-0-3" x="80.840996" y="54.645354"/>
<use xlink:href="#glyph-0-4" x="84.085124" y="53.132589"/>
<use xlink:href="#glyph-0-3" x="88.256147" y="51.187606"/>
<use xlink:href="#glyph-0-5" x="91.500276" y="49.674842"/>
<use xlink:href="#glyph-0-6" x="93.817511" y="48.594295"/>
<use xlink:href="#glyph-0-7" x="98.451981" y="46.433203"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="105.406932" y="43.190051"/>
<use xlink:href="#glyph-0-3" x="110.041401" y="41.028958"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="113.277414" y="39.519978"/>
<use xlink:href="#glyph-0-7" x="117.448437" y="37.574995"/>
<use xlink:href="#glyph-0-9" x="121.619459" y="35.630012"/>
</g>
<path fill-rule="nonzero" fill="rgb(79.998779%, 79.998779%, 79.998779%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -35.64683 -97.944126 L -97.945602 35.648784 L 35.647308 97.943645 L 97.94608 -35.649265 Z M -35.64683 -97.944126 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="43.485804" y="94.628093"/>
<use xlink:href="#glyph-0-10" x="48.120274" y="92.467001"/>
<use xlink:href="#glyph-0-11" x="52.754744" y="90.305908"/>
<use xlink:href="#glyph-0-12" x="56.045136" y="88.771571"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="60.914982" y="86.500721"/>
<use xlink:href="#glyph-0-6" x="64.625804" y="84.770333"/>
<use xlink:href="#glyph-0-13" x="69.260274" y="82.60924"/>
<use xlink:href="#glyph-0-9" x="73.894744" y="80.448148"/>
<use xlink:href="#glyph-0-13" x="77.605566" y="78.71776"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="85.015848" y="75.262284"/>
<use xlink:href="#glyph-0-15" x="90.692464" y="72.615229"/>
<use xlink:href="#glyph-0-4" x="93.009699" y="71.534683"/>
<use xlink:href="#glyph-0-3" x="97.180722" y="69.5897"/>
<use xlink:href="#glyph-0-16" x="100.424851" y="68.076935"/>
<use xlink:href="#glyph-0-2" x="102.973403" y="66.888524"/>
<use xlink:href="#glyph-0-17" x="107.144426" y="64.943541"/>
<use xlink:href="#glyph-0-18" x="110.407223" y="63.422071"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -13.709871 -37.671266 L -37.672743 13.711825 L 13.710349 37.670786 L 37.66931 -13.712306 Z M -13.709871 -37.671266 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="121.048923" y="153.77474"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="126.490164" y="151.237443"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-19" x="130.433927" y="149.398433"/>
<use xlink:href="#glyph-0-15" x="134.836267" y="147.345585"/>
<use xlink:href="#glyph-0-2" x="137.153502" y="146.265039"/>
<use xlink:href="#glyph-0-4" x="141.324525" y="144.320056"/>
<use xlink:href="#glyph-0-13" x="145.495548" y="142.375072"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-1" x="105.486959" y="136.973293"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -25.689351 -11.979721 L -30.828443 -14.377181 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-1" x="143.111933" y="150.666542"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11.981675 -25.691786 L 14.375224 -30.830878 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(89.99939%, 94.468689%, 97.410583%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M -29.975839 -29.618459 L -41.95923 -3.926913 L -36.820138 -1.529453 L -24.840658 -27.220998 Z M -29.975839 -29.618459 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M -29.975839 -29.618459 L -36.820138 -1.529453 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M -41.95923 -3.926913 L -24.840658 -27.220998 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(89.99939%, 94.468689%, 97.410583%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3.924956 -41.957754 L 1.531407 -36.818662 L 27.222953 -24.839182 L 29.616502 -29.978274 Z M 3.924956 -41.957754 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M 29.616502 -29.978274 L 1.531407 -36.818662 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3.924956 -41.957754 L 27.222953 -24.839182 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(89.99939%, 89.99939%, 89.99939%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -51.901064 -42.966799 L -36.48379 -35.778329 L -38.88125 -30.643148 L -54.294614 -37.831619 Z M -51.901064 -42.966799 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -34.176283 -31.577884 L -37.230796 -33.001499 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054516 0.0000829694 L 1.60962 1.684316 L 3.085219 -0.000595614 L 1.610657 -1.682163 Z M 6.054516 0.0000829694 " transform="matrix(0.905193, -0.422084, -0.422084, -0.905193, 96.929687, 155.53215)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -56.606031 -42.032063 L -53.551518 -40.608449 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.055226 -0.0000854737 L 1.61033 1.684148 L 3.085929 -0.000764057 L 1.607822 -1.680679 Z M 6.055226 -0.0000854737 " transform="matrix(-0.905193, 0.422084, 0.422084, 0.905193, 79.668683, 163.580984)"/>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -41.95923 -3.926913 L -47.09441 -6.324373 L -47.39947 -9.210712 L -52.210035 -5.960648 L -52.816245 -11.737237 L -57.630721 -8.487172 L -58.233019 -14.263761 L -63.047495 -11.013697 L -63.649794 -16.790286 L -66.058987 -15.163298 L -72.785956 -18.303854 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-1" x="72.273589" y="128.860217"/>
</g>
<path fill-rule="nonzero" fill="rgb(89.99939%, 89.99939%, 89.99939%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 42.968753 -51.899588 L 35.780283 -36.486225 L 30.641191 -38.879774 L 37.829662 -54.297048 Z M 42.968753 -51.899588 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 31.575927 -34.178718 L 32.999542 -37.233231 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.051484 -0.000659054 L 1.610132 1.681921 L 3.087384 0.000554183 L 1.607625 -1.682905 Z M 6.051484 -0.000659054 " transform="matrix(-0.422084, -0.905193, -0.905193, 0.422084, 166.370042, 159.501474)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 42.034017 -56.604555 L 40.610403 -53.550042 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053061 -0.00123527 L 1.608165 1.682998 L 3.088961 -0.0000220341 L 1.609202 -1.683482 Z M 6.053061 -0.00123527 " transform="matrix(0.422084, 0.905193, 0.905193, -0.422084, 174.418876, 176.762479)"/>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3.924956 -41.957754 L 6.322416 -47.096845 L 9.212666 -47.397994 L 5.958691 -52.21247 L 11.739191 -52.814769 L 8.485215 -57.629245 L 14.261804 -58.231543 L 11.01174 -63.046019 L 16.788329 -63.652229 L 15.165252 -66.057511 L 18.301897 -72.788391 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-1" x="137.85037" y="187.120948"/>
</g>
<path fill-rule="nonzero" fill="rgb(89.99939%, 94.468689%, 97.410583%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M -24.336136 -55.134009 L -44.88859 -64.719939 L -37.70012 -80.133302 L -17.147665 -70.551283 Z M -24.336136 -55.134009 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 44.706726%, 74.116516%)" fill-opacity="1">
<use xlink:href="#glyph-2-2" x="96.950402" y="195.937163"/>
</g>
<g fill="rgb(0%, 44.706726%, 74.116516%)" fill-opacity="1">
<use xlink:href="#glyph-3-1" x="105.239945" y="193.718117"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M -27.410204 -28.417773 L -13.033263 -59.24841 L -16.087777 -60.675936 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 44.706726%, 74.116516%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.051483 0.000205036 L 1.610132 1.682785 L 3.087383 0.00141827 L 1.607624 -1.682041 Z M 6.051483 0.000205036 " transform="matrix(-0.905193, 0.422084, 0.422084, 0.905193, 120.133922, 182.199488)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-3" x="121.359543" y="193.460193"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-2" x="126.404839" y="192.753967"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M -34.821603 -59.47525 L -42.236913 -43.573008 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 44.706726%, 74.116516%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054581 -0.00172771 L 1.609684 1.682438 L 3.086951 0.00109892 L 1.607222 -1.682372 Z M 6.054581 -0.00172771 " transform="matrix(-0.422074, -0.905203, -0.905203, 0.422074, 92.647666, 168.887603)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-4" x="80.009126" y="178.256791"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-2" x="86.439805" y="176.905651"/>
</g>
<path fill-rule="nonzero" fill="rgb(89.99939%, 94.468689%, 97.410583%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M 74.319557 -18.51896 L 53.763192 -28.10098 L 60.951662 -43.514343 L 81.504116 -33.932323 Z M 74.319557 -18.51896 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 44.706726%, 74.116516%)" fill-opacity="1">
<use xlink:href="#glyph-2-2" x="195.479873" y="159.363903"/>
</g>
<g fill="rgb(0%, 44.706726%, 74.116516%)" fill-opacity="1">
<use xlink:href="#glyph-3-1" x="203.77032" y="157.144434"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28.419727 -27.408728 L 59.250365 -13.031787 L 61.874665 -18.659757 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 44.706726%, 74.116516%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.05442 -0.000360265 L 1.609524 1.683873 L 3.086776 0.00250582 L 1.610561 -1.682607 Z M 6.05442 -0.000360265 " transform="matrix(0.422084, 0.905193, 0.905193, -0.422084, 194.233917, 138.863181)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-3" x="198.414283" y="138.804053"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-3" x="203.460001" y="138.098732"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M 56.907658 -36.020812 L 43.574962 -42.235437 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 44.706726%, 74.116516%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 44.706726%, 74.116516%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053839 0.00130487 L 1.607289 1.681926 L 3.088101 -0.00106596 L 1.608371 -1.684537 Z M 6.053839 0.00130487 " transform="matrix(-0.905203, 0.422074, 0.422074, 0.905203, 179.725495, 163.783496)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-4" x="180.903703" y="174.943844"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-3" x="187.333055" y="173.592221"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -113.386342 -113.388777 L -61.326643 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053923 -0.00153737 L 1.607083 1.684116 L 3.089363 -0.00153737 L 1.607083 -1.68328 Z M 6.053923 -0.00153737 " transform="matrix(0.998778, 0, 0, -0.998778, 69.547224, 236.04534)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-1" x="71.252838" y="246.96674"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-2" x="72.791955" y="249.244953"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-5-1" x="76.219762" y="250.738126"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -113.386342 -113.388777 L -113.386342 -61.329078 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.051488 -0.000897507 L 1.608559 1.684756 L 3.086928 -0.000897507 L 1.608559 -1.68264 Z M 6.051488 -0.000897507 " transform="matrix(0, -0.998778, -0.998778, 0, 20.385822, 186.883938)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-1" x="6.823653" y="180.412155"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-2" x="8.361771" y="182.690368"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-5-2" x="11.790577" y="184.182542"/>
</g>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -111.685045 -113.388777 C -111.685045 -112.44622 -112.447696 -111.68748 -113.386342 -111.68748 C -114.324989 -111.68748 -115.08764 -112.44622 -115.08764 -113.388777 C -115.08764 -114.327424 -114.324989 -115.086164 -113.386342 -115.086164 C -112.447696 -115.086164 -111.685045 -114.327424 -111.685045 -113.388777 Z M -111.685045 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -109.135055 -113.388777 C -109.135055 -111.038249 -111.039725 -109.133578 -113.386342 -109.133578 C -115.736871 -109.133578 -117.63763 -111.038249 -117.63763 -113.388777 C -117.63763 -115.735394 -115.736871 -117.640065 -113.386342 -117.640065 C -111.039725 -117.640065 -109.135055 -115.735394 -109.135055 -113.388777 Z M -109.135055 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-1" x="2.277214" y="237.713059"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-2" x="3.816332" y="239.991273"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-5-3" x="7.244138" y="241.483447"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4.253482 -0.000240399 C 4.253482 2.350288 2.348812 4.251048 -0.00171655 4.251048 C -2.348334 4.251048 -4.253004 2.350288 -4.253004 -0.000240399 C -4.253004 -2.346857 -2.348334 -4.251528 -0.00171655 -4.251528 C 2.348812 -4.251528 4.253482 -2.346857 4.253482 -0.000240399 Z M 4.253482 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00171655 -0.000240399 L 47.180931 22.003206 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.051833 0.000637619 L 1.610482 1.683218 L 3.087733 0.00185086 L 1.607974 -1.681609 Z M 6.051833 0.000637619 " transform="matrix(0.905193, -0.422084, -0.422084, -0.905193, 178.190163, 102.019801)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-5" x="116.632283" y="122.355233"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-6" x="118.990441" y="123.770444"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-4" x="122.727719" y="123.674157"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-5" x="176.442447" y="94.465833"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-6" x="178.799278" y="95.880561"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-2" x="182.537461" y="95.783852"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00171655 -0.000240399 L -22.001252 47.182407 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053998 0.00178742 L 1.607449 1.682476 L 3.088245 -0.000544017 L 1.608486 -1.684004 Z M 6.053998 0.00178742 " transform="matrix(-0.422084, -0.905193, -0.905193, 0.422084, 112.857693, 78.240999)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-5" x="98.166295" y="78.699542"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-6" x="100.524031" y="80.113848"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-3" x="104.261731" y="80.018466"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M -0.00171655 -0.000240399 L 56.692552 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 42.518985 -0.000240399 C 42.518985 6.206562 41.157947 12.346876 38.537558 17.970935 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-3" x="178.908144" y="117.060652"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-1" x="131.14657" y="125.00793"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 99.213253 -0.000240399 C 99.213253 21.776366 92.048249 42.907653 78.89546 60.155288 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054999 -0.00109799 L 1.608902 1.680577 L 3.085091 -0.000478407 L 1.608483 -1.684544 Z M 6.054999 -0.00109799 " transform="matrix(-0.622289, -0.781144, -0.781144, 0.622289, 214.192881, 64.937543)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-6-1" x="215.750076" y="92.331902"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

View File

@ -0,0 +1,350 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256.686" height="254.806" viewBox="0 0 256.686 254.806">
<defs>
<g>
<g id="glyph-0-0">
</g>
<g id="glyph-0-1">
<path d="M 5.765625 -3.5625 C 5.75 -3.609375 5.703125 -3.703125 5.578125 -3.65625 C 5.46875 -3.59375 5.5 -3.53125 5.53125 -3.46875 C 5.734375 -2.9375 5.5625 -2.640625 5.3125 -2.515625 C 5.046875 -2.390625 4.90625 -2.515625 4.75 -2.625 C 4.609375 -2.78125 4.28125 -3.265625 4.0625 -3.625 C 3.765625 -4.09375 3.4375 -4.609375 2.40625 -4.46875 C 3.0625 -5.046875 3.46875 -5.828125 3.171875 -6.453125 C 2.796875 -7.265625 1.53125 -7.453125 0.34375 -6.890625 L -2.25 -5.6875 L -2.140625 -5.453125 L -1.953125 -5.53125 C -1.328125 -5.828125 -1.28125 -5.734375 -1.140625 -5.4375 L 0.84375 -1.171875 C 0.984375 -0.875 1.015625 -0.78125 0.390625 -0.484375 L 0.203125 -0.40625 L 0.328125 -0.15625 C 0.6875 -0.359375 1.109375 -0.546875 1.484375 -0.734375 C 1.875 -0.921875 2.28125 -1.09375 2.6875 -1.25 L 2.5625 -1.5 L 2.375 -1.40625 C 1.75 -1.125 1.703125 -1.203125 1.5625 -1.5 L 0.609375 -3.53125 L 1.578125 -4 C 2.15625 -4.265625 2.578125 -4.078125 2.625 -4.0625 C 3.015625 -3.875 3.0625 -3.75 3.328125 -3.171875 C 3.578125 -2.640625 3.75 -2.265625 4.28125 -2.15625 C 4.796875 -2.015625 5.296875 -2.25 5.375 -2.28125 C 6.046875 -2.59375 5.859375 -3.375 5.765625 -3.5625 Z M 2.359375 -6.0625 C 2.6875 -5.375 2.5625 -4.703125 1.453125 -4.1875 L 0.515625 -3.734375 L -0.453125 -5.8125 C -0.546875 -6.03125 -0.5625 -6.109375 -0.421875 -6.203125 C -0.375 -6.28125 -0.109375 -6.40625 0.0625 -6.484375 C 0.765625 -6.796875 1.796875 -7.28125 2.359375 -6.0625 Z M 2.359375 -6.0625 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.109375 -3.5625 C 2.625 -4.625 1.390625 -5.078125 0.375 -4.609375 C -0.65625 -4.125 -1.046875 -2.875 -0.578125 -1.84375 C -0.09375 -0.8125 1.125 -0.421875 2.125 -0.890625 C 3.140625 -1.375 3.578125 -2.5625 3.109375 -3.5625 Z M 2.390625 -3.296875 C 2.53125 -3 2.75 -2.53125 2.71875 -2.09375 C 2.65625 -1.609375 2.359375 -1.265625 2.015625 -1.109375 C 1.625 -0.921875 1.1875 -0.96875 0.84375 -1.1875 C 0.46875 -1.421875 0.265625 -1.875 0.09375 -2.234375 C -0.046875 -2.53125 -0.25 -3 -0.21875 -3.4375 C -0.171875 -3.953125 0.1875 -4.25 0.484375 -4.390625 C 0.9375 -4.609375 1.390625 -4.515625 1.671875 -4.3125 C 2.03125 -4.046875 2.234375 -3.640625 2.390625 -3.296875 Z M 2.390625 -3.296875 "/>
</g>
<g id="glyph-0-3">
<path d="M 2.3125 -2.296875 L 2.09375 -2.765625 L 1.859375 -2.65625 L 2.0625 -2.21875 C 2.34375 -1.609375 2.234375 -1.203125 1.953125 -1.078125 C 1.390625 -0.828125 1.0625 -1.53125 0.984375 -1.671875 L -0.0625 -3.9375 L 1.125 -4.484375 L 1.015625 -4.734375 L -0.171875 -4.1875 L -0.875 -5.671875 L -1.09375 -5.5625 C -0.765625 -4.890625 -0.6875 -3.90625 -1.453125 -3.53125 L -1.359375 -3.328125 L -0.65625 -3.65625 L 0.390625 -1.40625 C 0.8125 -0.5 1.5625 -0.625 2 -0.828125 C 2.546875 -1.078125 2.578125 -1.71875 2.3125 -2.296875 Z M 2.3125 -2.296875 "/>
</g>
<g id="glyph-0-4">
<path d="M 3.6875 -2.59375 L 3.484375 -3.046875 L 3.265625 -2.953125 L 3.46875 -2.515625 C 3.515625 -2.421875 3.703125 -2.015625 3.40625 -1.875 C 3.109375 -1.734375 2.921875 -2.125 2.875 -2.25 L 2.203125 -3.6875 C 1.984375 -4.140625 1.859375 -4.421875 1.34375 -4.578125 C 0.90625 -4.703125 0.46875 -4.65625 0.046875 -4.453125 C -0.625 -4.140625 -1.015625 -3.53125 -0.78125 -3.015625 C -0.65625 -2.75 -0.421875 -2.6875 -0.21875 -2.796875 C 0.015625 -2.890625 0.078125 -3.140625 -0.015625 -3.359375 C -0.1875 -3.6875 -0.5625 -3.5625 -0.5625 -3.5625 C -0.4375 -3.875 -0.078125 -4.125 0.140625 -4.234375 C 0.5625 -4.421875 1.171875 -4.34375 1.5 -3.625 L 1.625 -3.359375 C 1.203125 -3.140625 0.609375 -2.8125 0.171875 -2.3125 C -0.265625 -1.765625 -0.25 -1.25 -0.109375 -0.921875 C 0.203125 -0.25 1.09375 -0.40625 1.640625 -0.671875 C 2.3125 -0.984375 2.40625 -1.5625 2.421875 -1.828125 C 2.625 -1.515625 2.984375 -1.34375 3.328125 -1.5 C 3.546875 -1.59375 4 -1.953125 3.6875 -2.59375 Z M 2.09375 -2.359375 C 2.453125 -1.578125 1.96875 -1.046875 1.609375 -0.875 C 1.234375 -0.703125 0.734375 -0.8125 0.546875 -1.21875 C 0.296875 -1.75 0.484375 -2.53125 1.71875 -3.171875 Z M 2.09375 -2.359375 "/>
</g>
<g id="glyph-0-5">
<path d="M 2.046875 -0.953125 L 1.921875 -1.203125 C 1.40625 -0.96875 1.34375 -0.984375 1.203125 -1.296875 L -0.1875 -4.265625 L -1.296875 -3.65625 L -1.1875 -3.40625 C -0.671875 -3.640625 -0.578125 -3.625 -0.390625 -3.21875 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.65625 -0.3125 0.8125 -0.421875 1.171875 -0.578125 C 1.296875 -0.640625 1.640625 -0.796875 2.046875 -0.953125 Z M -0.6875 -5.65625 C -0.796875 -5.890625 -1.078125 -5.984375 -1.328125 -5.875 C -1.5625 -5.75 -1.671875 -5.484375 -1.5625 -5.25 C -1.453125 -4.984375 -1.15625 -4.875 -0.921875 -5 C -0.671875 -5.109375 -0.578125 -5.390625 -0.6875 -5.65625 Z M -0.6875 -5.65625 "/>
</g>
<g id="glyph-0-6">
<path d="M 4.4375 -2.0625 L 4.3125 -2.3125 C 3.890625 -2.125 3.703125 -2.03125 3.578125 -2.296875 L 2.84375 -3.84375 C 2.53125 -4.515625 2.421875 -4.75 2.0625 -4.921875 C 1.78125 -5.0625 1.421875 -5.015625 1.015625 -4.828125 C 0.25 -4.46875 0.1875 -3.765625 0.15625 -3.484375 L 0.140625 -3.484375 L -0.21875 -4.265625 L -1.34375 -3.625 L -1.234375 -3.375 C -0.6875 -3.640625 -0.578125 -3.609375 -0.390625 -3.21875 L 0.609375 -1.046875 C 0.78125 -0.671875 0.703125 -0.640625 0.15625 -0.375 L 0.28125 -0.125 C 0.671875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.78125 1.703125 -0.8125 2.140625 -1 L 2.015625 -1.25 C 1.46875 -1 1.390625 -0.953125 1.21875 -1.328125 L 0.53125 -2.796875 C 0.140625 -3.65625 0.546875 -4.375 1.0625 -4.625 C 1.515625 -4.84375 1.828125 -4.484375 2.0625 -4 L 2.921875 -2.125 C 3.09375 -1.75 3 -1.703125 2.46875 -1.453125 L 2.59375 -1.203125 C 2.96875 -1.40625 3.109375 -1.484375 3.5 -1.671875 C 3.890625 -1.859375 4 -1.890625 4.4375 -2.0625 Z M 4.4375 -2.0625 "/>
</g>
<g id="glyph-0-7">
<path d="M 2.515625 -5.15625 C 2.453125 -5.3125 2.21875 -5.515625 1.890625 -5.375 C 1.65625 -5.265625 1.34375 -4.984375 1.203125 -4.578125 C 0.875 -4.640625 0.515625 -4.609375 0.1875 -4.4375 C -0.59375 -4.078125 -0.90625 -3.265625 -0.609375 -2.625 C -0.421875 -2.21875 -0.046875 -2.03125 0.125 -1.984375 C 0.125 -1.9375 0.03125 -1.5625 0.203125 -1.1875 C 0.328125 -0.921875 0.59375 -0.671875 0.90625 -0.640625 C 0.546875 -0.3125 0.359375 0.140625 0.53125 0.53125 C 0.796875 1.09375 1.8125 1.1875 2.859375 0.703125 C 3.859375 0.234375 4.5 -0.578125 4.21875 -1.203125 C 4.046875 -1.546875 3.734375 -1.828125 3.34375 -1.890625 C 2.765625 -1.953125 2.296875 -1.734375 1.515625 -1.375 C 1.359375 -1.296875 1.109375 -1.1875 1.015625 -1.15625 C 0.75 -1.109375 0.515625 -1.25 0.390625 -1.515625 C 0.328125 -1.65625 0.3125 -1.78125 0.328125 -1.921875 C 0.609375 -1.875 0.90625 -1.890625 1.28125 -2.0625 C 2.0625 -2.421875 2.390625 -3.25 2.09375 -3.890625 C 1.90625 -4.296875 1.53125 -4.46875 1.375 -4.515625 C 1.5625 -4.953125 1.9375 -5.125 2.046875 -5.171875 C 2.015625 -5.140625 1.96875 -5.0625 2.046875 -4.90625 C 2.078125 -4.828125 2.21875 -4.703125 2.40625 -4.796875 C 2.515625 -4.84375 2.59375 -4.984375 2.515625 -5.15625 Z M 1.46875 -3.59375 C 1.546875 -3.40625 1.921875 -2.625 1.1875 -2.28125 C 0.46875 -1.9375 0.09375 -2.71875 0.015625 -2.90625 C -0.09375 -3.140625 -0.203125 -3.421875 -0.15625 -3.6875 C -0.109375 -3.90625 0.03125 -4.125 0.265625 -4.234375 C 1 -4.578125 1.375 -3.78125 1.46875 -3.59375 Z M 3.765625 -1 C 3.984375 -0.53125 3.53125 0.125 2.765625 0.484375 C 1.96875 0.859375 1.1875 0.75 0.984375 0.296875 C 0.921875 0.171875 0.75 -0.40625 1.453125 -0.734375 L 2.1875 -1.078125 C 2.46875 -1.203125 3.453125 -1.65625 3.765625 -1 Z M 3.765625 -1 "/>
</g>
<g id="glyph-0-8">
<path d="M 3.453125 -3.4375 C 3.234375 -3.90625 2.921875 -4.1875 2.609375 -4.328125 C 2.046875 -4.625 1.640625 -4.53125 1.046875 -4.40625 L 0.265625 -4.265625 C -0.46875 -4.09375 -0.921875 -4.53125 -1.078125 -4.890625 C -1.328125 -5.421875 -1.140625 -6.15625 -0.46875 -6.484375 C 0.578125 -6.96875 1.359375 -6.375 1.875 -5.609375 C 1.953125 -5.46875 1.984375 -5.4375 2.09375 -5.484375 C 2.203125 -5.53125 2.171875 -5.578125 2.09375 -5.75 L 1.359375 -7.328125 C 1.28125 -7.484375 1.25 -7.546875 1.15625 -7.5 C 1.09375 -7.46875 1.109375 -7.453125 1.078125 -7.359375 C 1.046875 -7.140625 1.078125 -7.296875 1 -6.75 C 0.796875 -6.84375 0.1875 -7.046875 -0.578125 -6.703125 C -1.53125 -6.25 -1.859375 -5.203125 -1.46875 -4.375 C -1.171875 -3.75 -0.609375 -3.515625 -0.5625 -3.5 C -0.03125 -3.3125 0.15625 -3.34375 1.203125 -3.578125 C 1.9375 -3.71875 2.03125 -3.734375 2.421875 -3.59375 C 2.421875 -3.59375 2.84375 -3.421875 3.0625 -2.9375 C 3.328125 -2.390625 3.21875 -1.59375 2.46875 -1.25 C 1.859375 -0.953125 0.59375 -0.671875 -0.09375 -2 C -0.15625 -2.109375 -0.171875 -2.15625 -0.28125 -2.109375 C -0.390625 -2.0625 -0.359375 -1.984375 -0.28125 -1.828125 L 0.453125 -0.265625 C 0.515625 -0.109375 0.546875 -0.03125 0.640625 -0.078125 C 0.703125 -0.109375 0.703125 -0.125 0.71875 -0.234375 C 0.765625 -0.453125 0.71875 -0.296875 0.796875 -0.84375 C 1.515625 -0.59375 2.203125 -0.796875 2.59375 -0.984375 C 3.59375 -1.453125 3.859375 -2.578125 3.453125 -3.4375 Z M 3.453125 -3.4375 "/>
</g>
<g id="glyph-0-9">
<path d="M 3.015625 -2.59375 C 3 -2.640625 2.921875 -2.671875 2.859375 -2.640625 C 2.765625 -2.609375 2.78125 -2.53125 2.796875 -2.5 C 2.875 -1.53125 2.171875 -1.1875 2.0625 -1.125 C 1.671875 -0.953125 1.234375 -1.015625 0.90625 -1.203125 C 0.453125 -1.46875 0.234375 -1.953125 0.078125 -2.296875 L 2.390625 -3.375 C 2.5625 -3.453125 2.609375 -3.484375 2.53125 -3.65625 C 2.140625 -4.484375 1.3125 -5.046875 0.265625 -4.5625 C -0.71875 -4.109375 -1.0625 -2.90625 -0.59375 -1.890625 C -0.109375 -0.828125 1.140625 -0.4375 2.125 -0.890625 C 3.125 -1.359375 3.109375 -2.40625 3.015625 -2.59375 Z M 1.96875 -3.40625 L -0.015625 -2.484375 C -0.515625 -3.765625 0.140625 -4.234375 0.375 -4.34375 C 0.828125 -4.546875 1.46875 -4.453125 1.96875 -3.40625 Z M 1.96875 -3.40625 "/>
</g>
<g id="glyph-0-10">
<path d="M 4.4375 -2.0625 L 4.3125 -2.3125 C 3.75 -2.0625 3.671875 -2.09375 3.484375 -2.484375 L 2.140625 -5.359375 L 0.96875 -4.703125 L 1.078125 -4.453125 C 1.625 -4.71875 1.734375 -4.6875 1.921875 -4.296875 L 2.578125 -2.859375 C 2.921875 -2.140625 2.75 -1.421875 2.171875 -1.140625 C 1.5 -0.828125 1.296875 -1.171875 1.09375 -1.609375 L -0.15625 -4.28125 L -1.34375 -3.625 L -1.234375 -3.375 C -0.609375 -3.671875 -0.59375 -3.640625 -0.25 -2.921875 L 0.3125 -1.703125 C 0.5625 -1.171875 0.71875 -0.828125 1.21875 -0.71875 C 1.53125 -0.671875 1.90625 -0.78125 2.234375 -0.9375 C 2.640625 -1.125 2.9375 -1.484375 2.96875 -2.078125 L 2.984375 -2.09375 L 3.296875 -1.4375 Z M 4.4375 -2.0625 "/>
</g>
<g id="glyph-0-11">
<path d="M 2.515625 -2.4375 C 2.34375 -2.8125 2.078125 -2.953125 1.8125 -3.046875 C 1.40625 -3.1875 1.09375 -3.125 0.4375 -2.9375 C 0.21875 -2.890625 -0.421875 -2.71875 -0.640625 -3.1875 C -0.765625 -3.4375 -0.734375 -3.859375 0 -4.203125 C 0.890625 -4.609375 1.25 -3.984375 1.359375 -3.765625 C 1.421875 -3.6875 1.4375 -3.640625 1.53125 -3.6875 C 1.65625 -3.734375 1.640625 -3.796875 1.5625 -3.9375 L 1.203125 -4.71875 C 1.140625 -4.859375 1.09375 -4.9375 0.984375 -4.890625 C 0.9375 -4.875 0.9375 -4.875 0.875 -4.734375 C 0.875 -4.703125 0.828125 -4.59375 0.796875 -4.515625 C 0.46875 -4.578125 0.1875 -4.53125 -0.09375 -4.390625 C -1.171875 -3.890625 -1.15625 -3.171875 -0.96875 -2.765625 C -0.84375 -2.484375 -0.609375 -2.34375 -0.34375 -2.25 C 0.03125 -2.125 0.375 -2.21875 0.828125 -2.328125 C 1.28125 -2.4375 1.4375 -2.46875 1.671875 -2.4375 C 1.78125 -2.390625 2.0625 -2.34375 2.203125 -2.03125 C 2.546875 -1.3125 1.71875 -0.9375 1.609375 -0.875 C 0.78125 -0.5 0.25 -1.109375 -0.046875 -1.5 C -0.109375 -1.546875 -0.15625 -1.59375 -0.25 -1.5625 C -0.375 -1.5 -0.34375 -1.421875 -0.28125 -1.28125 L 0.203125 -0.25 C 0.265625 -0.109375 0.3125 -0.046875 0.421875 -0.09375 C 0.46875 -0.125 0.46875 -0.125 0.546875 -0.34375 C 0.546875 -0.40625 0.578125 -0.5625 0.609375 -0.609375 C 1.109375 -0.421875 1.5 -0.609375 1.703125 -0.6875 C 2.6875 -1.15625 2.765625 -1.90625 2.515625 -2.4375 Z M 2.515625 -2.4375 "/>
</g>
<g id="glyph-0-12">
<path d="M 3.53125 -3.78125 C 3.046875 -4.8125 1.875 -5.234375 0.921875 -4.78125 C 0.484375 -4.578125 0.15625 -4.21875 0 -3.75 L -0.234375 -4.25 L -1.390625 -3.609375 L -1.28125 -3.359375 C -0.6875 -3.640625 -0.640625 -3.609375 -0.46875 -3.25 L 1.296875 0.546875 C 1.46875 0.90625 1.390625 0.953125 0.84375 1.203125 L 0.96875 1.46875 C 1.34375 1.265625 1.5 1.1875 1.890625 1 C 2.28125 0.828125 2.375 0.796875 2.828125 0.59375 L 2.703125 0.328125 C 2.171875 0.59375 2.078125 0.625 1.90625 0.265625 L 1.28125 -1.078125 C 1.609375 -0.96875 2 -0.828125 2.546875 -1.078125 C 3.5 -1.53125 4.015625 -2.71875 3.53125 -3.78125 Z M 2.84375 -3.453125 C 3.265625 -2.53125 3.046875 -1.5625 2.390625 -1.25 C 2.03125 -1.078125 1.609375 -1.15625 1.296875 -1.34375 C 1.109375 -1.453125 1.09375 -1.484375 1.03125 -1.625 L 0.1875 -3.421875 C 0.234375 -4.015625 0.625 -4.390625 0.96875 -4.546875 C 1.59375 -4.828125 2.421875 -4.34375 2.84375 -3.453125 Z M 2.84375 -3.453125 "/>
</g>
<g id="glyph-0-13">
<path d="M 4.375 -2.046875 L 4.25 -2.296875 C 3.703125 -2.03125 3.609375 -2.0625 3.421875 -2.453125 L 1.125 -7.390625 L -0.03125 -6.71875 L 0.078125 -6.484375 C 0.625 -6.75 0.75 -6.71875 0.921875 -6.328125 L 1.734375 -4.578125 C 1.671875 -4.625 1.109375 -4.875 0.46875 -4.578125 C -0.53125 -4.109375 -1.03125 -2.921875 -0.546875 -1.859375 C -0.078125 -0.859375 1.140625 -0.4375 2.09375 -0.875 C 2.6875 -1.15625 2.890625 -1.65625 2.953125 -1.890625 L 3.203125 -1.390625 Z M 2.703125 -2.453125 C 2.765625 -2.296875 2.78125 -2.28125 2.734375 -2.046875 C 2.671875 -1.5625 2.359375 -1.234375 2.03125 -1.078125 C 1.6875 -0.921875 1.28125 -0.96875 0.90625 -1.21875 C 0.515625 -1.453125 0.296875 -1.921875 0.171875 -2.1875 C 0 -2.578125 -0.171875 -3.015625 -0.109375 -3.453125 C -0.03125 -3.78125 0.15625 -4.203125 0.609375 -4.40625 C 0.9375 -4.5625 1.34375 -4.546875 1.703125 -4.328125 C 1.859375 -4.25 1.875 -4.234375 1.9375 -4.09375 Z M 2.703125 -2.453125 "/>
</g>
<g id="glyph-0-14">
<path d="M 3.328125 -6.453125 C 2.9375 -7.265625 1.78125 -7.5625 0.671875 -7.046875 L -2.25 -5.6875 L -2.140625 -5.453125 L -1.953125 -5.53125 C -1.328125 -5.828125 -1.28125 -5.734375 -1.140625 -5.4375 L 0.84375 -1.171875 C 0.984375 -0.875 1.015625 -0.78125 0.390625 -0.484375 L 0.203125 -0.40625 L 0.328125 -0.15625 C 0.671875 -0.359375 1.125 -0.5625 1.5 -0.734375 C 1.875 -0.921875 2.328125 -1.125 2.703125 -1.265625 L 2.578125 -1.515625 L 2.390625 -1.421875 C 1.765625 -1.140625 1.734375 -1.21875 1.59375 -1.515625 L 0.703125 -3.421875 L 2.0625 -4.0625 C 3.1875 -4.59375 3.6875 -5.671875 3.328125 -6.453125 Z M 2.5 -6.078125 C 2.671875 -5.71875 3.078125 -4.828125 1.734375 -4.1875 L 0.5625 -3.640625 L -0.453125 -5.8125 C -0.578125 -6.09375 -0.59375 -6.171875 -0.21875 -6.34375 L 0.5625 -6.703125 C 1.90625 -7.34375 2.328125 -6.453125 2.5 -6.078125 Z M 2.5 -6.078125 "/>
</g>
<g id="glyph-0-15">
<path d="M 2.125 -0.984375 L 2 -1.234375 C 1.46875 -0.984375 1.359375 -0.9375 1.1875 -1.3125 L -1.140625 -6.328125 L -2.28125 -5.671875 L -2.171875 -5.4375 C -1.625 -5.6875 -1.515625 -5.65625 -1.34375 -5.265625 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.6875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.765625 1.71875 -0.8125 2.125 -0.984375 Z M 2.125 -0.984375 "/>
</g>
<g id="glyph-0-16">
<path d="M 0.578125 -6.53125 C 0.421875 -6.84375 -0.015625 -6.953125 -0.46875 -6.75 C -1.078125 -6.453125 -1.515625 -5.65625 -1.140625 -4.859375 L -0.703125 -3.921875 L -1.359375 -3.625 L -1.25 -3.375 L -0.59375 -3.671875 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.71875 -0.359375 0.8125 -0.421875 1.234375 -0.609375 L 2.265625 -1.0625 L 2.140625 -1.3125 L 1.984375 -1.234375 C 1.390625 -0.953125 1.328125 -1.03125 1.1875 -1.328125 L -0.03125 -3.9375 L 0.921875 -4.390625 L 0.8125 -4.640625 L -0.15625 -4.1875 L -0.59375 -5.109375 C -0.9375 -5.84375 -0.703125 -6.390625 -0.375 -6.546875 C -0.28125 -6.578125 -0.1875 -6.609375 -0.078125 -6.625 C -0.15625 -6.546875 -0.234375 -6.390625 -0.140625 -6.1875 C -0.046875 -5.96875 0.1875 -5.890625 0.390625 -5.984375 C 0.59375 -6.078125 0.671875 -6.3125 0.578125 -6.53125 Z M 0.578125 -6.53125 "/>
</g>
<g id="glyph-0-17">
<path d="M 1.59375 -4.5 C 1.46875 -4.75 1.125 -4.875 0.75 -4.703125 C 0.25 -4.46875 0.078125 -3.984375 0.125 -3.40625 L -0.265625 -4.234375 L -1.390625 -3.609375 L -1.28125 -3.359375 C -0.71875 -3.625 -0.625 -3.59375 -0.4375 -3.203125 L 0.5625 -1.03125 C 0.734375 -0.65625 0.65625 -0.609375 0.109375 -0.359375 L 0.234375 -0.109375 C 0.6875 -0.328125 0.765625 -0.390625 1.171875 -0.578125 L 2.21875 -1.03125 L 2.09375 -1.28125 L 1.9375 -1.21875 C 1.34375 -0.9375 1.28125 -1.015625 1.140625 -1.3125 L 0.578125 -2.53125 C 0.40625 -2.859375 -0.046875 -4.109375 0.890625 -4.546875 L 0.890625 -4.53125 C 0.859375 -4.515625 0.78125 -4.34375 0.875 -4.15625 C 0.984375 -3.9375 1.21875 -3.875 1.40625 -3.96875 C 1.578125 -4.046875 1.703125 -4.25 1.59375 -4.5 Z M 1.59375 -4.5 "/>
</g>
<g id="glyph-0-18">
<path d="M 6.75 -3.15625 L 6.625 -3.40625 C 6.21875 -3.203125 6.015625 -3.109375 5.890625 -3.375 L 5.15625 -4.921875 C 4.84375 -5.625 4.734375 -5.84375 4.328125 -6.03125 C 4.0625 -6.140625 3.6875 -6.078125 3.328125 -5.90625 C 2.75 -5.640625 2.5 -5.125 2.484375 -4.578125 C 2.171875 -5.015625 1.703125 -5.15625 1.015625 -4.828125 C 0.375 -4.53125 0.171875 -3.921875 0.171875 -3.484375 L 0.15625 -3.484375 L -0.21875 -4.265625 L -1.34375 -3.625 L -1.234375 -3.375 C -0.6875 -3.640625 -0.578125 -3.609375 -0.390625 -3.21875 L 0.609375 -1.046875 C 0.78125 -0.671875 0.703125 -0.640625 0.15625 -0.375 L 0.28125 -0.125 C 0.671875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.78125 1.703125 -0.8125 2.140625 -1 L 2.015625 -1.25 C 1.46875 -1 1.390625 -0.953125 1.21875 -1.328125 L 0.53125 -2.796875 C 0.125 -3.671875 0.5625 -4.390625 1.0625 -4.625 C 1.5 -4.828125 1.78125 -4.578125 2.0625 -4 L 2.921875 -2.125 C 3.09375 -1.75 3 -1.703125 2.46875 -1.453125 L 2.59375 -1.203125 C 2.96875 -1.40625 3.109375 -1.484375 3.515625 -1.671875 C 3.890625 -1.859375 4.015625 -1.890625 4.453125 -2.078125 L 4.328125 -2.328125 C 3.78125 -2.078125 3.703125 -2.03125 3.53125 -2.40625 L 2.84375 -3.875 C 2.4375 -4.75 2.875 -5.46875 3.359375 -5.6875 C 3.796875 -5.90625 4.09375 -5.65625 4.375 -5.078125 L 5.234375 -3.203125 C 5.40625 -2.828125 5.3125 -2.78125 4.78125 -2.546875 L 4.90625 -2.296875 C 5.296875 -2.484375 5.421875 -2.5625 5.8125 -2.75 C 6.203125 -2.9375 6.328125 -2.96875 6.75 -3.15625 Z M 6.75 -3.15625 "/>
</g>
<g id="glyph-0-19">
<path d="M 2.703125 -5.21875 L 2.59375 -5.46875 C 2.34375 -5.3125 2.078125 -5.203125 1.96875 -5.140625 C 1.75 -5.046875 1.5 -4.9375 1.28125 -4.859375 L 1.390625 -4.609375 C 1.765625 -4.765625 1.90625 -4.46875 1.90625 -4.4375 C 1.953125 -4.34375 1.96875 -4.25 1.953125 -4.171875 L 2.03125 -1.84375 L 0.140625 -3.546875 C 0.046875 -3.640625 0.03125 -3.703125 0.03125 -3.703125 C -0.078125 -3.921875 0.1875 -4.046875 0.359375 -4.125 L 0.25 -4.375 L -0.640625 -3.921875 C -0.671875 -3.90625 -1.140625 -3.6875 -1.453125 -3.578125 L -1.34375 -3.328125 C -0.984375 -3.5 -0.8125 -3.5625 -0.609375 -3.390625 L 2.0625 -0.96875 L 2.09375 -0.390625 C 2.109375 0.125 2.140625 0.765625 1.609375 1.03125 C 1.40625 1.109375 1.21875 1.09375 1.1875 1.078125 C 1.25 1.03125 1.4375 0.875 1.3125 0.59375 C 1.203125 0.390625 0.984375 0.328125 0.8125 0.421875 C 0.609375 0.515625 0.515625 0.703125 0.625 0.90625 C 0.796875 1.28125 1.28125 1.421875 1.6875 1.234375 C 2.21875 0.96875 2.34375 0.34375 2.34375 -0.1875 L 2.21875 -4.3125 C 2.1875 -4.5625 2.203125 -4.953125 2.703125 -5.21875 Z M 2.703125 -5.21875 "/>
</g>
<g id="glyph-1-0">
</g>
<g id="glyph-1-1">
<path d="M 2.3125 -8.0625 C 2.125 -8.46875 1.59375 -8.484375 1.21875 -8.3125 C 0.921875 -8.171875 0.421875 -7.75 0.578125 -6.734375 C 0.59375 -6.5 0.625 -6.421875 0.9375 -5.171875 L 0.3125 -4.875 C 0.140625 -4.796875 0.046875 -4.75 0.125 -4.5625 C 0.171875 -4.46875 0.25 -4.515625 0.421875 -4.59375 L 1.015625 -4.875 L 2.015625 -0.984375 C 2.265625 -0.046875 2.484375 0.859375 2.015625 1.078125 C 1.96875 1.09375 1.75 1.203125 1.5 1.109375 C 1.921875 0.875 1.828125 0.53125 1.765625 0.390625 C 1.671875 0.1875 1.453125 0.15625 1.296875 0.234375 C 1.046875 0.34375 0.890625 0.65625 1.0625 1.015625 C 1.25 1.40625 1.734375 1.453125 2.109375 1.28125 C 2.59375 1.046875 2.703125 0.328125 2.71875 -0.078125 C 2.734375 -0.78125 2.453125 -1.96875 2.4375 -2.046875 L 1.625 -5.15625 L 2.40625 -5.515625 C 2.578125 -5.59375 2.671875 -5.640625 2.59375 -5.828125 C 2.546875 -5.921875 2.453125 -5.875 2.296875 -5.8125 L 1.5625 -5.46875 C 1.421875 -6.03125 1.40625 -6 1.25 -6.5625 C 1.203125 -6.78125 1.015625 -7.484375 1.03125 -7.59375 C 1.046875 -7.828125 1.125 -8.03125 1.3125 -8.109375 C 1.359375 -8.125 1.578125 -8.234375 1.828125 -8.15625 C 1.453125 -7.9375 1.515625 -7.59375 1.59375 -7.453125 C 1.6875 -7.25 1.890625 -7.203125 2.0625 -7.296875 C 2.296875 -7.40625 2.46875 -7.71875 2.3125 -8.0625 Z M 2.3125 -8.0625 "/>
</g>
<g id="glyph-1-2">
<path d="M 4.5625 -7.390625 L 3.984375 -9.03125 C 3.90625 -9.28125 3.859375 -9.265625 3.640625 -9.15625 L -0.78125 -7.09375 C -0.96875 -7.015625 -1.046875 -6.96875 -0.953125 -6.796875 C -0.921875 -6.6875 -0.84375 -6.734375 -0.671875 -6.8125 C -0.34375 -6.953125 -0.09375 -7.078125 -0.015625 -6.921875 C 0 -6.890625 0.015625 -6.875 0.046875 -6.703125 L 1.09375 -1.359375 C 1.15625 -0.984375 1.171875 -0.890625 0.46875 -0.5625 C 0.3125 -0.484375 0.21875 -0.4375 0.296875 -0.265625 C 0.34375 -0.15625 0.453125 -0.21875 0.484375 -0.21875 L 1.65625 -0.8125 L 3.015625 -1.40625 C 3.09375 -1.4375 3.203125 -1.5 3.125 -1.671875 C 3.09375 -1.734375 3.015625 -1.734375 3.015625 -1.734375 C 2.984375 -1.734375 2.96875 -1.734375 2.765625 -1.625 C 2.5625 -1.53125 2.515625 -1.515625 2.28125 -1.421875 C 2.015625 -1.34375 1.96875 -1.359375 1.921875 -1.484375 C 1.921875 -1.484375 1.890625 -1.546875 1.875 -1.703125 L 1.375 -4.21875 L 2.25 -4.625 C 2.9375 -4.9375 3.0625 -4.828125 3.1875 -4.546875 C 3.203125 -4.5 3.265625 -4.375 3.328125 -4.078125 C 3.328125 -4.046875 3.34375 -3.96875 3.34375 -3.96875 C 3.375 -3.890625 3.4375 -3.890625 3.5 -3.921875 C 3.578125 -3.953125 3.5625 -3.96875 3.53125 -4.15625 L 3.140625 -6.359375 C 3.109375 -6.46875 3.109375 -6.484375 3.09375 -6.5 C 3.09375 -6.5 3.03125 -6.609375 2.9375 -6.5625 C 2.84375 -6.515625 2.859375 -6.46875 2.875 -6.3125 C 3.03125 -5.515625 2.890625 -5.265625 2.125 -4.90625 L 1.296875 -4.53125 L 0.828125 -7.09375 C 0.75 -7.4375 0.734375 -7.46875 1.125 -7.640625 L 2.328125 -8.203125 C 3.4375 -8.71875 3.78125 -8.515625 4.109375 -7.828125 C 4.203125 -7.625 4.21875 -7.578125 4.296875 -7.328125 C 4.34375 -7.21875 4.359375 -7.1875 4.359375 -7.15625 C 4.390625 -7.109375 4.4375 -7.078125 4.515625 -7.109375 C 4.625 -7.15625 4.609375 -7.203125 4.5625 -7.390625 Z M 4.5625 -7.390625 "/>
</g>
<g id="glyph-1-3">
<path d="M 3.828125 -3.34375 C 3.78125 -3.4375 3.6875 -3.390625 3.671875 -3.375 C 3.578125 -3.34375 3.578125 -3.3125 3.625 -3.171875 C 3.75 -2.421875 3.75 -1.859375 3.359375 -1.671875 C 3.1875 -1.59375 3.015625 -1.65625 2.859375 -1.984375 C 2.796875 -2.140625 2.734375 -2.34375 2.703125 -2.515625 C 2.671875 -2.671875 2.65625 -2.71875 2.609375 -2.796875 C 2.328125 -3.390625 1.640625 -3.390625 0.84375 -3.125 C 1.046875 -3.4375 1.1875 -3.84375 1.296875 -4.15625 C 1.515625 -4.84375 1.75 -5.4375 2.1875 -5.640625 C 2.234375 -5.671875 2.234375 -5.671875 2.265625 -5.65625 C 2.390625 -5.6875 2.40625 -5.703125 2.484375 -5.671875 C 2.515625 -5.671875 2.515625 -5.671875 2.5625 -5.65625 C 2.125 -5.421875 2.203125 -5.046875 2.25 -4.9375 C 2.3125 -4.796875 2.5 -4.671875 2.75 -4.78125 C 2.96875 -4.890625 3.15625 -5.21875 3 -5.546875 C 2.875 -5.84375 2.515625 -6.046875 2.109375 -5.84375 C 1.84375 -5.734375 1.46875 -5.4375 1.15625 -4.421875 C 1.015625 -3.9375 0.84375 -3.4375 0.5625 -3.109375 L -0.28125 -7.359375 C -0.28125 -7.359375 -0.328125 -7.46875 -0.4375 -7.421875 C -0.65625 -7.328125 -1.296875 -6.9375 -1.5 -6.8125 C -1.578125 -6.765625 -1.65625 -6.703125 -1.59375 -6.546875 C -1.53125 -6.4375 -1.453125 -6.46875 -1.3125 -6.53125 C -0.875 -6.734375 -0.84375 -6.6875 -0.796875 -6.59375 L -0.75 -6.40625 L 0.359375 -0.609375 C 0.390625 -0.46875 0.40625 -0.453125 0.421875 -0.390625 C 0.53125 -0.171875 0.734375 -0.21875 0.8125 -0.265625 C 0.921875 -0.3125 1 -0.453125 1.015625 -0.578125 C 1.03125 -0.6875 0.65625 -2.546875 0.609375 -2.796875 C 0.921875 -2.921875 1.734375 -3.109375 2.015625 -2.515625 C 2.046875 -2.453125 2.0625 -2.421875 2.078125 -2.3125 C 2.109375 -2.203125 2.125 -2.078125 2.171875 -1.984375 C 2.421875 -1.4375 2.96875 -1.265625 3.4375 -1.484375 C 3.703125 -1.609375 3.875 -1.859375 3.921875 -2.28125 C 3.953125 -2.796875 3.828125 -3.34375 3.828125 -3.34375 Z M 3.828125 -3.34375 "/>
</g>
<g id="glyph-1-4">
<path d="M 3.046875 -8.171875 C 3.015625 -8.265625 2.9375 -8.28125 2.84375 -8.28125 C 2.578125 -8.328125 2.40625 -8.46875 2.234375 -8.640625 C 2.171875 -8.71875 2.078125 -8.8125 1.953125 -8.75 C 1.828125 -8.6875 1.828125 -8.5625 1.875 -8.484375 C 1.890625 -8.4375 2.09375 -8.1875 2.328125 -8.046875 L -0.71875 -6.625 C -0.875 -6.5625 -1.03125 -6.484375 -0.953125 -6.3125 C -0.859375 -6.125 -0.703125 -6.203125 -0.546875 -6.265625 L 2.34375 -7.625 C 2.265625 -7.453125 2.09375 -7.0625 2.171875 -6.890625 C 2.203125 -6.8125 2.328125 -6.75 2.4375 -6.796875 C 2.515625 -6.84375 2.53125 -6.921875 2.546875 -6.984375 C 2.59375 -7.1875 2.671875 -7.53125 2.984375 -7.921875 C 3.03125 -7.984375 3.109375 -8.0625 3.046875 -8.171875 Z M 3.046875 -8.171875 "/>
</g>
<g id="glyph-1-5">
<path d="M -0.0625 -6.828125 C -0.15625 -7 -0.34375 -7.109375 -0.5625 -7 C -0.796875 -6.890625 -0.9375 -6.53125 -0.828125 -6.296875 C -0.734375 -6.125 -0.53125 -6.03125 -0.328125 -6.125 C -0.109375 -6.21875 0.0625 -6.546875 -0.0625 -6.828125 Z M 2.046875 -2.515625 C 2 -2.609375 1.921875 -2.5625 1.890625 -2.5625 C 1.8125 -2.515625 1.8125 -2.5 1.828125 -2.328125 C 1.9375 -1.703125 1.890625 -1 1.421875 -0.78125 C 1.28125 -0.71875 1.1875 -0.78125 1.078125 -0.984375 C 0.96875 -1.21875 0.96875 -1.359375 0.921875 -2.015625 L 0.828125 -3.125 C 0.8125 -3.421875 0.8125 -3.4375 0.78125 -3.75 C 0.78125 -3.953125 0.75 -4.109375 0.671875 -4.28125 C 0.484375 -4.6875 0.03125 -4.890625 -0.40625 -4.6875 C -1.25 -4.28125 -1 -2.796875 -0.953125 -2.71875 C -0.921875 -2.625 -0.796875 -2.671875 -0.796875 -2.671875 C -0.71875 -2.71875 -0.703125 -2.734375 -0.734375 -2.90625 C -0.875 -3.875 -0.640625 -4.3125 -0.328125 -4.46875 C -0.265625 -4.5 -0.109375 -4.5625 0.03125 -4.265625 C 0.109375 -4.078125 0.140625 -3.84375 0.15625 -3.75 C 0.171875 -3.484375 0.265625 -2.25 0.296875 -1.796875 C 0.296875 -1.53125 0.328125 -1.171875 0.421875 -0.984375 C 0.625 -0.5625 1.078125 -0.390625 1.5 -0.59375 C 2.359375 -0.984375 2.078125 -2.4375 2.046875 -2.515625 Z M 2.046875 -2.515625 "/>
</g>
<g id="glyph-2-0">
</g>
<g id="glyph-2-1">
<path d="M 3.546875 -2.75 C 3.5 -2.828125 3.40625 -2.796875 3.390625 -2.78125 C 3.296875 -2.734375 3.3125 -2.71875 3.34375 -2.53125 C 3.40625 -2.203125 3.484375 -1.75 3.203125 -1.625 C 3.046875 -1.5625 2.921875 -1.671875 2.84375 -1.84375 C 2.796875 -1.953125 2.734375 -2.21875 2.71875 -2.390625 L 2.46875 -3.640625 C 2.4375 -3.828125 2.390625 -4.15625 2.375 -4.171875 C 2.3125 -4.296875 2.171875 -4.328125 2.0625 -4.265625 C 1.828125 -4.171875 1.859375 -3.953125 1.90625 -3.75 L 2.203125 -2.265625 C 2.21875 -2.125 2.28125 -1.859375 2.28125 -1.859375 C 2.234375 -1.59375 2.140625 -1.140625 1.765625 -0.953125 C 1.328125 -0.75 1.125 -1.171875 1.078125 -1.28125 C 0.90625 -1.640625 0.859375 -2.171875 0.84375 -2.734375 C 0.8125 -2.875 0.8125 -2.984375 0.765625 -3.078125 C 0.609375 -3.421875 0.234375 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.65625 -0.265625 -3.046875 -0.03125 -3.15625 C 0.078125 -3.21875 0.15625 -3.15625 0.234375 -3.015625 C 0.296875 -2.859375 0.3125 -2.71875 0.3125 -2.546875 C 0.375 -1.515625 0.46875 -1.328125 0.546875 -1.15625 C 0.59375 -1.0625 0.734375 -0.765625 1.078125 -0.671875 C 1.3125 -0.59375 1.59375 -0.65625 1.8125 -0.765625 C 2.21875 -0.953125 2.3125 -1.265625 2.4375 -1.578125 C 2.78125 -1.21875 3.1875 -1.40625 3.28125 -1.453125 C 3.484375 -1.546875 3.59375 -1.75 3.609375 -2.015625 C 3.625 -2.34375 3.5625 -2.71875 3.546875 -2.75 Z M 3.546875 -2.75 "/>
</g>
<g id="glyph-2-2">
<path d="M 2.3125 -3.875 C 2.078125 -4.375 1.78125 -4.234375 1.765625 -4.21875 C 1.59375 -4.140625 1.5 -3.890625 1.578125 -3.71875 C 1.625 -3.609375 1.71875 -3.59375 1.75 -3.578125 C 1.921875 -3.53125 2.125 -3.4375 2.25 -3.171875 C 2.375 -2.890625 2.59375 -1.34375 1.84375 -0.984375 C 1.328125 -0.75 1.109375 -1.203125 1.0625 -1.328125 C 0.921875 -1.609375 0.875 -2 0.84375 -2.71875 C 0.8125 -2.875 0.8125 -2.984375 0.765625 -3.078125 C 0.609375 -3.421875 0.234375 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.65625 -0.28125 -3.046875 -0.03125 -3.15625 C 0.078125 -3.21875 0.15625 -3.15625 0.234375 -3.015625 C 0.296875 -2.859375 0.3125 -2.71875 0.3125 -2.546875 C 0.375 -1.71875 0.421875 -1.40625 0.53125 -1.1875 C 0.828125 -0.5625 1.421875 -0.578125 1.90625 -0.8125 C 2.96875 -1.296875 2.546875 -3.34375 2.3125 -3.875 Z M 2.3125 -3.875 "/>
</g>
<g id="glyph-2-3">
<path d="M 3.1875 -2.59375 C 3.140625 -2.671875 3.0625 -2.625 3.046875 -2.625 C 2.9375 -2.578125 2.953125 -2.5625 3 -2.375 C 3.0625 -2.015625 3.125 -1.59375 2.859375 -1.46875 C 2.703125 -1.390625 2.5625 -1.5 2.484375 -1.671875 C 2.4375 -1.78125 2.390625 -2.046875 2.375 -2.21875 L 2.25 -2.84375 C 2.171875 -3.125 2.1875 -3.15625 2.140625 -3.390625 C 2.09375 -3.59375 2.03125 -3.921875 2.015625 -3.953125 C 1.953125 -4.09375 1.828125 -4.078125 1.71875 -4.03125 C 1.609375 -3.984375 1.5 -3.859375 1.53125 -3.640625 C 1.3125 -3.8125 1.03125 -3.875 0.71875 -3.734375 C -0.09375 -3.359375 -0.515625 -2.0625 -0.09375 -1.15625 C 0.203125 -0.546875 0.828125 -0.3125 1.375 -0.5625 C 1.71875 -0.71875 1.921875 -1.046875 2.0625 -1.421875 C 2.34375 -1.09375 2.75 -1.203125 2.921875 -1.28125 C 3.140625 -1.390625 3.234375 -1.609375 3.265625 -1.84375 C 3.28125 -2.171875 3.203125 -2.5625 3.1875 -2.59375 Z M 1.640625 -3.15625 L 1.890625 -1.859375 C 1.9375 -1.640625 1.859375 -1.453125 1.765625 -1.28125 C 1.75 -1.1875 1.578125 -0.875 1.3125 -0.75 C 1.078125 -0.625 0.765625 -0.703125 0.546875 -1.140625 C 0.390625 -1.484375 0.265625 -2.25 0.296875 -2.59375 C 0.34375 -3.21875 0.625 -3.46875 0.796875 -3.546875 C 1.234375 -3.75 1.59375 -3.328125 1.625 -3.25 C 1.625 -3.25 1.640625 -3.171875 1.640625 -3.15625 Z M 1.640625 -3.15625 "/>
</g>
<g id="glyph-2-4">
<path d="M 2.703125 -3.375 C 2.359375 -4.109375 1.703125 -4.203125 1.28125 -4 C 0.890625 -3.8125 0.671875 -3.375 0.578125 -3.125 C 0.3125 -3.4375 -0.078125 -3.359375 -0.28125 -3.265625 C -0.515625 -3.15625 -0.59375 -2.921875 -0.609375 -2.703125 C -0.65625 -2.421875 -0.5625 -2 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.3125 -1.984375 -0.359375 -2.171875 C -0.421875 -2.59375 -0.453125 -2.96875 -0.21875 -3.078125 C -0.046875 -3.15625 0.0625 -3.03125 0.15625 -2.859375 C 0.1875 -2.78125 0.203125 -2.71875 0.203125 -2.65625 L 0.828125 0.546875 C 0.859375 0.75 0.875 0.796875 0.640625 0.90625 C 0.546875 0.9375 0.46875 0.984375 0.53125 1.140625 C 0.5625 1.203125 0.640625 1.203125 0.65625 1.1875 C 0.8125 1.125 1.015625 0.984375 1.1875 0.90625 C 1.390625 0.8125 1.65625 0.734375 1.859375 0.640625 C 1.921875 0.609375 1.984375 0.546875 1.9375 0.4375 C 1.890625 0.328125 1.796875 0.359375 1.71875 0.40625 C 1.578125 0.46875 1.40625 0.546875 1.359375 0.484375 C 1.359375 0.453125 1.328125 0.25 1.296875 0.171875 L 1.109375 -0.890625 C 1.234375 -0.796875 1.546875 -0.640625 1.921875 -0.828125 C 2.6875 -1.171875 3.140625 -2.4375 2.703125 -3.375 Z M 2.078125 -3.40625 C 2.203125 -3.140625 2.359375 -2.4375 2.34375 -1.96875 C 2.328125 -1.578125 2.171875 -1.140625 1.84375 -1 C 1.390625 -0.78125 1.046875 -1.21875 1.015625 -1.296875 C 1 -1.3125 1 -1.359375 0.984375 -1.390625 L 0.734375 -2.8125 C 0.875 -3.46875 1.125 -3.703125 1.328125 -3.796875 C 1.578125 -3.921875 1.890625 -3.828125 2.078125 -3.40625 Z M 2.078125 -3.40625 "/>
</g>
<g id="glyph-2-5">
<path d="M 3.859375 -4.59375 C 3.640625 -5.0625 3.359375 -4.96875 3.3125 -4.953125 C 3.15625 -4.875 3.046875 -4.609375 3.125 -4.4375 C 3.171875 -4.328125 3.265625 -4.3125 3.3125 -4.3125 C 3.53125 -4.25 3.703125 -4.109375 3.796875 -3.90625 C 3.828125 -3.828125 4.296875 -2.140625 3.5 -1.765625 C 2.984375 -1.515625 2.765625 -1.96875 2.71875 -2.09375 C 2.640625 -2.25 2.625 -2.375 2.53125 -2.765625 L 2.390625 -3.5625 C 2.359375 -3.765625 2.28125 -4.109375 2.265625 -4.125 C 2.203125 -4.25 2.078125 -4.28125 1.96875 -4.21875 C 1.84375 -4.171875 1.765625 -4.046875 1.765625 -3.90625 C 1.796875 -3.875 1.84375 -3.5625 1.859375 -3.390625 C 1.953125 -2.984375 1.953125 -2.984375 2.015625 -2.578125 C 2.109375 -2.1875 2.125 -2.125 2.1875 -1.953125 C 2.28125 -1.84375 2.28125 -1.6875 2.21875 -1.4375 C 2.1875 -1.296875 2.125 -1.125 1.90625 -1.015625 C 1.65625 -0.90625 1.296875 -0.84375 1.0625 -1.328125 C 0.921875 -1.65625 0.875 -2.203125 0.84375 -2.59375 C 0.828125 -2.921875 0.8125 -2.984375 0.765625 -3.09375 C 0.625 -3.390625 0.265625 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.671875 -0.265625 -3.046875 -0.015625 -3.171875 C 0.078125 -3.21875 0.171875 -3.171875 0.25 -3.03125 C 0.3125 -2.875 0.3125 -2.71875 0.34375 -2.625 C 0.390625 -1.53125 0.453125 -1.40625 0.546875 -1.203125 C 0.890625 -0.453125 1.625 -0.671875 1.953125 -0.828125 C 2.078125 -0.890625 2.375 -1.03125 2.46875 -1.59375 C 2.765625 -1.375 3.15625 -1.390625 3.546875 -1.578125 C 4.109375 -1.84375 4.15625 -2.453125 4.171875 -2.78125 C 4.203125 -3.4375 3.984375 -4.296875 3.859375 -4.59375 Z M 3.859375 -4.59375 "/>
</g>
<g id="glyph-3-0">
</g>
<g id="glyph-3-1">
<path d="M 6.21875 -6.125 C 6.21875 -6.21875 6.15625 -6.265625 6.078125 -6.3125 C 5.859375 -6.46875 5.75 -6.65625 5.671875 -6.890625 C 5.65625 -6.984375 5.609375 -7.109375 5.46875 -7.109375 C 5.328125 -7.109375 5.28125 -6.984375 5.28125 -6.890625 C 5.28125 -6.84375 5.359375 -6.53125 5.515625 -6.3125 L 2.15625 -6.3125 C 1.984375 -6.3125 1.8125 -6.3125 1.8125 -6.125 C 1.8125 -5.921875 1.984375 -5.921875 2.15625 -5.921875 L 5.34375 -5.921875 C 5.203125 -5.796875 4.875 -5.515625 4.875 -5.328125 C 4.875 -5.234375 4.96875 -5.140625 5.078125 -5.140625 C 5.171875 -5.140625 5.21875 -5.203125 5.265625 -5.265625 C 5.390625 -5.421875 5.609375 -5.6875 6.046875 -5.90625 C 6.125 -5.953125 6.21875 -6 6.21875 -6.125 Z M 6.21875 -6.125 "/>
</g>
<g id="glyph-3-2">
<path d="M 2.828125 -6.21875 C 2.828125 -6.421875 2.6875 -6.578125 2.453125 -6.578125 C 2.1875 -6.578125 1.921875 -6.3125 1.921875 -6.046875 C 1.921875 -5.859375 2.0625 -5.6875 2.296875 -5.6875 C 2.53125 -5.6875 2.828125 -5.921875 2.828125 -6.21875 Z M 2.921875 -1.421875 C 2.921875 -1.515625 2.828125 -1.515625 2.796875 -1.515625 C 2.703125 -1.515625 2.703125 -1.5 2.640625 -1.34375 C 2.46875 -0.71875 2.140625 -0.109375 1.625 -0.109375 C 1.46875 -0.109375 1.390625 -0.203125 1.390625 -0.4375 C 1.390625 -0.6875 1.453125 -0.828125 1.6875 -1.4375 L 2.0625 -2.484375 C 2.1875 -2.765625 2.1875 -2.78125 2.296875 -3.0625 C 2.375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.40625 1.609375 -4.40625 C 0.671875 -4.40625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.953125 C 0.84375 -3.875 1.234375 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.1875 1.828125 -3.859375 C 1.828125 -3.65625 1.75 -3.4375 1.71875 -3.34375 C 1.625 -3.078125 1.1875 -1.9375 1.03125 -1.5 C 0.921875 -1.25 0.796875 -0.921875 0.796875 -0.703125 C 0.796875 -0.234375 1.140625 0.109375 1.609375 0.109375 C 2.546875 0.109375 2.921875 -1.328125 2.921875 -1.421875 Z M 2.921875 -1.421875 "/>
</g>
<g id="glyph-3-3">
<path d="M 4.53125 -4.96875 C 4.53125 -5.640625 4.34375 -7.015625 3.328125 -7.015625 C 1.953125 -7.015625 0.421875 -4.203125 0.421875 -1.9375 C 0.421875 -1 0.703125 0.109375 1.609375 0.109375 C 3.015625 0.109375 4.53125 -2.75 4.53125 -4.96875 Z M 3.546875 -3.609375 L 1.46875 -3.609375 C 1.640625 -4.25 1.84375 -5.046875 2.234375 -5.75 C 2.515625 -6.234375 2.875 -6.796875 3.328125 -6.796875 C 3.8125 -6.796875 3.875 -6.15625 3.875 -5.59375 C 3.875 -5.109375 3.796875 -4.59375 3.546875 -3.609375 Z M 3.46875 -3.296875 C 3.359375 -2.84375 3.140625 -1.984375 2.765625 -1.28125 C 2.421875 -0.59375 2.046875 -0.109375 1.609375 -0.109375 C 1.28125 -0.109375 1.078125 -0.390625 1.078125 -1.328125 C 1.078125 -1.734375 1.140625 -2.3125 1.390625 -3.296875 Z M 3.46875 -3.296875 "/>
</g>
<g id="glyph-4-0">
</g>
<g id="glyph-4-1">
<path d="M 3.90625 -1 C 3.90625 -1.09375 3.8125 -1.09375 3.796875 -1.09375 C 3.6875 -1.09375 3.6875 -1.046875 3.65625 -0.96875 C 3.515625 -0.484375 3.09375 -0.125 2.703125 -0.125 C 2.421875 -0.125 2.28125 -0.3125 2.28125 -0.578125 C 2.28125 -0.765625 2.453125 -1.390625 2.640625 -2.171875 C 2.78125 -2.703125 3.09375 -2.875 3.328125 -2.875 C 3.328125 -2.875 3.546875 -2.875 3.703125 -2.78125 C 3.484375 -2.71875 3.390625 -2.515625 3.390625 -2.390625 C 3.390625 -2.25 3.515625 -2.140625 3.671875 -2.140625 C 3.828125 -2.140625 4.0625 -2.265625 4.0625 -2.5625 C 4.0625 -2.953125 3.609375 -3.078125 3.34375 -3.078125 C 2.984375 -3.078125 2.703125 -2.84375 2.5625 -2.578125 C 2.4375 -2.859375 2.109375 -3.078125 1.71875 -3.078125 C 0.9375 -3.078125 0.5 -2.21875 0.5 -2 C 0.5 -1.921875 0.59375 -1.921875 0.609375 -1.921875 C 0.703125 -1.921875 0.703125 -1.9375 0.75 -2.03125 C 0.921875 -2.578125 1.359375 -2.875 1.703125 -2.875 C 1.9375 -2.875 2.125 -2.75 2.125 -2.421875 C 2.125 -2.28125 2.03125 -1.9375 1.96875 -1.6875 L 1.734375 -0.734375 C 1.671875 -0.5 1.4375 -0.125 1.078125 -0.125 C 1.0625 -0.125 0.84375 -0.125 0.703125 -0.21875 C 0.984375 -0.3125 1.015625 -0.5625 1.015625 -0.609375 C 1.015625 -0.765625 0.890625 -0.859375 0.734375 -0.859375 C 0.53125 -0.859375 0.328125 -0.703125 0.328125 -0.4375 C 0.328125 -0.09375 0.71875 0.0625 1.0625 0.0625 C 1.390625 0.0625 1.671875 -0.125 1.84375 -0.421875 C 2.015625 -0.0625 2.390625 0.0625 2.671875 0.0625 C 3.484375 0.0625 3.90625 -0.796875 3.90625 -1 Z M 3.90625 -1 "/>
</g>
<g id="glyph-4-2">
<path d="M 3.875 -2.625 C 3.90625 -2.71875 3.90625 -2.734375 3.90625 -2.78125 C 3.90625 -2.921875 3.796875 -3 3.671875 -3 C 3.59375 -3 3.46875 -2.96875 3.390625 -2.84375 C 3.359375 -2.796875 3.3125 -2.578125 3.28125 -2.4375 L 3.125 -1.859375 L 2.84375 -0.734375 C 2.84375 -0.734375 2.53125 -0.125 2 -0.125 C 1.515625 -0.125 1.515625 -0.578125 1.515625 -0.703125 C 1.515625 -1.078125 1.671875 -1.515625 1.890625 -2.0625 C 1.96875 -2.28125 2 -2.359375 2 -2.484375 C 2 -2.8125 1.71875 -3.078125 1.34375 -3.078125 C 0.640625 -3.078125 0.328125 -2.125 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.953125 0.578125 -2.03125 C 0.75 -2.609375 1.046875 -2.875 1.328125 -2.875 C 1.4375 -2.875 1.5 -2.796875 1.5 -2.640625 C 1.5 -2.46875 1.4375 -2.328125 1.40625 -2.234375 C 1.0625 -1.375 1 -1.125 1 -0.8125 C 1 -0.703125 1 -0.375 1.265625 -0.140625 C 1.484375 0.03125 1.78125 0.0625 1.96875 0.0625 C 2.25 0.0625 2.5 -0.03125 2.71875 -0.25 C 2.640625 0.140625 2.5625 0.4375 2.265625 0.78125 C 2.078125 1 1.796875 1.21875 1.421875 1.21875 C 1.375 1.21875 1.046875 1.21875 0.90625 1 C 1.28125 0.953125 1.28125 0.609375 1.28125 0.609375 C 1.28125 0.390625 1.078125 0.34375 1.015625 0.34375 C 0.84375 0.34375 0.609375 0.484375 0.609375 0.8125 C 0.609375 1.15625 0.9375 1.421875 1.4375 1.421875 C 2.140625 1.421875 3 0.875 3.21875 0 Z M 3.875 -2.625 "/>
</g>
<g id="glyph-4-3">
<path d="M 3.46875 -1.015625 C 3.46875 -1.09375 3.390625 -1.09375 3.359375 -1.09375 C 3.265625 -1.09375 3.25 -1.0625 3.21875 -0.984375 C 3.09375 -0.640625 2.6875 -0.46875 2.34375 -0.46875 C 2.1875 -0.46875 2 -0.515625 1.828125 -0.546875 C 1.515625 -0.625 1.453125 -0.625 1.328125 -0.625 C 1.328125 -0.625 1.21875 -0.625 1.171875 -0.609375 C 1.359375 -0.796875 1.484375 -0.921875 2.0625 -1.40625 C 2.21875 -1.515625 2.734375 -1.9375 2.9375 -2.125 C 3.359375 -2.546875 3.625 -2.90625 3.625 -2.984375 C 3.625 -3.078125 3.546875 -3.078125 3.515625 -3.078125 C 3.453125 -3.078125 3.421875 -3.0625 3.390625 -3 C 3.171875 -2.6875 3.03125 -2.578125 2.859375 -2.578125 C 2.78125 -2.578125 2.671875 -2.578125 2.46875 -2.78125 C 2.234375 -3.03125 2.078125 -3.078125 1.921875 -3.078125 C 1.359375 -3.078125 0.984375 -2.46875 0.984375 -2.265625 C 0.984375 -2.1875 1.046875 -2.171875 1.09375 -2.171875 C 1.1875 -2.171875 1.203125 -2.1875 1.21875 -2.265625 C 1.328125 -2.515625 1.71875 -2.53125 1.828125 -2.53125 C 2 -2.53125 2.171875 -2.484375 2.265625 -2.46875 C 2.65625 -2.390625 2.703125 -2.390625 2.875 -2.390625 C 2.703125 -2.1875 2.578125 -2.0625 1.90625 -1.546875 C 1.359375 -1.109375 1.171875 -0.9375 1.046875 -0.796875 C 0.625 -0.390625 0.421875 -0.078125 0.421875 -0.015625 C 0.421875 0.0625 0.515625 0.0625 0.546875 0.0625 C 0.609375 0.0625 0.625 0.0625 0.65625 0 C 0.84375 -0.265625 1.0625 -0.421875 1.296875 -0.421875 C 1.390625 -0.421875 1.484375 -0.421875 1.671875 -0.25 C 1.890625 -0.03125 2.03125 0.0625 2.265625 0.0625 C 3 0.0625 3.46875 -0.78125 3.46875 -1.015625 Z M 3.46875 -1.015625 "/>
</g>
<g id="glyph-5-0">
</g>
<g id="glyph-5-1">
<path d="M 4.40625 -2.484375 C 4.40625 -3.546875 3.53125 -4.421875 2.484375 -4.421875 C 1.40625 -4.421875 0.5625 -3.53125 0.5625 -2.484375 C 0.5625 -1.421875 1.4375 -0.5625 2.484375 -0.5625 C 3.5625 -0.5625 4.40625 -1.4375 4.40625 -2.484375 Z M 4.40625 -2.484375 "/>
</g>
<g id="glyph-6-0">
</g>
<g id="glyph-6-1">
<path d="M 6.734375 -1.609375 L 6.484375 -1.609375 C 6.4375 -1.359375 6.40625 -1.125 6.3125 -0.890625 C 6.265625 -0.734375 6.234375 -0.640625 5.65625 -0.640625 L 4.859375 -0.640625 C 4.984375 -1.203125 5.296875 -1.6875 5.75 -2.34375 C 6.203125 -3.046875 6.625 -3.734375 6.625 -4.515625 C 6.625 -5.90625 5.28125 -7.015625 3.59375 -7.015625 C 1.875 -7.015625 0.5625 -5.875 0.5625 -4.515625 C 0.5625 -3.734375 0.96875 -3.046875 1.4375 -2.34375 C 1.875 -1.6875 2.1875 -1.203125 2.3125 -0.640625 L 1.515625 -0.640625 C 0.953125 -0.640625 0.921875 -0.734375 0.859375 -0.875 C 0.78125 -1.109375 0.734375 -1.359375 0.6875 -1.609375 L 0.4375 -1.609375 L 0.765625 0 L 2.359375 0 C 2.578125 0 2.609375 0 2.609375 -0.203125 C 2.609375 -0.90625 2.296875 -1.78125 2.0625 -2.421875 C 1.859375 -3 1.578125 -3.78125 1.578125 -4.53125 C 1.578125 -6.125 2.671875 -6.796875 3.578125 -6.796875 C 4.53125 -6.796875 5.59375 -6.078125 5.59375 -4.53125 C 5.59375 -3.78125 5.328125 -3.03125 5.03125 -2.203125 C 4.890625 -1.796875 4.5625 -0.890625 4.5625 -0.203125 C 4.5625 0 4.59375 0 4.828125 0 L 6.40625 0 Z M 6.734375 -1.609375 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 0 0.0585938 L 256.371094 0.0585938 L 256.371094 254.554688 L 0 254.554688 Z M 0 0.0585938 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 2 217 L 39 217 L 39 254.554688 L 2 254.554688 Z M 2 217 "/>
</clipPath>
</defs>
<path fill-rule="nonzero" fill="rgb(39.99939%, 39.99939%, 39.99939%)" fill-opacity="1" d="M 255.378906 122.796875 C 255.378906 55.558594 200.871094 1.054688 133.632812 1.054688 C 66.398438 1.054688 11.890625 55.558594 11.890625 122.796875 C 11.890625 190.035156 66.398438 244.539062 133.632812 244.539062 C 200.871094 244.539062 255.378906 190.035156 255.378906 122.796875 Z M 255.378906 122.796875 "/>
<g clip-path="url(#clip-0)">
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 121.893307 -0.000240399 C 121.893307 67.320292 67.318816 121.890872 -0.00171655 121.890872 C -67.318338 121.890872 -121.892829 67.320292 -121.892829 -0.000240399 C -121.892829 -67.320773 -67.318338 -121.891353 -0.00171655 -121.891353 C 67.318816 -121.891353 121.893307 -67.320773 121.893307 -0.000240399 Z M 121.893307 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
</g>
<path fill-rule="nonzero" fill="rgb(59.999084%, 59.999084%, 59.999084%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.71974 -0.000240399 C 107.71974 59.490413 59.492848 107.717305 -0.00171655 107.717305 C -59.49237 107.717305 -107.719262 59.490413 -107.719262 -0.000240399 C -107.719262 -59.490894 -59.49237 -107.717786 -0.00171655 -107.717786 C 59.492848 -107.717786 107.71974 -59.490894 107.71974 -0.000240399 Z M 107.71974 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="70.530721" y="59.453122"/>
<use xlink:href="#glyph-0-2" x="76.669973" y="56.590337"/>
<use xlink:href="#glyph-0-3" x="80.840996" y="54.645354"/>
<use xlink:href="#glyph-0-4" x="84.085124" y="53.132589"/>
<use xlink:href="#glyph-0-3" x="88.256147" y="51.187606"/>
<use xlink:href="#glyph-0-5" x="91.500276" y="49.674842"/>
<use xlink:href="#glyph-0-6" x="93.817511" y="48.594295"/>
<use xlink:href="#glyph-0-7" x="98.451981" y="46.433203"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="105.406932" y="43.190051"/>
<use xlink:href="#glyph-0-3" x="110.041401" y="41.028958"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="113.277414" y="39.519978"/>
<use xlink:href="#glyph-0-7" x="117.448437" y="37.574995"/>
<use xlink:href="#glyph-0-9" x="121.619459" y="35.630012"/>
</g>
<path fill-rule="nonzero" fill="rgb(79.998779%, 79.998779%, 79.998779%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -35.64683 -97.944126 L -97.945602 35.648784 L 35.647308 97.943645 L 97.94608 -35.649265 Z M -35.64683 -97.944126 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="43.485804" y="94.628093"/>
<use xlink:href="#glyph-0-10" x="48.120274" y="92.467001"/>
<use xlink:href="#glyph-0-11" x="52.754744" y="90.305908"/>
<use xlink:href="#glyph-0-12" x="56.045136" y="88.771571"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="60.914982" y="86.500721"/>
<use xlink:href="#glyph-0-6" x="64.625804" y="84.770333"/>
<use xlink:href="#glyph-0-13" x="69.260274" y="82.60924"/>
<use xlink:href="#glyph-0-9" x="73.894744" y="80.448148"/>
<use xlink:href="#glyph-0-13" x="77.605566" y="78.71776"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="85.015848" y="75.262284"/>
<use xlink:href="#glyph-0-15" x="90.692464" y="72.615229"/>
<use xlink:href="#glyph-0-4" x="93.009699" y="71.534683"/>
<use xlink:href="#glyph-0-3" x="97.180722" y="69.5897"/>
<use xlink:href="#glyph-0-16" x="100.424851" y="68.076935"/>
<use xlink:href="#glyph-0-2" x="102.973403" y="66.888524"/>
<use xlink:href="#glyph-0-17" x="107.144426" y="64.943541"/>
<use xlink:href="#glyph-0-18" x="110.407223" y="63.422071"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -13.709871 -37.671266 L -37.672743 13.711825 L 13.710349 37.670786 L 37.66931 -13.712306 Z M -13.709871 -37.671266 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="121.048923" y="153.77474"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="126.490164" y="151.237443"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-19" x="130.433927" y="149.398433"/>
<use xlink:href="#glyph-0-15" x="134.836267" y="147.345585"/>
<use xlink:href="#glyph-0-2" x="137.153502" y="146.265039"/>
<use xlink:href="#glyph-0-4" x="141.324525" y="144.320056"/>
<use xlink:href="#glyph-0-13" x="145.495548" y="142.375072"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -25.689351 -11.979721 L -30.828443 -14.377181 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11.981675 -25.691786 L 14.375224 -30.830878 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -29.975839 -29.618459 L -41.95923 -3.926913 L -36.820138 -1.529453 L -24.840658 -27.220998 Z M -29.975839 -29.618459 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -29.975839 -29.618459 L -36.820138 -1.529453 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -41.95923 -3.926913 L -24.840658 -27.220998 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-1" x="106.227054" y="165.859956"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-1" x="111.272773" y="165.154635"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3.924956 -41.957754 L 1.531407 -36.818662 L 27.222953 -24.839182 L 29.616502 -29.978274 Z M 3.924956 -41.957754 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 29.616502 -29.978274 L 1.531407 -36.818662 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3.924956 -41.957754 L 27.222953 -24.839182 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-1" x="169.357827" y="150.814361"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-2" x="174.404029" y="150.107712"/>
</g>
<path fill-rule="nonzero" fill="rgb(89.99939%, 89.99939%, 89.99939%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -51.901064 -42.966799 L -36.48379 -35.778329 L -38.88125 -30.643148 L -54.294614 -37.831619 Z M -51.901064 -42.966799 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -34.176283 -31.577884 L -37.230796 -33.001499 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054516 0.0000829694 L 1.60962 1.684316 L 3.085219 -0.000595614 L 1.610657 -1.682163 Z M 6.054516 0.0000829694 " transform="matrix(0.905193, -0.422084, -0.422084, -0.905193, 96.929687, 155.53215)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -56.606031 -42.032063 L -53.551518 -40.608449 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.055226 -0.0000854737 L 1.61033 1.684148 L 3.085929 -0.000764057 L 1.607822 -1.680679 Z M 6.055226 -0.0000854737 " transform="matrix(-0.905193, 0.422084, 0.422084, 0.905193, 79.668683, 163.580984)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-2" x="87.484981" y="174.368548"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-1" x="93.914332" y="173.016925"/>
</g>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -41.95923 -3.926913 L -47.09441 -6.324373 L -47.39947 -9.210712 L -52.210035 -5.960648 L -52.816245 -11.737237 L -57.630721 -8.487172 L -58.233019 -14.263761 L -63.047495 -11.013697 L -63.649794 -16.790286 L -66.058987 -15.163298 L -72.785956 -18.303854 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-3" x="76.29467" y="148.46923"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-3" x="81.620096" y="147.633478"/>
</g>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(85.096741%, 32.157898%, 9.411621%)" stroke-opacity="1" stroke-miterlimit="10" d="M -35.275282 8.572734 L -40.414374 6.175274 L -40.715523 3.288935 L -45.529999 6.538999 L -46.132297 0.76241 L -50.946773 4.012475 L -51.549072 -1.764114 L -56.363548 1.48595 L -56.965846 -4.290639 L -61.780322 -1.040574 L -62.386531 -6.817163 L -67.197096 -3.563187 L -67.803306 -9.343687 L -70.208588 -7.7167 L -76.380191 -10.595216 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(85.096741%, 32.157898%, 9.411621%)" fill-opacity="1">
<use xlink:href="#glyph-1-3" x="70.67055" y="117.09461"/>
</g>
<g fill="rgb(85.096741%, 32.157898%, 9.411621%)" fill-opacity="1">
<use xlink:href="#glyph-2-4" x="75.996881" y="116.258436"/>
</g>
<path fill-rule="nonzero" fill="rgb(89.99939%, 89.99939%, 89.99939%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 42.968753 -51.899588 L 35.780283 -36.486225 L 30.641191 -38.879774 L 37.829662 -54.297048 Z M 42.968753 -51.899588 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 31.575927 -34.178718 L 32.999542 -37.233231 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.051484 -0.000659054 L 1.610132 1.681921 L 3.087384 0.000554183 L 1.607625 -1.682905 Z M 6.051484 -0.000659054 " transform="matrix(-0.422084, -0.905193, -0.905193, 0.422084, 166.370042, 159.501474)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 42.034017 -56.604555 L 40.610403 -53.550042 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053061 -0.00123527 L 1.608165 1.682998 L 3.088961 -0.0000220341 L 1.609202 -1.683482 Z M 6.053061 -0.00123527 " transform="matrix(0.422084, 0.905193, 0.905193, -0.422084, 174.418876, 176.762479)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-2" x="177.713606" y="168.968154"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-2" x="184.143862" y="167.616109"/>
</g>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3.924956 -41.957754 L 6.322416 -47.096845 L 9.212666 -47.397994 L 5.958691 -52.21247 L 11.739191 -52.814769 L 8.485215 -57.629245 L 14.261804 -58.231543 L 11.01174 -63.046019 L 16.788329 -63.652229 L 15.165252 -66.057511 L 18.301897 -72.788391 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-3" x="152.077965" y="180.983456"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-3" x="157.402969" y="180.146799"/>
</g>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(85.096741%, 32.157898%, 9.411621%)" stroke-opacity="1" stroke-miterlimit="10" d="M -8.574691 -35.273806 L -6.17723 -40.412897 L -3.28698 -40.714047 L -6.540956 -45.528523 L -0.760456 -46.130821 L -4.014432 -50.945297 L 1.766068 -51.551506 L -1.487907 -56.362071 L 4.288682 -56.968281 L 1.038617 -61.782757 L 6.815206 -62.385055 L 3.565141 -67.199531 L 9.34173 -67.80183 L 7.718654 -70.211023 L 10.59326 -76.382626 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(85.096741%, 32.157898%, 9.411621%)" fill-opacity="1">
<use xlink:href="#glyph-1-3" x="120.441666" y="186.099198"/>
</g>
<g fill="rgb(85.096741%, 32.157898%, 9.411621%)" fill-opacity="1">
<use xlink:href="#glyph-2-4" x="125.767997" y="185.263024"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -113.386342 -113.388777 L -61.326643 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053923 -0.00153737 L 1.607083 1.684116 L 3.089363 -0.00153737 L 1.607083 -1.68328 Z M 6.053923 -0.00153737 " transform="matrix(0.998778, 0, 0, -0.998778, 69.547224, 236.04534)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-1" x="71.252838" y="246.96674"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-2" x="72.791955" y="249.244953"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-1" x="76.219762" y="250.738126"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -113.386342 -113.388777 L -113.386342 -61.329078 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.051488 -0.000897507 L 1.608559 1.684756 L 3.086928 -0.000897507 L 1.608559 -1.68264 Z M 6.051488 -0.000897507 " transform="matrix(0, -0.998778, -0.998778, 0, 20.385822, 186.883938)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-1" x="6.823653" y="180.412155"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-2" x="8.361771" y="182.690368"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-2" x="11.790577" y="184.182542"/>
</g>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -111.685045 -113.388777 C -111.685045 -112.44622 -112.447696 -111.68748 -113.386342 -111.68748 C -114.324989 -111.68748 -115.08764 -112.44622 -115.08764 -113.388777 C -115.08764 -114.327424 -114.324989 -115.086164 -113.386342 -115.086164 C -112.447696 -115.086164 -111.685045 -114.327424 -111.685045 -113.388777 Z M -111.685045 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -109.135055 -113.388777 C -109.135055 -111.038249 -111.039725 -109.133578 -113.386342 -109.133578 C -115.736871 -109.133578 -117.63763 -111.038249 -117.63763 -113.388777 C -117.63763 -115.735394 -115.736871 -117.640065 -113.386342 -117.640065 C -111.039725 -117.640065 -109.135055 -115.735394 -109.135055 -113.388777 Z M -109.135055 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-1" x="2.277214" y="237.713059"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-2" x="3.816332" y="239.991273"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-3" x="7.244138" y="241.483447"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4.253482 -0.000240399 C 4.253482 2.350288 2.348812 4.251048 -0.00171655 4.251048 C -2.348334 4.251048 -4.253004 2.350288 -4.253004 -0.000240399 C -4.253004 -2.346857 -2.348334 -4.251528 -0.00171655 -4.251528 C 2.348812 -4.251528 4.253482 -2.346857 4.253482 -0.000240399 Z M 4.253482 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00171655 -0.000240399 L 47.180931 22.003206 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.051833 0.000637619 L 1.610482 1.683218 L 3.087733 0.00185086 L 1.607974 -1.681609 Z M 6.051833 0.000637619 " transform="matrix(0.905193, -0.422084, -0.422084, -0.905193, 178.190163, 102.019801)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-4" x="116.632283" y="122.355233"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="118.990441" y="123.770444"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-5" x="122.727719" y="123.674157"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-4" x="176.442447" y="94.465833"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="178.799278" y="95.880561"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-1" x="182.537461" y="95.783852"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00171655 -0.000240399 L -22.001252 47.182407 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053998 0.00178742 L 1.607449 1.682476 L 3.088245 -0.000544017 L 1.608486 -1.684004 Z M 6.053998 0.00178742 " transform="matrix(-0.422084, -0.905193, -0.905193, 0.422084, 112.857693, 78.240999)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-4" x="98.166295" y="78.699542"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="100.524031" y="80.113848"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-2" x="104.261731" y="80.018466"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M -0.00171655 -0.000240399 L 56.692552 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 42.518985 -0.000240399 C 42.518985 6.206562 41.157947 12.346876 38.537558 17.970935 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-3" x="178.908144" y="117.060652"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-5-1" x="131.14657" y="125.00793"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 99.213253 -0.000240399 C 99.213253 21.776366 92.048249 42.907653 78.89546 60.155288 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054999 -0.00109799 L 1.608902 1.680577 L 3.085091 -0.000478407 L 1.608483 -1.684544 Z M 6.054999 -0.00109799 " transform="matrix(-0.622289, -0.781144, -0.781144, 0.622289, 214.192881, 64.937543)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-6-1" x="215.750076" y="92.331902"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

View File

@ -0,0 +1,358 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256.686" height="254.806" viewBox="0 0 256.686 254.806">
<defs>
<g>
<g id="glyph-0-0">
</g>
<g id="glyph-0-1">
<path d="M 5.765625 -3.5625 C 5.75 -3.609375 5.703125 -3.703125 5.578125 -3.65625 C 5.46875 -3.59375 5.5 -3.53125 5.53125 -3.46875 C 5.734375 -2.9375 5.5625 -2.640625 5.3125 -2.515625 C 5.046875 -2.390625 4.90625 -2.515625 4.75 -2.625 C 4.609375 -2.78125 4.28125 -3.265625 4.0625 -3.625 C 3.765625 -4.09375 3.4375 -4.609375 2.40625 -4.46875 C 3.0625 -5.046875 3.46875 -5.828125 3.171875 -6.453125 C 2.796875 -7.265625 1.53125 -7.453125 0.34375 -6.890625 L -2.25 -5.6875 L -2.140625 -5.453125 L -1.953125 -5.53125 C -1.328125 -5.828125 -1.28125 -5.734375 -1.140625 -5.4375 L 0.84375 -1.171875 C 0.984375 -0.875 1.015625 -0.78125 0.390625 -0.484375 L 0.203125 -0.40625 L 0.328125 -0.15625 C 0.6875 -0.359375 1.109375 -0.546875 1.484375 -0.734375 C 1.875 -0.921875 2.28125 -1.09375 2.6875 -1.25 L 2.5625 -1.5 L 2.375 -1.40625 C 1.75 -1.125 1.703125 -1.203125 1.5625 -1.5 L 0.609375 -3.53125 L 1.578125 -4 C 2.15625 -4.265625 2.578125 -4.078125 2.625 -4.0625 C 3.015625 -3.875 3.0625 -3.75 3.328125 -3.171875 C 3.578125 -2.640625 3.75 -2.265625 4.28125 -2.15625 C 4.796875 -2.015625 5.296875 -2.25 5.375 -2.28125 C 6.046875 -2.59375 5.859375 -3.375 5.765625 -3.5625 Z M 2.359375 -6.0625 C 2.6875 -5.375 2.5625 -4.703125 1.453125 -4.1875 L 0.515625 -3.734375 L -0.453125 -5.8125 C -0.546875 -6.03125 -0.5625 -6.109375 -0.421875 -6.203125 C -0.375 -6.28125 -0.109375 -6.40625 0.0625 -6.484375 C 0.765625 -6.796875 1.796875 -7.28125 2.359375 -6.0625 Z M 2.359375 -6.0625 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.109375 -3.5625 C 2.625 -4.625 1.390625 -5.078125 0.375 -4.609375 C -0.65625 -4.125 -1.046875 -2.875 -0.578125 -1.84375 C -0.09375 -0.8125 1.125 -0.421875 2.125 -0.890625 C 3.140625 -1.375 3.578125 -2.5625 3.109375 -3.5625 Z M 2.390625 -3.296875 C 2.53125 -3 2.75 -2.53125 2.71875 -2.09375 C 2.65625 -1.609375 2.359375 -1.265625 2.015625 -1.109375 C 1.625 -0.921875 1.1875 -0.96875 0.84375 -1.1875 C 0.46875 -1.421875 0.265625 -1.875 0.09375 -2.234375 C -0.046875 -2.53125 -0.25 -3 -0.21875 -3.4375 C -0.171875 -3.953125 0.1875 -4.25 0.484375 -4.390625 C 0.9375 -4.609375 1.390625 -4.515625 1.671875 -4.3125 C 2.03125 -4.046875 2.234375 -3.640625 2.390625 -3.296875 Z M 2.390625 -3.296875 "/>
</g>
<g id="glyph-0-3">
<path d="M 2.3125 -2.296875 L 2.09375 -2.765625 L 1.859375 -2.65625 L 2.0625 -2.21875 C 2.34375 -1.609375 2.234375 -1.203125 1.953125 -1.078125 C 1.390625 -0.828125 1.0625 -1.53125 0.984375 -1.671875 L -0.0625 -3.9375 L 1.125 -4.484375 L 1.015625 -4.734375 L -0.171875 -4.1875 L -0.875 -5.671875 L -1.09375 -5.5625 C -0.765625 -4.890625 -0.6875 -3.90625 -1.453125 -3.53125 L -1.359375 -3.328125 L -0.65625 -3.65625 L 0.390625 -1.40625 C 0.8125 -0.5 1.5625 -0.625 2 -0.828125 C 2.546875 -1.078125 2.578125 -1.71875 2.3125 -2.296875 Z M 2.3125 -2.296875 "/>
</g>
<g id="glyph-0-4">
<path d="M 3.6875 -2.59375 L 3.484375 -3.046875 L 3.265625 -2.953125 L 3.46875 -2.515625 C 3.515625 -2.421875 3.703125 -2.015625 3.40625 -1.875 C 3.109375 -1.734375 2.921875 -2.125 2.875 -2.25 L 2.203125 -3.6875 C 1.984375 -4.140625 1.859375 -4.421875 1.34375 -4.578125 C 0.90625 -4.703125 0.46875 -4.65625 0.046875 -4.453125 C -0.625 -4.140625 -1.015625 -3.53125 -0.78125 -3.015625 C -0.65625 -2.75 -0.421875 -2.6875 -0.21875 -2.796875 C 0.015625 -2.890625 0.078125 -3.140625 -0.015625 -3.359375 C -0.1875 -3.6875 -0.5625 -3.5625 -0.5625 -3.5625 C -0.4375 -3.875 -0.078125 -4.125 0.140625 -4.234375 C 0.5625 -4.421875 1.171875 -4.34375 1.5 -3.625 L 1.625 -3.359375 C 1.203125 -3.140625 0.609375 -2.8125 0.171875 -2.3125 C -0.265625 -1.765625 -0.25 -1.25 -0.109375 -0.921875 C 0.203125 -0.25 1.09375 -0.40625 1.640625 -0.671875 C 2.3125 -0.984375 2.40625 -1.5625 2.421875 -1.828125 C 2.625 -1.515625 2.984375 -1.34375 3.328125 -1.5 C 3.546875 -1.59375 4 -1.953125 3.6875 -2.59375 Z M 2.09375 -2.359375 C 2.453125 -1.578125 1.96875 -1.046875 1.609375 -0.875 C 1.234375 -0.703125 0.734375 -0.8125 0.546875 -1.21875 C 0.296875 -1.75 0.484375 -2.53125 1.71875 -3.171875 Z M 2.09375 -2.359375 "/>
</g>
<g id="glyph-0-5">
<path d="M 2.046875 -0.953125 L 1.921875 -1.203125 C 1.40625 -0.96875 1.34375 -0.984375 1.203125 -1.296875 L -0.1875 -4.265625 L -1.296875 -3.65625 L -1.1875 -3.40625 C -0.671875 -3.640625 -0.578125 -3.625 -0.390625 -3.21875 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.65625 -0.3125 0.8125 -0.421875 1.171875 -0.578125 C 1.296875 -0.640625 1.640625 -0.796875 2.046875 -0.953125 Z M -0.6875 -5.65625 C -0.796875 -5.890625 -1.078125 -5.984375 -1.328125 -5.875 C -1.5625 -5.75 -1.671875 -5.484375 -1.5625 -5.25 C -1.453125 -4.984375 -1.15625 -4.875 -0.921875 -5 C -0.671875 -5.109375 -0.578125 -5.390625 -0.6875 -5.65625 Z M -0.6875 -5.65625 "/>
</g>
<g id="glyph-0-6">
<path d="M 4.4375 -2.0625 L 4.3125 -2.3125 C 3.890625 -2.125 3.703125 -2.03125 3.578125 -2.296875 L 2.84375 -3.84375 C 2.53125 -4.515625 2.421875 -4.75 2.0625 -4.921875 C 1.78125 -5.0625 1.421875 -5.015625 1.015625 -4.828125 C 0.25 -4.46875 0.1875 -3.765625 0.15625 -3.484375 L 0.140625 -3.484375 L -0.21875 -4.265625 L -1.34375 -3.625 L -1.234375 -3.375 C -0.6875 -3.640625 -0.578125 -3.609375 -0.390625 -3.21875 L 0.609375 -1.046875 C 0.78125 -0.671875 0.703125 -0.640625 0.15625 -0.375 L 0.28125 -0.125 C 0.671875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.78125 1.703125 -0.8125 2.140625 -1 L 2.015625 -1.25 C 1.46875 -1 1.390625 -0.953125 1.21875 -1.328125 L 0.53125 -2.796875 C 0.140625 -3.65625 0.546875 -4.375 1.0625 -4.625 C 1.515625 -4.84375 1.828125 -4.484375 2.0625 -4 L 2.921875 -2.125 C 3.09375 -1.75 3 -1.703125 2.46875 -1.453125 L 2.59375 -1.203125 C 2.96875 -1.40625 3.109375 -1.484375 3.5 -1.671875 C 3.890625 -1.859375 4 -1.890625 4.4375 -2.0625 Z M 4.4375 -2.0625 "/>
</g>
<g id="glyph-0-7">
<path d="M 2.515625 -5.15625 C 2.453125 -5.3125 2.21875 -5.515625 1.890625 -5.375 C 1.65625 -5.265625 1.34375 -4.984375 1.203125 -4.578125 C 0.875 -4.640625 0.515625 -4.609375 0.1875 -4.4375 C -0.59375 -4.078125 -0.90625 -3.265625 -0.609375 -2.625 C -0.421875 -2.21875 -0.046875 -2.03125 0.125 -1.984375 C 0.125 -1.9375 0.03125 -1.5625 0.203125 -1.1875 C 0.328125 -0.921875 0.59375 -0.671875 0.90625 -0.640625 C 0.546875 -0.3125 0.359375 0.140625 0.53125 0.53125 C 0.796875 1.09375 1.8125 1.1875 2.859375 0.703125 C 3.859375 0.234375 4.5 -0.578125 4.21875 -1.203125 C 4.046875 -1.546875 3.734375 -1.828125 3.34375 -1.890625 C 2.765625 -1.953125 2.296875 -1.734375 1.515625 -1.375 C 1.359375 -1.296875 1.109375 -1.1875 1.015625 -1.15625 C 0.75 -1.109375 0.515625 -1.25 0.390625 -1.515625 C 0.328125 -1.65625 0.3125 -1.78125 0.328125 -1.921875 C 0.609375 -1.875 0.90625 -1.890625 1.28125 -2.0625 C 2.0625 -2.421875 2.390625 -3.25 2.09375 -3.890625 C 1.90625 -4.296875 1.53125 -4.46875 1.375 -4.515625 C 1.5625 -4.953125 1.9375 -5.125 2.046875 -5.171875 C 2.015625 -5.140625 1.96875 -5.0625 2.046875 -4.90625 C 2.078125 -4.828125 2.21875 -4.703125 2.40625 -4.796875 C 2.515625 -4.84375 2.59375 -4.984375 2.515625 -5.15625 Z M 1.46875 -3.59375 C 1.546875 -3.40625 1.921875 -2.625 1.1875 -2.28125 C 0.46875 -1.9375 0.09375 -2.71875 0.015625 -2.90625 C -0.09375 -3.140625 -0.203125 -3.421875 -0.15625 -3.6875 C -0.109375 -3.90625 0.03125 -4.125 0.265625 -4.234375 C 1 -4.578125 1.375 -3.78125 1.46875 -3.59375 Z M 3.765625 -1 C 3.984375 -0.53125 3.53125 0.125 2.765625 0.484375 C 1.96875 0.859375 1.1875 0.75 0.984375 0.296875 C 0.921875 0.171875 0.75 -0.40625 1.453125 -0.734375 L 2.1875 -1.078125 C 2.46875 -1.203125 3.453125 -1.65625 3.765625 -1 Z M 3.765625 -1 "/>
</g>
<g id="glyph-0-8">
<path d="M 3.453125 -3.4375 C 3.234375 -3.90625 2.921875 -4.1875 2.609375 -4.328125 C 2.046875 -4.625 1.640625 -4.53125 1.046875 -4.40625 L 0.265625 -4.265625 C -0.46875 -4.09375 -0.921875 -4.53125 -1.078125 -4.890625 C -1.328125 -5.421875 -1.140625 -6.15625 -0.46875 -6.484375 C 0.578125 -6.96875 1.359375 -6.375 1.875 -5.609375 C 1.953125 -5.46875 1.984375 -5.4375 2.09375 -5.484375 C 2.203125 -5.53125 2.171875 -5.578125 2.09375 -5.75 L 1.359375 -7.328125 C 1.28125 -7.484375 1.25 -7.546875 1.15625 -7.5 C 1.09375 -7.46875 1.109375 -7.453125 1.078125 -7.359375 C 1.046875 -7.140625 1.078125 -7.296875 1 -6.75 C 0.796875 -6.84375 0.1875 -7.046875 -0.578125 -6.703125 C -1.53125 -6.25 -1.859375 -5.203125 -1.46875 -4.375 C -1.171875 -3.75 -0.609375 -3.515625 -0.5625 -3.5 C -0.03125 -3.3125 0.15625 -3.34375 1.203125 -3.578125 C 1.9375 -3.71875 2.03125 -3.734375 2.421875 -3.59375 C 2.421875 -3.59375 2.84375 -3.421875 3.0625 -2.9375 C 3.328125 -2.390625 3.21875 -1.59375 2.46875 -1.25 C 1.859375 -0.953125 0.59375 -0.671875 -0.09375 -2 C -0.15625 -2.109375 -0.171875 -2.15625 -0.28125 -2.109375 C -0.390625 -2.0625 -0.359375 -1.984375 -0.28125 -1.828125 L 0.453125 -0.265625 C 0.515625 -0.109375 0.546875 -0.03125 0.640625 -0.078125 C 0.703125 -0.109375 0.703125 -0.125 0.71875 -0.234375 C 0.765625 -0.453125 0.71875 -0.296875 0.796875 -0.84375 C 1.515625 -0.59375 2.203125 -0.796875 2.59375 -0.984375 C 3.59375 -1.453125 3.859375 -2.578125 3.453125 -3.4375 Z M 3.453125 -3.4375 "/>
</g>
<g id="glyph-0-9">
<path d="M 3.015625 -2.59375 C 3 -2.640625 2.921875 -2.671875 2.859375 -2.640625 C 2.765625 -2.609375 2.78125 -2.53125 2.796875 -2.5 C 2.875 -1.53125 2.171875 -1.1875 2.0625 -1.125 C 1.671875 -0.953125 1.234375 -1.015625 0.90625 -1.203125 C 0.453125 -1.46875 0.234375 -1.953125 0.078125 -2.296875 L 2.390625 -3.375 C 2.5625 -3.453125 2.609375 -3.484375 2.53125 -3.65625 C 2.140625 -4.484375 1.3125 -5.046875 0.265625 -4.5625 C -0.71875 -4.109375 -1.0625 -2.90625 -0.59375 -1.890625 C -0.109375 -0.828125 1.140625 -0.4375 2.125 -0.890625 C 3.125 -1.359375 3.109375 -2.40625 3.015625 -2.59375 Z M 1.96875 -3.40625 L -0.015625 -2.484375 C -0.515625 -3.765625 0.140625 -4.234375 0.375 -4.34375 C 0.828125 -4.546875 1.46875 -4.453125 1.96875 -3.40625 Z M 1.96875 -3.40625 "/>
</g>
<g id="glyph-0-10">
<path d="M 4.4375 -2.0625 L 4.3125 -2.3125 C 3.75 -2.0625 3.671875 -2.09375 3.484375 -2.484375 L 2.140625 -5.359375 L 0.96875 -4.703125 L 1.078125 -4.453125 C 1.625 -4.71875 1.734375 -4.6875 1.921875 -4.296875 L 2.578125 -2.859375 C 2.921875 -2.140625 2.75 -1.421875 2.171875 -1.140625 C 1.5 -0.828125 1.296875 -1.171875 1.09375 -1.609375 L -0.15625 -4.28125 L -1.34375 -3.625 L -1.234375 -3.375 C -0.609375 -3.671875 -0.59375 -3.640625 -0.25 -2.921875 L 0.3125 -1.703125 C 0.5625 -1.171875 0.71875 -0.828125 1.21875 -0.71875 C 1.53125 -0.671875 1.90625 -0.78125 2.234375 -0.9375 C 2.640625 -1.125 2.9375 -1.484375 2.96875 -2.078125 L 2.984375 -2.09375 L 3.296875 -1.4375 Z M 4.4375 -2.0625 "/>
</g>
<g id="glyph-0-11">
<path d="M 2.515625 -2.4375 C 2.34375 -2.8125 2.078125 -2.953125 1.8125 -3.046875 C 1.40625 -3.1875 1.09375 -3.125 0.4375 -2.9375 C 0.21875 -2.890625 -0.421875 -2.71875 -0.640625 -3.1875 C -0.765625 -3.4375 -0.734375 -3.859375 0 -4.203125 C 0.890625 -4.609375 1.25 -3.984375 1.359375 -3.765625 C 1.421875 -3.6875 1.4375 -3.640625 1.53125 -3.6875 C 1.65625 -3.734375 1.640625 -3.796875 1.5625 -3.9375 L 1.203125 -4.71875 C 1.140625 -4.859375 1.09375 -4.9375 0.984375 -4.890625 C 0.9375 -4.875 0.9375 -4.875 0.875 -4.734375 C 0.875 -4.703125 0.828125 -4.59375 0.796875 -4.515625 C 0.46875 -4.578125 0.1875 -4.53125 -0.09375 -4.390625 C -1.171875 -3.890625 -1.15625 -3.171875 -0.96875 -2.765625 C -0.84375 -2.484375 -0.609375 -2.34375 -0.34375 -2.25 C 0.03125 -2.125 0.375 -2.21875 0.828125 -2.328125 C 1.28125 -2.4375 1.4375 -2.46875 1.671875 -2.4375 C 1.78125 -2.390625 2.0625 -2.34375 2.203125 -2.03125 C 2.546875 -1.3125 1.71875 -0.9375 1.609375 -0.875 C 0.78125 -0.5 0.25 -1.109375 -0.046875 -1.5 C -0.109375 -1.546875 -0.15625 -1.59375 -0.25 -1.5625 C -0.375 -1.5 -0.34375 -1.421875 -0.28125 -1.28125 L 0.203125 -0.25 C 0.265625 -0.109375 0.3125 -0.046875 0.421875 -0.09375 C 0.46875 -0.125 0.46875 -0.125 0.546875 -0.34375 C 0.546875 -0.40625 0.578125 -0.5625 0.609375 -0.609375 C 1.109375 -0.421875 1.5 -0.609375 1.703125 -0.6875 C 2.6875 -1.15625 2.765625 -1.90625 2.515625 -2.4375 Z M 2.515625 -2.4375 "/>
</g>
<g id="glyph-0-12">
<path d="M 3.53125 -3.78125 C 3.046875 -4.8125 1.875 -5.234375 0.921875 -4.78125 C 0.484375 -4.578125 0.15625 -4.21875 0 -3.75 L -0.234375 -4.25 L -1.390625 -3.609375 L -1.28125 -3.359375 C -0.6875 -3.640625 -0.640625 -3.609375 -0.46875 -3.25 L 1.296875 0.546875 C 1.46875 0.90625 1.390625 0.953125 0.84375 1.203125 L 0.96875 1.46875 C 1.34375 1.265625 1.5 1.1875 1.890625 1 C 2.28125 0.828125 2.375 0.796875 2.828125 0.59375 L 2.703125 0.328125 C 2.171875 0.59375 2.078125 0.625 1.90625 0.265625 L 1.28125 -1.078125 C 1.609375 -0.96875 2 -0.828125 2.546875 -1.078125 C 3.5 -1.53125 4.015625 -2.71875 3.53125 -3.78125 Z M 2.84375 -3.453125 C 3.265625 -2.53125 3.046875 -1.5625 2.390625 -1.25 C 2.03125 -1.078125 1.609375 -1.15625 1.296875 -1.34375 C 1.109375 -1.453125 1.09375 -1.484375 1.03125 -1.625 L 0.1875 -3.421875 C 0.234375 -4.015625 0.625 -4.390625 0.96875 -4.546875 C 1.59375 -4.828125 2.421875 -4.34375 2.84375 -3.453125 Z M 2.84375 -3.453125 "/>
</g>
<g id="glyph-0-13">
<path d="M 4.375 -2.046875 L 4.25 -2.296875 C 3.703125 -2.03125 3.609375 -2.0625 3.421875 -2.453125 L 1.125 -7.390625 L -0.03125 -6.71875 L 0.078125 -6.484375 C 0.625 -6.75 0.75 -6.71875 0.921875 -6.328125 L 1.734375 -4.578125 C 1.671875 -4.625 1.109375 -4.875 0.46875 -4.578125 C -0.53125 -4.109375 -1.03125 -2.921875 -0.546875 -1.859375 C -0.078125 -0.859375 1.140625 -0.4375 2.09375 -0.875 C 2.6875 -1.15625 2.890625 -1.65625 2.953125 -1.890625 L 3.203125 -1.390625 Z M 2.703125 -2.453125 C 2.765625 -2.296875 2.78125 -2.28125 2.734375 -2.046875 C 2.671875 -1.5625 2.359375 -1.234375 2.03125 -1.078125 C 1.6875 -0.921875 1.28125 -0.96875 0.90625 -1.21875 C 0.515625 -1.453125 0.296875 -1.921875 0.171875 -2.1875 C 0 -2.578125 -0.171875 -3.015625 -0.109375 -3.453125 C -0.03125 -3.78125 0.15625 -4.203125 0.609375 -4.40625 C 0.9375 -4.5625 1.34375 -4.546875 1.703125 -4.328125 C 1.859375 -4.25 1.875 -4.234375 1.9375 -4.09375 Z M 2.703125 -2.453125 "/>
</g>
<g id="glyph-0-14">
<path d="M 3.328125 -6.453125 C 2.9375 -7.265625 1.78125 -7.5625 0.671875 -7.046875 L -2.25 -5.6875 L -2.140625 -5.453125 L -1.953125 -5.53125 C -1.328125 -5.828125 -1.28125 -5.734375 -1.140625 -5.4375 L 0.84375 -1.171875 C 0.984375 -0.875 1.015625 -0.78125 0.390625 -0.484375 L 0.203125 -0.40625 L 0.328125 -0.15625 C 0.671875 -0.359375 1.125 -0.5625 1.5 -0.734375 C 1.875 -0.921875 2.328125 -1.125 2.703125 -1.265625 L 2.578125 -1.515625 L 2.390625 -1.421875 C 1.765625 -1.140625 1.734375 -1.21875 1.59375 -1.515625 L 0.703125 -3.421875 L 2.0625 -4.0625 C 3.1875 -4.59375 3.6875 -5.671875 3.328125 -6.453125 Z M 2.5 -6.078125 C 2.671875 -5.71875 3.078125 -4.828125 1.734375 -4.1875 L 0.5625 -3.640625 L -0.453125 -5.8125 C -0.578125 -6.09375 -0.59375 -6.171875 -0.21875 -6.34375 L 0.5625 -6.703125 C 1.90625 -7.34375 2.328125 -6.453125 2.5 -6.078125 Z M 2.5 -6.078125 "/>
</g>
<g id="glyph-0-15">
<path d="M 2.125 -0.984375 L 2 -1.234375 C 1.46875 -0.984375 1.359375 -0.9375 1.1875 -1.3125 L -1.140625 -6.328125 L -2.28125 -5.671875 L -2.171875 -5.4375 C -1.625 -5.6875 -1.515625 -5.65625 -1.34375 -5.265625 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.6875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.765625 1.71875 -0.8125 2.125 -0.984375 Z M 2.125 -0.984375 "/>
</g>
<g id="glyph-0-16">
<path d="M 0.578125 -6.53125 C 0.421875 -6.84375 -0.015625 -6.953125 -0.46875 -6.75 C -1.078125 -6.453125 -1.515625 -5.65625 -1.140625 -4.859375 L -0.703125 -3.921875 L -1.359375 -3.625 L -1.25 -3.375 L -0.59375 -3.671875 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.71875 -0.359375 0.8125 -0.421875 1.234375 -0.609375 L 2.265625 -1.0625 L 2.140625 -1.3125 L 1.984375 -1.234375 C 1.390625 -0.953125 1.328125 -1.03125 1.1875 -1.328125 L -0.03125 -3.9375 L 0.921875 -4.390625 L 0.8125 -4.640625 L -0.15625 -4.1875 L -0.59375 -5.109375 C -0.9375 -5.84375 -0.703125 -6.390625 -0.375 -6.546875 C -0.28125 -6.578125 -0.1875 -6.609375 -0.078125 -6.625 C -0.15625 -6.546875 -0.234375 -6.390625 -0.140625 -6.1875 C -0.046875 -5.96875 0.1875 -5.890625 0.390625 -5.984375 C 0.59375 -6.078125 0.671875 -6.3125 0.578125 -6.53125 Z M 0.578125 -6.53125 "/>
</g>
<g id="glyph-0-17">
<path d="M 1.59375 -4.5 C 1.46875 -4.75 1.125 -4.875 0.75 -4.703125 C 0.25 -4.46875 0.078125 -3.984375 0.125 -3.40625 L -0.265625 -4.234375 L -1.390625 -3.609375 L -1.28125 -3.359375 C -0.71875 -3.625 -0.625 -3.59375 -0.4375 -3.203125 L 0.5625 -1.03125 C 0.734375 -0.65625 0.65625 -0.609375 0.109375 -0.359375 L 0.234375 -0.109375 C 0.6875 -0.328125 0.765625 -0.390625 1.171875 -0.578125 L 2.21875 -1.03125 L 2.09375 -1.28125 L 1.9375 -1.21875 C 1.34375 -0.9375 1.28125 -1.015625 1.140625 -1.3125 L 0.578125 -2.53125 C 0.40625 -2.859375 -0.046875 -4.109375 0.890625 -4.546875 L 0.890625 -4.53125 C 0.859375 -4.515625 0.78125 -4.34375 0.875 -4.15625 C 0.984375 -3.9375 1.21875 -3.875 1.40625 -3.96875 C 1.578125 -4.046875 1.703125 -4.25 1.59375 -4.5 Z M 1.59375 -4.5 "/>
</g>
<g id="glyph-0-18">
<path d="M 6.75 -3.15625 L 6.625 -3.40625 C 6.21875 -3.203125 6.015625 -3.109375 5.890625 -3.375 L 5.15625 -4.921875 C 4.84375 -5.625 4.734375 -5.84375 4.328125 -6.03125 C 4.0625 -6.140625 3.6875 -6.078125 3.328125 -5.90625 C 2.75 -5.640625 2.5 -5.125 2.484375 -4.578125 C 2.171875 -5.015625 1.703125 -5.15625 1.015625 -4.828125 C 0.375 -4.53125 0.171875 -3.921875 0.171875 -3.484375 L 0.15625 -3.484375 L -0.21875 -4.265625 L -1.34375 -3.625 L -1.234375 -3.375 C -0.6875 -3.640625 -0.578125 -3.609375 -0.390625 -3.21875 L 0.609375 -1.046875 C 0.78125 -0.671875 0.703125 -0.640625 0.15625 -0.375 L 0.28125 -0.125 C 0.671875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.78125 1.703125 -0.8125 2.140625 -1 L 2.015625 -1.25 C 1.46875 -1 1.390625 -0.953125 1.21875 -1.328125 L 0.53125 -2.796875 C 0.125 -3.671875 0.5625 -4.390625 1.0625 -4.625 C 1.5 -4.828125 1.78125 -4.578125 2.0625 -4 L 2.921875 -2.125 C 3.09375 -1.75 3 -1.703125 2.46875 -1.453125 L 2.59375 -1.203125 C 2.96875 -1.40625 3.109375 -1.484375 3.515625 -1.671875 C 3.890625 -1.859375 4.015625 -1.890625 4.453125 -2.078125 L 4.328125 -2.328125 C 3.78125 -2.078125 3.703125 -2.03125 3.53125 -2.40625 L 2.84375 -3.875 C 2.4375 -4.75 2.875 -5.46875 3.359375 -5.6875 C 3.796875 -5.90625 4.09375 -5.65625 4.375 -5.078125 L 5.234375 -3.203125 C 5.40625 -2.828125 5.3125 -2.78125 4.78125 -2.546875 L 4.90625 -2.296875 C 5.296875 -2.484375 5.421875 -2.5625 5.8125 -2.75 C 6.203125 -2.9375 6.328125 -2.96875 6.75 -3.15625 Z M 6.75 -3.15625 "/>
</g>
<g id="glyph-0-19">
<path d="M 2.703125 -5.21875 L 2.59375 -5.46875 C 2.34375 -5.3125 2.078125 -5.203125 1.96875 -5.140625 C 1.75 -5.046875 1.5 -4.9375 1.28125 -4.859375 L 1.390625 -4.609375 C 1.765625 -4.765625 1.90625 -4.46875 1.90625 -4.4375 C 1.953125 -4.34375 1.96875 -4.25 1.953125 -4.171875 L 2.03125 -1.84375 L 0.140625 -3.546875 C 0.046875 -3.640625 0.03125 -3.703125 0.03125 -3.703125 C -0.078125 -3.921875 0.1875 -4.046875 0.359375 -4.125 L 0.25 -4.375 L -0.640625 -3.921875 C -0.671875 -3.90625 -1.140625 -3.6875 -1.453125 -3.578125 L -1.34375 -3.328125 C -0.984375 -3.5 -0.8125 -3.5625 -0.609375 -3.390625 L 2.0625 -0.96875 L 2.09375 -0.390625 C 2.109375 0.125 2.140625 0.765625 1.609375 1.03125 C 1.40625 1.109375 1.21875 1.09375 1.1875 1.078125 C 1.25 1.03125 1.4375 0.875 1.3125 0.59375 C 1.203125 0.390625 0.984375 0.328125 0.8125 0.421875 C 0.609375 0.515625 0.515625 0.703125 0.625 0.90625 C 0.796875 1.28125 1.28125 1.421875 1.6875 1.234375 C 2.21875 0.96875 2.34375 0.34375 2.34375 -0.1875 L 2.21875 -4.3125 C 2.1875 -4.5625 2.203125 -4.953125 2.703125 -5.21875 Z M 2.703125 -5.21875 "/>
</g>
<g id="glyph-1-0">
</g>
<g id="glyph-1-1">
<path d="M 4.40625 -2.484375 C 4.40625 -3.546875 3.53125 -4.421875 2.484375 -4.421875 C 1.40625 -4.421875 0.5625 -3.53125 0.5625 -2.484375 C 0.5625 -1.421875 1.4375 -0.5625 2.484375 -0.5625 C 3.5625 -0.5625 4.40625 -1.4375 4.40625 -2.484375 Z M 4.40625 -2.484375 "/>
</g>
<g id="glyph-2-0">
</g>
<g id="glyph-2-1">
<path d="M 4.5625 -7.390625 L 3.984375 -9.03125 C 3.90625 -9.28125 3.859375 -9.265625 3.640625 -9.15625 L -0.78125 -7.09375 C -0.96875 -7.015625 -1.046875 -6.96875 -0.953125 -6.796875 C -0.921875 -6.6875 -0.84375 -6.734375 -0.671875 -6.8125 C -0.34375 -6.953125 -0.09375 -7.078125 -0.015625 -6.921875 C 0 -6.890625 0.015625 -6.875 0.046875 -6.703125 L 1.09375 -1.359375 C 1.15625 -0.984375 1.171875 -0.890625 0.46875 -0.5625 C 0.3125 -0.484375 0.21875 -0.4375 0.296875 -0.265625 C 0.34375 -0.15625 0.453125 -0.21875 0.484375 -0.21875 L 1.65625 -0.8125 L 3.015625 -1.40625 C 3.09375 -1.4375 3.203125 -1.5 3.125 -1.671875 C 3.09375 -1.734375 3.015625 -1.734375 3.015625 -1.734375 C 2.984375 -1.734375 2.96875 -1.734375 2.765625 -1.625 C 2.5625 -1.53125 2.515625 -1.515625 2.28125 -1.421875 C 2.015625 -1.34375 1.96875 -1.359375 1.921875 -1.484375 C 1.921875 -1.484375 1.890625 -1.546875 1.875 -1.703125 L 1.375 -4.21875 L 2.25 -4.625 C 2.9375 -4.9375 3.0625 -4.828125 3.1875 -4.546875 C 3.203125 -4.5 3.265625 -4.375 3.328125 -4.078125 C 3.328125 -4.046875 3.34375 -3.96875 3.34375 -3.96875 C 3.375 -3.890625 3.4375 -3.890625 3.5 -3.921875 C 3.578125 -3.953125 3.5625 -3.96875 3.53125 -4.15625 L 3.140625 -6.359375 C 3.109375 -6.46875 3.109375 -6.484375 3.09375 -6.5 C 3.09375 -6.5 3.03125 -6.609375 2.9375 -6.5625 C 2.84375 -6.515625 2.859375 -6.46875 2.875 -6.3125 C 3.03125 -5.515625 2.890625 -5.265625 2.125 -4.90625 L 1.296875 -4.53125 L 0.828125 -7.09375 C 0.75 -7.4375 0.734375 -7.46875 1.125 -7.640625 L 2.328125 -8.203125 C 3.4375 -8.71875 3.78125 -8.515625 4.109375 -7.828125 C 4.203125 -7.625 4.21875 -7.578125 4.296875 -7.328125 C 4.34375 -7.21875 4.359375 -7.1875 4.359375 -7.15625 C 4.390625 -7.109375 4.4375 -7.078125 4.515625 -7.109375 C 4.625 -7.15625 4.609375 -7.203125 4.5625 -7.390625 Z M 4.5625 -7.390625 "/>
</g>
<g id="glyph-2-2">
<path d="M 3.828125 -3.34375 C 3.78125 -3.4375 3.6875 -3.390625 3.671875 -3.375 C 3.578125 -3.34375 3.578125 -3.3125 3.625 -3.171875 C 3.75 -2.421875 3.75 -1.859375 3.359375 -1.671875 C 3.1875 -1.59375 3.015625 -1.65625 2.859375 -1.984375 C 2.796875 -2.140625 2.734375 -2.34375 2.703125 -2.515625 C 2.671875 -2.671875 2.65625 -2.71875 2.609375 -2.796875 C 2.328125 -3.390625 1.640625 -3.390625 0.84375 -3.125 C 1.046875 -3.4375 1.1875 -3.84375 1.296875 -4.15625 C 1.515625 -4.84375 1.75 -5.4375 2.1875 -5.640625 C 2.234375 -5.671875 2.234375 -5.671875 2.265625 -5.65625 C 2.390625 -5.6875 2.40625 -5.703125 2.484375 -5.671875 C 2.515625 -5.671875 2.515625 -5.671875 2.5625 -5.65625 C 2.125 -5.421875 2.203125 -5.046875 2.25 -4.9375 C 2.3125 -4.796875 2.5 -4.671875 2.75 -4.78125 C 2.96875 -4.890625 3.15625 -5.21875 3 -5.546875 C 2.875 -5.84375 2.515625 -6.046875 2.109375 -5.84375 C 1.84375 -5.734375 1.46875 -5.4375 1.15625 -4.421875 C 1.015625 -3.9375 0.84375 -3.4375 0.5625 -3.109375 L -0.28125 -7.359375 C -0.28125 -7.359375 -0.328125 -7.46875 -0.4375 -7.421875 C -0.65625 -7.328125 -1.296875 -6.9375 -1.5 -6.8125 C -1.578125 -6.765625 -1.65625 -6.703125 -1.59375 -6.546875 C -1.53125 -6.4375 -1.453125 -6.46875 -1.3125 -6.53125 C -0.875 -6.734375 -0.84375 -6.6875 -0.796875 -6.59375 L -0.75 -6.40625 L 0.359375 -0.609375 C 0.390625 -0.46875 0.40625 -0.453125 0.421875 -0.390625 C 0.53125 -0.171875 0.734375 -0.21875 0.8125 -0.265625 C 0.921875 -0.3125 1 -0.453125 1.015625 -0.578125 C 1.03125 -0.6875 0.65625 -2.546875 0.609375 -2.796875 C 0.921875 -2.921875 1.734375 -3.109375 2.015625 -2.515625 C 2.046875 -2.453125 2.0625 -2.421875 2.078125 -2.3125 C 2.109375 -2.203125 2.125 -2.078125 2.171875 -1.984375 C 2.421875 -1.4375 2.96875 -1.265625 3.4375 -1.484375 C 3.703125 -1.609375 3.875 -1.859375 3.921875 -2.28125 C 3.953125 -2.796875 3.828125 -3.34375 3.828125 -3.34375 Z M 3.828125 -3.34375 "/>
</g>
<g id="glyph-2-3">
<path d="M 3.890625 -3.375 C 3.84375 -3.46875 3.765625 -3.421875 3.75 -3.421875 C 3.65625 -3.375 3.671875 -3.34375 3.703125 -3.203125 C 3.8125 -2.5625 3.890625 -1.921875 3.515625 -1.75 C 3.28125 -1.640625 3.140625 -1.875 3.0625 -2.046875 C 2.953125 -2.265625 2.9375 -2.34375 2.921875 -2.515625 L 1.78125 -8.328125 C 1.78125 -8.328125 1.734375 -8.4375 1.609375 -8.375 C 1.484375 -8.3125 0.671875 -7.828125 0.53125 -7.734375 C 0.453125 -7.6875 0.421875 -7.640625 0.46875 -7.515625 C 0.53125 -7.40625 0.609375 -7.4375 0.75 -7.5 C 1.171875 -7.703125 1.21875 -7.640625 1.265625 -7.546875 L 1.3125 -7.375 L 1.78125 -4.984375 C 1.453125 -5.234375 1.09375 -5.375 0.671875 -5.1875 C -0.390625 -4.6875 -0.875 -2.828125 -0.265625 -1.515625 C 0.125 -0.671875 0.90625 -0.3125 1.609375 -0.625 C 1.78125 -0.71875 2.21875 -0.96875 2.46875 -1.859375 C 2.703125 -1.515625 3.15625 -1.359375 3.59375 -1.5625 C 3.90625 -1.703125 4.03125 -2.015625 4.03125 -2.359375 C 4.03125 -2.765625 3.890625 -3.375 3.890625 -3.375 Z M 1.90625 -4.34375 L 2.28125 -2.375 C 2.3125 -2.1875 2.3125 -2.171875 2.25 -1.9375 C 2.078125 -1.265625 1.78125 -0.953125 1.53125 -0.828125 C 1.09375 -0.625 0.71875 -1.0625 0.5625 -1.421875 C 0.34375 -1.875 0.109375 -3.09375 0.140625 -3.625 C 0.15625 -4.28125 0.421875 -4.8125 0.78125 -4.984375 C 1.359375 -5.25 1.828125 -4.5625 1.859375 -4.5 C 1.875 -4.46875 1.90625 -4.40625 1.90625 -4.34375 Z M 1.90625 -4.34375 "/>
</g>
<g id="glyph-2-4">
<path d="M 6.59375 -3.296875 C 6.546875 -3.390625 6.453125 -3.34375 6.375 -3.3125 C 6 -3.140625 5.828125 -3.171875 5.5625 -3.421875 L 2.890625 -5.78125 C 2.890625 -5.8125 2.796875 -5.859375 2.796875 -5.890625 C 2.796875 -5.890625 2.890625 -6.109375 2.953125 -6.234375 L 3.96875 -8.1875 C 4.515625 -9.1875 4.859375 -9.390625 5.125 -9.546875 C 5.1875 -9.59375 5.265625 -9.640625 5.1875 -9.796875 C 5.171875 -9.84375 5.109375 -9.875 5.046875 -9.84375 C 4.84375 -9.75 4.625 -9.625 4.421875 -9.515625 C 4.09375 -9.375 3.71875 -9.234375 3.390625 -9.078125 C 3.34375 -9.0625 3.234375 -9 3.328125 -8.8125 C 3.34375 -8.765625 3.390625 -8.75 3.484375 -8.78125 C 3.6875 -8.84375 3.78125 -8.84375 3.84375 -8.71875 C 3.921875 -8.546875 3.75 -8.234375 3.703125 -8.15625 L 1.4375 -3.8125 L 0.828125 -7.046875 C 0.75 -7.40625 0.734375 -7.5 1.40625 -7.796875 C 1.625 -7.90625 1.703125 -7.9375 1.609375 -8.125 C 1.578125 -8.203125 1.484375 -8.1875 1.4375 -8.15625 L 0.296875 -7.59375 L -0.875 -7.09375 C -0.953125 -7.046875 -1.0625 -7 -0.984375 -6.828125 C -0.921875 -6.71875 -0.84375 -6.765625 -0.65625 -6.84375 C -0.546875 -6.90625 -0.390625 -6.96875 -0.265625 -7.015625 C -0.125 -7.0625 -0.0625 -7.046875 -0.015625 -6.953125 C 0.015625 -6.90625 0 -6.890625 0.03125 -6.765625 L 1.09375 -1.359375 C 1.15625 -0.984375 1.171875 -0.890625 0.46875 -0.5625 C 0.3125 -0.484375 0.21875 -0.4375 0.296875 -0.265625 C 0.34375 -0.15625 0.453125 -0.21875 0.484375 -0.21875 L 1.609375 -0.796875 L 2.1875 -1.046875 C 2.390625 -1.125 2.59375 -1.203125 2.796875 -1.296875 C 2.84375 -1.328125 2.96875 -1.390625 2.890625 -1.578125 C 2.84375 -1.671875 2.765625 -1.625 2.59375 -1.546875 C 2.25 -1.390625 2 -1.265625 1.921875 -1.421875 C 1.890625 -1.5 1.859375 -1.71875 1.8125 -1.859375 L 1.53125 -3.453125 L 2.375 -5.125 L 4.546875 -3.1875 C 4.765625 -3 4.78125 -2.96875 4.8125 -2.90625 C 4.9375 -2.640625 4.5625 -2.46875 4.484375 -2.421875 C 4.375 -2.375 4.28125 -2.328125 4.359375 -2.140625 C 4.40625 -2.046875 4.53125 -2.109375 4.53125 -2.109375 C 4.890625 -2.28125 5.25 -2.484375 5.609375 -2.65625 C 5.796875 -2.75 6.3125 -2.9375 6.515625 -3.03125 C 6.5625 -3.0625 6.671875 -3.109375 6.59375 -3.296875 Z M 6.59375 -3.296875 "/>
</g>
<g id="glyph-2-5">
<path d="M 3.046875 -8.171875 C 3.015625 -8.265625 2.9375 -8.28125 2.84375 -8.28125 C 2.578125 -8.328125 2.40625 -8.46875 2.234375 -8.640625 C 2.171875 -8.71875 2.078125 -8.8125 1.953125 -8.75 C 1.828125 -8.6875 1.828125 -8.5625 1.875 -8.484375 C 1.890625 -8.4375 2.09375 -8.1875 2.328125 -8.046875 L -0.71875 -6.625 C -0.875 -6.5625 -1.03125 -6.484375 -0.953125 -6.3125 C -0.859375 -6.125 -0.703125 -6.203125 -0.546875 -6.265625 L 2.34375 -7.625 C 2.265625 -7.453125 2.09375 -7.0625 2.171875 -6.890625 C 2.203125 -6.8125 2.328125 -6.75 2.4375 -6.796875 C 2.515625 -6.84375 2.53125 -6.921875 2.546875 -6.984375 C 2.59375 -7.1875 2.671875 -7.53125 2.984375 -7.921875 C 3.03125 -7.984375 3.109375 -8.0625 3.046875 -8.171875 Z M 3.046875 -8.171875 "/>
</g>
<g id="glyph-2-6">
<path d="M -0.0625 -6.828125 C -0.15625 -7 -0.34375 -7.109375 -0.5625 -7 C -0.796875 -6.890625 -0.9375 -6.53125 -0.828125 -6.296875 C -0.734375 -6.125 -0.53125 -6.03125 -0.328125 -6.125 C -0.109375 -6.21875 0.0625 -6.546875 -0.0625 -6.828125 Z M 2.046875 -2.515625 C 2 -2.609375 1.921875 -2.5625 1.890625 -2.5625 C 1.8125 -2.515625 1.8125 -2.5 1.828125 -2.328125 C 1.9375 -1.703125 1.890625 -1 1.421875 -0.78125 C 1.28125 -0.71875 1.1875 -0.78125 1.078125 -0.984375 C 0.96875 -1.21875 0.96875 -1.359375 0.921875 -2.015625 L 0.828125 -3.125 C 0.8125 -3.421875 0.8125 -3.4375 0.78125 -3.75 C 0.78125 -3.953125 0.75 -4.109375 0.671875 -4.28125 C 0.484375 -4.6875 0.03125 -4.890625 -0.40625 -4.6875 C -1.25 -4.28125 -1 -2.796875 -0.953125 -2.71875 C -0.921875 -2.625 -0.796875 -2.671875 -0.796875 -2.671875 C -0.71875 -2.71875 -0.703125 -2.734375 -0.734375 -2.90625 C -0.875 -3.875 -0.640625 -4.3125 -0.328125 -4.46875 C -0.265625 -4.5 -0.109375 -4.5625 0.03125 -4.265625 C 0.109375 -4.078125 0.140625 -3.84375 0.15625 -3.75 C 0.171875 -3.484375 0.265625 -2.25 0.296875 -1.796875 C 0.296875 -1.53125 0.328125 -1.171875 0.421875 -0.984375 C 0.625 -0.5625 1.078125 -0.390625 1.5 -0.59375 C 2.359375 -0.984375 2.078125 -2.4375 2.046875 -2.515625 Z M 2.046875 -2.515625 "/>
</g>
<g id="glyph-3-0">
</g>
<g id="glyph-3-1">
<path d="M 3.546875 -2.75 C 3.5 -2.828125 3.40625 -2.796875 3.390625 -2.78125 C 3.296875 -2.734375 3.3125 -2.71875 3.34375 -2.53125 C 3.40625 -2.203125 3.484375 -1.75 3.203125 -1.625 C 3.046875 -1.5625 2.921875 -1.671875 2.84375 -1.84375 C 2.796875 -1.953125 2.734375 -2.21875 2.71875 -2.390625 L 2.46875 -3.640625 C 2.4375 -3.828125 2.390625 -4.15625 2.375 -4.171875 C 2.3125 -4.296875 2.171875 -4.328125 2.0625 -4.265625 C 1.828125 -4.171875 1.859375 -3.953125 1.90625 -3.75 L 2.203125 -2.265625 C 2.21875 -2.125 2.28125 -1.859375 2.28125 -1.859375 C 2.234375 -1.59375 2.140625 -1.140625 1.765625 -0.953125 C 1.328125 -0.75 1.125 -1.171875 1.078125 -1.28125 C 0.90625 -1.640625 0.859375 -2.171875 0.84375 -2.734375 C 0.8125 -2.875 0.8125 -2.984375 0.765625 -3.078125 C 0.609375 -3.421875 0.234375 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.65625 -0.265625 -3.046875 -0.03125 -3.15625 C 0.078125 -3.21875 0.15625 -3.15625 0.234375 -3.015625 C 0.296875 -2.859375 0.3125 -2.71875 0.3125 -2.546875 C 0.375 -1.515625 0.46875 -1.328125 0.546875 -1.15625 C 0.59375 -1.0625 0.734375 -0.765625 1.078125 -0.671875 C 1.3125 -0.59375 1.59375 -0.65625 1.8125 -0.765625 C 2.21875 -0.953125 2.3125 -1.265625 2.4375 -1.578125 C 2.78125 -1.21875 3.1875 -1.40625 3.28125 -1.453125 C 3.484375 -1.546875 3.59375 -1.75 3.609375 -2.015625 C 3.625 -2.34375 3.5625 -2.71875 3.546875 -2.75 Z M 3.546875 -2.75 "/>
</g>
<g id="glyph-3-2">
<path d="M 3.1875 -2.59375 C 3.140625 -2.671875 3.0625 -2.625 3.046875 -2.625 C 2.9375 -2.578125 2.953125 -2.5625 3 -2.375 C 3.0625 -2.015625 3.125 -1.59375 2.859375 -1.46875 C 2.703125 -1.390625 2.5625 -1.5 2.484375 -1.671875 C 2.4375 -1.78125 2.421875 -1.859375 2.421875 -1.96875 L 1.65625 -5.875 C 1.640625 -5.890625 1.625 -5.984375 1.625 -5.984375 C 1.609375 -6.015625 1.5625 -6.078125 1.484375 -6.03125 C 1.359375 -5.96875 0.859375 -5.671875 0.703125 -5.578125 C 0.65625 -5.5625 0.578125 -5.515625 0.625 -5.375 C 0.671875 -5.296875 0.765625 -5.34375 0.84375 -5.375 C 1.140625 -5.515625 1.171875 -5.453125 1.1875 -5.421875 C 1.203125 -5.375 1.21875 -5.328125 1.234375 -5.265625 L 1.53125 -3.640625 C 1.3125 -3.8125 1.03125 -3.875 0.71875 -3.734375 C -0.09375 -3.359375 -0.515625 -2.0625 -0.09375 -1.15625 C 0.203125 -0.546875 0.828125 -0.3125 1.375 -0.5625 C 1.71875 -0.71875 1.921875 -1.046875 2.0625 -1.421875 C 2.34375 -1.09375 2.75 -1.203125 2.921875 -1.28125 C 3.140625 -1.390625 3.234375 -1.609375 3.265625 -1.84375 C 3.28125 -2.171875 3.203125 -2.5625 3.1875 -2.59375 Z M 1.640625 -3.15625 L 1.890625 -1.859375 C 1.9375 -1.640625 1.859375 -1.453125 1.765625 -1.28125 C 1.75 -1.1875 1.578125 -0.875 1.3125 -0.75 C 1.078125 -0.625 0.765625 -0.703125 0.546875 -1.140625 C 0.390625 -1.484375 0.265625 -2.25 0.296875 -2.59375 C 0.34375 -3.21875 0.625 -3.46875 0.796875 -3.546875 C 1.234375 -3.75 1.59375 -3.328125 1.625 -3.25 C 1.625 -3.25 1.640625 -3.171875 1.640625 -3.15625 Z M 1.640625 -3.15625 "/>
</g>
<g id="glyph-3-3">
<path d="M 2.3125 -3.875 C 2.078125 -4.375 1.78125 -4.234375 1.765625 -4.21875 C 1.59375 -4.140625 1.5 -3.890625 1.578125 -3.71875 C 1.625 -3.609375 1.71875 -3.59375 1.75 -3.578125 C 1.921875 -3.53125 2.125 -3.4375 2.25 -3.171875 C 2.375 -2.890625 2.59375 -1.34375 1.84375 -0.984375 C 1.328125 -0.75 1.109375 -1.203125 1.0625 -1.328125 C 0.921875 -1.609375 0.875 -2 0.84375 -2.71875 C 0.8125 -2.875 0.8125 -2.984375 0.765625 -3.078125 C 0.609375 -3.421875 0.234375 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.65625 -0.28125 -3.046875 -0.03125 -3.15625 C 0.078125 -3.21875 0.15625 -3.15625 0.234375 -3.015625 C 0.296875 -2.859375 0.3125 -2.71875 0.3125 -2.546875 C 0.375 -1.71875 0.421875 -1.40625 0.53125 -1.1875 C 0.828125 -0.5625 1.421875 -0.578125 1.90625 -0.8125 C 2.96875 -1.296875 2.546875 -3.34375 2.3125 -3.875 Z M 2.3125 -3.875 "/>
</g>
<g id="glyph-3-4">
<path d="M 3.859375 -4.59375 C 3.640625 -5.0625 3.359375 -4.96875 3.3125 -4.953125 C 3.15625 -4.875 3.046875 -4.609375 3.125 -4.4375 C 3.171875 -4.328125 3.265625 -4.3125 3.3125 -4.3125 C 3.53125 -4.25 3.703125 -4.109375 3.796875 -3.90625 C 3.828125 -3.828125 4.296875 -2.140625 3.5 -1.765625 C 2.984375 -1.515625 2.765625 -1.96875 2.71875 -2.09375 C 2.640625 -2.25 2.625 -2.375 2.53125 -2.765625 L 2.390625 -3.5625 C 2.359375 -3.765625 2.28125 -4.109375 2.265625 -4.125 C 2.203125 -4.25 2.078125 -4.28125 1.96875 -4.21875 C 1.84375 -4.171875 1.765625 -4.046875 1.765625 -3.90625 C 1.796875 -3.875 1.84375 -3.5625 1.859375 -3.390625 C 1.953125 -2.984375 1.953125 -2.984375 2.015625 -2.578125 C 2.109375 -2.1875 2.125 -2.125 2.1875 -1.953125 C 2.28125 -1.84375 2.28125 -1.6875 2.21875 -1.4375 C 2.1875 -1.296875 2.125 -1.125 1.90625 -1.015625 C 1.65625 -0.90625 1.296875 -0.84375 1.0625 -1.328125 C 0.921875 -1.65625 0.875 -2.203125 0.84375 -2.59375 C 0.828125 -2.921875 0.8125 -2.984375 0.765625 -3.09375 C 0.625 -3.390625 0.265625 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.671875 -0.265625 -3.046875 -0.015625 -3.171875 C 0.078125 -3.21875 0.171875 -3.171875 0.25 -3.03125 C 0.3125 -2.875 0.3125 -2.71875 0.34375 -2.625 C 0.390625 -1.53125 0.453125 -1.40625 0.546875 -1.203125 C 0.890625 -0.453125 1.625 -0.671875 1.953125 -0.828125 C 2.078125 -0.890625 2.375 -1.03125 2.46875 -1.59375 C 2.765625 -1.375 3.15625 -1.390625 3.546875 -1.578125 C 4.109375 -1.84375 4.15625 -2.453125 4.171875 -2.78125 C 4.203125 -3.4375 3.984375 -4.296875 3.859375 -4.59375 Z M 3.859375 -4.59375 "/>
</g>
<g id="glyph-4-0">
</g>
<g id="glyph-4-1">
<path d="M 6.21875 -6.125 C 6.21875 -6.21875 6.15625 -6.265625 6.078125 -6.3125 C 5.859375 -6.46875 5.75 -6.65625 5.671875 -6.890625 C 5.65625 -6.984375 5.609375 -7.109375 5.46875 -7.109375 C 5.328125 -7.109375 5.28125 -6.984375 5.28125 -6.890625 C 5.28125 -6.84375 5.359375 -6.53125 5.515625 -6.3125 L 2.15625 -6.3125 C 1.984375 -6.3125 1.8125 -6.3125 1.8125 -6.125 C 1.8125 -5.921875 1.984375 -5.921875 2.15625 -5.921875 L 5.34375 -5.921875 C 5.203125 -5.796875 4.875 -5.515625 4.875 -5.328125 C 4.875 -5.234375 4.96875 -5.140625 5.078125 -5.140625 C 5.171875 -5.140625 5.21875 -5.203125 5.265625 -5.265625 C 5.390625 -5.421875 5.609375 -5.6875 6.046875 -5.90625 C 6.125 -5.953125 6.21875 -6 6.21875 -6.125 Z M 6.21875 -6.125 "/>
</g>
<g id="glyph-4-2">
<path d="M 2.828125 -6.21875 C 2.828125 -6.421875 2.6875 -6.578125 2.453125 -6.578125 C 2.1875 -6.578125 1.921875 -6.3125 1.921875 -6.046875 C 1.921875 -5.859375 2.0625 -5.6875 2.296875 -5.6875 C 2.53125 -5.6875 2.828125 -5.921875 2.828125 -6.21875 Z M 2.921875 -1.421875 C 2.921875 -1.515625 2.828125 -1.515625 2.796875 -1.515625 C 2.703125 -1.515625 2.703125 -1.5 2.640625 -1.34375 C 2.46875 -0.71875 2.140625 -0.109375 1.625 -0.109375 C 1.46875 -0.109375 1.390625 -0.203125 1.390625 -0.4375 C 1.390625 -0.6875 1.453125 -0.828125 1.6875 -1.4375 L 2.0625 -2.484375 C 2.1875 -2.765625 2.1875 -2.78125 2.296875 -3.0625 C 2.375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.40625 1.609375 -4.40625 C 0.671875 -4.40625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.953125 C 0.84375 -3.875 1.234375 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.1875 1.828125 -3.859375 C 1.828125 -3.65625 1.75 -3.4375 1.71875 -3.34375 C 1.625 -3.078125 1.1875 -1.9375 1.03125 -1.5 C 0.921875 -1.25 0.796875 -0.921875 0.796875 -0.703125 C 0.796875 -0.234375 1.140625 0.109375 1.609375 0.109375 C 2.546875 0.109375 2.921875 -1.328125 2.921875 -1.421875 Z M 2.921875 -1.421875 "/>
</g>
<g id="glyph-4-3">
<path d="M 4.53125 -4.96875 C 4.53125 -5.640625 4.34375 -7.015625 3.328125 -7.015625 C 1.953125 -7.015625 0.421875 -4.203125 0.421875 -1.9375 C 0.421875 -1 0.703125 0.109375 1.609375 0.109375 C 3.015625 0.109375 4.53125 -2.75 4.53125 -4.96875 Z M 3.546875 -3.609375 L 1.46875 -3.609375 C 1.640625 -4.25 1.84375 -5.046875 2.234375 -5.75 C 2.515625 -6.234375 2.875 -6.796875 3.328125 -6.796875 C 3.8125 -6.796875 3.875 -6.15625 3.875 -5.59375 C 3.875 -5.109375 3.796875 -4.59375 3.546875 -3.609375 Z M 3.46875 -3.296875 C 3.359375 -2.84375 3.140625 -1.984375 2.765625 -1.28125 C 2.421875 -0.59375 2.046875 -0.109375 1.609375 -0.109375 C 1.28125 -0.109375 1.078125 -0.390625 1.078125 -1.328125 C 1.078125 -1.734375 1.140625 -2.3125 1.390625 -3.296875 Z M 3.46875 -3.296875 "/>
</g>
<g id="glyph-5-0">
</g>
<g id="glyph-5-1">
<path d="M 3.90625 -1 C 3.90625 -1.09375 3.8125 -1.09375 3.796875 -1.09375 C 3.6875 -1.09375 3.6875 -1.046875 3.65625 -0.96875 C 3.515625 -0.484375 3.09375 -0.125 2.703125 -0.125 C 2.421875 -0.125 2.28125 -0.3125 2.28125 -0.578125 C 2.28125 -0.765625 2.453125 -1.390625 2.640625 -2.171875 C 2.78125 -2.703125 3.09375 -2.875 3.328125 -2.875 C 3.328125 -2.875 3.546875 -2.875 3.703125 -2.78125 C 3.484375 -2.71875 3.390625 -2.515625 3.390625 -2.390625 C 3.390625 -2.25 3.515625 -2.140625 3.671875 -2.140625 C 3.828125 -2.140625 4.0625 -2.265625 4.0625 -2.5625 C 4.0625 -2.953125 3.609375 -3.078125 3.34375 -3.078125 C 2.984375 -3.078125 2.703125 -2.84375 2.5625 -2.578125 C 2.4375 -2.859375 2.109375 -3.078125 1.71875 -3.078125 C 0.9375 -3.078125 0.5 -2.21875 0.5 -2 C 0.5 -1.921875 0.59375 -1.921875 0.609375 -1.921875 C 0.703125 -1.921875 0.703125 -1.9375 0.75 -2.03125 C 0.921875 -2.578125 1.359375 -2.875 1.703125 -2.875 C 1.9375 -2.875 2.125 -2.75 2.125 -2.421875 C 2.125 -2.28125 2.03125 -1.9375 1.96875 -1.6875 L 1.734375 -0.734375 C 1.671875 -0.5 1.4375 -0.125 1.078125 -0.125 C 1.0625 -0.125 0.84375 -0.125 0.703125 -0.21875 C 0.984375 -0.3125 1.015625 -0.5625 1.015625 -0.609375 C 1.015625 -0.765625 0.890625 -0.859375 0.734375 -0.859375 C 0.53125 -0.859375 0.328125 -0.703125 0.328125 -0.4375 C 0.328125 -0.09375 0.71875 0.0625 1.0625 0.0625 C 1.390625 0.0625 1.671875 -0.125 1.84375 -0.421875 C 2.015625 -0.0625 2.390625 0.0625 2.671875 0.0625 C 3.484375 0.0625 3.90625 -0.796875 3.90625 -1 Z M 3.90625 -1 "/>
</g>
<g id="glyph-5-2">
<path d="M 3.875 -2.625 C 3.90625 -2.71875 3.90625 -2.734375 3.90625 -2.78125 C 3.90625 -2.921875 3.796875 -3 3.671875 -3 C 3.59375 -3 3.46875 -2.96875 3.390625 -2.84375 C 3.359375 -2.796875 3.3125 -2.578125 3.28125 -2.4375 L 3.125 -1.859375 L 2.84375 -0.734375 C 2.84375 -0.734375 2.53125 -0.125 2 -0.125 C 1.515625 -0.125 1.515625 -0.578125 1.515625 -0.703125 C 1.515625 -1.078125 1.671875 -1.515625 1.890625 -2.0625 C 1.96875 -2.28125 2 -2.359375 2 -2.484375 C 2 -2.8125 1.71875 -3.078125 1.34375 -3.078125 C 0.640625 -3.078125 0.328125 -2.125 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.953125 0.578125 -2.03125 C 0.75 -2.609375 1.046875 -2.875 1.328125 -2.875 C 1.4375 -2.875 1.5 -2.796875 1.5 -2.640625 C 1.5 -2.46875 1.4375 -2.328125 1.40625 -2.234375 C 1.0625 -1.375 1 -1.125 1 -0.8125 C 1 -0.703125 1 -0.375 1.265625 -0.140625 C 1.484375 0.03125 1.78125 0.0625 1.96875 0.0625 C 2.25 0.0625 2.5 -0.03125 2.71875 -0.25 C 2.640625 0.140625 2.5625 0.4375 2.265625 0.78125 C 2.078125 1 1.796875 1.21875 1.421875 1.21875 C 1.375 1.21875 1.046875 1.21875 0.90625 1 C 1.28125 0.953125 1.28125 0.609375 1.28125 0.609375 C 1.28125 0.390625 1.078125 0.34375 1.015625 0.34375 C 0.84375 0.34375 0.609375 0.484375 0.609375 0.8125 C 0.609375 1.15625 0.9375 1.421875 1.4375 1.421875 C 2.140625 1.421875 3 0.875 3.21875 0 Z M 3.875 -2.625 "/>
</g>
<g id="glyph-5-3">
<path d="M 3.46875 -1.015625 C 3.46875 -1.09375 3.390625 -1.09375 3.359375 -1.09375 C 3.265625 -1.09375 3.25 -1.0625 3.21875 -0.984375 C 3.09375 -0.640625 2.6875 -0.46875 2.34375 -0.46875 C 2.1875 -0.46875 2 -0.515625 1.828125 -0.546875 C 1.515625 -0.625 1.453125 -0.625 1.328125 -0.625 C 1.328125 -0.625 1.21875 -0.625 1.171875 -0.609375 C 1.359375 -0.796875 1.484375 -0.921875 2.0625 -1.40625 C 2.21875 -1.515625 2.734375 -1.9375 2.9375 -2.125 C 3.359375 -2.546875 3.625 -2.90625 3.625 -2.984375 C 3.625 -3.078125 3.546875 -3.078125 3.515625 -3.078125 C 3.453125 -3.078125 3.421875 -3.0625 3.390625 -3 C 3.171875 -2.6875 3.03125 -2.578125 2.859375 -2.578125 C 2.78125 -2.578125 2.671875 -2.578125 2.46875 -2.78125 C 2.234375 -3.03125 2.078125 -3.078125 1.921875 -3.078125 C 1.359375 -3.078125 0.984375 -2.46875 0.984375 -2.265625 C 0.984375 -2.1875 1.046875 -2.171875 1.09375 -2.171875 C 1.1875 -2.171875 1.203125 -2.1875 1.21875 -2.265625 C 1.328125 -2.515625 1.71875 -2.53125 1.828125 -2.53125 C 2 -2.53125 2.171875 -2.484375 2.265625 -2.46875 C 2.65625 -2.390625 2.703125 -2.390625 2.875 -2.390625 C 2.703125 -2.1875 2.578125 -2.0625 1.90625 -1.546875 C 1.359375 -1.109375 1.171875 -0.9375 1.046875 -0.796875 C 0.625 -0.390625 0.421875 -0.078125 0.421875 -0.015625 C 0.421875 0.0625 0.515625 0.0625 0.546875 0.0625 C 0.609375 0.0625 0.625 0.0625 0.65625 0 C 0.84375 -0.265625 1.0625 -0.421875 1.296875 -0.421875 C 1.390625 -0.421875 1.484375 -0.421875 1.671875 -0.25 C 1.890625 -0.03125 2.03125 0.0625 2.265625 0.0625 C 3 0.0625 3.46875 -0.78125 3.46875 -1.015625 Z M 3.46875 -1.015625 "/>
</g>
<g id="glyph-6-0">
</g>
<g id="glyph-6-1">
<path d="M 6.734375 -1.609375 L 6.484375 -1.609375 C 6.4375 -1.359375 6.40625 -1.125 6.3125 -0.890625 C 6.265625 -0.734375 6.234375 -0.640625 5.65625 -0.640625 L 4.859375 -0.640625 C 4.984375 -1.203125 5.296875 -1.6875 5.75 -2.34375 C 6.203125 -3.046875 6.625 -3.734375 6.625 -4.515625 C 6.625 -5.90625 5.28125 -7.015625 3.59375 -7.015625 C 1.875 -7.015625 0.5625 -5.875 0.5625 -4.515625 C 0.5625 -3.734375 0.96875 -3.046875 1.4375 -2.34375 C 1.875 -1.6875 2.1875 -1.203125 2.3125 -0.640625 L 1.515625 -0.640625 C 0.953125 -0.640625 0.921875 -0.734375 0.859375 -0.875 C 0.78125 -1.109375 0.734375 -1.359375 0.6875 -1.609375 L 0.4375 -1.609375 L 0.765625 0 L 2.359375 0 C 2.578125 0 2.609375 0 2.609375 -0.203125 C 2.609375 -0.90625 2.296875 -1.78125 2.0625 -2.421875 C 1.859375 -3 1.578125 -3.78125 1.578125 -4.53125 C 1.578125 -6.125 2.671875 -6.796875 3.578125 -6.796875 C 4.53125 -6.796875 5.59375 -6.078125 5.59375 -4.53125 C 5.59375 -3.78125 5.328125 -3.03125 5.03125 -2.203125 C 4.890625 -1.796875 4.5625 -0.890625 4.5625 -0.203125 C 4.5625 0 4.59375 0 4.828125 0 L 6.40625 0 Z M 6.734375 -1.609375 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 0 0.0585938 L 256.371094 0.0585938 L 256.371094 254.554688 L 0 254.554688 Z M 0 0.0585938 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 2 217 L 39 217 L 39 254.554688 L 2 254.554688 Z M 2 217 "/>
</clipPath>
</defs>
<path fill-rule="nonzero" fill="rgb(39.99939%, 39.99939%, 39.99939%)" fill-opacity="1" d="M 255.378906 122.796875 C 255.378906 55.558594 200.871094 1.054688 133.632812 1.054688 C 66.398438 1.054688 11.890625 55.558594 11.890625 122.796875 C 11.890625 190.035156 66.398438 244.539062 133.632812 244.539062 C 200.871094 244.539062 255.378906 190.035156 255.378906 122.796875 Z M 255.378906 122.796875 "/>
<g clip-path="url(#clip-0)">
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 121.893307 -0.000240399 C 121.893307 67.320292 67.318816 121.890872 -0.00171655 121.890872 C -67.318338 121.890872 -121.892829 67.320292 -121.892829 -0.000240399 C -121.892829 -67.320773 -67.318338 -121.891353 -0.00171655 -121.891353 C 67.318816 -121.891353 121.893307 -67.320773 121.893307 -0.000240399 Z M 121.893307 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
</g>
<path fill-rule="nonzero" fill="rgb(59.999084%, 59.999084%, 59.999084%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.71974 -0.000240399 C 107.71974 59.490413 59.492848 107.717305 -0.00171655 107.717305 C -59.49237 107.717305 -107.719262 59.490413 -107.719262 -0.000240399 C -107.719262 -59.490894 -59.49237 -107.717786 -0.00171655 -107.717786 C 59.492848 -107.717786 107.71974 -59.490894 107.71974 -0.000240399 Z M 107.71974 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="70.530721" y="59.453122"/>
<use xlink:href="#glyph-0-2" x="76.669973" y="56.590337"/>
<use xlink:href="#glyph-0-3" x="80.840996" y="54.645354"/>
<use xlink:href="#glyph-0-4" x="84.085124" y="53.132589"/>
<use xlink:href="#glyph-0-3" x="88.256147" y="51.187606"/>
<use xlink:href="#glyph-0-5" x="91.500276" y="49.674842"/>
<use xlink:href="#glyph-0-6" x="93.817511" y="48.594295"/>
<use xlink:href="#glyph-0-7" x="98.451981" y="46.433203"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="105.406932" y="43.190051"/>
<use xlink:href="#glyph-0-3" x="110.041401" y="41.028958"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="113.277414" y="39.519978"/>
<use xlink:href="#glyph-0-7" x="117.448437" y="37.574995"/>
<use xlink:href="#glyph-0-9" x="121.619459" y="35.630012"/>
</g>
<path fill-rule="nonzero" fill="rgb(79.998779%, 79.998779%, 79.998779%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -35.64683 -97.944126 L -97.945602 35.648784 L 35.647308 97.943645 L 97.94608 -35.649265 Z M -35.64683 -97.944126 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="43.485804" y="94.628093"/>
<use xlink:href="#glyph-0-10" x="48.120274" y="92.467001"/>
<use xlink:href="#glyph-0-11" x="52.754744" y="90.305908"/>
<use xlink:href="#glyph-0-12" x="56.045136" y="88.771571"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="60.914982" y="86.500721"/>
<use xlink:href="#glyph-0-6" x="64.625804" y="84.770333"/>
<use xlink:href="#glyph-0-13" x="69.260274" y="82.60924"/>
<use xlink:href="#glyph-0-9" x="73.894744" y="80.448148"/>
<use xlink:href="#glyph-0-13" x="77.605566" y="78.71776"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="85.015848" y="75.262284"/>
<use xlink:href="#glyph-0-15" x="90.692464" y="72.615229"/>
<use xlink:href="#glyph-0-4" x="93.009699" y="71.534683"/>
<use xlink:href="#glyph-0-3" x="97.180722" y="69.5897"/>
<use xlink:href="#glyph-0-16" x="100.424851" y="68.076935"/>
<use xlink:href="#glyph-0-2" x="102.973403" y="66.888524"/>
<use xlink:href="#glyph-0-17" x="107.144426" y="64.943541"/>
<use xlink:href="#glyph-0-18" x="110.407223" y="63.422071"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -13.709871 -37.671266 L -37.672743 13.711825 L 13.710349 37.670786 L 37.66931 -13.712306 Z M -13.709871 -37.671266 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="121.048923" y="153.77474"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="126.490164" y="151.237443"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-19" x="130.433927" y="149.398433"/>
<use xlink:href="#glyph-0-15" x="134.836267" y="147.345585"/>
<use xlink:href="#glyph-0-2" x="137.153502" y="146.265039"/>
<use xlink:href="#glyph-0-4" x="141.324525" y="144.320056"/>
<use xlink:href="#glyph-0-13" x="145.495548" y="142.375072"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-1" x="105.486959" y="136.973293"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -25.689351 -11.979721 L -30.828443 -14.377181 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -21.246423 -34.929636 L -40.414374 6.175274 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-1" x="143.111933" y="150.666542"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11.981675 -25.691786 L 14.375224 -30.830878 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -6.17723 -40.412897 L 34.927679 -21.244947 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(89.99939%, 89.99939%, 89.99939%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -55.311481 -28.918385 L -39.898118 -21.729914 L -42.291667 -16.594734 L -57.70503 -23.783204 Z M -55.311481 -28.918385 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -35.028887 -16.332695 L -40.641213 -18.953084 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053379 0.000114503 L 1.608482 1.684348 L 3.089279 0.00132774 L 1.60952 -1.682132 Z M 6.053379 0.000114503 " transform="matrix(0.905193, -0.422084, -0.422084, -0.905193, 96.079168, 140.309042)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -62.574261 -29.180424 L -56.961935 -26.560035 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053755 0.000169383 L 1.608859 1.684403 L 3.088003 -0.00216205 L 1.609896 -1.682077 Z M 6.053755 0.000169383 " transform="matrix(-0.905193, 0.422084, 0.422084, 0.905193, 73.706306, 150.74153)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-1" x="77.424288" y="140.431063"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-1" x="83.854061" y="139.080345"/>
</g>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -40.414374 6.175274 L -45.553465 3.781724 L -45.854614 0.891474 L -50.66909 4.14545 L -51.271389 -1.63505 L -56.085865 1.618925 L -56.688163 -4.161575 L -61.502639 -0.907599 L -62.104937 -6.688099 L -66.919413 -3.434123 L -67.525623 -9.214623 L -69.930905 -7.587636 L -76.380191 -10.595216 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-2" x="71.249841" y="119.966097"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M -25.446868 -36.889061 L -53.011796 -49.744611 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.052049 0.00154613 L 1.610697 1.684127 L 3.086296 -0.000785306 L 1.60819 -1.6807 Z M 6.052049 0.00154613 " transform="matrix(0.905193, -0.422084, -0.422084, -0.905193, 105.651288, 160.837121)"/>
<path fill-rule="nonzero" fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.052154 0.000792127 L 1.610802 1.683373 L 3.086401 -0.00153931 L 1.608295 -1.681454 Z M 6.052154 0.000792127 " transform="matrix(-0.905193, 0.422084, 0.422084, 0.905193, 83.255375, 171.280705)"/>
<g fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1">
<use xlink:href="#glyph-2-3" x="112.242695" y="172.426923"/>
</g>
<g fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1">
<use xlink:href="#glyph-3-1" x="117.567699" y="171.590266"/>
</g>
<path fill-rule="nonzero" fill="rgb(99.253845%, 96.90094%, 91.215515%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-miterlimit="10" d="M -26.686664 -49.685946 L -44.58353 -58.02817 L -37.39506 -73.445444 L -19.498193 -65.099309 Z M -26.686664 -49.685946 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1">
<use xlink:href="#glyph-2-4" x="96.82156" y="189.456091"/>
</g>
<g fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1">
<use xlink:href="#glyph-3-2" x="105.111102" y="187.237045"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-miterlimit="10" d="M -14.460789 -52.310246 L -4.878769 -72.862701 L -22.861678 -81.251857 L -26.279917 -73.922589 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053752 -0.000950927 L 1.608855 1.683282 L 3.089652 0.00026231 L 1.609893 -1.683197 Z M 6.053752 -0.000950927 " transform="matrix(-0.422084, -0.905193, -0.905193, 0.422084, 108.585579, 199.198963)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-miterlimit="10" d="M -35.846292 -53.405334 L -46.855837 -29.798366 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.05133 -0.00014097 L 1.609978 1.682439 L 3.08723 0.00107227 L 1.607471 -1.682387 Z M 6.05133 -0.00014097 " transform="matrix(-0.422084, -0.905193, -0.905193, 0.422084, 88.034509, 155.126117)"/>
<path fill-rule="nonzero" fill="rgb(89.99939%, 89.99939%, 89.99939%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28.920339 -55.310005 L 21.731869 -39.896642 L 16.592777 -42.290191 L 23.781247 -57.707465 Z M 28.920339 -55.310005 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16.334649 -35.027411 L 18.951127 -40.643648 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053891 -0.00228037 L 1.608995 1.681953 L 3.086246 0.000585716 L 1.610032 -1.684527 Z M 6.053891 -0.00228037 " transform="matrix(-0.422084, -0.905193, -0.905193, 0.422084, 151.146934, 160.351994)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 29.178467 -62.572785 L 26.561989 -56.960459 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.051591 -0.000980414 L 1.606694 1.683253 L 3.087491 0.000232823 L 1.607732 -1.683227 Z M 6.051591 -0.000980414 " transform="matrix(0.422084, 0.905193, 0.905193, -0.422084, 161.579422, 182.724856)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-1" x="144.039798" y="180.226382"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-3" x="150.46915" y="178.874759"/>
</g>
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -6.17723 -40.412897 L -3.77977 -45.551989 L -0.893431 -45.853138 L -4.143496 -50.667614 L 1.633093 -51.269912 L -1.616971 -56.084388 L 4.159618 -56.690598 L 0.909553 -61.501163 L 6.686142 -62.107372 L 3.436077 -66.921848 L 9.212666 -67.524147 L 7.585679 -69.929429 L 10.59326 -76.382626 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-2" x="128.955251" y="188.144696"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 36.887104 -25.445392 L 49.742654 -53.014231 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.052561 -0.000848746 L 1.607665 1.683385 L 3.088461 0.000364491 L 1.608702 -1.683095 Z M 6.052561 -0.000848746 " transform="matrix(-0.422084, -0.905193, -0.905193, 0.422084, 171.675013, 150.779873)"/>
<path fill-rule="nonzero" fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053534 -0.00201052 L 1.608637 1.682223 L 3.085889 0.000855566 L 1.609675 -1.684257 Z M 6.053534 -0.00201052 " transform="matrix(0.422084, 0.905193, 0.905193, -0.422084, 182.118597, 173.175787)"/>
<g fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1">
<use xlink:href="#glyph-2-3" x="175.953758" y="144.858647"/>
</g>
<g fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1">
<use xlink:href="#glyph-3-3" x="181.278279" y="144.023317"/>
</g>
<path fill-rule="nonzero" fill="rgb(99.253845%, 96.90094%, 91.215515%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-miterlimit="10" d="M 66.919891 -20.161592 L 49.023025 -28.507727 L 56.207584 -43.92109 L 74.108362 -35.574955 Z M 66.919891 -20.161592 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1">
<use xlink:href="#glyph-2-4" x="190.312194" y="159.969162"/>
</g>
<g fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1">
<use xlink:href="#glyph-3-2" x="198.602159" y="157.751021"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-miterlimit="10" d="M 53.677149 -13.825726 L 74.229604 -4.243706 L 82.614849 -22.226615 L 75.164339 -25.699608 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054716 0.00144901 L 1.608167 1.682138 L 3.088963 -0.000882419 L 1.609204 -1.684342 Z M 6.054716 0.00144901 " transform="matrix(-0.905193, 0.422084, 0.422084, 0.905193, 211.276948, 147.26731)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-miterlimit="10" d="M 52.163581 -36.423648 L 29.796409 -46.854361 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(92.547607%, 69.018555%, 12.156677%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(92.547607%, 69.018555%, 12.156677%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054133 0.00123879 L 1.607584 1.681927 L 3.08838 -0.00109265 L 1.608621 -1.684552 Z M 6.054133 0.00123879 " transform="matrix(-0.905193, 0.422084, 0.422084, 0.905193, 165.964009, 168.396653)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -113.386342 -113.388777 L -61.326643 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053923 -0.00153737 L 1.607083 1.684116 L 3.089363 -0.00153737 L 1.607083 -1.68328 Z M 6.053923 -0.00153737 " transform="matrix(0.998778, 0, 0, -0.998778, 69.547224, 236.04534)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-1" x="71.252838" y="246.96674"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-2" x="72.791955" y="249.244953"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-5-1" x="76.219762" y="250.738126"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -113.386342 -113.388777 L -113.386342 -61.329078 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.051488 -0.000897507 L 1.608559 1.684756 L 3.086928 -0.000897507 L 1.608559 -1.68264 Z M 6.051488 -0.000897507 " transform="matrix(0, -0.998778, -0.998778, 0, 20.385822, 186.883938)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-1" x="6.823653" y="180.412155"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-2" x="8.361771" y="182.690368"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-5-2" x="11.790577" y="184.182542"/>
</g>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -111.685045 -113.388777 C -111.685045 -112.44622 -112.447696 -111.68748 -113.386342 -111.68748 C -114.324989 -111.68748 -115.08764 -112.44622 -115.08764 -113.388777 C -115.08764 -114.327424 -114.324989 -115.086164 -113.386342 -115.086164 C -112.447696 -115.086164 -111.685045 -114.327424 -111.685045 -113.388777 Z M -111.685045 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -109.135055 -113.388777 C -109.135055 -111.038249 -111.039725 -109.133578 -113.386342 -109.133578 C -115.736871 -109.133578 -117.63763 -111.038249 -117.63763 -113.388777 C -117.63763 -115.735394 -115.736871 -117.640065 -113.386342 -117.640065 C -111.039725 -117.640065 -109.135055 -115.735394 -109.135055 -113.388777 Z M -109.135055 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-1" x="2.277214" y="237.713059"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-2" x="3.816332" y="239.991273"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-5-3" x="7.244138" y="241.483447"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00171655 -0.000240399 L 47.180931 22.003206 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.051833 0.000637619 L 1.610482 1.683218 L 3.087733 0.00185086 L 1.607974 -1.681609 Z M 6.051833 0.000637619 " transform="matrix(0.905193, -0.422084, -0.422084, -0.905193, 178.190163, 102.019801)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-5" x="116.632283" y="122.355233"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-6" x="118.990441" y="123.770444"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-4" x="122.727719" y="123.674157"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-5" x="176.442447" y="94.465833"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-6" x="178.799278" y="95.880561"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-1" x="182.537461" y="95.783852"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00171655 -0.000240399 L -22.001252 47.182407 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053998 0.00178742 L 1.607449 1.682476 L 3.088245 -0.000544017 L 1.608486 -1.684004 Z M 6.053998 0.00178742 " transform="matrix(-0.422084, -0.905193, -0.905193, 0.422084, 112.857693, 78.240999)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-5" x="98.166295" y="78.699542"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-6" x="100.524031" y="80.113848"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-3" x="104.261731" y="80.018466"/>
</g>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1.699581 -0.000240399 C 1.699581 0.938406 0.940841 1.701057 -0.00171655 1.701057 C -0.940363 1.701057 -1.699103 0.938406 -1.699103 -0.000240399 C -1.699103 -0.938887 -0.940363 -1.701538 -0.00171655 -1.701538 C 0.940841 -1.701538 1.699581 -0.938887 1.699581 -0.000240399 Z M 1.699581 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4.253482 -0.000240399 C 4.253482 2.350288 2.348812 4.251048 -0.00171655 4.251048 C -2.348334 4.251048 -4.253004 2.350288 -4.253004 -0.000240399 C -4.253004 -2.346857 -2.348334 -4.251528 -0.00171655 -4.251528 C 2.348812 -4.251528 4.253482 -2.346857 4.253482 -0.000240399 Z M 4.253482 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M -0.00171655 -0.000240399 L 56.692552 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 42.518985 -0.000240399 C 42.518985 6.206562 41.157947 12.346876 38.537558 17.970935 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-3" x="178.908144" y="117.060652"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 99.213253 -0.000240399 C 99.213253 21.776366 92.048249 42.907653 78.89546 60.155288 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054999 -0.00109799 L 1.608902 1.680577 L 3.085091 -0.000478407 L 1.608483 -1.684544 Z M 6.054999 -0.00109799 " transform="matrix(-0.622289, -0.781144, -0.781144, 0.622289, 214.192881, 64.937543)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-6-1" x="215.750076" y="92.331902"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 KiB

Some files were not shown because too many files have changed in this diff Show More