add machine learning
continuous-integration/drone/push Build is passing Details

master
Simon Bruder 2019-07-08 19:18:31 +00:00
parent e4747239fe
commit ce5468f60e
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
14 changed files with 1155 additions and 0 deletions

4
.gitignore vendored
View File

@ -1,11 +1,15 @@
# LaTeX build files
*.aux
*.bbl
*.bcf
*.blg
*.eps
*.fdb_latexmk
*.fls
*.log
*.nav
*.out
*.run.xml
*.snm
*.toc

View File

@ -20,6 +20,7 @@
<tr><td></td><td><a href="revealjs/information-technology/">information technology</a></td></tr>
<tr><td></td><td><a href="revealjs/laser/">Laser in optischen Laufwerken</a></td></tr>
<tr><td></td><td><a href="revealjs/suchmaschine/">Suchmaschine</a></td></tr>
<tr><td></td><td><a href="latex/machine-learning/index.pdf">Machine Learning</a></td></tr>
</table>
</body>
</html>

BIN
latex/assets/bibimage.pdf Normal file

Binary file not shown.

View File

@ -0,0 +1,23 @@
% vim: set ft=tex
\PassOptionsToPackage{pdfencoding=auto}{hyperref}
\ProvidesClass{custombeamer}
\LoadClass[aspectratio=1610]{beamer}
\usetheme[nofirafonts]{focus}
\usefonttheme[onlymath]{serif}
\RequirePackage{fontspec}
\setsansfont{Fira Sans}
\setmonofont{Iosevka sbruder}
\setbeamertemplate{bibliography item}{%
\ifboolexpr{ test {\ifentrytype{book}} or test {\ifentrytype{mvbook}}
or test {\ifentrytype{collection}} or test {\ifentrytype{mvcollection}}
or test {\ifentrytype{reference}} or test {\ifentrytype{mvreference}} }
{\setbeamertemplate{bibliography item}[book]}
{\ifentrytype{image}
{\setbeamertemplate{bibliography item}{\includegraphics[width=1.5em]{../assets/bibimage}}}
{\ifentrytype{online}
{\setbeamertemplate{bibliography item}[online]}
{\setbeamertemplate{bibliography item}[article]}}}%
\usebeamertemplate{bibliography item}}

Binary file not shown.

After

Width:  |  Height:  |  Size: 895 KiB

View File

@ -0,0 +1 @@
../assets/custombeamer.cls

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

View File

@ -0,0 +1,194 @@
\PassOptionsToPackage{table}{xcolor}
\documentclass[aspectratio=1610, theme=focus]{custombeamer}
%\usetheme{focus}
\usepackage[ngerman]{babel}
\usepackage{biblatex}
\nocite{*}
\addbibresource{sources.bib}
\usetikzlibrary{decorations.pathreplacing, positioning}
\usepackage[thinlines]{easytable}
\title{Machine Learning}
\subtitle{Eine Einführung}
\author{Simon Bruder}
%\titlegraphic{\includegraphics[scale=1.25]{focuslogo.pdf}}
\institute{Christian-von-Bomhard-Schule}
\usepackage{datetime}
\newdate{date}{09}{07}{2019}
\date{\displaydate{date}}
\begin{document}
\begin{frame}
\maketitle
\end{frame}
\begin{frame}[noframenumbering]
\tableofcontents
\end{frame}
\section{Einsatzgebiete}
\begin{frame}{Einsatzgebiete}
\begin{itemize}
\item{Computerspiele-»KI«}
\item{Medizinische Diagnostik}
\item{Personalisierte Werbung}
\item{Selbstfahrende Autos}
\item{Spracherkennung}
\end{itemize}
\end{frame}
\section{Praxis: Tic Tac Toe}
\begin{frame}{Tic Tac Toe}
\begin{minipage}[t]{.5\textwidth}
\textbf{Lernen}
\begin{itemize}
\item{Computer weiß nur, wann das Spiel gewonnen ist}
\item{\textbf{Generator} gibt zufällige Züge zurück}
\item{Wenn gewonnen: \textbf{Diskriminator} wertet Züge von Gewinner auf, Züge von Verlierer ab}
\end{itemize}
\end{minipage}%
\begin{minipage}[t]{.5\textwidth}
\textbf{Anwenden}
\begin{itemize}
\item{\textbf{Generator} weiß für jede Spielsituation, wie erfolgreich ein Zug ist}
\item{Erfolgreichster Zug wird ausgeführt}
\item{→ Immer Gewinn oder Unentschieden}
\end{itemize}
\end{minipage}
\vspace{1em}
\renewcommand*{\o}{$\pmb\bigcirc$}
\newcommand*{\x}{$\pmb\times$}
\begin{center}
\pause
\ttfamily\begin{TAB}(e,1em,1em){|c|c|c|}{|c|c|c|}
\x & \o & \x \\
1 & \o & 0 \\
\x & 0.5 & \o \\
\end{TAB} \\
X am Zug
\end{center}
\end{frame}
\section{Theorie: Neuronale Netzwerke}
\begin{frame}{Neuronale Netzwerke: Eingabe}
\begin{center}
\begin{tikzpicture}
\onslide<+>\node[] (traffic light) {\includegraphics[height=.75\textheight]{traffic-light-ryg}};
\onslide<+->\node[] (traffic light) {\includegraphics[height=.75\textheight]{traffic-light-ryg-gray}};
\onslide<+->
\draw[decoration={brace, raise=1pt, amplitude=5pt}, decorate] (traffic light.north west) -- node[above=5pt] (width) {$25$} (traffic light.north east);
\draw[decoration={brace, mirror, raise=1pt, amplitude=5pt}, decorate] (traffic light.south east) -- node[right=5pt] (height) {$75$} (traffic light.north east);
\onslide<+->
\node[right=5 of traffic light.north east] (input) {$25 \cdot 75 = 1875$};
\draw[->, thick] (traffic light.north east) ++ (0.25,0) -- (input);
\onslide<+->
\node[below=1em of input] (values) {$[0 .. 255]$$[0, 1]$};
\node[below=1em of values] {\includegraphics[width=.33\textwidth]{traffic-light-ryg-gray-values}};
\onslide<1-> % I dont use reveal because I have to do ugly hacks there … wait what?
\end{tikzpicture}
\end{center}
\end{frame}
\begin{frame}{Neuronale Netzwerke}
% stolen from https://tex.stackexchange.com/a/153974
\tikzset{%
every neuron/.style={
circle,
draw,
minimum size=1cm
},
neuron missing/.style={
draw=none,
scale=4,
text height=0.333cm,
execute at begin node=\color{black}$\vdots$
},
}
\begin{tikzpicture}[x=2.4cm, y=1.5cm, >=stealth, font=\sffamily]
\foreach \m/\l [count=\y] in {1,2,3,missing,4}
\node [every neuron/.try, neuron \m/.try] (input-\m) at (0,2.5-\y) {};
\foreach \m [count=\y] in {1,missing,2}
\node [every neuron/.try, neuron \m/.try ] (hidden-\m) at (2,2-\y*1.25) {};
\foreach \m [count=\y] in {1,2,3}
\node [every neuron/.try, neuron \m/.try ] (output-\m) at (4,1.5-\y) {};
\foreach \l [count=\i] in {1,2,3,1875}
\draw [<-] (input-\i) -- ++(-1,0)
node [above, midway] {$I_{\l}$};
\foreach \l [count=\i] in {1,n}
\node [above] at (hidden-\i.north) {$H_\l$};
\foreach \l [count=\i] in {1,2,3}
\draw [->] (output-\i) -- ++(1,0)
node [above, midway] {$O_\l$};
\foreach \i in {1,...,4}
\foreach \j in {1,...,2}
\draw [->] (input-\i) -- (hidden-\j);
\foreach \i in {1,...,2}
\foreach \j in {1,...,3}
\draw [->] (hidden-\i) -- (output-\j);
\foreach \l [count=\x from 0] in {Input, Hidden, Output}
\node [align=center, above] at (\x*2,1.9) {\l \\ layer};
\end{tikzpicture}
\end{frame}
\begin{frame}{Graphische Demo}
\href{https://playground.tensorflow.org/\#activation=tanh&batchSize=10&dataset=gauss&regDataset=reg-plane&learningRate=0.03&regularizationRate=0&noise=0&networkShape=4,2&seed=0.90019&showTestData=false&discretize=false&percTrainData=50&x=true&y=true&xTimesY=false&xSquared=false&ySquared=false&cosX=false&sinX=false&cosY=false&sinY=false&collectStats=false&problem=classification&initZero=false&hideText=false&discretize_hide=true&numHiddenLayers_hide=true&regularizationRate_hide=true&learningRate_hide=true&batchSize_hide=true&dataset_hide=true&regularization_hide=true&noise_hide=true&problem_hide=true&activation_hide=true&showTestData_hide=false&percTrainData_hide=false}{playground.tensorflow.org}
\end{frame}
\section{Training in der Praxis}
\begin{frame}{Training}
\pause\begin{minipage}[t]{.30\textwidth}
\textbf{Computer trainiert sich selbst}
\begin{itemize}
\item{Diskriminator hat Regelwerk vorliegen}
\item{In zufälliger Generation ist auch ein richtiges Ergebnis vorhanden}
\item{Funktioniert gut für Spiele}
\end{itemize}
\end{minipage}\hfill%
\pause\begin{minipage}[t]{.30\textwidth}
\textbf{Entwickelnde Menschen als Diskriminator}
\begin{itemize}
\item{Menschen geben Eingabe und gewünschte Ausgabe vor}
\item{Teilweise existieren schon Datensätze}
\item{Arbeitsaufwändig/Teuer}
\end{itemize}
\end{minipage}\hfill%
\pause\begin{minipage}[t]{.30\textwidth}
\includegraphics[height=.1\textheight]{im-not-a-robot} \\
\includegraphics[height=.7\textheight]{captcha}
\end{minipage}%
\end{frame}
\appendix
\begin{frame}{Quellen}
\printbibliography[heading=none]
\end{frame}
\begin{frame}[focus]
Nicht ganz verstanden? \\
Fragen?
\end{frame}
\begin{frame}{Bonus/Weiterführende Informationen}
\begin{itemize}
\item{Videoserie: \href{https://www.youtube.com/playlist?list=PLZHQObOWTQDNU6R1_67000Dx_ZCJB-3pi}{3Blue1Brown: Neural networks}}
\end{itemize}
\end{frame}
\end{document}

View File

@ -0,0 +1,5 @@
@image{Commons:TrafficLight,
author = "Petey21",
title = "File:Led traffic lights.jpg",
url = "https://commons.wikimedia.org/wiki/File:Led_traffic_lights.jpg"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -0,0 +1,927 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
id="svg365"
viewBox="0 0 500 500"
version="1.1"
height="500"
width="500">
<metadata
id="metadata2">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs129">
<filter
color-interpolation-filters="sRGB"
id="filter1739">
<feColorMatrix
id="feColorMatrix4"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix6"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1745">
<feColorMatrix
id="feColorMatrix9"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix11"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1751">
<feColorMatrix
id="feColorMatrix14"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix16"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1757">
<feColorMatrix
id="feColorMatrix19"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix21"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1763">
<feColorMatrix
id="feColorMatrix24"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix26"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1769">
<feColorMatrix
id="feColorMatrix29"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix31"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1775">
<feColorMatrix
id="feColorMatrix34"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix36"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1781">
<feColorMatrix
id="feColorMatrix39"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix41"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1787">
<feColorMatrix
id="feColorMatrix44"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix46"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1793">
<feColorMatrix
id="feColorMatrix49"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix51"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1799">
<feColorMatrix
id="feColorMatrix54"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix56"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1805">
<feColorMatrix
id="feColorMatrix59"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix61"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1811">
<feColorMatrix
id="feColorMatrix64"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix66"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1817">
<feColorMatrix
id="feColorMatrix69"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix71"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1823">
<feColorMatrix
id="feColorMatrix74"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix76"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1829">
<feColorMatrix
id="feColorMatrix79"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix81"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1835">
<feColorMatrix
id="feColorMatrix84"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix86"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1841">
<feColorMatrix
id="feColorMatrix89"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix91"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1847">
<feColorMatrix
id="feColorMatrix94"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix96"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1853">
<feColorMatrix
id="feColorMatrix99"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix101"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1859">
<feColorMatrix
id="feColorMatrix104"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix106"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1865">
<feColorMatrix
id="feColorMatrix109"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix111"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1871">
<feColorMatrix
id="feColorMatrix114"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix116"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1877">
<feColorMatrix
id="feColorMatrix119"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix121"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter1883">
<feColorMatrix
id="feColorMatrix124"
values="180"
type="hueRotate"
result="color1" />
<feColorMatrix
id="feColorMatrix126"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 -0.21 -0.72 -0.07 2 0 "
result="color2" />
</filter>
</defs>
<image
id="image131"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0CAAAAADuvYBWAAAACXBIWXMAAC4jAAAuIwF4pT92AAAA B3RJTUUH4wcHCzE55v5HfgAAABl0RVh0Q29tbWVudABDcmVhdGVkIHdpdGggR0lNUFeBDhcAAANS SURBVHja7dTBCcJAFEXRjEQUIZBFXERrELSlVGwPQorQjUWoj2E8t4FHOPNTlu733QIbl8DGHNjY BjY2nf4u6NAFXdAFXdAFXdAFXdAFXdAFXdAFXdAFXdChC7qgC7qgC7qgC7qgC7qgC7qgC7qgC7qg Qxd0QRd0QRd0QRd0QRd0QRd0QRd0QRd0QYcu6IIu6IIu6IIu6IIu6IIu6IIu6IIu6IIOXdAFXdAF XdAFXdAFXdAFXdAFXdAFXdAFXdChC7qgC7qgC7qgC7qgC7qg67v1a2DkGtgYAxtDI1fo0v3eBV3Q BV3QBV3QBV3QBV3QBV3QBV3QBV3QoQu6oAu6oAu6oAu6oAu6oAu6oAu6oAu6oEMXdEEXdEEXdEEX dEEXdEEXdEEXdEEXdEGHLuiCLuiCLuiCLuiCLuiCLuiCLuiCLuiCDl3QBV3QBV3QBV3QBV3QBV3Q BV3QBV3QBV3QoQu6oAu6oAu6oAu6oAu6oAu6Pqx/BEbugY1nYOMc2JhcuqALuqALuqALOnRBF3RB F3RBF3RBF3RBF3RBF3RBF3RBF3Togi7ogi7ogi7ogi7ogi7ogi7ogi7ogi7ogg5d0AVd0AVd0AVd 0AVd0AVd0AVd0AVd0AUduqALuqALuqALuqALuqALuqALuqALuqALOnRBF3RBF3RBF3RBF3RBF3RB F3RBF3RBF3Togi7ogi7ogq76K4fAyCmwcWzkO2aXLuiCLuiCLuiCDl3QBV3QBV3QBV3QBV3QBV3Q BV3QBV3QBR26oAu6oAu6oAu6oAu6oAu6oAu6oAu6oAu6oEMXdEEXdEEXdEEXdEEXdEEXdEEXdEEX dEGHLuiCLuiCLuiCLuiCLuiCLuiCLuiCLuiCDl3QBV3QBV3QBV3QBV3QBV3QBV3QBV3QBR26oAu6 oAu6oKv+yr6Rl/UKbOwCG5NLF3RBF3RBF3RBhy7ogi7ogi7ogi7ogi7ogi7ogi7ogi7ogg5d0AVd 0AVd0AVd0AVd0AVd0AVd0AVd0AVd0KELuqALuqALuqALuqALuqALuqALuqALuqBDF3RBF3RBF3RB F3RBF3RBF3RBF3RBF3RBhy7ogi7ogi7ogi7ogi7ogi7ogi7ogi7ogg5d0AVd0AVd0FV/bwJGCmXI kFF/AAAAAElFTkSuQmCC "
preserveAspectRatio="none"
stroke-width=".32"
image-rendering="optimizeSpeed"
height="500"
width="500" />
<g
id="g1579">
<rect
style="fill:#626262"
y="0"
x="0"
id="rect133"
height="100"
width="100" />
<rect
style="fill:#939393"
y="0"
id="rect135"
height="100"
width="100"
x="100" />
<rect
style="fill:#c0c0c0"
y="0"
id="rect137"
height="100"
width="100"
x="200" />
<rect
style="fill:#d9d9d9"
y="0"
id="rect139"
height="100"
width="100"
x="300" />
<rect
style="fill:#dedede"
y="0"
id="rect141"
height="100"
width="100"
x="400" />
<rect
style="fill:#484848"
x="0"
id="rect143"
height="100"
width="100"
y="100" />
<rect
style="fill:#929292"
id="rect145"
height="100"
width="100"
y="100"
x="100" />
<rect
style="fill:#d0d0d0"
id="rect147"
height="100"
width="100"
y="100"
x="200" />
<rect
style="fill:#e6e6e6"
id="rect149"
height="100"
width="100"
y="100"
x="300" />
<rect
style="fill:#e8e8e8"
id="rect151"
height="100"
width="100"
y="100"
x="400" />
<rect
style="fill:#2b2b2b"
x="0"
id="rect153"
height="100"
width="100"
y="200" />
<rect
style="fill:#626262"
id="rect155"
height="100"
width="100"
y="200"
x="100" />
<rect
style="fill:#8c8c8c"
id="rect157"
height="100"
width="100"
y="200"
x="200" />
<rect
style="fill:#a7a7a7"
id="rect159"
height="100"
width="100"
y="200"
x="300" />
<rect
style="fill:#bbbbbb"
id="rect161"
height="100"
width="100"
y="200"
x="400" />
<rect
style="fill:#0a0a0a"
x="0"
id="rect163"
height="100"
width="100"
y="300" />
<rect
style="fill:#242424"
id="rect165"
height="100"
width="100"
y="300"
x="100" />
<rect
style="fill:#393939"
id="rect167"
height="100"
width="100"
y="300"
x="200" />
<rect
style="fill:#535353"
id="rect169"
height="100"
width="100"
y="300"
x="300" />
<rect
style="fill:#6c6c6c"
id="rect171"
height="100"
width="100"
y="300"
x="400" />
<rect
style="fill:#080808"
x="0"
id="rect173"
height="100"
width="100"
y="400" />
<rect
style="fill:#0a0a0a"
id="rect175"
height="100"
width="100"
y="400"
x="100" />
<rect
style="fill:#050505"
id="rect177"
height="100"
width="100"
y="400"
x="200" />
<rect
style="fill:#0c0c0c"
id="rect179"
height="100"
width="100"
y="400"
x="300" />
<rect
style="fill:#202020"
id="rect181"
height="100"
width="100"
y="400"
x="400" />
</g>
<g
id="g361">
<flowRoot
font-size="53.333px"
font-weight="500"
letter-spacing="0px"
word-spacing="0px"
style="font-weight:500;font-size:53.33300018px;line-height:1.25;font-family:'Iosevka sbruder';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000"
xml:space="preserve"
id="flowRoot189"><flowRegion
font-size="53.333px"
font-weight="500"
style="font-weight:500;font-size:53.33300018px;font-family:'Iosevka sbruder';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;writing-mode:lr-tb"
id="flowRegion185"><rect
y="73.093002"
width="33.897999"
height="63.558998"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="rect183"
x="0" /></flowRegion><flowPara
id="flowPara187" /></flowRoot> <g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#626262;filter:url(#filter1883)"
aria-label="98"
id="g195">
<path
d="m 36.453,70.027 q -1.8667,0 -3.6267,-0.58667 -1.76,-0.58667 -3.1467,-1.8133 -1.3333,-1.28 -2.24,-2.88 -0.85333,-1.6533 -1.3333,-3.4133 l 4.48,-1.9733 q 0.26667,1.4933 0.96,2.9333 0.69333,1.3867 1.9733,2.3467 1.3333,0.90667 2.9333,0.90667 1.5467,0 2.8267,-1.0133 1.3333,-1.0133 1.9733,-2.4533 0.64,-1.4933 0.90667,-3.04 0.26667,-1.6 0.26667,-3.1467 v -3.2 l -0.16,0.21333 q -1.0133,1.3333 -2.6133,2.0267 -1.5467,0.69333 -3.2,0.69333 -2.24,0 -4.3733,-0.90667 -2.1333,-0.96 -3.5733,-2.7733 -1.3867,-1.8133 -1.9733,-4 -0.58667,-2.24 -0.58667,-4.48 v -1.3333 q 0,-2.2933 0.58667,-4.5333 0.58667,-2.24 2.0267,-4.0533 1.4933,-1.8133 3.6267,-2.6667 2.1867,-0.90667 4.48,-0.90667 1.8667,0 3.68,0.64 1.8133,0.58667 3.2,1.8667 1.44,1.28 2.2933,2.9867 0.8533,1.7067 1.1733,3.5733 0.37333,1.8667 0.37333,3.7333 v 13.12 q 0,2.0267 -0.32,4.0533 -0.32,1.9733 -1.1733,3.84 -0.8,1.8133 -2.24,3.3067 -1.3867,1.4933 -3.3067,2.24 -1.92,0.69333 -3.8933,0.69333 z m 0.16,-18.88 q 1.3333,0 2.56,-0.64 1.2267,-0.69333 1.92,-1.8667 0.74667,-1.1733 1.0133,-2.5067 0.32,-1.3333 0.32,-2.6667 v -0.69333 q 0,-1.3867 -0.26667,-2.7733 -0.26667,-1.44 -0.96,-2.72 -0.64,-1.28 -1.92,-2.0267 -1.2267,-0.8 -2.6667,-0.8 -1.3333,0 -2.56,0.69333 -1.1733,0.64 -1.92,1.8133 -0.69333,1.1733 -0.96,2.5067 -0.26667,1.3333 -0.26667,2.6667 v 1.3333 q 0,1.3333 0.26667,2.6667 0.26667,1.28 0.96,2.4533 0.69333,1.1733 1.92,1.8667 1.2267,0.69333 2.56,0.69333 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path191" />
<path
d="m 63.333,70.027 q -2.08,0 -4.1067,-0.58667 -1.9733,-0.64 -3.52,-2.0267 -1.5467,-1.44 -2.3467,-3.36 -0.74667,-1.9733 -0.74667,-4.0533 0,-2.6667 1.3333,-5.12 1.3333,-2.4533 3.52,-4.1067 0.85333,-0.64 1.76,-1.28 -0.48,-0.32 -0.90667,-0.64 -2.1333,-1.6533 -3.52,-4.1067 -1.3333,-2.4533 -1.3333,-5.12 0,-1.9733 0.69333,-3.7867 0.69333,-1.8667 2.08,-3.2533 1.3867,-1.3867 3.2533,-1.9733 1.92,-0.64 3.84,-0.64 1.92,0 3.7867,0.64 1.92,0.58667 3.3067,1.9733 1.3867,1.3867 2.08,3.2533 0.69333,1.8133 0.69333,3.7867 0,2.6667 -1.3867,5.12 -1.3333,2.4533 -3.4667,4.1067 -0.42667,0.32 -0.90667,0.64 0.90667,0.64 1.76,1.28 2.1867,1.6533 3.52,4.1067 1.3333,2.4533 1.3333,5.12 0,2.08 -0.8,4.0533 -0.74667,1.92 -2.2933,3.36 -1.5467,1.3867 -3.5733,2.0267 -1.9733,0.58667 -4.0533,0.58667 z m 0,-4.48 q 1.4933,0 2.88,-0.64 1.3867,-0.64 2.1333,-1.9733 0.74667,-1.3867 0.74667,-2.88 0,-2.72 -1.9733,-4.8 -1.7067,-1.92 -3.7867,-3.1467 -2.08,1.2267 -3.7867,3.1467 -1.9733,2.08 -1.9733,4.8 0,1.4933 0.74667,2.88 0.74667,1.3333 2.1333,1.9733 1.38663,0.64 2.88,0.64 z m 0,-18.613 q 1.6,-1.0667 2.9333,-2.56 1.9733,-2.08 1.9733,-4.8 0,-1.3333 -0.58667,-2.56 -0.58667,-1.28 -1.8133,-1.92 -1.1733,-0.64 -2.5067,-0.64 -1.3334,0 -2.56,0.64 -1.1733,0.64 -1.76,1.92 -0.58667,1.2267 -0.58667,2.56 0,2.72 1.9733,4.8 1.3333,1.4933 2.9333,2.56 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path193" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#939393;filter:url(#filter1877)"
aria-label="147"
id="g203">
<path
d="M 122.13,69.6 V 36.107 l -5.9733,4.16 -2.8267,-3.68 8.8,-6.1867 h 5.0133 v 39.2 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path197" />
<path
d="M 151.41,69.6 V 58.4 H 138.983 V 53.92 L 150.29,30.4 h 6.08 v 23.52 h 3.6267 V 58.4 H 156.37 v 11.2 z m -7.52,-15.68 h 7.52 V 38.347 Z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path199" />
<path
d="M 169.17,69.6 181.383,34.88 H 166.076 V 30.4 h 20.587 v 4.48 l -12.16,34.72 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path201" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#c0c0c0;filter:url(#filter1871)"
aria-label="192"
id="g211">
<path
d="M 222.03,69.6 V 36.107 l -5.9733,4.16 -2.8267,-3.68 8.8,-6.1867 h 5.0133 v 39.2 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path205" />
<path
d="m 249.39,70.027 q -1.8667,0 -3.6267,-0.58667 -1.76,-0.58667 -3.1467,-1.8133 -1.3333,-1.28 -2.24,-2.88 -0.85333,-1.6533 -1.3333,-3.4133 l 4.48,-1.9733 q 0.26666,1.4933 0.96,2.9333 0.69333,1.3867 1.9733,2.3467 1.3333,0.90667 2.9333,0.90667 1.5467,0 2.8267,-1.0133 1.3333,-1.0133 1.9733,-2.4533 0.64,-1.4933 0.90667,-3.04 0.26667,-1.6 0.26667,-3.1467 v -3.2 l -0.16,0.21333 q -1.0133,1.3333 -2.6133,2.0267 -1.5467,0.69333 -3.2,0.69333 -2.24,0 -4.3733,-0.90667 -2.1333,-0.96 -3.5733,-2.7733 -1.3867,-1.8133 -1.9733,-4 -0.58666,-2.24 -0.58666,-4.48 v -1.3333 q 0,-2.2933 0.58666,-4.5333 0.58667,-2.24 2.0267,-4.0533 1.4933,-1.8133 3.6267,-2.6667 2.1867,-0.90667 4.48,-0.90667 1.8667,0 3.68,0.64 1.8133,0.58667 3.2,1.8667 1.44,1.28 2.2933,2.9867 0.85333,1.7067 1.1733,3.5733 0.37333,1.8667 0.37333,3.7333 v 13.12 q 0,2.0267 -0.32,4.0533 -0.32,1.9733 -1.1733,3.84 -0.8,1.8133 -2.24,3.3067 -1.3867,1.4933 -3.3067,2.24 -1.92,0.69333 -3.8933,0.69333 z m 0.16,-18.88 q 1.3333,0 2.56,-0.64 1.2267,-0.69333 1.92,-1.8667 0.74667,-1.1733 1.0133,-2.5067 0.32,-1.3333 0.32,-2.6667 v -0.69333 q 0,-1.3867 -0.26667,-2.7733 -0.26667,-1.44 -0.96,-2.72 -0.64,-1.28 -1.92,-2.0267 -1.2267,-0.8 -2.6667,-0.8 -1.3333,0 -2.56,0.69333 -1.1733,0.64 -1.92,1.8133 -0.69333,1.1733 -0.96,2.5067 -0.26666,1.3333 -0.26666,2.6667 v 1.3333 q 0,1.3333 0.26666,2.6667 0.26667,1.28 0.96,2.4533 0.69334,1.1733 1.92,1.8667 1.2267,0.69333 2.56,0.69333 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path207" />
<path
d="m 265.97,69.6 v -0.05333 q 0,-2.88 0.37333,-5.76 0.37333,-2.88 1.76,-5.3867 1.44,-2.56 3.52,-4.5333 2.1333,-2.0267 4.3733,-3.7867 2.24,-1.8133 4,-4.2133 1.8133,-2.4533 1.8133,-5.3333 0,-1.5467 -0.64,-2.9867 -0.64,-1.4933 -2.08,-2.2933 -1.3867,-0.8 -2.9333,-0.8 -1.3867,0 -2.6667,0.64 -1.28,0.64 -2.0267,1.92 -0.69333,1.2267 -0.90667,2.6133 l -4.8533,-0.96 q 0.26667,-1.8667 1.12,-3.52 0.90667,-1.7067 2.3467,-2.88 1.4933,-1.2267 3.3067,-1.76 1.8133,-0.53333 3.68,-0.53333 2.08,0 4.1067,0.69333 2.0267,0.64 3.52,2.1867 1.5467,1.5467 2.24,3.5733 0.74667,1.9733 0.74667,4.1067 0,2.8267 -1.3867,5.4933 -1.3333,2.6133 -3.4133,4.5867 -2.0267,1.9733 -4.2133,3.84 -2.1867,1.8667 -3.9467,4.2133 -1.7067,2.3467 -2.2933,5.1733 -0.10666,0.64 -0.21333,1.28 h 15.253 v 4.48 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path209" />
</g>
<g
transform="translate(5.1854,-3e-6)"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#d9d9d9;filter:url(#filter1865)"
aria-label="217"
id="g219">
<path
d="m 307.99,69.813 v -0.05333 q 0,-2.88 0.37333,-5.76 0.37333,-2.88 1.76,-5.3867 1.44,-2.56 3.52,-4.5333 2.1333,-2.0267 4.3733,-3.7867 2.24,-1.8133 4,-4.2133 1.8133,-2.4533 1.8133,-5.3333 0,-1.5467 -0.64,-2.9867 -0.64,-1.4933 -2.08,-2.2933 -1.3867,-0.8 -2.9333,-0.8 -1.3867,0 -2.6667,0.64 -1.28,0.64 -2.0267,1.92 -0.69333,1.2267 -0.90667,2.6133 l -4.8533,-0.96 q 0.26667,-1.8667 1.12,-3.52 0.90667,-1.7067 2.3467,-2.88 1.4933,-1.2267 3.3067,-1.76 1.8133,-0.53333 3.68,-0.53333 2.08,0 4.1067,0.69333 2.0267,0.64 3.52,2.1867 1.5467,1.5467 2.24,3.5733 0.74667,1.9733 0.74667,4.1067 0,2.8267 -1.3867,5.4933 -1.3333,2.6133 -3.4133,4.5867 -2.0267,1.9733 -4.2133,3.84 -2.1867,1.8667 -3.9467,4.2133 -1.7067,2.3467 -2.2933,5.1733 -0.10666,0.64 -0.21333,1.28 h 15.253 v 4.48 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path213" />
<path
d="M 344.04,69.813 V 36.32 l -5.9733,4.16 -2.8267,-3.68 8.8,-6.1867 h 5.0133 v 39.2 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path215" />
<path
d="m 364.41,69.813 12.213,-34.72 h -15.307 v -4.48 h 20.587 v 4.48 l -12.16,34.72 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path217" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#dedede;filter:url(#filter1859)"
aria-label="222"
id="g227">
<path
d="m 413.07,69.813 v -0.05333 q 0,-2.88 0.37334,-5.76 0.37333,-2.88 1.76,-5.3867 1.44,-2.56 3.52,-4.5333 2.1333,-2.0267 4.3733,-3.7867 2.24,-1.8133 4,-4.2133 1.8133,-2.4533 1.8133,-5.3333 0,-1.5467 -0.64,-2.9867 -0.64,-1.4933 -2.08,-2.2933 -1.3867,-0.8 -2.9333,-0.8 -1.3867,0 -2.6667,0.64 -1.28,0.64 -2.0267,1.92 -0.69334,1.2267 -0.90667,2.6133 l -4.8533,-0.96 q 0.26666,-1.8667 1.12,-3.52 0.90666,-1.7067 2.3467,-2.88 1.4933,-1.2267 3.3067,-1.76 1.8133,-0.53333 3.68,-0.53333 2.08,0 4.1067,0.69333 2.0267,0.64 3.52,2.1867 1.5467,1.5467 2.24,3.5733 0.74666,1.9733 0.74666,4.1067 0,2.8267 -1.3867,5.4933 -1.3333,2.6133 -3.4133,4.5867 -2.0267,1.9733 -4.2133,3.84 -2.1867,1.8667 -3.9467,4.2133 -1.7067,2.3467 -2.2933,5.1733 -0.10667,0.64 -0.21333,1.28 h 15.253 v 4.48 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path221" />
<path
d="m 439.73,69.813 v -0.05333 q 0,-2.88 0.37333,-5.76 0.37333,-2.88 1.76,-5.3867 1.44,-2.56 3.52,-4.5333 2.1333,-2.0267 4.3733,-3.7867 2.24,-1.8133 4,-4.2133 1.8133,-2.4533 1.8133,-5.3333 0,-1.5467 -0.64,-2.9867 -0.64,-1.4933 -2.08,-2.2933 -1.3867,-0.8 -2.9333,-0.8 -1.3867,0 -2.6667,0.64 -1.28,0.64 -2.0267,1.92 -0.69333,1.2267 -0.90667,2.6133 l -4.8533,-0.96 q 0.26667,-1.8667 1.12,-3.52 0.90667,-1.7067 2.3467,-2.88 1.4933,-1.2267 3.3067,-1.76 1.8133,-0.53333 3.68,-0.53333 2.08,0 4.1067,0.69333 2.0267,0.64 3.52,2.1867 1.5467,1.5467 2.24,3.5733 0.74667,1.9733 0.74667,4.1067 0,2.8267 -1.3867,5.4933 -1.3333,2.6133 -3.4133,4.5867 -2.0267,1.9733 -4.2133,3.84 -2.1867,1.8667 -3.9467,4.2133 -1.7067,2.3467 -2.2933,5.1733 -0.10666,0.64 -0.21333,1.28 h 15.253 v 4.48 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path223" />
<path
d="m 466.4,69.813 v -0.05333 q 0,-2.88 0.37334,-5.76 0.37333,-2.88 1.76,-5.3867 1.44,-2.56 3.52,-4.5333 2.1333,-2.0267 4.3733,-3.7867 2.24,-1.8133 4,-4.2133 1.8133,-2.4533 1.8133,-5.3333 0,-1.5467 -0.64,-2.9867 -0.64,-1.4933 -2.08,-2.2933 -1.3867,-0.8 -2.9333,-0.8 -1.3867,0 -2.6667,0.64 -1.28,0.64 -2.0267,1.92 -0.69334,1.2267 -0.90667,2.6133 l -4.8533,-0.96 q 0.26666,-1.8667 1.12,-3.52 0.90666,-1.7067 2.3467,-2.88 1.4933,-1.2267 3.3067,-1.76 1.8133,-0.53333 3.68,-0.53333 2.08,0 4.1067,0.69333 2.0267,0.64 3.52,2.1867 1.5467,1.5467 2.24,3.5733 0.74666,1.9733 0.74666,4.1067 0,2.8267 -1.3867,5.4933 -1.3333,2.6133 -3.4133,4.5867 -2.0267,1.9733 -4.2133,3.84 -2.1867,1.8667 -3.9467,4.2133 -1.7067,2.3467 -2.2933,5.1733 -0.10667,0.64 -0.21333,1.28 h 15.253 v 4.48 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path225" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#484848;filter:url(#filter1853)"
aria-label="72"
id="g233">
<path
d="M 29.36,169.22 41.573,134.5 H 26.266 v -4.48 h 20.587 v 4.48 l -12.16,34.72 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path229" />
<path
d="m 52.933,169.22 v -0.0533 q 0,-2.88 0.37333,-5.76 0.37333,-2.88 1.76,-5.3867 1.44,-2.56 3.52,-4.5333 2.1333,-2.0267 4.3733,-3.7867 2.24,-1.8133 4,-4.2133 1.8133,-2.4533 1.8133,-5.3333 0,-1.5467 -0.64,-2.9867 -0.64,-1.4933 -2.08,-2.2933 -1.3867,-0.8 -2.9333,-0.8 -1.3867,0 -2.6667,0.64 -1.28,0.64 -2.0267,1.92 -0.69333,1.2267 -0.90667,2.6133 l -4.8533,-0.96 q 0.26667,-1.8667 1.12,-3.52 0.90667,-1.7067 2.3467,-2.88 1.4933,-1.2267 3.3067,-1.76 1.8133,-0.53334 3.68,-0.53334 2.08,0 4.1067,0.69334 2.0267,0.64 3.52,2.1867 1.5467,1.5467 2.24,3.5733 0.74667,1.9733 0.74667,4.1067 0,2.8267 -1.3867,5.4933 -1.3333,2.6133 -3.4133,4.5867 -2.0267,1.9733 -4.2133,3.84 -2.1867,1.8667 -3.9467,4.2133 -1.7067,2.3467 -2.2933,5.1733 -0.10667,0.64 -0.21333,1.28 h 15.253 v 4.48 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path231" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#929292;filter:url(#filter1847)"
aria-label="146"
id="g241">
<path
d="m 121.92,169.39 v -33.493 l -5.9733,4.16 -2.8267,-3.68 8.8,-6.1867 h 5.0133 v 39.2 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path235" />
<path
d="m 151.2,169.39 v -11.2 h -12.427 v -4.48 l 11.307,-23.52 h 6.08 v 23.52 h 3.6267 v 4.48 H 156.16 v 11.2 z m -7.52,-15.68 h 7.52 v -15.573 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path237" />
<path
d="m 176.16,169.81 q -2.2933,0 -4.48,-0.85333 -2.1333,-0.90667 -3.6267,-2.72 -1.44,-1.8667 -2.0267,-4.1067 -0.58666,-2.24 -0.58666,-4.48 0,-4.2667 0.69333,-8.4267 0.69333,-4.2133 2.4533,-8.0533 1.8133,-3.8933 5.0133,-6.7733 3.2533,-2.88 7.2533,-4.2133 l 1.6,4.2667 q -8.1067,3.0933 -10.773,12.533 0.64,-0.48 1.44,-0.85333 1.6,-0.69333 3.2533,-0.69333 2.24,0 4.3733,0.96 2.1333,0.90666 3.52,2.72 1.44,1.8133 2.0267,4.0533 0.58667,2.1867 0.58667,4.48 0,2.24 -0.58667,4.48 -0.58667,2.24 -2.08,4.1067 -1.44,1.8133 -3.6267,2.72 -2.1333,0.85333 -4.4267,0.85333 z m 0,-4.48 q 1.3333,0 2.56,-0.64 1.2267,-0.69333 1.92,-1.8667 0.69333,-1.1733 0.96,-2.5067 0.32,-1.3333 0.32,-2.6667 0,-1.3867 -0.26667,-2.6667 -0.26667,-1.3333 -0.96,-2.5067 -0.69333,-1.2267 -1.92,-1.8667 -1.2267,-0.69333 -2.56,-0.69333 -1.3333,0 -2.56,0.69333 -1.2267,0.64 -1.9733,1.8133 -0.69334,1.1733 -1.0133,2.5067 -0.26666,1.3333 -0.26666,2.72 0,1.3333 0.26666,2.6667 0.32,1.3333 1.0133,2.5067 0.69333,1.1733 1.92,1.8667 1.2267,0.64 2.56,0.64 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path239" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#d0d0d0;filter:url(#filter1841)"
aria-label="208"
id="g249">
<path
d="m 212.96,169.6 v -0.0533 q 0,-2.88 0.37333,-5.76 0.37333,-2.88 1.76,-5.3867 1.44,-2.56 3.52,-4.5333 2.1333,-2.0267 4.3733,-3.7867 2.24,-1.8133 4,-4.2133 1.8133,-2.4533 1.8133,-5.3333 0,-1.5467 -0.64,-2.9867 -0.64,-1.4933 -2.08,-2.2933 -1.3867,-0.8 -2.9333,-0.8 -1.3867,0 -2.6667,0.64 -1.28,0.64 -2.0267,1.92 -0.69333,1.2267 -0.90667,2.6133 l -4.8533,-0.96 q 0.26667,-1.8667 1.12,-3.52 0.90667,-1.7067 2.3467,-2.88 1.4933,-1.2267 3.3067,-1.76 1.8133,-0.53333 3.68,-0.53333 2.08,0 4.1067,0.69333 2.0267,0.64 3.52,2.1867 1.5467,1.5467 2.24,3.5733 0.74667,1.9733 0.74667,4.1067 0,2.8267 -1.3867,5.4933 -1.3333,2.6133 -3.4133,4.5867 -2.0267,1.9733 -4.2133,3.84 -2.1867,1.8667 -3.9467,4.2133 -1.7067,2.3467 -2.2933,5.1733 -0.10666,0.64 -0.21333,1.28 h 15.253 v 4.48 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path243" />
<path
d="m 249.92,170.03 q -2.2933,0 -4.48,-0.85333 -2.1333,-0.90667 -3.6267,-2.72 -1.44,-1.8133 -2.0267,-4.0533 -0.58666,-2.24 -0.58666,-4.5333 v -15.733 q 0,-2.2933 0.58666,-4.5333 0.58667,-2.24 2.0267,-4.0533 1.4933,-1.8133 3.6267,-2.6667 2.1867,-0.90667 4.48,-0.90667 2.2933,0 4.4267,0.90667 2.1867,0.85333 3.6267,2.6667 1.4933,1.8133 2.08,4.0533 0.5867,2.24 0.58667,4.5333 v 15.733 q 0,2.2933 -0.58667,4.5333 -0.58667,2.24 -2.08,4.0533 -1.44,1.8133 -3.6267,2.72 -2.1333,0.85333 -4.4267,0.85333 z m 0,-4.48 q 1.3333,0 2.56,-0.64 1.2267,-0.69333 1.92,-1.8667 0.69333,-1.1733 0.96,-2.5067 0.32,-1.3333 0.32,-2.6667 v -11.84 l -11.2,14.72 q 0.32,1.2267 0.96,2.2933 0.69333,1.1733 1.92,1.8667 1.2267,0.64 2.56,0.64 z m -5.76,-11.573 11.2,-14.72 q -0.32,-1.2267 -0.96,-2.2933 -0.69334,-1.1733 -1.92,-1.8133 -1.2267,-0.69333 -2.56,-0.69333 -1.3333,0 -2.56,0.69333 -1.2267,0.64 -1.92,1.8133 -0.69334,1.1733 -1.0133,2.5067 -0.26666,1.3333 -0.26666,2.6667 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path245" />
<path
d="m 276.59,170.03 q -2.08,0 -4.1067,-0.58666 -1.9733,-0.64 -3.52,-2.0267 -1.5467,-1.44 -2.3467,-3.36 -0.74667,-1.9733 -0.74667,-4.0533 0,-2.6667 1.3333,-5.12 1.3333,-2.4533 3.52,-4.1067 0.85333,-0.64 1.76,-1.28 -0.48,-0.32 -0.90667,-0.64 -2.1333,-1.6533 -3.52,-4.1067 -1.3333,-2.4533 -1.3333,-5.12 0,-1.9733 0.69333,-3.7867 0.69333,-1.8667 2.08,-3.2533 1.3867,-1.3867 3.2533,-1.9733 1.92,-0.64 3.84,-0.64 1.92,0 3.7867,0.64 1.92,0.58667 3.3067,1.9733 1.3867,1.3867 2.08,3.2533 0.69333,1.8133 0.69333,3.7867 0,2.6667 -1.3867,5.12 -1.3333,2.4533 -3.4667,4.1067 -0.42667,0.32 -0.90667,0.64 0.90667,0.64 1.76,1.28 2.1867,1.6533 3.52,4.1067 1.3333,2.4533 1.3333,5.12 0,2.08 -0.8,4.0533 -0.74666,1.92 -2.2933,3.36 -1.5467,1.3867 -3.5733,2.0267 -1.9733,0.58666 -4.0533,0.58666 z m 0,-4.48 q 1.4933,0 2.88,-0.64 1.3867,-0.64 2.1333,-1.9733 0.74666,-1.3867 0.74666,-2.88 0,-2.72 -1.9733,-4.8 -1.7067,-1.92 -3.7867,-3.1467 -2.08,1.2267 -3.7867,3.1467 -1.9733,2.08 -1.9733,4.8 0,1.4933 0.74667,2.88 0.74667,1.3333 2.1333,1.9733 1.3867,0.64 2.88,0.64 z m 0,-18.613 q 1.6,-1.0667 2.9333,-2.56 1.9733,-2.08 1.9733,-4.8 0,-1.3333 -0.58667,-2.56 -0.58666,-1.28 -1.8133,-1.92 -1.1733,-0.64 -2.5067,-0.64 -1.3333,0 -2.56,0.64 -1.1733,0.64 -1.76,1.92 -0.58666,1.2267 -0.58666,2.56 0,2.72 1.9733,4.8 1.3333,1.4933 2.9333,2.56 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path247" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#e6e6e6;filter:url(#filter1835)"
aria-label="230"
id="g257">
<path
d="m 312.96,169.6 v -0.0533 q 0,-2.88 0.37334,-5.76 0.37333,-2.88 1.76,-5.3867 1.44,-2.56 3.52,-4.5333 2.1333,-2.0267 4.3733,-3.7867 2.24,-1.8133 4,-4.2133 1.8133,-2.4533 1.8133,-5.3333 0,-1.5467 -0.64,-2.9867 -0.64,-1.4933 -2.08,-2.2933 -1.3867,-0.8 -2.9333,-0.8 -1.3867,0 -2.6667,0.64 -1.28,0.64 -2.0267,1.92 -0.69334,1.2267 -0.90667,2.6133 l -4.8533,-0.96 q 0.26666,-1.8667 1.12,-3.52 0.90666,-1.7067 2.3467,-2.88 1.4933,-1.2267 3.3067,-1.76 1.8133,-0.53333 3.68,-0.53333 2.08,0 4.1067,0.69333 2.0267,0.64 3.52,2.1867 1.5467,1.5467 2.24,3.5733 0.74666,1.9733 0.74666,4.1067 0,2.8267 -1.3867,5.4933 -1.3333,2.6133 -3.4133,4.5867 -2.0267,1.9733 -4.2133,3.84 -2.1866,1.8667 -3.9467,4.2133 -1.7067,2.3467 -2.2933,5.1733 -0.10667,0.64 -0.21333,1.28 h 15.253 v 4.48 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path251" />
<path
d="m 349.81,169.6 q -2.4,0 -4.6933,-0.90667 -2.2933,-0.96 -3.7867,-2.9867 -1.44,-2.0267 -1.9733,-4.3733 l 4.7467,-1.3867 q 0.26667,1.3867 1.0133,2.6133 0.74667,1.2267 2.0267,1.92 1.28,0.64 2.6667,0.64 1.3333,0 2.56,-0.58667 1.2267,-0.58667 1.9733,-1.7067 0.7466,-1.12003 1.0133,-2.4 0.32,-1.3333 0.32,-2.6133 0,-1.3333 -0.32,-2.6133 -0.26666,-1.28 -1.0133,-2.3467 -0.74667,-1.12 -1.9733,-1.7067 -1.1733,-0.58666 -2.4533,-0.58666 h -5.12 v -4.48 l 8.9067,-11.2 h -14.08 v -4.48 h 20.053 v 4.48 l -8.96,11.2 q 1.8133,0.16 3.5733,0.8 2.1333,0.85333 3.6267,2.6133 1.4933,1.7067 2.08,3.8933 0.64,2.1867 0.64,4.4267 0,2.24 -0.64,4.48 -0.58666,2.1867 -2.1333,3.9467 -1.4933,1.7067 -3.6267,2.56 -2.1333,0.8 -4.4267,0.8 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path253" />
<path
d="m 376.59,170.03 q -2.2933,0 -4.48,-0.85333 -2.1333,-0.90667 -3.6267,-2.72 -1.44,-1.8133 -2.0267,-4.0533 -0.58667,-2.24 -0.58667,-4.5333 v -15.733 q 0,-2.2933 0.58667,-4.5333 0.58666,-2.24 2.0267,-4.0533 1.4933,-1.8133 3.6267,-2.6667 2.1867,-0.90667 4.48,-0.90667 2.2933,0 4.4267,0.90667 2.1867,0.85333 3.6267,2.6667 1.4933,1.8133 2.08,4.0533 0.5867,2.24 0.58667,4.5333 v 15.733 q 0,2.2933 -0.58667,4.5333 -0.58667,2.24 -2.08,4.0533 -1.44,1.8133 -3.6267,2.72 -2.1333,0.85333 -4.4267,0.85333 z m 0,-4.48 q 1.3333,0 2.56,-0.64 1.2267,-0.69333 1.92,-1.8667 0.69333,-1.1733 0.96,-2.5067 0.32,-1.3333 0.32,-2.6667 v -11.84 l -11.2,14.72 q 0.32,1.2267 0.96,2.2933 0.69333,1.1733 1.92,1.8667 1.2267,0.64 2.56,0.64 z m -5.76,-11.573 11.2,-14.72 q -0.32,-1.2267 -0.96,-2.2933 -0.69333,-1.1733 -1.92,-1.8133 -1.2267,-0.69333 -2.56,-0.69333 -1.3333,0 -2.56,0.69333 -1.2267,0.64 -1.92,1.8133 -0.69333,1.1733 -1.0133,2.5067 -0.26667,1.3333 -0.26667,2.6667 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path255" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#e8e8e8;filter:url(#filter1829)"
aria-label="232"
id="g265">
<path
d="m 413.07,169.81 v -0.0533 q 0,-2.88 0.37334,-5.76 0.37333,-2.88 1.76,-5.3867 1.44,-2.56 3.52,-4.5333 2.1333,-2.0267 4.3733,-3.7867 2.24,-1.8133 4,-4.2133 1.8133,-2.4533 1.8133,-5.3333 0,-1.5467 -0.64,-2.9867 -0.64,-1.4933 -2.08,-2.2933 -1.3867,-0.8 -2.9333,-0.8 -1.3867,0 -2.6667,0.64 -1.28,0.64 -2.0267,1.92 -0.69334,1.2267 -0.90667,2.6133 l -4.8533,-0.96 q 0.26666,-1.8667 1.12,-3.52 0.90666,-1.7067 2.3467,-2.88 1.4933,-1.2267 3.3067,-1.76 1.8133,-0.53334 3.68,-0.53334 2.08,0 4.1067,0.69334 2.0267,0.64 3.52,2.1867 1.5467,1.5467 2.24,3.5733 0.74666,1.9733 0.74666,4.1067 0,2.8267 -1.3867,5.4933 -1.3333,2.6133 -3.4133,4.5867 -2.0267,1.9733 -4.2133,3.84 -2.1867,1.8667 -3.9467,4.2133 -1.7067,2.3467 -2.2933,5.1733 -0.10667,0.64 -0.21333,1.28 h 15.253 v 4.48 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path259" />
<path
d="m 449.92,169.81 q -2.4,0 -4.6933,-0.90667 -2.2933,-0.96 -3.7867,-2.9867 -1.44,-2.0267 -1.9733,-4.3733 l 4.7467,-1.3867 q 0.26666,1.3867 1.0133,2.6133 0.74664,1.2266 2.0267,1.92 1.28,0.64 2.6667,0.64 1.3333,0 2.56,-0.58667 1.2267,-0.58666 1.9733,-1.7067 0.74666,-1.12 1.0133,-2.4 0.32,-1.3333 0.32,-2.6133 0,-1.3333 -0.32,-2.6133 -0.26667,-1.28 -1.0133,-2.3467 -0.74667,-1.12 -1.9733,-1.7067 -1.1733,-0.58667 -2.4533,-0.58667 h -5.12 v -4.48 l 8.9067,-11.2 h -14.08 v -4.48 h 20.053 v 4.48 l -8.96,11.2 q 1.8133,0.16 3.5733,0.8 2.1333,0.85333 3.6267,2.6133 1.4933,1.7067 2.08,3.8933 0.64,2.1867 0.64,4.4267 0,2.24 -0.64,4.48 -0.58667,2.1867 -2.1333,3.9467 -1.4933,1.7067 -3.6267,2.56 -2.1333,0.8 -4.4267,0.8 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path261" />
<path
d="m 466.4,169.81 v -0.0533 q 0,-2.88 0.37334,-5.76 0.37333,-2.88 1.76,-5.3867 1.44,-2.56 3.52,-4.5333 2.1333,-2.0267 4.3733,-3.7867 2.24,-1.8133 4,-4.2133 1.8133,-2.4533 1.8133,-5.3333 0,-1.5467 -0.64,-2.9867 -0.64,-1.4933 -2.08,-2.2933 -1.3867,-0.8 -2.9333,-0.8 -1.3867,0 -2.6667,0.64 -1.28,0.64 -2.0267,1.92 -0.69334,1.2267 -0.90667,2.6133 l -4.8533,-0.96 q 0.26666,-1.8667 1.12,-3.52 0.90666,-1.7067 2.3467,-2.88 1.4933,-1.2267 3.3067,-1.76 1.8133,-0.53334 3.68,-0.53334 2.08,0 4.1067,0.69334 2.0267,0.64 3.52,2.1867 1.5467,1.5467 2.24,3.5733 0.74666,1.9733 0.74666,4.1067 0,2.8267 -1.3867,5.4933 -1.3333,2.6133 -3.4133,4.5867 -2.0267,1.9733 -4.2133,3.84 -2.1867,1.8667 -3.9467,4.2133 -1.7067,2.3467 -2.2933,5.1733 -0.10667,0.64 -0.21333,1.28 h 15.253 v 4.48 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path263" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#2b2b2b;filter:url(#filter1823)"
aria-label="43"
id="g271">
<path
d="M 38.373,269.6 V 258.4 H 25.946 v -4.48 L 37.253,230.4 h 6.08 v 23.52 h 3.6267 v 4.48 H 43.333 v 11.2 z m -7.52,-15.68 h 7.52 v -15.573 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path267" />
<path
d="m 63.227,269.6 q -2.4,0 -4.6933,-0.90667 -2.2933,-0.96 -3.7867,-2.9867 -1.44,-2.0267 -1.9733,-4.3733 l 4.7467,-1.3867 q 0.26667,1.3867 1.0133,2.6133 0.74667,1.2267 2.0267,1.92 1.28,0.64 2.6667,0.64 1.3333,0 2.56,-0.58667 1.2267,-0.58667 1.9733,-1.7067 0.74667,-1.12 1.0133,-2.4 0.32,-1.3333 0.32,-2.6133 0,-1.3333 -0.32,-2.6133 -0.26667,-1.28 -1.0133,-2.3467 -0.74667,-1.12 -1.9733,-1.7067 -1.1733,-0.58666 -2.4533,-0.58666 h -5.12 v -4.48 l 8.9067,-11.2 h -14.08 v -4.48 h 20.053 v 4.48 l -8.96,11.2 q 1.8133,0.16 3.5733,0.8 2.1333,0.85333 3.6267,2.6133 1.4933,1.7067 2.08,3.8933 0.64,2.1867 0.64,4.4267 0,2.24 -0.64,4.48 -0.58667,2.1867 -2.1333,3.9467 -1.4933,1.7067 -3.6267,2.56 -2.1333,0.8 -4.4267,0.8 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path269" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#626262;filter:url(#filter1817)"
aria-label="98"
id="g277">
<path
d="m 136.45,270.03 q -1.8667,0 -3.6267,-0.58666 -1.76,-0.58667 -3.1467,-1.8133 -1.3333,-1.28 -2.24,-2.88 -0.85333,-1.6533 -1.3333,-3.4133 l 4.48,-1.9733 q 0.26666,1.4933 0.96,2.9333 0.69333,1.3867 1.9733,2.3467 1.3333,0.90666 2.9333,0.90666 1.5467,0 2.8267,-1.0133 1.3333,-1.0133 1.9733,-2.4533 0.64,-1.4933 0.90667,-3.04 0.26667,-1.6 0.26667,-3.1467 v -3.2 l -0.16,0.21333 q -1.0133,1.3333 -2.6133,2.0267 -1.5467,0.69333 -3.2,0.69333 -2.24,0 -4.3733,-0.90666 -2.1333,-0.96 -3.5733,-2.7733 -1.3867,-1.8133 -1.9733,-4 -0.58666,-2.24 -0.58666,-4.48 v -1.3333 q 0,-2.2933 0.58666,-4.5333 0.58667,-2.24 2.0267,-4.0533 1.4933,-1.8133 3.6267,-2.6667 2.1867,-0.90667 4.48,-0.90667 1.8667,0 3.68,0.64 1.8133,0.58667 3.2,1.8667 1.44,1.28 2.2933,2.9867 0.85333,1.7067 1.1733,3.5733 0.37334,1.8667 0.37334,3.7333 v 13.12 q 0,2.0267 -0.32,4.0533 -0.32,1.9733 -1.1733,3.84 -0.8,1.8133 -2.24,3.3067 -1.3867,1.4933 -3.3067,2.24 -1.92,0.69333 -3.8933,0.69333 z m 0.16,-18.88 q 1.3333,0 2.56,-0.64 1.2267,-0.69333 1.92,-1.8667 0.74667,-1.1733 1.0133,-2.5067 0.32,-1.3333 0.32,-2.6667 v -0.69333 q 0,-1.3867 -0.26667,-2.7733 -0.26667,-1.44 -0.96,-2.72 -0.64,-1.28 -1.92,-2.0267 -1.2267,-0.8 -2.6667,-0.8 -1.3333,0 -2.56,0.69333 -1.1733,0.64 -1.92,1.8133 -0.69333,1.1733 -0.96,2.5067 -0.26666,1.3333 -0.26666,2.6667 v 1.3333 q 0,1.3333 0.26666,2.6667 0.26667,1.28 0.96,2.4533 0.69334,1.1733 1.92,1.8667 1.2267,0.69333 2.56,0.69333 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path273" />
<path
d="m 163.33,270.03 q -2.08,0 -4.1067,-0.58666 -1.9733,-0.64 -3.52,-2.0267 -1.5467,-1.44 -2.3467,-3.36 -0.74667,-1.9733 -0.74667,-4.0533 0,-2.6667 1.3333,-5.12 1.3333,-2.4533 3.52,-4.1067 0.85333,-0.64 1.76,-1.28 -0.48,-0.32 -0.90667,-0.64 -2.1333,-1.6533 -3.52,-4.1067 -1.3333,-2.4533 -1.3333,-5.12 0,-1.9733 0.69333,-3.7867 0.69333,-1.8667 2.08,-3.2533 1.3867,-1.3867 3.2533,-1.9733 1.92,-0.64 3.84,-0.64 1.92,0 3.7867,0.64 1.92,0.58667 3.3067,1.9733 1.3867,1.3867 2.08,3.2533 0.69333,1.8133 0.69333,3.7867 0,2.6667 -1.3867,5.12 -1.3333,2.4533 -3.4667,4.1067 -0.42667,0.32 -0.90667,0.64 0.90667,0.64 1.76,1.28 2.1867,1.6533 3.52,4.1067 1.3333,2.4533 1.3333,5.12 0,2.08 -0.8,4.0533 -0.74666,1.92 -2.2933,3.36 -1.5467,1.3867 -3.5733,2.0267 -1.9733,0.58666 -4.0533,0.58666 z m 0,-4.48 q 1.4933,0 2.88,-0.64 1.3867,-0.64 2.1333,-1.9733 0.74666,-1.3867 0.74666,-2.88 0,-2.72 -1.9733,-4.8 -1.7067,-1.92 -3.7867,-3.1467 -2.08,1.2267 -3.7867,3.1467 -1.9733,2.08 -1.9733,4.8 0,1.4933 0.74667,2.88 0.74667,1.3333 2.1333,1.9733 1.3867,0.64 2.88,0.64 z m 0,-18.613 q 1.6,-1.0667 2.9333,-2.56 1.9733,-2.08 1.9733,-4.8 0,-1.3333 -0.58667,-2.56 -0.58666,-1.28 -1.8133,-1.92 -1.1733,-0.64 -2.5067,-0.64 -1.3333,0 -2.56,0.64 -1.1733,0.64 -1.76,1.92 -0.58666,1.2267 -0.58666,2.56 0,2.72 1.9733,4.8 1.3333,1.4933 2.9333,2.56 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path275" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#8c8c8c;filter:url(#filter1811)"
aria-label="140"
id="g285">
<path
d="m 221.92,269.6 v -33.493 l -5.9733,4.16 -2.8267,-3.68 8.8,-6.1867 h 5.0133 v 39.2 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path279" />
<path
d="m 251.2,269.6 v -11.2 h -12.427 v -4.48 L 250.08,230.4 h 6.08 v 23.52 h 3.6267 v 4.48 H 256.16 v 11.2 z m -7.52,-15.68 h 7.52 v -15.573 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path281" />
<path
d="m 276.16,270.03 q -2.2933,0 -4.48,-0.85333 -2.1333,-0.90667 -3.6267,-2.72 -1.44,-1.8133 -2.0267,-4.0533 -0.58666,-2.24 -0.58666,-4.5333 v -15.733 q 0,-2.2933 0.58666,-4.5333 0.58667,-2.24 2.0267,-4.0533 1.4933,-1.8133 3.6267,-2.6667 2.1867,-0.90667 4.48,-0.90667 2.2933,0 4.4267,0.90667 2.1867,0.85333 3.6267,2.6667 1.4933,1.8133 2.08,4.0533 0.5867,2.24 0.58667,4.5333 v 15.733 q 0,2.2933 -0.58667,4.5333 -0.58667,2.24 -2.08,4.0533 -1.44,1.8133 -3.6267,2.72 -2.1333,0.85333 -4.4267,0.85333 z m 0,-4.48 q 1.3333,0 2.56,-0.64 1.2267,-0.69333 1.92,-1.8667 0.69333,-1.1733 0.96,-2.5067 0.32,-1.3333 0.32,-2.6667 v -11.84 l -11.2,14.72 q 0.32,1.2267 0.96,2.2933 0.69333,1.1733 1.92,1.8667 1.2267,0.64 2.56,0.64 z m -5.76,-11.573 11.2,-14.72 q -0.32,-1.2267 -0.96,-2.2933 -0.69334,-1.1733 -1.92,-1.8133 -1.2267,-0.69333 -2.56,-0.69333 -1.3333,0 -2.56,0.69333 -1.2267,0.64 -1.92,1.8133 -0.69334,1.1733 -1.0133,2.5067 -0.26666,1.3333 -0.26666,2.6667 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path283" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#a7a7a7;filter:url(#filter1805)"
aria-label="167"
id="g293">
<path
d="m 322.13,269.39 v -33.493 l -5.9733,4.16 -2.8267,-3.68 8.8,-6.1867 h 5.0133 v 39.2 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path287" />
<path
d="m 349.71,269.81 q -2.2933,0 -4.48,-0.85333 -2.1333,-0.90667 -3.6267,-2.72 -1.44,-1.8667 -2.0267,-4.1067 -0.5867,-2.24 -0.58667,-4.48 0,-4.2667 0.69334,-8.4267 0.69333,-4.2133 2.4533,-8.0533 1.8133,-3.8933 5.0133,-6.7733 3.2533,-2.88 7.2533,-4.2133 l 1.6,4.2667 q -8.1067,3.0933 -10.773,12.533 0.64,-0.48 1.44,-0.85334 1.6,-0.69333 3.2533,-0.69333 2.24,0 4.3733,0.96 2.1333,0.90667 3.52,2.72 1.44,1.8133 2.0267,4.0533 0.58666,2.1867 0.58666,4.48 0,2.24 -0.58666,4.48 -0.58667,2.24 -2.08,4.1067 -1.44,1.8133 -3.6267,2.72 -2.1333,0.85333 -4.4267,0.85333 z m 0,-4.48 q 1.3333,0 2.56,-0.64 1.2267,-0.69333 1.92,-1.8667 0.69334,-1.1733 0.96,-2.5067 0.32,-1.3333 0.32,-2.6667 0,-1.3867 -0.26666,-2.6667 -0.26667,-1.3333 -0.96,-2.5067 -0.69334,-1.2267 -1.92,-1.8667 -1.2267,-0.69333 -2.56,-0.69333 -1.3333,0 -2.56,0.69333 -1.2267,0.64 -1.9733,1.8133 -0.69333,1.1733 -1.0133,2.5067 -0.26667,1.3333 -0.26667,2.72 0,1.3333 0.26667,2.6667 0.32,1.3333 1.0133,2.5067 0.69334,1.1733 1.92,1.8667 1.2267,0.64 2.56,0.64 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path289" />
<path
d="m 369.17,269.39 12.213,-34.72 h -15.307 v -4.48 h 20.587 v 4.48 l -12.16,34.72 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path291" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#bbbbbb;filter:url(#filter1799)"
aria-label="187"
id="g301">
<path
d="m 422.13,269.6 v -33.493 l -5.9733,4.16 -2.8267,-3.68 8.8,-6.1867 h 5.0133 v 39.2 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path295" />
<path
d="m 449.71,270.03 q -2.08,0 -4.1067,-0.58666 -1.9733,-0.64 -3.52,-2.0267 -1.5467,-1.44 -2.3467,-3.36 -0.74667,-1.9733 -0.74667,-4.0533 0,-2.6667 1.3333,-5.12 1.3333,-2.4533 3.52,-4.1067 0.85333,-0.64 1.76,-1.28 -0.48,-0.32 -0.90667,-0.64 -2.1333,-1.6533 -3.52,-4.1067 -1.3333,-2.4533 -1.3333,-5.12 0,-1.9733 0.69333,-3.7867 0.69333,-1.8667 2.08,-3.2533 1.3867,-1.3867 3.2533,-1.9733 1.92,-0.64 3.84,-0.64 1.92,0 3.7867,0.64 1.92,0.58667 3.3067,1.9733 1.3867,1.3867 2.08,3.2533 0.69333,1.8133 0.69333,3.7867 0,2.6667 -1.3867,5.12 -1.3333,2.4533 -3.4667,4.1067 -0.42667,0.32 -0.90667,0.64 0.90667,0.64 1.76,1.28 2.1867,1.6533 3.52,4.1067 1.3333,2.4533 1.3333,5.12 0,2.08 -0.8,4.0533 -0.74666,1.92 -2.2933,3.36 -1.5467,1.3867 -3.5733,2.0267 -1.9733,0.58666 -4.0533,0.58666 z m 0,-4.48 q 1.4933,0 2.88,-0.64 1.3867,-0.64 2.1333,-1.9733 0.74666,-1.3867 0.74666,-2.88 0,-2.72 -1.9733,-4.8 -1.7067,-1.92 -3.7867,-3.1467 -2.08,1.2267 -3.7867,3.1467 -1.9733,2.08 -1.9733,4.8 0,1.4933 0.74667,2.88 0.74667,1.3333 2.1333,1.9733 1.3867,0.64 2.88,0.64 z m 0,-18.613 q 1.6,-1.0667 2.9333,-2.56 1.9733,-2.08 1.9733,-4.8 0,-1.3333 -0.58667,-2.56 -0.58666,-1.28 -1.8133,-1.92 -1.1733,-0.64 -2.5067,-0.64 -1.3333,0 -2.56,0.64 -1.1733,0.64 -1.76,1.92 -0.58666,1.2267 -0.58666,2.56 0,2.72 1.9733,4.8 1.3333,1.4933 2.9333,2.56 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path297" />
<path
d="m 469.17,269.6 12.213,-34.72 h -15.307 v -4.48 h 20.587 v 4.48 l -12.16,34.72 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path299" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#0a0a0a;filter:url(#filter1793)"
aria-label="10"
id="g307">
<path
d="m 35.253,369.6 v -33.493 l -5.9733,4.16 -2.8267,-3.68 8.8,-6.1867 h 5.0133 v 39.2 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path303" />
<path
d="m 62.827,370.03 q -2.2933,0 -4.48,-0.85333 -2.1333,-0.90667 -3.6267,-2.72 -1.44,-1.8133 -2.0267,-4.0533 -0.58667,-2.24 -0.58667,-4.5333 v -15.733 q 0,-2.2933 0.58667,-4.5333 0.58667,-2.24 2.0267,-4.0533 1.4933,-1.8133 3.6267,-2.6667 2.1867,-0.90667 4.48,-0.90667 2.2933,0 4.4267,0.90667 2.1867,0.85333 3.6267,2.6667 1.4933,1.8133 2.08,4.0533 0.5867,2.24 0.58667,4.5333 v 15.733 q 0,2.2933 -0.58667,4.5333 -0.58667,2.24 -2.08,4.0533 -1.44,1.8133 -3.6267,2.72 Q 65.1204,370.03 62.827,370.03 Z m 0,-4.48 q 1.3333,0 2.56,-0.64 1.2267,-0.69333 1.92,-1.8667 0.69333,-1.1733 0.96,-2.5067 0.32,-1.3333 0.32,-2.6667 v -11.84 l -11.2,14.72 q 0.32,1.2267 0.96,2.2933 0.69333,1.1733 1.92,1.8667 1.2267,0.64 2.56,0.64 z m -5.76,-11.573 11.2,-14.72 q -0.32,-1.2267 -0.96,-2.2933 -0.69333,-1.1733 -1.92,-1.8133 -1.2267,-0.69333 -2.56,-0.69333 -1.3333,0 -2.56,0.69333 -1.2267,0.64 -1.92,1.8133 -0.69333,1.1733 -1.0133,2.5067 -0.26667,1.3333 -0.26667,2.6667 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path305" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#242424;filter:url(#filter1787)"
aria-label="36"
id="g313">
<path
d="m 136.48,369.39 q -2.4,0 -4.6933,-0.90667 -2.2933,-0.96 -3.7867,-2.9867 -1.44,-2.0267 -1.9733,-4.3733 l 4.7467,-1.3867 q 0.26666,1.3867 1.0133,2.6133 0.74667,1.2267 2.0267,1.92 1.28,0.64 2.6667,0.64 1.3333,0 2.56,-0.58667 1.2267,-0.58667 1.9733,-1.7067 0.74666,-1.12 1.0133,-2.4 0.32,-1.3333 0.32,-2.6133 0,-1.3333 -0.32,-2.6133 -0.26667,-1.28 -1.0133,-2.3467 -0.74667,-1.12 -1.9733,-1.7067 -1.1733,-0.58666 -2.4533,-0.58666 h -5.12 v -4.48 l 8.9067,-11.2 h -14.08 v -4.48 h 20.053 v 4.48 l -8.96,11.2 q 1.8133,0.16 3.5733,0.8 2.1333,0.85333 3.6267,2.6133 1.4933,1.7067 2.08,3.8933 0.64,2.1867 0.64,4.4267 0,2.24 -0.64,4.48 -0.58667,2.1867 -2.1333,3.9467 -1.4933,1.7067 -3.6267,2.56 -2.1333,0.8 -4.4267,0.8 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path309" />
<path
d="m 163.25,369.81 q -2.2933,0 -4.48,-0.85333 -2.1333,-0.90667 -3.6267,-2.72 -1.44,-1.8667 -2.0267,-4.1067 -0.58666,-2.24 -0.58666,-4.48 0,-4.2667 0.69333,-8.4267 0.69333,-4.2133 2.4533,-8.0533 1.8133,-3.8933 5.0133,-6.7733 3.2533,-2.88 7.2533,-4.2133 l 1.6,4.2667 q -8.1067,3.0933 -10.773,12.533 0.64,-0.48 1.44,-0.85334 1.6,-0.69333 3.2533,-0.69333 2.24,0 4.3733,0.96 2.1333,0.90667 3.52,2.72 1.44,1.8133 2.0267,4.0533 0.58667,2.1867 0.58667,4.48 0,2.24 -0.58667,4.48 -0.58667,2.24 -2.08,4.1067 -1.44,1.8133 -3.6267,2.72 -2.1333,0.85333 -4.4267,0.85333 z m 0,-4.48 q 1.3333,0 2.56,-0.64 1.2267,-0.69333 1.92,-1.8667 0.69333,-1.1733 0.96,-2.5067 0.32,-1.3333 0.32,-2.6667 0,-1.3867 -0.26667,-2.6667 -0.26667,-1.3333 -0.96,-2.5067 -0.69333,-1.2267 -1.92,-1.8667 -1.2267,-0.69333 -2.56,-0.69333 -1.3333,0 -2.56,0.69333 -1.2267,0.64 -1.9733,1.8133 -0.69334,1.1733 -1.0133,2.5067 -0.26666,1.3333 -0.26666,2.72 0,1.3333 0.26666,2.6667 0.32,1.3333 1.0133,2.5067 0.69333,1.1733 1.92,1.8667 1.2267,0.64 2.56,0.64 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path311" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#393939;filter:url(#filter1781)"
aria-label="57"
id="g319">
<path
d="m 236.64,369.81 q -1.8133,0 -3.6267,-0.53333 -1.76,-0.58667 -3.2,-1.8133 -1.3867,-1.28 -2.2933,-2.88 -0.85334,-1.6533 -1.28,-3.4667 l 4.64,-1.6533 q 0.26666,1.4933 0.96,2.88 0.69333,1.3333 1.9733,2.1867 1.3333,0.8 2.8267,0.8 1.4933,0 2.72,-0.8 1.28,-0.8 1.9733,-2.08 0.6933,-1.28 0.96,-2.72 0.2667,-1.44 0.26667,-2.88 -3e-5,-1.44 -0.26667,-2.8267 -0.26667,-1.44 -0.90667,-2.72 -0.64,-1.3333 -1.8667,-2.1333 -1.2267,-0.8 -2.6667,-0.8 -1.28,0 -2.4533,0.69334 -1.1733,0.64 -1.8667,1.76 -0.6934,1.12 -1.0667,2.4 l -4.4267,-1.9733 v -21.067 h 19.04 v 4.48 h -14.08 v 10.347 q 0.26666,-0.16 0.58666,-0.26666 2.08,-0.85334 4.2667,-0.85334 2.4,0 4.5867,1.0133 2.1867,0.96 3.5733,2.9333 1.3866,1.9733 1.92,4.32 0.58667,2.2933 0.58667,4.6933 0,2.3467 -0.58667,4.6933 -0.53333,2.3467 -1.9733,4.32 -1.44,1.9733 -3.68,2.9867 -2.24,0.96 -4.64,0.96 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path315" />
<path
d="m 256.27,369.39 12.213,-34.72 h -15.307 v -4.48 h 20.587 v 4.48 l -12.16,34.72 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path317" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#535353;filter:url(#filter1775)"
aria-label="83"
id="g325">
<path
d="m 336.67,370.03 q -2.08,0 -4.1067,-0.58666 -1.9733,-0.64 -3.52,-2.0267 -1.5467,-1.44 -2.3467,-3.36 -0.74666,-1.9733 -0.74666,-4.0533 0,-2.6667 1.3333,-5.12 1.3333,-2.4533 3.52,-4.1067 0.85333,-0.64 1.76,-1.28 -0.48,-0.32 -0.90667,-0.64 -2.1333,-1.6533 -3.52,-4.1067 -1.3333,-2.4533 -1.3333,-5.12 0,-1.9733 0.69333,-3.7867 0.69334,-1.8667 2.08,-3.2533 1.3867,-1.3867 3.2533,-1.9733 1.92,-0.64 3.84,-0.64 1.92,0 3.7867,0.64 1.92,0.58667 3.3067,1.9733 1.3867,1.3867 2.08,3.2533 0.69333,1.8133 0.69333,3.7867 0,2.6667 -1.3867,5.12 -1.3333,2.4533 -3.4667,4.1067 -0.42667,0.32 -0.90667,0.64 0.90667,0.64 1.76,1.28 2.1867,1.6533 3.52,4.1067 1.3333,2.4533 1.3333,5.12 0,2.08 -0.8,4.0533 -0.74667,1.92 -2.2933,3.36 -1.5467,1.3867 -3.5733,2.0267 -1.9733,0.58666 -4.0533,0.58666 z m 0,-4.48 q 1.4933,0 2.88,-0.64 1.3867,-0.64 2.1333,-1.9733 0.74667,-1.3867 0.74667,-2.88 0,-2.72 -1.9733,-4.8 -1.7067,-1.92 -3.7867,-3.1467 -2.08,1.2267 -3.7867,3.1467 -1.9733,2.08 -1.9733,4.8 0,1.4933 0.74666,2.88 0.74667,1.3333 2.1333,1.9733 1.3867,0.64 2.88,0.64 z m 0,-18.613 q 1.6,-1.0667 2.9333,-2.56 1.9733,-2.08 1.9733,-4.8 0,-1.3333 -0.58666,-2.56 -0.58667,-1.28 -1.8133,-1.92 -1.1733,-0.64 -2.5067,-0.64 -1.3333,0 -2.56,0.64 -1.1733,0.64 -1.76,1.92 -0.58667,1.2267 -0.58667,2.56 0,2.72 1.9733,4.8 1.3333,1.4933 2.9333,2.56 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path321" />
<path
d="m 363.23,369.6 q -2.4,0 -4.6933,-0.90667 -2.2933,-0.96 -3.7867,-2.9867 -1.44,-2.0267 -1.9733,-4.3733 l 4.7467,-1.3867 q 0.26667,1.3867 1.0133,2.6133 0.74667,1.2267 2.0267,1.92 1.28,0.64 2.6667,0.64 1.3333,0 2.56,-0.58667 1.2267,-0.58667 1.9733,-1.7067 0.7466,-1.12003 1.0133,-2.4 0.32,-1.3333 0.32,-2.6133 0,-1.3333 -0.32,-2.6133 -0.26666,-1.28 -1.0133,-2.3467 -0.74667,-1.12 -1.9733,-1.7067 -1.1733,-0.58666 -2.4533,-0.58666 h -5.12 v -4.48 l 8.9067,-11.2 h -14.08 v -4.48 h 20.053 v 4.48 l -8.96,11.2 q 1.8133,0.16 3.5733,0.8 2.1333,0.85333 3.6267,2.6133 1.4933,1.7067 2.08,3.8933 0.64,2.1867 0.64,4.4267 0,2.24 -0.64,4.48 -0.58666,2.1867 -2.1333,3.9467 -1.4933,1.7067 -3.6267,2.56 -2.1333,0.8 -4.4267,0.8 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path323" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#6c6c6c;filter:url(#filter1769)"
aria-label="108"
id="g333">
<path
d="m 421.92,369.6 v -33.493 l -5.9733,4.16 -2.8267,-3.68 8.8,-6.1867 h 5.0133 v 39.2 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path327" />
<path
d="m 449.49,370.03 q -2.2933,0 -4.48,-0.85333 -2.1333,-0.90667 -3.6267,-2.72 -1.44,-1.8133 -2.0267,-4.0533 -0.58666,-2.24 -0.58666,-4.5333 v -15.733 q 0,-2.2933 0.58666,-4.5333 0.58667,-2.24 2.0267,-4.0533 1.4933,-1.8133 3.6267,-2.6667 2.1867,-0.90667 4.48,-0.90667 2.2933,0 4.4267,0.90667 2.1867,0.85333 3.6267,2.6667 1.4933,1.8133 2.08,4.0533 0.5867,2.24 0.58667,4.5333 v 15.733 q 0,2.2933 -0.58667,4.5333 -0.58667,2.24 -2.08,4.0533 -1.44,1.8133 -3.6267,2.72 -2.1333,0.85333 -4.4267,0.85333 z m 0,-4.48 q 1.3333,0 2.56,-0.64 1.2267,-0.69333 1.92,-1.8667 0.69333,-1.1733 0.96,-2.5067 0.32,-1.3333 0.32,-2.6667 v -11.84 l -11.2,14.72 q 0.32,1.2267 0.96,2.2933 0.69333,1.1733 1.92,1.8667 1.2267,0.64 2.56,0.64 z m -5.76,-11.573 11.2,-14.72 q -0.32,-1.2267 -0.96,-2.2933 -0.69334,-1.1733 -1.92,-1.8133 -1.2267,-0.69333 -2.56,-0.69333 -1.3333,0 -2.56,0.69333 -1.2267,0.64 -1.92,1.8133 -0.69334,1.1733 -1.0133,2.5067 -0.26666,1.3333 -0.26666,2.6667 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path329" />
<path
d="m 476.16,370.03 q -2.08,0 -4.1067,-0.58666 -1.9733,-0.64 -3.52,-2.0267 -1.5467,-1.44 -2.3467,-3.36 -0.74667,-1.9733 -0.74667,-4.0533 0,-2.6667 1.3333,-5.12 1.3333,-2.4533 3.52,-4.1067 0.85333,-0.64 1.76,-1.28 -0.48,-0.32 -0.90667,-0.64 -2.1333,-1.6533 -3.52,-4.1067 -1.3333,-2.4533 -1.3333,-5.12 0,-1.9733 0.69333,-3.7867 0.69333,-1.8667 2.08,-3.2533 1.3867,-1.3867 3.2533,-1.9733 1.92,-0.64 3.84,-0.64 1.92,0 3.7867,0.64 1.92,0.58667 3.3067,1.9733 1.3867,1.3867 2.08,3.2533 0.69333,1.8133 0.69333,3.7867 0,2.6667 -1.3867,5.12 -1.3333,2.4533 -3.4667,4.1067 -0.42667,0.32 -0.90667,0.64 0.90667,0.64 1.76,1.28 2.1867,1.6533 3.52,4.1067 1.3333,2.4533 1.3333,5.12 0,2.08 -0.8,4.0533 -0.74666,1.92 -2.2933,3.36 -1.5467,1.3867 -3.5733,2.0267 -1.9733,0.58666 -4.0533,0.58666 z m 0,-4.48 q 1.4933,0 2.88,-0.64 1.3867,-0.64 2.1333,-1.9733 0.74666,-1.3867 0.74666,-2.88 0,-2.72 -1.9733,-4.8 -1.7067,-1.92 -3.7867,-3.1467 -2.08,1.2267 -3.7867,3.1467 -1.9733,2.08 -1.9733,4.8 0,1.4933 0.74667,2.88 0.74667,1.3333 2.1333,1.9733 1.3867,0.64 2.88,0.64 z m 0,-18.613 q 1.6,-1.0667 2.9333,-2.56 1.9733,-2.08 1.9733,-4.8 0,-1.3333 -0.58667,-2.56 -0.58666,-1.28 -1.8133,-1.92 -1.1733,-0.64 -2.5067,-0.64 -1.3333,0 -2.56,0.64 -1.1733,0.64 -1.76,1.92 -0.58666,1.2267 -0.58666,2.56 0,2.72 1.9733,4.8 1.3333,1.4933 2.9333,2.56 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path331" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#080808;filter:url(#filter1763)"
aria-label="8"
id="g337">
<path
d="m 50,470.03 q -2.08,0 -4.1067,-0.58666 -1.9733,-0.64 -3.52,-2.0267 -1.5467,-1.44 -2.3467,-3.36 -0.74667,-1.9733 -0.74667,-4.0533 0,-2.6667 1.3333,-5.12 1.3333,-2.4533 3.52,-4.1067 0.85333,-0.64 1.76,-1.28 -0.48,-0.32 -0.90667,-0.64 -2.1333,-1.6533 -3.52,-4.1067 -1.3333,-2.4533 -1.3333,-5.12 0,-1.9733 0.69333,-3.7867 0.69333,-1.8667 2.08,-3.2533 1.3867,-1.3867 3.2533,-1.9733 1.92,-0.64 3.84,-0.64 1.92,0 3.7867,0.64 1.92,0.58667 3.3067,1.9733 1.3867,1.3867 2.08,3.2533 0.69333,1.8133 0.69333,3.7867 0,2.6667 -1.3867,5.12 -1.3333,2.4533 -3.4667,4.1067 -0.42667,0.32 -0.90667,0.64 0.90667,0.64 1.76,1.28 2.1867,1.6533 3.52,4.1067 1.3333,2.4533 1.3333,5.12 0,2.08 -0.8,4.0533 -0.74667,1.92 -2.2933,3.36 -1.5467,1.3867 -3.5733,2.0267 -1.9733,0.58666 -4.0533,0.58666 z m 0,-4.48 q 1.4933,0 2.88,-0.64 1.3867,-0.64 2.1333,-1.9733 0.74667,-1.3867 0.74667,-2.88 0,-2.72 -1.9733,-4.8 -1.7067,-1.92 -3.7867,-3.1467 -2.08,1.2267 -3.7867,3.1467 -1.9733,2.08 -1.9733,4.8 0,1.4933 0.74667,2.88 0.74667,1.3333 2.1333,1.9733 1.38663,0.64 2.88,0.64 z m 0,-18.613 q 1.6,-1.0667 2.9333,-2.56 1.9733,-2.08 1.9733,-4.8 0,-1.3333 -0.58667,-2.56 -0.58667,-1.28 -1.8133,-1.92 -1.1733,-0.64 -2.5067,-0.64 -1.3334,0 -2.56,0.64 -1.1733,0.64 -1.76,1.92 -0.58667,1.2267 -0.58667,2.56 0,2.72 1.9733,4.8 1.3333,1.4933 2.9333,2.56 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#080808"
id="path335" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#0a0a0a;filter:url(#filter1757)"
aria-label="10"
id="g343">
<path
d="m 135.25,469.6 v -33.493 l -5.9733,4.16 -2.8267,-3.68 8.8,-6.1867 h 5.0133 v 39.2 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path339" />
<path
d="m 162.83,470.03 q -2.2933,0 -4.48,-0.85333 -2.1333,-0.90667 -3.6267,-2.72 -1.44,-1.8133 -2.0267,-4.0533 -0.58666,-2.24 -0.58666,-4.5333 v -15.733 q 0,-2.2933 0.58666,-4.5333 0.58667,-2.24 2.0267,-4.0533 1.4933,-1.8133 3.6267,-2.6667 2.1867,-0.90667 4.48,-0.90667 2.2933,0 4.4267,0.90667 2.1867,0.85333 3.6267,2.6667 1.4933,1.8133 2.08,4.0533 0.5867,2.24 0.58667,4.5333 v 15.733 q 0,2.2933 -0.58667,4.5333 -0.58667,2.24 -2.08,4.0533 -1.44,1.8133 -3.6267,2.72 -2.1333,0.85333 -4.4267,0.85333 z m 0,-4.48 q 1.3333,0 2.56,-0.64 1.2267,-0.69333 1.92,-1.8667 0.69333,-1.1733 0.96,-2.5067 0.32,-1.3333 0.32,-2.6667 v -11.84 l -11.2,14.72 q 0.32,1.2267 0.96,2.2933 0.69333,1.1733 1.92,1.8667 1.2267,0.64 2.56,0.64 z m -5.76,-11.573 11.2,-14.72 q -0.32,-1.2267 -0.96,-2.2933 -0.69334,-1.1733 -1.92,-1.8133 -1.2267,-0.69333 -2.56,-0.69333 -1.3333,0 -2.56,0.69333 -1.2267,0.64 -1.92,1.8133 -0.69334,1.1733 -1.0133,2.5067 -0.26666,1.3333 -0.26666,2.6667 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path341" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#050505;filter:url(#filter1751)"
aria-label="5"
id="g347">
<path
d="m 249.76,469.81 q -1.8133,0 -3.6267,-0.53333 -1.76,-0.58667 -3.2,-1.8133 -1.3867,-1.28 -2.2933,-2.88 -0.85333,-1.6533 -1.28,-3.4667 l 4.64,-1.6533 q 0.26667,1.4933 0.96,2.88 0.69334,1.3333 1.9733,2.1867 1.3333,0.8 2.8267,0.8 1.4933,0 2.72,-0.8 1.28,-0.8 1.9733,-2.08 0.69333,-1.28 0.96,-2.72 0.26666,-1.44 0.26666,-2.88 0,-1.44 -0.26666,-2.8267 -0.26667,-1.44 -0.90667,-2.72 -0.64,-1.3333 -1.8667,-2.1333 -1.2267,-0.8 -2.6667,-0.8 -1.28,0 -2.4533,0.69334 -1.1733,0.64 -1.8667,1.76 -0.69334,1.12 -1.0667,2.4 l -4.4267,-1.9733 v -21.067 h 19.04 v 4.48 h -14.08 v 10.347 q 0.26667,-0.16 0.58667,-0.26666 2.08,-0.85334 4.2667,-0.85334 2.4,0 4.5867,1.0133 2.1867,0.96 3.5733,2.9333 1.3867,1.9733 1.92,4.32 0.58666,2.2933 0.58666,4.6933 0,2.3467 -0.58666,4.6933 -0.53334,2.3467 -1.9733,4.32 -1.44,1.9733 -3.68,2.9867 -2.24,0.96 -4.64,0.96 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#050505"
id="path345" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#0c0c0c;filter:url(#filter1745)"
aria-label="12"
id="g353">
<path
d="m 335.36,469.81 v -33.493 l -5.9733,4.16 -2.8267,-3.68 8.8,-6.1867 h 5.0133 v 39.2 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path349" />
<path
d="m 352.64,469.81 v -0.0533 q 0,-2.88 0.37333,-5.76 0.37333,-2.88 1.76,-5.3867 1.44,-2.56 3.52,-4.5333 2.1333,-2.0267 4.3733,-3.7867 2.24,-1.8133 4,-4.2133 1.8133,-2.4533 1.8133,-5.3333 0,-1.5467 -0.64,-2.9867 -0.64,-1.4933 -2.08,-2.2933 -1.3867,-0.8 -2.9333,-0.8 -1.3867,0 -2.6667,0.64 -1.28,0.64 -2.0267,1.92 -0.69334,1.2267 -0.90667,2.6133 l -4.8533,-0.96 q 0.26667,-1.8667 1.12,-3.52 0.90667,-1.7067 2.3467,-2.88 1.4933,-1.2267 3.3067,-1.76 1.8134,-0.5333 3.68,-0.53333 2.08,0 4.1067,0.69333 2.0267,0.64 3.52,2.1867 1.5467,1.5467 2.24,3.5733 0.74666,1.9733 0.74666,4.1067 0,2.8267 -1.3867,5.4933 -1.3333,2.6133 -3.4133,4.5867 -2.0267,1.9733 -4.2133,3.84 -2.1867,1.8667 -3.9467,4.2133 -1.7067,2.3467 -2.2933,5.1733 -0.10667,0.64 -0.21333,1.28 h 15.253 v 4.48 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path351" />
</g>
<g
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;fill:#202020;filter:url(#filter1739)"
aria-label="32"
id="g359">
<path
d="m 436.59,469.81 q -2.4,0 -4.6933,-0.90666 -2.2933,-0.96 -3.7867,-2.9867 -1.44,-2.0267 -1.9733,-4.3733 l 4.7467,-1.3867 q 0.26666,1.3867 1.0133,2.6133 0.74667,1.2267 2.0267,1.92 1.28,0.64 2.6667,0.64 1.3333,0 2.56,-0.58666 1.2267,-0.58667 1.9733,-1.7067 0.74666,-1.12 1.0133,-2.4 0.32,-1.3333 0.32,-2.6133 0,-1.3333 -0.32,-2.6133 -0.26667,-1.28 -1.0133,-2.3467 -0.74667,-1.12 -1.9733,-1.7067 -1.1733,-0.58667 -2.4533,-0.58667 h -5.12 v -4.48 l 8.9067,-11.2 h -14.08 v -4.48 h 20.053 v 4.48 l -8.96,11.2 q 1.8133,0.16 3.5733,0.8 2.1333,0.85334 3.6267,2.6133 1.4933,1.7067 2.08,3.8933 0.64,2.1867 0.64,4.4267 0,2.24 -0.64,4.48 -0.58667,2.1867 -2.1333,3.9467 -1.4933,1.7067 -3.6267,2.56 -2.1333,0.8 -4.4267,0.8 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path355" />
<path
d="m 453.07,469.81 v -0.0533 q 0,-2.88 0.37334,-5.76 0.37333,-2.88 1.76,-5.3867 1.44,-2.56 3.52,-4.5333 2.1333,-2.0267 4.3733,-3.7867 2.24,-1.8133 4,-4.2133 1.8133,-2.4533 1.8133,-5.3333 0,-1.5467 -0.64,-2.9867 -0.64,-1.4933 -2.08,-2.2933 -1.3867,-0.8 -2.9333,-0.8 -1.3867,0 -2.6667,0.64 -1.28,0.64 -2.0267,1.92 -0.69334,1.2267 -0.90667,2.6133 l -4.8533,-0.96 q 0.26666,-1.8667 1.12,-3.52 0.90666,-1.7067 2.3467,-2.88 1.4933,-1.2267 3.3067,-1.76 1.8134,-0.5333 3.68,-0.53333 2.08,0 4.1067,0.69333 2.0267,0.64 3.52,2.1867 1.5467,1.5467 2.24,3.5733 0.74667,1.9733 0.74667,4.1067 0,2.8267 -1.3867,5.4933 -1.3333,2.6133 -3.4133,4.5867 -2.0267,1.9733 -4.2133,3.84 -2.1867,1.8667 -3.9467,4.2133 -1.7067,2.3467 -2.2933,5.1733 -0.10667,0.64 -0.21333,1.28 h 15.253 v 4.48 z"
style="font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"
id="path357" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB