This commit is contained in:
Sauer 2019-05-09 19:34:23 +02:00
commit b524cc225e
86 changed files with 21652 additions and 2224 deletions

5
.gitignore vendored
View File

@ -1,6 +1,7 @@
# LaTeX
*.aux
*.out
*.toc
# From Reveal.js
.idea/
@ -105,3 +106,7 @@ typings/
# End of https://www.gitignore.io/api/node
# Minted
*/_minted*
*.pygtex
*.pygstyle

19
Dockerfile Normal file
View File

@ -0,0 +1,19 @@
FROM alpine:3.9
RUN apk add --update --no-cache npm texlive poppler cairo bash texmf-dist-full ghostscript
RUN apk add --update --no-cache --virtual .build-deps poppler-dev cairo-dev wget build-base pkgconf
ADD . /latex
WORKDIR /latex
RUN npm install && \
cd /tmp && \
wget https://github.com/dawbarton/pdf2svg/archive/v0.2.3.tar.gz && \
tar -xzf v0.2.3.tar.gz && \
cd pdf2svg-0.2.3/ && \
./configure && make && make install && \
cd / && \
rm -rf /tmp/pdf2svg-0.2.3/ && \
echo "cd /latex" > /start.sh && \
echo "bash tex2svg.sh" > /start.sh && \
echo "npm start" >> /start.sh
CMD ["bash", "/start.sh"]

View File

@ -144,13 +144,32 @@ module.exports = function(grunt) {
},
options: {
livereload: true
},
// Fachschaft WIAI: Convert TeX to SVG once a file changes
tex: {
files: [
'sections/*/*/*.tex',
'!sections/*/*/tmp-pdfcrop*'
],
tasks: 'tex2svg',
options: { nospawn: true }
}
},
retire: {
js: [ 'js/reveal.js', 'lib/js/*.js', 'plugin/**/*.js' ],
node: [ '.' ]
}
},
// Fachschaft WIAI: Necessary for tex2svg
texFilepath: '',
shell: {
tex2svg: {
command: './tex2svg-single.sh <%= texFilepath %>'
},
},
});
@ -166,6 +185,9 @@ module.exports = function(grunt) {
grunt.loadNpmTasks( 'grunt-sass' );
grunt.loadNpmTasks( 'grunt-zip' );
// Fachschaft WIAI dependency:
grunt.loadNpmTasks( 'grunt-shell' );
// Default task
grunt.registerTask( 'default', [ 'css', 'js' ] );
@ -190,4 +212,17 @@ module.exports = function(grunt) {
// Run tests
grunt.registerTask( 'test', [ 'jshint', 'qunit' ] );
// Fachschaft WIAI Adaption
// ========================
grunt.event.on('watch', function (action, filepath) {
if (/.*\.tex$/.test(filepath)) {
grunt.config.set('texFilepath', grunt.config.escape(filepath));
}
});
grunt.registerTask( 'tex2svg', 'Convert TeX to SVG', function(a) {
grunt.task.run('shell:tex2svg');
});
};

View File

@ -31,7 +31,8 @@ body {
font-size: calc(0.035 * var(--square)); }
body .layout-content-and-preview,
body .layout-content-only,
body .layout-preview-only {
body .layout-preview-only,
body .layout-wide-content {
display: grid;
min-height: 100vh;
max-height: 100vh;
@ -70,10 +71,41 @@ body {
grid-template-columns: auto;
grid-template-areas: "preview";
background: var(--secondary); }
body .layout-wide-content {
background: white;
grid-template-rows: min-content auto;
grid-template-columns: var(--square);
grid-template-areas: "content" " . "; }
@media screen and (min-aspect-ratio: 1 / 1) {
body .layout-wide-content {
grid-template-rows: auto var(--square) auto;
grid-template-columns: calc(2 * var(--square));
grid-template-areas: " . " "content" " . "; } }
@media screen and (min-aspect-ratio: 2 / 1) {
body .layout-wide-content {
grid-template-rows: auto var(--square) auto;
grid-template-columns: auto calc(2 * var(--square)) auto;
grid-template-areas: ". . ." ". content ." ". . .";
background: linear-gradient(to right, var(--secondary) 0%, var(--secondary) calc((100% - 2 * var(--square)) / 2), white calc((100% - 2 * var(--square)) / 2), white calc(100% - (100% - 2 * var(--square)) / 2), var(--secondary) calc(100% - (100% - 2 * var(--square)) / 2), var(--secondary) 100%); } }
body .layout-content {
background: white;
grid-area: content;
position: relative; }
body .layout-content.titlepage {
display: flex;
flex-direction: column;
justify-content: flex-end;
padding-bottom: calc(var(--margin) * var(--square) + 0.5 * 3em); }
body .layout-content.titlepage::before {
content: '';
position: absolute;
top: calc(var(--margin) * var(--square));
right: calc(var(--margin) * var(--square));
width: 15vw;
height: 15vw;
background-image: url(../../images/logo-fachschaft.png);
background-repeat: no-repeat;
background-size: contain; }
body .layout-preview {
grid-area: preview;
display: flex;
@ -96,7 +128,9 @@ body {
background: white;
padding: calc(var(--margin) * var(--square));
object-fit: contain;
width: calc(0.7 * var(--square)); }
width: calc(0.9 * var(--square)); }
body .layout-preview img[src$="-crop.svg"].thin-padding {
padding: calc(.35 * var(--margin) * var(--square)); }
body .layout-preview img[src$="-orig.svg"] {
background: white;
object-fit: contain; }
@ -139,6 +173,9 @@ body {
body .layout-two-columns .layout-column-two {
grid-area: column2;
background: white; }
body .layout-two-columns .layout-column-one .layout-content,
body .layout-two-columns .layout-column-two .layout-content {
padding-top: calc(var(--margin) * var(--square)); }
body .layout-two-previews {
display: grid;
min-height: 100vh;
@ -184,29 +221,37 @@ body {
line-height: 1.2em; }
.layout-content-and-preview .layout-content,
.layout-content-only .layout-content {
overflow: auto;
.layout-content-only .layout-content,
.layout-wide-content .layout-content {
overflow: visible;
padding: calc(var(--margin) * var(--square)); }
.layout-content-and-preview .layout-content *:first-child,
.layout-content-only .layout-content *:first-child {
.layout-content-only .layout-content *:first-child,
.layout-wide-content .layout-content *:first-child {
margin-top: 0; }
.layout-content-and-preview .layout-content .layout-title,
.layout-content-only .layout-content .layout-title {
.layout-content-only .layout-content .layout-title,
.layout-wide-content .layout-content .layout-title {
padding: calc(0.3 * var(--margin) * var(--square)) 0;
line-height: 1.15em; }
.layout-content-and-preview .layout-content .layout-title h2,
.layout-content-only .layout-content .layout-title h2 {
.layout-content-only .layout-content .layout-title h2,
.layout-wide-content .layout-content .layout-title h2 {
margin: 0;
line-height: 1.15em; }
.layout-content-and-preview .layout-content ul, .layout-content-and-preview .layout-content ol,
.layout-content-only .layout-content ul,
.layout-content-only .layout-content ol {
.layout-content-only .layout-content ol,
.layout-wide-content .layout-content ul,
.layout-wide-content .layout-content ol {
list-style-type: none;
padding-left: 0;
position: relative; }
.layout-content-and-preview .layout-content ul li::before, .layout-content-and-preview .layout-content ol li::before,
.layout-content-only .layout-content ul li::before,
.layout-content-only .layout-content ol li::before {
.layout-content-only .layout-content ol li::before,
.layout-wide-content .layout-content ul li::before,
.layout-wide-content .layout-content ol li::before {
content: '▪';
color: var(--secondary);
position: absolute;
@ -215,26 +260,34 @@ body {
.layout-content-only .layout-content ul ul,
.layout-content-only .layout-content ul ol,
.layout-content-only .layout-content ol ul,
.layout-content-only .layout-content ol ol {
.layout-content-only .layout-content ol ol,
.layout-wide-content .layout-content ul ul,
.layout-wide-content .layout-content ul ol,
.layout-wide-content .layout-content ol ul,
.layout-wide-content .layout-content ol ol {
margin-left: calc(0.33 * var(--margin) * var(--square)); }
.layout-content-and-preview .layout-content ol,
.layout-content-only .layout-content ol {
.layout-content-only .layout-content ol,
.layout-wide-content .layout-content ol {
counter-reset: ol-counter; }
.layout-content-and-preview .layout-content ol li::before,
.layout-content-only .layout-content ol li::before {
.layout-content-only .layout-content ol li::before,
.layout-wide-content .layout-content ol li::before {
counter-increment: ol-counter;
content: counter(ol-counter) ".";
color: var(--secondary-dark);
left: calc(-0.36 * var(--margin) * var(--square)); }
.layout-content-and-preview .layout-content pre,
.layout-content-only .layout-content pre {
.layout-content-only .layout-content pre,
.layout-wide-content .layout-content pre {
margin-left: calc(-1 * var(--margin) * var(--square));
padding-left: calc(var(--margin) * var(--square));
line-height: 1.2em;
position: relative;
overflow: hidden; }
.layout-content-and-preview .layout-content pre::before,
.layout-content-only .layout-content pre::before {
.layout-content-only .layout-content pre::before,
.layout-wide-content .layout-content pre::before {
content: attr(data-sourcefile);
position: absolute;
text-align: right;
@ -245,10 +298,12 @@ body {
transform-origin: top right;
transform: rotate(-90deg); }
.layout-content-and-preview .layout-content pre code,
.layout-content-only .layout-content pre code {
.layout-content-only .layout-content pre code,
.layout-wide-content .layout-content pre code {
padding: .3em 0; }
.layout-content-and-preview .layout-content code,
.layout-content-only .layout-content code {
.layout-content-only .layout-content code,
.layout-wide-content .layout-content code {
font-size: 0.9em;
font-family: 'Fira Code'; }
@ -315,15 +370,21 @@ body {
bottom: calc(38.2% - .5em); }
h1 {
position: absolute;
font-size: 300%;
max-width: var(--square); }
:not(.titlepage) > h1 {
position: absolute;
bottom: 0;
left: 0;
line-height: 115%;
vertical-align: bottom;
max-width: var(--square);
padding: 0 calc(var(--margin) * var(--square)) 0.5em; }
.titlepage > h1 {
line-height: 100%;
margin-bottom: 3rem; }
h2 {
line-height: 1.2; }
@ -344,6 +405,32 @@ h2[data-category]::before {
padding-left: calc(var(--margin) * var(--square));
margin-right: .5em; }
h2[data-category=Aufgabe]::before {
content: attr(data-category) " " attr(data-task); }
.layout-content-only h2[data-category=Aufgabe]::after,
.layout-wide-content h2[data-category=Aufgabe]::after {
content: attr(data-task);
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
text-indent: calc(-.16 * var(--square));
font-size: calc(1.2 * var(--square));
overflow: hidden;
text-align: right;
white-space: nowrap;
direction: rtl;
word-spacing: 1000%;
opacity: .2; }
@media screen and (min-aspect-ratio: 1 / 1) and (max-aspect-ratio: 2 / 1) {
.layout-content-only h2[data-category=Aufgabe]::after,
.layout-wide-content h2[data-category=Aufgabe]::after {
--versatz: calc((100vh - var(--square)) / 2);
top: var(--versatz);
bottom: calc(-1 * var(--versatz)); } }
img {
width: auto;
max-width: 100%; }
@ -430,12 +517,12 @@ section > h1, section > h2, section > h3, section > p, section > ul {
* =========================
*/
kbd {
font-family: "Fira Code", monospace !important;
font-size: 65% !important;
font-family: "Fira Code", monospace;
font-size: 65%;
display: inline-block;
border: 1px solid white !important;
border-width: 1px 5px 5px 1px !important;
padding: .2rem .5rem !important; }
border: 1px solid dimgray;
border-width: 1px 5px 5px 1px;
padding: .2rem .5rem; }
/*
* Emoji Fonts
@ -447,3 +534,37 @@ kbd {
.emoji {
font-family: "Twemoji"; }
/*
* Links
* ============
*/
p {
z-index: 1; }
p a:link, p a:hover, p a:active, p a:visited {
text-decoration: none;
color: var(--secondary-dark);
font-weight: bold;
position: relative;
z-index: 1; }
p a:link::before, p a:hover::before, p a:active::before, p a:visited::before {
content: '';
position: absolute;
width: 102%;
height: 0;
background-color: var(--secondary-light);
z-index: -1;
bottom: -5%;
left: -1%;
transition: .2s height ease; }
p a:hover::before {
height: 110%; }
pre.small-text {
font-size: 80%; }
pre.scroll-one-half {
max-height: calc(.5 * var(--square));
overflow: auto !important; }

View File

@ -34,7 +34,8 @@ body {
.layout-content-and-preview,
.layout-content-only,
.layout-preview-only {
.layout-preview-only,
.layout-wide-content {
display: grid;
min-height: 100vh;
max-height: 100vh;
@ -102,10 +103,61 @@ body {
background: var(--secondary);
}
.layout-wide-content {
background: white;
grid-template-rows: min-content auto;
grid-template-columns: var(--square);
grid-template-areas:
"content"
" . ";
@media screen and (min-aspect-ratio: 1/1) {
grid-template-rows: auto var(--square) auto;
grid-template-columns: calc(2 * var(--square));
grid-template-areas:
" . "
"content"
" . ";
}
@media screen and (min-aspect-ratio: 2/1) {
grid-template-rows: auto var(--square) auto;
grid-template-columns: auto calc(2 * var(--square)) auto;
grid-template-areas:
". . ."
". content ."
". . .";
background: linear-gradient(to right,
var(--secondary) 0%,
var(--secondary) calc((100% - 2 * var(--square)) / 2),
white calc((100% - 2 * var(--square)) / 2),
white calc(100% - (100% - 2 * var(--square)) / 2),
var(--secondary) calc(100% - (100% - 2 * var(--square)) / 2),
var(--secondary) 100%);
}
}
.layout-content {
background: white;
grid-area: content;
position: relative;
&.titlepage {
display: flex;
flex-direction: column;
justify-content: flex-end;
padding-bottom: calc(var(--margin) * var(--square) + 0.5 * 3em);
&::before {
content: '';
position: absolute;
top: calc(var(--margin) * var(--square));
right: calc(var(--margin) * var(--square));
width: 15vw;
height: 15vw;
background-image: url(../../images/logo-fachschaft.png);
background-repeat: no-repeat;
background-size: contain;
}
}
}
.layout-preview {
@ -131,7 +183,11 @@ body {
background: white;
padding: calc(var(--margin) * var(--square));
object-fit: contain;
width: calc(0.7 * var(--square));
width: calc(0.9 * var(--square));
&.thin-padding {
padding: calc(.35 * var(--margin) * var(--square))
}
}
&[src$="-orig.svg"] {
background: white;
@ -196,6 +252,11 @@ body {
grid-area: column2;
background: white;
}
.layout-column-one .layout-content,
.layout-column-two .layout-content {
padding-top: calc(var(--margin) * var(--square));
}
}
.layout-two-previews {
@ -250,9 +311,10 @@ body {
}
.layout-content-and-preview,
.layout-content-only {
.layout-content-only,
.layout-wide-content {
.layout-content {
overflow: auto;
overflow: visible;
padding: calc(var(--margin) * var(--square));
*:first-child {
@ -397,16 +459,24 @@ body {
}
h1 {
position: absolute;
font-size: 300%;
max-width: var(--square);
}
:not(.titlepage) > h1 {
position: absolute;
bottom: 0;
left: 0;
line-height: 115%;
vertical-align: bottom;
max-width: var(--square);
padding: 0 calc(var(--margin) * var(--square)) .5em;
}
.titlepage > h1 {
line-height: 100%;
margin-bottom: 3rem;
}
h2 {
line-height: 1.2;
}
@ -424,12 +494,35 @@ h2[data-category]::before {
vertical-align: baseline;
letter-spacing: .1em;
position: relative;
// left: calc(-1 * var(--margin) * var(--square));
// margin-right: calc(-1 * var(--margin) * var(--square) + 1em);
margin-left: calc(-1 * var(--margin) * var(--square));
padding-left: calc(var(--margin) * var(--square));
margin-right: .5em;
}
h2[data-category=Aufgabe]::before {
content: attr(data-category) ' ' attr(data-task);
}
.layout-content-only h2[data-category=Aufgabe]::after,
.layout-wide-content h2[data-category=Aufgabe]::after {
content: attr(data-task);
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
text-indent: calc(-.16 * var(--square));
font-size: calc(1.2 * var(--square));
overflow: hidden;
text-align: right;
white-space: nowrap;
direction: rtl;
word-spacing: 1000%;
opacity: .2;
@media screen and (min-aspect-ratio: 1/1) and (max-aspect-ratio: 2/1) {
--versatz: calc((100vh - var(--square)) / 2);
top: var(--versatz);
bottom: calc(-1 * var(--versatz));
}
}
img {
width: auto;
@ -539,12 +632,12 @@ section>h1, section>h2, section>h3, section>p, section>ul {
* =========================
*/
kbd {
font-family: "Fira Code", monospace !important;
font-size: 65% !important;
font-family: "Fira Code", monospace;
font-size: 65%;
display: inline-block;
border: 1px solid white !important;
border-width: 1px 5px 5px 1px !important;
padding: .2rem .5rem !important;
border: 1px solid dimgray;
border-width: 1px 5px 5px 1px;
padding: .2rem .5rem;
}
/*
@ -558,4 +651,51 @@ kbd {
.emoji {
font-family: "Twemoji";
}
}
/*
* Links
* ============
*/
p {
z-index: 1;
}
p a {
&:link,
&:hover,
&:active,
&:visited {
text-decoration: none;
color: var(--secondary-dark);
font-weight: bold;
position: relative;
z-index: 1;
&::before {
content: '';
position: absolute;
width: 102%;
height: 0;
background-color: var(--secondary-light);
z-index: -1;
bottom: -5%;
left: -1%;
transition: .2s height ease;
}
}
&:hover::before {
height: 110%;
}
}
pre.small-text {
font-size: 80%;
}
pre.scroll-one-half {
max-height: calc(.5 * var(--square));
overflow: auto !important;
}

21
docker-compose.yml Normal file
View File

@ -0,0 +1,21 @@
version: "3"
services:
latesch:
build: .
image: docker.wiai.de/latex/build:0.4-alpine
# volumes:
# - ./:/latex
ports:
- "127.0.0.1:8000:8000"
# networks:
# - traefik_net
# labels:
# - "traefik.enable=true"
# - "traefik.port=8000"
# - "traefik.docker.network=traefik_net"
# - "traefik.http.frontend.rule=Host:latesch.elli-valley.de"
#
#networks:
# traefik_net:
# external:
# name: traefik_net

BIN
images/logo-fachschaft.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 KiB

View File

@ -24,7 +24,7 @@
},
"devDependencies": {
"express": "^4.16.2",
"grunt": "^1.0.1",
"grunt": "^1.0.4",
"grunt-autoprefixer": "^3.0.4",
"grunt-cli": "^1.2.0",
"grunt-contrib-connect": "^1.0.2",
@ -33,11 +33,12 @@
"grunt-contrib-qunit": "^2.0.0",
"grunt-contrib-uglify": "^3.3.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-sass": "^2.0.0",
"grunt-retire": "^1.0.7",
"grunt-sass": "^2.0.0",
"grunt-zip": "~0.17.1",
"mustache": "^2.3.0",
"socket.io": "^1.7.3"
"socket.io": "^1.7.3",
"grunt-shell": "^3.0.1"
},
"license": "MIT"
}

View File

@ -1,5 +1,6 @@
<div class="layout-content-only">
<div class="layout-content">
<h1>L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X</h1>
<div class="layout-content titlepage">
<h1>L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X-Wochenende</h1>
<small>Ein Workshop der Fachschaft WIAI in Zusammenarbeit mit Prof. Dr. Udo Krieger und der Universitätsbibliothek der Otto-Friedrich-Universität Bamberg </small>
</div>
</div>

View File

@ -45,7 +45,7 @@
---
<div class="layout-two-columns">
<h2>Was brauchen wir dazu?</h2>
<h2 class="layout-title">Was brauchen wir dazu?</h2>
<div class="layout-column-one">
<blockquote>Editor</blockquote>
<p style="text-align:left;">enthält unseren Quelltext mit allen Befehlen zur semantischen Gliederung</p>
@ -90,7 +90,7 @@
<div class="layout-content">
<h2>Optionale Parameter</h2>
<p>In eckigen Klammern können verschieden viele optionale Parameter stehen:</p>
<pre><code class="lang-tex hljs">\usepackage[utf8]{inputenc}
<pre class="lang-tex hljs"><code>\usepackage[utf8]{inputenc}
% setzt die Textkodierung
\documentclass[a4paper,12pt]{article}
@ -107,7 +107,7 @@
<div class="layout-content">
<h2>Kommentare</h2>
<p>Nach einem Prozentzeichen wird der Rest der Zeile vom Compiler ignoriert. Der Kommentartext erscheint also nicht im fertigen Dokument.</p>
<pre><code class="lang-tex hljs">% Beginn Steckbrief
<pre class="lang-tex hljs"><code>% Beginn Steckbrief
Name: Donald Knuth \\\\
Geburtsdatum: \\\\ % TODO: einfügen
Geburtsort: Milwaukee, Wisconsin
@ -138,9 +138,9 @@ Geburtsort: Milwaukee, Wisconsin
---
<div class="layout-only">
<div class="layout-content-only">
<div class="layout-content">
<h2 data-category="⌨️ Aufgabe">1. Erste Schritte mit LaTeX</h2>
<h2 data-category="Aufgabe" data-task="1">Erste Schritte mit LaTeX</h2>
<ul>
<li class="fragment">Falls nötig: Install now!</li>
<li class="fragment">Ladet euch aus dem VC die Datei <code>aufgabe01.tex</code> herunter und speichert sie in einem eigenen Ordner.</li>

View File

@ -6,26 +6,26 @@
---
<div class="layout-two-columns">
<div class="layout-title">Präambel und Dokumentumgebung</div>
<div class="layout-column-one">
<p>👁 Ein mit LaTeX gesetztes Dokument besteht aus zwei Teilen.</p>
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Präambel & Dokumentumgebung</h2>
<p><span class="emoji">👁</span> Ein mit LaTeX gesetztes Dokument besteht aus:</p>
<ul class="fragment">
<li><b>Präambel</b>: globale Einstellungen (Dokumentklasse, Encoding, Sprache, Seitenformat, zusäzliche Pakete, ...) und</li>
<li><b>Dokumentumgebung</b>: textueller Inhalt des Dokuments.</li>
</ul>
</div>
<div class="layout-column-two">
<li><b>Präambel:</b> globale Einstellungen (Dokumentklasse, Encoding, Sprache, Seitenformat, zusäzliche Pakete, ...) und</li>
<li><b>Dokumentumgebung:</b> textueller Inhalt des Dokuments.</li>
</ul>
<pre class="lang-tex hljs"><code>\documentclass{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\begin{document}
Hallo, Welt!
Hallo, Welt!
\end{document}</code></pre>
</div>
<div class="layout-preview">
<figure>
<img src="sections/german/03/hallo-crop.svg">
<img src="sections/german/03/hallo-orig.svg">
</figure>
</div>
@ -43,9 +43,9 @@
</p>
<div class="fragment">
<ul>
<li><b><code>scrartcl, article</b></code> für einfache Dokumente</li>
<li><b><code>scrreport, report</b></code> für komplexere Dokumente</li>
<li><b><code>scrbook, book</b></code> für Bücher</li>
<li><b><code>scrartcl</code>, <code>article</b></code> für einfache Dokumente</li>
<li><b><code>scrreport</code>, <code>report</b></code> für komplexere Dokumente</li>
<li><b><code>scrbook</code>, <code>book</b></code> für Bücher</li>
<li><b><code>beamer</b></code> für Präsentationen</li>
</ul>
</div>
@ -62,7 +62,7 @@
<p>
<ul>
<li>Pakete stellen zusätzliche Befehle und Funktionalitäten zur Verfügung.</li>
<li>Es existieren verschiedene Pakete für verschiedene Anwendungsfälle (z. B. Formelsatz, Listen, ...).
<li>Es existieren verschiedene Pakete für verschiedene Anwendungsfälle (z.&thinsp;B. Formelsatz, Listen, ...).
</li>
<li>Sie müssen vor der Nutzung in der Präambel eingebunden werden.
</li>
@ -81,7 +81,7 @@
<ul>
<li>Die Zeichenkodierung bestimmt, welche Zeichen verfügbar sind.</li>
<li><b>ASCII</b> enthält kaum Sonderzeichen wie deutsche Umlaute.</li>
<li><b>UTF8</b> ist eine universelle Kodierung.</li>
<li><b>UTF-8</b> ist eine universelle Kodierung.</li>
</ul>
</p>
</div>
@ -95,7 +95,7 @@
<pre class="lang-tex hljs"><code>\usepackage[ngerman]{babel}</code></pre>
<p>
<ul>
<li>Das Paket <b><code>babel</code></b> stellt sprachspezifische Informationen (z.B. Silbentrennung, Sonderzeichen, Wechsel zwischen Fonts, Übersetzung von Labels wie 'Kapitel', 'Inhaltsverzeichnis' oder 'Abbildung') bereit.</li>
<li>Das Paket <b><code>babel</code></b> stellt sprachspezifische Informationen (z.&thinsp;B. Silbentrennung, Sonderzeichen, Wechsel zwischen Fonts, Übersetzung von Labels wie Kapitel, Inhaltsverzeichnis oder Abbildung) bereit.</li>
<li><b><code>ngerman</code></b> steht für die neue deutsche Rechschreibung.</li>
</ul>
</p>
@ -104,21 +104,19 @@
---
<div class="layout-content-only">
<div class="layout-wide-content">
<div class="layout-content">
<h2>Sprache<em>n</em></h2>
Es können auch mehrere Sprachen im Dokument verwendet werden:
<pre class="lang-tex hljs"><code>\usepackage[ngerman, swedish, russian,
greek, english]{babel}</code></pre>
<h2>Sprache<em>n</em></h2>
<p>Es können auch mehrere Sprachen im Dokument verwendet werden:</p>
<pre class="lang-tex hljs"><code>\usepackage[ngerman, swedish, russian, greek, english]{babel}</code></pre>
<div class="fragment">
Umschalten zwischen Sprachen:
<pre class="lang-tex hljs"><code>\selectlanguage{Sprache A}
<p>Umschalten zwischen Sprachen:</p>
<pre class="lang-tex hljs"><code>\selectlanguage{Sprache A}
\selectlanguage{Sprache B}</code></pre>
Eingebetteter Text in anderer Sprache:
<pre class="lang-tex hljs"><code>\selectlanguage{Sprache A}
\foreignlanguage{Sprache B}{Hier steht
Text in Sprache B innerhalb eines Textes
in Sprache A}</code></pre>
<p>Eingebetteter Text in anderer Sprache:</p>
<pre class="lang-tex hljs"><code>\selectlanguage{Sprache A}
\foreignlanguage{Sprache B}{Hier steht Text in Sprache B innerhalb eines Textes in Sprache A}</code></pre>
</div>
</div>
</div>
@ -128,19 +126,14 @@ Text in Sprache B innerhalb eines Textes
<div class="layout-content">
<h2>Sprachen Ein Beispiel</h2>
<pre class="lang-tex hljs"><code>\today
\selectlanguage{ngerman}
\today
\selectlanguage{swedish}
\today
\selectlanguage{russian}
\today
\selectlanguage{greek}
\today
\selectlanguage{english}
\today
</code></pre>
@ -161,7 +154,7 @@ Einfache Zeilenumbrüche ↲
werden dabei ignoriert ↲
genau wie mehrere Leerzeichen. ↲
Leerzeilen erzeugen einen neuen Absatz,
Leerzeilen erzeugen einen neuen Absatz,↲
standardmäßig mit Einzug. ↲
Manuelle Zeilenumbrüche können mit ↲
zwei Backslashes erzwungen werden, ↲
@ -232,19 +225,19 @@ nichts verloren.</code></pre>
<div class="layout-content">
<h2>Titelei</h2>
<pre class="lang-tex hljs" data-source="title.tex"><code>\title{Die Welt der Trüffel}
\author{Fooboar Rüssel \\\\ Fachschaft WIAI\thanks{WIe AIn Profi}, Otto-Friedrich-Universität Bamberg}
\author{Fooboar Rüssel \\\\ Fachschaft WIAI\thanks{WIe AIn Profi},
Otto-Friedrich-Universität Bamberg}
\date{\today}
\begin{document}
\maketitle
\end{document}</code></pre>
<ul>
<li>In der Präambel werden die Werte für die Einträge gespeichert.</li>
<li>Das Setzen des Titels erfolgt in der Dokumentumgebung mit dem Befehl <code>\maketitle</code>.</li>
<li>Die genaue Gestaltung hängt ab von der verwendeten Dokumentklasse.</li>
<li>Mehrere Autoren werden mit <code>\and</code> getrennt.</li>
<li>Wird kein Datum angegeben, wird per default das aktuelle Datum gesetzt. Dies kann mit <code>\date{}</code> vermieden werden.</li>
</ul>
</p>
<ul>
<li>In der Präambel werden die Werte für die Einträge gespeichert.</li>
<li>Das Setzen des Titels erfolgt in der Dokumentumgebung mit dem Befehl <code>\maketitle</code>.</li>
<li>Die genaue Gestaltung hängt ab von der verwendeten Dokumentklasse.</li>
<li>Mehrere Autoren werden mit <code>\and</code> getrennt.</li>
<li>Wird kein Datum angegeben, wird per default das aktuelle Datum gesetzt. Dies kann mit <code>\date{}</code> vermieden werden.</li>
</ul>
</div>
</div>
@ -283,8 +276,8 @@ Mein Lieblingsrezept
<p><pre class="lang-tex hljs"><code>\tableofcontents</code></pre>
<ul>
<li>Nummerierung erfolgt automatisch</li>
<li>Viele Anpassungsmöglichkeiten (Aufzählungszeichen, -tiefe, automatische Benennung, ...)</li>
<li>(Unter-)Kapitel, die nicht im Verzeichnis aufgeführt werden sollen, werden mit einem \* versehen, also z. B. <code>\section\*{}</code>.</li>
<li>Viele Anpassungsmöglichkeiten (Aufzählungszeichen, -tiefe, automatische Benennung, )</li>
<li>(Unter-)Kapitel, die nicht im Verzeichnis aufgeführt werden sollen, werden mit einem `*` versehen, also z.&thinsp;B. <code>\section\*{}</code>.</li>
<li>Am besten zweimal kompilieren</li>
</ul>
</p>
@ -350,9 +343,9 @@ Mein Lieblingsrezept
---
<div class="layout-only">
<div class="layout-content-only">
<div class="layout-content">
<h2 data-category="⌨️ Aufgabe">2. Grundstruktur des Skripts anpassen</h2>
<h2 data-category="Aufgabe" data-task="2">Grundstruktur des Skripts anpassen</h2>
<ul>
<li class="fragment">Füge ein Inhaltsverzeichnis in das Skript ein.</li>
<li class="fragment">Füge im 1. Kapitel xxxxx mehrere neue Absätze mit <code>\section{}</code> und <code>\subsection{}</code> ein und beobachte, was im Inhaltsverzeichnis passiert.</li>

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 124 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 124 KiB

View File

@ -15,7 +15,7 @@
<path style="stroke:none;" d="M 5.546875 -4.359375 L 5.546875 -4.703125 C 5.296875 -4.671875 4.96875 -4.671875 4.71875 -4.671875 L 3.78125 -4.703125 L 3.78125 -4.359375 C 4.109375 -4.359375 4.28125 -4.171875 4.28125 -3.890625 C 4.28125 -3.78125 4.28125 -3.765625 4.21875 -3.625 L 3.125 -0.953125 L 1.90625 -3.875 C 1.859375 -3.984375 1.84375 -4.03125 1.84375 -4.078125 C 1.84375 -4.359375 2.25 -4.359375 2.453125 -4.359375 L 2.453125 -4.703125 L 1.265625 -4.671875 C 0.96875 -4.671875 0.53125 -4.671875 0.203125 -4.703125 L 0.203125 -4.359375 C 0.734375 -4.359375 0.9375 -4.359375 1.09375 -3.984375 L 2.71875 0 L 2.453125 0.640625 C 2.21875 1.25 1.90625 2 1.203125 2 C 1.15625 2 0.90625 2 0.703125 1.796875 C 1.03125 1.75 1.125 1.515625 1.125 1.34375 C 1.125 1.0625 0.921875 0.890625 0.671875 0.890625 C 0.453125 0.890625 0.203125 1.03125 0.203125 1.359375 C 0.203125 1.84375 0.671875 2.234375 1.203125 2.234375 C 1.890625 2.234375 2.34375 1.609375 2.609375 1 L 4.53125 -3.671875 C 4.8125 -4.359375 5.359375 -4.359375 5.546875 -4.359375 Z M 5.546875 -4.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.984375 -2.21875 C 4.984375 -3.609375 4.015625 -4.65625 2.796875 -4.65625 C 2.0625 -4.65625 1.65625 -4.09375 1.4375 -3.578125 L 1.4375 -3.84375 C 1.4375 -6.59375 2.796875 -6.984375 3.34375 -6.984375 C 3.609375 -6.984375 4.0625 -6.921875 4.3125 -6.546875 C 4.140625 -6.546875 3.703125 -6.546875 3.703125 -6.0625 C 3.703125 -5.71875 3.96875 -5.5625 4.203125 -5.5625 C 4.390625 -5.5625 4.71875 -5.65625 4.71875 -6.078125 C 4.71875 -6.734375 4.234375 -7.265625 3.328125 -7.265625 C 1.9375 -7.265625 0.453125 -5.859375 0.453125 -3.453125 C 0.453125 -0.53125 1.71875 0.234375 2.734375 0.234375 C 3.953125 0.234375 4.984375 -0.78125 4.984375 -2.21875 Z M 4 -2.234375 C 4 -1.71875 4 -1.171875 3.8125 -0.78125 C 3.484375 -0.125 2.984375 -0.0625 2.734375 -0.0625 C 2.046875 -0.0625 1.71875 -0.71875 1.65625 -0.890625 C 1.46875 -1.390625 1.46875 -2.265625 1.46875 -2.46875 C 1.46875 -3.3125 1.8125 -4.40625 2.796875 -4.40625 C 2.96875 -4.40625 3.46875 -4.40625 3.8125 -3.734375 C 4 -3.328125 4 -2.765625 4 -2.234375 Z M 4 -2.234375 "/>
<path style="stroke:none;" d="M 4.984375 -1.828125 C 4.984375 -2.21875 4.859375 -2.71875 4.453125 -3.171875 C 4.25 -3.40625 4.0625 -3.515625 3.375 -3.953125 C 4.15625 -4.359375 4.6875 -4.921875 4.6875 -5.640625 C 4.6875 -6.640625 3.71875 -7.265625 2.71875 -7.265625 C 1.640625 -7.265625 0.75 -6.453125 0.75 -5.4375 C 0.75 -5.25 0.78125 -4.75 1.234375 -4.25 C 1.359375 -4.109375 1.75 -3.84375 2.03125 -3.65625 C 1.390625 -3.34375 0.453125 -2.71875 0.453125 -1.640625 C 0.453125 -0.484375 1.578125 0.234375 2.71875 0.234375 C 3.953125 0.234375 4.984375 -0.671875 4.984375 -1.828125 Z M 4.203125 -5.640625 C 4.203125 -5.015625 3.78125 -4.5 3.125 -4.109375 L 1.78125 -4.984375 C 1.28125 -5.3125 1.234375 -5.6875 1.234375 -5.875 C 1.234375 -6.53125 1.9375 -6.984375 2.71875 -6.984375 C 3.515625 -6.984375 4.203125 -6.421875 4.203125 -5.640625 Z M 4.4375 -1.4375 C 4.4375 -0.625 3.625 -0.0625 2.71875 -0.0625 C 1.78125 -0.0625 1 -0.734375 1 -1.640625 C 1 -2.28125 1.359375 -2.984375 2.28125 -3.484375 L 3.625 -2.640625 C 3.921875 -2.4375 4.4375 -2.109375 4.4375 -1.4375 Z M 4.4375 -1.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 2.21875 -0.015625 C 2.21875 -0.703125 1.953125 -1.15625 1.515625 -1.15625 C 1.140625 -1.15625 0.9375 -0.859375 0.9375 -0.578125 C 0.9375 -0.296875 1.125 0 1.515625 0 C 1.671875 0 1.828125 -0.0625 1.953125 -0.171875 C 1.96875 0.6875 1.671875 1.359375 1.1875 1.859375 C 1.125 1.9375 1.109375 1.9375 1.109375 1.984375 C 1.109375 2.0625 1.171875 2.109375 1.21875 2.109375 C 1.359375 2.109375 2.21875 1.25 2.21875 -0.015625 Z M 2.21875 -0.015625 "/>
@ -48,7 +48,7 @@
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 1.390625 -3.5625 L 1.375 -3.5625 C 1.375 -4.578125 1.421875 -5.75 2.21875 -6.515625 C 2.53125 -6.8125 2.921875 -6.984375 3.34375 -6.984375 C 3.703125 -6.984375 4.09375 -6.875 4.296875 -6.5625 C 4.03125 -6.5625 3.75 -6.453125 3.75 -6.109375 C 3.75 -5.859375 3.921875 -5.625 4.203125 -5.625 C 4.453125 -5.625 4.671875 -5.796875 4.6875 -6.0625 L 4.6875 -6.09375 C 4.6875 -6.875 4.03125 -7.265625 3.328125 -7.265625 C 1.5 -7.265625 0.453125 -5.25 0.453125 -3.5625 C 0.453125 -2.28125 0.59375 -0.53125 2 0.078125 C 2.234375 0.171875 2.5 0.234375 2.765625 0.234375 C 3.5625 0.234375 4.171875 -0.234375 4.578125 -0.84375 C 4.859375 -1.265625 4.96875 -1.75 4.96875 -2.234375 C 4.96875 -3.4375 4.140625 -4.65625 2.828125 -4.65625 C 2.1875 -4.65625 1.59375 -4.234375 1.390625 -3.5625 Z M 1.390625 -2.375 L 1.390625 -2.46875 C 1.390625 -3.296875 1.71875 -4.421875 2.875 -4.421875 C 3.609375 -4.421875 3.953125 -3.59375 4.015625 -3.015625 C 4.03125 -2.71875 4.03125 -2.421875 4.03125 -2.125 C 4.03125 -1.390625 3.96875 -0.078125 2.71875 -0.078125 L 2.65625 -0.078125 C 1.6875 -0.15625 1.46875 -1.21875 1.40625 -2.046875 C 1.40625 -2.15625 1.40625 -2.265625 1.390625 -2.375 Z M 1.390625 -2.375 "/>
<path style="stroke:none;" d="M 2.0625 -3.6875 L 2.0625 -3.671875 C 1.25 -3.296875 0.453125 -2.65625 0.453125 -1.65625 C 0.453125 -0.53125 1.578125 0.21875 2.6875 0.21875 C 3.78125 0.21875 4.96875 -0.53125 4.96875 -1.828125 C 4.96875 -2.46875 4.640625 -3.046875 4.125 -3.421875 C 3.859375 -3.609375 3.5625 -3.75 3.3125 -3.953125 C 3.96875 -4.234375 4.65625 -4.859375 4.65625 -5.640625 C 4.65625 -6.59375 3.796875 -7.203125 2.84375 -7.265625 L 2.71875 -7.265625 C 1.734375 -7.265625 0.75 -6.546875 0.75 -5.46875 C 0.75 -4.6875 1.3125 -4.03125 2.0625 -3.6875 Z M 0.984375 -1.53125 C 0.984375 -1.578125 0.96875 -1.640625 0.96875 -1.671875 C 0.96875 -2.46875 1.53125 -3.046875 2.15625 -3.4375 C 2.1875 -3.453125 2.25 -3.5 2.296875 -3.5 C 2.359375 -3.5 2.4375 -3.4375 2.484375 -3.40625 L 2.9375 -3.109375 C 3.5 -2.71875 4.421875 -2.296875 4.421875 -1.5625 C 4.421875 -0.625 3.59375 -0.078125 2.734375 -0.078125 C 1.90625 -0.078125 1.09375 -0.59375 0.984375 -1.53125 Z M 1.21875 -5.765625 L 1.21875 -5.859375 C 1.21875 -6.59375 2.078125 -6.984375 2.671875 -6.984375 C 3.359375 -6.984375 4.203125 -6.546875 4.203125 -5.640625 C 4.203125 -5.015625 3.671875 -4.453125 3.203125 -4.1875 C 3.15625 -4.15625 3.125 -4.125 3.078125 -4.125 C 2.9375 -4.140625 2.703125 -4.359375 2.515625 -4.46875 C 1.984375 -4.828125 1.3125 -5.09375 1.21875 -5.765625 Z M 1.21875 -5.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 0.34375 -4.703125 L 0.34375 -4.484375 L 0.5625 -4.484375 C 0.859375 -4.484375 1.171875 -4.4375 1.171875 -4.03125 L 1.171875 -1.5 C 1.171875 -1.390625 1.1875 -1.25 1.1875 -1.125 C 1.1875 -0.4375 0.796875 -0.234375 0.34375 -0.234375 L 0.34375 -0.015625 L 2.3125 -0.015625 L 2.3125 -0.234375 C 1.875 -0.234375 1.46875 -0.40625 1.46875 -1.078125 L 1.484375 -4.34375 C 1.578125 -3.96875 1.796875 -3.59375 1.953125 -3.21875 C 2.359375 -2.21875 2.796875 -1.234375 3.203125 -0.234375 C 3.234375 -0.15625 3.296875 -0.015625 3.40625 -0.015625 C 3.53125 -0.015625 3.578125 -0.15625 3.625 -0.265625 L 3.953125 -1.046875 C 4.359375 -2.015625 4.765625 -3 5.1875 -3.953125 C 5.25 -4.109375 5.328125 -4.28125 5.375 -4.4375 L 5.390625 -0.703125 C 5.390625 -0.234375 5 -0.234375 4.546875 -0.234375 L 4.546875 -0.015625 L 6.875 -0.015625 L 6.875 -0.234375 L 6.640625 -0.234375 C 6.34375 -0.234375 6.046875 -0.28125 6.046875 -0.734375 L 6.046875 -3.984375 C 6.046875 -4.4375 6.296875 -4.484375 6.875 -4.484375 L 6.875 -4.703125 L 5.484375 -4.703125 C 5.234375 -4.703125 5.203125 -4.53125 5.140625 -4.375 C 4.640625 -3.1875 4.171875 -1.96875 3.625 -0.796875 C 3.09375 -1.984375 2.625 -3.1875 2.109375 -4.375 C 2.0625 -4.53125 2.03125 -4.703125 1.78125 -4.703125 Z M 0.34375 -4.703125 "/>
@ -81,7 +81,7 @@
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 1.453125 -3.59375 L 1.453125 -3.921875 C 1.46875 -4.5 1.5 -4.890625 1.59375 -5.25 C 1.8125 -6.15625 2.359375 -6.8125 3.0625 -6.953125 C 3.125 -6.96875 3.234375 -6.984375 3.34375 -6.984375 C 3.875 -6.984375 4.125 -6.796875 4.25 -6.65625 C 4.328125 -6.578125 4.328125 -6.5625 4.25 -6.5625 C 3.9375 -6.546875 3.84375 -6.203125 3.921875 -5.984375 C 3.953125 -5.859375 4.0625 -5.75 4.296875 -5.75 C 4.390625 -5.75 4.40625 -5.75 4.484375 -5.78125 C 4.71875 -5.875 4.703125 -6.046875 4.703125 -6.1875 C 4.703125 -6.46875 4.609375 -6.6875 4.4375 -6.875 C 4.265625 -7.0625 4 -7.171875 3.6875 -7.234375 C 3.0625 -7.296875 2.5625 -7.21875 2.03125 -6.84375 C 0.953125 -6.15625 0.453125 -4.828125 0.453125 -3.40625 C 0.453125 -2.625 0.578125 -1.921875 0.703125 -1.546875 C 1.078125 -0.3125 1.859375 0.203125 2.65625 0.234375 C 2.984375 0.25 3.5625 0.25 4.234375 -0.375 C 4.75 -0.90625 4.984375 -1.4375 4.984375 -2.21875 C 4.984375 -2.953125 4.78125 -3.515625 4.21875 -4.0625 C 3.84375 -4.46875 3.375 -4.65625 2.828125 -4.65625 C 2.296875 -4.65625 1.765625 -4.390625 1.453125 -3.59375 Z M 3.921875 -3.328125 C 3.96875 -3.09375 3.984375 -2.921875 3.984375 -2.40625 C 3.984375 -1.46875 4.015625 -0.890625 3.515625 -0.390625 C 3.21875 -0.09375 2.90625 -0.09375 2.765625 -0.09375 C 2.1875 -0.09375 1.9375 -0.4375 1.828125 -0.609375 C 1.640625 -0.890625 1.484375 -1.3125 1.484375 -2.359375 C 1.484375 -2.578125 1.484375 -2.796875 1.5 -2.875 C 1.53125 -3.1875 1.75 -4.40625 2.796875 -4.40625 C 3.484375 -4.40625 3.84375 -3.828125 3.921875 -3.328125 Z M 3.921875 -3.328125 "/>
<path style="stroke:none;" d="M 2.703125 0.234375 C 3.09375 0.234375 3.40625 0.171875 3.78125 0 C 5.1875 -0.671875 5.390625 -2.4375 4.21875 -3.40625 C 4.171875 -3.453125 3.953125 -3.578125 3.765625 -3.703125 L 3.390625 -3.953125 L 3.5 -4.03125 C 4.171875 -4.390625 4.6875 -4.953125 4.6875 -5.625 C 4.6875 -6.59375 3.84375 -7.09375 3.125 -7.234375 C 2.96875 -7.25 2.625 -7.28125 2.484375 -7.25 C 1.515625 -7.125 0.796875 -6.40625 0.75 -5.5 C 0.734375 -5.03125 0.921875 -4.578125 1.25 -4.234375 C 1.484375 -3.96875 1.75 -3.84375 2.015625 -3.65625 C 1.578125 -3.421875 0.46875 -2.859375 0.46875 -1.65625 C 0.46875 -0.5625 1.46875 0.234375 2.703125 0.234375 Z M 4.171875 -5.640625 C 4.171875 -5.046875 3.78125 -4.546875 3.21875 -4.171875 L 3.125 -4.125 L 2.453125 -4.546875 C 1.671875 -5.0625 1.28125 -5.25 1.28125 -5.84375 C 1.28125 -6.03125 1.328125 -6.203125 1.421875 -6.359375 C 1.640625 -6.703125 2.0625 -6.921875 2.546875 -6.96875 C 3.40625 -7.0625 4.171875 -6.4375 4.171875 -5.640625 Z M 3.984375 -2.359375 C 4.234375 -2.125 4.375 -1.828125 4.390625 -1.515625 C 4.4375 -0.796875 3.8125 -0.1875 2.9375 -0.09375 C 2.375 -0.03125 1.890625 -0.203125 1.5 -0.578125 C 1.0625 -1.015625 1.0625 -1.421875 1.0625 -1.671875 C 1.0625 -2.3125 1.390625 -2.84375 1.9375 -3.265625 C 2.046875 -3.34375 2.28125 -3.484375 2.296875 -3.484375 C 2.296875 -3.484375 3.65625 -2.625 3.984375 -2.359375 Z M 3.984375 -2.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 1.515625 -6.78125 L 1.515625 -0.90625 C 1.4375 -0.71875 1.34375 -0.375 0.5625 -0.34375 L 0.390625 -0.34375 L 0.390625 0 L 0.484375 0 C 0.609375 -0.03125 2.6875 -0.03125 2.875 0 L 2.953125 0 L 2.953125 -0.34375 L 2.796875 -0.34375 C 2.40625 -0.359375 1.96875 -0.453125 1.84375 -0.90625 L 1.828125 -3.96875 C 1.828125 -6.5 1.828125 -7.03125 1.84375 -7 C 1.859375 -6.984375 2.46875 -5.421875 3.203125 -3.53125 C 3.921875 -1.640625 4.53125 -0.09375 4.53125 -0.078125 C 4.5625 -0.03125 4.640625 0 4.6875 0 C 4.734375 0 4.796875 -0.03125 4.828125 -0.078125 C 4.84375 -0.09375 5.46875 -1.671875 6.203125 -3.609375 L 7.5625 -7.109375 L 7.5625 -0.671875 L 7.546875 -0.59375 C 7.484375 -0.390625 7.3125 -0.34375 6.640625 -0.34375 L 6.453125 -0.34375 L 6.453125 0 L 6.546875 0 C 6.765625 -0.03125 9.265625 -0.03125 9.484375 0 L 9.59375 0 L 9.59375 -0.34375 L 9.390625 -0.34375 C 8.734375 -0.34375 8.578125 -0.34375 8.46875 -0.671875 L 8.46875 -6.78125 C 8.546875 -7.03125 8.59375 -7.09375 9.390625 -7.09375 L 9.59375 -7.09375 L 9.59375 -7.453125 L 8.5625 -7.453125 C 7.859375 -7.453125 7.53125 -7.453125 7.5 -7.4375 C 7.421875 -7.40625 7.5 -7.5625 6.1875 -4.25 L 5 -1.109375 L 4.96875 -1.171875 C 4.96875 -1.1875 4.421875 -2.59375 3.765625 -4.28125 C 2.890625 -6.515625 2.5625 -7.359375 2.546875 -7.390625 C 2.484375 -7.453125 2.53125 -7.453125 1.421875 -7.453125 L 0.390625 -7.453125 L 0.390625 -7.09375 L 0.59375 -7.09375 C 1.234375 -7.09375 1.40625 -7.109375 1.515625 -6.78125 Z M 1.515625 -6.78125 "/>

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -15,7 +15,7 @@
<path style="stroke:none;" d="M 5.546875 -4.359375 L 5.546875 -4.703125 C 5.296875 -4.671875 4.96875 -4.671875 4.71875 -4.671875 L 3.78125 -4.703125 L 3.78125 -4.359375 C 4.109375 -4.359375 4.28125 -4.171875 4.28125 -3.890625 C 4.28125 -3.78125 4.28125 -3.765625 4.21875 -3.625 L 3.125 -0.953125 L 1.90625 -3.875 C 1.859375 -3.984375 1.84375 -4.03125 1.84375 -4.078125 C 1.84375 -4.359375 2.25 -4.359375 2.453125 -4.359375 L 2.453125 -4.703125 L 1.265625 -4.671875 C 0.96875 -4.671875 0.53125 -4.671875 0.203125 -4.703125 L 0.203125 -4.359375 C 0.734375 -4.359375 0.9375 -4.359375 1.09375 -3.984375 L 2.71875 0 L 2.453125 0.640625 C 2.21875 1.25 1.90625 2 1.203125 2 C 1.15625 2 0.90625 2 0.703125 1.796875 C 1.03125 1.75 1.125 1.515625 1.125 1.34375 C 1.125 1.0625 0.921875 0.890625 0.671875 0.890625 C 0.453125 0.890625 0.203125 1.03125 0.203125 1.359375 C 0.203125 1.84375 0.671875 2.234375 1.203125 2.234375 C 1.890625 2.234375 2.34375 1.609375 2.609375 1 L 4.53125 -3.671875 C 4.8125 -4.359375 5.359375 -4.359375 5.546875 -4.359375 Z M 5.546875 -4.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.984375 -2.21875 C 4.984375 -3.609375 4.015625 -4.65625 2.796875 -4.65625 C 2.0625 -4.65625 1.65625 -4.09375 1.4375 -3.578125 L 1.4375 -3.84375 C 1.4375 -6.59375 2.796875 -6.984375 3.34375 -6.984375 C 3.609375 -6.984375 4.0625 -6.921875 4.3125 -6.546875 C 4.140625 -6.546875 3.703125 -6.546875 3.703125 -6.0625 C 3.703125 -5.71875 3.96875 -5.5625 4.203125 -5.5625 C 4.390625 -5.5625 4.71875 -5.65625 4.71875 -6.078125 C 4.71875 -6.734375 4.234375 -7.265625 3.328125 -7.265625 C 1.9375 -7.265625 0.453125 -5.859375 0.453125 -3.453125 C 0.453125 -0.53125 1.71875 0.234375 2.734375 0.234375 C 3.953125 0.234375 4.984375 -0.78125 4.984375 -2.21875 Z M 4 -2.234375 C 4 -1.71875 4 -1.171875 3.8125 -0.78125 C 3.484375 -0.125 2.984375 -0.0625 2.734375 -0.0625 C 2.046875 -0.0625 1.71875 -0.71875 1.65625 -0.890625 C 1.46875 -1.390625 1.46875 -2.265625 1.46875 -2.46875 C 1.46875 -3.3125 1.8125 -4.40625 2.796875 -4.40625 C 2.96875 -4.40625 3.46875 -4.40625 3.8125 -3.734375 C 4 -3.328125 4 -2.765625 4 -2.234375 Z M 4 -2.234375 "/>
<path style="stroke:none;" d="M 4.984375 -1.828125 C 4.984375 -2.21875 4.859375 -2.71875 4.453125 -3.171875 C 4.25 -3.40625 4.0625 -3.515625 3.375 -3.953125 C 4.15625 -4.359375 4.6875 -4.921875 4.6875 -5.640625 C 4.6875 -6.640625 3.71875 -7.265625 2.71875 -7.265625 C 1.640625 -7.265625 0.75 -6.453125 0.75 -5.4375 C 0.75 -5.25 0.78125 -4.75 1.234375 -4.25 C 1.359375 -4.109375 1.75 -3.84375 2.03125 -3.65625 C 1.390625 -3.34375 0.453125 -2.71875 0.453125 -1.640625 C 0.453125 -0.484375 1.578125 0.234375 2.71875 0.234375 C 3.953125 0.234375 4.984375 -0.671875 4.984375 -1.828125 Z M 4.203125 -5.640625 C 4.203125 -5.015625 3.78125 -4.5 3.125 -4.109375 L 1.78125 -4.984375 C 1.28125 -5.3125 1.234375 -5.6875 1.234375 -5.875 C 1.234375 -6.53125 1.9375 -6.984375 2.71875 -6.984375 C 3.515625 -6.984375 4.203125 -6.421875 4.203125 -5.640625 Z M 4.4375 -1.4375 C 4.4375 -0.625 3.625 -0.0625 2.71875 -0.0625 C 1.78125 -0.0625 1 -0.734375 1 -1.640625 C 1 -2.28125 1.359375 -2.984375 2.28125 -3.484375 L 3.625 -2.640625 C 3.921875 -2.4375 4.4375 -2.109375 4.4375 -1.4375 Z M 4.4375 -1.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 2.21875 -0.015625 C 2.21875 -0.703125 1.953125 -1.15625 1.515625 -1.15625 C 1.140625 -1.15625 0.9375 -0.859375 0.9375 -0.578125 C 0.9375 -0.296875 1.125 0 1.515625 0 C 1.671875 0 1.828125 -0.0625 1.953125 -0.171875 C 1.96875 0.6875 1.671875 1.359375 1.1875 1.859375 C 1.125 1.9375 1.109375 1.9375 1.109375 1.984375 C 1.109375 2.0625 1.171875 2.109375 1.21875 2.109375 C 1.359375 2.109375 2.21875 1.25 2.21875 -0.015625 Z M 2.21875 -0.015625 "/>
@ -48,7 +48,7 @@
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 1.390625 -3.5625 L 1.375 -3.5625 C 1.375 -4.578125 1.421875 -5.75 2.21875 -6.515625 C 2.53125 -6.8125 2.921875 -6.984375 3.34375 -6.984375 C 3.703125 -6.984375 4.09375 -6.875 4.296875 -6.5625 C 4.03125 -6.5625 3.75 -6.453125 3.75 -6.109375 C 3.75 -5.859375 3.921875 -5.625 4.203125 -5.625 C 4.453125 -5.625 4.671875 -5.796875 4.6875 -6.0625 L 4.6875 -6.09375 C 4.6875 -6.875 4.03125 -7.265625 3.328125 -7.265625 C 1.5 -7.265625 0.453125 -5.25 0.453125 -3.5625 C 0.453125 -2.28125 0.59375 -0.53125 2 0.078125 C 2.234375 0.171875 2.5 0.234375 2.765625 0.234375 C 3.5625 0.234375 4.171875 -0.234375 4.578125 -0.84375 C 4.859375 -1.265625 4.96875 -1.75 4.96875 -2.234375 C 4.96875 -3.4375 4.140625 -4.65625 2.828125 -4.65625 C 2.1875 -4.65625 1.59375 -4.234375 1.390625 -3.5625 Z M 1.390625 -2.375 L 1.390625 -2.46875 C 1.390625 -3.296875 1.71875 -4.421875 2.875 -4.421875 C 3.609375 -4.421875 3.953125 -3.59375 4.015625 -3.015625 C 4.03125 -2.71875 4.03125 -2.421875 4.03125 -2.125 C 4.03125 -1.390625 3.96875 -0.078125 2.71875 -0.078125 L 2.65625 -0.078125 C 1.6875 -0.15625 1.46875 -1.21875 1.40625 -2.046875 C 1.40625 -2.15625 1.40625 -2.265625 1.390625 -2.375 Z M 1.390625 -2.375 "/>
<path style="stroke:none;" d="M 2.0625 -3.6875 L 2.0625 -3.671875 C 1.25 -3.296875 0.453125 -2.65625 0.453125 -1.65625 C 0.453125 -0.53125 1.578125 0.21875 2.6875 0.21875 C 3.78125 0.21875 4.96875 -0.53125 4.96875 -1.828125 C 4.96875 -2.46875 4.640625 -3.046875 4.125 -3.421875 C 3.859375 -3.609375 3.5625 -3.75 3.3125 -3.953125 C 3.96875 -4.234375 4.65625 -4.859375 4.65625 -5.640625 C 4.65625 -6.59375 3.796875 -7.203125 2.84375 -7.265625 L 2.71875 -7.265625 C 1.734375 -7.265625 0.75 -6.546875 0.75 -5.46875 C 0.75 -4.6875 1.3125 -4.03125 2.0625 -3.6875 Z M 0.984375 -1.53125 C 0.984375 -1.578125 0.96875 -1.640625 0.96875 -1.671875 C 0.96875 -2.46875 1.53125 -3.046875 2.15625 -3.4375 C 2.1875 -3.453125 2.25 -3.5 2.296875 -3.5 C 2.359375 -3.5 2.4375 -3.4375 2.484375 -3.40625 L 2.9375 -3.109375 C 3.5 -2.71875 4.421875 -2.296875 4.421875 -1.5625 C 4.421875 -0.625 3.59375 -0.078125 2.734375 -0.078125 C 1.90625 -0.078125 1.09375 -0.59375 0.984375 -1.53125 Z M 1.21875 -5.765625 L 1.21875 -5.859375 C 1.21875 -6.59375 2.078125 -6.984375 2.671875 -6.984375 C 3.359375 -6.984375 4.203125 -6.546875 4.203125 -5.640625 C 4.203125 -5.015625 3.671875 -4.453125 3.203125 -4.1875 C 3.15625 -4.15625 3.125 -4.125 3.078125 -4.125 C 2.9375 -4.140625 2.703125 -4.359375 2.515625 -4.46875 C 1.984375 -4.828125 1.3125 -5.09375 1.21875 -5.765625 Z M 1.21875 -5.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 0.34375 -4.703125 L 0.34375 -4.484375 L 0.5625 -4.484375 C 0.859375 -4.484375 1.171875 -4.4375 1.171875 -4.03125 L 1.171875 -1.5 C 1.171875 -1.390625 1.1875 -1.25 1.1875 -1.125 C 1.1875 -0.4375 0.796875 -0.234375 0.34375 -0.234375 L 0.34375 -0.015625 L 2.3125 -0.015625 L 2.3125 -0.234375 C 1.875 -0.234375 1.46875 -0.40625 1.46875 -1.078125 L 1.484375 -4.34375 C 1.578125 -3.96875 1.796875 -3.59375 1.953125 -3.21875 C 2.359375 -2.21875 2.796875 -1.234375 3.203125 -0.234375 C 3.234375 -0.15625 3.296875 -0.015625 3.40625 -0.015625 C 3.53125 -0.015625 3.578125 -0.15625 3.625 -0.265625 L 3.953125 -1.046875 C 4.359375 -2.015625 4.765625 -3 5.1875 -3.953125 C 5.25 -4.109375 5.328125 -4.28125 5.375 -4.4375 L 5.390625 -0.703125 C 5.390625 -0.234375 5 -0.234375 4.546875 -0.234375 L 4.546875 -0.015625 L 6.875 -0.015625 L 6.875 -0.234375 L 6.640625 -0.234375 C 6.34375 -0.234375 6.046875 -0.28125 6.046875 -0.734375 L 6.046875 -3.984375 C 6.046875 -4.4375 6.296875 -4.484375 6.875 -4.484375 L 6.875 -4.703125 L 5.484375 -4.703125 C 5.234375 -4.703125 5.203125 -4.53125 5.140625 -4.375 C 4.640625 -3.1875 4.171875 -1.96875 3.625 -0.796875 C 3.09375 -1.984375 2.625 -3.1875 2.109375 -4.375 C 2.0625 -4.53125 2.03125 -4.703125 1.78125 -4.703125 Z M 0.34375 -4.703125 "/>
@ -81,7 +81,7 @@
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 1.453125 -3.59375 L 1.453125 -3.921875 C 1.46875 -4.5 1.5 -4.890625 1.59375 -5.25 C 1.8125 -6.15625 2.359375 -6.8125 3.0625 -6.953125 C 3.125 -6.96875 3.234375 -6.984375 3.34375 -6.984375 C 3.875 -6.984375 4.125 -6.796875 4.25 -6.65625 C 4.328125 -6.578125 4.328125 -6.5625 4.25 -6.5625 C 3.9375 -6.546875 3.84375 -6.203125 3.921875 -5.984375 C 3.953125 -5.859375 4.0625 -5.75 4.296875 -5.75 C 4.390625 -5.75 4.40625 -5.75 4.484375 -5.78125 C 4.71875 -5.875 4.703125 -6.046875 4.703125 -6.1875 C 4.703125 -6.46875 4.609375 -6.6875 4.4375 -6.875 C 4.265625 -7.0625 4 -7.171875 3.6875 -7.234375 C 3.0625 -7.296875 2.5625 -7.21875 2.03125 -6.84375 C 0.953125 -6.15625 0.453125 -4.828125 0.453125 -3.40625 C 0.453125 -2.625 0.578125 -1.921875 0.703125 -1.546875 C 1.078125 -0.3125 1.859375 0.203125 2.65625 0.234375 C 2.984375 0.25 3.5625 0.25 4.234375 -0.375 C 4.75 -0.90625 4.984375 -1.4375 4.984375 -2.21875 C 4.984375 -2.953125 4.78125 -3.515625 4.21875 -4.0625 C 3.84375 -4.46875 3.375 -4.65625 2.828125 -4.65625 C 2.296875 -4.65625 1.765625 -4.390625 1.453125 -3.59375 Z M 3.921875 -3.328125 C 3.96875 -3.09375 3.984375 -2.921875 3.984375 -2.40625 C 3.984375 -1.46875 4.015625 -0.890625 3.515625 -0.390625 C 3.21875 -0.09375 2.90625 -0.09375 2.765625 -0.09375 C 2.1875 -0.09375 1.9375 -0.4375 1.828125 -0.609375 C 1.640625 -0.890625 1.484375 -1.3125 1.484375 -2.359375 C 1.484375 -2.578125 1.484375 -2.796875 1.5 -2.875 C 1.53125 -3.1875 1.75 -4.40625 2.796875 -4.40625 C 3.484375 -4.40625 3.84375 -3.828125 3.921875 -3.328125 Z M 3.921875 -3.328125 "/>
<path style="stroke:none;" d="M 2.703125 0.234375 C 3.09375 0.234375 3.40625 0.171875 3.78125 0 C 5.1875 -0.671875 5.390625 -2.4375 4.21875 -3.40625 C 4.171875 -3.453125 3.953125 -3.578125 3.765625 -3.703125 L 3.390625 -3.953125 L 3.5 -4.03125 C 4.171875 -4.390625 4.6875 -4.953125 4.6875 -5.625 C 4.6875 -6.59375 3.84375 -7.09375 3.125 -7.234375 C 2.96875 -7.25 2.625 -7.28125 2.484375 -7.25 C 1.515625 -7.125 0.796875 -6.40625 0.75 -5.5 C 0.734375 -5.03125 0.921875 -4.578125 1.25 -4.234375 C 1.484375 -3.96875 1.75 -3.84375 2.015625 -3.65625 C 1.578125 -3.421875 0.46875 -2.859375 0.46875 -1.65625 C 0.46875 -0.5625 1.46875 0.234375 2.703125 0.234375 Z M 4.171875 -5.640625 C 4.171875 -5.046875 3.78125 -4.546875 3.21875 -4.171875 L 3.125 -4.125 L 2.453125 -4.546875 C 1.671875 -5.0625 1.28125 -5.25 1.28125 -5.84375 C 1.28125 -6.03125 1.328125 -6.203125 1.421875 -6.359375 C 1.640625 -6.703125 2.0625 -6.921875 2.546875 -6.96875 C 3.40625 -7.0625 4.171875 -6.4375 4.171875 -5.640625 Z M 3.984375 -2.359375 C 4.234375 -2.125 4.375 -1.828125 4.390625 -1.515625 C 4.4375 -0.796875 3.8125 -0.1875 2.9375 -0.09375 C 2.375 -0.03125 1.890625 -0.203125 1.5 -0.578125 C 1.0625 -1.015625 1.0625 -1.421875 1.0625 -1.671875 C 1.0625 -2.3125 1.390625 -2.84375 1.9375 -3.265625 C 2.046875 -3.34375 2.28125 -3.484375 2.296875 -3.484375 C 2.296875 -3.484375 3.65625 -2.625 3.984375 -2.359375 Z M 3.984375 -2.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 1.515625 -6.78125 L 1.515625 -0.90625 C 1.4375 -0.71875 1.34375 -0.375 0.5625 -0.34375 L 0.390625 -0.34375 L 0.390625 0 L 0.484375 0 C 0.609375 -0.03125 2.6875 -0.03125 2.875 0 L 2.953125 0 L 2.953125 -0.34375 L 2.796875 -0.34375 C 2.40625 -0.359375 1.96875 -0.453125 1.84375 -0.90625 L 1.828125 -3.96875 C 1.828125 -6.5 1.828125 -7.03125 1.84375 -7 C 1.859375 -6.984375 2.46875 -5.421875 3.203125 -3.53125 C 3.921875 -1.640625 4.53125 -0.09375 4.53125 -0.078125 C 4.5625 -0.03125 4.640625 0 4.6875 0 C 4.734375 0 4.796875 -0.03125 4.828125 -0.078125 C 4.84375 -0.09375 5.46875 -1.671875 6.203125 -3.609375 L 7.5625 -7.109375 L 7.5625 -0.671875 L 7.546875 -0.59375 C 7.484375 -0.390625 7.3125 -0.34375 6.640625 -0.34375 L 6.453125 -0.34375 L 6.453125 0 L 6.546875 0 C 6.765625 -0.03125 9.265625 -0.03125 9.484375 0 L 9.59375 0 L 9.59375 -0.34375 L 9.390625 -0.34375 C 8.734375 -0.34375 8.578125 -0.34375 8.46875 -0.671875 L 8.46875 -6.78125 C 8.546875 -7.03125 8.59375 -7.09375 9.390625 -7.09375 L 9.59375 -7.09375 L 9.59375 -7.453125 L 8.5625 -7.453125 C 7.859375 -7.453125 7.53125 -7.453125 7.5 -7.4375 C 7.421875 -7.40625 7.5 -7.5625 6.1875 -4.25 L 5 -1.109375 L 4.96875 -1.171875 C 4.96875 -1.1875 4.421875 -2.59375 3.765625 -4.28125 C 2.890625 -6.515625 2.5625 -7.359375 2.546875 -7.390625 C 2.484375 -7.453125 2.53125 -7.453125 1.421875 -7.453125 L 0.390625 -7.453125 L 0.390625 -7.09375 L 0.59375 -7.09375 C 1.234375 -7.09375 1.40625 -7.109375 1.515625 -6.78125 Z M 1.515625 -6.78125 "/>

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -126,7 +126,7 @@
<path style="stroke:none;" d="M 4.46875 -5.78125 L 4.453125 -5.78125 C 4.109375 -6.15625 3.546875 -6.3125 3.046875 -6.3125 C 1.859375 -6.3125 0.859375 -5.40625 0.859375 -4.21875 C 0.859375 -3.71875 1.078125 -3.078125 1.484375 -2.75 L 1.484375 -2.734375 C 1.21875 -2.46875 1.0625 -1.984375 1.0625 -1.578125 C 1.0625 -1.0625 1.296875 -0.6875 1.671875 -0.34375 C 1.03125 -0.21875 0.375 0.40625 0.375 1.125 C 0.375 2.40625 2.203125 2.90625 3.390625 2.90625 C 4.53125 2.90625 6.4375 2.5 6.4375 1.046875 C 6.4375 0.1875 5.890625 -0.40625 5.125 -0.671875 C 4.53125 -0.859375 3.921875 -0.875 3.296875 -0.875 L 2.484375 -0.875 C 1.78125 -0.875 1.421875 -1.296875 1.421875 -1.875 L 1.421875 -1.984375 C 1.46875 -2.203125 1.546875 -2.390625 1.65625 -2.59375 L 1.671875 -2.59375 C 2.015625 -2.265625 2.578125 -2.140625 3.03125 -2.140625 C 4.09375 -2.140625 5.015625 -2.828125 5.1875 -4.078125 L 5.1875 -4.21875 C 5.1875 -4.671875 5.03125 -5.15625 4.734375 -5.515625 C 4.703125 -5.53125 4.6875 -5.578125 4.6875 -5.625 L 4.6875 -5.65625 C 4.875 -5.96875 5.59375 -6.1875 5.9375 -6.1875 C 6 -6.1875 6.046875 -6.171875 6.125 -6.15625 C 6.015625 -6.078125 5.921875 -5.96875 5.921875 -5.828125 C 5.921875 -5.625 6.09375 -5.46875 6.28125 -5.46875 C 6.484375 -5.46875 6.625 -5.65625 6.625 -5.84375 C 6.625 -6.1875 6.3125 -6.4375 5.953125 -6.4375 C 5.46875 -6.4375 4.8125 -6.21875 4.46875 -5.78125 Z M 0.984375 1.21875 L 0.984375 1.109375 C 0.984375 0.265625 1.6875 -0.1875 2.515625 -0.1875 L 3.421875 -0.1875 C 4.140625 -0.1875 5.828125 -0.1875 5.828125 1.140625 C 5.828125 2.359375 3.890625 2.640625 3.40625 2.640625 C 2.484375 2.640625 1.140625 2.234375 0.984375 1.21875 Z M 1.78125 -3.9375 L 1.78125 -4.125 C 1.78125 -4.90625 1.953125 -6.03125 3.046875 -6.03125 C 3.984375 -6.03125 4.28125 -5.0625 4.28125 -4.21875 C 4.28125 -3.59375 4.203125 -2.890625 3.546875 -2.53125 C 3.390625 -2.453125 3.21875 -2.40625 3.046875 -2.40625 C 2.671875 -2.40625 2.3125 -2.59375 2.078125 -2.90625 C 1.84375 -3.21875 1.828125 -3.578125 1.78125 -3.9375 Z M 1.78125 -3.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-29">
<path style="stroke:none;" d="M 1.6875 -4.5625 L 1.671875 -4.5625 C 1.671875 -5.9375 1.71875 -7.484375 2.78125 -8.546875 C 3.1875 -8.953125 3.6875 -9.171875 4.234375 -9.171875 C 4.6875 -9.171875 5.21875 -9 5.484375 -8.578125 C 5.15625 -8.578125 4.78125 -8.484375 4.78125 -8.03125 C 4.78125 -7.75 4.984375 -7.4375 5.328125 -7.4375 C 5.640625 -7.4375 5.890625 -7.671875 5.90625 -8 L 5.90625 -8.046875 C 5.90625 -9 5.125 -9.515625 4.15625 -9.515625 C 1.796875 -9.515625 0.609375 -6.71875 0.609375 -4.6875 C 0.609375 -3.015625 0.796875 -0.609375 2.625 0.09375 C 2.890625 0.203125 3.171875 0.25 3.453125 0.25 C 4.640625 0.25 5.59375 -0.625 6 -1.65625 C 6.171875 -2.0625 6.203125 -2.53125 6.203125 -2.96875 C 6.203125 -4.40625 5.25 -6.078125 3.578125 -6.078125 C 2.78125 -6.078125 1.921875 -5.53125 1.6875 -4.5625 Z M 1.703125 -3.15625 L 1.703125 -3.265625 C 1.703125 -4.265625 2.09375 -5.828125 3.515625 -5.828125 L 3.625 -5.828125 C 5.125 -5.578125 5.140625 -3.953125 5.140625 -2.8125 C 5.140625 -1.84375 5.0625 -0.125 3.421875 -0.125 L 3.34375 -0.125 C 2.09375 -0.21875 1.796875 -1.65625 1.71875 -2.71875 C 1.71875 -2.875 1.71875 -3.015625 1.703125 -3.15625 Z M 1.703125 -3.15625 "/>
<path style="stroke:none;" d="M 2.703125 -4.859375 L 2.703125 -4.84375 C 1.53125 -4.421875 0.578125 -3.34375 0.578125 -2.171875 C 0.578125 -0.765625 1.9375 0.25 3.375 0.25 C 4.6875 0.25 6.234375 -0.65625 6.234375 -2.421875 C 6.234375 -3.78125 5.125 -4.484375 4.09375 -5.171875 C 4.9375 -5.59375 5.859375 -6.328125 5.859375 -7.40625 C 5.859375 -8.765625 4.5625 -9.515625 3.40625 -9.515625 L 3.25 -9.515625 C 2.015625 -9.453125 0.953125 -8.46875 0.953125 -7.203125 C 0.953125 -6.296875 1.453125 -5.6875 2.21875 -5.15625 C 2.375 -5.0625 2.53125 -4.9375 2.703125 -4.859375 Z M 1.140625 -2.03125 C 1.140625 -2.09375 1.140625 -2.171875 1.140625 -2.21875 C 1.140625 -3.234375 1.921875 -4.09375 2.71875 -4.5625 C 2.78125 -4.59375 2.875 -4.640625 2.9375 -4.640625 C 3.03125 -4.640625 3.125 -4.5625 3.203125 -4.5 L 4.578125 -3.578125 C 5.171875 -3.15625 5.59375 -2.765625 5.671875 -2.078125 C 5.671875 -0.859375 4.59375 -0.125 3.4375 -0.125 C 2.34375 -0.125 1.3125 -0.796875 1.140625 -2.03125 Z M 1.484375 -7.53125 L 1.484375 -7.65625 C 1.484375 -8.640625 2.578125 -9.171875 3.390625 -9.171875 C 4.28125 -9.171875 5.15625 -8.640625 5.328125 -7.5625 C 5.328125 -7.5 5.34375 -7.4375 5.34375 -7.40625 C 5.34375 -6.5625 4.671875 -5.890625 4.03125 -5.46875 C 3.96875 -5.4375 3.921875 -5.375 3.84375 -5.375 C 3.703125 -5.375 3.375 -5.671875 3.15625 -5.8125 C 2.46875 -6.25 1.609375 -6.6875 1.484375 -7.53125 Z M 1.484375 -7.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-30">
<path style="stroke:none;" d="M 1.78125 -1.28125 C 1.46875 -1.21875 1.25 -0.953125 1.25 -0.65625 C 1.25 -0.328125 1.515625 -0.015625 1.875 -0.015625 C 2.234375 -0.015625 2.53125 -0.296875 2.53125 -0.640625 C 2.53125 -0.96875 2.25 -1.296875 1.890625 -1.296875 C 1.84375 -1.296875 1.828125 -1.296875 1.78125 -1.28125 Z M 1.78125 -1.28125 "/>

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 134 KiB

View File

@ -126,7 +126,7 @@
<path style="stroke:none;" d="M 4.46875 -5.78125 L 4.453125 -5.78125 C 4.109375 -6.15625 3.546875 -6.3125 3.046875 -6.3125 C 1.859375 -6.3125 0.859375 -5.40625 0.859375 -4.21875 C 0.859375 -3.71875 1.078125 -3.078125 1.484375 -2.75 L 1.484375 -2.734375 C 1.21875 -2.46875 1.0625 -1.984375 1.0625 -1.578125 C 1.0625 -1.0625 1.296875 -0.6875 1.671875 -0.34375 C 1.03125 -0.21875 0.375 0.40625 0.375 1.125 C 0.375 2.40625 2.203125 2.90625 3.390625 2.90625 C 4.53125 2.90625 6.4375 2.5 6.4375 1.046875 C 6.4375 0.1875 5.890625 -0.40625 5.125 -0.671875 C 4.53125 -0.859375 3.921875 -0.875 3.296875 -0.875 L 2.484375 -0.875 C 1.78125 -0.875 1.421875 -1.296875 1.421875 -1.875 L 1.421875 -1.984375 C 1.46875 -2.203125 1.546875 -2.390625 1.65625 -2.59375 L 1.671875 -2.59375 C 2.015625 -2.265625 2.578125 -2.140625 3.03125 -2.140625 C 4.09375 -2.140625 5.015625 -2.828125 5.1875 -4.078125 L 5.1875 -4.21875 C 5.1875 -4.671875 5.03125 -5.15625 4.734375 -5.515625 C 4.703125 -5.53125 4.6875 -5.578125 4.6875 -5.625 L 4.6875 -5.65625 C 4.875 -5.96875 5.59375 -6.1875 5.9375 -6.1875 C 6 -6.1875 6.046875 -6.171875 6.125 -6.15625 C 6.015625 -6.078125 5.921875 -5.96875 5.921875 -5.828125 C 5.921875 -5.625 6.09375 -5.46875 6.28125 -5.46875 C 6.484375 -5.46875 6.625 -5.65625 6.625 -5.84375 C 6.625 -6.1875 6.3125 -6.4375 5.953125 -6.4375 C 5.46875 -6.4375 4.8125 -6.21875 4.46875 -5.78125 Z M 0.984375 1.21875 L 0.984375 1.109375 C 0.984375 0.265625 1.6875 -0.1875 2.515625 -0.1875 L 3.421875 -0.1875 C 4.140625 -0.1875 5.828125 -0.1875 5.828125 1.140625 C 5.828125 2.359375 3.890625 2.640625 3.40625 2.640625 C 2.484375 2.640625 1.140625 2.234375 0.984375 1.21875 Z M 1.78125 -3.9375 L 1.78125 -4.125 C 1.78125 -4.90625 1.953125 -6.03125 3.046875 -6.03125 C 3.984375 -6.03125 4.28125 -5.0625 4.28125 -4.21875 C 4.28125 -3.59375 4.203125 -2.890625 3.546875 -2.53125 C 3.390625 -2.453125 3.21875 -2.40625 3.046875 -2.40625 C 2.671875 -2.40625 2.3125 -2.59375 2.078125 -2.90625 C 1.84375 -3.21875 1.828125 -3.578125 1.78125 -3.9375 Z M 1.78125 -3.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-29">
<path style="stroke:none;" d="M 1.6875 -4.5625 L 1.671875 -4.5625 C 1.671875 -5.9375 1.71875 -7.484375 2.78125 -8.546875 C 3.1875 -8.953125 3.6875 -9.171875 4.234375 -9.171875 C 4.6875 -9.171875 5.21875 -9 5.484375 -8.578125 C 5.15625 -8.578125 4.78125 -8.484375 4.78125 -8.03125 C 4.78125 -7.75 4.984375 -7.4375 5.328125 -7.4375 C 5.640625 -7.4375 5.890625 -7.671875 5.90625 -8 L 5.90625 -8.046875 C 5.90625 -9 5.125 -9.515625 4.15625 -9.515625 C 1.796875 -9.515625 0.609375 -6.71875 0.609375 -4.6875 C 0.609375 -3.015625 0.796875 -0.609375 2.625 0.09375 C 2.890625 0.203125 3.171875 0.25 3.453125 0.25 C 4.640625 0.25 5.59375 -0.625 6 -1.65625 C 6.171875 -2.0625 6.203125 -2.53125 6.203125 -2.96875 C 6.203125 -4.40625 5.25 -6.078125 3.578125 -6.078125 C 2.78125 -6.078125 1.921875 -5.53125 1.6875 -4.5625 Z M 1.703125 -3.15625 L 1.703125 -3.265625 C 1.703125 -4.265625 2.09375 -5.828125 3.515625 -5.828125 L 3.625 -5.828125 C 5.125 -5.578125 5.140625 -3.953125 5.140625 -2.8125 C 5.140625 -1.84375 5.0625 -0.125 3.421875 -0.125 L 3.34375 -0.125 C 2.09375 -0.21875 1.796875 -1.65625 1.71875 -2.71875 C 1.71875 -2.875 1.71875 -3.015625 1.703125 -3.15625 Z M 1.703125 -3.15625 "/>
<path style="stroke:none;" d="M 2.703125 -4.859375 L 2.703125 -4.84375 C 1.53125 -4.421875 0.578125 -3.34375 0.578125 -2.171875 C 0.578125 -0.765625 1.9375 0.25 3.375 0.25 C 4.6875 0.25 6.234375 -0.65625 6.234375 -2.421875 C 6.234375 -3.78125 5.125 -4.484375 4.09375 -5.171875 C 4.9375 -5.59375 5.859375 -6.328125 5.859375 -7.40625 C 5.859375 -8.765625 4.5625 -9.515625 3.40625 -9.515625 L 3.25 -9.515625 C 2.015625 -9.453125 0.953125 -8.46875 0.953125 -7.203125 C 0.953125 -6.296875 1.453125 -5.6875 2.21875 -5.15625 C 2.375 -5.0625 2.53125 -4.9375 2.703125 -4.859375 Z M 1.140625 -2.03125 C 1.140625 -2.09375 1.140625 -2.171875 1.140625 -2.21875 C 1.140625 -3.234375 1.921875 -4.09375 2.71875 -4.5625 C 2.78125 -4.59375 2.875 -4.640625 2.9375 -4.640625 C 3.03125 -4.640625 3.125 -4.5625 3.203125 -4.5 L 4.578125 -3.578125 C 5.171875 -3.15625 5.59375 -2.765625 5.671875 -2.078125 C 5.671875 -0.859375 4.59375 -0.125 3.4375 -0.125 C 2.34375 -0.125 1.3125 -0.796875 1.140625 -2.03125 Z M 1.484375 -7.53125 L 1.484375 -7.65625 C 1.484375 -8.640625 2.578125 -9.171875 3.390625 -9.171875 C 4.28125 -9.171875 5.15625 -8.640625 5.328125 -7.5625 C 5.328125 -7.5 5.34375 -7.4375 5.34375 -7.40625 C 5.34375 -6.5625 4.671875 -5.890625 4.03125 -5.46875 C 3.96875 -5.4375 3.921875 -5.375 3.84375 -5.375 C 3.703125 -5.375 3.375 -5.671875 3.15625 -5.8125 C 2.46875 -6.25 1.609375 -6.6875 1.484375 -7.53125 Z M 1.484375 -7.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-30">
<path style="stroke:none;" d="M 1.78125 -1.28125 C 1.46875 -1.21875 1.25 -0.953125 1.25 -0.65625 C 1.25 -0.328125 1.515625 -0.015625 1.875 -0.015625 C 2.234375 -0.015625 2.53125 -0.296875 2.53125 -0.640625 C 2.53125 -0.96875 2.25 -1.296875 1.890625 -1.296875 C 1.84375 -1.296875 1.828125 -1.296875 1.78125 -1.28125 Z M 1.78125 -1.28125 "/>

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 135 KiB

View File

@ -222,9 +222,9 @@ Inhalt von Abschnitt 1.</code></pre>
---
<div class="layout-only">
<div class="layout-content-only">
<div class="layout-content">
<h2 data-category="Aufgabe">4. Projektstruktur für das Skript anlegen</h2>
<h2 data-category="Aufgabe" data-task="3">Projektstruktur für das Skript anlegen</h2>
<ul>
<li class="fragment">Teile das Skript in sinnvolle Abschnitte auf und lagere sie in separate <code>.tex</code>-Dateien aus.</li>
<li class="fragment">Verwende zunächst <code>\input{}</code>, um die Abschnitte in deine Hauptdatei einzubinden.</li>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="204pt" height="539pt" viewBox="0 0 204 539" version="1.1">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="343pt" height="539pt" viewBox="0 0 343 539" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
@ -30,7 +30,7 @@
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 1.484375 -3.875 L 1.46875 -3.875 C 1.46875 -5.03125 1.515625 -6.34375 2.4375 -7.203125 C 2.765625 -7.5 3.171875 -7.671875 3.609375 -7.671875 C 4 -7.671875 4.453125 -7.546875 4.65625 -7.1875 C 4.625 -7.203125 4.59375 -7.203125 4.546875 -7.203125 C 4.265625 -7.203125 4.046875 -6.984375 4.046875 -6.6875 C 4.046875 -6.421875 4.25 -6.1875 4.546875 -6.1875 C 4.828125 -6.1875 5.0625 -6.390625 5.0625 -6.75 C 5.0625 -7.578125 4.28125 -7.953125 3.5625 -7.953125 C 1.546875 -7.953125 0.484375 -5.65625 0.484375 -3.90625 C 0.484375 -2.28125 0.8125 0.234375 2.96875 0.234375 C 4.046875 0.234375 5 -0.625 5.25 -1.640625 C 5.3125 -1.90625 5.34375 -2.203125 5.34375 -2.484375 C 5.34375 -3.71875 4.5 -5.109375 3.0625 -5.109375 C 2.421875 -5.109375 1.671875 -4.6875 1.484375 -3.875 Z M 1.5 -2.59375 L 1.5 -2.71875 C 1.5 -3.578125 1.859375 -4.859375 2.984375 -4.859375 L 3.0625 -4.859375 C 4.3125 -4.75 4.359375 -3.34375 4.359375 -2.53125 L 4.359375 -2.328125 C 4.359375 -1.59375 4.34375 -0.734375 3.640625 -0.28125 C 3.4375 -0.140625 3.203125 -0.078125 2.96875 -0.078125 C 2.5 -0.078125 2.140625 -0.328125 1.875 -0.71875 C 1.515625 -1.28125 1.546875 -1.953125 1.5 -2.59375 Z M 1.5 -2.59375 "/>
<path style="stroke:none;" d="M 2.234375 -4.046875 L 2.234375 -4.03125 C 1.390625 -3.640625 0.546875 -2.9375 0.484375 -1.9375 L 0.484375 -1.8125 C 0.484375 -0.546875 1.671875 0.203125 2.78125 0.234375 L 2.890625 0.234375 C 4.09375 0.234375 5.34375 -0.59375 5.34375 -2 C 5.34375 -2.578125 5.078125 -3.15625 4.65625 -3.5625 C 4.484375 -3.734375 4.28125 -3.84375 4.078125 -4 C 3.90625 -4.09375 3.734375 -4.234375 3.5625 -4.3125 L 3.5625 -4.34375 C 4.25 -4.609375 4.953125 -5.28125 5.015625 -6.0625 L 5.015625 -6.171875 C 5.015625 -7.09375 4.21875 -7.953125 2.953125 -7.953125 C 1.9375 -7.953125 0.8125 -7.25 0.8125 -6.03125 C 0.8125 -5.140625 1.296875 -4.609375 2.234375 -4.046875 Z M 1.046875 -1.703125 C 1.046875 -1.75 1.03125 -1.8125 1.03125 -1.859375 C 1.03125 -2.6875 1.65625 -3.34375 2.3125 -3.765625 C 2.359375 -3.796875 2.421875 -3.84375 2.484375 -3.84375 C 2.625 -3.84375 2.96875 -3.546875 3.1875 -3.40625 C 3.78125 -3 4.796875 -2.546875 4.796875 -1.703125 C 4.796875 -0.671875 3.84375 -0.078125 2.9375 -0.078125 C 2.03125 -0.078125 1.15625 -0.671875 1.046875 -1.703125 Z M 1.296875 -6.328125 C 1.296875 -7.203125 2.109375 -7.65625 2.890625 -7.65625 C 3.65625 -7.65625 4.546875 -7.140625 4.546875 -6.1875 C 4.546875 -5.5 4 -4.9375 3.484375 -4.59375 C 3.4375 -4.5625 3.375 -4.515625 3.328125 -4.515625 L 3.3125 -4.515625 C 3.1875 -4.515625 2.90625 -4.75 2.71875 -4.875 L 2.125 -5.265625 C 1.734375 -5.515625 1.359375 -5.828125 1.296875 -6.328125 Z M 1.296875 -6.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 1.53125 -1.15625 C 1.28125 -1.109375 1.046875 -0.890625 1.046875 -0.59375 C 1.046875 -0.28125 1.296875 -0.015625 1.609375 -0.015625 C 1.921875 -0.015625 2.203125 -0.25 2.203125 -0.578125 C 2.203125 -0.890625 1.9375 -1.171875 1.625 -1.171875 C 1.59375 -1.171875 1.5625 -1.15625 1.53125 -1.15625 Z M 1.53125 -1.15625 "/>
@ -117,69 +117,108 @@
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 C 0.453125 -6.515625 0.59375 -6.515625 0.703125 -6.515625 C 1.0625 -6.515625 1.359375 -6.46875 1.359375 -6.078125 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.6875 -0.3125 C 0.5625 -0.3125 0.4375 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 3.265625 -0.015625 L 3.265625 -0.3125 L 2.9375 -0.3125 C 2.515625 -0.3125 2.25 -0.34375 2.25 -0.75 L 2.25 -3.40625 L 5.21875 -3.40625 L 5.21875 -0.75 C 5.21875 -0.359375 4.890625 -0.3125 4.53125 -0.3125 L 4.203125 -0.3125 L 4.203125 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 C 7.015625 -0.3125 6.890625 -0.3125 6.765625 -0.3125 C 6.421875 -0.3125 6.109375 -0.359375 6.109375 -0.75 L 6.109375 -6.078125 C 6.109375 -6.453125 6.4375 -6.515625 6.765625 -6.515625 C 6.890625 -6.515625 7.03125 -6.515625 7.140625 -6.515625 L 7.140625 -6.8125 L 4.203125 -6.8125 L 4.203125 -6.515625 L 4.53125 -6.515625 C 4.953125 -6.515625 5.21875 -6.484375 5.21875 -6.078125 L 5.21875 -3.703125 L 2.25 -3.703125 L 2.25 -6.078125 C 2.25 -6.46875 2.578125 -6.515625 2.9375 -6.515625 L 3.265625 -6.515625 L 3.265625 -6.8125 Z M 0.328125 -6.8125 "/>
<path style="stroke:none;" d="M 0.84375 -5.90625 L 0.84375 -5.4375 C 1.328125 -5.4375 1.890625 -5.46875 2.34375 -5.625 L 2.34375 -0.484375 L 0.953125 -0.484375 L 0.953125 -0.015625 L 4.921875 -0.015625 L 4.921875 -0.484375 L 3.53125 -0.484375 L 3.53125 -6.265625 C 3.53125 -6.421875 3.5 -6.546875 3.265625 -6.546875 C 3.109375 -6.546875 3.015625 -6.453125 2.90625 -6.375 C 2.265625 -5.984375 1.5625 -5.90625 0.84375 -5.90625 Z M 0.84375 -5.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 0.375 -4.296875 L 0.375 -3.984375 L 0.5625 -3.984375 C 0.84375 -3.984375 1.109375 -3.953125 1.109375 -3.484375 L 1.109375 -0.734375 C 1.109375 -0.375 0.921875 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.265625 -0.3125 C 2.015625 -0.3125 1.78125 -0.34375 1.78125 -0.671875 L 1.78125 -4.40625 Z M 1.203125 -6.671875 C 0.953125 -6.640625 0.75 -6.421875 0.75 -6.15625 C 0.75 -5.859375 1 -5.625 1.28125 -5.625 C 1.5625 -5.625 1.8125 -5.84375 1.8125 -6.15625 C 1.8125 -6.4375 1.5625 -6.671875 1.28125 -6.671875 C 1.25 -6.671875 1.234375 -6.671875 1.203125 -6.671875 Z M 1.203125 -6.671875 "/>
<path style="stroke:none;" d="M 0.390625 -6.84375 L 0.390625 -6.375 L 1.46875 -6.375 L 1.46875 -0.484375 L 0.390625 -0.484375 L 0.390625 -0.015625 L 3.75 -0.015625 C 3.984375 -0.015625 4.234375 0 4.46875 0 C 5.4375 0 6.421875 -0.203125 7.171875 -0.890625 C 7.84375 -1.515625 8.140625 -2.46875 8.140625 -3.375 C 8.140625 -5.28125 6.921875 -6.859375 4.484375 -6.859375 C 4.25 -6.859375 4.03125 -6.84375 3.8125 -6.84375 Z M 2.828125 -0.484375 L 2.828125 -6.375 L 4.40625 -6.375 C 5.328125 -6.3125 6.171875 -5.90625 6.484375 -5 C 6.671875 -4.46875 6.671875 -3.890625 6.671875 -3.328125 L 6.671875 -3.15625 C 6.671875 -2.34375 6.5625 -1.453125 5.84375 -0.921875 C 5.4375 -0.640625 4.90625 -0.484375 4.40625 -0.484375 Z M 2.828125 -0.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 1.109375 -2.3125 L 3.984375 -2.3125 C 4.09375 -2.3125 4.140625 -2.375 4.140625 -2.5 C 4.140625 -3.546875 3.5 -4.46875 2.375 -4.46875 C 1.15625 -4.46875 0.28125 -3.375 0.28125 -2.1875 C 0.28125 -1.28125 0.78125 -0.453125 1.671875 -0.0625 C 1.890625 0.046875 2.15625 0.09375 2.40625 0.09375 L 2.4375 0.09375 C 3.203125 0.09375 3.84375 -0.328125 4.109375 -1.09375 C 4.125 -1.125 4.125 -1.171875 4.125 -1.203125 C 4.125 -1.265625 4.09375 -1.3125 4.015625 -1.3125 C 3.875 -1.3125 3.8125 -0.984375 3.75 -0.875 C 3.5 -0.4375 3.015625 -0.15625 2.5 -0.15625 C 2.140625 -0.15625 1.8125 -0.359375 1.546875 -0.625 C 1.140625 -1.09375 1.109375 -1.734375 1.109375 -2.3125 Z M 1.125 -2.515625 C 1.125 -3.296875 1.53125 -4.25 2.359375 -4.25 L 2.40625 -4.25 C 3.375 -4.15625 3.375 -3.125 3.46875 -2.515625 Z M 1.125 -2.515625 "/>
<path style="stroke:none;" d="M 0.5 -4.421875 L 0.5 -3.953125 C 0.578125 -3.953125 0.671875 -3.953125 0.75 -3.953125 C 0.953125 -3.953125 1.15625 -3.90625 1.15625 -3.625 L 1.15625 -0.484375 L 0.46875 -0.484375 L 0.46875 -0.015625 L 2.84375 -0.015625 L 2.84375 -0.484375 L 2.234375 -0.484375 L 2.234375 -4.5 L 1.09375 -4.5 Z M 1.453125 -6.921875 C 1.078125 -6.890625 0.78125 -6.546875 0.78125 -6.15625 C 0.78125 -5.765625 1.078125 -5.390625 1.5625 -5.390625 C 1.953125 -5.390625 2.328125 -5.71875 2.328125 -6.15625 C 2.328125 -6.546875 2.03125 -6.9375 1.5625 -6.9375 C 1.53125 -6.9375 1.484375 -6.9375 1.453125 -6.921875 Z M 1.453125 -6.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 0.265625 -4.296875 L 0.265625 -3.984375 L 0.421875 -3.984375 C 0.75 -3.984375 1.046875 -3.953125 1.046875 -3.484375 L 1.046875 -0.734375 C 1.046875 -0.328125 0.765625 -0.3125 0.328125 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.6875 -0.015625 L 2.6875 -0.3125 C 2.5625 -0.3125 2.421875 -0.3125 2.296875 -0.3125 C 1.984375 -0.3125 1.71875 -0.359375 1.71875 -0.734375 L 1.71875 -2.046875 C 1.71875 -2.90625 1.90625 -4.1875 2.890625 -4.1875 C 2.9375 -4.1875 2.953125 -4.1875 3 -4.171875 C 2.84375 -4.109375 2.765625 -3.953125 2.765625 -3.78125 C 2.765625 -3.5625 2.921875 -3.40625 3.15625 -3.359375 C 3.4375 -3.359375 3.625 -3.53125 3.625 -3.78125 C 3.625 -4.1875 3.25 -4.40625 2.890625 -4.40625 C 2.296875 -4.40625 1.78125 -3.875 1.671875 -3.34375 L 1.671875 -4.40625 Z M 0.265625 -4.296875 "/>
<path style="stroke:none;" d="M 1.59375 -2.1875 L 4.671875 -2.1875 C 4.84375 -2.1875 4.921875 -2.25 4.921875 -2.421875 C 4.921875 -3.421875 4.453125 -4.53125 2.78125 -4.53125 C 2.15625 -4.53125 1.53125 -4.359375 1.0625 -3.953125 C 0.5625 -3.53125 0.3125 -2.890625 0.3125 -2.25 C 0.3125 -1.640625 0.53125 -1.078125 0.953125 -0.640625 C 1.46875 -0.140625 2.21875 0.046875 2.9375 0.046875 C 3.625 0.046875 4.40625 -0.203125 4.78125 -0.828125 C 4.84375 -0.921875 4.921875 -1.0625 4.921875 -1.1875 C 4.921875 -1.3125 4.796875 -1.359375 4.6875 -1.359375 C 4.46875 -1.359375 4.453125 -1.15625 4.34375 -0.984375 C 4.078125 -0.5625 3.53125 -0.34375 3.03125 -0.34375 C 2.546875 -0.34375 2.078125 -0.546875 1.828125 -0.984375 C 1.609375 -1.328125 1.59375 -1.78125 1.59375 -2.1875 Z M 1.59375 -2.515625 C 1.59375 -3.1875 1.78125 -4.171875 2.796875 -4.171875 C 3.71875 -4.171875 3.984375 -3.25 3.984375 -2.515625 Z M 1.59375 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.546875 4.375 -3.84375 C 4.140625 -4.28125 3.640625 -4.40625 3.1875 -4.40625 C 2.578125 -4.40625 1.9375 -3.984375 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
<path style="stroke:none;" d="M 2 -4.53125 C 1.5625 -4.46875 1.140625 -4.421875 0.78125 -4.140625 C 0.53125 -3.921875 0.375 -3.5625 0.375 -3.21875 C 0.375 -1.78125 2.421875 -2 3.078125 -1.609375 C 3.28125 -1.5 3.421875 -1.28125 3.421875 -1.03125 C 3.421875 -0.390625 2.65625 -0.3125 2.28125 -0.3125 C 1.6875 -0.3125 1.15625 -0.578125 0.90625 -1.28125 C 0.859375 -1.421875 0.875 -1.609375 0.65625 -1.609375 L 0.5625 -1.609375 C 0.40625 -1.609375 0.375 -1.5 0.375 -1.375 L 0.375 -0.171875 C 0.375 -0.078125 0.390625 0.03125 0.5 0.046875 L 0.53125 0.046875 C 0.78125 0.046875 0.984375 -0.25 1.125 -0.25 C 1.1875 -0.25 1.25 -0.1875 1.296875 -0.15625 C 1.59375 0.015625 1.984375 0.046875 2.328125 0.046875 C 3.1875 0.046875 4.140625 -0.3125 4.140625 -1.359375 C 4.140625 -2.171875 3.484375 -2.65625 2.765625 -2.828125 C 2.203125 -2.953125 1.09375 -2.953125 1.09375 -3.5625 C 1.09375 -4.203125 2 -4.203125 2.25 -4.203125 C 2.71875 -4.203125 3.234375 -4.046875 3.359375 -3.515625 C 3.40625 -3.375 3.328125 -3.171875 3.59375 -3.171875 L 3.640625 -3.171875 C 3.828125 -3.171875 3.84375 -3.265625 3.84375 -3.375 L 3.84375 -4.3125 C 3.84375 -4.4375 3.8125 -4.53125 3.671875 -4.53125 C 3.484375 -4.53125 3.34375 -4.34375 3.21875 -4.34375 C 3.125 -4.34375 2.953125 -4.453125 2.8125 -4.46875 C 2.625 -4.515625 2.40625 -4.53125 2.203125 -4.53125 C 2.140625 -4.53125 2.0625 -4.53125 2 -4.53125 Z M 2 -4.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 0.3125 -0.3125 L 0.3125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 C 2.15625 -0.3125 1.75 -0.46875 1.71875 -0.8125 C 1.71875 -0.921875 1.78125 -1 1.796875 -1.09375 C 1.90625 -1.421875 2.015625 -1.75 2.140625 -2.078125 C 2.171875 -2.15625 2.171875 -2.28125 2.3125 -2.28125 L 4.578125 -2.28125 C 4.6875 -2.28125 4.703125 -2.171875 4.75 -2.078125 L 4.953125 -1.453125 C 5.046875 -1.203125 5.234375 -0.8125 5.234375 -0.609375 L 5.234375 -0.5625 C 5.140625 -0.328125 4.75 -0.3125 4.46875 -0.3125 L 4.40625 -0.3125 L 4.40625 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 L 6.859375 -0.3125 C 6.625 -0.3125 6.390625 -0.34375 6.265625 -0.453125 C 6.15625 -0.578125 6.125 -0.75 6.0625 -0.890625 C 5.546875 -2.375 5.046875 -3.875 4.515625 -5.359375 C 4.34375 -5.875 4.09375 -6.4375 3.96875 -6.953125 C 3.921875 -7.09375 3.875 -7.140625 3.734375 -7.140625 C 3.53125 -7.140625 3.484375 -6.9375 3.421875 -6.734375 C 2.875 -5.046875 2.25 -3.390625 1.6875 -1.71875 L 1.46875 -1.109375 C 1.421875 -0.9375 1.359375 -0.75 1.21875 -0.625 C 0.984375 -0.375 0.640625 -0.3125 0.3125 -0.3125 Z M 2.328125 -2.59375 L 3.4375 -5.828125 L 4.5625 -2.59375 Z M 2.328125 -2.59375 "/>
<path style="stroke:none;" d="M 1.6875 -6.34375 C 1.6875 -5.53125 1.265625 -4.328125 0.203125 -4.328125 L 0.203125 -3.96875 L 1.015625 -3.96875 L 1.015625 -1.40625 C 1.015625 -1.078125 1.03125 -0.75 1.21875 -0.484375 C 1.5 -0.078125 2.078125 0.0625 2.546875 0.0625 C 3.25 0.0625 3.8125 -0.421875 3.8125 -1.328125 C 3.8125 -1.46875 3.8125 -1.625 3.8125 -1.78125 L 3.34375 -1.78125 L 3.34375 -1.359375 C 3.34375 -0.984375 3.28125 -0.34375 2.734375 -0.34375 C 2.234375 -0.34375 2.15625 -0.875 2.15625 -1.28125 L 2.15625 -3.96875 L 3.625 -3.96875 L 3.625 -4.4375 L 2.15625 -4.4375 L 2.15625 -6.34375 Z M 1.6875 -6.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 0.265625 -6.8125 L 0.265625 -6.515625 L 0.4375 -6.515625 C 0.75 -6.515625 1.046875 -6.484375 1.046875 -6.015625 L 1.046875 -0.015625 L 1.28125 -0.03125 L 1.421875 -0.203125 L 1.65625 -0.625 L 1.671875 -0.625 C 1.90625 -0.140625 2.5 0.09375 3 0.09375 C 4.234375 0.09375 5.1875 -0.984375 5.1875 -2.15625 C 5.1875 -3.3125 4.3125 -4.40625 3.046875 -4.40625 C 2.515625 -4.40625 2.0625 -4.15625 1.71875 -3.765625 L 1.71875 -6.921875 Z M 4.34375 -1.90625 C 4.3125 -1.4375 4.25 -1.015625 3.953125 -0.640625 C 3.703125 -0.328125 3.328125 -0.125 2.9375 -0.125 C 2.5 -0.125 2.109375 -0.375 1.890625 -0.734375 C 1.796875 -0.84375 1.75 -0.921875 1.75 -1.078125 L 1.75 -2.734375 C 1.75 -2.875 1.734375 -3 1.734375 -3.125 C 1.734375 -3.734375 2.46875 -4.1875 3.015625 -4.1875 C 4.09375 -4.1875 4.359375 -2.9375 4.359375 -2.140625 C 4.359375 -2.0625 4.359375 -2 4.34375 -1.90625 Z M 4.34375 -1.90625 "/>
<path style="stroke:none;" d="M 0.40625 -0.484375 L 0.40625 -0.015625 L 2.890625 -0.015625 L 2.890625 -0.484375 C 2.59375 -0.484375 2.015625 -0.484375 2.015625 -0.625 C 2.015625 -0.765625 2.28125 -1.296875 2.40625 -1.609375 L 2.5 -1.8125 C 2.53125 -1.875 2.515625 -1.9375 2.640625 -1.9375 L 5.109375 -1.9375 C 5.3125 -1.9375 5.515625 -1.1875 5.65625 -0.84375 C 5.703125 -0.734375 5.765625 -0.609375 5.796875 -0.484375 L 4.859375 -0.484375 L 4.859375 -0.015625 L 8.25 -0.015625 L 8.25 -0.484375 L 7.390625 -0.484375 C 7.28125 -0.484375 7.265625 -0.53125 7.234375 -0.59375 L 7.140625 -0.84375 C 6.34375 -2.65625 5.609375 -4.53125 4.859375 -6.375 C 4.75 -6.625 4.71875 -6.96875 4.34375 -6.96875 L 4.28125 -6.96875 C 3.984375 -6.96875 3.953125 -6.734375 3.859375 -6.546875 C 3.125 -4.671875 2.296875 -2.84375 1.578125 -0.96875 C 1.453125 -0.703125 1.5 -0.546875 1.109375 -0.515625 C 0.875 -0.484375 0.640625 -0.484375 0.40625 -0.484375 Z M 2.734375 -2.40625 L 3.875 -5.171875 L 5.015625 -2.40625 Z M 2.734375 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 1.75 -4.46875 C 1.390625 -4.421875 1 -4.359375 0.703125 -4.109375 C 0.46875 -3.890625 0.328125 -3.5625 0.328125 -3.234375 C 0.328125 -1.53125 3.09375 -2.5 3.09375 -1 C 3.09375 -0.40625 2.546875 -0.125 2 -0.125 C 1.25 -0.125 0.734375 -0.65625 0.59375 -1.515625 C 0.578125 -1.609375 0.5625 -1.6875 0.453125 -1.6875 C 0.375 -1.6875 0.328125 -1.640625 0.328125 -1.5625 L 0.328125 0.015625 C 0.34375 0.0625 0.375 0.09375 0.421875 0.09375 L 0.4375 0.09375 C 0.59375 0.09375 0.75 -0.265625 0.875 -0.296875 L 0.890625 -0.296875 C 0.96875 -0.296875 1.234375 -0.046875 1.453125 0.015625 C 1.609375 0.078125 1.796875 0.09375 1.96875 0.09375 C 2.796875 0.09375 3.59375 -0.34375 3.59375 -1.25 C 3.59375 -1.90625 3.109375 -2.453125 2.453125 -2.625 C 1.828125 -2.796875 0.8125 -2.796875 0.8125 -3.515625 C 0.8125 -4.125 1.484375 -4.28125 1.921875 -4.28125 C 2.40625 -4.28125 3.09375 -4 3.09375 -3.15625 C 3.09375 -3.0625 3.09375 -2.984375 3.203125 -2.984375 C 3.3125 -2.984375 3.34375 -3.0625 3.34375 -3.15625 C 3.34375 -3.203125 3.34375 -3.265625 3.34375 -3.296875 L 3.34375 -4.328125 C 3.34375 -4.390625 3.3125 -4.46875 3.234375 -4.46875 C 3.078125 -4.46875 2.96875 -4.21875 2.859375 -4.21875 L 2.84375 -4.21875 C 2.765625 -4.21875 2.609375 -4.34375 2.5 -4.390625 C 2.3125 -4.453125 2.109375 -4.46875 1.921875 -4.46875 C 1.859375 -4.46875 1.8125 -4.46875 1.75 -4.46875 Z M 1.75 -4.46875 "/>
<path style="stroke:none;" d="M 0.375 -6.84375 L 0.375 -6.375 C 0.453125 -6.375 0.53125 -6.390625 0.625 -6.390625 C 0.859375 -6.390625 1.0625 -6.34375 1.0625 -6.046875 L 1.0625 -0.015625 L 1.515625 -0.015625 L 2.03125 -0.5625 C 2.359375 -0.125 2.984375 0.0625 3.515625 0.0625 C 4.859375 0.0625 5.984375 -0.84375 5.984375 -2.21875 C 5.984375 -3.5 5.0625 -4.5 3.59375 -4.5 C 3.078125 -4.5 2.515625 -4.34375 2.140625 -4 L 2.140625 -6.921875 L 0.75 -6.921875 Z M 4.6875 -1.84375 C 4.671875 -1.453125 4.640625 -1.0625 4.375 -0.75 C 4.140625 -0.46875 3.765625 -0.3125 3.390625 -0.3125 C 2.953125 -0.3125 2.1875 -0.640625 2.1875 -1.140625 L 2.1875 -3.4375 C 2.21875 -3.5625 2.421875 -3.75 2.578125 -3.84375 C 2.828125 -4.03125 3.15625 -4.140625 3.46875 -4.140625 C 4.609375 -4.140625 4.703125 -3.078125 4.703125 -2.34375 L 4.703125 -2.09375 C 4.703125 -2.015625 4.703125 -1.921875 4.6875 -1.84375 Z M 4.6875 -1.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M 1.109375 -3.796875 C 1.359375 -4.109375 1.796875 -4.25 2.171875 -4.25 C 2.90625 -4.25 3.234375 -3.578125 3.234375 -2.875 L 3.234375 -2.609375 C 2.09375 -2.609375 0.40625 -2.25 0.40625 -0.953125 L 0.40625 -0.875 C 0.484375 -0.09375 1.453125 0.09375 2.03125 0.09375 C 2.53125 0.09375 3.1875 -0.234375 3.3125 -0.75 C 3.375 -0.3125 3.65625 0.046875 4.09375 0.046875 C 4.5 0.046875 4.859375 -0.28125 4.921875 -0.734375 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.953125 C 4.671875 -0.671875 4.609375 -0.265625 4.3125 -0.265625 C 3.984375 -0.265625 3.9375 -0.65625 3.9375 -0.921875 L 3.9375 -2.59375 C 3.9375 -2.71875 3.953125 -2.84375 3.953125 -2.96875 C 3.953125 -3.9375 3.046875 -4.46875 2.21875 -4.46875 C 1.578125 -4.46875 0.703125 -4.15625 0.703125 -3.359375 C 0.703125 -3.078125 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.609375 -3.09375 1.609375 -3.34375 C 1.609375 -3.625 1.390625 -3.796875 1.109375 -3.796875 Z M 3.234375 -2.40625 L 3.234375 -1.390625 C 3.234375 -0.703125 2.765625 -0.15625 2.109375 -0.125 L 2.078125 -0.125 C 1.609375 -0.125 1.1875 -0.484375 1.1875 -0.96875 L 1.1875 -1.015625 C 1.25 -2.03125 2.375 -2.375 3.234375 -2.40625 Z M 3.234375 -2.40625 "/>
<path style="stroke:none;" d="M 3.59375 -4.078125 C 3.453125 -3.953125 3.390625 -3.765625 3.390625 -3.59375 C 3.390625 -3.25 3.65625 -2.984375 4 -2.984375 C 4.421875 -2.984375 4.640625 -3.3125 4.640625 -3.625 C 4.640625 -4.484375 3.390625 -4.53125 2.96875 -4.53125 L 2.875 -4.53125 C 2.109375 -4.53125 1.328125 -4.296875 0.859375 -3.671875 C 0.53125 -3.25 0.375 -2.765625 0.375 -2.234375 C 0.375 -1.6875 0.546875 -1.109375 0.921875 -0.703125 C 1.40625 -0.171875 2.140625 0.046875 2.84375 0.046875 C 3.546875 0.046875 4.3125 -0.203125 4.640625 -0.875 C 4.6875 -0.953125 4.765625 -1.0625 4.765625 -1.15625 C 4.765625 -1.296875 4.640625 -1.3125 4.546875 -1.3125 L 4.5 -1.3125 C 4.296875 -1.3125 4.28125 -1.171875 4.234375 -1.03125 C 3.984375 -0.59375 3.5625 -0.34375 3.0625 -0.34375 C 1.890625 -0.34375 1.65625 -1.390625 1.65625 -2.21875 C 1.65625 -2.984375 1.734375 -4.125 2.953125 -4.125 C 3.171875 -4.125 3.390625 -4.09375 3.59375 -4.078125 Z M 3.59375 -4.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 1.484375 -6.140625 C 1.484375 -5.453125 1.203125 -4.203125 0.171875 -4.203125 L 0.171875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.421875 C 1.03125 -1.09375 1.0625 -0.75 1.21875 -0.46875 C 1.4375 -0.0625 1.90625 0.09375 2.34375 0.09375 C 3.15625 0.09375 3.3125 -0.8125 3.3125 -1.453125 L 3.3125 -1.8125 L 3.078125 -1.8125 C 3.078125 -1.671875 3.078125 -1.515625 3.078125 -1.359375 C 3.078125 -0.921875 2.984375 -0.15625 2.390625 -0.15625 C 1.828125 -0.15625 1.734375 -0.84375 1.734375 -1.28125 L 1.734375 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.734375 -4.296875 L 1.734375 -6.140625 Z M 1.484375 -6.140625 "/>
<path style="stroke:none;" d="M 0.453125 -6.84375 L 0.453125 -6.375 L 0.671875 -6.375 C 0.921875 -6.375 1.140625 -6.34375 1.140625 -6.015625 L 1.140625 -0.484375 L 0.453125 -0.484375 L 0.453125 -0.015625 L 2.953125 -0.015625 L 2.953125 -0.484375 L 2.265625 -0.484375 L 2.265625 -2.71875 C 2.34375 -3.46875 2.953125 -4.140625 3.75 -4.140625 C 4.203125 -4.140625 4.3125 -3.671875 4.3125 -3.15625 L 4.3125 -0.484375 L 3.625 -0.484375 L 3.625 -0.015625 L 6.125 -0.015625 L 6.125 -0.484375 L 5.4375 -0.484375 L 5.4375 -2.984375 C 5.4375 -3.296875 5.421875 -3.625 5.28125 -3.890625 C 4.984375 -4.40625 4.40625 -4.5 3.875 -4.5 C 3.21875 -4.5 2.515625 -4.140625 2.21875 -3.515625 L 2.21875 -6.921875 L 0.828125 -6.921875 Z M 0.453125 -6.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.6875 -3.046875 0.703125 -3.453125 0.921875 -3.734375 C 1.171875 -4.046875 1.640625 -4.078125 2.03125 -4.078125 L 3.140625 -4.078125 C 2.203125 -2.875 1.3125 -1.59375 0.390625 -0.375 C 0.34375 -0.3125 0.28125 -0.21875 0.28125 -0.140625 C 0.28125 -0.046875 0.34375 -0.015625 0.453125 -0.015625 L 3.828125 -0.015625 L 4 -1.875 L 3.75 -1.875 C 3.671875 -1.203125 3.625 -0.375 2.671875 -0.28125 C 2.4375 -0.265625 2.21875 -0.265625 2 -0.265625 L 1.125 -0.265625 C 1.859375 -1.25 2.59375 -2.25 3.328125 -3.234375 C 3.546875 -3.53125 3.984375 -4 3.984375 -4.171875 C 3.984375 -4.265625 3.890625 -4.296875 3.8125 -4.296875 Z M 0.53125 -4.296875 "/>
<path style="stroke:none;" d="M 0.453125 -4.421875 L 0.453125 -3.953125 L 0.640625 -3.953125 C 0.90625 -3.953125 1.140625 -3.921875 1.140625 -3.625 L 1.140625 -0.484375 L 0.453125 -0.484375 L 0.453125 -0.015625 L 2.953125 -0.015625 L 2.953125 -0.484375 L 2.265625 -0.484375 L 2.265625 -2.71875 C 2.34375 -3.46875 2.953125 -4.140625 3.75 -4.140625 C 4.203125 -4.140625 4.3125 -3.671875 4.3125 -3.15625 L 4.3125 -0.484375 L 3.625 -0.484375 L 3.625 -0.015625 L 6.125 -0.015625 L 6.125 -0.484375 L 5.4375 -0.484375 L 5.4375 -2.9375 C 5.4375 -3.296875 5.421875 -3.65625 5.234375 -3.953125 C 4.9375 -4.421875 4.359375 -4.5 3.84375 -4.5 C 3.1875 -4.5 2.375 -4.0625 2.171875 -3.421875 L 2.15625 -4.5 L 0.8125 -4.4375 Z M 0.453125 -4.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 1.4375 -5.71875 C 1.71875 -5.9375 2.078125 -6.078125 2.453125 -6.078125 C 3.28125 -6.078125 3.78125 -5.390625 3.78125 -4.625 C 3.78125 -3.59375 2.953125 -2.8125 2.28125 -2.140625 C 1.8125 -1.671875 1.359375 -1.203125 0.890625 -0.734375 L 0.703125 -0.546875 C 0.609375 -0.453125 0.5625 -0.375 0.5625 -0.234375 L 0.5625 -0.015625 L 4.84375 -0.015625 L 5.15625 -2.21875 L 4.6875 -2.21875 C 4.640625 -1.84375 4.625 -1.28125 4.25 -1.28125 C 4 -1.25 3.734375 -1.25 3.484375 -1.25 L 1.9375 -1.25 C 2.46875 -1.65625 2.953125 -2.078125 3.484375 -2.46875 C 4.203125 -3 5.15625 -3.578125 5.15625 -4.625 C 5.15625 -6.078125 3.734375 -6.546875 2.671875 -6.546875 L 2.546875 -6.546875 C 1.75 -6.484375 0.5625 -6.09375 0.5625 -5.03125 C 0.5625 -4.671875 0.78125 -4.28125 1.296875 -4.28125 C 1.6875 -4.28125 2 -4.609375 2 -5 C 2 -5.359375 1.78125 -5.625 1.4375 -5.71875 Z M 1.4375 -5.71875 "/>
</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.328125 -6.8125 L 0.328125 -6.515625 C 0.453125 -6.515625 0.59375 -6.515625 0.703125 -6.515625 C 1.0625 -6.515625 1.359375 -6.46875 1.359375 -6.078125 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.6875 -0.3125 C 0.5625 -0.3125 0.4375 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 3.265625 -0.015625 L 3.265625 -0.3125 L 2.9375 -0.3125 C 2.515625 -0.3125 2.25 -0.34375 2.25 -0.75 L 2.25 -3.40625 L 5.21875 -3.40625 L 5.21875 -0.75 C 5.21875 -0.359375 4.890625 -0.3125 4.53125 -0.3125 L 4.203125 -0.3125 L 4.203125 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 C 7.015625 -0.3125 6.890625 -0.3125 6.765625 -0.3125 C 6.421875 -0.3125 6.109375 -0.359375 6.109375 -0.75 L 6.109375 -6.078125 C 6.109375 -6.453125 6.4375 -6.515625 6.765625 -6.515625 C 6.890625 -6.515625 7.03125 -6.515625 7.140625 -6.515625 L 7.140625 -6.8125 L 4.203125 -6.8125 L 4.203125 -6.515625 L 4.53125 -6.515625 C 4.953125 -6.515625 5.21875 -6.484375 5.21875 -6.078125 L 5.21875 -3.703125 L 2.25 -3.703125 L 2.25 -6.078125 C 2.25 -6.46875 2.578125 -6.515625 2.9375 -6.515625 L 3.265625 -6.515625 L 3.265625 -6.8125 Z M 0.328125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 0.375 -4.296875 L 0.375 -3.984375 L 0.5625 -3.984375 C 0.84375 -3.984375 1.109375 -3.953125 1.109375 -3.484375 L 1.109375 -0.734375 C 1.109375 -0.375 0.921875 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.265625 -0.3125 C 2.015625 -0.3125 1.78125 -0.34375 1.78125 -0.671875 L 1.78125 -4.40625 Z M 1.203125 -6.671875 C 0.953125 -6.640625 0.75 -6.421875 0.75 -6.15625 C 0.75 -5.859375 1 -5.625 1.28125 -5.625 C 1.5625 -5.625 1.8125 -5.84375 1.8125 -6.15625 C 1.8125 -6.4375 1.5625 -6.671875 1.28125 -6.671875 C 1.25 -6.671875 1.234375 -6.671875 1.203125 -6.671875 Z M 1.203125 -6.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M 1.109375 -2.3125 L 3.984375 -2.3125 C 4.09375 -2.3125 4.140625 -2.375 4.140625 -2.5 C 4.140625 -3.546875 3.5 -4.46875 2.375 -4.46875 C 1.15625 -4.46875 0.28125 -3.375 0.28125 -2.1875 C 0.28125 -1.28125 0.78125 -0.453125 1.671875 -0.0625 C 1.890625 0.046875 2.15625 0.09375 2.40625 0.09375 L 2.4375 0.09375 C 3.203125 0.09375 3.84375 -0.328125 4.109375 -1.09375 C 4.125 -1.125 4.125 -1.171875 4.125 -1.203125 C 4.125 -1.265625 4.09375 -1.3125 4.015625 -1.3125 C 3.875 -1.3125 3.8125 -0.984375 3.75 -0.875 C 3.5 -0.4375 3.015625 -0.15625 2.5 -0.15625 C 2.140625 -0.15625 1.8125 -0.359375 1.546875 -0.625 C 1.140625 -1.09375 1.109375 -1.734375 1.109375 -2.3125 Z M 1.125 -2.515625 C 1.125 -3.296875 1.53125 -4.25 2.359375 -4.25 L 2.40625 -4.25 C 3.375 -4.15625 3.375 -3.125 3.46875 -2.515625 Z M 1.125 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 0.265625 -4.296875 L 0.265625 -3.984375 L 0.421875 -3.984375 C 0.75 -3.984375 1.046875 -3.953125 1.046875 -3.484375 L 1.046875 -0.734375 C 1.046875 -0.328125 0.765625 -0.3125 0.328125 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.6875 -0.015625 L 2.6875 -0.3125 C 2.5625 -0.3125 2.421875 -0.3125 2.296875 -0.3125 C 1.984375 -0.3125 1.71875 -0.359375 1.71875 -0.734375 L 1.71875 -2.046875 C 1.71875 -2.90625 1.90625 -4.1875 2.890625 -4.1875 C 2.9375 -4.1875 2.953125 -4.1875 3 -4.171875 C 2.84375 -4.109375 2.765625 -3.953125 2.765625 -3.78125 C 2.765625 -3.5625 2.921875 -3.40625 3.15625 -3.359375 C 3.4375 -3.359375 3.625 -3.53125 3.625 -3.78125 C 3.625 -4.1875 3.25 -4.40625 2.890625 -4.40625 C 2.296875 -4.40625 1.78125 -3.875 1.671875 -3.34375 L 1.671875 -4.40625 Z M 0.265625 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-5">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.546875 4.375 -3.84375 C 4.140625 -4.28125 3.640625 -4.40625 3.1875 -4.40625 C 2.578125 -4.40625 1.9375 -3.984375 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-6">
<path style="stroke:none;" d="M 0.3125 -0.3125 L 0.3125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 C 2.15625 -0.3125 1.75 -0.46875 1.71875 -0.8125 C 1.71875 -0.921875 1.78125 -1 1.796875 -1.09375 C 1.90625 -1.421875 2.015625 -1.75 2.140625 -2.078125 C 2.171875 -2.15625 2.171875 -2.28125 2.3125 -2.28125 L 4.578125 -2.28125 C 4.6875 -2.28125 4.703125 -2.171875 4.75 -2.078125 L 4.953125 -1.453125 C 5.046875 -1.203125 5.234375 -0.8125 5.234375 -0.609375 L 5.234375 -0.5625 C 5.140625 -0.328125 4.75 -0.3125 4.46875 -0.3125 L 4.40625 -0.3125 L 4.40625 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 L 6.859375 -0.3125 C 6.625 -0.3125 6.390625 -0.34375 6.265625 -0.453125 C 6.15625 -0.578125 6.125 -0.75 6.0625 -0.890625 C 5.546875 -2.375 5.046875 -3.875 4.515625 -5.359375 C 4.34375 -5.875 4.09375 -6.4375 3.96875 -6.953125 C 3.921875 -7.09375 3.875 -7.140625 3.734375 -7.140625 C 3.53125 -7.140625 3.484375 -6.9375 3.421875 -6.734375 C 2.875 -5.046875 2.25 -3.390625 1.6875 -1.71875 L 1.46875 -1.109375 C 1.421875 -0.9375 1.359375 -0.75 1.21875 -0.625 C 0.984375 -0.375 0.640625 -0.3125 0.3125 -0.3125 Z M 2.328125 -2.59375 L 3.4375 -5.828125 L 4.5625 -2.59375 Z M 2.328125 -2.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-7">
<path style="stroke:none;" d="M 0.265625 -6.8125 L 0.265625 -6.515625 L 0.4375 -6.515625 C 0.75 -6.515625 1.046875 -6.484375 1.046875 -6.015625 L 1.046875 -0.015625 L 1.28125 -0.03125 L 1.421875 -0.203125 L 1.65625 -0.625 L 1.671875 -0.625 C 1.90625 -0.140625 2.5 0.09375 3 0.09375 C 4.234375 0.09375 5.1875 -0.984375 5.1875 -2.15625 C 5.1875 -3.3125 4.3125 -4.40625 3.046875 -4.40625 C 2.515625 -4.40625 2.0625 -4.15625 1.71875 -3.765625 L 1.71875 -6.921875 Z M 4.34375 -1.90625 C 4.3125 -1.4375 4.25 -1.015625 3.953125 -0.640625 C 3.703125 -0.328125 3.328125 -0.125 2.9375 -0.125 C 2.5 -0.125 2.109375 -0.375 1.890625 -0.734375 C 1.796875 -0.84375 1.75 -0.921875 1.75 -1.078125 L 1.75 -2.734375 C 1.75 -2.875 1.734375 -3 1.734375 -3.125 C 1.734375 -3.734375 2.46875 -4.1875 3.015625 -4.1875 C 4.09375 -4.1875 4.359375 -2.9375 4.359375 -2.140625 C 4.359375 -2.0625 4.359375 -2 4.34375 -1.90625 Z M 4.34375 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-8">
<path style="stroke:none;" d="M 1.75 -4.46875 C 1.390625 -4.421875 1 -4.359375 0.703125 -4.109375 C 0.46875 -3.890625 0.328125 -3.5625 0.328125 -3.234375 C 0.328125 -1.53125 3.09375 -2.5 3.09375 -1 C 3.09375 -0.40625 2.546875 -0.125 2 -0.125 C 1.25 -0.125 0.734375 -0.65625 0.59375 -1.515625 C 0.578125 -1.609375 0.5625 -1.6875 0.453125 -1.6875 C 0.375 -1.6875 0.328125 -1.640625 0.328125 -1.5625 L 0.328125 0.015625 C 0.34375 0.0625 0.375 0.09375 0.421875 0.09375 L 0.4375 0.09375 C 0.59375 0.09375 0.75 -0.265625 0.875 -0.296875 L 0.890625 -0.296875 C 0.96875 -0.296875 1.234375 -0.046875 1.453125 0.015625 C 1.609375 0.078125 1.796875 0.09375 1.96875 0.09375 C 2.796875 0.09375 3.59375 -0.34375 3.59375 -1.25 C 3.59375 -1.90625 3.109375 -2.453125 2.453125 -2.625 C 1.828125 -2.796875 0.8125 -2.796875 0.8125 -3.515625 C 0.8125 -4.125 1.484375 -4.28125 1.921875 -4.28125 C 2.40625 -4.28125 3.09375 -4 3.09375 -3.15625 C 3.09375 -3.0625 3.09375 -2.984375 3.203125 -2.984375 C 3.3125 -2.984375 3.34375 -3.0625 3.34375 -3.15625 C 3.34375 -3.203125 3.34375 -3.265625 3.34375 -3.296875 L 3.34375 -4.328125 C 3.34375 -4.390625 3.3125 -4.46875 3.234375 -4.46875 C 3.078125 -4.46875 2.96875 -4.21875 2.859375 -4.21875 L 2.84375 -4.21875 C 2.765625 -4.21875 2.609375 -4.34375 2.5 -4.390625 C 2.3125 -4.453125 2.109375 -4.46875 1.921875 -4.46875 C 1.859375 -4.46875 1.8125 -4.46875 1.75 -4.46875 Z M 1.75 -4.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-9">
<path style="stroke:none;" d="M 1.109375 -3.796875 C 1.359375 -4.109375 1.796875 -4.25 2.171875 -4.25 C 2.90625 -4.25 3.234375 -3.578125 3.234375 -2.875 L 3.234375 -2.609375 C 2.09375 -2.609375 0.40625 -2.25 0.40625 -0.953125 L 0.40625 -0.875 C 0.484375 -0.09375 1.453125 0.09375 2.03125 0.09375 C 2.53125 0.09375 3.1875 -0.234375 3.3125 -0.75 C 3.375 -0.3125 3.65625 0.046875 4.09375 0.046875 C 4.5 0.046875 4.859375 -0.28125 4.921875 -0.734375 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.953125 C 4.671875 -0.671875 4.609375 -0.265625 4.3125 -0.265625 C 3.984375 -0.265625 3.9375 -0.65625 3.9375 -0.921875 L 3.9375 -2.59375 C 3.9375 -2.71875 3.953125 -2.84375 3.953125 -2.96875 C 3.953125 -3.9375 3.046875 -4.46875 2.21875 -4.46875 C 1.578125 -4.46875 0.703125 -4.15625 0.703125 -3.359375 C 0.703125 -3.078125 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.609375 -3.09375 1.609375 -3.34375 C 1.609375 -3.625 1.390625 -3.796875 1.109375 -3.796875 Z M 3.234375 -2.40625 L 3.234375 -1.390625 C 3.234375 -0.703125 2.765625 -0.15625 2.109375 -0.125 L 2.078125 -0.125 C 1.609375 -0.125 1.1875 -0.484375 1.1875 -0.96875 L 1.1875 -1.015625 C 1.25 -2.03125 2.375 -2.375 3.234375 -2.40625 Z M 3.234375 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-10">
<path style="stroke:none;" d="M 1.484375 -6.140625 C 1.484375 -5.453125 1.203125 -4.203125 0.171875 -4.203125 L 0.171875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.421875 C 1.03125 -1.09375 1.0625 -0.75 1.21875 -0.46875 C 1.4375 -0.0625 1.90625 0.09375 2.34375 0.09375 C 3.15625 0.09375 3.3125 -0.8125 3.3125 -1.453125 L 3.3125 -1.8125 L 3.078125 -1.8125 C 3.078125 -1.671875 3.078125 -1.515625 3.078125 -1.359375 C 3.078125 -0.921875 2.984375 -0.15625 2.390625 -0.15625 C 1.828125 -0.15625 1.734375 -0.84375 1.734375 -1.28125 L 1.734375 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.734375 -4.296875 L 1.734375 -6.140625 Z M 1.484375 -6.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-11">
<path style="stroke:none;" d="M 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.6875 -3.046875 0.703125 -3.453125 0.921875 -3.734375 C 1.171875 -4.046875 1.640625 -4.078125 2.03125 -4.078125 L 3.140625 -4.078125 C 2.203125 -2.875 1.3125 -1.59375 0.390625 -0.375 C 0.34375 -0.3125 0.28125 -0.21875 0.28125 -0.140625 C 0.28125 -0.046875 0.34375 -0.015625 0.453125 -0.015625 L 3.828125 -0.015625 L 4 -1.875 L 3.75 -1.875 C 3.671875 -1.203125 3.625 -0.375 2.671875 -0.28125 C 2.4375 -0.265625 2.21875 -0.265625 2 -0.265625 L 1.125 -0.265625 C 1.859375 -1.25 2.59375 -2.25 3.328125 -3.234375 C 3.546875 -3.53125 3.984375 -4 3.984375 -4.171875 C 3.984375 -4.265625 3.890625 -4.296875 3.8125 -4.296875 Z M 0.53125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-12">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.453125 -3.984375 C 0.734375 -3.984375 1.03125 -3.96875 1.09375 -3.671875 C 1.09375 -3.5625 1.09375 -3.453125 1.09375 -3.34375 L 1.09375 -1.359375 C 1.09375 -1.03125 1.109375 -0.734375 1.28125 -0.4375 C 1.5625 -0.015625 2.125 0.109375 2.59375 0.109375 C 3.046875 0.109375 3.453125 -0.09375 3.703125 -0.453125 C 3.765625 -0.5625 3.84375 -0.65625 3.875 -0.78125 L 3.875 0.09375 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.171875 -0.3125 C 4.84375 -0.3125 4.546875 -0.34375 4.546875 -0.796875 L 4.546875 -4.40625 L 3.078125 -4.296875 L 3.078125 -3.984375 L 3.21875 -3.984375 C 3.546875 -3.984375 3.84375 -3.953125 3.84375 -3.484375 L 3.84375 -1.6875 C 3.84375 -0.953125 3.46875 -0.125 2.640625 -0.125 C 2.078125 -0.125 1.796875 -0.265625 1.796875 -1.328125 L 1.796875 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-13">
<symbol overflow="visible" id="glyph4-13">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.28125 2.1875 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.859375 -3.53125 3.859375 -3.078125 L 3.859375 -0.703125 C 3.859375 -0.34375 3.5625 -0.3125 3.234375 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.796875 -0.3125 4.5625 -0.359375 4.5625 -0.734375 L 4.5625 -2.546875 C 4.5625 -3.28125 4.953125 -4.1875 5.90625 -4.1875 C 6.546875 -4.1875 6.625 -3.53125 6.625 -3.078125 L 6.625 -0.703125 C 6.625 -0.34375 6.3125 -0.3125 5.984375 -0.3125 L 5.84375 -0.3125 L 5.84375 -0.015625 L 8.09375 -0.015625 L 8.09375 -0.3125 L 7.890625 -0.3125 C 7.59375 -0.3125 7.3125 -0.34375 7.3125 -0.703125 L 7.3125 -2.953125 C 7.3125 -3.3125 7.296875 -3.65625 7.0625 -3.984375 C 6.796875 -4.3125 6.375 -4.40625 5.96875 -4.40625 C 5.328125 -4.40625 4.796875 -4.03125 4.53125 -3.453125 C 4.34375 -4.15625 3.890625 -4.40625 3.203125 -4.40625 C 2.5625 -4.40625 1.953125 -4 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-14">
<symbol overflow="visible" id="glyph4-14">
<path style="stroke:none;" d="M 0.296875 -6.8125 L 0.296875 -6.515625 C 0.421875 -6.515625 0.5625 -6.515625 0.703125 -6.515625 C 1.046875 -6.515625 1.359375 -6.46875 1.359375 -6.09375 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.703125 -0.3125 C 0.5625 -0.3125 0.40625 -0.3125 0.296875 -0.3125 L 0.296875 -0.015625 L 3.3125 -0.015625 L 3.3125 -0.3125 C 3.1875 -0.3125 3.046875 -0.3125 2.90625 -0.3125 C 2.5625 -0.3125 2.25 -0.375 2.25 -0.75 L 2.25 -6.09375 C 2.25 -6.46875 2.578125 -6.515625 2.921875 -6.515625 C 3.046875 -6.515625 3.1875 -6.515625 3.3125 -6.515625 L 3.3125 -6.8125 Z M 0.296875 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-15">
<symbol overflow="visible" id="glyph4-15">
<path style="stroke:none;" d="M 0.3125 -6.8125 L 0.3125 -6.515625 L 0.46875 -6.515625 C 0.84375 -6.515625 1.09375 -6.46875 1.09375 -5.984375 L 1.09375 -0.953125 C 1.09375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.53125 4.390625 -3.84375 C 4.140625 -4.28125 3.65625 -4.40625 3.1875 -4.40625 C 2.609375 -4.40625 1.96875 -4.015625 1.78125 -3.453125 L 1.765625 -6.921875 Z M 0.3125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-16">
<symbol overflow="visible" id="glyph4-16">
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 L 0.484375 -6.515625 C 0.84375 -6.515625 1.109375 -6.46875 1.109375 -5.984375 L 1.109375 -0.953125 C 1.109375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 -0.015625 L 2.546875 -0.015625 L 2.546875 -0.3125 L 2.296875 -0.3125 C 2.015625 -0.3125 1.78125 -0.359375 1.78125 -0.75 L 1.78125 -6.921875 Z M 0.328125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-17">
<symbol overflow="visible" id="glyph4-17">
<path style="stroke:none;" d="M 0.1875 -4.296875 L 0.1875 -3.984375 L 0.375 -3.984375 C 0.875 -3.984375 0.921875 -3.78125 1.21875 -3.03125 L 2.03125 -1.03125 C 2.1875 -0.640625 2.390625 0.09375 2.625 0.09375 C 2.859375 0.09375 3.046875 -0.625 3.203125 -0.984375 L 4.03125 -3.046875 C 4.28125 -3.671875 4.5 -3.984375 5.0625 -3.984375 L 5.0625 -4.296875 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.671875 -3.984375 3.921875 -3.8125 3.921875 -3.578125 C 3.921875 -3.453125 3.875 -3.3125 3.8125 -3.1875 C 3.53125 -2.46875 3.25 -1.78125 2.953125 -1.078125 C 2.9375 -0.984375 2.875 -0.890625 2.859375 -0.796875 L 2.84375 -0.796875 C 2.78125 -1.03125 2.671875 -1.25 2.578125 -1.484375 L 1.765625 -3.5 C 1.734375 -3.578125 1.6875 -3.65625 1.6875 -3.734375 L 1.6875 -3.78125 C 1.75 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 Z M 0.1875 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-18">
<symbol overflow="visible" id="glyph4-18">
<path style="stroke:none;" d="M 2.34375 -4.46875 C 1.09375 -4.34375 0.28125 -3.28125 0.28125 -2.125 C 0.28125 -1 1.171875 0.09375 2.5 0.09375 C 3.6875 0.09375 4.6875 -0.875 4.6875 -2.140625 C 4.6875 -3.3125 3.796875 -4.46875 2.46875 -4.46875 C 2.4375 -4.46875 2.375 -4.46875 2.34375 -4.46875 Z M 1.109375 -1.890625 L 1.109375 -2.328125 C 1.109375 -3.09375 1.359375 -4.25 2.484375 -4.25 C 3.296875 -4.25 3.75 -3.5625 3.84375 -2.8125 C 3.859375 -2.59375 3.859375 -2.375 3.859375 -2.15625 C 3.859375 -1.515625 3.78125 -0.703125 3.15625 -0.34375 C 2.953125 -0.203125 2.734375 -0.15625 2.5 -0.15625 C 1.78125 -0.15625 1.265625 -0.71875 1.15625 -1.5 C 1.140625 -1.625 1.140625 -1.765625 1.109375 -1.890625 Z M 1.109375 -1.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-19">
<symbol overflow="visible" id="glyph4-19">
<path style="stroke:none;" d="M 3.578125 -3.859375 C 3.3125 -3.84375 3.109375 -3.671875 3.109375 -3.40625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.875 -2.9375 4.03125 -3.15625 4.03125 -3.4375 L 4.03125 -3.5 C 3.921875 -4.234375 3.078125 -4.46875 2.5 -4.46875 C 1.28125 -4.46875 0.328125 -3.40625 0.328125 -2.15625 C 0.328125 -1.03125 1.203125 0.09375 2.5 0.09375 C 3.15625 0.09375 3.796875 -0.265625 4.0625 -0.953125 C 4.09375 -1.015625 4.140625 -1.109375 4.140625 -1.171875 C 4.140625 -1.25 4.09375 -1.296875 4.015625 -1.296875 C 3.875 -1.296875 3.78125 -0.921875 3.703125 -0.78125 C 3.46875 -0.40625 3.0625 -0.15625 2.609375 -0.15625 C 1.546875 -0.15625 1.21875 -1.21875 1.171875 -2 L 1.171875 -2.125 C 1.171875 -2.921875 1.359375 -4.109375 2.453125 -4.21875 L 2.53125 -4.21875 C 2.90625 -4.21875 3.296875 -4.109375 3.578125 -3.859375 Z M 3.578125 -3.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-20">
<symbol overflow="visible" id="glyph4-20">
<path style="stroke:none;" d="M 0.890625 -6.015625 L 0.890625 -5.703125 C 1.328125 -5.703125 1.796875 -5.75 2.1875 -5.96875 L 2.1875 -0.75 C 2.1875 -0.375 1.8125 -0.3125 1.421875 -0.3125 C 1.25 -0.3125 1.09375 -0.3125 0.953125 -0.3125 L 0.953125 -0.015625 L 4.1875 -0.015625 L 4.1875 -0.3125 C 4.015625 -0.3125 3.84375 -0.3125 3.6875 -0.3125 C 3.296875 -0.3125 2.9375 -0.375 2.9375 -0.75 L 2.9375 -6.484375 C 2.9375 -6.578125 2.90625 -6.65625 2.796875 -6.65625 C 2.65625 -6.65625 2.5 -6.453125 2.375 -6.375 C 1.9375 -6.09375 1.40625 -6.015625 0.890625 -6.015625 Z M 0.890625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-21">
<symbol overflow="visible" id="glyph4-21">
<path style="stroke:none;" d="M 1.3125 -1.0625 C 1.0625 -1.03125 0.859375 -0.796875 0.859375 -0.546875 C 0.859375 -0.296875 1.0625 -0.015625 1.359375 -0.015625 C 1.640625 -0.015625 1.90625 -0.21875 1.90625 -0.53125 C 1.90625 -0.78125 1.71875 -1.0625 1.390625 -1.0625 C 1.359375 -1.0625 1.328125 -1.0625 1.3125 -1.0625 Z M 1.3125 -1.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-22">
<symbol overflow="visible" id="glyph4-22">
<path style="stroke:none;" d="M 0.890625 -5.328125 C 1.125 -5.828125 1.5 -6.34375 2.21875 -6.34375 C 3.15625 -6.34375 3.5625 -5.484375 3.5625 -4.703125 C 3.5625 -3.78125 2.953125 -3.03125 2.375 -2.375 C 1.8125 -1.703125 1.203125 -1.0625 0.625 -0.40625 C 0.53125 -0.3125 0.5 -0.265625 0.5 -0.125 L 0.5 -0.015625 L 4.203125 -0.015625 L 4.46875 -1.75 L 4.234375 -1.75 C 4.140625 -1.296875 4.203125 -0.796875 3.6875 -0.796875 L 3.296875 -0.796875 C 3 -0.78125 2.71875 -0.78125 2.421875 -0.78125 C 2.03125 -0.78125 1.65625 -0.78125 1.28125 -0.78125 L 1.96875 -1.453125 C 2.25 -1.71875 2.515625 -1.984375 2.796875 -2.234375 C 3.53125 -2.890625 4.46875 -3.609375 4.46875 -4.71875 C 4.46875 -5.84375 3.515625 -6.65625 2.390625 -6.65625 C 1.4375 -6.65625 0.5 -5.9375 0.5 -4.859375 C 0.5 -4.609375 0.59375 -4.296875 1.015625 -4.296875 C 1.3125 -4.296875 1.546875 -4.5 1.546875 -4.8125 C 1.546875 -5.078125 1.34375 -5.328125 1.03125 -5.328125 C 0.984375 -5.328125 0.9375 -5.328125 0.890625 -5.328125 Z M 0.890625 -5.328125 "/>
</symbol>
</g>
@ -239,179 +278,245 @@
<use xlink:href="#glyph2-7" x="116.260579" y="107.881"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-14" x="-0.232" y="140.823"/>
<use xlink:href="#glyph3-1" x="-0.232" y="129.796"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-15" x="23.437795" y="140.823"/>
<use xlink:href="#glyph2-12" x="35.528773" y="140.823"/>
<use xlink:href="#glyph2-9" x="39.911537" y="140.823"/>
<use xlink:href="#glyph2-7" x="47.084637" y="140.823"/>
<use xlink:href="#glyph3-2" x="14.710904" y="129.796"/>
<use xlink:href="#glyph3-3" x="23.494928" y="129.796"/>
<use xlink:href="#glyph3-4" x="26.676983" y="129.796"/>
<use xlink:href="#glyph3-5" x="31.927273" y="129.796"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-12" x="58.558728" y="140.823"/>
<use xlink:href="#glyph2-7" x="62.941492" y="140.823"/>
<use xlink:href="#glyph2-6" x="69.164873" y="140.823"/>
<use xlink:href="#glyph3-3" x="40.260988" y="129.796"/>
<use xlink:href="#glyph3-5" x="43.443042" y="129.796"/>
<use xlink:href="#glyph3-6" x="47.961081" y="129.796"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-16" x="80.565798" y="140.823"/>
<use xlink:href="#glyph2-17" x="92.476014" y="140.823"/>
<use xlink:href="#glyph2-7" x="101.241542" y="140.823"/>
<use xlink:href="#glyph2-13" x="107.464923" y="140.823"/>
<use xlink:href="#glyph3-7" x="56.231036" y="129.796"/>
<use xlink:href="#glyph3-8" x="64.890527" y="129.796"/>
<use xlink:href="#glyph3-5" x="71.25364" y="129.796"/>
<use xlink:href="#glyph3-9" x="75.771679" y="129.796"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="114.032614" y="140.823"/>
<use xlink:href="#glyph2-2" x="122.798142" y="140.823"/>
<use xlink:href="#glyph2-12" x="131.56367" y="140.823"/>
<use xlink:href="#glyph2-6" x="135.946434" y="140.823"/>
<use xlink:href="#glyph2-6" x="142.082304" y="140.823"/>
<use xlink:href="#glyph3-10" x="80.543765" y="129.796"/>
<use xlink:href="#glyph3-11" x="86.906877" y="129.796"/>
<use xlink:href="#glyph3-3" x="93.26999" y="129.796"/>
<use xlink:href="#glyph3-6" x="96.452044" y="129.796"/>
<use xlink:href="#glyph3-6" x="100.906323" y="129.796"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-14" x="153.483229" y="140.823"/>
<use xlink:href="#glyph3-1" x="109.18624" y="129.796"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="-0.232" y="162.641"/>
<use xlink:href="#glyph3-2" x="7.237957" y="162.641"/>
<use xlink:href="#glyph3-3" x="10.004571" y="162.641"/>
<use xlink:href="#glyph3-4" x="14.430955" y="162.641"/>
<use xlink:href="#glyph3-1" x="337.747212" y="129.796"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="21.649855" y="162.641"/>
<use xlink:href="#glyph3-2" x="26.076238" y="162.641"/>
<use xlink:href="#glyph3-5" x="28.842852" y="162.641"/>
<use xlink:href="#glyph3-12" x="-0.232" y="151.711"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-6" x="37.703588" y="162.641"/>
<use xlink:href="#glyph3-7" x="45.173546" y="162.641"/>
<use xlink:href="#glyph3-8" x="50.706774" y="162.641"/>
<use xlink:href="#glyph3-9" x="54.635027" y="162.641"/>
<use xlink:href="#glyph3-10" x="59.615331" y="162.641"/>
<use xlink:href="#glyph3-11" x="63.48879" y="162.641"/>
<use xlink:href="#glyph3-2" x="14.710904" y="151.711"/>
<use xlink:href="#glyph3-3" x="23.494928" y="151.711"/>
<use xlink:href="#glyph3-4" x="26.676983" y="151.711"/>
<use xlink:href="#glyph3-5" x="31.927273" y="151.711"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-11" x="71.232719" y="162.641"/>
<use xlink:href="#glyph3-12" x="75.659102" y="162.641"/>
<use xlink:href="#glyph3-13" x="81.19233" y="162.641"/>
<use xlink:href="#glyph3-3" x="40.260988" y="151.711"/>
<use xlink:href="#glyph3-5" x="43.443042" y="151.711"/>
<use xlink:href="#glyph3-6" x="47.961081" y="151.711"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-14" x="92.809718" y="162.641"/>
<use xlink:href="#glyph3-5" x="96.406216" y="162.641"/>
<use xlink:href="#glyph3-15" x="101.939444" y="162.641"/>
<use xlink:href="#glyph3-9" x="107.472672" y="162.641"/>
<use xlink:href="#glyph3-16" x="112.452976" y="162.641"/>
<use xlink:href="#glyph3-10" x="115.21959" y="162.641"/>
<use xlink:href="#glyph3-7" x="56.231036" y="151.711"/>
<use xlink:href="#glyph3-8" x="64.890527" y="151.711"/>
<use xlink:href="#glyph3-5" x="71.25364" y="151.711"/>
<use xlink:href="#glyph3-9" x="75.771679" y="151.711"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-17" x="122.420557" y="162.641"/>
<use xlink:href="#glyph3-10" x="80.543765" y="151.711"/>
<use xlink:href="#glyph3-11" x="86.906877" y="151.711"/>
<use xlink:href="#glyph3-3" x="93.26999" y="151.711"/>
<use xlink:href="#glyph3-6" x="96.452044" y="151.711"/>
<use xlink:href="#glyph3-6" x="100.906323" y="151.711"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-18" x="127.398869" y="162.641"/>
<use xlink:href="#glyph3-5" x="132.379172" y="162.641"/>
<use xlink:href="#glyph3-12" x="109.18624" y="151.711"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-6" x="141.229946" y="162.641"/>
<use xlink:href="#glyph3-7" x="148.699904" y="162.641"/>
<use xlink:href="#glyph3-8" x="154.233132" y="162.641"/>
<use xlink:href="#glyph3-19" x="158.161385" y="162.641"/>
<use xlink:href="#glyph3-1" x="337.747212" y="151.711"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-15" x="162.308815" y="162.641"/>
<use xlink:href="#glyph3-5" x="167.842043" y="162.641"/>
<use xlink:href="#glyph3-2" x="173.375271" y="162.641"/>
<use xlink:href="#glyph3-10" x="176.141885" y="162.641"/>
<use xlink:href="#glyph3-10" x="180.015344" y="162.641"/>
<use xlink:href="#glyph2-14" x="-0.232" y="184.654"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-20" x="187.216312" y="162.641"/>
<use xlink:href="#glyph3-21" x="192.196615" y="162.641"/>
<use xlink:href="#glyph2-15" x="23.437795" y="184.654"/>
<use xlink:href="#glyph2-12" x="35.528773" y="184.654"/>
<use xlink:href="#glyph2-9" x="39.911537" y="184.654"/>
<use xlink:href="#glyph2-7" x="47.084637" y="184.654"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-18" x="-0.232" y="195.584"/>
<use xlink:href="#glyph2-12" x="58.558728" y="184.654"/>
<use xlink:href="#glyph2-7" x="62.941492" y="184.654"/>
<use xlink:href="#glyph2-6" x="69.164873" y="184.654"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-15" x="23.437795" y="195.584"/>
<use xlink:href="#glyph2-12" x="35.528773" y="195.584"/>
<use xlink:href="#glyph2-9" x="39.911537" y="195.584"/>
<use xlink:href="#glyph2-7" x="47.084637" y="195.584"/>
<use xlink:href="#glyph2-16" x="80.565798" y="184.654"/>
<use xlink:href="#glyph2-17" x="92.476014" y="184.654"/>
<use xlink:href="#glyph2-7" x="101.241542" y="184.654"/>
<use xlink:href="#glyph2-13" x="107.464923" y="184.654"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-12" x="58.558728" y="195.584"/>
<use xlink:href="#glyph2-7" x="62.941492" y="195.584"/>
<use xlink:href="#glyph2-6" x="69.164873" y="195.584"/>
<use xlink:href="#glyph2-3" x="114.032614" y="184.654"/>
<use xlink:href="#glyph2-2" x="122.798142" y="184.654"/>
<use xlink:href="#glyph2-12" x="131.56367" y="184.654"/>
<use xlink:href="#glyph2-6" x="135.946434" y="184.654"/>
<use xlink:href="#glyph2-6" x="142.082304" y="184.654"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-16" x="80.565798" y="195.584"/>
<use xlink:href="#glyph2-17" x="92.476014" y="195.584"/>
<use xlink:href="#glyph2-7" x="101.241542" y="195.584"/>
<use xlink:href="#glyph2-13" x="107.464923" y="195.584"/>
<use xlink:href="#glyph2-14" x="153.483229" y="184.654"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="114.032614" y="195.584"/>
<use xlink:href="#glyph2-2" x="122.798142" y="195.584"/>
<use xlink:href="#glyph2-12" x="131.56367" y="195.584"/>
<use xlink:href="#glyph2-6" x="135.946434" y="195.584"/>
<use xlink:href="#glyph2-6" x="142.082304" y="195.584"/>
<use xlink:href="#glyph4-1" x="-0.232" y="206.472"/>
<use xlink:href="#glyph4-2" x="7.237957" y="206.472"/>
<use xlink:href="#glyph4-3" x="10.004571" y="206.472"/>
<use xlink:href="#glyph4-4" x="14.430955" y="206.472"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-18" x="153.483229" y="195.584"/>
<use xlink:href="#glyph4-3" x="21.649855" y="206.472"/>
<use xlink:href="#glyph4-2" x="26.076238" y="206.472"/>
<use xlink:href="#glyph4-5" x="28.842852" y="206.472"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="-0.232" y="217.402"/>
<use xlink:href="#glyph3-2" x="7.237957" y="217.402"/>
<use xlink:href="#glyph3-3" x="10.004571" y="217.402"/>
<use xlink:href="#glyph3-4" x="14.430955" y="217.402"/>
<use xlink:href="#glyph4-6" x="37.703588" y="206.472"/>
<use xlink:href="#glyph4-7" x="45.173546" y="206.472"/>
<use xlink:href="#glyph4-8" x="50.706774" y="206.472"/>
<use xlink:href="#glyph4-9" x="54.635027" y="206.472"/>
<use xlink:href="#glyph4-10" x="59.615331" y="206.472"/>
<use xlink:href="#glyph4-11" x="63.48879" y="206.472"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="21.649855" y="217.402"/>
<use xlink:href="#glyph3-2" x="26.076238" y="217.402"/>
<use xlink:href="#glyph3-5" x="28.842852" y="217.402"/>
<use xlink:href="#glyph4-11" x="71.232719" y="206.472"/>
<use xlink:href="#glyph4-12" x="75.659102" y="206.472"/>
<use xlink:href="#glyph4-13" x="81.19233" y="206.472"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-6" x="37.703588" y="217.402"/>
<use xlink:href="#glyph3-7" x="45.173546" y="217.402"/>
<use xlink:href="#glyph3-8" x="50.706774" y="217.402"/>
<use xlink:href="#glyph3-9" x="54.635027" y="217.402"/>
<use xlink:href="#glyph3-10" x="59.615331" y="217.402"/>
<use xlink:href="#glyph3-11" x="63.48879" y="217.402"/>
<use xlink:href="#glyph4-14" x="92.809718" y="206.472"/>
<use xlink:href="#glyph4-5" x="96.406216" y="206.472"/>
<use xlink:href="#glyph4-15" x="101.939444" y="206.472"/>
<use xlink:href="#glyph4-9" x="107.472672" y="206.472"/>
<use xlink:href="#glyph4-16" x="112.452976" y="206.472"/>
<use xlink:href="#glyph4-10" x="115.21959" y="206.472"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-11" x="71.232719" y="217.402"/>
<use xlink:href="#glyph3-12" x="75.659102" y="217.402"/>
<use xlink:href="#glyph3-13" x="81.19233" y="217.402"/>
<use xlink:href="#glyph4-17" x="122.420557" y="206.472"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-14" x="92.809718" y="217.402"/>
<use xlink:href="#glyph3-5" x="96.406216" y="217.402"/>
<use xlink:href="#glyph3-15" x="101.939444" y="217.402"/>
<use xlink:href="#glyph3-9" x="107.472672" y="217.402"/>
<use xlink:href="#glyph3-16" x="112.452976" y="217.402"/>
<use xlink:href="#glyph3-10" x="115.21959" y="217.402"/>
<use xlink:href="#glyph4-18" x="127.398869" y="206.472"/>
<use xlink:href="#glyph4-5" x="132.379172" y="206.472"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-17" x="122.420557" y="217.402"/>
<use xlink:href="#glyph4-6" x="141.229946" y="206.472"/>
<use xlink:href="#glyph4-7" x="148.699904" y="206.472"/>
<use xlink:href="#glyph4-8" x="154.233132" y="206.472"/>
<use xlink:href="#glyph4-19" x="158.161385" y="206.472"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-18" x="127.398869" y="217.402"/>
<use xlink:href="#glyph3-5" x="132.379172" y="217.402"/>
<use xlink:href="#glyph4-15" x="162.308815" y="206.472"/>
<use xlink:href="#glyph4-5" x="167.842043" y="206.472"/>
<use xlink:href="#glyph4-2" x="173.375271" y="206.472"/>
<use xlink:href="#glyph4-10" x="176.141885" y="206.472"/>
<use xlink:href="#glyph4-10" x="180.015344" y="206.472"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-6" x="141.229946" y="217.402"/>
<use xlink:href="#glyph3-7" x="148.699904" y="217.402"/>
<use xlink:href="#glyph3-8" x="154.233132" y="217.402"/>
<use xlink:href="#glyph3-19" x="158.161385" y="217.402"/>
<use xlink:href="#glyph4-20" x="187.216312" y="206.472"/>
<use xlink:href="#glyph4-21" x="192.196615" y="206.472"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-15" x="162.308815" y="217.402"/>
<use xlink:href="#glyph3-5" x="167.842043" y="217.402"/>
<use xlink:href="#glyph3-2" x="173.375271" y="217.402"/>
<use xlink:href="#glyph3-10" x="176.141885" y="217.402"/>
<use xlink:href="#glyph3-10" x="180.015344" y="217.402"/>
<use xlink:href="#glyph2-18" x="-0.232" y="239.414"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-22" x="187.216312" y="217.402"/>
<use xlink:href="#glyph3-21" x="192.196615" y="217.402"/>
<use xlink:href="#glyph2-15" x="23.437795" y="239.414"/>
<use xlink:href="#glyph2-12" x="35.528773" y="239.414"/>
<use xlink:href="#glyph2-9" x="39.911537" y="239.414"/>
<use xlink:href="#glyph2-7" x="47.084637" y="239.414"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-20" x="169.134" y="538.745"/>
<use xlink:href="#glyph2-12" x="58.558728" y="239.414"/>
<use xlink:href="#glyph2-7" x="62.941492" y="239.414"/>
<use xlink:href="#glyph2-6" x="69.164873" y="239.414"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-16" x="80.565798" y="239.414"/>
<use xlink:href="#glyph2-17" x="92.476014" y="239.414"/>
<use xlink:href="#glyph2-7" x="101.241542" y="239.414"/>
<use xlink:href="#glyph2-13" x="107.464923" y="239.414"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="114.032614" y="239.414"/>
<use xlink:href="#glyph2-2" x="122.798142" y="239.414"/>
<use xlink:href="#glyph2-12" x="131.56367" y="239.414"/>
<use xlink:href="#glyph2-6" x="135.946434" y="239.414"/>
<use xlink:href="#glyph2-6" x="142.082304" y="239.414"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-18" x="153.483229" y="239.414"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="-0.232" y="261.233"/>
<use xlink:href="#glyph4-2" x="7.237957" y="261.233"/>
<use xlink:href="#glyph4-3" x="10.004571" y="261.233"/>
<use xlink:href="#glyph4-4" x="14.430955" y="261.233"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="21.649855" y="261.233"/>
<use xlink:href="#glyph4-2" x="26.076238" y="261.233"/>
<use xlink:href="#glyph4-5" x="28.842852" y="261.233"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-6" x="37.703588" y="261.233"/>
<use xlink:href="#glyph4-7" x="45.173546" y="261.233"/>
<use xlink:href="#glyph4-8" x="50.706774" y="261.233"/>
<use xlink:href="#glyph4-9" x="54.635027" y="261.233"/>
<use xlink:href="#glyph4-10" x="59.615331" y="261.233"/>
<use xlink:href="#glyph4-11" x="63.48879" y="261.233"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-11" x="71.232719" y="261.233"/>
<use xlink:href="#glyph4-12" x="75.659102" y="261.233"/>
<use xlink:href="#glyph4-13" x="81.19233" y="261.233"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-14" x="92.809718" y="261.233"/>
<use xlink:href="#glyph4-5" x="96.406216" y="261.233"/>
<use xlink:href="#glyph4-15" x="101.939444" y="261.233"/>
<use xlink:href="#glyph4-9" x="107.472672" y="261.233"/>
<use xlink:href="#glyph4-16" x="112.452976" y="261.233"/>
<use xlink:href="#glyph4-10" x="115.21959" y="261.233"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-17" x="122.420557" y="261.233"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-18" x="127.398869" y="261.233"/>
<use xlink:href="#glyph4-5" x="132.379172" y="261.233"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-6" x="141.229946" y="261.233"/>
<use xlink:href="#glyph4-7" x="148.699904" y="261.233"/>
<use xlink:href="#glyph4-8" x="154.233132" y="261.233"/>
<use xlink:href="#glyph4-19" x="158.161385" y="261.233"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-15" x="162.308815" y="261.233"/>
<use xlink:href="#glyph4-5" x="167.842043" y="261.233"/>
<use xlink:href="#glyph4-2" x="173.375271" y="261.233"/>
<use xlink:href="#glyph4-10" x="176.141885" y="261.233"/>
<use xlink:href="#glyph4-10" x="180.015344" y="261.233"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-22" x="187.216312" y="261.233"/>
<use xlink:href="#glyph4-21" x="192.196615" y="261.233"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-20" x="169.134" y="538.745"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 74 KiB

View File

@ -30,7 +30,7 @@
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 1.484375 -3.875 L 1.46875 -3.875 C 1.46875 -5.03125 1.515625 -6.34375 2.4375 -7.203125 C 2.765625 -7.5 3.171875 -7.671875 3.609375 -7.671875 C 4 -7.671875 4.453125 -7.546875 4.65625 -7.1875 C 4.625 -7.203125 4.59375 -7.203125 4.546875 -7.203125 C 4.265625 -7.203125 4.046875 -6.984375 4.046875 -6.6875 C 4.046875 -6.421875 4.25 -6.1875 4.546875 -6.1875 C 4.828125 -6.1875 5.0625 -6.390625 5.0625 -6.75 C 5.0625 -7.578125 4.28125 -7.953125 3.5625 -7.953125 C 1.546875 -7.953125 0.484375 -5.65625 0.484375 -3.90625 C 0.484375 -2.28125 0.8125 0.234375 2.96875 0.234375 C 4.046875 0.234375 5 -0.625 5.25 -1.640625 C 5.3125 -1.90625 5.34375 -2.203125 5.34375 -2.484375 C 5.34375 -3.71875 4.5 -5.109375 3.0625 -5.109375 C 2.421875 -5.109375 1.671875 -4.6875 1.484375 -3.875 Z M 1.5 -2.59375 L 1.5 -2.71875 C 1.5 -3.578125 1.859375 -4.859375 2.984375 -4.859375 L 3.0625 -4.859375 C 4.3125 -4.75 4.359375 -3.34375 4.359375 -2.53125 L 4.359375 -2.328125 C 4.359375 -1.59375 4.34375 -0.734375 3.640625 -0.28125 C 3.4375 -0.140625 3.203125 -0.078125 2.96875 -0.078125 C 2.5 -0.078125 2.140625 -0.328125 1.875 -0.71875 C 1.515625 -1.28125 1.546875 -1.953125 1.5 -2.59375 Z M 1.5 -2.59375 "/>
<path style="stroke:none;" d="M 2.234375 -4.046875 L 2.234375 -4.03125 C 1.390625 -3.640625 0.546875 -2.9375 0.484375 -1.9375 L 0.484375 -1.8125 C 0.484375 -0.546875 1.671875 0.203125 2.78125 0.234375 L 2.890625 0.234375 C 4.09375 0.234375 5.34375 -0.59375 5.34375 -2 C 5.34375 -2.578125 5.078125 -3.15625 4.65625 -3.5625 C 4.484375 -3.734375 4.28125 -3.84375 4.078125 -4 C 3.90625 -4.09375 3.734375 -4.234375 3.5625 -4.3125 L 3.5625 -4.34375 C 4.25 -4.609375 4.953125 -5.28125 5.015625 -6.0625 L 5.015625 -6.171875 C 5.015625 -7.09375 4.21875 -7.953125 2.953125 -7.953125 C 1.9375 -7.953125 0.8125 -7.25 0.8125 -6.03125 C 0.8125 -5.140625 1.296875 -4.609375 2.234375 -4.046875 Z M 1.046875 -1.703125 C 1.046875 -1.75 1.03125 -1.8125 1.03125 -1.859375 C 1.03125 -2.6875 1.65625 -3.34375 2.3125 -3.765625 C 2.359375 -3.796875 2.421875 -3.84375 2.484375 -3.84375 C 2.625 -3.84375 2.96875 -3.546875 3.1875 -3.40625 C 3.78125 -3 4.796875 -2.546875 4.796875 -1.703125 C 4.796875 -0.671875 3.84375 -0.078125 2.9375 -0.078125 C 2.03125 -0.078125 1.15625 -0.671875 1.046875 -1.703125 Z M 1.296875 -6.328125 C 1.296875 -7.203125 2.109375 -7.65625 2.890625 -7.65625 C 3.65625 -7.65625 4.546875 -7.140625 4.546875 -6.1875 C 4.546875 -5.5 4 -4.9375 3.484375 -4.59375 C 3.4375 -4.5625 3.375 -4.515625 3.328125 -4.515625 L 3.3125 -4.515625 C 3.1875 -4.515625 2.90625 -4.75 2.71875 -4.875 L 2.125 -5.265625 C 1.734375 -5.515625 1.359375 -5.828125 1.296875 -6.328125 Z M 1.296875 -6.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 1.53125 -1.15625 C 1.28125 -1.109375 1.046875 -0.890625 1.046875 -0.59375 C 1.046875 -0.28125 1.296875 -0.015625 1.609375 -0.015625 C 1.921875 -0.015625 2.203125 -0.25 2.203125 -0.578125 C 2.203125 -0.890625 1.9375 -1.171875 1.625 -1.171875 C 1.59375 -1.171875 1.5625 -1.15625 1.53125 -1.15625 Z M 1.53125 -1.15625 "/>
@ -117,69 +117,108 @@
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 C 0.453125 -6.515625 0.59375 -6.515625 0.703125 -6.515625 C 1.0625 -6.515625 1.359375 -6.46875 1.359375 -6.078125 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.6875 -0.3125 C 0.5625 -0.3125 0.4375 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 3.265625 -0.015625 L 3.265625 -0.3125 L 2.9375 -0.3125 C 2.515625 -0.3125 2.25 -0.34375 2.25 -0.75 L 2.25 -3.40625 L 5.21875 -3.40625 L 5.21875 -0.75 C 5.21875 -0.359375 4.890625 -0.3125 4.53125 -0.3125 L 4.203125 -0.3125 L 4.203125 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 C 7.015625 -0.3125 6.890625 -0.3125 6.765625 -0.3125 C 6.421875 -0.3125 6.109375 -0.359375 6.109375 -0.75 L 6.109375 -6.078125 C 6.109375 -6.453125 6.4375 -6.515625 6.765625 -6.515625 C 6.890625 -6.515625 7.03125 -6.515625 7.140625 -6.515625 L 7.140625 -6.8125 L 4.203125 -6.8125 L 4.203125 -6.515625 L 4.53125 -6.515625 C 4.953125 -6.515625 5.21875 -6.484375 5.21875 -6.078125 L 5.21875 -3.703125 L 2.25 -3.703125 L 2.25 -6.078125 C 2.25 -6.46875 2.578125 -6.515625 2.9375 -6.515625 L 3.265625 -6.515625 L 3.265625 -6.8125 Z M 0.328125 -6.8125 "/>
<path style="stroke:none;" d="M 0.84375 -5.90625 L 0.84375 -5.4375 C 1.328125 -5.4375 1.890625 -5.46875 2.34375 -5.625 L 2.34375 -0.484375 L 0.953125 -0.484375 L 0.953125 -0.015625 L 4.921875 -0.015625 L 4.921875 -0.484375 L 3.53125 -0.484375 L 3.53125 -6.265625 C 3.53125 -6.421875 3.5 -6.546875 3.265625 -6.546875 C 3.109375 -6.546875 3.015625 -6.453125 2.90625 -6.375 C 2.265625 -5.984375 1.5625 -5.90625 0.84375 -5.90625 Z M 0.84375 -5.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 0.375 -4.296875 L 0.375 -3.984375 L 0.5625 -3.984375 C 0.84375 -3.984375 1.109375 -3.953125 1.109375 -3.484375 L 1.109375 -0.734375 C 1.109375 -0.375 0.921875 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.265625 -0.3125 C 2.015625 -0.3125 1.78125 -0.34375 1.78125 -0.671875 L 1.78125 -4.40625 Z M 1.203125 -6.671875 C 0.953125 -6.640625 0.75 -6.421875 0.75 -6.15625 C 0.75 -5.859375 1 -5.625 1.28125 -5.625 C 1.5625 -5.625 1.8125 -5.84375 1.8125 -6.15625 C 1.8125 -6.4375 1.5625 -6.671875 1.28125 -6.671875 C 1.25 -6.671875 1.234375 -6.671875 1.203125 -6.671875 Z M 1.203125 -6.671875 "/>
<path style="stroke:none;" d="M 0.390625 -6.84375 L 0.390625 -6.375 L 1.46875 -6.375 L 1.46875 -0.484375 L 0.390625 -0.484375 L 0.390625 -0.015625 L 3.75 -0.015625 C 3.984375 -0.015625 4.234375 0 4.46875 0 C 5.4375 0 6.421875 -0.203125 7.171875 -0.890625 C 7.84375 -1.515625 8.140625 -2.46875 8.140625 -3.375 C 8.140625 -5.28125 6.921875 -6.859375 4.484375 -6.859375 C 4.25 -6.859375 4.03125 -6.84375 3.8125 -6.84375 Z M 2.828125 -0.484375 L 2.828125 -6.375 L 4.40625 -6.375 C 5.328125 -6.3125 6.171875 -5.90625 6.484375 -5 C 6.671875 -4.46875 6.671875 -3.890625 6.671875 -3.328125 L 6.671875 -3.15625 C 6.671875 -2.34375 6.5625 -1.453125 5.84375 -0.921875 C 5.4375 -0.640625 4.90625 -0.484375 4.40625 -0.484375 Z M 2.828125 -0.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 1.109375 -2.3125 L 3.984375 -2.3125 C 4.09375 -2.3125 4.140625 -2.375 4.140625 -2.5 C 4.140625 -3.546875 3.5 -4.46875 2.375 -4.46875 C 1.15625 -4.46875 0.28125 -3.375 0.28125 -2.1875 C 0.28125 -1.28125 0.78125 -0.453125 1.671875 -0.0625 C 1.890625 0.046875 2.15625 0.09375 2.40625 0.09375 L 2.4375 0.09375 C 3.203125 0.09375 3.84375 -0.328125 4.109375 -1.09375 C 4.125 -1.125 4.125 -1.171875 4.125 -1.203125 C 4.125 -1.265625 4.09375 -1.3125 4.015625 -1.3125 C 3.875 -1.3125 3.8125 -0.984375 3.75 -0.875 C 3.5 -0.4375 3.015625 -0.15625 2.5 -0.15625 C 2.140625 -0.15625 1.8125 -0.359375 1.546875 -0.625 C 1.140625 -1.09375 1.109375 -1.734375 1.109375 -2.3125 Z M 1.125 -2.515625 C 1.125 -3.296875 1.53125 -4.25 2.359375 -4.25 L 2.40625 -4.25 C 3.375 -4.15625 3.375 -3.125 3.46875 -2.515625 Z M 1.125 -2.515625 "/>
<path style="stroke:none;" d="M 0.5 -4.421875 L 0.5 -3.953125 C 0.578125 -3.953125 0.671875 -3.953125 0.75 -3.953125 C 0.953125 -3.953125 1.15625 -3.90625 1.15625 -3.625 L 1.15625 -0.484375 L 0.46875 -0.484375 L 0.46875 -0.015625 L 2.84375 -0.015625 L 2.84375 -0.484375 L 2.234375 -0.484375 L 2.234375 -4.5 L 1.09375 -4.5 Z M 1.453125 -6.921875 C 1.078125 -6.890625 0.78125 -6.546875 0.78125 -6.15625 C 0.78125 -5.765625 1.078125 -5.390625 1.5625 -5.390625 C 1.953125 -5.390625 2.328125 -5.71875 2.328125 -6.15625 C 2.328125 -6.546875 2.03125 -6.9375 1.5625 -6.9375 C 1.53125 -6.9375 1.484375 -6.9375 1.453125 -6.921875 Z M 1.453125 -6.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 0.265625 -4.296875 L 0.265625 -3.984375 L 0.421875 -3.984375 C 0.75 -3.984375 1.046875 -3.953125 1.046875 -3.484375 L 1.046875 -0.734375 C 1.046875 -0.328125 0.765625 -0.3125 0.328125 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.6875 -0.015625 L 2.6875 -0.3125 C 2.5625 -0.3125 2.421875 -0.3125 2.296875 -0.3125 C 1.984375 -0.3125 1.71875 -0.359375 1.71875 -0.734375 L 1.71875 -2.046875 C 1.71875 -2.90625 1.90625 -4.1875 2.890625 -4.1875 C 2.9375 -4.1875 2.953125 -4.1875 3 -4.171875 C 2.84375 -4.109375 2.765625 -3.953125 2.765625 -3.78125 C 2.765625 -3.5625 2.921875 -3.40625 3.15625 -3.359375 C 3.4375 -3.359375 3.625 -3.53125 3.625 -3.78125 C 3.625 -4.1875 3.25 -4.40625 2.890625 -4.40625 C 2.296875 -4.40625 1.78125 -3.875 1.671875 -3.34375 L 1.671875 -4.40625 Z M 0.265625 -4.296875 "/>
<path style="stroke:none;" d="M 1.59375 -2.1875 L 4.671875 -2.1875 C 4.84375 -2.1875 4.921875 -2.25 4.921875 -2.421875 C 4.921875 -3.421875 4.453125 -4.53125 2.78125 -4.53125 C 2.15625 -4.53125 1.53125 -4.359375 1.0625 -3.953125 C 0.5625 -3.53125 0.3125 -2.890625 0.3125 -2.25 C 0.3125 -1.640625 0.53125 -1.078125 0.953125 -0.640625 C 1.46875 -0.140625 2.21875 0.046875 2.9375 0.046875 C 3.625 0.046875 4.40625 -0.203125 4.78125 -0.828125 C 4.84375 -0.921875 4.921875 -1.0625 4.921875 -1.1875 C 4.921875 -1.3125 4.796875 -1.359375 4.6875 -1.359375 C 4.46875 -1.359375 4.453125 -1.15625 4.34375 -0.984375 C 4.078125 -0.5625 3.53125 -0.34375 3.03125 -0.34375 C 2.546875 -0.34375 2.078125 -0.546875 1.828125 -0.984375 C 1.609375 -1.328125 1.59375 -1.78125 1.59375 -2.1875 Z M 1.59375 -2.515625 C 1.59375 -3.1875 1.78125 -4.171875 2.796875 -4.171875 C 3.71875 -4.171875 3.984375 -3.25 3.984375 -2.515625 Z M 1.59375 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.546875 4.375 -3.84375 C 4.140625 -4.28125 3.640625 -4.40625 3.1875 -4.40625 C 2.578125 -4.40625 1.9375 -3.984375 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
<path style="stroke:none;" d="M 2 -4.53125 C 1.5625 -4.46875 1.140625 -4.421875 0.78125 -4.140625 C 0.53125 -3.921875 0.375 -3.5625 0.375 -3.21875 C 0.375 -1.78125 2.421875 -2 3.078125 -1.609375 C 3.28125 -1.5 3.421875 -1.28125 3.421875 -1.03125 C 3.421875 -0.390625 2.65625 -0.3125 2.28125 -0.3125 C 1.6875 -0.3125 1.15625 -0.578125 0.90625 -1.28125 C 0.859375 -1.421875 0.875 -1.609375 0.65625 -1.609375 L 0.5625 -1.609375 C 0.40625 -1.609375 0.375 -1.5 0.375 -1.375 L 0.375 -0.171875 C 0.375 -0.078125 0.390625 0.03125 0.5 0.046875 L 0.53125 0.046875 C 0.78125 0.046875 0.984375 -0.25 1.125 -0.25 C 1.1875 -0.25 1.25 -0.1875 1.296875 -0.15625 C 1.59375 0.015625 1.984375 0.046875 2.328125 0.046875 C 3.1875 0.046875 4.140625 -0.3125 4.140625 -1.359375 C 4.140625 -2.171875 3.484375 -2.65625 2.765625 -2.828125 C 2.203125 -2.953125 1.09375 -2.953125 1.09375 -3.5625 C 1.09375 -4.203125 2 -4.203125 2.25 -4.203125 C 2.71875 -4.203125 3.234375 -4.046875 3.359375 -3.515625 C 3.40625 -3.375 3.328125 -3.171875 3.59375 -3.171875 L 3.640625 -3.171875 C 3.828125 -3.171875 3.84375 -3.265625 3.84375 -3.375 L 3.84375 -4.3125 C 3.84375 -4.4375 3.8125 -4.53125 3.671875 -4.53125 C 3.484375 -4.53125 3.34375 -4.34375 3.21875 -4.34375 C 3.125 -4.34375 2.953125 -4.453125 2.8125 -4.46875 C 2.625 -4.515625 2.40625 -4.53125 2.203125 -4.53125 C 2.140625 -4.53125 2.0625 -4.53125 2 -4.53125 Z M 2 -4.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 0.3125 -0.3125 L 0.3125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 C 2.15625 -0.3125 1.75 -0.46875 1.71875 -0.8125 C 1.71875 -0.921875 1.78125 -1 1.796875 -1.09375 C 1.90625 -1.421875 2.015625 -1.75 2.140625 -2.078125 C 2.171875 -2.15625 2.171875 -2.28125 2.3125 -2.28125 L 4.578125 -2.28125 C 4.6875 -2.28125 4.703125 -2.171875 4.75 -2.078125 L 4.953125 -1.453125 C 5.046875 -1.203125 5.234375 -0.8125 5.234375 -0.609375 L 5.234375 -0.5625 C 5.140625 -0.328125 4.75 -0.3125 4.46875 -0.3125 L 4.40625 -0.3125 L 4.40625 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 L 6.859375 -0.3125 C 6.625 -0.3125 6.390625 -0.34375 6.265625 -0.453125 C 6.15625 -0.578125 6.125 -0.75 6.0625 -0.890625 C 5.546875 -2.375 5.046875 -3.875 4.515625 -5.359375 C 4.34375 -5.875 4.09375 -6.4375 3.96875 -6.953125 C 3.921875 -7.09375 3.875 -7.140625 3.734375 -7.140625 C 3.53125 -7.140625 3.484375 -6.9375 3.421875 -6.734375 C 2.875 -5.046875 2.25 -3.390625 1.6875 -1.71875 L 1.46875 -1.109375 C 1.421875 -0.9375 1.359375 -0.75 1.21875 -0.625 C 0.984375 -0.375 0.640625 -0.3125 0.3125 -0.3125 Z M 2.328125 -2.59375 L 3.4375 -5.828125 L 4.5625 -2.59375 Z M 2.328125 -2.59375 "/>
<path style="stroke:none;" d="M 1.6875 -6.34375 C 1.6875 -5.53125 1.265625 -4.328125 0.203125 -4.328125 L 0.203125 -3.96875 L 1.015625 -3.96875 L 1.015625 -1.40625 C 1.015625 -1.078125 1.03125 -0.75 1.21875 -0.484375 C 1.5 -0.078125 2.078125 0.0625 2.546875 0.0625 C 3.25 0.0625 3.8125 -0.421875 3.8125 -1.328125 C 3.8125 -1.46875 3.8125 -1.625 3.8125 -1.78125 L 3.34375 -1.78125 L 3.34375 -1.359375 C 3.34375 -0.984375 3.28125 -0.34375 2.734375 -0.34375 C 2.234375 -0.34375 2.15625 -0.875 2.15625 -1.28125 L 2.15625 -3.96875 L 3.625 -3.96875 L 3.625 -4.4375 L 2.15625 -4.4375 L 2.15625 -6.34375 Z M 1.6875 -6.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 0.265625 -6.8125 L 0.265625 -6.515625 L 0.4375 -6.515625 C 0.75 -6.515625 1.046875 -6.484375 1.046875 -6.015625 L 1.046875 -0.015625 L 1.28125 -0.03125 L 1.421875 -0.203125 L 1.65625 -0.625 L 1.671875 -0.625 C 1.90625 -0.140625 2.5 0.09375 3 0.09375 C 4.234375 0.09375 5.1875 -0.984375 5.1875 -2.15625 C 5.1875 -3.3125 4.3125 -4.40625 3.046875 -4.40625 C 2.515625 -4.40625 2.0625 -4.15625 1.71875 -3.765625 L 1.71875 -6.921875 Z M 4.34375 -1.90625 C 4.3125 -1.4375 4.25 -1.015625 3.953125 -0.640625 C 3.703125 -0.328125 3.328125 -0.125 2.9375 -0.125 C 2.5 -0.125 2.109375 -0.375 1.890625 -0.734375 C 1.796875 -0.84375 1.75 -0.921875 1.75 -1.078125 L 1.75 -2.734375 C 1.75 -2.875 1.734375 -3 1.734375 -3.125 C 1.734375 -3.734375 2.46875 -4.1875 3.015625 -4.1875 C 4.09375 -4.1875 4.359375 -2.9375 4.359375 -2.140625 C 4.359375 -2.0625 4.359375 -2 4.34375 -1.90625 Z M 4.34375 -1.90625 "/>
<path style="stroke:none;" d="M 0.40625 -0.484375 L 0.40625 -0.015625 L 2.890625 -0.015625 L 2.890625 -0.484375 C 2.59375 -0.484375 2.015625 -0.484375 2.015625 -0.625 C 2.015625 -0.765625 2.28125 -1.296875 2.40625 -1.609375 L 2.5 -1.8125 C 2.53125 -1.875 2.515625 -1.9375 2.640625 -1.9375 L 5.109375 -1.9375 C 5.3125 -1.9375 5.515625 -1.1875 5.65625 -0.84375 C 5.703125 -0.734375 5.765625 -0.609375 5.796875 -0.484375 L 4.859375 -0.484375 L 4.859375 -0.015625 L 8.25 -0.015625 L 8.25 -0.484375 L 7.390625 -0.484375 C 7.28125 -0.484375 7.265625 -0.53125 7.234375 -0.59375 L 7.140625 -0.84375 C 6.34375 -2.65625 5.609375 -4.53125 4.859375 -6.375 C 4.75 -6.625 4.71875 -6.96875 4.34375 -6.96875 L 4.28125 -6.96875 C 3.984375 -6.96875 3.953125 -6.734375 3.859375 -6.546875 C 3.125 -4.671875 2.296875 -2.84375 1.578125 -0.96875 C 1.453125 -0.703125 1.5 -0.546875 1.109375 -0.515625 C 0.875 -0.484375 0.640625 -0.484375 0.40625 -0.484375 Z M 2.734375 -2.40625 L 3.875 -5.171875 L 5.015625 -2.40625 Z M 2.734375 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 1.75 -4.46875 C 1.390625 -4.421875 1 -4.359375 0.703125 -4.109375 C 0.46875 -3.890625 0.328125 -3.5625 0.328125 -3.234375 C 0.328125 -1.53125 3.09375 -2.5 3.09375 -1 C 3.09375 -0.40625 2.546875 -0.125 2 -0.125 C 1.25 -0.125 0.734375 -0.65625 0.59375 -1.515625 C 0.578125 -1.609375 0.5625 -1.6875 0.453125 -1.6875 C 0.375 -1.6875 0.328125 -1.640625 0.328125 -1.5625 L 0.328125 0.015625 C 0.34375 0.0625 0.375 0.09375 0.421875 0.09375 L 0.4375 0.09375 C 0.59375 0.09375 0.75 -0.265625 0.875 -0.296875 L 0.890625 -0.296875 C 0.96875 -0.296875 1.234375 -0.046875 1.453125 0.015625 C 1.609375 0.078125 1.796875 0.09375 1.96875 0.09375 C 2.796875 0.09375 3.59375 -0.34375 3.59375 -1.25 C 3.59375 -1.90625 3.109375 -2.453125 2.453125 -2.625 C 1.828125 -2.796875 0.8125 -2.796875 0.8125 -3.515625 C 0.8125 -4.125 1.484375 -4.28125 1.921875 -4.28125 C 2.40625 -4.28125 3.09375 -4 3.09375 -3.15625 C 3.09375 -3.0625 3.09375 -2.984375 3.203125 -2.984375 C 3.3125 -2.984375 3.34375 -3.0625 3.34375 -3.15625 C 3.34375 -3.203125 3.34375 -3.265625 3.34375 -3.296875 L 3.34375 -4.328125 C 3.34375 -4.390625 3.3125 -4.46875 3.234375 -4.46875 C 3.078125 -4.46875 2.96875 -4.21875 2.859375 -4.21875 L 2.84375 -4.21875 C 2.765625 -4.21875 2.609375 -4.34375 2.5 -4.390625 C 2.3125 -4.453125 2.109375 -4.46875 1.921875 -4.46875 C 1.859375 -4.46875 1.8125 -4.46875 1.75 -4.46875 Z M 1.75 -4.46875 "/>
<path style="stroke:none;" d="M 0.375 -6.84375 L 0.375 -6.375 C 0.453125 -6.375 0.53125 -6.390625 0.625 -6.390625 C 0.859375 -6.390625 1.0625 -6.34375 1.0625 -6.046875 L 1.0625 -0.015625 L 1.515625 -0.015625 L 2.03125 -0.5625 C 2.359375 -0.125 2.984375 0.0625 3.515625 0.0625 C 4.859375 0.0625 5.984375 -0.84375 5.984375 -2.21875 C 5.984375 -3.5 5.0625 -4.5 3.59375 -4.5 C 3.078125 -4.5 2.515625 -4.34375 2.140625 -4 L 2.140625 -6.921875 L 0.75 -6.921875 Z M 4.6875 -1.84375 C 4.671875 -1.453125 4.640625 -1.0625 4.375 -0.75 C 4.140625 -0.46875 3.765625 -0.3125 3.390625 -0.3125 C 2.953125 -0.3125 2.1875 -0.640625 2.1875 -1.140625 L 2.1875 -3.4375 C 2.21875 -3.5625 2.421875 -3.75 2.578125 -3.84375 C 2.828125 -4.03125 3.15625 -4.140625 3.46875 -4.140625 C 4.609375 -4.140625 4.703125 -3.078125 4.703125 -2.34375 L 4.703125 -2.09375 C 4.703125 -2.015625 4.703125 -1.921875 4.6875 -1.84375 Z M 4.6875 -1.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M 1.109375 -3.796875 C 1.359375 -4.109375 1.796875 -4.25 2.171875 -4.25 C 2.90625 -4.25 3.234375 -3.578125 3.234375 -2.875 L 3.234375 -2.609375 C 2.09375 -2.609375 0.40625 -2.25 0.40625 -0.953125 L 0.40625 -0.875 C 0.484375 -0.09375 1.453125 0.09375 2.03125 0.09375 C 2.53125 0.09375 3.1875 -0.234375 3.3125 -0.75 C 3.375 -0.3125 3.65625 0.046875 4.09375 0.046875 C 4.5 0.046875 4.859375 -0.28125 4.921875 -0.734375 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.953125 C 4.671875 -0.671875 4.609375 -0.265625 4.3125 -0.265625 C 3.984375 -0.265625 3.9375 -0.65625 3.9375 -0.921875 L 3.9375 -2.59375 C 3.9375 -2.71875 3.953125 -2.84375 3.953125 -2.96875 C 3.953125 -3.9375 3.046875 -4.46875 2.21875 -4.46875 C 1.578125 -4.46875 0.703125 -4.15625 0.703125 -3.359375 C 0.703125 -3.078125 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.609375 -3.09375 1.609375 -3.34375 C 1.609375 -3.625 1.390625 -3.796875 1.109375 -3.796875 Z M 3.234375 -2.40625 L 3.234375 -1.390625 C 3.234375 -0.703125 2.765625 -0.15625 2.109375 -0.125 L 2.078125 -0.125 C 1.609375 -0.125 1.1875 -0.484375 1.1875 -0.96875 L 1.1875 -1.015625 C 1.25 -2.03125 2.375 -2.375 3.234375 -2.40625 Z M 3.234375 -2.40625 "/>
<path style="stroke:none;" d="M 3.59375 -4.078125 C 3.453125 -3.953125 3.390625 -3.765625 3.390625 -3.59375 C 3.390625 -3.25 3.65625 -2.984375 4 -2.984375 C 4.421875 -2.984375 4.640625 -3.3125 4.640625 -3.625 C 4.640625 -4.484375 3.390625 -4.53125 2.96875 -4.53125 L 2.875 -4.53125 C 2.109375 -4.53125 1.328125 -4.296875 0.859375 -3.671875 C 0.53125 -3.25 0.375 -2.765625 0.375 -2.234375 C 0.375 -1.6875 0.546875 -1.109375 0.921875 -0.703125 C 1.40625 -0.171875 2.140625 0.046875 2.84375 0.046875 C 3.546875 0.046875 4.3125 -0.203125 4.640625 -0.875 C 4.6875 -0.953125 4.765625 -1.0625 4.765625 -1.15625 C 4.765625 -1.296875 4.640625 -1.3125 4.546875 -1.3125 L 4.5 -1.3125 C 4.296875 -1.3125 4.28125 -1.171875 4.234375 -1.03125 C 3.984375 -0.59375 3.5625 -0.34375 3.0625 -0.34375 C 1.890625 -0.34375 1.65625 -1.390625 1.65625 -2.21875 C 1.65625 -2.984375 1.734375 -4.125 2.953125 -4.125 C 3.171875 -4.125 3.390625 -4.09375 3.59375 -4.078125 Z M 3.59375 -4.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 1.484375 -6.140625 C 1.484375 -5.453125 1.203125 -4.203125 0.171875 -4.203125 L 0.171875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.421875 C 1.03125 -1.09375 1.0625 -0.75 1.21875 -0.46875 C 1.4375 -0.0625 1.90625 0.09375 2.34375 0.09375 C 3.15625 0.09375 3.3125 -0.8125 3.3125 -1.453125 L 3.3125 -1.8125 L 3.078125 -1.8125 C 3.078125 -1.671875 3.078125 -1.515625 3.078125 -1.359375 C 3.078125 -0.921875 2.984375 -0.15625 2.390625 -0.15625 C 1.828125 -0.15625 1.734375 -0.84375 1.734375 -1.28125 L 1.734375 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.734375 -4.296875 L 1.734375 -6.140625 Z M 1.484375 -6.140625 "/>
<path style="stroke:none;" d="M 0.453125 -6.84375 L 0.453125 -6.375 L 0.671875 -6.375 C 0.921875 -6.375 1.140625 -6.34375 1.140625 -6.015625 L 1.140625 -0.484375 L 0.453125 -0.484375 L 0.453125 -0.015625 L 2.953125 -0.015625 L 2.953125 -0.484375 L 2.265625 -0.484375 L 2.265625 -2.71875 C 2.34375 -3.46875 2.953125 -4.140625 3.75 -4.140625 C 4.203125 -4.140625 4.3125 -3.671875 4.3125 -3.15625 L 4.3125 -0.484375 L 3.625 -0.484375 L 3.625 -0.015625 L 6.125 -0.015625 L 6.125 -0.484375 L 5.4375 -0.484375 L 5.4375 -2.984375 C 5.4375 -3.296875 5.421875 -3.625 5.28125 -3.890625 C 4.984375 -4.40625 4.40625 -4.5 3.875 -4.5 C 3.21875 -4.5 2.515625 -4.140625 2.21875 -3.515625 L 2.21875 -6.921875 L 0.828125 -6.921875 Z M 0.453125 -6.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.6875 -3.046875 0.703125 -3.453125 0.921875 -3.734375 C 1.171875 -4.046875 1.640625 -4.078125 2.03125 -4.078125 L 3.140625 -4.078125 C 2.203125 -2.875 1.3125 -1.59375 0.390625 -0.375 C 0.34375 -0.3125 0.28125 -0.21875 0.28125 -0.140625 C 0.28125 -0.046875 0.34375 -0.015625 0.453125 -0.015625 L 3.828125 -0.015625 L 4 -1.875 L 3.75 -1.875 C 3.671875 -1.203125 3.625 -0.375 2.671875 -0.28125 C 2.4375 -0.265625 2.21875 -0.265625 2 -0.265625 L 1.125 -0.265625 C 1.859375 -1.25 2.59375 -2.25 3.328125 -3.234375 C 3.546875 -3.53125 3.984375 -4 3.984375 -4.171875 C 3.984375 -4.265625 3.890625 -4.296875 3.8125 -4.296875 Z M 0.53125 -4.296875 "/>
<path style="stroke:none;" d="M 0.453125 -4.421875 L 0.453125 -3.953125 L 0.640625 -3.953125 C 0.90625 -3.953125 1.140625 -3.921875 1.140625 -3.625 L 1.140625 -0.484375 L 0.453125 -0.484375 L 0.453125 -0.015625 L 2.953125 -0.015625 L 2.953125 -0.484375 L 2.265625 -0.484375 L 2.265625 -2.71875 C 2.34375 -3.46875 2.953125 -4.140625 3.75 -4.140625 C 4.203125 -4.140625 4.3125 -3.671875 4.3125 -3.15625 L 4.3125 -0.484375 L 3.625 -0.484375 L 3.625 -0.015625 L 6.125 -0.015625 L 6.125 -0.484375 L 5.4375 -0.484375 L 5.4375 -2.9375 C 5.4375 -3.296875 5.421875 -3.65625 5.234375 -3.953125 C 4.9375 -4.421875 4.359375 -4.5 3.84375 -4.5 C 3.1875 -4.5 2.375 -4.0625 2.171875 -3.421875 L 2.15625 -4.5 L 0.8125 -4.4375 Z M 0.453125 -4.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 1.4375 -5.71875 C 1.71875 -5.9375 2.078125 -6.078125 2.453125 -6.078125 C 3.28125 -6.078125 3.78125 -5.390625 3.78125 -4.625 C 3.78125 -3.59375 2.953125 -2.8125 2.28125 -2.140625 C 1.8125 -1.671875 1.359375 -1.203125 0.890625 -0.734375 L 0.703125 -0.546875 C 0.609375 -0.453125 0.5625 -0.375 0.5625 -0.234375 L 0.5625 -0.015625 L 4.84375 -0.015625 L 5.15625 -2.21875 L 4.6875 -2.21875 C 4.640625 -1.84375 4.625 -1.28125 4.25 -1.28125 C 4 -1.25 3.734375 -1.25 3.484375 -1.25 L 1.9375 -1.25 C 2.46875 -1.65625 2.953125 -2.078125 3.484375 -2.46875 C 4.203125 -3 5.15625 -3.578125 5.15625 -4.625 C 5.15625 -6.078125 3.734375 -6.546875 2.671875 -6.546875 L 2.546875 -6.546875 C 1.75 -6.484375 0.5625 -6.09375 0.5625 -5.03125 C 0.5625 -4.671875 0.78125 -4.28125 1.296875 -4.28125 C 1.6875 -4.28125 2 -4.609375 2 -5 C 2 -5.359375 1.78125 -5.625 1.4375 -5.71875 Z M 1.4375 -5.71875 "/>
</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.328125 -6.8125 L 0.328125 -6.515625 C 0.453125 -6.515625 0.59375 -6.515625 0.703125 -6.515625 C 1.0625 -6.515625 1.359375 -6.46875 1.359375 -6.078125 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.6875 -0.3125 C 0.5625 -0.3125 0.4375 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 3.265625 -0.015625 L 3.265625 -0.3125 L 2.9375 -0.3125 C 2.515625 -0.3125 2.25 -0.34375 2.25 -0.75 L 2.25 -3.40625 L 5.21875 -3.40625 L 5.21875 -0.75 C 5.21875 -0.359375 4.890625 -0.3125 4.53125 -0.3125 L 4.203125 -0.3125 L 4.203125 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 C 7.015625 -0.3125 6.890625 -0.3125 6.765625 -0.3125 C 6.421875 -0.3125 6.109375 -0.359375 6.109375 -0.75 L 6.109375 -6.078125 C 6.109375 -6.453125 6.4375 -6.515625 6.765625 -6.515625 C 6.890625 -6.515625 7.03125 -6.515625 7.140625 -6.515625 L 7.140625 -6.8125 L 4.203125 -6.8125 L 4.203125 -6.515625 L 4.53125 -6.515625 C 4.953125 -6.515625 5.21875 -6.484375 5.21875 -6.078125 L 5.21875 -3.703125 L 2.25 -3.703125 L 2.25 -6.078125 C 2.25 -6.46875 2.578125 -6.515625 2.9375 -6.515625 L 3.265625 -6.515625 L 3.265625 -6.8125 Z M 0.328125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 0.375 -4.296875 L 0.375 -3.984375 L 0.5625 -3.984375 C 0.84375 -3.984375 1.109375 -3.953125 1.109375 -3.484375 L 1.109375 -0.734375 C 1.109375 -0.375 0.921875 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.265625 -0.3125 C 2.015625 -0.3125 1.78125 -0.34375 1.78125 -0.671875 L 1.78125 -4.40625 Z M 1.203125 -6.671875 C 0.953125 -6.640625 0.75 -6.421875 0.75 -6.15625 C 0.75 -5.859375 1 -5.625 1.28125 -5.625 C 1.5625 -5.625 1.8125 -5.84375 1.8125 -6.15625 C 1.8125 -6.4375 1.5625 -6.671875 1.28125 -6.671875 C 1.25 -6.671875 1.234375 -6.671875 1.203125 -6.671875 Z M 1.203125 -6.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M 1.109375 -2.3125 L 3.984375 -2.3125 C 4.09375 -2.3125 4.140625 -2.375 4.140625 -2.5 C 4.140625 -3.546875 3.5 -4.46875 2.375 -4.46875 C 1.15625 -4.46875 0.28125 -3.375 0.28125 -2.1875 C 0.28125 -1.28125 0.78125 -0.453125 1.671875 -0.0625 C 1.890625 0.046875 2.15625 0.09375 2.40625 0.09375 L 2.4375 0.09375 C 3.203125 0.09375 3.84375 -0.328125 4.109375 -1.09375 C 4.125 -1.125 4.125 -1.171875 4.125 -1.203125 C 4.125 -1.265625 4.09375 -1.3125 4.015625 -1.3125 C 3.875 -1.3125 3.8125 -0.984375 3.75 -0.875 C 3.5 -0.4375 3.015625 -0.15625 2.5 -0.15625 C 2.140625 -0.15625 1.8125 -0.359375 1.546875 -0.625 C 1.140625 -1.09375 1.109375 -1.734375 1.109375 -2.3125 Z M 1.125 -2.515625 C 1.125 -3.296875 1.53125 -4.25 2.359375 -4.25 L 2.40625 -4.25 C 3.375 -4.15625 3.375 -3.125 3.46875 -2.515625 Z M 1.125 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 0.265625 -4.296875 L 0.265625 -3.984375 L 0.421875 -3.984375 C 0.75 -3.984375 1.046875 -3.953125 1.046875 -3.484375 L 1.046875 -0.734375 C 1.046875 -0.328125 0.765625 -0.3125 0.328125 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.6875 -0.015625 L 2.6875 -0.3125 C 2.5625 -0.3125 2.421875 -0.3125 2.296875 -0.3125 C 1.984375 -0.3125 1.71875 -0.359375 1.71875 -0.734375 L 1.71875 -2.046875 C 1.71875 -2.90625 1.90625 -4.1875 2.890625 -4.1875 C 2.9375 -4.1875 2.953125 -4.1875 3 -4.171875 C 2.84375 -4.109375 2.765625 -3.953125 2.765625 -3.78125 C 2.765625 -3.5625 2.921875 -3.40625 3.15625 -3.359375 C 3.4375 -3.359375 3.625 -3.53125 3.625 -3.78125 C 3.625 -4.1875 3.25 -4.40625 2.890625 -4.40625 C 2.296875 -4.40625 1.78125 -3.875 1.671875 -3.34375 L 1.671875 -4.40625 Z M 0.265625 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-5">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.546875 4.375 -3.84375 C 4.140625 -4.28125 3.640625 -4.40625 3.1875 -4.40625 C 2.578125 -4.40625 1.9375 -3.984375 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-6">
<path style="stroke:none;" d="M 0.3125 -0.3125 L 0.3125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 C 2.15625 -0.3125 1.75 -0.46875 1.71875 -0.8125 C 1.71875 -0.921875 1.78125 -1 1.796875 -1.09375 C 1.90625 -1.421875 2.015625 -1.75 2.140625 -2.078125 C 2.171875 -2.15625 2.171875 -2.28125 2.3125 -2.28125 L 4.578125 -2.28125 C 4.6875 -2.28125 4.703125 -2.171875 4.75 -2.078125 L 4.953125 -1.453125 C 5.046875 -1.203125 5.234375 -0.8125 5.234375 -0.609375 L 5.234375 -0.5625 C 5.140625 -0.328125 4.75 -0.3125 4.46875 -0.3125 L 4.40625 -0.3125 L 4.40625 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 L 6.859375 -0.3125 C 6.625 -0.3125 6.390625 -0.34375 6.265625 -0.453125 C 6.15625 -0.578125 6.125 -0.75 6.0625 -0.890625 C 5.546875 -2.375 5.046875 -3.875 4.515625 -5.359375 C 4.34375 -5.875 4.09375 -6.4375 3.96875 -6.953125 C 3.921875 -7.09375 3.875 -7.140625 3.734375 -7.140625 C 3.53125 -7.140625 3.484375 -6.9375 3.421875 -6.734375 C 2.875 -5.046875 2.25 -3.390625 1.6875 -1.71875 L 1.46875 -1.109375 C 1.421875 -0.9375 1.359375 -0.75 1.21875 -0.625 C 0.984375 -0.375 0.640625 -0.3125 0.3125 -0.3125 Z M 2.328125 -2.59375 L 3.4375 -5.828125 L 4.5625 -2.59375 Z M 2.328125 -2.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-7">
<path style="stroke:none;" d="M 0.265625 -6.8125 L 0.265625 -6.515625 L 0.4375 -6.515625 C 0.75 -6.515625 1.046875 -6.484375 1.046875 -6.015625 L 1.046875 -0.015625 L 1.28125 -0.03125 L 1.421875 -0.203125 L 1.65625 -0.625 L 1.671875 -0.625 C 1.90625 -0.140625 2.5 0.09375 3 0.09375 C 4.234375 0.09375 5.1875 -0.984375 5.1875 -2.15625 C 5.1875 -3.3125 4.3125 -4.40625 3.046875 -4.40625 C 2.515625 -4.40625 2.0625 -4.15625 1.71875 -3.765625 L 1.71875 -6.921875 Z M 4.34375 -1.90625 C 4.3125 -1.4375 4.25 -1.015625 3.953125 -0.640625 C 3.703125 -0.328125 3.328125 -0.125 2.9375 -0.125 C 2.5 -0.125 2.109375 -0.375 1.890625 -0.734375 C 1.796875 -0.84375 1.75 -0.921875 1.75 -1.078125 L 1.75 -2.734375 C 1.75 -2.875 1.734375 -3 1.734375 -3.125 C 1.734375 -3.734375 2.46875 -4.1875 3.015625 -4.1875 C 4.09375 -4.1875 4.359375 -2.9375 4.359375 -2.140625 C 4.359375 -2.0625 4.359375 -2 4.34375 -1.90625 Z M 4.34375 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-8">
<path style="stroke:none;" d="M 1.75 -4.46875 C 1.390625 -4.421875 1 -4.359375 0.703125 -4.109375 C 0.46875 -3.890625 0.328125 -3.5625 0.328125 -3.234375 C 0.328125 -1.53125 3.09375 -2.5 3.09375 -1 C 3.09375 -0.40625 2.546875 -0.125 2 -0.125 C 1.25 -0.125 0.734375 -0.65625 0.59375 -1.515625 C 0.578125 -1.609375 0.5625 -1.6875 0.453125 -1.6875 C 0.375 -1.6875 0.328125 -1.640625 0.328125 -1.5625 L 0.328125 0.015625 C 0.34375 0.0625 0.375 0.09375 0.421875 0.09375 L 0.4375 0.09375 C 0.59375 0.09375 0.75 -0.265625 0.875 -0.296875 L 0.890625 -0.296875 C 0.96875 -0.296875 1.234375 -0.046875 1.453125 0.015625 C 1.609375 0.078125 1.796875 0.09375 1.96875 0.09375 C 2.796875 0.09375 3.59375 -0.34375 3.59375 -1.25 C 3.59375 -1.90625 3.109375 -2.453125 2.453125 -2.625 C 1.828125 -2.796875 0.8125 -2.796875 0.8125 -3.515625 C 0.8125 -4.125 1.484375 -4.28125 1.921875 -4.28125 C 2.40625 -4.28125 3.09375 -4 3.09375 -3.15625 C 3.09375 -3.0625 3.09375 -2.984375 3.203125 -2.984375 C 3.3125 -2.984375 3.34375 -3.0625 3.34375 -3.15625 C 3.34375 -3.203125 3.34375 -3.265625 3.34375 -3.296875 L 3.34375 -4.328125 C 3.34375 -4.390625 3.3125 -4.46875 3.234375 -4.46875 C 3.078125 -4.46875 2.96875 -4.21875 2.859375 -4.21875 L 2.84375 -4.21875 C 2.765625 -4.21875 2.609375 -4.34375 2.5 -4.390625 C 2.3125 -4.453125 2.109375 -4.46875 1.921875 -4.46875 C 1.859375 -4.46875 1.8125 -4.46875 1.75 -4.46875 Z M 1.75 -4.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-9">
<path style="stroke:none;" d="M 1.109375 -3.796875 C 1.359375 -4.109375 1.796875 -4.25 2.171875 -4.25 C 2.90625 -4.25 3.234375 -3.578125 3.234375 -2.875 L 3.234375 -2.609375 C 2.09375 -2.609375 0.40625 -2.25 0.40625 -0.953125 L 0.40625 -0.875 C 0.484375 -0.09375 1.453125 0.09375 2.03125 0.09375 C 2.53125 0.09375 3.1875 -0.234375 3.3125 -0.75 C 3.375 -0.3125 3.65625 0.046875 4.09375 0.046875 C 4.5 0.046875 4.859375 -0.28125 4.921875 -0.734375 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.953125 C 4.671875 -0.671875 4.609375 -0.265625 4.3125 -0.265625 C 3.984375 -0.265625 3.9375 -0.65625 3.9375 -0.921875 L 3.9375 -2.59375 C 3.9375 -2.71875 3.953125 -2.84375 3.953125 -2.96875 C 3.953125 -3.9375 3.046875 -4.46875 2.21875 -4.46875 C 1.578125 -4.46875 0.703125 -4.15625 0.703125 -3.359375 C 0.703125 -3.078125 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.609375 -3.09375 1.609375 -3.34375 C 1.609375 -3.625 1.390625 -3.796875 1.109375 -3.796875 Z M 3.234375 -2.40625 L 3.234375 -1.390625 C 3.234375 -0.703125 2.765625 -0.15625 2.109375 -0.125 L 2.078125 -0.125 C 1.609375 -0.125 1.1875 -0.484375 1.1875 -0.96875 L 1.1875 -1.015625 C 1.25 -2.03125 2.375 -2.375 3.234375 -2.40625 Z M 3.234375 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-10">
<path style="stroke:none;" d="M 1.484375 -6.140625 C 1.484375 -5.453125 1.203125 -4.203125 0.171875 -4.203125 L 0.171875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.421875 C 1.03125 -1.09375 1.0625 -0.75 1.21875 -0.46875 C 1.4375 -0.0625 1.90625 0.09375 2.34375 0.09375 C 3.15625 0.09375 3.3125 -0.8125 3.3125 -1.453125 L 3.3125 -1.8125 L 3.078125 -1.8125 C 3.078125 -1.671875 3.078125 -1.515625 3.078125 -1.359375 C 3.078125 -0.921875 2.984375 -0.15625 2.390625 -0.15625 C 1.828125 -0.15625 1.734375 -0.84375 1.734375 -1.28125 L 1.734375 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.734375 -4.296875 L 1.734375 -6.140625 Z M 1.484375 -6.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-11">
<path style="stroke:none;" d="M 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.6875 -3.046875 0.703125 -3.453125 0.921875 -3.734375 C 1.171875 -4.046875 1.640625 -4.078125 2.03125 -4.078125 L 3.140625 -4.078125 C 2.203125 -2.875 1.3125 -1.59375 0.390625 -0.375 C 0.34375 -0.3125 0.28125 -0.21875 0.28125 -0.140625 C 0.28125 -0.046875 0.34375 -0.015625 0.453125 -0.015625 L 3.828125 -0.015625 L 4 -1.875 L 3.75 -1.875 C 3.671875 -1.203125 3.625 -0.375 2.671875 -0.28125 C 2.4375 -0.265625 2.21875 -0.265625 2 -0.265625 L 1.125 -0.265625 C 1.859375 -1.25 2.59375 -2.25 3.328125 -3.234375 C 3.546875 -3.53125 3.984375 -4 3.984375 -4.171875 C 3.984375 -4.265625 3.890625 -4.296875 3.8125 -4.296875 Z M 0.53125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-12">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.453125 -3.984375 C 0.734375 -3.984375 1.03125 -3.96875 1.09375 -3.671875 C 1.09375 -3.5625 1.09375 -3.453125 1.09375 -3.34375 L 1.09375 -1.359375 C 1.09375 -1.03125 1.109375 -0.734375 1.28125 -0.4375 C 1.5625 -0.015625 2.125 0.109375 2.59375 0.109375 C 3.046875 0.109375 3.453125 -0.09375 3.703125 -0.453125 C 3.765625 -0.5625 3.84375 -0.65625 3.875 -0.78125 L 3.875 0.09375 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.171875 -0.3125 C 4.84375 -0.3125 4.546875 -0.34375 4.546875 -0.796875 L 4.546875 -4.40625 L 3.078125 -4.296875 L 3.078125 -3.984375 L 3.21875 -3.984375 C 3.546875 -3.984375 3.84375 -3.953125 3.84375 -3.484375 L 3.84375 -1.6875 C 3.84375 -0.953125 3.46875 -0.125 2.640625 -0.125 C 2.078125 -0.125 1.796875 -0.265625 1.796875 -1.328125 L 1.796875 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-13">
<symbol overflow="visible" id="glyph4-13">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.28125 2.1875 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.859375 -3.53125 3.859375 -3.078125 L 3.859375 -0.703125 C 3.859375 -0.34375 3.5625 -0.3125 3.234375 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.796875 -0.3125 4.5625 -0.359375 4.5625 -0.734375 L 4.5625 -2.546875 C 4.5625 -3.28125 4.953125 -4.1875 5.90625 -4.1875 C 6.546875 -4.1875 6.625 -3.53125 6.625 -3.078125 L 6.625 -0.703125 C 6.625 -0.34375 6.3125 -0.3125 5.984375 -0.3125 L 5.84375 -0.3125 L 5.84375 -0.015625 L 8.09375 -0.015625 L 8.09375 -0.3125 L 7.890625 -0.3125 C 7.59375 -0.3125 7.3125 -0.34375 7.3125 -0.703125 L 7.3125 -2.953125 C 7.3125 -3.3125 7.296875 -3.65625 7.0625 -3.984375 C 6.796875 -4.3125 6.375 -4.40625 5.96875 -4.40625 C 5.328125 -4.40625 4.796875 -4.03125 4.53125 -3.453125 C 4.34375 -4.15625 3.890625 -4.40625 3.203125 -4.40625 C 2.5625 -4.40625 1.953125 -4 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-14">
<symbol overflow="visible" id="glyph4-14">
<path style="stroke:none;" d="M 0.296875 -6.8125 L 0.296875 -6.515625 C 0.421875 -6.515625 0.5625 -6.515625 0.703125 -6.515625 C 1.046875 -6.515625 1.359375 -6.46875 1.359375 -6.09375 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.703125 -0.3125 C 0.5625 -0.3125 0.40625 -0.3125 0.296875 -0.3125 L 0.296875 -0.015625 L 3.3125 -0.015625 L 3.3125 -0.3125 C 3.1875 -0.3125 3.046875 -0.3125 2.90625 -0.3125 C 2.5625 -0.3125 2.25 -0.375 2.25 -0.75 L 2.25 -6.09375 C 2.25 -6.46875 2.578125 -6.515625 2.921875 -6.515625 C 3.046875 -6.515625 3.1875 -6.515625 3.3125 -6.515625 L 3.3125 -6.8125 Z M 0.296875 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-15">
<symbol overflow="visible" id="glyph4-15">
<path style="stroke:none;" d="M 0.3125 -6.8125 L 0.3125 -6.515625 L 0.46875 -6.515625 C 0.84375 -6.515625 1.09375 -6.46875 1.09375 -5.984375 L 1.09375 -0.953125 C 1.09375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.53125 4.390625 -3.84375 C 4.140625 -4.28125 3.65625 -4.40625 3.1875 -4.40625 C 2.609375 -4.40625 1.96875 -4.015625 1.78125 -3.453125 L 1.765625 -6.921875 Z M 0.3125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-16">
<symbol overflow="visible" id="glyph4-16">
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 L 0.484375 -6.515625 C 0.84375 -6.515625 1.109375 -6.46875 1.109375 -5.984375 L 1.109375 -0.953125 C 1.109375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 -0.015625 L 2.546875 -0.015625 L 2.546875 -0.3125 L 2.296875 -0.3125 C 2.015625 -0.3125 1.78125 -0.359375 1.78125 -0.75 L 1.78125 -6.921875 Z M 0.328125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-17">
<symbol overflow="visible" id="glyph4-17">
<path style="stroke:none;" d="M 0.1875 -4.296875 L 0.1875 -3.984375 L 0.375 -3.984375 C 0.875 -3.984375 0.921875 -3.78125 1.21875 -3.03125 L 2.03125 -1.03125 C 2.1875 -0.640625 2.390625 0.09375 2.625 0.09375 C 2.859375 0.09375 3.046875 -0.625 3.203125 -0.984375 L 4.03125 -3.046875 C 4.28125 -3.671875 4.5 -3.984375 5.0625 -3.984375 L 5.0625 -4.296875 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.671875 -3.984375 3.921875 -3.8125 3.921875 -3.578125 C 3.921875 -3.453125 3.875 -3.3125 3.8125 -3.1875 C 3.53125 -2.46875 3.25 -1.78125 2.953125 -1.078125 C 2.9375 -0.984375 2.875 -0.890625 2.859375 -0.796875 L 2.84375 -0.796875 C 2.78125 -1.03125 2.671875 -1.25 2.578125 -1.484375 L 1.765625 -3.5 C 1.734375 -3.578125 1.6875 -3.65625 1.6875 -3.734375 L 1.6875 -3.78125 C 1.75 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 Z M 0.1875 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-18">
<symbol overflow="visible" id="glyph4-18">
<path style="stroke:none;" d="M 2.34375 -4.46875 C 1.09375 -4.34375 0.28125 -3.28125 0.28125 -2.125 C 0.28125 -1 1.171875 0.09375 2.5 0.09375 C 3.6875 0.09375 4.6875 -0.875 4.6875 -2.140625 C 4.6875 -3.3125 3.796875 -4.46875 2.46875 -4.46875 C 2.4375 -4.46875 2.375 -4.46875 2.34375 -4.46875 Z M 1.109375 -1.890625 L 1.109375 -2.328125 C 1.109375 -3.09375 1.359375 -4.25 2.484375 -4.25 C 3.296875 -4.25 3.75 -3.5625 3.84375 -2.8125 C 3.859375 -2.59375 3.859375 -2.375 3.859375 -2.15625 C 3.859375 -1.515625 3.78125 -0.703125 3.15625 -0.34375 C 2.953125 -0.203125 2.734375 -0.15625 2.5 -0.15625 C 1.78125 -0.15625 1.265625 -0.71875 1.15625 -1.5 C 1.140625 -1.625 1.140625 -1.765625 1.109375 -1.890625 Z M 1.109375 -1.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-19">
<symbol overflow="visible" id="glyph4-19">
<path style="stroke:none;" d="M 3.578125 -3.859375 C 3.3125 -3.84375 3.109375 -3.671875 3.109375 -3.40625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.875 -2.9375 4.03125 -3.15625 4.03125 -3.4375 L 4.03125 -3.5 C 3.921875 -4.234375 3.078125 -4.46875 2.5 -4.46875 C 1.28125 -4.46875 0.328125 -3.40625 0.328125 -2.15625 C 0.328125 -1.03125 1.203125 0.09375 2.5 0.09375 C 3.15625 0.09375 3.796875 -0.265625 4.0625 -0.953125 C 4.09375 -1.015625 4.140625 -1.109375 4.140625 -1.171875 C 4.140625 -1.25 4.09375 -1.296875 4.015625 -1.296875 C 3.875 -1.296875 3.78125 -0.921875 3.703125 -0.78125 C 3.46875 -0.40625 3.0625 -0.15625 2.609375 -0.15625 C 1.546875 -0.15625 1.21875 -1.21875 1.171875 -2 L 1.171875 -2.125 C 1.171875 -2.921875 1.359375 -4.109375 2.453125 -4.21875 L 2.53125 -4.21875 C 2.90625 -4.21875 3.296875 -4.109375 3.578125 -3.859375 Z M 3.578125 -3.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-20">
<symbol overflow="visible" id="glyph4-20">
<path style="stroke:none;" d="M 0.890625 -6.015625 L 0.890625 -5.703125 C 1.328125 -5.703125 1.796875 -5.75 2.1875 -5.96875 L 2.1875 -0.75 C 2.1875 -0.375 1.8125 -0.3125 1.421875 -0.3125 C 1.25 -0.3125 1.09375 -0.3125 0.953125 -0.3125 L 0.953125 -0.015625 L 4.1875 -0.015625 L 4.1875 -0.3125 C 4.015625 -0.3125 3.84375 -0.3125 3.6875 -0.3125 C 3.296875 -0.3125 2.9375 -0.375 2.9375 -0.75 L 2.9375 -6.484375 C 2.9375 -6.578125 2.90625 -6.65625 2.796875 -6.65625 C 2.65625 -6.65625 2.5 -6.453125 2.375 -6.375 C 1.9375 -6.09375 1.40625 -6.015625 0.890625 -6.015625 Z M 0.890625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-21">
<symbol overflow="visible" id="glyph4-21">
<path style="stroke:none;" d="M 1.3125 -1.0625 C 1.0625 -1.03125 0.859375 -0.796875 0.859375 -0.546875 C 0.859375 -0.296875 1.0625 -0.015625 1.359375 -0.015625 C 1.640625 -0.015625 1.90625 -0.21875 1.90625 -0.53125 C 1.90625 -0.78125 1.71875 -1.0625 1.390625 -1.0625 C 1.359375 -1.0625 1.328125 -1.0625 1.3125 -1.0625 Z M 1.3125 -1.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-22">
<symbol overflow="visible" id="glyph4-22">
<path style="stroke:none;" d="M 0.890625 -5.328125 C 1.125 -5.828125 1.5 -6.34375 2.21875 -6.34375 C 3.15625 -6.34375 3.5625 -5.484375 3.5625 -4.703125 C 3.5625 -3.78125 2.953125 -3.03125 2.375 -2.375 C 1.8125 -1.703125 1.203125 -1.0625 0.625 -0.40625 C 0.53125 -0.3125 0.5 -0.265625 0.5 -0.125 L 0.5 -0.015625 L 4.203125 -0.015625 L 4.46875 -1.75 L 4.234375 -1.75 C 4.140625 -1.296875 4.203125 -0.796875 3.6875 -0.796875 L 3.296875 -0.796875 C 3 -0.78125 2.71875 -0.78125 2.421875 -0.78125 C 2.03125 -0.78125 1.65625 -0.78125 1.28125 -0.78125 L 1.96875 -1.453125 C 2.25 -1.71875 2.515625 -1.984375 2.796875 -2.234375 C 3.53125 -2.890625 4.46875 -3.609375 4.46875 -4.71875 C 4.46875 -5.84375 3.515625 -6.65625 2.390625 -6.65625 C 1.4375 -6.65625 0.5 -5.9375 0.5 -4.859375 C 0.5 -4.609375 0.59375 -4.296875 1.015625 -4.296875 C 1.3125 -4.296875 1.546875 -4.5 1.546875 -4.8125 C 1.546875 -5.078125 1.34375 -5.328125 1.03125 -5.328125 C 0.984375 -5.328125 0.9375 -5.328125 0.890625 -5.328125 Z M 0.890625 -5.328125 "/>
</symbol>
</g>
@ -239,179 +278,245 @@
<use xlink:href="#glyph2-7" x="250.260579" y="271.771"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-14" x="133.768" y="304.713"/>
<use xlink:href="#glyph3-1" x="133.768" y="293.686"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-15" x="157.437795" y="304.713"/>
<use xlink:href="#glyph2-12" x="169.528773" y="304.713"/>
<use xlink:href="#glyph2-9" x="173.911537" y="304.713"/>
<use xlink:href="#glyph2-7" x="181.084637" y="304.713"/>
<use xlink:href="#glyph3-2" x="148.710904" y="293.686"/>
<use xlink:href="#glyph3-3" x="157.494928" y="293.686"/>
<use xlink:href="#glyph3-4" x="160.676983" y="293.686"/>
<use xlink:href="#glyph3-5" x="165.927273" y="293.686"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-12" x="192.558728" y="304.713"/>
<use xlink:href="#glyph2-7" x="196.941492" y="304.713"/>
<use xlink:href="#glyph2-6" x="203.164873" y="304.713"/>
<use xlink:href="#glyph3-3" x="174.260988" y="293.686"/>
<use xlink:href="#glyph3-5" x="177.443042" y="293.686"/>
<use xlink:href="#glyph3-6" x="181.961081" y="293.686"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-16" x="214.565798" y="304.713"/>
<use xlink:href="#glyph2-17" x="226.476014" y="304.713"/>
<use xlink:href="#glyph2-7" x="235.241542" y="304.713"/>
<use xlink:href="#glyph2-13" x="241.464923" y="304.713"/>
<use xlink:href="#glyph3-7" x="190.231036" y="293.686"/>
<use xlink:href="#glyph3-8" x="198.890527" y="293.686"/>
<use xlink:href="#glyph3-5" x="205.25364" y="293.686"/>
<use xlink:href="#glyph3-9" x="209.771679" y="293.686"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="248.032614" y="304.713"/>
<use xlink:href="#glyph2-2" x="256.798142" y="304.713"/>
<use xlink:href="#glyph2-12" x="265.56367" y="304.713"/>
<use xlink:href="#glyph2-6" x="269.946434" y="304.713"/>
<use xlink:href="#glyph2-6" x="276.082304" y="304.713"/>
<use xlink:href="#glyph3-10" x="214.543765" y="293.686"/>
<use xlink:href="#glyph3-11" x="220.906877" y="293.686"/>
<use xlink:href="#glyph3-3" x="227.26999" y="293.686"/>
<use xlink:href="#glyph3-6" x="230.452044" y="293.686"/>
<use xlink:href="#glyph3-6" x="234.906323" y="293.686"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-14" x="287.483229" y="304.713"/>
<use xlink:href="#glyph3-1" x="243.18624" y="293.686"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="133.768" y="326.531"/>
<use xlink:href="#glyph3-2" x="141.237957" y="326.531"/>
<use xlink:href="#glyph3-3" x="144.004571" y="326.531"/>
<use xlink:href="#glyph3-4" x="148.430955" y="326.531"/>
<use xlink:href="#glyph3-1" x="471.747212" y="293.686"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="155.649855" y="326.531"/>
<use xlink:href="#glyph3-2" x="160.076238" y="326.531"/>
<use xlink:href="#glyph3-5" x="162.842852" y="326.531"/>
<use xlink:href="#glyph3-12" x="133.768" y="315.601"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-6" x="171.703588" y="326.531"/>
<use xlink:href="#glyph3-7" x="179.173546" y="326.531"/>
<use xlink:href="#glyph3-8" x="184.706774" y="326.531"/>
<use xlink:href="#glyph3-9" x="188.635027" y="326.531"/>
<use xlink:href="#glyph3-10" x="193.615331" y="326.531"/>
<use xlink:href="#glyph3-11" x="197.48879" y="326.531"/>
<use xlink:href="#glyph3-2" x="148.710904" y="315.601"/>
<use xlink:href="#glyph3-3" x="157.494928" y="315.601"/>
<use xlink:href="#glyph3-4" x="160.676983" y="315.601"/>
<use xlink:href="#glyph3-5" x="165.927273" y="315.601"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-11" x="205.232719" y="326.531"/>
<use xlink:href="#glyph3-12" x="209.659102" y="326.531"/>
<use xlink:href="#glyph3-13" x="215.19233" y="326.531"/>
<use xlink:href="#glyph3-3" x="174.260988" y="315.601"/>
<use xlink:href="#glyph3-5" x="177.443042" y="315.601"/>
<use xlink:href="#glyph3-6" x="181.961081" y="315.601"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-14" x="226.809718" y="326.531"/>
<use xlink:href="#glyph3-5" x="230.406216" y="326.531"/>
<use xlink:href="#glyph3-15" x="235.939444" y="326.531"/>
<use xlink:href="#glyph3-9" x="241.472672" y="326.531"/>
<use xlink:href="#glyph3-16" x="246.452976" y="326.531"/>
<use xlink:href="#glyph3-10" x="249.21959" y="326.531"/>
<use xlink:href="#glyph3-7" x="190.231036" y="315.601"/>
<use xlink:href="#glyph3-8" x="198.890527" y="315.601"/>
<use xlink:href="#glyph3-5" x="205.25364" y="315.601"/>
<use xlink:href="#glyph3-9" x="209.771679" y="315.601"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-17" x="256.420557" y="326.531"/>
<use xlink:href="#glyph3-10" x="214.543765" y="315.601"/>
<use xlink:href="#glyph3-11" x="220.906877" y="315.601"/>
<use xlink:href="#glyph3-3" x="227.26999" y="315.601"/>
<use xlink:href="#glyph3-6" x="230.452044" y="315.601"/>
<use xlink:href="#glyph3-6" x="234.906323" y="315.601"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-18" x="261.398869" y="326.531"/>
<use xlink:href="#glyph3-5" x="266.379172" y="326.531"/>
<use xlink:href="#glyph3-12" x="243.18624" y="315.601"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-6" x="275.229946" y="326.531"/>
<use xlink:href="#glyph3-7" x="282.699904" y="326.531"/>
<use xlink:href="#glyph3-8" x="288.233132" y="326.531"/>
<use xlink:href="#glyph3-19" x="292.161385" y="326.531"/>
<use xlink:href="#glyph3-1" x="471.747212" y="315.601"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-15" x="296.308815" y="326.531"/>
<use xlink:href="#glyph3-5" x="301.842043" y="326.531"/>
<use xlink:href="#glyph3-2" x="307.375271" y="326.531"/>
<use xlink:href="#glyph3-10" x="310.141885" y="326.531"/>
<use xlink:href="#glyph3-10" x="314.015344" y="326.531"/>
<use xlink:href="#glyph2-14" x="133.768" y="348.544"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-20" x="321.216312" y="326.531"/>
<use xlink:href="#glyph3-21" x="326.196615" y="326.531"/>
<use xlink:href="#glyph2-15" x="157.437795" y="348.544"/>
<use xlink:href="#glyph2-12" x="169.528773" y="348.544"/>
<use xlink:href="#glyph2-9" x="173.911537" y="348.544"/>
<use xlink:href="#glyph2-7" x="181.084637" y="348.544"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-18" x="133.768" y="359.474"/>
<use xlink:href="#glyph2-12" x="192.558728" y="348.544"/>
<use xlink:href="#glyph2-7" x="196.941492" y="348.544"/>
<use xlink:href="#glyph2-6" x="203.164873" y="348.544"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-15" x="157.437795" y="359.474"/>
<use xlink:href="#glyph2-12" x="169.528773" y="359.474"/>
<use xlink:href="#glyph2-9" x="173.911537" y="359.474"/>
<use xlink:href="#glyph2-7" x="181.084637" y="359.474"/>
<use xlink:href="#glyph2-16" x="214.565798" y="348.544"/>
<use xlink:href="#glyph2-17" x="226.476014" y="348.544"/>
<use xlink:href="#glyph2-7" x="235.241542" y="348.544"/>
<use xlink:href="#glyph2-13" x="241.464923" y="348.544"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-12" x="192.558728" y="359.474"/>
<use xlink:href="#glyph2-7" x="196.941492" y="359.474"/>
<use xlink:href="#glyph2-6" x="203.164873" y="359.474"/>
<use xlink:href="#glyph2-3" x="248.032614" y="348.544"/>
<use xlink:href="#glyph2-2" x="256.798142" y="348.544"/>
<use xlink:href="#glyph2-12" x="265.56367" y="348.544"/>
<use xlink:href="#glyph2-6" x="269.946434" y="348.544"/>
<use xlink:href="#glyph2-6" x="276.082304" y="348.544"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-16" x="214.565798" y="359.474"/>
<use xlink:href="#glyph2-17" x="226.476014" y="359.474"/>
<use xlink:href="#glyph2-7" x="235.241542" y="359.474"/>
<use xlink:href="#glyph2-13" x="241.464923" y="359.474"/>
<use xlink:href="#glyph2-14" x="287.483229" y="348.544"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="248.032614" y="359.474"/>
<use xlink:href="#glyph2-2" x="256.798142" y="359.474"/>
<use xlink:href="#glyph2-12" x="265.56367" y="359.474"/>
<use xlink:href="#glyph2-6" x="269.946434" y="359.474"/>
<use xlink:href="#glyph2-6" x="276.082304" y="359.474"/>
<use xlink:href="#glyph4-1" x="133.768" y="370.362"/>
<use xlink:href="#glyph4-2" x="141.237957" y="370.362"/>
<use xlink:href="#glyph4-3" x="144.004571" y="370.362"/>
<use xlink:href="#glyph4-4" x="148.430955" y="370.362"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-18" x="287.483229" y="359.474"/>
<use xlink:href="#glyph4-3" x="155.649855" y="370.362"/>
<use xlink:href="#glyph4-2" x="160.076238" y="370.362"/>
<use xlink:href="#glyph4-5" x="162.842852" y="370.362"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="133.768" y="381.292"/>
<use xlink:href="#glyph3-2" x="141.237957" y="381.292"/>
<use xlink:href="#glyph3-3" x="144.004571" y="381.292"/>
<use xlink:href="#glyph3-4" x="148.430955" y="381.292"/>
<use xlink:href="#glyph4-6" x="171.703588" y="370.362"/>
<use xlink:href="#glyph4-7" x="179.173546" y="370.362"/>
<use xlink:href="#glyph4-8" x="184.706774" y="370.362"/>
<use xlink:href="#glyph4-9" x="188.635027" y="370.362"/>
<use xlink:href="#glyph4-10" x="193.615331" y="370.362"/>
<use xlink:href="#glyph4-11" x="197.48879" y="370.362"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="155.649855" y="381.292"/>
<use xlink:href="#glyph3-2" x="160.076238" y="381.292"/>
<use xlink:href="#glyph3-5" x="162.842852" y="381.292"/>
<use xlink:href="#glyph4-11" x="205.232719" y="370.362"/>
<use xlink:href="#glyph4-12" x="209.659102" y="370.362"/>
<use xlink:href="#glyph4-13" x="215.19233" y="370.362"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-6" x="171.703588" y="381.292"/>
<use xlink:href="#glyph3-7" x="179.173546" y="381.292"/>
<use xlink:href="#glyph3-8" x="184.706774" y="381.292"/>
<use xlink:href="#glyph3-9" x="188.635027" y="381.292"/>
<use xlink:href="#glyph3-10" x="193.615331" y="381.292"/>
<use xlink:href="#glyph3-11" x="197.48879" y="381.292"/>
<use xlink:href="#glyph4-14" x="226.809718" y="370.362"/>
<use xlink:href="#glyph4-5" x="230.406216" y="370.362"/>
<use xlink:href="#glyph4-15" x="235.939444" y="370.362"/>
<use xlink:href="#glyph4-9" x="241.472672" y="370.362"/>
<use xlink:href="#glyph4-16" x="246.452976" y="370.362"/>
<use xlink:href="#glyph4-10" x="249.21959" y="370.362"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-11" x="205.232719" y="381.292"/>
<use xlink:href="#glyph3-12" x="209.659102" y="381.292"/>
<use xlink:href="#glyph3-13" x="215.19233" y="381.292"/>
<use xlink:href="#glyph4-17" x="256.420557" y="370.362"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-14" x="226.809718" y="381.292"/>
<use xlink:href="#glyph3-5" x="230.406216" y="381.292"/>
<use xlink:href="#glyph3-15" x="235.939444" y="381.292"/>
<use xlink:href="#glyph3-9" x="241.472672" y="381.292"/>
<use xlink:href="#glyph3-16" x="246.452976" y="381.292"/>
<use xlink:href="#glyph3-10" x="249.21959" y="381.292"/>
<use xlink:href="#glyph4-18" x="261.398869" y="370.362"/>
<use xlink:href="#glyph4-5" x="266.379172" y="370.362"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-17" x="256.420557" y="381.292"/>
<use xlink:href="#glyph4-6" x="275.229946" y="370.362"/>
<use xlink:href="#glyph4-7" x="282.699904" y="370.362"/>
<use xlink:href="#glyph4-8" x="288.233132" y="370.362"/>
<use xlink:href="#glyph4-19" x="292.161385" y="370.362"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-18" x="261.398869" y="381.292"/>
<use xlink:href="#glyph3-5" x="266.379172" y="381.292"/>
<use xlink:href="#glyph4-15" x="296.308815" y="370.362"/>
<use xlink:href="#glyph4-5" x="301.842043" y="370.362"/>
<use xlink:href="#glyph4-2" x="307.375271" y="370.362"/>
<use xlink:href="#glyph4-10" x="310.141885" y="370.362"/>
<use xlink:href="#glyph4-10" x="314.015344" y="370.362"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-6" x="275.229946" y="381.292"/>
<use xlink:href="#glyph3-7" x="282.699904" y="381.292"/>
<use xlink:href="#glyph3-8" x="288.233132" y="381.292"/>
<use xlink:href="#glyph3-19" x="292.161385" y="381.292"/>
<use xlink:href="#glyph4-20" x="321.216312" y="370.362"/>
<use xlink:href="#glyph4-21" x="326.196615" y="370.362"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-15" x="296.308815" y="381.292"/>
<use xlink:href="#glyph3-5" x="301.842043" y="381.292"/>
<use xlink:href="#glyph3-2" x="307.375271" y="381.292"/>
<use xlink:href="#glyph3-10" x="310.141885" y="381.292"/>
<use xlink:href="#glyph3-10" x="314.015344" y="381.292"/>
<use xlink:href="#glyph2-18" x="133.768" y="403.304"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-22" x="321.216312" y="381.292"/>
<use xlink:href="#glyph3-21" x="326.196615" y="381.292"/>
<use xlink:href="#glyph2-15" x="157.437795" y="403.304"/>
<use xlink:href="#glyph2-12" x="169.528773" y="403.304"/>
<use xlink:href="#glyph2-9" x="173.911537" y="403.304"/>
<use xlink:href="#glyph2-7" x="181.084637" y="403.304"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-20" x="303.134" y="702.635"/>
<use xlink:href="#glyph2-12" x="192.558728" y="403.304"/>
<use xlink:href="#glyph2-7" x="196.941492" y="403.304"/>
<use xlink:href="#glyph2-6" x="203.164873" y="403.304"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-16" x="214.565798" y="403.304"/>
<use xlink:href="#glyph2-17" x="226.476014" y="403.304"/>
<use xlink:href="#glyph2-7" x="235.241542" y="403.304"/>
<use xlink:href="#glyph2-13" x="241.464923" y="403.304"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="248.032614" y="403.304"/>
<use xlink:href="#glyph2-2" x="256.798142" y="403.304"/>
<use xlink:href="#glyph2-12" x="265.56367" y="403.304"/>
<use xlink:href="#glyph2-6" x="269.946434" y="403.304"/>
<use xlink:href="#glyph2-6" x="276.082304" y="403.304"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-18" x="287.483229" y="403.304"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="133.768" y="425.123"/>
<use xlink:href="#glyph4-2" x="141.237957" y="425.123"/>
<use xlink:href="#glyph4-3" x="144.004571" y="425.123"/>
<use xlink:href="#glyph4-4" x="148.430955" y="425.123"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="155.649855" y="425.123"/>
<use xlink:href="#glyph4-2" x="160.076238" y="425.123"/>
<use xlink:href="#glyph4-5" x="162.842852" y="425.123"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-6" x="171.703588" y="425.123"/>
<use xlink:href="#glyph4-7" x="179.173546" y="425.123"/>
<use xlink:href="#glyph4-8" x="184.706774" y="425.123"/>
<use xlink:href="#glyph4-9" x="188.635027" y="425.123"/>
<use xlink:href="#glyph4-10" x="193.615331" y="425.123"/>
<use xlink:href="#glyph4-11" x="197.48879" y="425.123"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-11" x="205.232719" y="425.123"/>
<use xlink:href="#glyph4-12" x="209.659102" y="425.123"/>
<use xlink:href="#glyph4-13" x="215.19233" y="425.123"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-14" x="226.809718" y="425.123"/>
<use xlink:href="#glyph4-5" x="230.406216" y="425.123"/>
<use xlink:href="#glyph4-15" x="235.939444" y="425.123"/>
<use xlink:href="#glyph4-9" x="241.472672" y="425.123"/>
<use xlink:href="#glyph4-16" x="246.452976" y="425.123"/>
<use xlink:href="#glyph4-10" x="249.21959" y="425.123"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-17" x="256.420557" y="425.123"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-18" x="261.398869" y="425.123"/>
<use xlink:href="#glyph4-5" x="266.379172" y="425.123"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-6" x="275.229946" y="425.123"/>
<use xlink:href="#glyph4-7" x="282.699904" y="425.123"/>
<use xlink:href="#glyph4-8" x="288.233132" y="425.123"/>
<use xlink:href="#glyph4-19" x="292.161385" y="425.123"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-15" x="296.308815" y="425.123"/>
<use xlink:href="#glyph4-5" x="301.842043" y="425.123"/>
<use xlink:href="#glyph4-2" x="307.375271" y="425.123"/>
<use xlink:href="#glyph4-10" x="310.141885" y="425.123"/>
<use xlink:href="#glyph4-10" x="314.015344" y="425.123"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-22" x="321.216312" y="425.123"/>
<use xlink:href="#glyph4-21" x="326.196615" y="425.123"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-20" x="303.134" y="702.635"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 74 KiB

View File

@ -17,11 +17,10 @@
</ul>
<pre class="lang-tex hljs"><code>Schmale Leerzeichen werden z.\,B. in
Abkürzungen und zwischen Zahlen und
Einheiten verwendet: 10\,s.
Normalbreite, aber geschützte Leerzeichen
können beispielsweise dabei helfen,
Titel und Namen in einer Zeile zu halten:
Dr.~Fooboar.</code></pre>
Einheiten verwendet: 10\,s. Normalbreite,
aber geschützte Leerzeichen können u.\,a.
dabei helfen, Titel und Namen in einer
Zeile zu halten: Dr.~Fooboar.</code></pre>
</div>
<div class="layout-preview">
<img src="sections/german/05/leerzeichen-crop.svg">
@ -320,7 +319,7 @@ Zitat.}</code></pre>
<td><code>\\textasciitilde</code></td>
</tr>
<tr>
<td>*</td>
<td></td>
<td><code>\\textasteriskcentered</code></td>
<td>\</td>
<td><code>\\textbackslash</code></td>
@ -404,9 +403,9 @@ $\dagger$</code></pre>
---
<div class="layout-only">
<div class="layout-content-only">
<div class="layout-content">
<h2 data-category="Aufgabe">4. Sonderzeichen einfügen</h2>
<h2 data-category="Aufgabe" data-task="4">Sonderzeichen einfügen</h2>
<ul>
<li class="fragment">Suche dir aus der PDF-Liste zu Sonderzeichen einige interessante Symbole aus und füge sie in den ersten Absatz von xxx ein.</li>
<li class="fragment">Lies dir den ersten Absatz von xxx durch und hebe auf unterschiedliche Art und Weise (fett, kursiv etc.) Abschnitte hervor, die dir wichtig erscheinen.</li>

View File

@ -34,7 +34,7 @@ Verschachtelung von Emphasen.}</code></pre>
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Optische Auszeichnungen</h2>
<p>… legen genau fest, wie Text formatiert wird:
<p>… legen genau fest, wie Text formatiert wird:</p>
<table>
<tr><th>Bezeichnung</th><th>Befehl</th></tr>
<tr><td>fett (bold face)</td><td><code>\textbf{important}</code></td></tr>
@ -163,16 +163,3 @@ Back to normal.</code></pre>
<img src="sections/german/06/url-crop.svg">
</div>
</div>
---
<div class="layout-only">
<div class="layout-content">
<h2 data-category="Aufgabe">4. Sonderzeichen einfügen</h2>
<ul>
<li class="fragment">...</li>
</ul>
</div>
</div>

View File

@ -11,31 +11,49 @@
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Rauhsatz</h2>
<p>Standardmäßig setzt LaTeX Fließtext im Blocksatz, aber auch Rauhsatz ist möglich:</p>
<pre class="lang-tex hljs"><code></code></pre>
<h2>Flattersatz</h2>
<p>Standardmäßig setzt LaTeX Fließtext im Blocksatz, aber auch Flattersatz ist möglich. Befehle:</p>
<pre class="lang-tex hljs"><code>\raggedright … \raggedleft … \centering …</code></pre>
<p>Umgebungen:</p>
<pre class="lang-tex hljs"><code>\begin{flushleft} Text \end{flushleft}
\begin{flushright} Text \end{flushright}
\begin{center} Text \end{center}</code></pre>
<p data-category="Achtung!">Guter Flattersatz ist noch schwieriger als guter Blocksatz → lieber vermeiden</p>
</div>
<div class="layout-preview">
<img src="sections/german/07/ausrichtung-crop.svg">
</div>
</div>
TODO: Absatzausrichtung (https://en.wikibooks.org/wiki/LaTeX/Paragraph_Formatting#Paragraph_alignment)
---
TODO: Einzüge und Abstände (https://en.wikibooks.org/wiki/LaTeX/Paragraph_Formatting#Paragraph_alignment)
---
TODO: Umbrüche (https://en.wikibooks.org/wiki/LaTeX/Paragraph_Formatting#Manual_breaks)
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Einzüge und Abstände</h2>
<ul>
<li>Absätze werden standardmäßig durch Erstzeileneinzüge (`\parindent`) verdeutlicht</li>
<li>Stattdessen (!) können auch Abstände (`\parskip`) verwendet werden</li>
<li>Die beiden Parameter sind beliebig einstellbar:</li>
</ul>
<pre class="lang-tex hljs"><code>\setlength{\parindent}{0pt}
\setlength{\parskip}{1em
plus .5em % erlaubte Dehnung
minus .5em % erlaubte Stauchung
}</code></pre>
<ul>
<li>Mit `\noindent` kann für nur einen Absatz der Einzug abgeschaltet werden</li>
</ul>
</div>
<div class="layout-preview">
<img src="sections/german/07/einzüge-abstände-crop.svg">
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2 data-category="Aufgabe">5. Absätze ändern</h2>
<h2 data-category="Aufgabe" data-task="6">Absätze ändern</h2>
<ul>
<li class="fragment">Formatiere den ersten Absatz des Kapitels xxx rechtsbündig zentriert.</li>
</ul>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="344pt" height="80pt" viewBox="0 0 344 80" version="1.1">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="173pt" height="157pt" viewBox="0 0 173 157" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
@ -69,469 +69,465 @@
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="-0.198" y="7.871"/>
<use xlink:href="#glyph0-2" x="6.028625" y="7.871"/>
<use xlink:href="#glyph0-3" x="11.009925" y="7.871"/>
<use xlink:href="#glyph0-4" x="14.912275" y="7.871"/>
<use xlink:href="#glyph0-5" x="19.340651" y="7.871"/>
<use xlink:href="#glyph0-1" x="0.746" y="7.771"/>
<use xlink:href="#glyph0-2" x="6.972625" y="7.771"/>
<use xlink:href="#glyph0-3" x="11.953925" y="7.771"/>
<use xlink:href="#glyph0-4" x="15.856275" y="7.771"/>
<use xlink:href="#glyph0-5" x="20.284651" y="7.771"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="30.541602" y="7.871"/>
<use xlink:href="#glyph0-7" x="33.309213" y="7.871"/>
<use xlink:href="#glyph0-8" x="38.844433" y="7.871"/>
<use xlink:href="#glyph0-9" x="42.774679" y="7.871"/>
<use xlink:href="#glyph0-5" x="48.309899" y="7.871"/>
<use xlink:href="#glyph0-6" x="31.904032" y="7.771"/>
<use xlink:href="#glyph0-7" x="34.671642" y="7.771"/>
<use xlink:href="#glyph0-8" x="40.206862" y="7.771"/>
<use xlink:href="#glyph0-9" x="44.137108" y="7.771"/>
<use xlink:href="#glyph0-5" x="49.672329" y="7.771"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="59.510851" y="7.871"/>
<use xlink:href="#glyph0-2" x="65.046071" y="7.871"/>
<use xlink:href="#glyph0-11" x="70.027371" y="7.871"/>
<use xlink:href="#glyph0-2" x="72.794981" y="7.871"/>
<use xlink:href="#glyph0-3" x="77.776281" y="7.871"/>
<use xlink:href="#glyph0-10" x="61.291709" y="7.771"/>
<use xlink:href="#glyph0-2" x="66.82693" y="7.771"/>
<use xlink:href="#glyph0-11" x="71.80823" y="7.771"/>
<use xlink:href="#glyph0-2" x="74.57584" y="7.771"/>
<use xlink:href="#glyph0-3" x="79.55714" y="7.771"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="84.577748" y="7.871"/>
<use xlink:href="#glyph0-6" x="88.507994" y="7.871"/>
<use xlink:href="#glyph0-12" x="91.275604" y="7.871"/>
<use xlink:href="#glyph0-8" x="86.786999" y="7.771"/>
<use xlink:href="#glyph0-6" x="90.717244" y="7.771"/>
<use xlink:href="#glyph0-12" x="93.484855" y="7.771"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="98.049176" y="7.871"/>
<use xlink:href="#glyph0-5" x="103.030476" y="7.871"/>
<use xlink:href="#glyph0-4" x="111.332311" y="7.871"/>
<use xlink:href="#glyph0-12" x="115.760686" y="7.871"/>
<use xlink:href="#glyph0-14" x="119.635142" y="7.871"/>
<use xlink:href="#glyph0-13" x="100.676856" y="7.771"/>
<use xlink:href="#glyph0-5" x="105.658156" y="7.771"/>
<use xlink:href="#glyph0-4" x="113.95999" y="7.771"/>
<use xlink:href="#glyph0-12" x="118.388366" y="7.771"/>
<use xlink:href="#glyph0-14" x="122.262821" y="7.771"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="125.391532" y="7.871"/>
<use xlink:href="#glyph0-2" x="129.819908" y="7.871"/>
<use xlink:href="#glyph0-16" x="134.801208" y="7.871"/>
<use xlink:href="#glyph0-8" x="140.336428" y="7.871"/>
<use xlink:href="#glyph0-4" x="144.266674" y="7.871"/>
<use xlink:href="#glyph0-15" x="148.69505" y="7.871"/>
<use xlink:href="#glyph0-15" x="0.746" y="19.727"/>
<use xlink:href="#glyph0-2" x="5.174376" y="19.727"/>
<use xlink:href="#glyph0-16" x="10.155676" y="19.727"/>
<use xlink:href="#glyph0-8" x="15.690896" y="19.727"/>
<use xlink:href="#glyph0-4" x="19.621142" y="19.727"/>
<use xlink:href="#glyph0-15" x="24.049518" y="19.727"/>
<use xlink:href="#glyph0-12" x="28.477893" y="19.727"/>
<use xlink:href="#glyph0-4" x="32.352349" y="19.727"/>
<use xlink:href="#glyph0-12" x="36.780724" y="19.727"/>
<use xlink:href="#glyph0-9" x="40.655179" y="19.727"/>
<use xlink:href="#glyph0-3" x="46.1904" y="19.727"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="153.113463" y="7.871"/>
<use xlink:href="#glyph0-4" x="156.987918" y="7.871"/>
<use xlink:href="#glyph0-12" x="161.416293" y="7.871"/>
<use xlink:href="#glyph0-9" x="165.290749" y="7.871"/>
<use xlink:href="#glyph0-3" x="170.825969" y="7.871"/>
<use xlink:href="#glyph0-13" x="53.410296" y="19.727"/>
<use xlink:href="#glyph0-10" x="58.391596" y="19.727"/>
<use xlink:href="#glyph0-6" x="63.926817" y="19.727"/>
<use xlink:href="#glyph0-7" x="66.694427" y="19.727"/>
<use xlink:href="#glyph0-6" x="72.229648" y="19.727"/>
<use xlink:href="#glyph0-8" x="74.997258" y="19.727"/>
<use xlink:href="#glyph0-15" x="78.927504" y="19.727"/>
<use xlink:href="#glyph0-6" x="83.355879" y="19.727"/>
<use xlink:href="#glyph0-16" x="86.123489" y="19.727"/>
<use xlink:href="#glyph0-17" x="91.65871" y="19.727"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="177.637399" y="7.871"/>
<use xlink:href="#glyph0-10" x="182.618699" y="7.871"/>
<use xlink:href="#glyph0-4" x="99.957556" y="19.727"/>
<use xlink:href="#glyph0-11" x="104.385932" y="19.727"/>
<use xlink:href="#glyph0-6" x="107.153542" y="19.727"/>
<use xlink:href="#glyph0-12" x="109.921152" y="19.727"/>
<use xlink:href="#glyph0-14" x="113.795607" y="19.727"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="188.143957" y="7.871"/>
<use xlink:href="#glyph0-7" x="190.911567" y="7.871"/>
<use xlink:href="#glyph0-6" x="196.446788" y="7.871"/>
<use xlink:href="#glyph0-8" x="199.214398" y="7.871"/>
<use xlink:href="#glyph0-15" x="203.144644" y="7.871"/>
<use xlink:href="#glyph0-6" x="207.573019" y="7.871"/>
<use xlink:href="#glyph0-16" x="210.34063" y="7.871"/>
<use xlink:href="#glyph0-17" x="215.87585" y="7.871"/>
<use xlink:href="#glyph0-8" x="119.880763" y="19.727"/>
<use xlink:href="#glyph0-4" x="123.811009" y="19.727"/>
<use xlink:href="#glyph0-10" x="128.239385" y="19.727"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="223.756267" y="7.871"/>
<use xlink:href="#glyph0-11" x="228.184642" y="7.871"/>
<use xlink:href="#glyph0-6" x="230.952253" y="7.871"/>
<use xlink:href="#glyph0-12" x="233.719863" y="7.871"/>
<use xlink:href="#glyph0-14" x="237.594318" y="7.871"/>
<use xlink:href="#glyph0-10" x="137.092151" y="19.727"/>
<use xlink:href="#glyph0-2" x="142.627372" y="19.727"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="243.350708" y="7.871"/>
<use xlink:href="#glyph0-4" x="247.280954" y="7.871"/>
<use xlink:href="#glyph0-10" x="251.70933" y="7.871"/>
<use xlink:href="#glyph0-4" x="0.746" y="31.682"/>
<use xlink:href="#glyph0-6" x="5.174376" y="31.682"/>
<use xlink:href="#glyph0-9" x="7.941986" y="31.682"/>
<use xlink:href="#glyph0-8" x="13.477207" y="31.682"/>
<use xlink:href="#glyph0-5" x="17.407452" y="31.682"/>
<use xlink:href="#glyph0-2" x="25.709287" y="31.682"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="260.143667" y="7.871"/>
<use xlink:href="#glyph0-2" x="265.678888" y="7.871"/>
<use xlink:href="#glyph0-10" x="30.96954" y="31.682"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="273.559304" y="7.871"/>
<use xlink:href="#glyph0-6" x="277.98768" y="7.871"/>
<use xlink:href="#glyph0-9" x="280.75529" y="7.871"/>
<use xlink:href="#glyph0-8" x="286.290511" y="7.871"/>
<use xlink:href="#glyph0-5" x="290.220756" y="7.871"/>
<use xlink:href="#glyph0-2" x="298.522591" y="7.871"/>
<use xlink:href="#glyph0-12" x="39.742605" y="31.682"/>
<use xlink:href="#glyph0-4" x="43.61706" y="31.682"/>
<use xlink:href="#glyph0-5" x="48.045436" y="31.682"/>
<use xlink:href="#glyph0-7" x="56.347271" y="31.682"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="303.782844" y="7.871"/>
<use xlink:href="#glyph0-2" x="62.161444" y="31.682"/>
<use xlink:href="#glyph0-3" x="67.142744" y="31.682"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="312.217181" y="7.871"/>
<use xlink:href="#glyph0-4" x="316.091636" y="7.871"/>
<use xlink:href="#glyph0-5" x="320.520012" y="7.871"/>
<use xlink:href="#glyph0-7" x="328.821846" y="7.871"/>
<use xlink:href="#glyph0-6" x="74.282939" y="31.682"/>
<use xlink:href="#glyph0-16" x="77.05055" y="31.682"/>
<use xlink:href="#glyph0-15" x="82.58577" y="31.682"/>
<use xlink:href="#glyph0-6" x="87.014146" y="31.682"/>
<use xlink:href="#glyph0-10" x="89.781756" y="31.682"/>
<use xlink:href="#glyph0-6" x="95.316977" y="31.682"/>
<use xlink:href="#glyph0-10" x="98.084587" y="31.682"/>
<use xlink:href="#glyph0-9" x="103.619808" y="31.682"/>
<use xlink:href="#glyph0-16" x="109.155028" y="31.682"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="334.626057" y="7.871"/>
<use xlink:href="#glyph0-3" x="339.607357" y="7.871"/>
<use xlink:href="#glyph0-12" x="114.411296" y="31.682"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="-0.198" y="19.826"/>
<use xlink:href="#glyph0-16" x="2.56961" y="19.826"/>
<use xlink:href="#glyph0-15" x="8.104831" y="19.826"/>
<use xlink:href="#glyph0-6" x="12.533207" y="19.826"/>
<use xlink:href="#glyph0-10" x="15.300817" y="19.826"/>
<use xlink:href="#glyph0-6" x="20.836037" y="19.826"/>
<use xlink:href="#glyph0-10" x="23.603648" y="19.826"/>
<use xlink:href="#glyph0-9" x="29.138868" y="19.826"/>
<use xlink:href="#glyph0-16" x="34.674089" y="19.826"/>
<use xlink:href="#glyph0-9" x="121.533559" y="31.682"/>
<use xlink:href="#glyph0-12" x="127.068779" y="31.682"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="39.930357" y="19.826"/>
<use xlink:href="#glyph0-11" x="134.181079" y="31.682"/>
<use xlink:href="#glyph0-13" x="136.94869" y="31.682"/>
<use xlink:href="#glyph0-18" x="141.92999" y="31.682"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="47.122357" y="19.826"/>
<use xlink:href="#glyph0-12" x="52.657578" y="19.826"/>
<use xlink:href="#glyph0-2" x="147.744163" y="31.682"/>
<use xlink:href="#glyph0-3" x="152.725463" y="31.682"/>
<use xlink:href="#glyph0-4" x="156.627813" y="31.682"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="59.849579" y="19.826"/>
<use xlink:href="#glyph0-13" x="62.617189" y="19.826"/>
<use xlink:href="#glyph0-18" x="67.598489" y="19.826"/>
<use xlink:href="#glyph0-4" x="164.303997" y="31.682"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="73.412663" y="19.826"/>
<use xlink:href="#glyph0-3" x="78.393963" y="19.826"/>
<use xlink:href="#glyph0-4" x="82.296313" y="19.826"/>
<use xlink:href="#glyph0-12" x="168.72241" y="31.682"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="90.042235" y="19.826"/>
<use xlink:href="#glyph0-12" x="94.47061" y="19.826"/>
<use xlink:href="#glyph0-10" x="0.746" y="43.637"/>
<use xlink:href="#glyph0-2" x="6.281221" y="43.637"/>
<use xlink:href="#glyph0-11" x="11.262521" y="43.637"/>
<use xlink:href="#glyph0-2" x="14.030131" y="43.637"/>
<use xlink:href="#glyph0-3" x="19.011431" y="43.637"/>
<use xlink:href="#glyph0-4" x="22.913781" y="43.637"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="101.672574" y="19.826"/>
<use xlink:href="#glyph0-2" x="107.207794" y="19.826"/>
<use xlink:href="#glyph0-11" x="112.189094" y="19.826"/>
<use xlink:href="#glyph0-2" x="114.956705" y="19.826"/>
<use xlink:href="#glyph0-3" x="119.938005" y="19.826"/>
<use xlink:href="#glyph0-4" x="123.840355" y="19.826"/>
<use xlink:href="#glyph0-5" x="30.659703" y="43.637"/>
<use xlink:href="#glyph0-13" x="38.961537" y="43.637"/>
<use xlink:href="#glyph0-17" x="43.942837" y="43.637"/>
<use xlink:href="#glyph0-16" x="48.924137" y="43.637"/>
<use xlink:href="#glyph0-13" x="54.459358" y="43.637"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="131.586277" y="19.826"/>
<use xlink:href="#glyph0-13" x="139.888111" y="19.826"/>
<use xlink:href="#glyph0-17" x="144.869411" y="19.826"/>
<use xlink:href="#glyph0-16" x="149.850711" y="19.826"/>
<use xlink:href="#glyph0-13" x="155.385932" y="19.826"/>
<use xlink:href="#glyph0-13" x="62.758204" y="43.637"/>
<use xlink:href="#glyph0-11" x="67.739504" y="43.637"/>
<use xlink:href="#glyph0-6" x="70.507114" y="43.637"/>
<use xlink:href="#glyph0-19" x="73.274724" y="43.637"/>
<use xlink:href="#glyph0-9" x="78.532985" y="43.637"/>
<use xlink:href="#glyph0-13" x="84.068205" y="43.637"/>
<use xlink:href="#glyph0-20" x="89.049505" y="43.637"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="163.684777" y="19.826"/>
<use xlink:href="#glyph0-11" x="168.666077" y="19.826"/>
<use xlink:href="#glyph0-6" x="171.433688" y="19.826"/>
<use xlink:href="#glyph0-19" x="174.201298" y="19.826"/>
<use xlink:href="#glyph0-9" x="179.459558" y="19.826"/>
<use xlink:href="#glyph0-13" x="184.994779" y="19.826"/>
<use xlink:href="#glyph0-20" x="189.976079" y="19.826"/>
<use xlink:href="#glyph0-1" x="48.318" y="63.396"/>
<use xlink:href="#glyph0-2" x="54.544625" y="63.396"/>
<use xlink:href="#glyph0-3" x="59.525925" y="63.396"/>
<use xlink:href="#glyph0-4" x="63.428275" y="63.396"/>
<use xlink:href="#glyph0-5" x="67.856651" y="63.396"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="-0.198" y="31.781"/>
<use xlink:href="#glyph0-2" x="6.028625" y="31.781"/>
<use xlink:href="#glyph0-3" x="11.009925" y="31.781"/>
<use xlink:href="#glyph0-4" x="14.912275" y="31.781"/>
<use xlink:href="#glyph0-5" x="19.340651" y="31.781"/>
<use xlink:href="#glyph0-6" x="79.476032" y="63.396"/>
<use xlink:href="#glyph0-7" x="82.243642" y="63.396"/>
<use xlink:href="#glyph0-8" x="87.778862" y="63.396"/>
<use xlink:href="#glyph0-9" x="91.709108" y="63.396"/>
<use xlink:href="#glyph0-5" x="97.244329" y="63.396"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="30.541602" y="31.781"/>
<use xlink:href="#glyph0-7" x="33.309213" y="31.781"/>
<use xlink:href="#glyph0-8" x="38.844433" y="31.781"/>
<use xlink:href="#glyph0-9" x="42.774679" y="31.781"/>
<use xlink:href="#glyph0-5" x="48.309899" y="31.781"/>
<use xlink:href="#glyph0-10" x="108.863709" y="63.396"/>
<use xlink:href="#glyph0-2" x="114.39893" y="63.396"/>
<use xlink:href="#glyph0-11" x="119.38023" y="63.396"/>
<use xlink:href="#glyph0-2" x="122.14784" y="63.396"/>
<use xlink:href="#glyph0-3" x="127.12914" y="63.396"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="59.510851" y="31.781"/>
<use xlink:href="#glyph0-2" x="65.046071" y="31.781"/>
<use xlink:href="#glyph0-11" x="70.027371" y="31.781"/>
<use xlink:href="#glyph0-2" x="72.794981" y="31.781"/>
<use xlink:href="#glyph0-3" x="77.776281" y="31.781"/>
<use xlink:href="#glyph0-8" x="134.358999" y="63.396"/>
<use xlink:href="#glyph0-6" x="138.289244" y="63.396"/>
<use xlink:href="#glyph0-12" x="141.056855" y="63.396"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="84.577748" y="31.781"/>
<use xlink:href="#glyph0-6" x="88.507994" y="31.781"/>
<use xlink:href="#glyph0-12" x="91.275604" y="31.781"/>
<use xlink:href="#glyph0-13" x="148.248856" y="63.396"/>
<use xlink:href="#glyph0-5" x="153.230156" y="63.396"/>
<use xlink:href="#glyph0-4" x="161.53199" y="63.396"/>
<use xlink:href="#glyph0-12" x="165.960366" y="63.396"/>
<use xlink:href="#glyph0-14" x="169.834821" y="63.396"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="98.049176" y="31.781"/>
<use xlink:href="#glyph0-5" x="103.030476" y="31.781"/>
<use xlink:href="#glyph0-4" x="111.332311" y="31.781"/>
<use xlink:href="#glyph0-12" x="115.760686" y="31.781"/>
<use xlink:href="#glyph0-14" x="119.635142" y="31.781"/>
<use xlink:href="#glyph0-15" x="25.735" y="75.351"/>
<use xlink:href="#glyph0-2" x="30.163376" y="75.351"/>
<use xlink:href="#glyph0-16" x="35.144676" y="75.351"/>
<use xlink:href="#glyph0-8" x="40.679896" y="75.351"/>
<use xlink:href="#glyph0-4" x="44.610142" y="75.351"/>
<use xlink:href="#glyph0-15" x="49.038518" y="75.351"/>
<use xlink:href="#glyph0-12" x="53.466893" y="75.351"/>
<use xlink:href="#glyph0-4" x="57.341349" y="75.351"/>
<use xlink:href="#glyph0-12" x="61.769724" y="75.351"/>
<use xlink:href="#glyph0-9" x="65.644179" y="75.351"/>
<use xlink:href="#glyph0-3" x="71.1794" y="75.351"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="125.391532" y="31.781"/>
<use xlink:href="#glyph0-2" x="129.819908" y="31.781"/>
<use xlink:href="#glyph0-16" x="134.801208" y="31.781"/>
<use xlink:href="#glyph0-8" x="140.336428" y="31.781"/>
<use xlink:href="#glyph0-4" x="144.266674" y="31.781"/>
<use xlink:href="#glyph0-15" x="148.69505" y="31.781"/>
<use xlink:href="#glyph0-13" x="78.399296" y="75.351"/>
<use xlink:href="#glyph0-10" x="83.380596" y="75.351"/>
<use xlink:href="#glyph0-6" x="88.915817" y="75.351"/>
<use xlink:href="#glyph0-7" x="91.683427" y="75.351"/>
<use xlink:href="#glyph0-6" x="97.218648" y="75.351"/>
<use xlink:href="#glyph0-8" x="99.986258" y="75.351"/>
<use xlink:href="#glyph0-15" x="103.916504" y="75.351"/>
<use xlink:href="#glyph0-6" x="108.344879" y="75.351"/>
<use xlink:href="#glyph0-16" x="111.112489" y="75.351"/>
<use xlink:href="#glyph0-17" x="116.64771" y="75.351"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="153.113463" y="31.781"/>
<use xlink:href="#glyph0-4" x="156.987918" y="31.781"/>
<use xlink:href="#glyph0-12" x="161.416293" y="31.781"/>
<use xlink:href="#glyph0-9" x="165.290749" y="31.781"/>
<use xlink:href="#glyph0-3" x="170.825969" y="31.781"/>
<use xlink:href="#glyph0-4" x="124.946556" y="75.351"/>
<use xlink:href="#glyph0-11" x="129.374932" y="75.351"/>
<use xlink:href="#glyph0-6" x="132.142542" y="75.351"/>
<use xlink:href="#glyph0-12" x="134.910152" y="75.351"/>
<use xlink:href="#glyph0-14" x="138.784607" y="75.351"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="177.637399" y="31.781"/>
<use xlink:href="#glyph0-10" x="182.618699" y="31.781"/>
<use xlink:href="#glyph0-8" x="144.869763" y="75.351"/>
<use xlink:href="#glyph0-4" x="148.800009" y="75.351"/>
<use xlink:href="#glyph0-10" x="153.228385" y="75.351"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="188.143957" y="31.781"/>
<use xlink:href="#glyph0-7" x="190.911567" y="31.781"/>
<use xlink:href="#glyph0-6" x="196.446788" y="31.781"/>
<use xlink:href="#glyph0-8" x="199.214398" y="31.781"/>
<use xlink:href="#glyph0-15" x="203.144644" y="31.781"/>
<use xlink:href="#glyph0-6" x="207.573019" y="31.781"/>
<use xlink:href="#glyph0-16" x="210.34063" y="31.781"/>
<use xlink:href="#glyph0-17" x="215.87585" y="31.781"/>
<use xlink:href="#glyph0-10" x="162.081151" y="75.351"/>
<use xlink:href="#glyph0-2" x="167.616372" y="75.351"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="223.756267" y="31.781"/>
<use xlink:href="#glyph0-11" x="228.184642" y="31.781"/>
<use xlink:href="#glyph0-6" x="230.952253" y="31.781"/>
<use xlink:href="#glyph0-12" x="233.719863" y="31.781"/>
<use xlink:href="#glyph0-14" x="237.594318" y="31.781"/>
<use xlink:href="#glyph0-4" x="0.746" y="87.306"/>
<use xlink:href="#glyph0-6" x="5.174376" y="87.306"/>
<use xlink:href="#glyph0-9" x="7.941986" y="87.306"/>
<use xlink:href="#glyph0-8" x="13.477207" y="87.306"/>
<use xlink:href="#glyph0-5" x="17.407452" y="87.306"/>
<use xlink:href="#glyph0-2" x="25.709287" y="87.306"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="243.350708" y="31.781"/>
<use xlink:href="#glyph0-4" x="247.280954" y="31.781"/>
<use xlink:href="#glyph0-10" x="251.70933" y="31.781"/>
<use xlink:href="#glyph0-10" x="30.96954" y="87.306"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="260.143667" y="31.781"/>
<use xlink:href="#glyph0-2" x="265.678888" y="31.781"/>
<use xlink:href="#glyph0-12" x="39.742605" y="87.306"/>
<use xlink:href="#glyph0-4" x="43.61706" y="87.306"/>
<use xlink:href="#glyph0-5" x="48.045436" y="87.306"/>
<use xlink:href="#glyph0-7" x="56.347271" y="87.306"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="273.559304" y="31.781"/>
<use xlink:href="#glyph0-6" x="277.98768" y="31.781"/>
<use xlink:href="#glyph0-9" x="280.75529" y="31.781"/>
<use xlink:href="#glyph0-8" x="286.290511" y="31.781"/>
<use xlink:href="#glyph0-5" x="290.220756" y="31.781"/>
<use xlink:href="#glyph0-2" x="298.522591" y="31.781"/>
<use xlink:href="#glyph0-2" x="62.161444" y="87.306"/>
<use xlink:href="#glyph0-3" x="67.142744" y="87.306"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="303.782844" y="31.781"/>
<use xlink:href="#glyph0-6" x="74.282939" y="87.306"/>
<use xlink:href="#glyph0-16" x="77.05055" y="87.306"/>
<use xlink:href="#glyph0-15" x="82.58577" y="87.306"/>
<use xlink:href="#glyph0-6" x="87.014146" y="87.306"/>
<use xlink:href="#glyph0-10" x="89.781756" y="87.306"/>
<use xlink:href="#glyph0-6" x="95.316977" y="87.306"/>
<use xlink:href="#glyph0-10" x="98.084587" y="87.306"/>
<use xlink:href="#glyph0-9" x="103.619808" y="87.306"/>
<use xlink:href="#glyph0-16" x="109.155028" y="87.306"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="312.217181" y="31.781"/>
<use xlink:href="#glyph0-4" x="316.091636" y="31.781"/>
<use xlink:href="#glyph0-5" x="320.520012" y="31.781"/>
<use xlink:href="#glyph0-7" x="328.821846" y="31.781"/>
<use xlink:href="#glyph0-12" x="114.411296" y="87.306"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="334.626057" y="31.781"/>
<use xlink:href="#glyph0-3" x="339.607357" y="31.781"/>
<use xlink:href="#glyph0-9" x="121.533559" y="87.306"/>
<use xlink:href="#glyph0-12" x="127.068779" y="87.306"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="-0.198" y="43.737"/>
<use xlink:href="#glyph0-16" x="2.56961" y="43.737"/>
<use xlink:href="#glyph0-15" x="8.104831" y="43.737"/>
<use xlink:href="#glyph0-6" x="12.533207" y="43.737"/>
<use xlink:href="#glyph0-10" x="15.300817" y="43.737"/>
<use xlink:href="#glyph0-6" x="20.836037" y="43.737"/>
<use xlink:href="#glyph0-10" x="23.603648" y="43.737"/>
<use xlink:href="#glyph0-9" x="29.138868" y="43.737"/>
<use xlink:href="#glyph0-16" x="34.674089" y="43.737"/>
<use xlink:href="#glyph0-11" x="134.181079" y="87.306"/>
<use xlink:href="#glyph0-13" x="136.94869" y="87.306"/>
<use xlink:href="#glyph0-18" x="141.92999" y="87.306"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="39.930357" y="43.737"/>
<use xlink:href="#glyph0-2" x="147.744163" y="87.306"/>
<use xlink:href="#glyph0-3" x="152.725463" y="87.306"/>
<use xlink:href="#glyph0-4" x="156.627813" y="87.306"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="47.122357" y="43.737"/>
<use xlink:href="#glyph0-12" x="52.657578" y="43.737"/>
<use xlink:href="#glyph0-4" x="164.303997" y="87.306"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="59.849579" y="43.737"/>
<use xlink:href="#glyph0-13" x="62.617189" y="43.737"/>
<use xlink:href="#glyph0-18" x="67.598489" y="43.737"/>
<use xlink:href="#glyph0-12" x="168.72241" y="87.306"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="73.412663" y="43.737"/>
<use xlink:href="#glyph0-3" x="78.393963" y="43.737"/>
<use xlink:href="#glyph0-4" x="82.296313" y="43.737"/>
<use xlink:href="#glyph0-10" x="81.527" y="99.262"/>
<use xlink:href="#glyph0-2" x="87.062221" y="99.262"/>
<use xlink:href="#glyph0-11" x="92.043521" y="99.262"/>
<use xlink:href="#glyph0-2" x="94.811131" y="99.262"/>
<use xlink:href="#glyph0-3" x="99.792431" y="99.262"/>
<use xlink:href="#glyph0-4" x="103.694781" y="99.262"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="90.042235" y="43.737"/>
<use xlink:href="#glyph0-12" x="94.47061" y="43.737"/>
<use xlink:href="#glyph0-5" x="111.440703" y="99.262"/>
<use xlink:href="#glyph0-13" x="119.742537" y="99.262"/>
<use xlink:href="#glyph0-17" x="124.723837" y="99.262"/>
<use xlink:href="#glyph0-16" x="129.705137" y="99.262"/>
<use xlink:href="#glyph0-13" x="135.240358" y="99.262"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="101.672574" y="43.737"/>
<use xlink:href="#glyph0-2" x="107.207794" y="43.737"/>
<use xlink:href="#glyph0-11" x="112.189094" y="43.737"/>
<use xlink:href="#glyph0-2" x="114.956705" y="43.737"/>
<use xlink:href="#glyph0-3" x="119.938005" y="43.737"/>
<use xlink:href="#glyph0-4" x="123.840355" y="43.737"/>
<use xlink:href="#glyph0-13" x="143.539204" y="99.262"/>
<use xlink:href="#glyph0-11" x="148.520504" y="99.262"/>
<use xlink:href="#glyph0-6" x="151.288114" y="99.262"/>
<use xlink:href="#glyph0-19" x="154.055724" y="99.262"/>
<use xlink:href="#glyph0-9" x="159.313985" y="99.262"/>
<use xlink:href="#glyph0-13" x="164.849205" y="99.262"/>
<use xlink:href="#glyph0-20" x="169.830505" y="99.262"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="131.586277" y="43.737"/>
<use xlink:href="#glyph0-13" x="139.888111" y="43.737"/>
<use xlink:href="#glyph0-17" x="144.869411" y="43.737"/>
<use xlink:href="#glyph0-16" x="149.850711" y="43.737"/>
<use xlink:href="#glyph0-13" x="155.385932" y="43.737"/>
<use xlink:href="#glyph0-1" x="24.532" y="119.021"/>
<use xlink:href="#glyph0-2" x="30.758625" y="119.021"/>
<use xlink:href="#glyph0-3" x="35.739925" y="119.021"/>
<use xlink:href="#glyph0-4" x="39.642275" y="119.021"/>
<use xlink:href="#glyph0-5" x="44.070651" y="119.021"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="163.684777" y="43.737"/>
<use xlink:href="#glyph0-11" x="168.666077" y="43.737"/>
<use xlink:href="#glyph0-6" x="171.433688" y="43.737"/>
<use xlink:href="#glyph0-19" x="174.201298" y="43.737"/>
<use xlink:href="#glyph0-9" x="179.459558" y="43.737"/>
<use xlink:href="#glyph0-13" x="184.994779" y="43.737"/>
<use xlink:href="#glyph0-20" x="189.976079" y="43.737"/>
<use xlink:href="#glyph0-6" x="55.690032" y="119.021"/>
<use xlink:href="#glyph0-7" x="58.457642" y="119.021"/>
<use xlink:href="#glyph0-8" x="63.992862" y="119.021"/>
<use xlink:href="#glyph0-9" x="67.923108" y="119.021"/>
<use xlink:href="#glyph0-5" x="73.458329" y="119.021"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="-0.198" y="65.654"/>
<use xlink:href="#glyph0-2" x="6.028625" y="65.654"/>
<use xlink:href="#glyph0-3" x="11.009925" y="65.654"/>
<use xlink:href="#glyph0-4" x="14.912275" y="65.654"/>
<use xlink:href="#glyph0-5" x="19.340651" y="65.654"/>
<use xlink:href="#glyph0-10" x="85.077709" y="119.021"/>
<use xlink:href="#glyph0-2" x="90.61293" y="119.021"/>
<use xlink:href="#glyph0-11" x="95.59423" y="119.021"/>
<use xlink:href="#glyph0-2" x="98.36184" y="119.021"/>
<use xlink:href="#glyph0-3" x="103.34314" y="119.021"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="30.541602" y="65.654"/>
<use xlink:href="#glyph0-7" x="33.309213" y="65.654"/>
<use xlink:href="#glyph0-8" x="38.844433" y="65.654"/>
<use xlink:href="#glyph0-9" x="42.774679" y="65.654"/>
<use xlink:href="#glyph0-5" x="48.309899" y="65.654"/>
<use xlink:href="#glyph0-8" x="110.572999" y="119.021"/>
<use xlink:href="#glyph0-6" x="114.503244" y="119.021"/>
<use xlink:href="#glyph0-12" x="117.270855" y="119.021"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="59.510851" y="65.654"/>
<use xlink:href="#glyph0-2" x="65.046071" y="65.654"/>
<use xlink:href="#glyph0-11" x="70.027371" y="65.654"/>
<use xlink:href="#glyph0-2" x="72.794981" y="65.654"/>
<use xlink:href="#glyph0-3" x="77.776281" y="65.654"/>
<use xlink:href="#glyph0-13" x="124.462856" y="119.021"/>
<use xlink:href="#glyph0-5" x="129.444156" y="119.021"/>
<use xlink:href="#glyph0-4" x="137.74599" y="119.021"/>
<use xlink:href="#glyph0-12" x="142.174366" y="119.021"/>
<use xlink:href="#glyph0-14" x="146.048821" y="119.021"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="84.577748" y="65.654"/>
<use xlink:href="#glyph0-6" x="88.507994" y="65.654"/>
<use xlink:href="#glyph0-12" x="91.275604" y="65.654"/>
<use xlink:href="#glyph0-15" x="13.241" y="130.976"/>
<use xlink:href="#glyph0-2" x="17.669376" y="130.976"/>
<use xlink:href="#glyph0-16" x="22.650676" y="130.976"/>
<use xlink:href="#glyph0-8" x="28.185896" y="130.976"/>
<use xlink:href="#glyph0-4" x="32.116142" y="130.976"/>
<use xlink:href="#glyph0-15" x="36.544518" y="130.976"/>
<use xlink:href="#glyph0-12" x="40.972893" y="130.976"/>
<use xlink:href="#glyph0-4" x="44.847349" y="130.976"/>
<use xlink:href="#glyph0-12" x="49.275724" y="130.976"/>
<use xlink:href="#glyph0-9" x="53.150179" y="130.976"/>
<use xlink:href="#glyph0-3" x="58.6854" y="130.976"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="98.049176" y="65.654"/>
<use xlink:href="#glyph0-5" x="103.030476" y="65.654"/>
<use xlink:href="#glyph0-4" x="111.332311" y="65.654"/>
<use xlink:href="#glyph0-12" x="115.760686" y="65.654"/>
<use xlink:href="#glyph0-14" x="119.635142" y="65.654"/>
<use xlink:href="#glyph0-13" x="65.905296" y="130.976"/>
<use xlink:href="#glyph0-10" x="70.886596" y="130.976"/>
<use xlink:href="#glyph0-6" x="76.421817" y="130.976"/>
<use xlink:href="#glyph0-7" x="79.189427" y="130.976"/>
<use xlink:href="#glyph0-6" x="84.724648" y="130.976"/>
<use xlink:href="#glyph0-8" x="87.492258" y="130.976"/>
<use xlink:href="#glyph0-15" x="91.422504" y="130.976"/>
<use xlink:href="#glyph0-6" x="95.850879" y="130.976"/>
<use xlink:href="#glyph0-16" x="98.618489" y="130.976"/>
<use xlink:href="#glyph0-17" x="104.15371" y="130.976"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="125.391532" y="65.654"/>
<use xlink:href="#glyph0-2" x="129.819908" y="65.654"/>
<use xlink:href="#glyph0-16" x="134.801208" y="65.654"/>
<use xlink:href="#glyph0-8" x="140.336428" y="65.654"/>
<use xlink:href="#glyph0-4" x="144.266674" y="65.654"/>
<use xlink:href="#glyph0-15" x="148.69505" y="65.654"/>
<use xlink:href="#glyph0-4" x="112.452556" y="130.976"/>
<use xlink:href="#glyph0-11" x="116.880932" y="130.976"/>
<use xlink:href="#glyph0-6" x="119.648542" y="130.976"/>
<use xlink:href="#glyph0-12" x="122.416152" y="130.976"/>
<use xlink:href="#glyph0-14" x="126.290607" y="130.976"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="153.113463" y="65.654"/>
<use xlink:href="#glyph0-4" x="156.987918" y="65.654"/>
<use xlink:href="#glyph0-12" x="161.416293" y="65.654"/>
<use xlink:href="#glyph0-9" x="165.290749" y="65.654"/>
<use xlink:href="#glyph0-3" x="170.825969" y="65.654"/>
<use xlink:href="#glyph0-8" x="132.375763" y="130.976"/>
<use xlink:href="#glyph0-4" x="136.306009" y="130.976"/>
<use xlink:href="#glyph0-10" x="140.734385" y="130.976"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="177.637399" y="65.654"/>
<use xlink:href="#glyph0-10" x="182.618699" y="65.654"/>
<use xlink:href="#glyph0-10" x="149.587151" y="130.976"/>
<use xlink:href="#glyph0-2" x="155.122372" y="130.976"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="188.143957" y="65.654"/>
<use xlink:href="#glyph0-7" x="190.911567" y="65.654"/>
<use xlink:href="#glyph0-6" x="196.446788" y="65.654"/>
<use xlink:href="#glyph0-8" x="199.214398" y="65.654"/>
<use xlink:href="#glyph0-15" x="203.144644" y="65.654"/>
<use xlink:href="#glyph0-6" x="207.573019" y="65.654"/>
<use xlink:href="#glyph0-16" x="210.34063" y="65.654"/>
<use xlink:href="#glyph0-17" x="215.87585" y="65.654"/>
<use xlink:href="#glyph0-4" x="0.746" y="142.931"/>
<use xlink:href="#glyph0-6" x="5.174376" y="142.931"/>
<use xlink:href="#glyph0-9" x="7.941986" y="142.931"/>
<use xlink:href="#glyph0-8" x="13.477207" y="142.931"/>
<use xlink:href="#glyph0-5" x="17.407452" y="142.931"/>
<use xlink:href="#glyph0-2" x="25.709287" y="142.931"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="223.756267" y="65.654"/>
<use xlink:href="#glyph0-11" x="228.184642" y="65.654"/>
<use xlink:href="#glyph0-6" x="230.952253" y="65.654"/>
<use xlink:href="#glyph0-12" x="233.719863" y="65.654"/>
<use xlink:href="#glyph0-14" x="237.594318" y="65.654"/>
<use xlink:href="#glyph0-10" x="30.96954" y="142.931"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="243.350708" y="65.654"/>
<use xlink:href="#glyph0-4" x="247.280954" y="65.654"/>
<use xlink:href="#glyph0-10" x="251.70933" y="65.654"/>
<use xlink:href="#glyph0-12" x="39.742605" y="142.931"/>
<use xlink:href="#glyph0-4" x="43.61706" y="142.931"/>
<use xlink:href="#glyph0-5" x="48.045436" y="142.931"/>
<use xlink:href="#glyph0-7" x="56.347271" y="142.931"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="260.143667" y="65.654"/>
<use xlink:href="#glyph0-2" x="265.678888" y="65.654"/>
<use xlink:href="#glyph0-2" x="62.161444" y="142.931"/>
<use xlink:href="#glyph0-3" x="67.142744" y="142.931"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="273.559304" y="65.654"/>
<use xlink:href="#glyph0-6" x="277.98768" y="65.654"/>
<use xlink:href="#glyph0-9" x="280.75529" y="65.654"/>
<use xlink:href="#glyph0-8" x="286.290511" y="65.654"/>
<use xlink:href="#glyph0-5" x="290.220756" y="65.654"/>
<use xlink:href="#glyph0-2" x="298.522591" y="65.654"/>
<use xlink:href="#glyph0-6" x="74.282939" y="142.931"/>
<use xlink:href="#glyph0-16" x="77.05055" y="142.931"/>
<use xlink:href="#glyph0-15" x="82.58577" y="142.931"/>
<use xlink:href="#glyph0-6" x="87.014146" y="142.931"/>
<use xlink:href="#glyph0-10" x="89.781756" y="142.931"/>
<use xlink:href="#glyph0-6" x="95.316977" y="142.931"/>
<use xlink:href="#glyph0-10" x="98.084587" y="142.931"/>
<use xlink:href="#glyph0-9" x="103.619808" y="142.931"/>
<use xlink:href="#glyph0-16" x="109.155028" y="142.931"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="303.782844" y="65.654"/>
<use xlink:href="#glyph0-12" x="114.411296" y="142.931"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="312.217181" y="65.654"/>
<use xlink:href="#glyph0-4" x="316.091636" y="65.654"/>
<use xlink:href="#glyph0-5" x="320.520012" y="65.654"/>
<use xlink:href="#glyph0-7" x="328.821846" y="65.654"/>
<use xlink:href="#glyph0-9" x="121.533559" y="142.931"/>
<use xlink:href="#glyph0-12" x="127.068779" y="142.931"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="334.626057" y="65.654"/>
<use xlink:href="#glyph0-3" x="339.607357" y="65.654"/>
<use xlink:href="#glyph0-11" x="134.181079" y="142.931"/>
<use xlink:href="#glyph0-13" x="136.94869" y="142.931"/>
<use xlink:href="#glyph0-18" x="141.92999" y="142.931"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="-0.198" y="77.61"/>
<use xlink:href="#glyph0-16" x="2.56961" y="77.61"/>
<use xlink:href="#glyph0-15" x="8.104831" y="77.61"/>
<use xlink:href="#glyph0-6" x="12.533207" y="77.61"/>
<use xlink:href="#glyph0-10" x="15.300817" y="77.61"/>
<use xlink:href="#glyph0-6" x="20.836037" y="77.61"/>
<use xlink:href="#glyph0-10" x="23.603648" y="77.61"/>
<use xlink:href="#glyph0-9" x="29.138868" y="77.61"/>
<use xlink:href="#glyph0-16" x="34.674089" y="77.61"/>
<use xlink:href="#glyph0-2" x="147.744163" y="142.931"/>
<use xlink:href="#glyph0-3" x="152.725463" y="142.931"/>
<use xlink:href="#glyph0-4" x="156.627813" y="142.931"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="39.930357" y="77.61"/>
<use xlink:href="#glyph0-4" x="164.303997" y="142.931"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="47.122357" y="77.61"/>
<use xlink:href="#glyph0-12" x="52.657578" y="77.61"/>
<use xlink:href="#glyph0-12" x="168.72241" y="142.931"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="59.849579" y="77.61"/>
<use xlink:href="#glyph0-13" x="62.617189" y="77.61"/>
<use xlink:href="#glyph0-18" x="67.598489" y="77.61"/>
<use xlink:href="#glyph0-10" x="41.136" y="154.886"/>
<use xlink:href="#glyph0-2" x="46.671221" y="154.886"/>
<use xlink:href="#glyph0-11" x="51.652521" y="154.886"/>
<use xlink:href="#glyph0-2" x="54.420131" y="154.886"/>
<use xlink:href="#glyph0-3" x="59.401431" y="154.886"/>
<use xlink:href="#glyph0-4" x="63.303781" y="154.886"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="73.412663" y="77.61"/>
<use xlink:href="#glyph0-3" x="78.393963" y="77.61"/>
<use xlink:href="#glyph0-4" x="82.296313" y="77.61"/>
<use xlink:href="#glyph0-5" x="71.049703" y="154.886"/>
<use xlink:href="#glyph0-13" x="79.351537" y="154.886"/>
<use xlink:href="#glyph0-17" x="84.332837" y="154.886"/>
<use xlink:href="#glyph0-16" x="89.314137" y="154.886"/>
<use xlink:href="#glyph0-13" x="94.849358" y="154.886"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="90.042235" y="77.61"/>
<use xlink:href="#glyph0-12" x="94.47061" y="77.61"/>
<use xlink:href="#glyph0-13" x="103.158166" y="154.886"/>
<use xlink:href="#glyph0-11" x="108.139466" y="154.886"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="101.672574" y="77.61"/>
<use xlink:href="#glyph0-2" x="107.207794" y="77.61"/>
<use xlink:href="#glyph0-11" x="112.189094" y="77.61"/>
<use xlink:href="#glyph0-2" x="114.956705" y="77.61"/>
<use xlink:href="#glyph0-3" x="119.938005" y="77.61"/>
<use xlink:href="#glyph0-4" x="123.840355" y="77.61"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="131.586277" y="77.61"/>
<use xlink:href="#glyph0-13" x="139.888111" y="77.61"/>
<use xlink:href="#glyph0-17" x="144.869411" y="77.61"/>
<use xlink:href="#glyph0-16" x="149.850711" y="77.61"/>
<use xlink:href="#glyph0-13" x="155.385932" y="77.61"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="163.684777" y="77.61"/>
<use xlink:href="#glyph0-11" x="168.666077" y="77.61"/>
<use xlink:href="#glyph0-6" x="171.433688" y="77.61"/>
<use xlink:href="#glyph0-19" x="174.201298" y="77.61"/>
<use xlink:href="#glyph0-9" x="179.459558" y="77.61"/>
<use xlink:href="#glyph0-13" x="184.994779" y="77.61"/>
<use xlink:href="#glyph0-20" x="189.976079" y="77.61"/>
<use xlink:href="#glyph0-6" x="110.897114" y="154.886"/>
<use xlink:href="#glyph0-19" x="113.664724" y="154.886"/>
<use xlink:href="#glyph0-9" x="118.922985" y="154.886"/>
<use xlink:href="#glyph0-13" x="124.458205" y="154.886"/>
<use xlink:href="#glyph0-20" x="129.439505" y="154.886"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -69,469 +69,465 @@
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="124.802" y="135.761"/>
<use xlink:href="#glyph0-2" x="131.028625" y="135.761"/>
<use xlink:href="#glyph0-3" x="136.009925" y="135.761"/>
<use xlink:href="#glyph0-4" x="139.912275" y="135.761"/>
<use xlink:href="#glyph0-5" x="144.340651" y="135.761"/>
<use xlink:href="#glyph0-1" x="139.746" y="132.661"/>
<use xlink:href="#glyph0-2" x="145.972625" y="132.661"/>
<use xlink:href="#glyph0-3" x="150.953925" y="132.661"/>
<use xlink:href="#glyph0-4" x="154.856275" y="132.661"/>
<use xlink:href="#glyph0-5" x="159.284651" y="132.661"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="155.541602" y="135.761"/>
<use xlink:href="#glyph0-7" x="158.309213" y="135.761"/>
<use xlink:href="#glyph0-8" x="163.844433" y="135.761"/>
<use xlink:href="#glyph0-9" x="167.774679" y="135.761"/>
<use xlink:href="#glyph0-5" x="173.309899" y="135.761"/>
<use xlink:href="#glyph0-6" x="170.904032" y="132.661"/>
<use xlink:href="#glyph0-7" x="173.671642" y="132.661"/>
<use xlink:href="#glyph0-8" x="179.206862" y="132.661"/>
<use xlink:href="#glyph0-9" x="183.137108" y="132.661"/>
<use xlink:href="#glyph0-5" x="188.672329" y="132.661"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="184.510851" y="135.761"/>
<use xlink:href="#glyph0-2" x="190.046071" y="135.761"/>
<use xlink:href="#glyph0-11" x="195.027371" y="135.761"/>
<use xlink:href="#glyph0-2" x="197.794981" y="135.761"/>
<use xlink:href="#glyph0-3" x="202.776281" y="135.761"/>
<use xlink:href="#glyph0-10" x="200.291709" y="132.661"/>
<use xlink:href="#glyph0-2" x="205.82693" y="132.661"/>
<use xlink:href="#glyph0-11" x="210.80823" y="132.661"/>
<use xlink:href="#glyph0-2" x="213.57584" y="132.661"/>
<use xlink:href="#glyph0-3" x="218.55714" y="132.661"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="209.577748" y="135.761"/>
<use xlink:href="#glyph0-6" x="213.507994" y="135.761"/>
<use xlink:href="#glyph0-12" x="216.275604" y="135.761"/>
<use xlink:href="#glyph0-8" x="225.786999" y="132.661"/>
<use xlink:href="#glyph0-6" x="229.717244" y="132.661"/>
<use xlink:href="#glyph0-12" x="232.484855" y="132.661"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="223.049176" y="135.761"/>
<use xlink:href="#glyph0-5" x="228.030476" y="135.761"/>
<use xlink:href="#glyph0-4" x="236.332311" y="135.761"/>
<use xlink:href="#glyph0-12" x="240.760686" y="135.761"/>
<use xlink:href="#glyph0-14" x="244.635142" y="135.761"/>
<use xlink:href="#glyph0-13" x="239.676856" y="132.661"/>
<use xlink:href="#glyph0-5" x="244.658156" y="132.661"/>
<use xlink:href="#glyph0-4" x="252.95999" y="132.661"/>
<use xlink:href="#glyph0-12" x="257.388366" y="132.661"/>
<use xlink:href="#glyph0-14" x="261.262821" y="132.661"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="250.391532" y="135.761"/>
<use xlink:href="#glyph0-2" x="254.819908" y="135.761"/>
<use xlink:href="#glyph0-16" x="259.801208" y="135.761"/>
<use xlink:href="#glyph0-8" x="265.336428" y="135.761"/>
<use xlink:href="#glyph0-4" x="269.266674" y="135.761"/>
<use xlink:href="#glyph0-15" x="273.69505" y="135.761"/>
<use xlink:href="#glyph0-15" x="139.746" y="144.617"/>
<use xlink:href="#glyph0-2" x="144.174376" y="144.617"/>
<use xlink:href="#glyph0-16" x="149.155676" y="144.617"/>
<use xlink:href="#glyph0-8" x="154.690896" y="144.617"/>
<use xlink:href="#glyph0-4" x="158.621142" y="144.617"/>
<use xlink:href="#glyph0-15" x="163.049518" y="144.617"/>
<use xlink:href="#glyph0-12" x="167.477893" y="144.617"/>
<use xlink:href="#glyph0-4" x="171.352349" y="144.617"/>
<use xlink:href="#glyph0-12" x="175.780724" y="144.617"/>
<use xlink:href="#glyph0-9" x="179.655179" y="144.617"/>
<use xlink:href="#glyph0-3" x="185.1904" y="144.617"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="278.113463" y="135.761"/>
<use xlink:href="#glyph0-4" x="281.987918" y="135.761"/>
<use xlink:href="#glyph0-12" x="286.416293" y="135.761"/>
<use xlink:href="#glyph0-9" x="290.290749" y="135.761"/>
<use xlink:href="#glyph0-3" x="295.825969" y="135.761"/>
<use xlink:href="#glyph0-13" x="192.410296" y="144.617"/>
<use xlink:href="#glyph0-10" x="197.391596" y="144.617"/>
<use xlink:href="#glyph0-6" x="202.926817" y="144.617"/>
<use xlink:href="#glyph0-7" x="205.694427" y="144.617"/>
<use xlink:href="#glyph0-6" x="211.229648" y="144.617"/>
<use xlink:href="#glyph0-8" x="213.997258" y="144.617"/>
<use xlink:href="#glyph0-15" x="217.927504" y="144.617"/>
<use xlink:href="#glyph0-6" x="222.355879" y="144.617"/>
<use xlink:href="#glyph0-16" x="225.123489" y="144.617"/>
<use xlink:href="#glyph0-17" x="230.65871" y="144.617"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="302.637399" y="135.761"/>
<use xlink:href="#glyph0-10" x="307.618699" y="135.761"/>
<use xlink:href="#glyph0-4" x="238.957556" y="144.617"/>
<use xlink:href="#glyph0-11" x="243.385932" y="144.617"/>
<use xlink:href="#glyph0-6" x="246.153542" y="144.617"/>
<use xlink:href="#glyph0-12" x="248.921152" y="144.617"/>
<use xlink:href="#glyph0-14" x="252.795607" y="144.617"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="313.143957" y="135.761"/>
<use xlink:href="#glyph0-7" x="315.911567" y="135.761"/>
<use xlink:href="#glyph0-6" x="321.446788" y="135.761"/>
<use xlink:href="#glyph0-8" x="324.214398" y="135.761"/>
<use xlink:href="#glyph0-15" x="328.144644" y="135.761"/>
<use xlink:href="#glyph0-6" x="332.573019" y="135.761"/>
<use xlink:href="#glyph0-16" x="335.34063" y="135.761"/>
<use xlink:href="#glyph0-17" x="340.87585" y="135.761"/>
<use xlink:href="#glyph0-8" x="258.880763" y="144.617"/>
<use xlink:href="#glyph0-4" x="262.811009" y="144.617"/>
<use xlink:href="#glyph0-10" x="267.239385" y="144.617"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="348.756267" y="135.761"/>
<use xlink:href="#glyph0-11" x="353.184642" y="135.761"/>
<use xlink:href="#glyph0-6" x="355.952253" y="135.761"/>
<use xlink:href="#glyph0-12" x="358.719863" y="135.761"/>
<use xlink:href="#glyph0-14" x="362.594318" y="135.761"/>
<use xlink:href="#glyph0-10" x="276.092151" y="144.617"/>
<use xlink:href="#glyph0-2" x="281.627372" y="144.617"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="368.350708" y="135.761"/>
<use xlink:href="#glyph0-4" x="372.280954" y="135.761"/>
<use xlink:href="#glyph0-10" x="376.70933" y="135.761"/>
<use xlink:href="#glyph0-4" x="139.746" y="156.572"/>
<use xlink:href="#glyph0-6" x="144.174376" y="156.572"/>
<use xlink:href="#glyph0-9" x="146.941986" y="156.572"/>
<use xlink:href="#glyph0-8" x="152.477207" y="156.572"/>
<use xlink:href="#glyph0-5" x="156.407452" y="156.572"/>
<use xlink:href="#glyph0-2" x="164.709287" y="156.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="385.143667" y="135.761"/>
<use xlink:href="#glyph0-2" x="390.678888" y="135.761"/>
<use xlink:href="#glyph0-10" x="169.96954" y="156.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="398.559304" y="135.761"/>
<use xlink:href="#glyph0-6" x="402.98768" y="135.761"/>
<use xlink:href="#glyph0-9" x="405.75529" y="135.761"/>
<use xlink:href="#glyph0-8" x="411.290511" y="135.761"/>
<use xlink:href="#glyph0-5" x="415.220756" y="135.761"/>
<use xlink:href="#glyph0-2" x="423.522591" y="135.761"/>
<use xlink:href="#glyph0-12" x="178.742605" y="156.572"/>
<use xlink:href="#glyph0-4" x="182.61706" y="156.572"/>
<use xlink:href="#glyph0-5" x="187.045436" y="156.572"/>
<use xlink:href="#glyph0-7" x="195.347271" y="156.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="428.782844" y="135.761"/>
<use xlink:href="#glyph0-2" x="201.161444" y="156.572"/>
<use xlink:href="#glyph0-3" x="206.142744" y="156.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="437.217181" y="135.761"/>
<use xlink:href="#glyph0-4" x="441.091636" y="135.761"/>
<use xlink:href="#glyph0-5" x="445.520012" y="135.761"/>
<use xlink:href="#glyph0-7" x="453.821846" y="135.761"/>
<use xlink:href="#glyph0-6" x="213.282939" y="156.572"/>
<use xlink:href="#glyph0-16" x="216.05055" y="156.572"/>
<use xlink:href="#glyph0-15" x="221.58577" y="156.572"/>
<use xlink:href="#glyph0-6" x="226.014146" y="156.572"/>
<use xlink:href="#glyph0-10" x="228.781756" y="156.572"/>
<use xlink:href="#glyph0-6" x="234.316977" y="156.572"/>
<use xlink:href="#glyph0-10" x="237.084587" y="156.572"/>
<use xlink:href="#glyph0-9" x="242.619808" y="156.572"/>
<use xlink:href="#glyph0-16" x="248.155028" y="156.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="459.626057" y="135.761"/>
<use xlink:href="#glyph0-3" x="464.607357" y="135.761"/>
<use xlink:href="#glyph0-12" x="253.411296" y="156.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="124.802" y="147.716"/>
<use xlink:href="#glyph0-16" x="127.56961" y="147.716"/>
<use xlink:href="#glyph0-15" x="133.104831" y="147.716"/>
<use xlink:href="#glyph0-6" x="137.533207" y="147.716"/>
<use xlink:href="#glyph0-10" x="140.300817" y="147.716"/>
<use xlink:href="#glyph0-6" x="145.836037" y="147.716"/>
<use xlink:href="#glyph0-10" x="148.603648" y="147.716"/>
<use xlink:href="#glyph0-9" x="154.138868" y="147.716"/>
<use xlink:href="#glyph0-16" x="159.674089" y="147.716"/>
<use xlink:href="#glyph0-9" x="260.533559" y="156.572"/>
<use xlink:href="#glyph0-12" x="266.068779" y="156.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="164.930357" y="147.716"/>
<use xlink:href="#glyph0-11" x="273.181079" y="156.572"/>
<use xlink:href="#glyph0-13" x="275.94869" y="156.572"/>
<use xlink:href="#glyph0-18" x="280.92999" y="156.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="172.122357" y="147.716"/>
<use xlink:href="#glyph0-12" x="177.657578" y="147.716"/>
<use xlink:href="#glyph0-2" x="286.744163" y="156.572"/>
<use xlink:href="#glyph0-3" x="291.725463" y="156.572"/>
<use xlink:href="#glyph0-4" x="295.627813" y="156.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="184.849579" y="147.716"/>
<use xlink:href="#glyph0-13" x="187.617189" y="147.716"/>
<use xlink:href="#glyph0-18" x="192.598489" y="147.716"/>
<use xlink:href="#glyph0-4" x="303.303997" y="156.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="198.412663" y="147.716"/>
<use xlink:href="#glyph0-3" x="203.393963" y="147.716"/>
<use xlink:href="#glyph0-4" x="207.296313" y="147.716"/>
<use xlink:href="#glyph0-12" x="307.72241" y="156.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="215.042235" y="147.716"/>
<use xlink:href="#glyph0-12" x="219.47061" y="147.716"/>
<use xlink:href="#glyph0-10" x="139.746" y="168.527"/>
<use xlink:href="#glyph0-2" x="145.281221" y="168.527"/>
<use xlink:href="#glyph0-11" x="150.262521" y="168.527"/>
<use xlink:href="#glyph0-2" x="153.030131" y="168.527"/>
<use xlink:href="#glyph0-3" x="158.011431" y="168.527"/>
<use xlink:href="#glyph0-4" x="161.913781" y="168.527"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="226.672574" y="147.716"/>
<use xlink:href="#glyph0-2" x="232.207794" y="147.716"/>
<use xlink:href="#glyph0-11" x="237.189094" y="147.716"/>
<use xlink:href="#glyph0-2" x="239.956705" y="147.716"/>
<use xlink:href="#glyph0-3" x="244.938005" y="147.716"/>
<use xlink:href="#glyph0-4" x="248.840355" y="147.716"/>
<use xlink:href="#glyph0-5" x="169.659703" y="168.527"/>
<use xlink:href="#glyph0-13" x="177.961537" y="168.527"/>
<use xlink:href="#glyph0-17" x="182.942837" y="168.527"/>
<use xlink:href="#glyph0-16" x="187.924137" y="168.527"/>
<use xlink:href="#glyph0-13" x="193.459358" y="168.527"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="256.586277" y="147.716"/>
<use xlink:href="#glyph0-13" x="264.888111" y="147.716"/>
<use xlink:href="#glyph0-17" x="269.869411" y="147.716"/>
<use xlink:href="#glyph0-16" x="274.850711" y="147.716"/>
<use xlink:href="#glyph0-13" x="280.385932" y="147.716"/>
<use xlink:href="#glyph0-13" x="201.758204" y="168.527"/>
<use xlink:href="#glyph0-11" x="206.739504" y="168.527"/>
<use xlink:href="#glyph0-6" x="209.507114" y="168.527"/>
<use xlink:href="#glyph0-19" x="212.274724" y="168.527"/>
<use xlink:href="#glyph0-9" x="217.532985" y="168.527"/>
<use xlink:href="#glyph0-13" x="223.068205" y="168.527"/>
<use xlink:href="#glyph0-20" x="228.049505" y="168.527"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="288.684777" y="147.716"/>
<use xlink:href="#glyph0-11" x="293.666077" y="147.716"/>
<use xlink:href="#glyph0-6" x="296.433688" y="147.716"/>
<use xlink:href="#glyph0-19" x="299.201298" y="147.716"/>
<use xlink:href="#glyph0-9" x="304.459558" y="147.716"/>
<use xlink:href="#glyph0-13" x="309.994779" y="147.716"/>
<use xlink:href="#glyph0-20" x="314.976079" y="147.716"/>
<use xlink:href="#glyph0-1" x="187.318" y="188.286"/>
<use xlink:href="#glyph0-2" x="193.544625" y="188.286"/>
<use xlink:href="#glyph0-3" x="198.525925" y="188.286"/>
<use xlink:href="#glyph0-4" x="202.428275" y="188.286"/>
<use xlink:href="#glyph0-5" x="206.856651" y="188.286"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="124.802" y="159.671"/>
<use xlink:href="#glyph0-2" x="131.028625" y="159.671"/>
<use xlink:href="#glyph0-3" x="136.009925" y="159.671"/>
<use xlink:href="#glyph0-4" x="139.912275" y="159.671"/>
<use xlink:href="#glyph0-5" x="144.340651" y="159.671"/>
<use xlink:href="#glyph0-6" x="218.476032" y="188.286"/>
<use xlink:href="#glyph0-7" x="221.243642" y="188.286"/>
<use xlink:href="#glyph0-8" x="226.778862" y="188.286"/>
<use xlink:href="#glyph0-9" x="230.709108" y="188.286"/>
<use xlink:href="#glyph0-5" x="236.244329" y="188.286"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="155.541602" y="159.671"/>
<use xlink:href="#glyph0-7" x="158.309213" y="159.671"/>
<use xlink:href="#glyph0-8" x="163.844433" y="159.671"/>
<use xlink:href="#glyph0-9" x="167.774679" y="159.671"/>
<use xlink:href="#glyph0-5" x="173.309899" y="159.671"/>
<use xlink:href="#glyph0-10" x="247.863709" y="188.286"/>
<use xlink:href="#glyph0-2" x="253.39893" y="188.286"/>
<use xlink:href="#glyph0-11" x="258.38023" y="188.286"/>
<use xlink:href="#glyph0-2" x="261.14784" y="188.286"/>
<use xlink:href="#glyph0-3" x="266.12914" y="188.286"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="184.510851" y="159.671"/>
<use xlink:href="#glyph0-2" x="190.046071" y="159.671"/>
<use xlink:href="#glyph0-11" x="195.027371" y="159.671"/>
<use xlink:href="#glyph0-2" x="197.794981" y="159.671"/>
<use xlink:href="#glyph0-3" x="202.776281" y="159.671"/>
<use xlink:href="#glyph0-8" x="273.358999" y="188.286"/>
<use xlink:href="#glyph0-6" x="277.289244" y="188.286"/>
<use xlink:href="#glyph0-12" x="280.056855" y="188.286"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="209.577748" y="159.671"/>
<use xlink:href="#glyph0-6" x="213.507994" y="159.671"/>
<use xlink:href="#glyph0-12" x="216.275604" y="159.671"/>
<use xlink:href="#glyph0-13" x="287.248856" y="188.286"/>
<use xlink:href="#glyph0-5" x="292.230156" y="188.286"/>
<use xlink:href="#glyph0-4" x="300.53199" y="188.286"/>
<use xlink:href="#glyph0-12" x="304.960366" y="188.286"/>
<use xlink:href="#glyph0-14" x="308.834821" y="188.286"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="223.049176" y="159.671"/>
<use xlink:href="#glyph0-5" x="228.030476" y="159.671"/>
<use xlink:href="#glyph0-4" x="236.332311" y="159.671"/>
<use xlink:href="#glyph0-12" x="240.760686" y="159.671"/>
<use xlink:href="#glyph0-14" x="244.635142" y="159.671"/>
<use xlink:href="#glyph0-15" x="164.735" y="200.241"/>
<use xlink:href="#glyph0-2" x="169.163376" y="200.241"/>
<use xlink:href="#glyph0-16" x="174.144676" y="200.241"/>
<use xlink:href="#glyph0-8" x="179.679896" y="200.241"/>
<use xlink:href="#glyph0-4" x="183.610142" y="200.241"/>
<use xlink:href="#glyph0-15" x="188.038518" y="200.241"/>
<use xlink:href="#glyph0-12" x="192.466893" y="200.241"/>
<use xlink:href="#glyph0-4" x="196.341349" y="200.241"/>
<use xlink:href="#glyph0-12" x="200.769724" y="200.241"/>
<use xlink:href="#glyph0-9" x="204.644179" y="200.241"/>
<use xlink:href="#glyph0-3" x="210.1794" y="200.241"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="250.391532" y="159.671"/>
<use xlink:href="#glyph0-2" x="254.819908" y="159.671"/>
<use xlink:href="#glyph0-16" x="259.801208" y="159.671"/>
<use xlink:href="#glyph0-8" x="265.336428" y="159.671"/>
<use xlink:href="#glyph0-4" x="269.266674" y="159.671"/>
<use xlink:href="#glyph0-15" x="273.69505" y="159.671"/>
<use xlink:href="#glyph0-13" x="217.399296" y="200.241"/>
<use xlink:href="#glyph0-10" x="222.380596" y="200.241"/>
<use xlink:href="#glyph0-6" x="227.915817" y="200.241"/>
<use xlink:href="#glyph0-7" x="230.683427" y="200.241"/>
<use xlink:href="#glyph0-6" x="236.218648" y="200.241"/>
<use xlink:href="#glyph0-8" x="238.986258" y="200.241"/>
<use xlink:href="#glyph0-15" x="242.916504" y="200.241"/>
<use xlink:href="#glyph0-6" x="247.344879" y="200.241"/>
<use xlink:href="#glyph0-16" x="250.112489" y="200.241"/>
<use xlink:href="#glyph0-17" x="255.64771" y="200.241"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="278.113463" y="159.671"/>
<use xlink:href="#glyph0-4" x="281.987918" y="159.671"/>
<use xlink:href="#glyph0-12" x="286.416293" y="159.671"/>
<use xlink:href="#glyph0-9" x="290.290749" y="159.671"/>
<use xlink:href="#glyph0-3" x="295.825969" y="159.671"/>
<use xlink:href="#glyph0-4" x="263.946556" y="200.241"/>
<use xlink:href="#glyph0-11" x="268.374932" y="200.241"/>
<use xlink:href="#glyph0-6" x="271.142542" y="200.241"/>
<use xlink:href="#glyph0-12" x="273.910152" y="200.241"/>
<use xlink:href="#glyph0-14" x="277.784607" y="200.241"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="302.637399" y="159.671"/>
<use xlink:href="#glyph0-10" x="307.618699" y="159.671"/>
<use xlink:href="#glyph0-8" x="283.869763" y="200.241"/>
<use xlink:href="#glyph0-4" x="287.800009" y="200.241"/>
<use xlink:href="#glyph0-10" x="292.228385" y="200.241"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="313.143957" y="159.671"/>
<use xlink:href="#glyph0-7" x="315.911567" y="159.671"/>
<use xlink:href="#glyph0-6" x="321.446788" y="159.671"/>
<use xlink:href="#glyph0-8" x="324.214398" y="159.671"/>
<use xlink:href="#glyph0-15" x="328.144644" y="159.671"/>
<use xlink:href="#glyph0-6" x="332.573019" y="159.671"/>
<use xlink:href="#glyph0-16" x="335.34063" y="159.671"/>
<use xlink:href="#glyph0-17" x="340.87585" y="159.671"/>
<use xlink:href="#glyph0-10" x="301.081151" y="200.241"/>
<use xlink:href="#glyph0-2" x="306.616372" y="200.241"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="348.756267" y="159.671"/>
<use xlink:href="#glyph0-11" x="353.184642" y="159.671"/>
<use xlink:href="#glyph0-6" x="355.952253" y="159.671"/>
<use xlink:href="#glyph0-12" x="358.719863" y="159.671"/>
<use xlink:href="#glyph0-14" x="362.594318" y="159.671"/>
<use xlink:href="#glyph0-4" x="139.746" y="212.196"/>
<use xlink:href="#glyph0-6" x="144.174376" y="212.196"/>
<use xlink:href="#glyph0-9" x="146.941986" y="212.196"/>
<use xlink:href="#glyph0-8" x="152.477207" y="212.196"/>
<use xlink:href="#glyph0-5" x="156.407452" y="212.196"/>
<use xlink:href="#glyph0-2" x="164.709287" y="212.196"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="368.350708" y="159.671"/>
<use xlink:href="#glyph0-4" x="372.280954" y="159.671"/>
<use xlink:href="#glyph0-10" x="376.70933" y="159.671"/>
<use xlink:href="#glyph0-10" x="169.96954" y="212.196"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="385.143667" y="159.671"/>
<use xlink:href="#glyph0-2" x="390.678888" y="159.671"/>
<use xlink:href="#glyph0-12" x="178.742605" y="212.196"/>
<use xlink:href="#glyph0-4" x="182.61706" y="212.196"/>
<use xlink:href="#glyph0-5" x="187.045436" y="212.196"/>
<use xlink:href="#glyph0-7" x="195.347271" y="212.196"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="398.559304" y="159.671"/>
<use xlink:href="#glyph0-6" x="402.98768" y="159.671"/>
<use xlink:href="#glyph0-9" x="405.75529" y="159.671"/>
<use xlink:href="#glyph0-8" x="411.290511" y="159.671"/>
<use xlink:href="#glyph0-5" x="415.220756" y="159.671"/>
<use xlink:href="#glyph0-2" x="423.522591" y="159.671"/>
<use xlink:href="#glyph0-2" x="201.161444" y="212.196"/>
<use xlink:href="#glyph0-3" x="206.142744" y="212.196"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="428.782844" y="159.671"/>
<use xlink:href="#glyph0-6" x="213.282939" y="212.196"/>
<use xlink:href="#glyph0-16" x="216.05055" y="212.196"/>
<use xlink:href="#glyph0-15" x="221.58577" y="212.196"/>
<use xlink:href="#glyph0-6" x="226.014146" y="212.196"/>
<use xlink:href="#glyph0-10" x="228.781756" y="212.196"/>
<use xlink:href="#glyph0-6" x="234.316977" y="212.196"/>
<use xlink:href="#glyph0-10" x="237.084587" y="212.196"/>
<use xlink:href="#glyph0-9" x="242.619808" y="212.196"/>
<use xlink:href="#glyph0-16" x="248.155028" y="212.196"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="437.217181" y="159.671"/>
<use xlink:href="#glyph0-4" x="441.091636" y="159.671"/>
<use xlink:href="#glyph0-5" x="445.520012" y="159.671"/>
<use xlink:href="#glyph0-7" x="453.821846" y="159.671"/>
<use xlink:href="#glyph0-12" x="253.411296" y="212.196"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="459.626057" y="159.671"/>
<use xlink:href="#glyph0-3" x="464.607357" y="159.671"/>
<use xlink:href="#glyph0-9" x="260.533559" y="212.196"/>
<use xlink:href="#glyph0-12" x="266.068779" y="212.196"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="124.802" y="171.627"/>
<use xlink:href="#glyph0-16" x="127.56961" y="171.627"/>
<use xlink:href="#glyph0-15" x="133.104831" y="171.627"/>
<use xlink:href="#glyph0-6" x="137.533207" y="171.627"/>
<use xlink:href="#glyph0-10" x="140.300817" y="171.627"/>
<use xlink:href="#glyph0-6" x="145.836037" y="171.627"/>
<use xlink:href="#glyph0-10" x="148.603648" y="171.627"/>
<use xlink:href="#glyph0-9" x="154.138868" y="171.627"/>
<use xlink:href="#glyph0-16" x="159.674089" y="171.627"/>
<use xlink:href="#glyph0-11" x="273.181079" y="212.196"/>
<use xlink:href="#glyph0-13" x="275.94869" y="212.196"/>
<use xlink:href="#glyph0-18" x="280.92999" y="212.196"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="164.930357" y="171.627"/>
<use xlink:href="#glyph0-2" x="286.744163" y="212.196"/>
<use xlink:href="#glyph0-3" x="291.725463" y="212.196"/>
<use xlink:href="#glyph0-4" x="295.627813" y="212.196"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="172.122357" y="171.627"/>
<use xlink:href="#glyph0-12" x="177.657578" y="171.627"/>
<use xlink:href="#glyph0-4" x="303.303997" y="212.196"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="184.849579" y="171.627"/>
<use xlink:href="#glyph0-13" x="187.617189" y="171.627"/>
<use xlink:href="#glyph0-18" x="192.598489" y="171.627"/>
<use xlink:href="#glyph0-12" x="307.72241" y="212.196"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="198.412663" y="171.627"/>
<use xlink:href="#glyph0-3" x="203.393963" y="171.627"/>
<use xlink:href="#glyph0-4" x="207.296313" y="171.627"/>
<use xlink:href="#glyph0-10" x="220.527" y="224.152"/>
<use xlink:href="#glyph0-2" x="226.062221" y="224.152"/>
<use xlink:href="#glyph0-11" x="231.043521" y="224.152"/>
<use xlink:href="#glyph0-2" x="233.811131" y="224.152"/>
<use xlink:href="#glyph0-3" x="238.792431" y="224.152"/>
<use xlink:href="#glyph0-4" x="242.694781" y="224.152"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="215.042235" y="171.627"/>
<use xlink:href="#glyph0-12" x="219.47061" y="171.627"/>
<use xlink:href="#glyph0-5" x="250.440703" y="224.152"/>
<use xlink:href="#glyph0-13" x="258.742537" y="224.152"/>
<use xlink:href="#glyph0-17" x="263.723837" y="224.152"/>
<use xlink:href="#glyph0-16" x="268.705137" y="224.152"/>
<use xlink:href="#glyph0-13" x="274.240358" y="224.152"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="226.672574" y="171.627"/>
<use xlink:href="#glyph0-2" x="232.207794" y="171.627"/>
<use xlink:href="#glyph0-11" x="237.189094" y="171.627"/>
<use xlink:href="#glyph0-2" x="239.956705" y="171.627"/>
<use xlink:href="#glyph0-3" x="244.938005" y="171.627"/>
<use xlink:href="#glyph0-4" x="248.840355" y="171.627"/>
<use xlink:href="#glyph0-13" x="282.539204" y="224.152"/>
<use xlink:href="#glyph0-11" x="287.520504" y="224.152"/>
<use xlink:href="#glyph0-6" x="290.288114" y="224.152"/>
<use xlink:href="#glyph0-19" x="293.055724" y="224.152"/>
<use xlink:href="#glyph0-9" x="298.313985" y="224.152"/>
<use xlink:href="#glyph0-13" x="303.849205" y="224.152"/>
<use xlink:href="#glyph0-20" x="308.830505" y="224.152"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="256.586277" y="171.627"/>
<use xlink:href="#glyph0-13" x="264.888111" y="171.627"/>
<use xlink:href="#glyph0-17" x="269.869411" y="171.627"/>
<use xlink:href="#glyph0-16" x="274.850711" y="171.627"/>
<use xlink:href="#glyph0-13" x="280.385932" y="171.627"/>
<use xlink:href="#glyph0-1" x="163.532" y="243.911"/>
<use xlink:href="#glyph0-2" x="169.758625" y="243.911"/>
<use xlink:href="#glyph0-3" x="174.739925" y="243.911"/>
<use xlink:href="#glyph0-4" x="178.642275" y="243.911"/>
<use xlink:href="#glyph0-5" x="183.070651" y="243.911"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="288.684777" y="171.627"/>
<use xlink:href="#glyph0-11" x="293.666077" y="171.627"/>
<use xlink:href="#glyph0-6" x="296.433688" y="171.627"/>
<use xlink:href="#glyph0-19" x="299.201298" y="171.627"/>
<use xlink:href="#glyph0-9" x="304.459558" y="171.627"/>
<use xlink:href="#glyph0-13" x="309.994779" y="171.627"/>
<use xlink:href="#glyph0-20" x="314.976079" y="171.627"/>
<use xlink:href="#glyph0-6" x="194.690032" y="243.911"/>
<use xlink:href="#glyph0-7" x="197.457642" y="243.911"/>
<use xlink:href="#glyph0-8" x="202.992862" y="243.911"/>
<use xlink:href="#glyph0-9" x="206.923108" y="243.911"/>
<use xlink:href="#glyph0-5" x="212.458329" y="243.911"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="124.802" y="193.544"/>
<use xlink:href="#glyph0-2" x="131.028625" y="193.544"/>
<use xlink:href="#glyph0-3" x="136.009925" y="193.544"/>
<use xlink:href="#glyph0-4" x="139.912275" y="193.544"/>
<use xlink:href="#glyph0-5" x="144.340651" y="193.544"/>
<use xlink:href="#glyph0-10" x="224.077709" y="243.911"/>
<use xlink:href="#glyph0-2" x="229.61293" y="243.911"/>
<use xlink:href="#glyph0-11" x="234.59423" y="243.911"/>
<use xlink:href="#glyph0-2" x="237.36184" y="243.911"/>
<use xlink:href="#glyph0-3" x="242.34314" y="243.911"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="155.541602" y="193.544"/>
<use xlink:href="#glyph0-7" x="158.309213" y="193.544"/>
<use xlink:href="#glyph0-8" x="163.844433" y="193.544"/>
<use xlink:href="#glyph0-9" x="167.774679" y="193.544"/>
<use xlink:href="#glyph0-5" x="173.309899" y="193.544"/>
<use xlink:href="#glyph0-8" x="249.572999" y="243.911"/>
<use xlink:href="#glyph0-6" x="253.503244" y="243.911"/>
<use xlink:href="#glyph0-12" x="256.270855" y="243.911"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="184.510851" y="193.544"/>
<use xlink:href="#glyph0-2" x="190.046071" y="193.544"/>
<use xlink:href="#glyph0-11" x="195.027371" y="193.544"/>
<use xlink:href="#glyph0-2" x="197.794981" y="193.544"/>
<use xlink:href="#glyph0-3" x="202.776281" y="193.544"/>
<use xlink:href="#glyph0-13" x="263.462856" y="243.911"/>
<use xlink:href="#glyph0-5" x="268.444156" y="243.911"/>
<use xlink:href="#glyph0-4" x="276.74599" y="243.911"/>
<use xlink:href="#glyph0-12" x="281.174366" y="243.911"/>
<use xlink:href="#glyph0-14" x="285.048821" y="243.911"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="209.577748" y="193.544"/>
<use xlink:href="#glyph0-6" x="213.507994" y="193.544"/>
<use xlink:href="#glyph0-12" x="216.275604" y="193.544"/>
<use xlink:href="#glyph0-15" x="152.241" y="255.866"/>
<use xlink:href="#glyph0-2" x="156.669376" y="255.866"/>
<use xlink:href="#glyph0-16" x="161.650676" y="255.866"/>
<use xlink:href="#glyph0-8" x="167.185896" y="255.866"/>
<use xlink:href="#glyph0-4" x="171.116142" y="255.866"/>
<use xlink:href="#glyph0-15" x="175.544518" y="255.866"/>
<use xlink:href="#glyph0-12" x="179.972893" y="255.866"/>
<use xlink:href="#glyph0-4" x="183.847349" y="255.866"/>
<use xlink:href="#glyph0-12" x="188.275724" y="255.866"/>
<use xlink:href="#glyph0-9" x="192.150179" y="255.866"/>
<use xlink:href="#glyph0-3" x="197.6854" y="255.866"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="223.049176" y="193.544"/>
<use xlink:href="#glyph0-5" x="228.030476" y="193.544"/>
<use xlink:href="#glyph0-4" x="236.332311" y="193.544"/>
<use xlink:href="#glyph0-12" x="240.760686" y="193.544"/>
<use xlink:href="#glyph0-14" x="244.635142" y="193.544"/>
<use xlink:href="#glyph0-13" x="204.905296" y="255.866"/>
<use xlink:href="#glyph0-10" x="209.886596" y="255.866"/>
<use xlink:href="#glyph0-6" x="215.421817" y="255.866"/>
<use xlink:href="#glyph0-7" x="218.189427" y="255.866"/>
<use xlink:href="#glyph0-6" x="223.724648" y="255.866"/>
<use xlink:href="#glyph0-8" x="226.492258" y="255.866"/>
<use xlink:href="#glyph0-15" x="230.422504" y="255.866"/>
<use xlink:href="#glyph0-6" x="234.850879" y="255.866"/>
<use xlink:href="#glyph0-16" x="237.618489" y="255.866"/>
<use xlink:href="#glyph0-17" x="243.15371" y="255.866"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="250.391532" y="193.544"/>
<use xlink:href="#glyph0-2" x="254.819908" y="193.544"/>
<use xlink:href="#glyph0-16" x="259.801208" y="193.544"/>
<use xlink:href="#glyph0-8" x="265.336428" y="193.544"/>
<use xlink:href="#glyph0-4" x="269.266674" y="193.544"/>
<use xlink:href="#glyph0-15" x="273.69505" y="193.544"/>
<use xlink:href="#glyph0-4" x="251.452556" y="255.866"/>
<use xlink:href="#glyph0-11" x="255.880932" y="255.866"/>
<use xlink:href="#glyph0-6" x="258.648542" y="255.866"/>
<use xlink:href="#glyph0-12" x="261.416152" y="255.866"/>
<use xlink:href="#glyph0-14" x="265.290607" y="255.866"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="278.113463" y="193.544"/>
<use xlink:href="#glyph0-4" x="281.987918" y="193.544"/>
<use xlink:href="#glyph0-12" x="286.416293" y="193.544"/>
<use xlink:href="#glyph0-9" x="290.290749" y="193.544"/>
<use xlink:href="#glyph0-3" x="295.825969" y="193.544"/>
<use xlink:href="#glyph0-8" x="271.375763" y="255.866"/>
<use xlink:href="#glyph0-4" x="275.306009" y="255.866"/>
<use xlink:href="#glyph0-10" x="279.734385" y="255.866"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="302.637399" y="193.544"/>
<use xlink:href="#glyph0-10" x="307.618699" y="193.544"/>
<use xlink:href="#glyph0-10" x="288.587151" y="255.866"/>
<use xlink:href="#glyph0-2" x="294.122372" y="255.866"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="313.143957" y="193.544"/>
<use xlink:href="#glyph0-7" x="315.911567" y="193.544"/>
<use xlink:href="#glyph0-6" x="321.446788" y="193.544"/>
<use xlink:href="#glyph0-8" x="324.214398" y="193.544"/>
<use xlink:href="#glyph0-15" x="328.144644" y="193.544"/>
<use xlink:href="#glyph0-6" x="332.573019" y="193.544"/>
<use xlink:href="#glyph0-16" x="335.34063" y="193.544"/>
<use xlink:href="#glyph0-17" x="340.87585" y="193.544"/>
<use xlink:href="#glyph0-4" x="139.746" y="267.821"/>
<use xlink:href="#glyph0-6" x="144.174376" y="267.821"/>
<use xlink:href="#glyph0-9" x="146.941986" y="267.821"/>
<use xlink:href="#glyph0-8" x="152.477207" y="267.821"/>
<use xlink:href="#glyph0-5" x="156.407452" y="267.821"/>
<use xlink:href="#glyph0-2" x="164.709287" y="267.821"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="348.756267" y="193.544"/>
<use xlink:href="#glyph0-11" x="353.184642" y="193.544"/>
<use xlink:href="#glyph0-6" x="355.952253" y="193.544"/>
<use xlink:href="#glyph0-12" x="358.719863" y="193.544"/>
<use xlink:href="#glyph0-14" x="362.594318" y="193.544"/>
<use xlink:href="#glyph0-10" x="169.96954" y="267.821"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="368.350708" y="193.544"/>
<use xlink:href="#glyph0-4" x="372.280954" y="193.544"/>
<use xlink:href="#glyph0-10" x="376.70933" y="193.544"/>
<use xlink:href="#glyph0-12" x="178.742605" y="267.821"/>
<use xlink:href="#glyph0-4" x="182.61706" y="267.821"/>
<use xlink:href="#glyph0-5" x="187.045436" y="267.821"/>
<use xlink:href="#glyph0-7" x="195.347271" y="267.821"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="385.143667" y="193.544"/>
<use xlink:href="#glyph0-2" x="390.678888" y="193.544"/>
<use xlink:href="#glyph0-2" x="201.161444" y="267.821"/>
<use xlink:href="#glyph0-3" x="206.142744" y="267.821"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="398.559304" y="193.544"/>
<use xlink:href="#glyph0-6" x="402.98768" y="193.544"/>
<use xlink:href="#glyph0-9" x="405.75529" y="193.544"/>
<use xlink:href="#glyph0-8" x="411.290511" y="193.544"/>
<use xlink:href="#glyph0-5" x="415.220756" y="193.544"/>
<use xlink:href="#glyph0-2" x="423.522591" y="193.544"/>
<use xlink:href="#glyph0-6" x="213.282939" y="267.821"/>
<use xlink:href="#glyph0-16" x="216.05055" y="267.821"/>
<use xlink:href="#glyph0-15" x="221.58577" y="267.821"/>
<use xlink:href="#glyph0-6" x="226.014146" y="267.821"/>
<use xlink:href="#glyph0-10" x="228.781756" y="267.821"/>
<use xlink:href="#glyph0-6" x="234.316977" y="267.821"/>
<use xlink:href="#glyph0-10" x="237.084587" y="267.821"/>
<use xlink:href="#glyph0-9" x="242.619808" y="267.821"/>
<use xlink:href="#glyph0-16" x="248.155028" y="267.821"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="428.782844" y="193.544"/>
<use xlink:href="#glyph0-12" x="253.411296" y="267.821"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="437.217181" y="193.544"/>
<use xlink:href="#glyph0-4" x="441.091636" y="193.544"/>
<use xlink:href="#glyph0-5" x="445.520012" y="193.544"/>
<use xlink:href="#glyph0-7" x="453.821846" y="193.544"/>
<use xlink:href="#glyph0-9" x="260.533559" y="267.821"/>
<use xlink:href="#glyph0-12" x="266.068779" y="267.821"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="459.626057" y="193.544"/>
<use xlink:href="#glyph0-3" x="464.607357" y="193.544"/>
<use xlink:href="#glyph0-11" x="273.181079" y="267.821"/>
<use xlink:href="#glyph0-13" x="275.94869" y="267.821"/>
<use xlink:href="#glyph0-18" x="280.92999" y="267.821"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="124.802" y="205.5"/>
<use xlink:href="#glyph0-16" x="127.56961" y="205.5"/>
<use xlink:href="#glyph0-15" x="133.104831" y="205.5"/>
<use xlink:href="#glyph0-6" x="137.533207" y="205.5"/>
<use xlink:href="#glyph0-10" x="140.300817" y="205.5"/>
<use xlink:href="#glyph0-6" x="145.836037" y="205.5"/>
<use xlink:href="#glyph0-10" x="148.603648" y="205.5"/>
<use xlink:href="#glyph0-9" x="154.138868" y="205.5"/>
<use xlink:href="#glyph0-16" x="159.674089" y="205.5"/>
<use xlink:href="#glyph0-2" x="286.744163" y="267.821"/>
<use xlink:href="#glyph0-3" x="291.725463" y="267.821"/>
<use xlink:href="#glyph0-4" x="295.627813" y="267.821"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="164.930357" y="205.5"/>
<use xlink:href="#glyph0-4" x="303.303997" y="267.821"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="172.122357" y="205.5"/>
<use xlink:href="#glyph0-12" x="177.657578" y="205.5"/>
<use xlink:href="#glyph0-12" x="307.72241" y="267.821"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="184.849579" y="205.5"/>
<use xlink:href="#glyph0-13" x="187.617189" y="205.5"/>
<use xlink:href="#glyph0-18" x="192.598489" y="205.5"/>
<use xlink:href="#glyph0-10" x="180.136" y="279.776"/>
<use xlink:href="#glyph0-2" x="185.671221" y="279.776"/>
<use xlink:href="#glyph0-11" x="190.652521" y="279.776"/>
<use xlink:href="#glyph0-2" x="193.420131" y="279.776"/>
<use xlink:href="#glyph0-3" x="198.401431" y="279.776"/>
<use xlink:href="#glyph0-4" x="202.303781" y="279.776"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="198.412663" y="205.5"/>
<use xlink:href="#glyph0-3" x="203.393963" y="205.5"/>
<use xlink:href="#glyph0-4" x="207.296313" y="205.5"/>
<use xlink:href="#glyph0-5" x="210.049703" y="279.776"/>
<use xlink:href="#glyph0-13" x="218.351537" y="279.776"/>
<use xlink:href="#glyph0-17" x="223.332837" y="279.776"/>
<use xlink:href="#glyph0-16" x="228.314137" y="279.776"/>
<use xlink:href="#glyph0-13" x="233.849358" y="279.776"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="215.042235" y="205.5"/>
<use xlink:href="#glyph0-12" x="219.47061" y="205.5"/>
<use xlink:href="#glyph0-13" x="242.158166" y="279.776"/>
<use xlink:href="#glyph0-11" x="247.139466" y="279.776"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="226.672574" y="205.5"/>
<use xlink:href="#glyph0-2" x="232.207794" y="205.5"/>
<use xlink:href="#glyph0-11" x="237.189094" y="205.5"/>
<use xlink:href="#glyph0-2" x="239.956705" y="205.5"/>
<use xlink:href="#glyph0-3" x="244.938005" y="205.5"/>
<use xlink:href="#glyph0-4" x="248.840355" y="205.5"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="256.586277" y="205.5"/>
<use xlink:href="#glyph0-13" x="264.888111" y="205.5"/>
<use xlink:href="#glyph0-17" x="269.869411" y="205.5"/>
<use xlink:href="#glyph0-16" x="274.850711" y="205.5"/>
<use xlink:href="#glyph0-13" x="280.385932" y="205.5"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="288.684777" y="205.5"/>
<use xlink:href="#glyph0-11" x="293.666077" y="205.5"/>
<use xlink:href="#glyph0-6" x="296.433688" y="205.5"/>
<use xlink:href="#glyph0-19" x="299.201298" y="205.5"/>
<use xlink:href="#glyph0-9" x="304.459558" y="205.5"/>
<use xlink:href="#glyph0-13" x="309.994779" y="205.5"/>
<use xlink:href="#glyph0-20" x="314.976079" y="205.5"/>
<use xlink:href="#glyph0-6" x="249.897114" y="279.776"/>
<use xlink:href="#glyph0-19" x="252.664724" y="279.776"/>
<use xlink:href="#glyph0-9" x="257.922985" y="279.776"/>
<use xlink:href="#glyph0-13" x="263.458205" y="279.776"/>
<use xlink:href="#glyph0-20" x="268.439505" y="279.776"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -7,10 +7,12 @@
\begin{document}
\thispagestyle{empty}
\parbox{.5\linewidth}{
{\raggedright{} Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.}
{\raggedleft Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.}
{\center Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.}
\parbox{\linewidth}{
\raggedright Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.}
\\[1em]
\parbox{\linewidth}{\raggedleft Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.}
\\
\parbox{\linewidth}{\center Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.}
}
\end{document}

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 233 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 234 KiB

View File

@ -0,0 +1,31 @@
\documentclass[a4paper]{article}
\usepackage{lmodern}
\usepackage{amssymb,amsmath}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage[ngerman]{babel}
\begin{document}
\thispagestyle{empty}
\section*{Einzüge oder Abstände?}
\subsection*{Einzüge}
Standardmäßig bekommt der erste Absatz nach einer Überschrift keinen Einzug. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Alle folgenden Absätze beginnen dann mit einem Einzug, damit gut zu erkennen ist, wo sie anfangen und aufhören. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Alle folgenden Absätze beginnen dann mit einem Einzug, damit gut zu erkennen ist, wo sie anfangen und aufhören. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
\subsection*{Abstände}
Stattdessen kann die Grenze auch durch Abstände kenntlich gemacht werden. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
\setlength{\parindent}{0pt}
\setlength{\parskip}{1em
plus .5em % erlaubte Dehnung
minus .5em % erlaubte Stauchung
}
Folgeabsätze haben dann keinen Einzug, sondern vertikalen Abstand vom vorherigen Absatz. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Folgeabsätze haben dann keinen Einzug, sondern vertikalen Abstand vom vorherigen Absatz. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
\end{document}

View File

@ -10,17 +10,17 @@
<div class="layout-content">
<h2>Ungeordnete Listen</h2>
<pre class="lang-tex hljs"><code>\begin{itemize}
\item Nudelplatten
\item Passierte Tomaten
\item Möhren
\item Erbsen
\item Mehl
\item Milch
\item Nudelplatten
\item Passierte Tomaten, Möhren, Erbsen, Zwiebeln
\item Oregano, Basilikum, Rosmarin, Salz, Pfeffer
\item Mozzarella
\item Mehl
\item Milch
\end{itemize}</code></pre>
<p>Die einzelnen Stichpunkte werden innerhalb der <code>itemize</code>-Umgebung durch den Befehl <code>\item</code> gekennzeichnet.</p>
<p>Die einzelnen Stichpunkte werden in jeder Aufzählungsumgebung durch den Befehl <code>\item</code> gekennzeichnet.</p>
</div>
<div class="layout-preview">
<img src="sections/german/08/itemize-crop.svg" style="max-height: 100%;">
<img class="thin-padding" src="sections/german/08/itemize-crop.svg">
</div>
</div>
@ -33,18 +33,16 @@
\item die Zwiebeln in einem Topf anbraten
\item passierte Tomaten, Möhren und Erbsen dazugeben und aufkochen
\item mit Kräutern und Gewürzen abschmecken
\item aus Milch, Salz und Mehl eine Béchamelsauce herstellen
\item in einer Auflaufform abwechselnd Béchamelsauce, Nudelplatten und Gemüsesoße stapeln
\item in Scheiben geschnittenen Mozzarella darauf verteilen und im Ofen backen
% \item ...
\end{enumerate}</code></pre>
<pre class="lang-tex hljs"><code>\begin{description}
<pre class="lang-tex hljs fragment"><code>\begin{description}
\item [Béchamelsauce] Béchamelsauce, Sauce Béchamel oder Milchsauce ist eine helle Sauce aus Milch, Butter und Mehl, die meist zu Gemüse, Kartoffeln oder Eierspeisen serviert wird. Als klassische Grundsauce findet sie variiert bei vielen Gerichten Verwendung. (siehe \url{https://de.wikipedia.org/wiki/B%C3%A9chamelsauce})
\item [Lasagne] Als Lasagne (Plural Lasagnen) werden sowohl besonders breite Bandnudeln als auch der mehrere Teigschichten (Nudelplatten) beinhaltende Auflauf bezeichnet. (siehe \url{https://de.wikipedia.org/wiki/Lasagne})
\end{description}</code></pre>
</div>
<div class="layout-preview" style="display: flex; flex-direction: column;">
<img src="sections/german/08/enumerate-crop.svg" style="margin-bottom: 0;">
<img src="sections/german/08/definition-crop.svg">
<img class="thin-padding" src="sections/german/08/enumerate-crop.svg" style="margin-bottom: 0;">
<img class="thin-padding fragment" src="sections/german/08/definition-crop.svg">
</div>
</div>
@ -56,15 +54,15 @@
<p>Das Paket <code>paralist</code> stellt Aufzählungen ohne riesige Zwischenräume zur Verfügung.</p>
<pre class="lang-tex hljs"><code>\section{Zutaten}
\begin{compactitem}
% ...
% \item ...
\end{compactitem}
\section{Zubereitung}
\begin{compactenum}
% ...
% \item ...
\end{compactenum}
\section{Glossar}
\begin{compactdesc}
% ...
% \item ...
\end{compactdesc}</code></pre>
</div>
<div class="layout-preview">
@ -77,8 +75,8 @@
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Verschachtelte Listen</h2>
<p>Listen lassen sich beliebig verschachteln.</p>
<pre class="lang-tex hljs"><code>\begin{compactitem}
% ...
\item Gemüse \begin{compactitem}
\item Passierte Tomaten
\item Möhren
@ -103,7 +101,7 @@
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Aufzählungsarten</h2>
<p>Die Art der Aufzählung lässt sich über den optionalen Parameter <code>label</code> ändern. Hierfür ist das Paket <code>enumitem</code> notwendig</p>
<p>Die Art der Aufzählung lässt sich über den optionalen Parameter <code>label</code> ändern. Hierfür ist das Paket <code>enumitem</code> notwendig.</p>
<pre class="lang-tex hljs"><code>% Römische Zahlen
\begin{enumerate}[label=\roman\*]
%...
@ -121,13 +119,13 @@
---
<div class="layout-only">
<div class="layout-content-only">
<div class="layout-content">
<h2 data-category="Aufgabe">5. Aufzählungen einfügen</h2>
<h2 data-category="Aufgabe" data-task="7">Aufzählungen einfügen</h2>
<ul>
<li class="fragment">Füge in Absatz xxx von Kapitel xxx eine nummerierte Aufzählung von xxx ein.</li>
<li class="fragment">Wandle die Aufzählung anschließend in eine Liste mit Bullet Points um.</li>
<li class="fragment">Füge in Absatz xxx nun noch eine <code>description</code> ein. Kann man darin eine Aufzählung verschachteln?</li>
</ul>
</div>
</div>
</div>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="337pt" height="122pt" viewBox="0 0 337 122" version="1.1">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="341pt" height="122pt" viewBox="0 0 341 122" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
@ -486,51 +486,51 @@
<use xlink:href="#glyph0-21" x="221.122817" y="87.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-44" x="226.321302" y="87.572"/>
<use xlink:href="#glyph0-25" x="233.793252" y="87.572"/>
<use xlink:href="#glyph0-3" x="239.328472" y="87.572"/>
<use xlink:href="#glyph0-5" x="244.863693" y="87.572"/>
<use xlink:href="#glyph0-9" x="249.292069" y="87.572"/>
<use xlink:href="#glyph0-14" x="252.059679" y="87.572"/>
<use xlink:href="#glyph0-9" x="257.5949" y="87.572"/>
<use xlink:href="#glyph0-16" x="260.36251" y="87.572"/>
<use xlink:href="#glyph0-18" x="265.34381" y="87.572"/>
<use xlink:href="#glyph0-18" x="269.218265" y="87.572"/>
<use xlink:href="#glyph0-5" x="273.09272" y="87.572"/>
<use xlink:href="#glyph0-10" x="277.521096" y="87.572"/>
<use xlink:href="#glyph0-44" x="226.102125" y="87.572"/>
<use xlink:href="#glyph0-25" x="233.574075" y="87.572"/>
<use xlink:href="#glyph0-3" x="239.109295" y="87.572"/>
<use xlink:href="#glyph0-5" x="244.644516" y="87.572"/>
<use xlink:href="#glyph0-9" x="249.072892" y="87.572"/>
<use xlink:href="#glyph0-14" x="251.840502" y="87.572"/>
<use xlink:href="#glyph0-9" x="257.375722" y="87.572"/>
<use xlink:href="#glyph0-16" x="260.143333" y="87.572"/>
<use xlink:href="#glyph0-18" x="265.124633" y="87.572"/>
<use xlink:href="#glyph0-18" x="268.999088" y="87.572"/>
<use xlink:href="#glyph0-5" x="272.873543" y="87.572"/>
<use xlink:href="#glyph0-10" x="277.301919" y="87.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="285.268014" y="87.572"/>
<use xlink:href="#glyph0-10" x="290.803234" y="87.572"/>
<use xlink:href="#glyph0-3" x="296.338455" y="87.572"/>
<use xlink:href="#glyph0-25" x="285.048836" y="87.572"/>
<use xlink:href="#glyph0-10" x="290.584057" y="87.572"/>
<use xlink:href="#glyph0-3" x="296.119278" y="87.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-34" x="304.085372" y="87.572"/>
<use xlink:href="#glyph0-5" x="311.903025" y="87.572"/>
<use xlink:href="#glyph0-11" x="316.3314" y="87.572"/>
<use xlink:href="#glyph0-34" x="303.866195" y="87.572"/>
<use xlink:href="#glyph0-5" x="311.683848" y="87.572"/>
<use xlink:href="#glyph0-11" x="316.112223" y="87.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-35" x="324.354282" y="87.572"/>
<use xlink:href="#glyph0-20" x="329.889503" y="87.572"/>
<use xlink:href="#glyph0-45" x="333.819748" y="87.572"/>
<use xlink:href="#glyph0-35" x="324.135105" y="87.572"/>
<use xlink:href="#glyph0-20" x="329.670326" y="87.572"/>
<use xlink:href="#glyph0-5" x="333.600571" y="87.572"/>
<use xlink:href="#glyph0-45" x="338.028947" y="87.572"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="12.709" y="99.527"/>
<use xlink:href="#glyph0-20" x="17.137376" y="99.527"/>
<use xlink:href="#glyph0-13" x="21.067621" y="99.527"/>
<use xlink:href="#glyph0-46" x="26.048921" y="99.527"/>
<use xlink:href="#glyph0-5" x="31.030221" y="99.527"/>
<use xlink:href="#glyph0-20" x="12.709" y="99.527"/>
<use xlink:href="#glyph0-13" x="16.639246" y="99.527"/>
<use xlink:href="#glyph0-46" x="21.620546" y="99.527"/>
<use xlink:href="#glyph0-5" x="26.601846" y="99.527"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-20" x="38.776143" y="99.527"/>
<use xlink:href="#glyph0-18" x="42.706389" y="99.527"/>
<use xlink:href="#glyph0-16" x="46.580844" y="99.527"/>
<use xlink:href="#glyph0-14" x="51.562144" y="99.527"/>
<use xlink:href="#glyph0-20" x="34.347767" y="99.527"/>
<use xlink:href="#glyph0-18" x="38.278013" y="99.527"/>
<use xlink:href="#glyph0-16" x="42.152468" y="99.527"/>
<use xlink:href="#glyph0-14" x="47.133768" y="99.527"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="57.376317" y="99.527"/>
<use xlink:href="#glyph0-9" x="61.804693" y="99.527"/>
<use xlink:href="#glyph0-10" x="64.572303" y="99.527"/>
<use xlink:href="#glyph0-5" x="52.947941" y="99.527"/>
<use xlink:href="#glyph0-9" x="57.376317" y="99.527"/>
<use xlink:href="#glyph0-10" x="60.143927" y="99.527"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-47" x="-0.021" y="119.453"/>

Before

Width:  |  Height:  |  Size: 69 KiB

After

Width:  |  Height:  |  Size: 69 KiB

View File

@ -486,51 +486,51 @@
<use xlink:href="#glyph0-21" x="358.122817" y="215.462"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-44" x="363.321302" y="215.462"/>
<use xlink:href="#glyph0-25" x="370.793252" y="215.462"/>
<use xlink:href="#glyph0-3" x="376.328472" y="215.462"/>
<use xlink:href="#glyph0-5" x="381.863693" y="215.462"/>
<use xlink:href="#glyph0-9" x="386.292069" y="215.462"/>
<use xlink:href="#glyph0-14" x="389.059679" y="215.462"/>
<use xlink:href="#glyph0-9" x="394.5949" y="215.462"/>
<use xlink:href="#glyph0-16" x="397.36251" y="215.462"/>
<use xlink:href="#glyph0-18" x="402.34381" y="215.462"/>
<use xlink:href="#glyph0-18" x="406.218265" y="215.462"/>
<use xlink:href="#glyph0-5" x="410.09272" y="215.462"/>
<use xlink:href="#glyph0-10" x="414.521096" y="215.462"/>
<use xlink:href="#glyph0-44" x="363.102125" y="215.462"/>
<use xlink:href="#glyph0-25" x="370.574075" y="215.462"/>
<use xlink:href="#glyph0-3" x="376.109295" y="215.462"/>
<use xlink:href="#glyph0-5" x="381.644516" y="215.462"/>
<use xlink:href="#glyph0-9" x="386.072892" y="215.462"/>
<use xlink:href="#glyph0-14" x="388.840502" y="215.462"/>
<use xlink:href="#glyph0-9" x="394.375722" y="215.462"/>
<use xlink:href="#glyph0-16" x="397.143333" y="215.462"/>
<use xlink:href="#glyph0-18" x="402.124633" y="215.462"/>
<use xlink:href="#glyph0-18" x="405.999088" y="215.462"/>
<use xlink:href="#glyph0-5" x="409.873543" y="215.462"/>
<use xlink:href="#glyph0-10" x="414.301919" y="215.462"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="422.268014" y="215.462"/>
<use xlink:href="#glyph0-10" x="427.803234" y="215.462"/>
<use xlink:href="#glyph0-3" x="433.338455" y="215.462"/>
<use xlink:href="#glyph0-25" x="422.048836" y="215.462"/>
<use xlink:href="#glyph0-10" x="427.584057" y="215.462"/>
<use xlink:href="#glyph0-3" x="433.119278" y="215.462"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-34" x="441.085372" y="215.462"/>
<use xlink:href="#glyph0-5" x="448.903025" y="215.462"/>
<use xlink:href="#glyph0-11" x="453.3314" y="215.462"/>
<use xlink:href="#glyph0-34" x="440.866195" y="215.462"/>
<use xlink:href="#glyph0-5" x="448.683848" y="215.462"/>
<use xlink:href="#glyph0-11" x="453.112223" y="215.462"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-35" x="461.354282" y="215.462"/>
<use xlink:href="#glyph0-20" x="466.889503" y="215.462"/>
<use xlink:href="#glyph0-45" x="470.819748" y="215.462"/>
<use xlink:href="#glyph0-35" x="461.135105" y="215.462"/>
<use xlink:href="#glyph0-20" x="466.670326" y="215.462"/>
<use xlink:href="#glyph0-5" x="470.600571" y="215.462"/>
<use xlink:href="#glyph0-45" x="475.028947" y="215.462"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="149.709" y="227.417"/>
<use xlink:href="#glyph0-20" x="154.137376" y="227.417"/>
<use xlink:href="#glyph0-13" x="158.067621" y="227.417"/>
<use xlink:href="#glyph0-46" x="163.048921" y="227.417"/>
<use xlink:href="#glyph0-5" x="168.030221" y="227.417"/>
<use xlink:href="#glyph0-20" x="149.709" y="227.417"/>
<use xlink:href="#glyph0-13" x="153.639246" y="227.417"/>
<use xlink:href="#glyph0-46" x="158.620546" y="227.417"/>
<use xlink:href="#glyph0-5" x="163.601846" y="227.417"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-20" x="175.776143" y="227.417"/>
<use xlink:href="#glyph0-18" x="179.706389" y="227.417"/>
<use xlink:href="#glyph0-16" x="183.580844" y="227.417"/>
<use xlink:href="#glyph0-14" x="188.562144" y="227.417"/>
<use xlink:href="#glyph0-20" x="171.347767" y="227.417"/>
<use xlink:href="#glyph0-18" x="175.278013" y="227.417"/>
<use xlink:href="#glyph0-16" x="179.152468" y="227.417"/>
<use xlink:href="#glyph0-14" x="184.133768" y="227.417"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="194.376317" y="227.417"/>
<use xlink:href="#glyph0-9" x="198.804693" y="227.417"/>
<use xlink:href="#glyph0-10" x="201.572303" y="227.417"/>
<use xlink:href="#glyph0-5" x="189.947941" y="227.417"/>
<use xlink:href="#glyph0-9" x="194.376317" y="227.417"/>
<use xlink:href="#glyph0-10" x="197.143927" y="227.417"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-47" x="136.979" y="247.343"/>

Before

Width:  |  Height:  |  Size: 69 KiB

After

Width:  |  Height:  |  Size: 69 KiB

View File

@ -4,6 +4,7 @@
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage[ngerman]{babel}
\begin{document}
\thispagestyle{empty}
@ -12,7 +13,7 @@
\item passierte Tomaten, Möhren und Erbsen dazugeben und aufkochen
\item mit Kräutern und Gewürzen abschmecken
\item aus Milch, Salz und Mehl eine Béchamelsauce herstellen
\item in einer Auflaufform abwechselnd Béchamelsauce, Nudelplatten und Gemüsesoße stapeln
\item in einer Auflaufform abwechselnd Béchamelsauce, Nudelplatten und Gemüse\-soße stapeln
\item in Scheiben geschnittenen Mozzarella darauf verteilen und im Ofen backen
\end{enumerate}

View File

@ -4,6 +4,7 @@
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage[ngerman]{babel}
\begin{document}
\thispagestyle{empty}

View File

@ -39,107 +39,101 @@
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 7.328125 -2.40625 L 7.328125 -2.71875 L 6.109375 -2.6875 C 5.71875 -2.6875 4.859375 -2.6875 4.5 -2.71875 L 4.5 -2.40625 L 4.828125 -2.40625 C 5.71875 -2.40625 5.75 -2.296875 5.75 -1.9375 L 5.75 -1.296875 C 5.75 -0.171875 4.484375 -0.09375 4.203125 -0.09375 C 3.5625 -0.09375 1.578125 -0.4375 1.578125 -3.40625 C 1.578125 -6.390625 3.546875 -6.71875 4.140625 -6.71875 C 5.21875 -6.71875 6.125 -5.828125 6.3125 -4.359375 C 6.34375 -4.21875 6.34375 -4.1875 6.484375 -4.1875 C 6.640625 -4.1875 6.640625 -4.21875 6.640625 -4.421875 L 6.640625 -6.78125 C 6.640625 -6.953125 6.640625 -7.03125 6.53125 -7.03125 C 6.484375 -7.03125 6.453125 -7.03125 6.375 -6.90625 L 5.875 -6.171875 C 5.546875 -6.484375 5.015625 -7.03125 4.03125 -7.03125 C 2.171875 -7.03125 0.5625 -5.453125 0.5625 -3.40625 C 0.5625 -1.359375 2.15625 0.21875 4.046875 0.21875 C 4.78125 0.21875 5.578125 -0.046875 5.90625 -0.625 C 6.046875 -0.40625 6.4375 -0.015625 6.546875 -0.015625 C 6.640625 -0.015625 6.640625 -0.09375 6.640625 -0.234375 L 6.640625 -1.96875 C 6.640625 -2.359375 6.671875 -2.40625 7.328125 -2.40625 Z M 7.328125 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 2.375 -6.03125 C 2.375 -6.265625 2.15625 -6.5 1.890625 -6.5 C 1.578125 -6.5 1.40625 -6.25 1.40625 -6.03125 C 1.40625 -5.78125 1.609375 -5.546875 1.890625 -5.546875 C 2.1875 -5.546875 2.375 -5.796875 2.375 -6.03125 Z M 4.140625 -6.03125 C 4.140625 -6.265625 3.9375 -6.5 3.671875 -6.5 C 3.359375 -6.5 3.1875 -6.25 3.1875 -6.03125 C 3.1875 -5.78125 3.390625 -5.546875 3.65625 -5.546875 C 3.96875 -5.546875 4.140625 -5.796875 4.140625 -6.03125 Z M 4.140625 -6.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 6.21875 -4.953125 C 6.21875 -5.9375 5.234375 -6.8125 3.875 -6.8125 L 0.34375 -6.8125 L 0.34375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.375 -6.390625 1.375 -6.03125 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.4375 -0.03125 1.8125 -0.03125 C 2.1875 -0.03125 2.9375 -0.03125 3.296875 0 L 3.296875 -0.3125 L 3.046875 -0.3125 C 2.28125 -0.3125 2.265625 -0.421875 2.265625 -0.78125 L 2.265625 -3.15625 L 3.953125 -3.15625 C 5.140625 -3.15625 6.21875 -3.953125 6.21875 -4.953125 Z M 5.1875 -4.953125 C 5.1875 -4.484375 5.1875 -3.40625 3.609375 -3.40625 L 2.234375 -3.40625 L 2.234375 -6.09375 C 2.234375 -6.4375 2.25 -6.5 2.71875 -6.5 L 3.609375 -6.5 C 5.1875 -6.5 5.1875 -5.4375 5.1875 -4.953125 Z M 5.1875 -4.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-16">
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-17">
<path style="stroke:none;" d="M 6.828125 -4.5 L 6.640625 -6.75 L 0.546875 -6.75 L 0.359375 -4.5 L 0.609375 -4.5 C 0.75 -6.109375 0.890625 -6.4375 2.40625 -6.4375 C 2.578125 -6.4375 2.84375 -6.4375 2.9375 -6.421875 C 3.15625 -6.375 3.15625 -6.265625 3.15625 -6.046875 L 3.15625 -0.78125 C 3.15625 -0.453125 3.15625 -0.3125 2.109375 -0.3125 L 1.703125 -0.3125 L 1.703125 0 C 2.109375 -0.03125 3.125 -0.03125 3.59375 -0.03125 C 4.046875 -0.03125 5.078125 -0.03125 5.484375 0 L 5.484375 -0.3125 L 5.078125 -0.3125 C 4.03125 -0.3125 4.03125 -0.453125 4.03125 -0.78125 L 4.03125 -6.046875 C 4.03125 -6.234375 4.03125 -6.375 4.21875 -6.421875 C 4.328125 -6.4375 4.59375 -6.4375 4.78125 -6.4375 C 6.296875 -6.4375 6.4375 -6.109375 6.578125 -4.5 Z M 6.828125 -4.5 "/>
</symbol>
<symbol overflow="visible" id="glyph1-18">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-19">
<path style="stroke:none;" d="M 8.765625 0 L 8.765625 -0.3125 L 8.515625 -0.3125 C 7.75 -0.3125 7.734375 -0.421875 7.734375 -0.78125 L 7.734375 -6.03125 C 7.734375 -6.390625 7.75 -6.5 8.515625 -6.5 L 8.765625 -6.5 L 8.765625 -6.8125 L 7.078125 -6.8125 C 6.8125 -6.8125 6.8125 -6.796875 6.75 -6.625 L 4.5625 -1 L 2.40625 -6.59375 C 2.3125 -6.8125 2.28125 -6.8125 2.046875 -6.8125 L 0.375 -6.8125 L 0.375 -6.5 L 0.609375 -6.5 C 1.375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -1.046875 C 1.390625 -0.78125 1.390625 -0.3125 0.375 -0.3125 L 0.375 0 L 1.53125 -0.03125 L 2.703125 0 L 2.703125 -0.3125 C 1.671875 -0.3125 1.671875 -0.78125 1.671875 -1.046875 L 1.671875 -6.421875 L 1.6875 -6.421875 L 4.09375 -0.21875 C 4.140625 -0.09375 4.1875 0 4.28125 0 C 4.390625 0 4.421875 -0.078125 4.46875 -0.1875 L 6.921875 -6.5 L 6.921875 -0.78125 C 6.921875 -0.421875 6.90625 -0.3125 6.140625 -0.3125 L 5.90625 -0.3125 L 5.90625 0 C 6.265625 -0.03125 6.953125 -0.03125 7.34375 -0.03125 C 7.71875 -0.03125 8.390625 -0.03125 8.765625 0 Z M 8.765625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-20">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-21">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-22">
<path style="stroke:none;" d="M 6.5 -2.578125 L 6.25 -2.578125 C 6 -1.03125 5.765625 -0.3125 4.0625 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -3.375 L 3.140625 -3.375 C 4.109375 -3.375 4.21875 -3.046875 4.21875 -2.203125 L 4.46875 -2.203125 L 4.46875 -4.84375 L 4.21875 -4.84375 C 4.21875 -3.984375 4.109375 -3.671875 3.140625 -3.671875 L 2.25 -3.671875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 4.015625 -6.46875 C 5.546875 -6.46875 5.8125 -5.921875 5.96875 -4.53125 L 6.21875 -4.53125 L 5.9375 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 6.078125 0 Z M 6.5 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-23">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-24">
<path style="stroke:none;" d="M 5.578125 -2.65625 L 5.328125 -2.65625 C 5.25 -1.28125 5.0625 -0.34375 3.21875 -0.34375 L 1.578125 -0.34375 L 5.453125 -6.453125 C 5.515625 -6.5625 5.515625 -6.578125 5.515625 -6.65625 C 5.515625 -6.8125 5.46875 -6.8125 5.265625 -6.8125 L 0.796875 -6.8125 L 0.6875 -4.5625 L 0.9375 -4.5625 C 1 -5.6875 1.3125 -6.5 2.9375 -6.5 L 4.5 -6.5 L 0.625 -0.375 C 0.5625 -0.265625 0.5625 -0.25 0.5625 -0.171875 C 0.5625 0 0.609375 0 0.8125 0 L 5.40625 0 Z M 5.578125 -2.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-25">
<path style="stroke:none;" d="M 7.015625 -3.984375 L 7.015625 -4.296875 C 6.78125 -4.28125 6.5 -4.265625 6.28125 -4.265625 L 5.359375 -4.296875 L 5.359375 -3.984375 C 5.71875 -3.984375 5.9375 -3.796875 5.9375 -3.515625 C 5.9375 -3.453125 5.9375 -3.421875 5.875 -3.296875 L 4.96875 -0.75 L 3.984375 -3.53125 C 3.953125 -3.65625 3.9375 -3.671875 3.9375 -3.71875 C 3.9375 -3.984375 4.328125 -3.984375 4.53125 -3.984375 L 4.53125 -4.296875 L 3.484375 -4.265625 C 3.1875 -4.265625 2.90625 -4.28125 2.609375 -4.296875 L 2.609375 -3.984375 C 2.96875 -3.984375 3.125 -3.96875 3.234375 -3.84375 C 3.28125 -3.78125 3.390625 -3.484375 3.453125 -3.296875 L 2.609375 -0.875 L 1.65625 -3.53125 C 1.609375 -3.65625 1.609375 -3.671875 1.609375 -3.71875 C 1.609375 -3.984375 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 L 1.109375 -4.265625 L 0.171875 -4.296875 L 0.171875 -3.984375 C 0.671875 -3.984375 0.796875 -3.953125 0.921875 -3.640625 L 2.171875 -0.109375 C 2.21875 0.03125 2.25 0.109375 2.375 0.109375 C 2.515625 0.109375 2.53125 0.046875 2.578125 -0.09375 L 3.59375 -2.90625 L 4.609375 -0.078125 C 4.640625 0.03125 4.671875 0.109375 4.8125 0.109375 C 4.9375 0.109375 4.96875 0.015625 5 -0.078125 L 6.171875 -3.34375 C 6.34375 -3.84375 6.65625 -3.984375 7.015625 -3.984375 Z M 7.015625 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-26">
<path style="stroke:none;" d="M 7.34375 0 L 7.34375 -0.3125 C 6.796875 -0.3125 6.59375 -0.34375 6.296875 -0.78125 L 3.984375 -4.171875 L 5.78125 -5.90625 C 5.859375 -5.984375 6.390625 -6.484375 7.203125 -6.5 L 7.203125 -6.8125 C 6.9375 -6.78125 6.625 -6.78125 6.34375 -6.78125 C 5.984375 -6.78125 5.421875 -6.78125 5.078125 -6.8125 L 5.078125 -6.5 C 5.484375 -6.484375 5.546875 -6.265625 5.546875 -6.171875 C 5.546875 -6.015625 5.4375 -5.90625 5.359375 -5.84375 L 2.25 -2.859375 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.03125 -6.5 L 3.265625 -6.5 L 3.265625 -6.8125 C 2.921875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.171875 -0.03125 2.921875 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.03125 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -2.515625 L 3.40625 -3.625 L 5.203125 -0.953125 C 5.265625 -0.859375 5.359375 -0.734375 5.359375 -0.609375 C 5.359375 -0.3125 4.96875 -0.3125 4.765625 -0.3125 L 4.765625 0 C 5.109375 -0.03125 5.8125 -0.03125 6.1875 -0.03125 Z M 7.34375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-27">
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-28">
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-29">
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-30">
<path style="stroke:none;" d="M 7.1875 -3.375 C 7.1875 -5.40625 5.6875 -7.03125 3.875 -7.03125 C 2.078125 -7.03125 0.5625 -5.4375 0.5625 -3.375 C 0.5625 -1.328125 2.09375 0.21875 3.875 0.21875 C 5.6875 0.21875 7.1875 -1.359375 7.1875 -3.375 Z M 6.15625 -3.515625 C 6.15625 -0.875 4.796875 -0.046875 3.875 -0.046875 C 2.921875 -0.046875 1.578125 -0.921875 1.578125 -3.515625 C 1.578125 -6.09375 3.046875 -6.78125 3.875 -6.78125 C 4.734375 -6.78125 6.15625 -6.078125 6.15625 -3.515625 Z M 6.15625 -3.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-31">
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-32">
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-33">
<path style="stroke:none;" d="M 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 Z M 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 L 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 Z M 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 Z M 5.5 -1.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-34">
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-35">
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-36">
<path style="stroke:none;" d="M 7.296875 -0.875 C 7.296875 -0.9375 7.296875 -1.046875 7.171875 -1.046875 C 7.0625 -1.046875 7.0625 -0.953125 7.046875 -0.890625 C 6.984375 -0.171875 6.640625 0 6.390625 0 C 5.90625 0 5.828125 -0.515625 5.6875 -1.4375 L 5.546875 -2.234375 C 5.375 -2.875 4.890625 -3.203125 4.34375 -3.390625 C 5.296875 -3.625 6.078125 -4.234375 6.078125 -5.015625 C 6.078125 -5.96875 4.9375 -6.8125 3.484375 -6.8125 L 0.34375 -6.8125 L 0.34375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.375 -6.390625 1.375 -6.03125 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.1875 -0.03125 2.90625 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.296875 L 3.375 -3.296875 C 3.53125 -3.296875 3.953125 -3.296875 4.3125 -2.953125 C 4.6875 -2.609375 4.6875 -2.296875 4.6875 -1.625 C 4.6875 -0.984375 4.6875 -0.578125 5.09375 -0.203125 C 5.5 0.15625 6.046875 0.21875 6.34375 0.21875 C 7.125 0.21875 7.296875 -0.59375 7.296875 -0.875 Z M 5.046875 -5.015625 C 5.046875 -4.328125 4.8125 -3.515625 3.34375 -3.515625 L 2.234375 -3.515625 L 2.234375 -6.09375 C 2.234375 -6.328125 2.234375 -6.453125 2.453125 -6.484375 C 2.546875 -6.5 2.84375 -6.5 3.046875 -6.5 C 3.9375 -6.5 5.046875 -6.453125 5.046875 -5.015625 Z M 5.046875 -5.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-37">
<path style="stroke:none;" d="M 4.6875 -1.640625 L 4.6875 -1.953125 L 3.703125 -1.953125 L 3.703125 -6.484375 C 3.703125 -6.6875 3.703125 -6.75 3.53125 -6.75 C 3.453125 -6.75 3.421875 -6.75 3.34375 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 L 2.9375 -1.640625 L 2.9375 -0.78125 C 2.9375 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.96875 -0.3125 L 1.96875 0 C 2.375 -0.03125 2.890625 -0.03125 3.3125 -0.03125 C 3.734375 -0.03125 4.25 -0.03125 4.671875 0 L 4.671875 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.703125 -0.421875 3.703125 -0.78125 L 3.703125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.671875 Z M 2.984375 -1.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-38">
<path style="stroke:none;" d="M 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 Z M 4.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-39">
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 4 -1.859375 L 3.75 -1.859375 C 3.65625 -0.6875 3.453125 -0.25 2.296875 -0.25 L 1.109375 -0.25 L 3.890625 -4 C 3.984375 -4.109375 3.984375 -4.125 3.984375 -4.171875 C 3.984375 -4.296875 3.890625 -4.296875 3.71875 -4.296875 L 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.734375 -3.703125 0.921875 -4.078125 2.015625 -4.078125 L 3.15625 -4.078125 L 0.375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.828125 0 Z M 4 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-40">
<path style="stroke:none;" d="M 4.46875 -2 C 4.46875 -3.1875 3.65625 -4.1875 2.578125 -4.1875 C 2.109375 -4.1875 1.671875 -4.03125 1.3125 -3.671875 L 1.3125 -5.625 C 1.515625 -5.5625 1.84375 -5.5 2.15625 -5.5 C 3.390625 -5.5 4.09375 -6.40625 4.09375 -6.53125 C 4.09375 -6.59375 4.0625 -6.640625 3.984375 -6.640625 C 3.984375 -6.640625 3.953125 -6.640625 3.90625 -6.609375 C 3.703125 -6.515625 3.21875 -6.3125 2.546875 -6.3125 C 2.15625 -6.3125 1.6875 -6.390625 1.21875 -6.59375 C 1.140625 -6.625 1.109375 -6.625 1.109375 -6.625 C 1 -6.625 1 -6.546875 1 -6.390625 L 1 -3.4375 C 1 -3.265625 1 -3.1875 1.140625 -3.1875 C 1.21875 -3.1875 1.234375 -3.203125 1.28125 -3.265625 C 1.390625 -3.421875 1.75 -3.96875 2.5625 -3.96875 C 3.078125 -3.96875 3.328125 -3.515625 3.40625 -3.328125 C 3.5625 -2.953125 3.59375 -2.578125 3.59375 -2.078125 C 3.59375 -1.71875 3.59375 -1.125 3.34375 -0.703125 C 3.109375 -0.3125 2.734375 -0.0625 2.28125 -0.0625 C 1.5625 -0.0625 0.984375 -0.59375 0.8125 -1.171875 C 0.84375 -1.171875 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.890625 1.3125 -2.140625 0.984375 -2.140625 C 0.84375 -2.140625 0.5 -2.0625 0.5 -1.609375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.453125 0.21875 4.46875 -0.734375 4.46875 -2 Z M 4.46875 -2 "/>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-41">
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 7.328125 -2.40625 L 7.328125 -2.71875 L 6.109375 -2.6875 C 5.71875 -2.6875 4.859375 -2.6875 4.5 -2.71875 L 4.5 -2.40625 L 4.828125 -2.40625 C 5.71875 -2.40625 5.75 -2.296875 5.75 -1.9375 L 5.75 -1.296875 C 5.75 -0.171875 4.484375 -0.09375 4.203125 -0.09375 C 3.5625 -0.09375 1.578125 -0.4375 1.578125 -3.40625 C 1.578125 -6.390625 3.546875 -6.71875 4.140625 -6.71875 C 5.21875 -6.71875 6.125 -5.828125 6.3125 -4.359375 C 6.34375 -4.21875 6.34375 -4.1875 6.484375 -4.1875 C 6.640625 -4.1875 6.640625 -4.21875 6.640625 -4.421875 L 6.640625 -6.78125 C 6.640625 -6.953125 6.640625 -7.03125 6.53125 -7.03125 C 6.484375 -7.03125 6.453125 -7.03125 6.375 -6.90625 L 5.875 -6.171875 C 5.546875 -6.484375 5.015625 -7.03125 4.03125 -7.03125 C 2.171875 -7.03125 0.5625 -5.453125 0.5625 -3.40625 C 0.5625 -1.359375 2.15625 0.21875 4.046875 0.21875 C 4.78125 0.21875 5.578125 -0.046875 5.90625 -0.625 C 6.046875 -0.40625 6.4375 -0.015625 6.546875 -0.015625 C 6.640625 -0.015625 6.640625 -0.09375 6.640625 -0.234375 L 6.640625 -1.96875 C 6.640625 -2.359375 6.671875 -2.40625 7.328125 -2.40625 Z M 7.328125 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-16">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 2.375 -6.03125 C 2.375 -6.265625 2.15625 -6.5 1.890625 -6.5 C 1.578125 -6.5 1.40625 -6.25 1.40625 -6.03125 C 1.40625 -5.78125 1.609375 -5.546875 1.890625 -5.546875 C 2.1875 -5.546875 2.375 -5.796875 2.375 -6.03125 Z M 4.140625 -6.03125 C 4.140625 -6.265625 3.9375 -6.5 3.671875 -6.5 C 3.359375 -6.5 3.1875 -6.25 3.1875 -6.03125 C 3.1875 -5.78125 3.390625 -5.546875 3.65625 -5.546875 C 3.96875 -5.546875 4.140625 -5.796875 4.140625 -6.03125 Z M 4.140625 -6.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-17">
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-18">
<path style="stroke:none;" d="M 6.21875 -4.953125 C 6.21875 -5.9375 5.234375 -6.8125 3.875 -6.8125 L 0.34375 -6.8125 L 0.34375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.375 -6.390625 1.375 -6.03125 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.4375 -0.03125 1.8125 -0.03125 C 2.1875 -0.03125 2.9375 -0.03125 3.296875 0 L 3.296875 -0.3125 L 3.046875 -0.3125 C 2.28125 -0.3125 2.265625 -0.421875 2.265625 -0.78125 L 2.265625 -3.15625 L 3.953125 -3.15625 C 5.140625 -3.15625 6.21875 -3.953125 6.21875 -4.953125 Z M 5.1875 -4.953125 C 5.1875 -4.484375 5.1875 -3.40625 3.609375 -3.40625 L 2.234375 -3.40625 L 2.234375 -6.09375 C 2.234375 -6.4375 2.25 -6.5 2.71875 -6.5 L 3.609375 -6.5 C 5.1875 -6.5 5.1875 -5.4375 5.1875 -4.953125 Z M 5.1875 -4.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-19">
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-20">
<path style="stroke:none;" d="M 6.828125 -4.5 L 6.640625 -6.75 L 0.546875 -6.75 L 0.359375 -4.5 L 0.609375 -4.5 C 0.75 -6.109375 0.890625 -6.4375 2.40625 -6.4375 C 2.578125 -6.4375 2.84375 -6.4375 2.9375 -6.421875 C 3.15625 -6.375 3.15625 -6.265625 3.15625 -6.046875 L 3.15625 -0.78125 C 3.15625 -0.453125 3.15625 -0.3125 2.109375 -0.3125 L 1.703125 -0.3125 L 1.703125 0 C 2.109375 -0.03125 3.125 -0.03125 3.59375 -0.03125 C 4.046875 -0.03125 5.078125 -0.03125 5.484375 0 L 5.484375 -0.3125 L 5.078125 -0.3125 C 4.03125 -0.3125 4.03125 -0.453125 4.03125 -0.78125 L 4.03125 -6.046875 C 4.03125 -6.234375 4.03125 -6.375 4.21875 -6.421875 C 4.328125 -6.4375 4.59375 -6.4375 4.78125 -6.4375 C 6.296875 -6.4375 6.4375 -6.109375 6.578125 -4.5 Z M 6.828125 -4.5 "/>
</symbol>
<symbol overflow="visible" id="glyph1-21">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-22">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-23">
<path style="stroke:none;" d="M 6.5 -2.578125 L 6.25 -2.578125 C 6 -1.03125 5.765625 -0.3125 4.0625 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -3.375 L 3.140625 -3.375 C 4.109375 -3.375 4.21875 -3.046875 4.21875 -2.203125 L 4.46875 -2.203125 L 4.46875 -4.84375 L 4.21875 -4.84375 C 4.21875 -3.984375 4.109375 -3.671875 3.140625 -3.671875 L 2.25 -3.671875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 4.015625 -6.46875 C 5.546875 -6.46875 5.8125 -5.921875 5.96875 -4.53125 L 6.21875 -4.53125 L 5.9375 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 6.078125 0 Z M 6.5 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-24">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-25">
<path style="stroke:none;" d="M 5.578125 -2.65625 L 5.328125 -2.65625 C 5.25 -1.28125 5.0625 -0.34375 3.21875 -0.34375 L 1.578125 -0.34375 L 5.453125 -6.453125 C 5.515625 -6.5625 5.515625 -6.578125 5.515625 -6.65625 C 5.515625 -6.8125 5.46875 -6.8125 5.265625 -6.8125 L 0.796875 -6.8125 L 0.6875 -4.5625 L 0.9375 -4.5625 C 1 -5.6875 1.3125 -6.5 2.9375 -6.5 L 4.5 -6.5 L 0.625 -0.375 C 0.5625 -0.265625 0.5625 -0.25 0.5625 -0.171875 C 0.5625 0 0.609375 0 0.8125 0 L 5.40625 0 Z M 5.578125 -2.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-26">
<path style="stroke:none;" d="M 7.015625 -3.984375 L 7.015625 -4.296875 C 6.78125 -4.28125 6.5 -4.265625 6.28125 -4.265625 L 5.359375 -4.296875 L 5.359375 -3.984375 C 5.71875 -3.984375 5.9375 -3.796875 5.9375 -3.515625 C 5.9375 -3.453125 5.9375 -3.421875 5.875 -3.296875 L 4.96875 -0.75 L 3.984375 -3.53125 C 3.953125 -3.65625 3.9375 -3.671875 3.9375 -3.71875 C 3.9375 -3.984375 4.328125 -3.984375 4.53125 -3.984375 L 4.53125 -4.296875 L 3.484375 -4.265625 C 3.1875 -4.265625 2.90625 -4.28125 2.609375 -4.296875 L 2.609375 -3.984375 C 2.96875 -3.984375 3.125 -3.96875 3.234375 -3.84375 C 3.28125 -3.78125 3.390625 -3.484375 3.453125 -3.296875 L 2.609375 -0.875 L 1.65625 -3.53125 C 1.609375 -3.65625 1.609375 -3.671875 1.609375 -3.71875 C 1.609375 -3.984375 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 L 1.109375 -4.265625 L 0.171875 -4.296875 L 0.171875 -3.984375 C 0.671875 -3.984375 0.796875 -3.953125 0.921875 -3.640625 L 2.171875 -0.109375 C 2.21875 0.03125 2.25 0.109375 2.375 0.109375 C 2.515625 0.109375 2.53125 0.046875 2.578125 -0.09375 L 3.59375 -2.90625 L 4.609375 -0.078125 C 4.640625 0.03125 4.671875 0.109375 4.8125 0.109375 C 4.9375 0.109375 4.96875 0.015625 5 -0.078125 L 6.171875 -3.34375 C 6.34375 -3.84375 6.65625 -3.984375 7.015625 -3.984375 Z M 7.015625 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-27">
<path style="stroke:none;" d="M 7.34375 0 L 7.34375 -0.3125 C 6.796875 -0.3125 6.59375 -0.34375 6.296875 -0.78125 L 3.984375 -4.171875 L 5.78125 -5.90625 C 5.859375 -5.984375 6.390625 -6.484375 7.203125 -6.5 L 7.203125 -6.8125 C 6.9375 -6.78125 6.625 -6.78125 6.34375 -6.78125 C 5.984375 -6.78125 5.421875 -6.78125 5.078125 -6.8125 L 5.078125 -6.5 C 5.484375 -6.484375 5.546875 -6.265625 5.546875 -6.171875 C 5.546875 -6.015625 5.4375 -5.90625 5.359375 -5.84375 L 2.25 -2.859375 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.03125 -6.5 L 3.265625 -6.5 L 3.265625 -6.8125 C 2.921875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.171875 -0.03125 2.921875 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.03125 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -2.515625 L 3.40625 -3.625 L 5.203125 -0.953125 C 5.265625 -0.859375 5.359375 -0.734375 5.359375 -0.609375 C 5.359375 -0.3125 4.96875 -0.3125 4.765625 -0.3125 L 4.765625 0 C 5.109375 -0.03125 5.8125 -0.03125 6.1875 -0.03125 Z M 7.34375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-28">
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-29">
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-30">
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-31">
<path style="stroke:none;" d="M 7.1875 -3.375 C 7.1875 -5.40625 5.6875 -7.03125 3.875 -7.03125 C 2.078125 -7.03125 0.5625 -5.4375 0.5625 -3.375 C 0.5625 -1.328125 2.09375 0.21875 3.875 0.21875 C 5.6875 0.21875 7.1875 -1.359375 7.1875 -3.375 Z M 6.15625 -3.515625 C 6.15625 -0.875 4.796875 -0.046875 3.875 -0.046875 C 2.921875 -0.046875 1.578125 -0.921875 1.578125 -3.515625 C 1.578125 -6.09375 3.046875 -6.78125 3.875 -6.78125 C 4.734375 -6.78125 6.15625 -6.078125 6.15625 -3.515625 Z M 6.15625 -3.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-32">
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-33">
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-34">
<path style="stroke:none;" d="M 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 Z M 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 L 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 Z M 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 Z M 5.5 -1.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-35">
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-36">
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-37">
<path style="stroke:none;" d="M 7.296875 -0.875 C 7.296875 -0.9375 7.296875 -1.046875 7.171875 -1.046875 C 7.0625 -1.046875 7.0625 -0.953125 7.046875 -0.890625 C 6.984375 -0.171875 6.640625 0 6.390625 0 C 5.90625 0 5.828125 -0.515625 5.6875 -1.4375 L 5.546875 -2.234375 C 5.375 -2.875 4.890625 -3.203125 4.34375 -3.390625 C 5.296875 -3.625 6.078125 -4.234375 6.078125 -5.015625 C 6.078125 -5.96875 4.9375 -6.8125 3.484375 -6.8125 L 0.34375 -6.8125 L 0.34375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.375 -6.390625 1.375 -6.03125 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.1875 -0.03125 2.90625 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.296875 L 3.375 -3.296875 C 3.53125 -3.296875 3.953125 -3.296875 4.3125 -2.953125 C 4.6875 -2.609375 4.6875 -2.296875 4.6875 -1.625 C 4.6875 -0.984375 4.6875 -0.578125 5.09375 -0.203125 C 5.5 0.15625 6.046875 0.21875 6.34375 0.21875 C 7.125 0.21875 7.296875 -0.59375 7.296875 -0.875 Z M 5.046875 -5.015625 C 5.046875 -4.328125 4.8125 -3.515625 3.34375 -3.515625 L 2.234375 -3.515625 L 2.234375 -6.09375 C 2.234375 -6.328125 2.234375 -6.453125 2.453125 -6.484375 C 2.546875 -6.5 2.84375 -6.5 3.046875 -6.5 C 3.9375 -6.5 5.046875 -6.453125 5.046875 -5.015625 Z M 5.046875 -5.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-38">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-39">
<path style="stroke:none;" d="M 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 Z M 4.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-40">
<path style="stroke:none;" d="M 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 L 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 Z M 3.5625 -6.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-42">
<symbol overflow="visible" id="glyph1-41">
<path style="stroke:none;" d="M 6.265625 -6.328125 C 6.265625 -6.6875 5.90625 -7.03125 5.359375 -7.03125 C 4.765625 -7.03125 4.328125 -6.65625 4.28125 -6.609375 C 3.984375 -6.984375 3.421875 -7.03125 3.15625 -7.03125 C 2.21875 -7.03125 1.0625 -6.515625 1.0625 -5.4375 L 1.0625 -4.296875 L 0.265625 -4.296875 L 0.265625 -3.984375 L 1.0625 -3.984375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.390625 -0.03125 L 2.5 0 L 2.5 -0.3125 C 1.828125 -0.3125 1.71875 -0.3125 1.71875 -0.75 L 1.71875 -3.984375 L 3.8125 -3.984375 L 3.8125 -0.75 C 3.8125 -0.3125 3.703125 -0.3125 3.03125 -0.3125 L 3.03125 0 L 4.171875 -0.03125 C 4.5625 -0.03125 5.03125 -0.03125 5.4375 0 L 5.4375 -0.3125 L 5.21875 -0.3125 C 4.484375 -0.3125 4.46875 -0.421875 4.46875 -0.78125 L 4.46875 -3.984375 L 5.609375 -3.984375 L 5.609375 -4.296875 L 4.4375 -4.296875 L 4.4375 -5.453125 C 4.4375 -6.34375 4.921875 -6.8125 5.359375 -6.8125 C 5.390625 -6.8125 5.546875 -6.8125 5.6875 -6.734375 C 5.578125 -6.703125 5.390625 -6.5625 5.390625 -6.3125 C 5.390625 -6.09375 5.546875 -5.890625 5.828125 -5.890625 C 6.109375 -5.890625 6.265625 -6.09375 6.265625 -6.328125 Z M 3.921875 -6.625 C 3.765625 -6.59375 3.5625 -6.453125 3.5625 -6.1875 C 3.5625 -6.125 3.5625 -5.875 3.84375 -5.78125 C 3.8125 -5.65625 3.8125 -5.5625 3.8125 -5.4375 L 3.8125 -4.296875 L 1.6875 -4.296875 L 1.6875 -5.421875 C 1.6875 -6.390625 2.5 -6.8125 3.15625 -6.8125 C 3.640625 -6.8125 3.921875 -6.625 3.921875 -6.625 Z M 3.921875 -6.625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-43">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
@ -171,189 +165,187 @@
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="9.709" y="19.826"/>
<use xlink:href="#glyph1-4" x="17.526652" y="19.826"/>
<use xlink:href="#glyph1-11" x="21.955028" y="19.826"/>
<use xlink:href="#glyph1-11" x="18.841715" y="19.826"/>
<use xlink:href="#glyph1-12" x="23.823015" y="19.826"/>
<use xlink:href="#glyph1-12" x="28.251391" y="19.826"/>
<use xlink:href="#glyph1-7" x="32.679767" y="19.826"/>
<use xlink:href="#glyph1-13" x="37.661067" y="19.826"/>
<use xlink:href="#glyph1-4" x="41.563417" y="19.826"/>
<use xlink:href="#glyph1-5" x="45.991793" y="19.826"/>
<use xlink:href="#glyph1-5" x="48.759403" y="19.826"/>
<use xlink:href="#glyph1-7" x="51.527014" y="19.826"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="29.97791" y="19.826"/>
<use xlink:href="#glyph1-13" x="35.51313" y="19.826"/>
<use xlink:href="#glyph1-4" x="39.443376" y="19.826"/>
<use xlink:href="#glyph0-1" x="-0.254" y="31.781"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="20.917" y="31.781"/>
<use xlink:href="#glyph1-14" x="9.709" y="31.781"/>
<use xlink:href="#glyph1-4" x="17.526652" y="31.781"/>
<use xlink:href="#glyph1-15" x="21.955028" y="31.781"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-14" x="31.626" y="31.781"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="38.127593" y="31.781"/>
<use xlink:href="#glyph1-13" x="43.108893" y="31.781"/>
<use xlink:href="#glyph1-13" x="47.039138" y="31.781"/>
<use xlink:href="#glyph1-15" x="50.969384" y="31.781"/>
<use xlink:href="#glyph1-4" x="53.736994" y="31.781"/>
<use xlink:href="#glyph1-16" x="58.16537" y="31.781"/>
<use xlink:href="#glyph1-8" x="62.067721" y="31.781"/>
<use xlink:href="#glyph1-4" x="65.942176" y="31.781"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-17" x="73.688097" y="31.781"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-18" x="80.056191" y="31.781"/>
<use xlink:href="#glyph1-11" x="85.037491" y="31.781"/>
<use xlink:href="#glyph1-7" x="93.339326" y="31.781"/>
<use xlink:href="#glyph1-8" x="98.320626" y="31.781"/>
<use xlink:href="#glyph1-4" x="102.195081" y="31.781"/>
<use xlink:href="#glyph1-9" x="106.623457" y="31.781"/>
<use xlink:href="#glyph1-16" x="29.97791" y="31.781"/>
<use xlink:href="#glyph1-17" x="35.51313" y="31.781"/>
<use xlink:href="#glyph1-4" x="39.443376" y="31.781"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="20.917" y="43.737"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="31.626" y="43.737"/>
<use xlink:href="#glyph1-20" x="40.758715" y="43.737"/>
<use xlink:href="#glyph1-21" x="45.740015" y="43.737"/>
<use xlink:href="#glyph1-16" x="51.275236" y="43.737"/>
<use xlink:href="#glyph1-4" x="55.177586" y="43.737"/>
<use xlink:href="#glyph1-9" x="59.605962" y="43.737"/>
<use xlink:href="#glyph1-18" x="31.626" y="43.737"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="38.127593" y="43.737"/>
<use xlink:href="#glyph1-17" x="43.108893" y="43.737"/>
<use xlink:href="#glyph1-17" x="47.039138" y="43.737"/>
<use xlink:href="#glyph1-19" x="50.969384" y="43.737"/>
<use xlink:href="#glyph1-4" x="53.736994" y="43.737"/>
<use xlink:href="#glyph1-13" x="58.16537" y="43.737"/>
<use xlink:href="#glyph1-8" x="62.067721" y="43.737"/>
<use xlink:href="#glyph1-4" x="65.942176" y="43.737"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-20" x="73.688097" y="43.737"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="80.056191" y="43.737"/>
<use xlink:href="#glyph1-15" x="85.037491" y="43.737"/>
<use xlink:href="#glyph1-7" x="93.339326" y="43.737"/>
<use xlink:href="#glyph1-8" x="98.320626" y="43.737"/>
<use xlink:href="#glyph1-4" x="102.195081" y="43.737"/>
<use xlink:href="#glyph1-9" x="106.623457" y="43.737"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="20.917" y="55.692"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-22" x="31.626" y="55.692"/>
<use xlink:href="#glyph1-16" x="38.406546" y="55.692"/>
<use xlink:href="#glyph1-23" x="42.308896" y="55.692"/>
<use xlink:href="#glyph1-13" x="47.844117" y="55.692"/>
<use xlink:href="#glyph1-4" x="51.774362" y="55.692"/>
<use xlink:href="#glyph1-9" x="56.202738" y="55.692"/>
<use xlink:href="#glyph1-10" x="31.626" y="55.692"/>
<use xlink:href="#glyph1-21" x="40.758715" y="55.692"/>
<use xlink:href="#glyph1-22" x="45.740015" y="55.692"/>
<use xlink:href="#glyph1-13" x="51.275236" y="55.692"/>
<use xlink:href="#glyph1-4" x="55.177586" y="55.692"/>
<use xlink:href="#glyph1-9" x="59.605962" y="55.692"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="20.917" y="67.647"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-24" x="31.626" y="67.647"/>
<use xlink:href="#glyph1-25" x="37.714145" y="67.647"/>
<use xlink:href="#glyph1-15" x="44.909135" y="67.647"/>
<use xlink:href="#glyph1-4" x="47.676745" y="67.647"/>
<use xlink:href="#glyph1-23" x="52.105121" y="67.647"/>
<use xlink:href="#glyph1-23" x="31.626" y="67.647"/>
<use xlink:href="#glyph1-13" x="38.406546" y="67.647"/>
<use xlink:href="#glyph1-24" x="42.308896" y="67.647"/>
<use xlink:href="#glyph1-17" x="47.844117" y="67.647"/>
<use xlink:href="#glyph1-4" x="51.774362" y="67.647"/>
<use xlink:href="#glyph1-9" x="56.202738" y="67.647"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="57.919294" y="67.647"/>
<use xlink:href="#glyph1-5" x="62.34767" y="67.647"/>
<use xlink:href="#glyph1-9" x="65.11528" y="67.647"/>
<use xlink:href="#glyph2-1" x="20.917" y="79.602"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="-0.254" y="79.602"/>
<use xlink:href="#glyph1-25" x="31.626" y="79.602"/>
<use xlink:href="#glyph1-26" x="37.714145" y="79.602"/>
<use xlink:href="#glyph1-19" x="44.909135" y="79.602"/>
<use xlink:href="#glyph1-4" x="47.676745" y="79.602"/>
<use xlink:href="#glyph1-24" x="52.105121" y="79.602"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-26" x="9.709" y="79.602"/>
<use xlink:href="#glyph1-16" x="17.45791" y="79.602"/>
<use xlink:href="#glyph1-27" x="21.360261" y="79.602"/>
<use xlink:href="#glyph1-2" x="26.341561" y="79.602"/>
<use xlink:href="#glyph1-8" x="31.876781" y="79.602"/>
<use xlink:href="#glyph1-4" x="35.751236" y="79.602"/>
<use xlink:href="#glyph1-16" x="40.179612" y="79.602"/>
<use xlink:href="#glyph1-4" x="57.919294" y="79.602"/>
<use xlink:href="#glyph1-5" x="62.34767" y="79.602"/>
<use xlink:href="#glyph1-9" x="65.11528" y="79.602"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-28" x="18.896" y="91.557"/>
<use xlink:href="#glyph1-29" x="23.8773" y="91.557"/>
<use xlink:href="#glyph0-1" x="-0.254" y="91.557"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-30" x="31.62621" y="91.557"/>
<use xlink:href="#glyph1-16" x="39.375121" y="91.557"/>
<use xlink:href="#glyph1-4" x="43.277471" y="91.557"/>
<use xlink:href="#glyph1-31" x="47.705847" y="91.557"/>
<use xlink:href="#glyph1-7" x="52.687147" y="91.557"/>
<use xlink:href="#glyph1-9" x="57.668447" y="91.557"/>
<use xlink:href="#glyph1-18" x="63.203667" y="91.557"/>
<use xlink:href="#glyph1-27" x="9.709" y="91.557"/>
<use xlink:href="#glyph1-13" x="17.45791" y="91.557"/>
<use xlink:href="#glyph1-28" x="21.360261" y="91.557"/>
<use xlink:href="#glyph1-2" x="26.341561" y="91.557"/>
<use xlink:href="#glyph1-8" x="31.876781" y="91.557"/>
<use xlink:href="#glyph1-4" x="35.751236" y="91.557"/>
<use xlink:href="#glyph1-13" x="40.179612" y="91.557"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-32" x="18.896" y="103.513"/>
<use xlink:href="#glyph1-29" x="23.8773" y="103.513"/>
<use xlink:href="#glyph1-29" x="18.896" y="103.513"/>
<use xlink:href="#glyph1-30" x="23.8773" y="103.513"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-33" x="31.62621" y="103.513"/>
<use xlink:href="#glyph1-7" x="38.68272" y="103.513"/>
<use xlink:href="#glyph1-13" x="43.66402" y="103.513"/>
<use xlink:href="#glyph1-15" x="47.594266" y="103.513"/>
<use xlink:href="#glyph1-5" x="50.361876" y="103.513"/>
<use xlink:href="#glyph1-15" x="53.129486" y="103.513"/>
<use xlink:href="#glyph1-34" x="55.897096" y="103.513"/>
<use xlink:href="#glyph1-2" x="61.155357" y="103.513"/>
<use xlink:href="#glyph1-11" x="66.690577" y="103.513"/>
<use xlink:href="#glyph1-31" x="31.62621" y="103.513"/>
<use xlink:href="#glyph1-13" x="39.375121" y="103.513"/>
<use xlink:href="#glyph1-4" x="43.277471" y="103.513"/>
<use xlink:href="#glyph1-32" x="47.705847" y="103.513"/>
<use xlink:href="#glyph1-7" x="52.687147" y="103.513"/>
<use xlink:href="#glyph1-9" x="57.668447" y="103.513"/>
<use xlink:href="#glyph1-11" x="63.203667" y="103.513"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-35" x="18.896" y="115.468"/>
<use xlink:href="#glyph1-29" x="23.8773" y="115.468"/>
<use xlink:href="#glyph1-33" x="18.896" y="115.468"/>
<use xlink:href="#glyph1-30" x="23.8773" y="115.468"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-36" x="31.62621" y="115.468"/>
<use xlink:href="#glyph1-18" x="38.95968" y="115.468"/>
<use xlink:href="#glyph1-13" x="43.94098" y="115.468"/>
<use xlink:href="#glyph1-11" x="47.871226" y="115.468"/>
<use xlink:href="#glyph1-7" x="56.17306" y="115.468"/>
<use xlink:href="#glyph1-16" x="61.15436" y="115.468"/>
<use xlink:href="#glyph1-15" x="65.056711" y="115.468"/>
<use xlink:href="#glyph1-9" x="67.824321" y="115.468"/>
<use xlink:href="#glyph1-34" x="31.62621" y="115.468"/>
<use xlink:href="#glyph1-7" x="38.68272" y="115.468"/>
<use xlink:href="#glyph1-17" x="43.66402" y="115.468"/>
<use xlink:href="#glyph1-19" x="47.594266" y="115.468"/>
<use xlink:href="#glyph1-5" x="50.361876" y="115.468"/>
<use xlink:href="#glyph1-19" x="53.129486" y="115.468"/>
<use xlink:href="#glyph1-35" x="55.897096" y="115.468"/>
<use xlink:href="#glyph1-2" x="61.155357" y="115.468"/>
<use xlink:href="#glyph1-15" x="66.690577" y="115.468"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-37" x="18.896" y="127.423"/>
<use xlink:href="#glyph1-29" x="23.8773" y="127.423"/>
<use xlink:href="#glyph1-36" x="18.896" y="127.423"/>
<use xlink:href="#glyph1-30" x="23.8773" y="127.423"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-38" x="31.62621" y="127.423"/>
<use xlink:href="#glyph1-7" x="37.161431" y="127.423"/>
<use xlink:href="#glyph1-5" x="42.142731" y="127.423"/>
<use xlink:href="#glyph1-39" x="44.910341" y="127.423"/>
<use xlink:href="#glyph1-37" x="31.62621" y="127.423"/>
<use xlink:href="#glyph1-11" x="38.95968" y="127.423"/>
<use xlink:href="#glyph1-17" x="43.94098" y="127.423"/>
<use xlink:href="#glyph1-15" x="47.871226" y="127.423"/>
<use xlink:href="#glyph1-7" x="56.17306" y="127.423"/>
<use xlink:href="#glyph1-13" x="61.15436" y="127.423"/>
<use xlink:href="#glyph1-19" x="65.056711" y="127.423"/>
<use xlink:href="#glyph1-9" x="67.824321" y="127.423"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-40" x="18.896" y="139.378"/>
<use xlink:href="#glyph1-29" x="23.8773" y="139.378"/>
<use xlink:href="#glyph0-1" x="-0.254" y="139.378"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-14" x="31.62621" y="139.378"/>
<use xlink:href="#glyph1-41" x="38.406756" y="139.378"/>
<use xlink:href="#glyph1-4" x="41.451326" y="139.378"/>
<use xlink:href="#glyph1-42" x="45.879702" y="139.378"/>
<use xlink:href="#glyph1-4" x="51.690887" y="139.378"/>
<use xlink:href="#glyph1-16" x="56.119262" y="139.378"/>
<use xlink:href="#glyph1-10" x="9.709" y="139.378"/>
<use xlink:href="#glyph1-4" x="18.841715" y="139.378"/>
<use xlink:href="#glyph1-22" x="23.270091" y="139.378"/>
<use xlink:href="#glyph1-5" x="28.805312" y="139.378"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="-0.254" y="151.333"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="9.709" y="151.333"/>
<use xlink:href="#glyph1-18" x="18.841715" y="151.333"/>
<use xlink:href="#glyph1-39" x="23.823015" y="151.333"/>
<use xlink:href="#glyph1-39" x="28.251391" y="151.333"/>
<use xlink:href="#glyph1-7" x="32.679767" y="151.333"/>
<use xlink:href="#glyph1-16" x="37.661067" y="151.333"/>
<use xlink:href="#glyph1-4" x="41.563417" y="151.333"/>
<use xlink:href="#glyph1-5" x="45.991793" y="151.333"/>
<use xlink:href="#glyph1-5" x="48.759403" y="151.333"/>
<use xlink:href="#glyph1-7" x="51.527014" y="151.333"/>
<use xlink:href="#glyph1-10" x="9.709" y="151.333"/>
<use xlink:href="#glyph1-19" x="18.841715" y="151.333"/>
<use xlink:href="#glyph1-5" x="21.609326" y="151.333"/>
<use xlink:href="#glyph1-38" x="24.376936" y="151.333"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-22" x="28.526359" y="151.333"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="-0.254" y="163.288"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="9.709" y="163.288"/>
<use xlink:href="#glyph1-4" x="18.841715" y="163.288"/>
<use xlink:href="#glyph1-21" x="23.270091" y="163.288"/>
<use xlink:href="#glyph1-5" x="28.805312" y="163.288"/>
<use xlink:href="#glyph1-39" x="9.709" y="163.288"/>
<use xlink:href="#glyph1-7" x="15.244221" y="163.288"/>
<use xlink:href="#glyph1-5" x="20.225521" y="163.288"/>
<use xlink:href="#glyph1-12" x="22.993131" y="163.288"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="-0.254" y="175.244"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="9.709" y="175.244"/>
<use xlink:href="#glyph1-15" x="18.841715" y="175.244"/>
<use xlink:href="#glyph1-5" x="21.609326" y="175.244"/>
<use xlink:href="#glyph1-43" x="24.376936" y="175.244"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-21" x="28.526359" y="175.244"/>
<use xlink:href="#glyph1-18" x="9.709" y="175.244"/>
<use xlink:href="#glyph1-40" x="16.489546" y="175.244"/>
<use xlink:href="#glyph1-4" x="19.534116" y="175.244"/>
<use xlink:href="#glyph1-41" x="23.962492" y="175.244"/>
<use xlink:href="#glyph1-4" x="29.773676" y="175.244"/>
<use xlink:href="#glyph1-13" x="34.202052" y="175.244"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -39,107 +39,101 @@
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 7.328125 -2.40625 L 7.328125 -2.71875 L 6.109375 -2.6875 C 5.71875 -2.6875 4.859375 -2.6875 4.5 -2.71875 L 4.5 -2.40625 L 4.828125 -2.40625 C 5.71875 -2.40625 5.75 -2.296875 5.75 -1.9375 L 5.75 -1.296875 C 5.75 -0.171875 4.484375 -0.09375 4.203125 -0.09375 C 3.5625 -0.09375 1.578125 -0.4375 1.578125 -3.40625 C 1.578125 -6.390625 3.546875 -6.71875 4.140625 -6.71875 C 5.21875 -6.71875 6.125 -5.828125 6.3125 -4.359375 C 6.34375 -4.21875 6.34375 -4.1875 6.484375 -4.1875 C 6.640625 -4.1875 6.640625 -4.21875 6.640625 -4.421875 L 6.640625 -6.78125 C 6.640625 -6.953125 6.640625 -7.03125 6.53125 -7.03125 C 6.484375 -7.03125 6.453125 -7.03125 6.375 -6.90625 L 5.875 -6.171875 C 5.546875 -6.484375 5.015625 -7.03125 4.03125 -7.03125 C 2.171875 -7.03125 0.5625 -5.453125 0.5625 -3.40625 C 0.5625 -1.359375 2.15625 0.21875 4.046875 0.21875 C 4.78125 0.21875 5.578125 -0.046875 5.90625 -0.625 C 6.046875 -0.40625 6.4375 -0.015625 6.546875 -0.015625 C 6.640625 -0.015625 6.640625 -0.09375 6.640625 -0.234375 L 6.640625 -1.96875 C 6.640625 -2.359375 6.671875 -2.40625 7.328125 -2.40625 Z M 7.328125 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 2.375 -6.03125 C 2.375 -6.265625 2.15625 -6.5 1.890625 -6.5 C 1.578125 -6.5 1.40625 -6.25 1.40625 -6.03125 C 1.40625 -5.78125 1.609375 -5.546875 1.890625 -5.546875 C 2.1875 -5.546875 2.375 -5.796875 2.375 -6.03125 Z M 4.140625 -6.03125 C 4.140625 -6.265625 3.9375 -6.5 3.671875 -6.5 C 3.359375 -6.5 3.1875 -6.25 3.1875 -6.03125 C 3.1875 -5.78125 3.390625 -5.546875 3.65625 -5.546875 C 3.96875 -5.546875 4.140625 -5.796875 4.140625 -6.03125 Z M 4.140625 -6.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 6.21875 -4.953125 C 6.21875 -5.9375 5.234375 -6.8125 3.875 -6.8125 L 0.34375 -6.8125 L 0.34375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.375 -6.390625 1.375 -6.03125 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.4375 -0.03125 1.8125 -0.03125 C 2.1875 -0.03125 2.9375 -0.03125 3.296875 0 L 3.296875 -0.3125 L 3.046875 -0.3125 C 2.28125 -0.3125 2.265625 -0.421875 2.265625 -0.78125 L 2.265625 -3.15625 L 3.953125 -3.15625 C 5.140625 -3.15625 6.21875 -3.953125 6.21875 -4.953125 Z M 5.1875 -4.953125 C 5.1875 -4.484375 5.1875 -3.40625 3.609375 -3.40625 L 2.234375 -3.40625 L 2.234375 -6.09375 C 2.234375 -6.4375 2.25 -6.5 2.71875 -6.5 L 3.609375 -6.5 C 5.1875 -6.5 5.1875 -5.4375 5.1875 -4.953125 Z M 5.1875 -4.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-16">
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-17">
<path style="stroke:none;" d="M 6.828125 -4.5 L 6.640625 -6.75 L 0.546875 -6.75 L 0.359375 -4.5 L 0.609375 -4.5 C 0.75 -6.109375 0.890625 -6.4375 2.40625 -6.4375 C 2.578125 -6.4375 2.84375 -6.4375 2.9375 -6.421875 C 3.15625 -6.375 3.15625 -6.265625 3.15625 -6.046875 L 3.15625 -0.78125 C 3.15625 -0.453125 3.15625 -0.3125 2.109375 -0.3125 L 1.703125 -0.3125 L 1.703125 0 C 2.109375 -0.03125 3.125 -0.03125 3.59375 -0.03125 C 4.046875 -0.03125 5.078125 -0.03125 5.484375 0 L 5.484375 -0.3125 L 5.078125 -0.3125 C 4.03125 -0.3125 4.03125 -0.453125 4.03125 -0.78125 L 4.03125 -6.046875 C 4.03125 -6.234375 4.03125 -6.375 4.21875 -6.421875 C 4.328125 -6.4375 4.59375 -6.4375 4.78125 -6.4375 C 6.296875 -6.4375 6.4375 -6.109375 6.578125 -4.5 Z M 6.828125 -4.5 "/>
</symbol>
<symbol overflow="visible" id="glyph1-18">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-19">
<path style="stroke:none;" d="M 8.765625 0 L 8.765625 -0.3125 L 8.515625 -0.3125 C 7.75 -0.3125 7.734375 -0.421875 7.734375 -0.78125 L 7.734375 -6.03125 C 7.734375 -6.390625 7.75 -6.5 8.515625 -6.5 L 8.765625 -6.5 L 8.765625 -6.8125 L 7.078125 -6.8125 C 6.8125 -6.8125 6.8125 -6.796875 6.75 -6.625 L 4.5625 -1 L 2.40625 -6.59375 C 2.3125 -6.8125 2.28125 -6.8125 2.046875 -6.8125 L 0.375 -6.8125 L 0.375 -6.5 L 0.609375 -6.5 C 1.375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -1.046875 C 1.390625 -0.78125 1.390625 -0.3125 0.375 -0.3125 L 0.375 0 L 1.53125 -0.03125 L 2.703125 0 L 2.703125 -0.3125 C 1.671875 -0.3125 1.671875 -0.78125 1.671875 -1.046875 L 1.671875 -6.421875 L 1.6875 -6.421875 L 4.09375 -0.21875 C 4.140625 -0.09375 4.1875 0 4.28125 0 C 4.390625 0 4.421875 -0.078125 4.46875 -0.1875 L 6.921875 -6.5 L 6.921875 -0.78125 C 6.921875 -0.421875 6.90625 -0.3125 6.140625 -0.3125 L 5.90625 -0.3125 L 5.90625 0 C 6.265625 -0.03125 6.953125 -0.03125 7.34375 -0.03125 C 7.71875 -0.03125 8.390625 -0.03125 8.765625 0 Z M 8.765625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-20">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-21">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-22">
<path style="stroke:none;" d="M 6.5 -2.578125 L 6.25 -2.578125 C 6 -1.03125 5.765625 -0.3125 4.0625 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -3.375 L 3.140625 -3.375 C 4.109375 -3.375 4.21875 -3.046875 4.21875 -2.203125 L 4.46875 -2.203125 L 4.46875 -4.84375 L 4.21875 -4.84375 C 4.21875 -3.984375 4.109375 -3.671875 3.140625 -3.671875 L 2.25 -3.671875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 4.015625 -6.46875 C 5.546875 -6.46875 5.8125 -5.921875 5.96875 -4.53125 L 6.21875 -4.53125 L 5.9375 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 6.078125 0 Z M 6.5 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-23">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-24">
<path style="stroke:none;" d="M 5.578125 -2.65625 L 5.328125 -2.65625 C 5.25 -1.28125 5.0625 -0.34375 3.21875 -0.34375 L 1.578125 -0.34375 L 5.453125 -6.453125 C 5.515625 -6.5625 5.515625 -6.578125 5.515625 -6.65625 C 5.515625 -6.8125 5.46875 -6.8125 5.265625 -6.8125 L 0.796875 -6.8125 L 0.6875 -4.5625 L 0.9375 -4.5625 C 1 -5.6875 1.3125 -6.5 2.9375 -6.5 L 4.5 -6.5 L 0.625 -0.375 C 0.5625 -0.265625 0.5625 -0.25 0.5625 -0.171875 C 0.5625 0 0.609375 0 0.8125 0 L 5.40625 0 Z M 5.578125 -2.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-25">
<path style="stroke:none;" d="M 7.015625 -3.984375 L 7.015625 -4.296875 C 6.78125 -4.28125 6.5 -4.265625 6.28125 -4.265625 L 5.359375 -4.296875 L 5.359375 -3.984375 C 5.71875 -3.984375 5.9375 -3.796875 5.9375 -3.515625 C 5.9375 -3.453125 5.9375 -3.421875 5.875 -3.296875 L 4.96875 -0.75 L 3.984375 -3.53125 C 3.953125 -3.65625 3.9375 -3.671875 3.9375 -3.71875 C 3.9375 -3.984375 4.328125 -3.984375 4.53125 -3.984375 L 4.53125 -4.296875 L 3.484375 -4.265625 C 3.1875 -4.265625 2.90625 -4.28125 2.609375 -4.296875 L 2.609375 -3.984375 C 2.96875 -3.984375 3.125 -3.96875 3.234375 -3.84375 C 3.28125 -3.78125 3.390625 -3.484375 3.453125 -3.296875 L 2.609375 -0.875 L 1.65625 -3.53125 C 1.609375 -3.65625 1.609375 -3.671875 1.609375 -3.71875 C 1.609375 -3.984375 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 L 1.109375 -4.265625 L 0.171875 -4.296875 L 0.171875 -3.984375 C 0.671875 -3.984375 0.796875 -3.953125 0.921875 -3.640625 L 2.171875 -0.109375 C 2.21875 0.03125 2.25 0.109375 2.375 0.109375 C 2.515625 0.109375 2.53125 0.046875 2.578125 -0.09375 L 3.59375 -2.90625 L 4.609375 -0.078125 C 4.640625 0.03125 4.671875 0.109375 4.8125 0.109375 C 4.9375 0.109375 4.96875 0.015625 5 -0.078125 L 6.171875 -3.34375 C 6.34375 -3.84375 6.65625 -3.984375 7.015625 -3.984375 Z M 7.015625 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-26">
<path style="stroke:none;" d="M 7.34375 0 L 7.34375 -0.3125 C 6.796875 -0.3125 6.59375 -0.34375 6.296875 -0.78125 L 3.984375 -4.171875 L 5.78125 -5.90625 C 5.859375 -5.984375 6.390625 -6.484375 7.203125 -6.5 L 7.203125 -6.8125 C 6.9375 -6.78125 6.625 -6.78125 6.34375 -6.78125 C 5.984375 -6.78125 5.421875 -6.78125 5.078125 -6.8125 L 5.078125 -6.5 C 5.484375 -6.484375 5.546875 -6.265625 5.546875 -6.171875 C 5.546875 -6.015625 5.4375 -5.90625 5.359375 -5.84375 L 2.25 -2.859375 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.03125 -6.5 L 3.265625 -6.5 L 3.265625 -6.8125 C 2.921875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.171875 -0.03125 2.921875 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.03125 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -2.515625 L 3.40625 -3.625 L 5.203125 -0.953125 C 5.265625 -0.859375 5.359375 -0.734375 5.359375 -0.609375 C 5.359375 -0.3125 4.96875 -0.3125 4.765625 -0.3125 L 4.765625 0 C 5.109375 -0.03125 5.8125 -0.03125 6.1875 -0.03125 Z M 7.34375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-27">
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-28">
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-29">
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-30">
<path style="stroke:none;" d="M 7.1875 -3.375 C 7.1875 -5.40625 5.6875 -7.03125 3.875 -7.03125 C 2.078125 -7.03125 0.5625 -5.4375 0.5625 -3.375 C 0.5625 -1.328125 2.09375 0.21875 3.875 0.21875 C 5.6875 0.21875 7.1875 -1.359375 7.1875 -3.375 Z M 6.15625 -3.515625 C 6.15625 -0.875 4.796875 -0.046875 3.875 -0.046875 C 2.921875 -0.046875 1.578125 -0.921875 1.578125 -3.515625 C 1.578125 -6.09375 3.046875 -6.78125 3.875 -6.78125 C 4.734375 -6.78125 6.15625 -6.078125 6.15625 -3.515625 Z M 6.15625 -3.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-31">
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-32">
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-33">
<path style="stroke:none;" d="M 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 Z M 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 L 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 Z M 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 Z M 5.5 -1.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-34">
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-35">
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-36">
<path style="stroke:none;" d="M 7.296875 -0.875 C 7.296875 -0.9375 7.296875 -1.046875 7.171875 -1.046875 C 7.0625 -1.046875 7.0625 -0.953125 7.046875 -0.890625 C 6.984375 -0.171875 6.640625 0 6.390625 0 C 5.90625 0 5.828125 -0.515625 5.6875 -1.4375 L 5.546875 -2.234375 C 5.375 -2.875 4.890625 -3.203125 4.34375 -3.390625 C 5.296875 -3.625 6.078125 -4.234375 6.078125 -5.015625 C 6.078125 -5.96875 4.9375 -6.8125 3.484375 -6.8125 L 0.34375 -6.8125 L 0.34375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.375 -6.390625 1.375 -6.03125 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.1875 -0.03125 2.90625 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.296875 L 3.375 -3.296875 C 3.53125 -3.296875 3.953125 -3.296875 4.3125 -2.953125 C 4.6875 -2.609375 4.6875 -2.296875 4.6875 -1.625 C 4.6875 -0.984375 4.6875 -0.578125 5.09375 -0.203125 C 5.5 0.15625 6.046875 0.21875 6.34375 0.21875 C 7.125 0.21875 7.296875 -0.59375 7.296875 -0.875 Z M 5.046875 -5.015625 C 5.046875 -4.328125 4.8125 -3.515625 3.34375 -3.515625 L 2.234375 -3.515625 L 2.234375 -6.09375 C 2.234375 -6.328125 2.234375 -6.453125 2.453125 -6.484375 C 2.546875 -6.5 2.84375 -6.5 3.046875 -6.5 C 3.9375 -6.5 5.046875 -6.453125 5.046875 -5.015625 Z M 5.046875 -5.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-37">
<path style="stroke:none;" d="M 4.6875 -1.640625 L 4.6875 -1.953125 L 3.703125 -1.953125 L 3.703125 -6.484375 C 3.703125 -6.6875 3.703125 -6.75 3.53125 -6.75 C 3.453125 -6.75 3.421875 -6.75 3.34375 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 L 2.9375 -1.640625 L 2.9375 -0.78125 C 2.9375 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.96875 -0.3125 L 1.96875 0 C 2.375 -0.03125 2.890625 -0.03125 3.3125 -0.03125 C 3.734375 -0.03125 4.25 -0.03125 4.671875 0 L 4.671875 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.703125 -0.421875 3.703125 -0.78125 L 3.703125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.671875 Z M 2.984375 -1.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-38">
<path style="stroke:none;" d="M 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 Z M 4.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-39">
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 4 -1.859375 L 3.75 -1.859375 C 3.65625 -0.6875 3.453125 -0.25 2.296875 -0.25 L 1.109375 -0.25 L 3.890625 -4 C 3.984375 -4.109375 3.984375 -4.125 3.984375 -4.171875 C 3.984375 -4.296875 3.890625 -4.296875 3.71875 -4.296875 L 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.734375 -3.703125 0.921875 -4.078125 2.015625 -4.078125 L 3.15625 -4.078125 L 0.375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.828125 0 Z M 4 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-40">
<path style="stroke:none;" d="M 4.46875 -2 C 4.46875 -3.1875 3.65625 -4.1875 2.578125 -4.1875 C 2.109375 -4.1875 1.671875 -4.03125 1.3125 -3.671875 L 1.3125 -5.625 C 1.515625 -5.5625 1.84375 -5.5 2.15625 -5.5 C 3.390625 -5.5 4.09375 -6.40625 4.09375 -6.53125 C 4.09375 -6.59375 4.0625 -6.640625 3.984375 -6.640625 C 3.984375 -6.640625 3.953125 -6.640625 3.90625 -6.609375 C 3.703125 -6.515625 3.21875 -6.3125 2.546875 -6.3125 C 2.15625 -6.3125 1.6875 -6.390625 1.21875 -6.59375 C 1.140625 -6.625 1.109375 -6.625 1.109375 -6.625 C 1 -6.625 1 -6.546875 1 -6.390625 L 1 -3.4375 C 1 -3.265625 1 -3.1875 1.140625 -3.1875 C 1.21875 -3.1875 1.234375 -3.203125 1.28125 -3.265625 C 1.390625 -3.421875 1.75 -3.96875 2.5625 -3.96875 C 3.078125 -3.96875 3.328125 -3.515625 3.40625 -3.328125 C 3.5625 -2.953125 3.59375 -2.578125 3.59375 -2.078125 C 3.59375 -1.71875 3.59375 -1.125 3.34375 -0.703125 C 3.109375 -0.3125 2.734375 -0.0625 2.28125 -0.0625 C 1.5625 -0.0625 0.984375 -0.59375 0.8125 -1.171875 C 0.84375 -1.171875 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.890625 1.3125 -2.140625 0.984375 -2.140625 C 0.84375 -2.140625 0.5 -2.0625 0.5 -1.609375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.453125 0.21875 4.46875 -0.734375 4.46875 -2 Z M 4.46875 -2 "/>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-41">
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 7.328125 -2.40625 L 7.328125 -2.71875 L 6.109375 -2.6875 C 5.71875 -2.6875 4.859375 -2.6875 4.5 -2.71875 L 4.5 -2.40625 L 4.828125 -2.40625 C 5.71875 -2.40625 5.75 -2.296875 5.75 -1.9375 L 5.75 -1.296875 C 5.75 -0.171875 4.484375 -0.09375 4.203125 -0.09375 C 3.5625 -0.09375 1.578125 -0.4375 1.578125 -3.40625 C 1.578125 -6.390625 3.546875 -6.71875 4.140625 -6.71875 C 5.21875 -6.71875 6.125 -5.828125 6.3125 -4.359375 C 6.34375 -4.21875 6.34375 -4.1875 6.484375 -4.1875 C 6.640625 -4.1875 6.640625 -4.21875 6.640625 -4.421875 L 6.640625 -6.78125 C 6.640625 -6.953125 6.640625 -7.03125 6.53125 -7.03125 C 6.484375 -7.03125 6.453125 -7.03125 6.375 -6.90625 L 5.875 -6.171875 C 5.546875 -6.484375 5.015625 -7.03125 4.03125 -7.03125 C 2.171875 -7.03125 0.5625 -5.453125 0.5625 -3.40625 C 0.5625 -1.359375 2.15625 0.21875 4.046875 0.21875 C 4.78125 0.21875 5.578125 -0.046875 5.90625 -0.625 C 6.046875 -0.40625 6.4375 -0.015625 6.546875 -0.015625 C 6.640625 -0.015625 6.640625 -0.09375 6.640625 -0.234375 L 6.640625 -1.96875 C 6.640625 -2.359375 6.671875 -2.40625 7.328125 -2.40625 Z M 7.328125 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-16">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 2.375 -6.03125 C 2.375 -6.265625 2.15625 -6.5 1.890625 -6.5 C 1.578125 -6.5 1.40625 -6.25 1.40625 -6.03125 C 1.40625 -5.78125 1.609375 -5.546875 1.890625 -5.546875 C 2.1875 -5.546875 2.375 -5.796875 2.375 -6.03125 Z M 4.140625 -6.03125 C 4.140625 -6.265625 3.9375 -6.5 3.671875 -6.5 C 3.359375 -6.5 3.1875 -6.25 3.1875 -6.03125 C 3.1875 -5.78125 3.390625 -5.546875 3.65625 -5.546875 C 3.96875 -5.546875 4.140625 -5.796875 4.140625 -6.03125 Z M 4.140625 -6.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-17">
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-18">
<path style="stroke:none;" d="M 6.21875 -4.953125 C 6.21875 -5.9375 5.234375 -6.8125 3.875 -6.8125 L 0.34375 -6.8125 L 0.34375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.375 -6.390625 1.375 -6.03125 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.4375 -0.03125 1.8125 -0.03125 C 2.1875 -0.03125 2.9375 -0.03125 3.296875 0 L 3.296875 -0.3125 L 3.046875 -0.3125 C 2.28125 -0.3125 2.265625 -0.421875 2.265625 -0.78125 L 2.265625 -3.15625 L 3.953125 -3.15625 C 5.140625 -3.15625 6.21875 -3.953125 6.21875 -4.953125 Z M 5.1875 -4.953125 C 5.1875 -4.484375 5.1875 -3.40625 3.609375 -3.40625 L 2.234375 -3.40625 L 2.234375 -6.09375 C 2.234375 -6.4375 2.25 -6.5 2.71875 -6.5 L 3.609375 -6.5 C 5.1875 -6.5 5.1875 -5.4375 5.1875 -4.953125 Z M 5.1875 -4.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-19">
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-20">
<path style="stroke:none;" d="M 6.828125 -4.5 L 6.640625 -6.75 L 0.546875 -6.75 L 0.359375 -4.5 L 0.609375 -4.5 C 0.75 -6.109375 0.890625 -6.4375 2.40625 -6.4375 C 2.578125 -6.4375 2.84375 -6.4375 2.9375 -6.421875 C 3.15625 -6.375 3.15625 -6.265625 3.15625 -6.046875 L 3.15625 -0.78125 C 3.15625 -0.453125 3.15625 -0.3125 2.109375 -0.3125 L 1.703125 -0.3125 L 1.703125 0 C 2.109375 -0.03125 3.125 -0.03125 3.59375 -0.03125 C 4.046875 -0.03125 5.078125 -0.03125 5.484375 0 L 5.484375 -0.3125 L 5.078125 -0.3125 C 4.03125 -0.3125 4.03125 -0.453125 4.03125 -0.78125 L 4.03125 -6.046875 C 4.03125 -6.234375 4.03125 -6.375 4.21875 -6.421875 C 4.328125 -6.4375 4.59375 -6.4375 4.78125 -6.4375 C 6.296875 -6.4375 6.4375 -6.109375 6.578125 -4.5 Z M 6.828125 -4.5 "/>
</symbol>
<symbol overflow="visible" id="glyph1-21">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-22">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-23">
<path style="stroke:none;" d="M 6.5 -2.578125 L 6.25 -2.578125 C 6 -1.03125 5.765625 -0.3125 4.0625 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -3.375 L 3.140625 -3.375 C 4.109375 -3.375 4.21875 -3.046875 4.21875 -2.203125 L 4.46875 -2.203125 L 4.46875 -4.84375 L 4.21875 -4.84375 C 4.21875 -3.984375 4.109375 -3.671875 3.140625 -3.671875 L 2.25 -3.671875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 4.015625 -6.46875 C 5.546875 -6.46875 5.8125 -5.921875 5.96875 -4.53125 L 6.21875 -4.53125 L 5.9375 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 6.078125 0 Z M 6.5 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-24">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-25">
<path style="stroke:none;" d="M 5.578125 -2.65625 L 5.328125 -2.65625 C 5.25 -1.28125 5.0625 -0.34375 3.21875 -0.34375 L 1.578125 -0.34375 L 5.453125 -6.453125 C 5.515625 -6.5625 5.515625 -6.578125 5.515625 -6.65625 C 5.515625 -6.8125 5.46875 -6.8125 5.265625 -6.8125 L 0.796875 -6.8125 L 0.6875 -4.5625 L 0.9375 -4.5625 C 1 -5.6875 1.3125 -6.5 2.9375 -6.5 L 4.5 -6.5 L 0.625 -0.375 C 0.5625 -0.265625 0.5625 -0.25 0.5625 -0.171875 C 0.5625 0 0.609375 0 0.8125 0 L 5.40625 0 Z M 5.578125 -2.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-26">
<path style="stroke:none;" d="M 7.015625 -3.984375 L 7.015625 -4.296875 C 6.78125 -4.28125 6.5 -4.265625 6.28125 -4.265625 L 5.359375 -4.296875 L 5.359375 -3.984375 C 5.71875 -3.984375 5.9375 -3.796875 5.9375 -3.515625 C 5.9375 -3.453125 5.9375 -3.421875 5.875 -3.296875 L 4.96875 -0.75 L 3.984375 -3.53125 C 3.953125 -3.65625 3.9375 -3.671875 3.9375 -3.71875 C 3.9375 -3.984375 4.328125 -3.984375 4.53125 -3.984375 L 4.53125 -4.296875 L 3.484375 -4.265625 C 3.1875 -4.265625 2.90625 -4.28125 2.609375 -4.296875 L 2.609375 -3.984375 C 2.96875 -3.984375 3.125 -3.96875 3.234375 -3.84375 C 3.28125 -3.78125 3.390625 -3.484375 3.453125 -3.296875 L 2.609375 -0.875 L 1.65625 -3.53125 C 1.609375 -3.65625 1.609375 -3.671875 1.609375 -3.71875 C 1.609375 -3.984375 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 L 1.109375 -4.265625 L 0.171875 -4.296875 L 0.171875 -3.984375 C 0.671875 -3.984375 0.796875 -3.953125 0.921875 -3.640625 L 2.171875 -0.109375 C 2.21875 0.03125 2.25 0.109375 2.375 0.109375 C 2.515625 0.109375 2.53125 0.046875 2.578125 -0.09375 L 3.59375 -2.90625 L 4.609375 -0.078125 C 4.640625 0.03125 4.671875 0.109375 4.8125 0.109375 C 4.9375 0.109375 4.96875 0.015625 5 -0.078125 L 6.171875 -3.34375 C 6.34375 -3.84375 6.65625 -3.984375 7.015625 -3.984375 Z M 7.015625 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-27">
<path style="stroke:none;" d="M 7.34375 0 L 7.34375 -0.3125 C 6.796875 -0.3125 6.59375 -0.34375 6.296875 -0.78125 L 3.984375 -4.171875 L 5.78125 -5.90625 C 5.859375 -5.984375 6.390625 -6.484375 7.203125 -6.5 L 7.203125 -6.8125 C 6.9375 -6.78125 6.625 -6.78125 6.34375 -6.78125 C 5.984375 -6.78125 5.421875 -6.78125 5.078125 -6.8125 L 5.078125 -6.5 C 5.484375 -6.484375 5.546875 -6.265625 5.546875 -6.171875 C 5.546875 -6.015625 5.4375 -5.90625 5.359375 -5.84375 L 2.25 -2.859375 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.03125 -6.5 L 3.265625 -6.5 L 3.265625 -6.8125 C 2.921875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.171875 -0.03125 2.921875 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.03125 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -2.515625 L 3.40625 -3.625 L 5.203125 -0.953125 C 5.265625 -0.859375 5.359375 -0.734375 5.359375 -0.609375 C 5.359375 -0.3125 4.96875 -0.3125 4.765625 -0.3125 L 4.765625 0 C 5.109375 -0.03125 5.8125 -0.03125 6.1875 -0.03125 Z M 7.34375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-28">
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-29">
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-30">
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-31">
<path style="stroke:none;" d="M 7.1875 -3.375 C 7.1875 -5.40625 5.6875 -7.03125 3.875 -7.03125 C 2.078125 -7.03125 0.5625 -5.4375 0.5625 -3.375 C 0.5625 -1.328125 2.09375 0.21875 3.875 0.21875 C 5.6875 0.21875 7.1875 -1.359375 7.1875 -3.375 Z M 6.15625 -3.515625 C 6.15625 -0.875 4.796875 -0.046875 3.875 -0.046875 C 2.921875 -0.046875 1.578125 -0.921875 1.578125 -3.515625 C 1.578125 -6.09375 3.046875 -6.78125 3.875 -6.78125 C 4.734375 -6.78125 6.15625 -6.078125 6.15625 -3.515625 Z M 6.15625 -3.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-32">
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-33">
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-34">
<path style="stroke:none;" d="M 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 Z M 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 L 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 Z M 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 Z M 5.5 -1.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-35">
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-36">
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-37">
<path style="stroke:none;" d="M 7.296875 -0.875 C 7.296875 -0.9375 7.296875 -1.046875 7.171875 -1.046875 C 7.0625 -1.046875 7.0625 -0.953125 7.046875 -0.890625 C 6.984375 -0.171875 6.640625 0 6.390625 0 C 5.90625 0 5.828125 -0.515625 5.6875 -1.4375 L 5.546875 -2.234375 C 5.375 -2.875 4.890625 -3.203125 4.34375 -3.390625 C 5.296875 -3.625 6.078125 -4.234375 6.078125 -5.015625 C 6.078125 -5.96875 4.9375 -6.8125 3.484375 -6.8125 L 0.34375 -6.8125 L 0.34375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.375 -6.390625 1.375 -6.03125 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.1875 -0.03125 2.90625 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.296875 L 3.375 -3.296875 C 3.53125 -3.296875 3.953125 -3.296875 4.3125 -2.953125 C 4.6875 -2.609375 4.6875 -2.296875 4.6875 -1.625 C 4.6875 -0.984375 4.6875 -0.578125 5.09375 -0.203125 C 5.5 0.15625 6.046875 0.21875 6.34375 0.21875 C 7.125 0.21875 7.296875 -0.59375 7.296875 -0.875 Z M 5.046875 -5.015625 C 5.046875 -4.328125 4.8125 -3.515625 3.34375 -3.515625 L 2.234375 -3.515625 L 2.234375 -6.09375 C 2.234375 -6.328125 2.234375 -6.453125 2.453125 -6.484375 C 2.546875 -6.5 2.84375 -6.5 3.046875 -6.5 C 3.9375 -6.5 5.046875 -6.453125 5.046875 -5.015625 Z M 5.046875 -5.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-38">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-39">
<path style="stroke:none;" d="M 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 Z M 4.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-40">
<path style="stroke:none;" d="M 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 L 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 Z M 3.5625 -6.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-42">
<symbol overflow="visible" id="glyph1-41">
<path style="stroke:none;" d="M 6.265625 -6.328125 C 6.265625 -6.6875 5.90625 -7.03125 5.359375 -7.03125 C 4.765625 -7.03125 4.328125 -6.65625 4.28125 -6.609375 C 3.984375 -6.984375 3.421875 -7.03125 3.15625 -7.03125 C 2.21875 -7.03125 1.0625 -6.515625 1.0625 -5.4375 L 1.0625 -4.296875 L 0.265625 -4.296875 L 0.265625 -3.984375 L 1.0625 -3.984375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.390625 -0.03125 L 2.5 0 L 2.5 -0.3125 C 1.828125 -0.3125 1.71875 -0.3125 1.71875 -0.75 L 1.71875 -3.984375 L 3.8125 -3.984375 L 3.8125 -0.75 C 3.8125 -0.3125 3.703125 -0.3125 3.03125 -0.3125 L 3.03125 0 L 4.171875 -0.03125 C 4.5625 -0.03125 5.03125 -0.03125 5.4375 0 L 5.4375 -0.3125 L 5.21875 -0.3125 C 4.484375 -0.3125 4.46875 -0.421875 4.46875 -0.78125 L 4.46875 -3.984375 L 5.609375 -3.984375 L 5.609375 -4.296875 L 4.4375 -4.296875 L 4.4375 -5.453125 C 4.4375 -6.34375 4.921875 -6.8125 5.359375 -6.8125 C 5.390625 -6.8125 5.546875 -6.8125 5.6875 -6.734375 C 5.578125 -6.703125 5.390625 -6.5625 5.390625 -6.3125 C 5.390625 -6.09375 5.546875 -5.890625 5.828125 -5.890625 C 6.109375 -5.890625 6.265625 -6.09375 6.265625 -6.328125 Z M 3.921875 -6.625 C 3.765625 -6.59375 3.5625 -6.453125 3.5625 -6.1875 C 3.5625 -6.125 3.5625 -5.875 3.84375 -5.78125 C 3.8125 -5.65625 3.8125 -5.5625 3.8125 -5.4375 L 3.8125 -4.296875 L 1.6875 -4.296875 L 1.6875 -5.421875 C 1.6875 -6.390625 2.5 -6.8125 3.15625 -6.8125 C 3.640625 -6.8125 3.921875 -6.625 3.921875 -6.625 Z M 3.921875 -6.625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-43">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
@ -171,189 +165,187 @@
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="149.709" y="147.716"/>
<use xlink:href="#glyph1-4" x="157.526652" y="147.716"/>
<use xlink:href="#glyph1-11" x="161.955028" y="147.716"/>
<use xlink:href="#glyph1-11" x="158.841715" y="147.716"/>
<use xlink:href="#glyph1-12" x="163.823015" y="147.716"/>
<use xlink:href="#glyph1-12" x="168.251391" y="147.716"/>
<use xlink:href="#glyph1-7" x="172.679767" y="147.716"/>
<use xlink:href="#glyph1-13" x="177.661067" y="147.716"/>
<use xlink:href="#glyph1-4" x="181.563417" y="147.716"/>
<use xlink:href="#glyph1-5" x="185.991793" y="147.716"/>
<use xlink:href="#glyph1-5" x="188.759403" y="147.716"/>
<use xlink:href="#glyph1-7" x="191.527014" y="147.716"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="169.97791" y="147.716"/>
<use xlink:href="#glyph1-13" x="175.51313" y="147.716"/>
<use xlink:href="#glyph1-4" x="179.443376" y="147.716"/>
<use xlink:href="#glyph0-1" x="139.746" y="159.671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="160.917" y="159.671"/>
<use xlink:href="#glyph1-14" x="149.709" y="159.671"/>
<use xlink:href="#glyph1-4" x="157.526652" y="159.671"/>
<use xlink:href="#glyph1-15" x="161.955028" y="159.671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-14" x="171.626" y="159.671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="178.127593" y="159.671"/>
<use xlink:href="#glyph1-13" x="183.108893" y="159.671"/>
<use xlink:href="#glyph1-13" x="187.039138" y="159.671"/>
<use xlink:href="#glyph1-15" x="190.969384" y="159.671"/>
<use xlink:href="#glyph1-4" x="193.736994" y="159.671"/>
<use xlink:href="#glyph1-16" x="198.16537" y="159.671"/>
<use xlink:href="#glyph1-8" x="202.067721" y="159.671"/>
<use xlink:href="#glyph1-4" x="205.942176" y="159.671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-17" x="213.688097" y="159.671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-18" x="220.056191" y="159.671"/>
<use xlink:href="#glyph1-11" x="225.037491" y="159.671"/>
<use xlink:href="#glyph1-7" x="233.339326" y="159.671"/>
<use xlink:href="#glyph1-8" x="238.320626" y="159.671"/>
<use xlink:href="#glyph1-4" x="242.195081" y="159.671"/>
<use xlink:href="#glyph1-9" x="246.623457" y="159.671"/>
<use xlink:href="#glyph1-16" x="169.97791" y="159.671"/>
<use xlink:href="#glyph1-17" x="175.51313" y="159.671"/>
<use xlink:href="#glyph1-4" x="179.443376" y="159.671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="160.917" y="171.627"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="171.626" y="171.627"/>
<use xlink:href="#glyph1-20" x="180.758715" y="171.627"/>
<use xlink:href="#glyph1-21" x="185.740015" y="171.627"/>
<use xlink:href="#glyph1-16" x="191.275236" y="171.627"/>
<use xlink:href="#glyph1-4" x="195.177586" y="171.627"/>
<use xlink:href="#glyph1-9" x="199.605962" y="171.627"/>
<use xlink:href="#glyph1-18" x="171.626" y="171.627"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="178.127593" y="171.627"/>
<use xlink:href="#glyph1-17" x="183.108893" y="171.627"/>
<use xlink:href="#glyph1-17" x="187.039138" y="171.627"/>
<use xlink:href="#glyph1-19" x="190.969384" y="171.627"/>
<use xlink:href="#glyph1-4" x="193.736994" y="171.627"/>
<use xlink:href="#glyph1-13" x="198.16537" y="171.627"/>
<use xlink:href="#glyph1-8" x="202.067721" y="171.627"/>
<use xlink:href="#glyph1-4" x="205.942176" y="171.627"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-20" x="213.688097" y="171.627"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="220.056191" y="171.627"/>
<use xlink:href="#glyph1-15" x="225.037491" y="171.627"/>
<use xlink:href="#glyph1-7" x="233.339326" y="171.627"/>
<use xlink:href="#glyph1-8" x="238.320626" y="171.627"/>
<use xlink:href="#glyph1-4" x="242.195081" y="171.627"/>
<use xlink:href="#glyph1-9" x="246.623457" y="171.627"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="160.917" y="183.582"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-22" x="171.626" y="183.582"/>
<use xlink:href="#glyph1-16" x="178.406546" y="183.582"/>
<use xlink:href="#glyph1-23" x="182.308896" y="183.582"/>
<use xlink:href="#glyph1-13" x="187.844117" y="183.582"/>
<use xlink:href="#glyph1-4" x="191.774362" y="183.582"/>
<use xlink:href="#glyph1-9" x="196.202738" y="183.582"/>
<use xlink:href="#glyph1-10" x="171.626" y="183.582"/>
<use xlink:href="#glyph1-21" x="180.758715" y="183.582"/>
<use xlink:href="#glyph1-22" x="185.740015" y="183.582"/>
<use xlink:href="#glyph1-13" x="191.275236" y="183.582"/>
<use xlink:href="#glyph1-4" x="195.177586" y="183.582"/>
<use xlink:href="#glyph1-9" x="199.605962" y="183.582"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="160.917" y="195.537"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-24" x="171.626" y="195.537"/>
<use xlink:href="#glyph1-25" x="177.714145" y="195.537"/>
<use xlink:href="#glyph1-15" x="184.909135" y="195.537"/>
<use xlink:href="#glyph1-4" x="187.676745" y="195.537"/>
<use xlink:href="#glyph1-23" x="192.105121" y="195.537"/>
<use xlink:href="#glyph1-23" x="171.626" y="195.537"/>
<use xlink:href="#glyph1-13" x="178.406546" y="195.537"/>
<use xlink:href="#glyph1-24" x="182.308896" y="195.537"/>
<use xlink:href="#glyph1-17" x="187.844117" y="195.537"/>
<use xlink:href="#glyph1-4" x="191.774362" y="195.537"/>
<use xlink:href="#glyph1-9" x="196.202738" y="195.537"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="197.919294" y="195.537"/>
<use xlink:href="#glyph1-5" x="202.34767" y="195.537"/>
<use xlink:href="#glyph1-9" x="205.11528" y="195.537"/>
<use xlink:href="#glyph2-1" x="160.917" y="207.492"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="139.746" y="207.492"/>
<use xlink:href="#glyph1-25" x="171.626" y="207.492"/>
<use xlink:href="#glyph1-26" x="177.714145" y="207.492"/>
<use xlink:href="#glyph1-19" x="184.909135" y="207.492"/>
<use xlink:href="#glyph1-4" x="187.676745" y="207.492"/>
<use xlink:href="#glyph1-24" x="192.105121" y="207.492"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-26" x="149.709" y="207.492"/>
<use xlink:href="#glyph1-16" x="157.45791" y="207.492"/>
<use xlink:href="#glyph1-27" x="161.360261" y="207.492"/>
<use xlink:href="#glyph1-2" x="166.341561" y="207.492"/>
<use xlink:href="#glyph1-8" x="171.876781" y="207.492"/>
<use xlink:href="#glyph1-4" x="175.751236" y="207.492"/>
<use xlink:href="#glyph1-16" x="180.179612" y="207.492"/>
<use xlink:href="#glyph1-4" x="197.919294" y="207.492"/>
<use xlink:href="#glyph1-5" x="202.34767" y="207.492"/>
<use xlink:href="#glyph1-9" x="205.11528" y="207.492"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-28" x="158.896" y="219.447"/>
<use xlink:href="#glyph1-29" x="163.8773" y="219.447"/>
<use xlink:href="#glyph0-1" x="139.746" y="219.447"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-30" x="171.62621" y="219.447"/>
<use xlink:href="#glyph1-16" x="179.375121" y="219.447"/>
<use xlink:href="#glyph1-4" x="183.277471" y="219.447"/>
<use xlink:href="#glyph1-31" x="187.705847" y="219.447"/>
<use xlink:href="#glyph1-7" x="192.687147" y="219.447"/>
<use xlink:href="#glyph1-9" x="197.668447" y="219.447"/>
<use xlink:href="#glyph1-18" x="203.203667" y="219.447"/>
<use xlink:href="#glyph1-27" x="149.709" y="219.447"/>
<use xlink:href="#glyph1-13" x="157.45791" y="219.447"/>
<use xlink:href="#glyph1-28" x="161.360261" y="219.447"/>
<use xlink:href="#glyph1-2" x="166.341561" y="219.447"/>
<use xlink:href="#glyph1-8" x="171.876781" y="219.447"/>
<use xlink:href="#glyph1-4" x="175.751236" y="219.447"/>
<use xlink:href="#glyph1-13" x="180.179612" y="219.447"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-32" x="158.896" y="231.403"/>
<use xlink:href="#glyph1-29" x="163.8773" y="231.403"/>
<use xlink:href="#glyph1-29" x="158.896" y="231.403"/>
<use xlink:href="#glyph1-30" x="163.8773" y="231.403"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-33" x="171.62621" y="231.403"/>
<use xlink:href="#glyph1-7" x="178.68272" y="231.403"/>
<use xlink:href="#glyph1-13" x="183.66402" y="231.403"/>
<use xlink:href="#glyph1-15" x="187.594266" y="231.403"/>
<use xlink:href="#glyph1-5" x="190.361876" y="231.403"/>
<use xlink:href="#glyph1-15" x="193.129486" y="231.403"/>
<use xlink:href="#glyph1-34" x="195.897096" y="231.403"/>
<use xlink:href="#glyph1-2" x="201.155357" y="231.403"/>
<use xlink:href="#glyph1-11" x="206.690577" y="231.403"/>
<use xlink:href="#glyph1-31" x="171.62621" y="231.403"/>
<use xlink:href="#glyph1-13" x="179.375121" y="231.403"/>
<use xlink:href="#glyph1-4" x="183.277471" y="231.403"/>
<use xlink:href="#glyph1-32" x="187.705847" y="231.403"/>
<use xlink:href="#glyph1-7" x="192.687147" y="231.403"/>
<use xlink:href="#glyph1-9" x="197.668447" y="231.403"/>
<use xlink:href="#glyph1-11" x="203.203667" y="231.403"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-35" x="158.896" y="243.358"/>
<use xlink:href="#glyph1-29" x="163.8773" y="243.358"/>
<use xlink:href="#glyph1-33" x="158.896" y="243.358"/>
<use xlink:href="#glyph1-30" x="163.8773" y="243.358"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-36" x="171.62621" y="243.358"/>
<use xlink:href="#glyph1-18" x="178.95968" y="243.358"/>
<use xlink:href="#glyph1-13" x="183.94098" y="243.358"/>
<use xlink:href="#glyph1-11" x="187.871226" y="243.358"/>
<use xlink:href="#glyph1-7" x="196.17306" y="243.358"/>
<use xlink:href="#glyph1-16" x="201.15436" y="243.358"/>
<use xlink:href="#glyph1-15" x="205.056711" y="243.358"/>
<use xlink:href="#glyph1-9" x="207.824321" y="243.358"/>
<use xlink:href="#glyph1-34" x="171.62621" y="243.358"/>
<use xlink:href="#glyph1-7" x="178.68272" y="243.358"/>
<use xlink:href="#glyph1-17" x="183.66402" y="243.358"/>
<use xlink:href="#glyph1-19" x="187.594266" y="243.358"/>
<use xlink:href="#glyph1-5" x="190.361876" y="243.358"/>
<use xlink:href="#glyph1-19" x="193.129486" y="243.358"/>
<use xlink:href="#glyph1-35" x="195.897096" y="243.358"/>
<use xlink:href="#glyph1-2" x="201.155357" y="243.358"/>
<use xlink:href="#glyph1-15" x="206.690577" y="243.358"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-37" x="158.896" y="255.313"/>
<use xlink:href="#glyph1-29" x="163.8773" y="255.313"/>
<use xlink:href="#glyph1-36" x="158.896" y="255.313"/>
<use xlink:href="#glyph1-30" x="163.8773" y="255.313"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-38" x="171.62621" y="255.313"/>
<use xlink:href="#glyph1-7" x="177.161431" y="255.313"/>
<use xlink:href="#glyph1-5" x="182.142731" y="255.313"/>
<use xlink:href="#glyph1-39" x="184.910341" y="255.313"/>
<use xlink:href="#glyph1-37" x="171.62621" y="255.313"/>
<use xlink:href="#glyph1-11" x="178.95968" y="255.313"/>
<use xlink:href="#glyph1-17" x="183.94098" y="255.313"/>
<use xlink:href="#glyph1-15" x="187.871226" y="255.313"/>
<use xlink:href="#glyph1-7" x="196.17306" y="255.313"/>
<use xlink:href="#glyph1-13" x="201.15436" y="255.313"/>
<use xlink:href="#glyph1-19" x="205.056711" y="255.313"/>
<use xlink:href="#glyph1-9" x="207.824321" y="255.313"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-40" x="158.896" y="267.268"/>
<use xlink:href="#glyph1-29" x="163.8773" y="267.268"/>
<use xlink:href="#glyph0-1" x="139.746" y="267.268"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-14" x="171.62621" y="267.268"/>
<use xlink:href="#glyph1-41" x="178.406756" y="267.268"/>
<use xlink:href="#glyph1-4" x="181.451326" y="267.268"/>
<use xlink:href="#glyph1-42" x="185.879702" y="267.268"/>
<use xlink:href="#glyph1-4" x="191.690887" y="267.268"/>
<use xlink:href="#glyph1-16" x="196.119262" y="267.268"/>
<use xlink:href="#glyph1-10" x="149.709" y="267.268"/>
<use xlink:href="#glyph1-4" x="158.841715" y="267.268"/>
<use xlink:href="#glyph1-22" x="163.270091" y="267.268"/>
<use xlink:href="#glyph1-5" x="168.805312" y="267.268"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="139.746" y="279.223"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="149.709" y="279.223"/>
<use xlink:href="#glyph1-18" x="158.841715" y="279.223"/>
<use xlink:href="#glyph1-39" x="163.823015" y="279.223"/>
<use xlink:href="#glyph1-39" x="168.251391" y="279.223"/>
<use xlink:href="#glyph1-7" x="172.679767" y="279.223"/>
<use xlink:href="#glyph1-16" x="177.661067" y="279.223"/>
<use xlink:href="#glyph1-4" x="181.563417" y="279.223"/>
<use xlink:href="#glyph1-5" x="185.991793" y="279.223"/>
<use xlink:href="#glyph1-5" x="188.759403" y="279.223"/>
<use xlink:href="#glyph1-7" x="191.527014" y="279.223"/>
<use xlink:href="#glyph1-10" x="149.709" y="279.223"/>
<use xlink:href="#glyph1-19" x="158.841715" y="279.223"/>
<use xlink:href="#glyph1-5" x="161.609326" y="279.223"/>
<use xlink:href="#glyph1-38" x="164.376936" y="279.223"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-22" x="168.526359" y="279.223"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="139.746" y="291.178"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="149.709" y="291.178"/>
<use xlink:href="#glyph1-4" x="158.841715" y="291.178"/>
<use xlink:href="#glyph1-21" x="163.270091" y="291.178"/>
<use xlink:href="#glyph1-5" x="168.805312" y="291.178"/>
<use xlink:href="#glyph1-39" x="149.709" y="291.178"/>
<use xlink:href="#glyph1-7" x="155.244221" y="291.178"/>
<use xlink:href="#glyph1-5" x="160.225521" y="291.178"/>
<use xlink:href="#glyph1-12" x="162.993131" y="291.178"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="139.746" y="303.134"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="149.709" y="303.134"/>
<use xlink:href="#glyph1-15" x="158.841715" y="303.134"/>
<use xlink:href="#glyph1-5" x="161.609326" y="303.134"/>
<use xlink:href="#glyph1-43" x="164.376936" y="303.134"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-21" x="168.526359" y="303.134"/>
<use xlink:href="#glyph1-18" x="149.709" y="303.134"/>
<use xlink:href="#glyph1-40" x="156.489546" y="303.134"/>
<use xlink:href="#glyph1-4" x="159.534116" y="303.134"/>
<use xlink:href="#glyph1-41" x="163.962492" y="303.134"/>
<use xlink:href="#glyph1-4" x="169.773676" y="303.134"/>
<use xlink:href="#glyph1-13" x="174.202052" y="303.134"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -10,6 +10,7 @@
\begin{compactitem}
\item Nudelplatten
\item Mozzarella
\item Gemüse \begin{compactitem}
\item Passierte Tomaten
\item Möhren
@ -20,12 +21,11 @@
\item Oregano
\item Basilikum
\item Rosmarin
\item Salz
\item Pfeffer
\end{compactenum}
\item Mozzarella
\item Mehl
\item Milch
\item Salz
\item Pfeffer
\end{compactitem}
\end{document}

View File

@ -14,6 +14,8 @@
<pre class="lang-tex hljs"><code>\begin{equation}
2 \sqrt{\frac{\pi^2}{3} \cdot c_2}
\end{equation}</code></pre>
<p>Die Nummerierung kann durch durch einen »\*« in <code>\begin{equation\*}</code> und <code>\end{equation\*}</code> unterdrückt werden.</p>
<p>Pakete: <code>amsmath</code>, <code>amsthm</code>, <code>amssymb</code>, <code>mathtools</code></p>
</div>
<div class="layout-preview">
<img src="sections/german/09/simple-maths-crop.svg" style="max-height: 100%;">
@ -50,18 +52,6 @@
<td>`$`<code>12 \leq 4 x^2 + 13$</code></td>
<td>$12 \leq 4 x^2 + 13$</td>
</tr>
<tr class="fragment">
<td>`$`<code>(A \cup B) \cap C$</code></td>
<td>$(A \cup B) \cap C$</td>
</tr>
<tr class="fragment">
<td>`$`<code>(A \lor B) \land C$</code></td>
<td>$(A \lor B) \land C$</td>
</tr>
<tr class="fragment">
<td>`$`<code>(A \cdot B) \times C$</code></td>
<td>$(A \cdot B) \times C$</td>
</tr>
</table>
<p class="fragment">Durch <code>$</code><code>^{…}$</code> und <code>$</code><code>&lowbar;{…}$</code> werden Inhalte hoch- oder tiefgestellt.</p>
</div>
@ -77,22 +67,34 @@
<th>Quelltext</th>
<th>Ergebnis</th>
</tr>
<tr class="fragment">
<tr>
<td>`$`<code>(x), [x], \lbrace x\rbrace, \lvert x\rvert$</code></td>
<td>$(x), [x], \lbrace x\rbrace, \lvert x\rvert$</td>
</tr>
<tr class="fragment">
<tr>
<td>`$`<code>\exists,\forall,\in,\notin,\infty$</code></td>
<td>$\exists,\forall,\in,\notin,\infty$</td>
</tr>
<tr class="fragment">
<tr>
<td>`$`<code>\alpha, \beta, \Gamma, \Delta, \varepsilon, \pi$</code></td>
<td>$\alpha, \beta, \Gamma, \Delta, \varepsilon, \pi$</td>
</tr>
<tr class="fragment">
<tr>
<td>`$`<code>\rightarrow, \leftarrow, \Rightarrow, \Leftarrow, \Leftrightarrow$</code></td>
<td>$\rightarrow, \leftarrow, \Rightarrow, \Leftarrow, \Leftrightarrow$</td>
</tr>
<tr>
<td>`$`<code>(A \cup B) \cap C$</code></td>
<td>$(A \cup B) \cap C$</td>
</tr>
<tr>
<td>`$`<code>(A \lor B) \land C$</code></td>
<td>$(A \lor B) \land C$</td>
</tr>
<tr>
<td>`$`<code>(A \cdot B) \times C$</code></td>
<td>$(A \cdot B) \times C$</td>
</tr>
</table>
</div>
</div>
@ -108,21 +110,68 @@
<th>Ergebnis</th>
</tr>
<tr class="fragment">
<td>`$`<code>\left(\frac{1}{2} \right)$</code></td>
<td>`$`<code>\left( \frac{1}{2} \right)$</code></td>
<td>$\left(\frac{1}{2} \right)$</td>
</tr>
<tr class="fragment">
<td>`$`<code>\left\lbrace\frac{1}{2} \right\rbrace$</code></td>
<td>`$`<code>\left\lbrace \frac{1}{2} \right\rbrace$</code></td>
<td>$\left\lbrace\frac{1}{2} \right\rbrace$</td>
</tr>
<tr class="fragment">
<td>`$`<code>\left[\frac{1}{2} \right]$</code></td>
<td>`$`<code>\left[ \frac{1}{2} \right]$</code></td>
<td>$\left[\frac{1}{2} \right]$</td>
</tr>
</table>
<pre class="fragment"><code>$4 \cdot \left(\frac{1}{2} + 12 \cdot \left(\frac{1}{2} \right) + 86 \cdot \left(\frac{1}{2} \right) \right)$</code></pre>
<p class="fragment" style="text-align: center;">$4 \cdot \left(\frac{1}{2} + 12 \cdot \left(\frac{1}{2 + 86 \cdot \left(\frac{1}{2} \right)} \right) \right)$</p>
<pre class="fragment hljs lang-tex"><code>$4 \cdot \left(\frac{1}{2} + \frac{3}{12 \cdot \left(\ 2 + frac{1}{26 \cdot \left(\frac{1}{2} \+ 24 right)} \right) }\right)$</code></pre>
<p class="fragment" style="text-align: center;">$4 \cdot \left(\frac{1}{2} +\frac{3}{ 12 \cdot \left( 2 + \frac{1}{86 \cdot \left(\frac{1}{2} + 24 \right)} \right)} \right)$</p>
</div>
</div>
TODO: Was kann amsmath, was amsthm?
---
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Darstellung von Grenzen</h2>
<p>Mit dem Befehl <code>\limits</code> lassen sich die Grenzen von Integralen unter und über dem Integralzeichen darstellen. Bei Summen, Produkten und Grenzwerten geschieht das automatisch.</p>
<pre class="hljs lang-tex"><code>\sum\_{i=1}^{n^2}(x+2)
\prod\_{j=1}^{100}(3 \cdot x)
\lim\_{x \rightarrow \infty}(14x^3 - 12)
\int\limits\_{-12}^{4}(14x^3 - 12)</code></pre>
<p data-category="Achtung!">Der Einsatz von <code>\limits</code> sollte im Fließtext vermieden werden.</p>
</div>
<div class="layout-preview">
<img src="sections/german/09/limits-crop.svg">
</div>
</div>
---
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Ausrichtung von mehreren Gleichungen</h2>
<p>Die Umgebung <code>align</code> erlaubt es, Gleichungen zum Beispiel am »=« auszurichten.</p>
<pre class="hljs lang-tex"><code>\begin{align}
13 \cdot (4a - 3)^2 &= 13 \cdot (16a^2 - 24a + 9) \\\\
&= 208a^2 - 312a + 117
\end{align}</code></pre>
<ul>
<li class="fragment">Ausgerichtet wird am »&«-Zeichen.</li>
<li class="fragment">Zeilenumbrüche werden mit »\\\\« eingefügt.</li>
<li class="fragment">Die Nummerierung kann auch hier durch durch einen »\*« in <code>\begin{align\*}</code> und <code>\end{align\*}</code> unterdrückt werden.</li>
</ul>
</div>
<div class="layout-preview">
<img src="sections/german/09/alignment-crop.svg">
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2 data-category="Aufgabe" data-task="8">Formeln setzen</h2>
<ul>
<li class="fragment"></li>
</ul>
</div>
</div>

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="251pt" height="28pt" viewBox="0 0 251 28" version="1.1">
<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 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.296875 2.390625 C 3.296875 2.359375 3.296875 2.34375 3.125 2.171875 C 1.890625 0.921875 1.5625 -0.96875 1.5625 -2.5 C 1.5625 -4.234375 1.9375 -5.96875 3.171875 -7.203125 C 3.296875 -7.328125 3.296875 -7.34375 3.296875 -7.375 C 3.296875 -7.453125 3.265625 -7.484375 3.203125 -7.484375 C 3.09375 -7.484375 2.203125 -6.796875 1.609375 -5.53125 C 1.109375 -4.4375 0.984375 -3.328125 0.984375 -2.5 C 0.984375 -1.71875 1.09375 -0.515625 1.640625 0.625 C 2.25 1.84375 3.09375 2.5 3.203125 2.5 C 3.265625 2.5 3.296875 2.46875 3.296875 2.390625 Z M 3.296875 2.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.6875 -1.640625 L 4.6875 -1.953125 L 3.703125 -1.953125 L 3.703125 -6.484375 C 3.703125 -6.6875 3.703125 -6.75 3.53125 -6.75 C 3.453125 -6.75 3.421875 -6.75 3.34375 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 L 2.9375 -1.640625 L 2.9375 -0.78125 C 2.9375 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.96875 -0.3125 L 1.96875 0 C 2.375 -0.03125 2.890625 -0.03125 3.3125 -0.03125 C 3.734375 -0.03125 4.25 -0.03125 4.671875 0 L 4.671875 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.703125 -0.421875 3.703125 -0.78125 L 3.703125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.671875 Z M 2.984375 -1.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 2.875 -2.5 C 2.875 -3.265625 2.765625 -4.46875 2.21875 -5.609375 C 1.625 -6.828125 0.765625 -7.484375 0.671875 -7.484375 C 0.609375 -7.484375 0.5625 -7.4375 0.5625 -7.375 C 0.5625 -7.34375 0.5625 -7.328125 0.75 -7.140625 C 1.734375 -6.15625 2.296875 -4.578125 2.296875 -2.5 C 2.296875 -0.78125 1.9375 0.96875 0.703125 2.21875 C 0.5625 2.34375 0.5625 2.359375 0.5625 2.390625 C 0.5625 2.453125 0.609375 2.5 0.671875 2.5 C 0.765625 2.5 1.671875 1.8125 2.25 0.546875 C 2.765625 -0.546875 2.875 -1.65625 2.875 -2.5 Z M 2.875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 7.1875 -3.453125 C 7.1875 -3.65625 7 -3.65625 6.859375 -3.65625 L 0.890625 -3.65625 C 0.75 -3.65625 0.5625 -3.65625 0.5625 -3.453125 C 0.5625 -3.265625 0.75 -3.265625 0.890625 -3.265625 L 6.84375 -3.265625 C 7 -3.265625 7.1875 -3.265625 7.1875 -3.453125 Z M 7.1875 -1.53125 C 7.1875 -1.71875 7 -1.71875 6.84375 -1.71875 L 0.890625 -1.71875 C 0.75 -1.71875 0.5625 -1.71875 0.5625 -1.53125 C 0.5625 -1.328125 0.75 -1.328125 0.890625 -1.328125 L 6.859375 -1.328125 C 7 -1.328125 7.1875 -1.328125 7.1875 -1.53125 Z M 7.1875 -1.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.5625 -2.03125 C 4.5625 -3.296875 3.671875 -4.25 2.5625 -4.25 C 1.890625 -4.25 1.515625 -3.75 1.3125 -3.265625 L 1.3125 -3.515625 C 1.3125 -6.03125 2.546875 -6.390625 3.0625 -6.390625 C 3.296875 -6.390625 3.71875 -6.328125 3.9375 -5.984375 C 3.78125 -5.984375 3.390625 -5.984375 3.390625 -5.546875 C 3.390625 -5.234375 3.625 -5.078125 3.84375 -5.078125 C 4 -5.078125 4.3125 -5.171875 4.3125 -5.5625 C 4.3125 -6.15625 3.875 -6.640625 3.046875 -6.640625 C 1.765625 -6.640625 0.421875 -5.359375 0.421875 -3.15625 C 0.421875 -0.484375 1.578125 0.21875 2.5 0.21875 C 3.609375 0.21875 4.5625 -0.71875 4.5625 -2.03125 Z M 3.65625 -2.046875 C 3.65625 -1.5625 3.65625 -1.0625 3.484375 -0.703125 C 3.1875 -0.109375 2.734375 -0.0625 2.5 -0.0625 C 1.875 -0.0625 1.578125 -0.65625 1.515625 -0.8125 C 1.328125 -1.28125 1.328125 -2.078125 1.328125 -2.25 C 1.328125 -3.03125 1.65625 -4.03125 2.546875 -4.03125 C 2.71875 -4.03125 3.171875 -4.03125 3.484375 -3.40625 C 3.65625 -3.046875 3.65625 -2.53125 3.65625 -2.046875 Z M 3.65625 -2.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 7.1875 -2.5 C 7.1875 -2.6875 7 -2.6875 6.859375 -2.6875 L 4.078125 -2.6875 L 4.078125 -5.484375 C 4.078125 -5.625 4.078125 -5.8125 3.875 -5.8125 C 3.671875 -5.8125 3.671875 -5.625 3.671875 -5.484375 L 3.671875 -2.6875 L 0.890625 -2.6875 C 0.75 -2.6875 0.5625 -2.6875 0.5625 -2.5 C 0.5625 -2.296875 0.75 -2.296875 0.890625 -2.296875 L 3.671875 -2.296875 L 3.671875 0.5 C 3.671875 0.640625 3.671875 0.828125 3.875 0.828125 C 4.078125 0.828125 4.078125 0.640625 4.078125 0.5 L 4.078125 -2.296875 L 6.859375 -2.296875 C 7 -2.296875 7.1875 -2.296875 7.1875 -2.5 Z M 7.1875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 4.5625 -3.28125 C 4.5625 -5.96875 3.40625 -6.640625 2.515625 -6.640625 C 1.96875 -6.640625 1.484375 -6.453125 1.0625 -6.015625 C 0.640625 -5.5625 0.421875 -5.140625 0.421875 -4.390625 C 0.421875 -3.15625 1.296875 -2.171875 2.40625 -2.171875 C 3.015625 -2.171875 3.421875 -2.59375 3.65625 -3.171875 L 3.65625 -2.84375 C 3.65625 -0.515625 2.625 -0.0625 2.046875 -0.0625 C 1.875 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.25 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.34375 0.21875 4.5625 -1.140625 4.5625 -3.28125 Z M 3.640625 -4.203125 C 3.640625 -3.375 3.296875 -2.40625 2.421875 -2.40625 C 2.265625 -2.40625 1.796875 -2.40625 1.5 -3.03125 C 1.3125 -3.40625 1.3125 -3.890625 1.3125 -4.390625 C 1.3125 -4.921875 1.3125 -5.390625 1.53125 -5.765625 C 1.796875 -6.265625 2.171875 -6.390625 2.515625 -6.390625 C 2.984375 -6.390625 3.3125 -6.046875 3.484375 -5.609375 C 3.59375 -5.28125 3.640625 -4.65625 3.640625 -4.203125 Z M 3.640625 -4.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 Z M 3.765625 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 4.5625 -1.671875 C 4.5625 -2.03125 4.453125 -2.484375 4.0625 -2.90625 C 3.875 -3.109375 3.71875 -3.203125 3.078125 -3.609375 C 3.796875 -3.984375 4.28125 -4.5 4.28125 -5.15625 C 4.28125 -6.078125 3.40625 -6.640625 2.5 -6.640625 C 1.5 -6.640625 0.6875 -5.90625 0.6875 -4.96875 C 0.6875 -4.796875 0.703125 -4.34375 1.125 -3.875 C 1.234375 -3.765625 1.609375 -3.515625 1.859375 -3.34375 C 1.28125 -3.046875 0.421875 -2.5 0.421875 -1.5 C 0.421875 -0.453125 1.4375 0.21875 2.484375 0.21875 C 3.609375 0.21875 4.5625 -0.609375 4.5625 -1.671875 Z M 3.84375 -5.15625 C 3.84375 -4.578125 3.453125 -4.109375 2.859375 -3.765625 L 1.625 -4.5625 C 1.171875 -4.859375 1.125 -5.1875 1.125 -5.359375 C 1.125 -5.96875 1.78125 -6.390625 2.484375 -6.390625 C 3.203125 -6.390625 3.84375 -5.875 3.84375 -5.15625 Z M 4.0625 -1.3125 C 4.0625 -0.578125 3.3125 -0.0625 2.5 -0.0625 C 1.640625 -0.0625 0.921875 -0.671875 0.921875 -1.5 C 0.921875 -2.078125 1.234375 -2.71875 2.078125 -3.1875 L 3.3125 -2.40625 C 3.59375 -2.21875 4.0625 -1.921875 4.0625 -1.3125 Z M 4.0625 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 4.828125 -6.421875 L 2.40625 -6.421875 C 1.203125 -6.421875 1.171875 -6.546875 1.140625 -6.734375 L 0.890625 -6.734375 L 0.5625 -4.6875 L 0.8125 -4.6875 C 0.84375 -4.84375 0.921875 -5.46875 1.0625 -5.59375 C 1.125 -5.65625 1.90625 -5.65625 2.03125 -5.65625 L 4.09375 -5.65625 L 2.984375 -4.078125 C 2.078125 -2.734375 1.75 -1.34375 1.75 -0.328125 C 1.75 -0.234375 1.75 0.21875 2.21875 0.21875 C 2.671875 0.21875 2.671875 -0.234375 2.671875 -0.328125 L 2.671875 -0.84375 C 2.671875 -1.390625 2.703125 -1.9375 2.78125 -2.46875 C 2.828125 -2.703125 2.953125 -3.5625 3.40625 -4.171875 L 4.75 -6.078125 C 4.828125 -6.1875 4.828125 -6.203125 4.828125 -6.421875 Z M 4.828125 -6.421875 "/>
</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.90625 -2.5 C 1.90625 -2.78125 1.671875 -3.015625 1.390625 -3.015625 C 1.09375 -3.015625 0.859375 -2.78125 0.859375 -2.5 C 0.859375 -2.203125 1.09375 -1.96875 1.390625 -1.96875 C 1.671875 -1.96875 1.90625 -2.203125 1.90625 -2.5 Z M 1.90625 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 6.921875 -2.5 C 6.921875 -2.6875 6.734375 -2.6875 6.59375 -2.6875 L 1.15625 -2.6875 C 1.015625 -2.6875 0.828125 -2.6875 0.828125 -2.5 C 0.828125 -2.296875 1.015625 -2.296875 1.15625 -2.296875 L 6.59375 -2.296875 C 6.734375 -2.296875 6.921875 -2.296875 6.921875 -2.5 Z M 6.921875 -2.5 "/>
</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 4.96875 -1.421875 C 4.96875 -1.53125 4.875 -1.53125 4.84375 -1.53125 C 4.75 -1.53125 4.734375 -1.484375 4.703125 -1.34375 C 4.53125 -0.703125 4.359375 -0.109375 3.953125 -0.109375 C 3.671875 -0.109375 3.65625 -0.375 3.65625 -0.5625 C 3.65625 -0.78125 3.671875 -0.875 3.78125 -1.3125 L 4 -2.203125 L 4.359375 -3.59375 C 4.421875 -3.875 4.421875 -3.890625 4.421875 -3.9375 C 4.421875 -4.109375 4.3125 -4.203125 4.140625 -4.203125 C 3.890625 -4.203125 3.75 -3.984375 3.71875 -3.765625 C 3.53125 -4.140625 3.25 -4.40625 2.796875 -4.40625 C 1.640625 -4.40625 0.40625 -2.9375 0.40625 -1.484375 C 0.40625 -0.546875 0.953125 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.421875 0.0625 3.015625 -0.640625 C 3.09375 -0.21875 3.453125 0.109375 3.921875 0.109375 C 4.28125 0.109375 4.5 -0.125 4.671875 -0.4375 C 4.828125 -0.796875 4.96875 -1.421875 4.96875 -1.421875 Z M 3.5625 -3.140625 L 3.078125 -1.1875 C 3.015625 -1 3.015625 -0.984375 2.875 -0.8125 C 2.4375 -0.265625 2.03125 -0.109375 1.75 -0.109375 C 1.25 -0.109375 1.109375 -0.65625 1.109375 -1.046875 C 1.109375 -1.546875 1.421875 -2.765625 1.65625 -3.234375 C 1.96875 -3.8125 2.40625 -4.1875 2.8125 -4.1875 C 3.453125 -4.1875 3.59375 -3.375 3.59375 -3.3125 C 3.59375 -3.25 3.578125 -3.1875 3.5625 -3.140625 Z M 3.5625 -3.140625 "/>
</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 3.515625 -1.265625 L 3.28125 -1.265625 C 3.265625 -1.109375 3.1875 -0.703125 3.09375 -0.640625 C 3.046875 -0.59375 2.515625 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.109375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.609375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.625 1.890625 -4.625 C 1.03125 -4.625 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.03125 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.109375 1.171875 -3.359375 C 1.171875 -3.484375 1.125 -3.734375 0.765625 -3.734375 C 0.984375 -4.21875 1.453125 -4.375 1.78125 -4.375 C 2.484375 -4.375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.1875 2.1875 -1.9375 L 0.515625 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.3125 0 Z M 3.515625 -1.265625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="0.041" y="8.789"/>
<use xlink:href="#glyph0-2" x="5.0223" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="12.218" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="17.199" y="8.789"/>
<use xlink:href="#glyph0-4" x="21.073455" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="26.055" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="33.535" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="43.497" y="8.789"/>
<use xlink:href="#glyph0-5" x="48.4783" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="52.353" y="4.675"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="59.59" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="70.108513" y="8.789"/>
<use xlink:href="#glyph0-2" x="75.089813" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="82.282" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="87.264" y="8.789"/>
<use xlink:href="#glyph0-1" x="91.138455" y="8.789"/>
<use xlink:href="#glyph0-7" x="96.119755" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="101.101" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="106.367" y="4.675"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="113.05" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="123.013" y="8.789"/>
<use xlink:href="#glyph0-4" x="127.9943" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="132.975" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="140.455" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="150.415607" y="8.789"/>
<use xlink:href="#glyph0-5" x="155.396907" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="238.783" y="8.789"/>
<use xlink:href="#glyph0-1" x="242.657455" y="8.789"/>
<use xlink:href="#glyph0-5" x="247.638755" y="8.789"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="59.59" y="24.968"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="70.108513" y="24.968"/>
<use xlink:href="#glyph0-11" x="75.089813" y="24.968"/>
<use xlink:href="#glyph0-12" x="80.071113" y="24.968"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="85.05" y="24.968"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="90.316" y="20.855"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="96.999" y="24.968"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="106.962" y="24.968"/>
<use xlink:href="#glyph0-1" x="111.9433" y="24.968"/>
<use xlink:href="#glyph0-8" x="116.9246" y="24.968"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="121.906" y="24.968"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="129.386" y="24.968"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="139.346607" y="24.968"/>
<use xlink:href="#glyph0-1" x="144.327907" y="24.968"/>
<use xlink:href="#glyph0-13" x="149.309207" y="24.968"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="238.783" y="24.968"/>
<use xlink:href="#glyph0-8" x="242.657455" y="24.968"/>
<use xlink:href="#glyph0-5" x="247.638755" y="24.968"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" version="1.1">
<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 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.296875 2.390625 C 3.296875 2.359375 3.296875 2.34375 3.125 2.171875 C 1.890625 0.921875 1.5625 -0.96875 1.5625 -2.5 C 1.5625 -4.234375 1.9375 -5.96875 3.171875 -7.203125 C 3.296875 -7.328125 3.296875 -7.34375 3.296875 -7.375 C 3.296875 -7.453125 3.265625 -7.484375 3.203125 -7.484375 C 3.09375 -7.484375 2.203125 -6.796875 1.609375 -5.53125 C 1.109375 -4.4375 0.984375 -3.328125 0.984375 -2.5 C 0.984375 -1.71875 1.09375 -0.515625 1.640625 0.625 C 2.25 1.84375 3.09375 2.5 3.203125 2.5 C 3.265625 2.5 3.296875 2.46875 3.296875 2.390625 Z M 3.296875 2.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.6875 -1.640625 L 4.6875 -1.953125 L 3.703125 -1.953125 L 3.703125 -6.484375 C 3.703125 -6.6875 3.703125 -6.75 3.53125 -6.75 C 3.453125 -6.75 3.421875 -6.75 3.34375 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 L 2.9375 -1.640625 L 2.9375 -0.78125 C 2.9375 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.96875 -0.3125 L 1.96875 0 C 2.375 -0.03125 2.890625 -0.03125 3.3125 -0.03125 C 3.734375 -0.03125 4.25 -0.03125 4.671875 0 L 4.671875 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.703125 -0.421875 3.703125 -0.78125 L 3.703125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.671875 Z M 2.984375 -1.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 2.875 -2.5 C 2.875 -3.265625 2.765625 -4.46875 2.21875 -5.609375 C 1.625 -6.828125 0.765625 -7.484375 0.671875 -7.484375 C 0.609375 -7.484375 0.5625 -7.4375 0.5625 -7.375 C 0.5625 -7.34375 0.5625 -7.328125 0.75 -7.140625 C 1.734375 -6.15625 2.296875 -4.578125 2.296875 -2.5 C 2.296875 -0.78125 1.9375 0.96875 0.703125 2.21875 C 0.5625 2.34375 0.5625 2.359375 0.5625 2.390625 C 0.5625 2.453125 0.609375 2.5 0.671875 2.5 C 0.765625 2.5 1.671875 1.8125 2.25 0.546875 C 2.765625 -0.546875 2.875 -1.65625 2.875 -2.5 Z M 2.875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 7.1875 -3.453125 C 7.1875 -3.65625 7 -3.65625 6.859375 -3.65625 L 0.890625 -3.65625 C 0.75 -3.65625 0.5625 -3.65625 0.5625 -3.453125 C 0.5625 -3.265625 0.75 -3.265625 0.890625 -3.265625 L 6.84375 -3.265625 C 7 -3.265625 7.1875 -3.265625 7.1875 -3.453125 Z M 7.1875 -1.53125 C 7.1875 -1.71875 7 -1.71875 6.84375 -1.71875 L 0.890625 -1.71875 C 0.75 -1.71875 0.5625 -1.71875 0.5625 -1.53125 C 0.5625 -1.328125 0.75 -1.328125 0.890625 -1.328125 L 6.859375 -1.328125 C 7 -1.328125 7.1875 -1.328125 7.1875 -1.53125 Z M 7.1875 -1.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.5625 -2.03125 C 4.5625 -3.296875 3.671875 -4.25 2.5625 -4.25 C 1.890625 -4.25 1.515625 -3.75 1.3125 -3.265625 L 1.3125 -3.515625 C 1.3125 -6.03125 2.546875 -6.390625 3.0625 -6.390625 C 3.296875 -6.390625 3.71875 -6.328125 3.9375 -5.984375 C 3.78125 -5.984375 3.390625 -5.984375 3.390625 -5.546875 C 3.390625 -5.234375 3.625 -5.078125 3.84375 -5.078125 C 4 -5.078125 4.3125 -5.171875 4.3125 -5.5625 C 4.3125 -6.15625 3.875 -6.640625 3.046875 -6.640625 C 1.765625 -6.640625 0.421875 -5.359375 0.421875 -3.15625 C 0.421875 -0.484375 1.578125 0.21875 2.5 0.21875 C 3.609375 0.21875 4.5625 -0.71875 4.5625 -2.03125 Z M 3.65625 -2.046875 C 3.65625 -1.5625 3.65625 -1.0625 3.484375 -0.703125 C 3.1875 -0.109375 2.734375 -0.0625 2.5 -0.0625 C 1.875 -0.0625 1.578125 -0.65625 1.515625 -0.8125 C 1.328125 -1.28125 1.328125 -2.078125 1.328125 -2.25 C 1.328125 -3.03125 1.65625 -4.03125 2.546875 -4.03125 C 2.71875 -4.03125 3.171875 -4.03125 3.484375 -3.40625 C 3.65625 -3.046875 3.65625 -2.53125 3.65625 -2.046875 Z M 3.65625 -2.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 7.1875 -2.5 C 7.1875 -2.6875 7 -2.6875 6.859375 -2.6875 L 4.078125 -2.6875 L 4.078125 -5.484375 C 4.078125 -5.625 4.078125 -5.8125 3.875 -5.8125 C 3.671875 -5.8125 3.671875 -5.625 3.671875 -5.484375 L 3.671875 -2.6875 L 0.890625 -2.6875 C 0.75 -2.6875 0.5625 -2.6875 0.5625 -2.5 C 0.5625 -2.296875 0.75 -2.296875 0.890625 -2.296875 L 3.671875 -2.296875 L 3.671875 0.5 C 3.671875 0.640625 3.671875 0.828125 3.875 0.828125 C 4.078125 0.828125 4.078125 0.640625 4.078125 0.5 L 4.078125 -2.296875 L 6.859375 -2.296875 C 7 -2.296875 7.1875 -2.296875 7.1875 -2.5 Z M 7.1875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 4.5625 -3.28125 C 4.5625 -5.96875 3.40625 -6.640625 2.515625 -6.640625 C 1.96875 -6.640625 1.484375 -6.453125 1.0625 -6.015625 C 0.640625 -5.5625 0.421875 -5.140625 0.421875 -4.390625 C 0.421875 -3.15625 1.296875 -2.171875 2.40625 -2.171875 C 3.015625 -2.171875 3.421875 -2.59375 3.65625 -3.171875 L 3.65625 -2.84375 C 3.65625 -0.515625 2.625 -0.0625 2.046875 -0.0625 C 1.875 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.25 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.34375 0.21875 4.5625 -1.140625 4.5625 -3.28125 Z M 3.640625 -4.203125 C 3.640625 -3.375 3.296875 -2.40625 2.421875 -2.40625 C 2.265625 -2.40625 1.796875 -2.40625 1.5 -3.03125 C 1.3125 -3.40625 1.3125 -3.890625 1.3125 -4.390625 C 1.3125 -4.921875 1.3125 -5.390625 1.53125 -5.765625 C 1.796875 -6.265625 2.171875 -6.390625 2.515625 -6.390625 C 2.984375 -6.390625 3.3125 -6.046875 3.484375 -5.609375 C 3.59375 -5.28125 3.640625 -4.65625 3.640625 -4.203125 Z M 3.640625 -4.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 Z M 3.765625 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 4.5625 -1.671875 C 4.5625 -2.03125 4.453125 -2.484375 4.0625 -2.90625 C 3.875 -3.109375 3.71875 -3.203125 3.078125 -3.609375 C 3.796875 -3.984375 4.28125 -4.5 4.28125 -5.15625 C 4.28125 -6.078125 3.40625 -6.640625 2.5 -6.640625 C 1.5 -6.640625 0.6875 -5.90625 0.6875 -4.96875 C 0.6875 -4.796875 0.703125 -4.34375 1.125 -3.875 C 1.234375 -3.765625 1.609375 -3.515625 1.859375 -3.34375 C 1.28125 -3.046875 0.421875 -2.5 0.421875 -1.5 C 0.421875 -0.453125 1.4375 0.21875 2.484375 0.21875 C 3.609375 0.21875 4.5625 -0.609375 4.5625 -1.671875 Z M 3.84375 -5.15625 C 3.84375 -4.578125 3.453125 -4.109375 2.859375 -3.765625 L 1.625 -4.5625 C 1.171875 -4.859375 1.125 -5.1875 1.125 -5.359375 C 1.125 -5.96875 1.78125 -6.390625 2.484375 -6.390625 C 3.203125 -6.390625 3.84375 -5.875 3.84375 -5.15625 Z M 4.0625 -1.3125 C 4.0625 -0.578125 3.3125 -0.0625 2.5 -0.0625 C 1.640625 -0.0625 0.921875 -0.671875 0.921875 -1.5 C 0.921875 -2.078125 1.234375 -2.71875 2.078125 -3.1875 L 3.3125 -2.40625 C 3.59375 -2.21875 4.0625 -1.921875 4.0625 -1.3125 Z M 4.0625 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 4.828125 -6.421875 L 2.40625 -6.421875 C 1.203125 -6.421875 1.171875 -6.546875 1.140625 -6.734375 L 0.890625 -6.734375 L 0.5625 -4.6875 L 0.8125 -4.6875 C 0.84375 -4.84375 0.921875 -5.46875 1.0625 -5.59375 C 1.125 -5.65625 1.90625 -5.65625 2.03125 -5.65625 L 4.09375 -5.65625 L 2.984375 -4.078125 C 2.078125 -2.734375 1.75 -1.34375 1.75 -0.328125 C 1.75 -0.234375 1.75 0.21875 2.21875 0.21875 C 2.671875 0.21875 2.671875 -0.234375 2.671875 -0.328125 L 2.671875 -0.84375 C 2.671875 -1.390625 2.703125 -1.9375 2.78125 -2.46875 C 2.828125 -2.703125 2.953125 -3.5625 3.40625 -4.171875 L 4.75 -6.078125 C 4.828125 -6.1875 4.828125 -6.203125 4.828125 -6.421875 Z M 4.828125 -6.421875 "/>
</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.90625 -2.5 C 1.90625 -2.78125 1.671875 -3.015625 1.390625 -3.015625 C 1.09375 -3.015625 0.859375 -2.78125 0.859375 -2.5 C 0.859375 -2.203125 1.09375 -1.96875 1.390625 -1.96875 C 1.671875 -1.96875 1.90625 -2.203125 1.90625 -2.5 Z M 1.90625 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 6.921875 -2.5 C 6.921875 -2.6875 6.734375 -2.6875 6.59375 -2.6875 L 1.15625 -2.6875 C 1.015625 -2.6875 0.828125 -2.6875 0.828125 -2.5 C 0.828125 -2.296875 1.015625 -2.296875 1.15625 -2.296875 L 6.59375 -2.296875 C 6.734375 -2.296875 6.921875 -2.296875 6.921875 -2.5 Z M 6.921875 -2.5 "/>
</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 4.96875 -1.421875 C 4.96875 -1.53125 4.875 -1.53125 4.84375 -1.53125 C 4.75 -1.53125 4.734375 -1.484375 4.703125 -1.34375 C 4.53125 -0.703125 4.359375 -0.109375 3.953125 -0.109375 C 3.671875 -0.109375 3.65625 -0.375 3.65625 -0.5625 C 3.65625 -0.78125 3.671875 -0.875 3.78125 -1.3125 L 4 -2.203125 L 4.359375 -3.59375 C 4.421875 -3.875 4.421875 -3.890625 4.421875 -3.9375 C 4.421875 -4.109375 4.3125 -4.203125 4.140625 -4.203125 C 3.890625 -4.203125 3.75 -3.984375 3.71875 -3.765625 C 3.53125 -4.140625 3.25 -4.40625 2.796875 -4.40625 C 1.640625 -4.40625 0.40625 -2.9375 0.40625 -1.484375 C 0.40625 -0.546875 0.953125 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.421875 0.0625 3.015625 -0.640625 C 3.09375 -0.21875 3.453125 0.109375 3.921875 0.109375 C 4.28125 0.109375 4.5 -0.125 4.671875 -0.4375 C 4.828125 -0.796875 4.96875 -1.421875 4.96875 -1.421875 Z M 3.5625 -3.140625 L 3.078125 -1.1875 C 3.015625 -1 3.015625 -0.984375 2.875 -0.8125 C 2.4375 -0.265625 2.03125 -0.109375 1.75 -0.109375 C 1.25 -0.109375 1.109375 -0.65625 1.109375 -1.046875 C 1.109375 -1.546875 1.421875 -2.765625 1.65625 -3.234375 C 1.96875 -3.8125 2.40625 -4.1875 2.8125 -4.1875 C 3.453125 -4.1875 3.59375 -3.375 3.59375 -3.3125 C 3.59375 -3.25 3.578125 -3.1875 3.5625 -3.140625 Z M 3.5625 -3.140625 "/>
</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 3.515625 -1.265625 L 3.28125 -1.265625 C 3.265625 -1.109375 3.1875 -0.703125 3.09375 -0.640625 C 3.046875 -0.59375 2.515625 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.109375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.609375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.625 1.890625 -4.625 C 1.03125 -4.625 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.03125 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.109375 1.171875 -3.359375 C 1.171875 -3.484375 1.125 -3.734375 0.765625 -3.734375 C 0.984375 -4.21875 1.453125 -4.375 1.78125 -4.375 C 2.484375 -4.375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.1875 2.1875 -1.9375 L 0.515625 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.3125 0 Z M 3.515625 -1.265625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="217.041" y="157.679"/>
<use xlink:href="#glyph0-2" x="222.0223" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="229.218" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="234.199" y="157.679"/>
<use xlink:href="#glyph0-4" x="238.073455" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="243.055" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="250.535" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="260.497" y="157.679"/>
<use xlink:href="#glyph0-5" x="265.4783" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="269.353" y="153.565"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="276.59" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="287.108513" y="157.679"/>
<use xlink:href="#glyph0-2" x="292.089813" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="299.282" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="304.264" y="157.679"/>
<use xlink:href="#glyph0-1" x="308.138455" y="157.679"/>
<use xlink:href="#glyph0-7" x="313.119755" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="318.101" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="323.367" y="153.565"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="330.05" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="340.013" y="157.679"/>
<use xlink:href="#glyph0-4" x="344.9943" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="349.975" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="357.455" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="367.415607" y="157.679"/>
<use xlink:href="#glyph0-5" x="372.396907" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="455.783" y="157.679"/>
<use xlink:href="#glyph0-1" x="459.657455" y="157.679"/>
<use xlink:href="#glyph0-5" x="464.638755" y="157.679"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="276.59" y="173.858"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="287.108513" y="173.858"/>
<use xlink:href="#glyph0-11" x="292.089813" y="173.858"/>
<use xlink:href="#glyph0-12" x="297.071113" y="173.858"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="302.05" y="173.858"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="307.316" y="169.745"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="313.999" y="173.858"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="323.962" y="173.858"/>
<use xlink:href="#glyph0-1" x="328.9433" y="173.858"/>
<use xlink:href="#glyph0-8" x="333.9246" y="173.858"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="338.906" y="173.858"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="346.386" y="173.858"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="356.346607" y="173.858"/>
<use xlink:href="#glyph0-1" x="361.327907" y="173.858"/>
<use xlink:href="#glyph0-13" x="366.309207" y="173.858"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="455.783" y="173.858"/>
<use xlink:href="#glyph0-8" x="459.657455" y="173.858"/>
<use xlink:href="#glyph0-5" x="464.638755" y="173.858"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,14 @@
\documentclass[a4paper]{article}
\usepackage{lmodern}
\usepackage{amssymb,amsmath}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\begin{document}
\thispagestyle{empty}
\begin{align}
13 \cdot (4a - 3)^2 &= 13 \cdot (16a^2 - 24a + 9) \\
&= 208a^2 - 312a + 117
\end{align}
\end{document}

View File

@ -0,0 +1,243 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="70pt" height="137pt" viewBox="0 0 70 137" version="1.1">
<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 4.578125 -1 C 4.578125 -1.09375 4.5 -1.09375 4.46875 -1.09375 C 4.375 -1.09375 4.375 -1.046875 4.34375 -0.96875 C 4.1875 -0.40625 3.875 -0.125 3.609375 -0.125 C 3.453125 -0.125 3.421875 -0.21875 3.421875 -0.375 C 3.421875 -0.53125 3.46875 -0.625 3.59375 -0.9375 C 3.671875 -1.15625 3.953125 -1.890625 3.953125 -2.28125 C 3.953125 -2.953125 3.421875 -3.078125 3.046875 -3.078125 C 2.46875 -3.078125 2.078125 -2.71875 1.875 -2.4375 C 1.828125 -2.921875 1.421875 -3.078125 1.125 -3.078125 C 0.828125 -3.078125 0.671875 -2.859375 0.578125 -2.703125 C 0.421875 -2.4375 0.328125 -2.046875 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.9375 0.59375 -2.125 C 0.703125 -2.53125 0.84375 -2.875 1.109375 -2.875 C 1.296875 -2.875 1.34375 -2.71875 1.34375 -2.53125 C 1.34375 -2.40625 1.28125 -2.140625 1.21875 -1.953125 L 1.078125 -1.328125 L 0.84375 -0.4375 C 0.828125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.296875 -0.078125 C 1.328125 -0.140625 1.375 -0.375 1.421875 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.65625 -1.453125 1.6875 -1.609375 C 1.765625 -1.890625 1.78125 -1.953125 1.984375 -2.234375 C 2.171875 -2.515625 2.5 -2.875 3.03125 -2.875 C 3.421875 -2.875 3.4375 -2.515625 3.4375 -2.390625 C 3.4375 -1.96875 3.140625 -1.203125 3.03125 -0.90625 C 2.953125 -0.703125 2.921875 -0.640625 2.921875 -0.53125 C 2.921875 -0.15625 3.21875 0.0625 3.578125 0.0625 C 4.28125 0.0625 4.578125 -0.890625 4.578125 -1 Z M 4.578125 -1 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.265625 -4.359375 C 2.265625 -4.46875 2.171875 -4.625 1.984375 -4.625 C 1.796875 -4.625 1.59375 -4.4375 1.59375 -4.234375 C 1.59375 -4.125 1.671875 -3.96875 1.875 -3.96875 C 2.0625 -3.96875 2.265625 -4.171875 2.265625 -4.359375 Z M 2.4375 -1 C 2.4375 -1.09375 2.34375 -1.09375 2.328125 -1.09375 C 2.234375 -1.09375 2.21875 -1.046875 2.1875 -0.96875 C 2.03125 -0.40625 1.734375 -0.125 1.453125 -0.125 C 1.3125 -0.125 1.28125 -0.21875 1.28125 -0.375 C 1.28125 -0.53125 1.328125 -0.65625 1.390625 -0.8125 L 1.609375 -1.375 L 1.953125 -2.265625 C 1.984375 -2.328125 2 -2.40625 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.625 1.0625 -2.875 1.3125 -2.875 C 1.421875 -2.875 1.484375 -2.828125 1.484375 -2.640625 C 1.484375 -2.46875 1.453125 -2.375 1.28125 -1.9375 L 0.84375 -0.8125 C 0.8125 -0.71875 0.78125 -0.640625 0.78125 -0.515625 C 0.78125 -0.1875 1.046875 0.0625 1.4375 0.0625 C 2.125 0.0625 2.4375 -0.890625 2.4375 -1 Z M 2.4375 -1 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.0625 -4.359375 C 3.0625 -4.46875 2.96875 -4.625 2.78125 -4.625 C 2.578125 -4.625 2.390625 -4.421875 2.390625 -4.234375 C 2.390625 -4.125 2.46875 -3.96875 2.671875 -3.96875 C 2.859375 -3.96875 3.0625 -4.15625 3.0625 -4.359375 Z M 2.765625 -2.171875 C 2.78125 -2.25 2.796875 -2.3125 2.796875 -2.421875 C 2.796875 -2.796875 2.46875 -3.078125 2.0625 -3.078125 C 1.28125 -3.078125 0.84375 -2.109375 0.84375 -2 C 0.84375 -1.921875 0.9375 -1.921875 0.953125 -1.921875 C 1.03125 -1.921875 1.046875 -1.9375 1.09375 -2.046875 C 1.265625 -2.453125 1.625 -2.875 2.03125 -2.875 C 2.203125 -2.875 2.265625 -2.765625 2.265625 -2.53125 C 2.265625 -2.453125 2.265625 -2.359375 2.25 -2.328125 L 1.578125 0.34375 C 1.46875 0.828125 1.09375 1.21875 0.6875 1.21875 C 0.59375 1.21875 0.515625 1.21875 0.4375 1.1875 C 0.609375 1.09375 0.671875 0.9375 0.671875 0.828125 C 0.671875 0.65625 0.53125 0.578125 0.390625 0.578125 C 0.1875 0.578125 0 0.765625 0 0.984375 C 0 1.25 0.265625 1.421875 0.6875 1.421875 C 1.109375 1.421875 1.921875 1.171875 2.140625 0.328125 Z M 2.765625 -2.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" 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 "/>
</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 2.9375 -0.96875 L 2.71875 -0.96875 C 2.71875 -0.875 2.65625 -0.5625 2.578125 -0.515625 C 2.546875 -0.484375 2.125 -0.484375 2.046875 -0.484375 L 1.078125 -0.484375 C 1.40625 -0.71875 1.765625 -1 2.0625 -1.203125 C 2.515625 -1.515625 2.9375 -1.796875 2.9375 -2.328125 C 2.9375 -2.96875 2.328125 -3.3125 1.625 -3.3125 C 0.953125 -3.3125 0.453125 -2.9375 0.453125 -2.4375 C 0.453125 -2.1875 0.671875 -2.140625 0.75 -2.140625 C 0.875 -2.140625 1.03125 -2.234375 1.03125 -2.4375 C 1.03125 -2.609375 0.90625 -2.71875 0.75 -2.71875 C 0.890625 -2.953125 1.1875 -3.09375 1.515625 -3.09375 C 2 -3.09375 2.40625 -2.8125 2.40625 -2.328125 C 2.40625 -1.90625 2.109375 -1.578125 1.734375 -1.265625 L 0.515625 -0.234375 C 0.46875 -0.1875 0.453125 -0.1875 0.453125 -0.15625 L 0.453125 0 L 2.765625 0 Z M 2.9375 -0.96875 "/>
</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 13.828125 10.765625 L 13.578125 10.765625 C 13.1875 11.796875 12.125 12.484375 10.984375 12.78125 C 10.78125 12.828125 9.796875 13.09375 7.890625 13.09375 L 1.875 13.09375 L 6.953125 7.140625 C 7.015625 7.0625 7.03125 7.03125 7.03125 6.984375 C 7.03125 6.984375 7.03125 6.921875 6.96875 6.828125 L 2.328125 0.484375 L 7.78125 0.484375 C 9.125 0.484375 10.03125 0.625 10.125 0.640625 C 10.65625 0.71875 11.53125 0.890625 12.3125 1.390625 C 12.5625 1.546875 13.234375 2 13.578125 2.796875 L 13.828125 2.796875 L 12.625 0 L 0.84375 0 C 0.609375 0 0.59375 0.015625 0.5625 0.0625 C 0.5625 0.09375 0.5625 0.296875 0.5625 0.40625 L 5.828125 7.609375 L 0.671875 13.671875 C 0.5625 13.78125 0.5625 13.84375 0.5625 13.84375 C 0.5625 13.953125 0.65625 13.953125 0.84375 13.953125 L 12.625 13.953125 Z M 13.828125 10.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 12.171875 13.953125 L 12.171875 13.421875 C 10.84375 13.421875 10.53125 12.953125 10.53125 12.328125 L 10.53125 1.640625 C 10.53125 0.984375 10.859375 0.53125 12.171875 0.53125 L 12.171875 0 L 0.5625 0 L 0.5625 0.53125 C 1.890625 0.53125 2.1875 1 2.1875 1.640625 L 2.1875 12.328125 C 2.1875 12.96875 1.875 13.421875 0.5625 13.421875 L 0.5625 13.953125 L 5.359375 13.953125 L 5.359375 13.421875 C 4.03125 13.421875 3.71875 12.953125 3.71875 12.328125 L 3.71875 0.53125 L 9.015625 0.53125 L 9.015625 12.328125 C 9.015625 12.96875 8.6875 13.421875 7.375 13.421875 L 7.375 13.953125 Z M 12.171875 13.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 9.40625 0.921875 C 9.40625 0.390625 8.859375 0 8.3125 0 C 7.5625 0 7 1.09375 6.453125 3.125 C 6.421875 3.234375 5.0625 8.234375 3.96875 14.75 C 3.703125 16.28125 3.421875 17.9375 3.09375 19.328125 C 2.90625 20.0625 2.453125 21.9375 1.640625 21.9375 C 1.28125 21.9375 1.03125 21.703125 1.03125 21.703125 C 1.359375 21.6875 1.53125 21.46875 1.53125 21.21875 C 1.53125 20.890625 1.28125 20.71875 1.046875 20.71875 C 0.8125 20.71875 0.5625 20.875 0.5625 21.21875 C 0.5625 21.734375 1.0625 22.15625 1.671875 22.15625 C 3.1875 22.15625 3.75 19.8125 4.453125 16.921875 C 5.21875 13.78125 5.875 10.59375 6.40625 7.390625 C 6.78125 5.28125 7.140625 3.28125 7.484375 2 C 7.609375 1.5 7.9375 0.21875 8.328125 0.21875 C 8.640625 0.21875 8.890625 0.40625 8.9375 0.453125 C 8.609375 0.46875 8.4375 0.6875 8.4375 0.9375 C 8.4375 1.265625 8.6875 1.421875 8.90625 1.421875 C 9.15625 1.421875 9.40625 1.28125 9.40625 0.921875 Z M 9.40625 0.921875 "/>
</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 5.609375 -2.515625 C 5.609375 -2.6875 5.453125 -2.6875 5.359375 -2.6875 L 0.75 -2.6875 C 0.65625 -2.6875 0.484375 -2.6875 0.484375 -2.515625 C 0.484375 -2.34375 0.640625 -2.34375 0.75 -2.34375 L 5.359375 -2.34375 C 5.453125 -2.34375 5.609375 -2.34375 5.609375 -2.515625 Z M 5.609375 -0.96875 C 5.609375 -1.15625 5.453125 -1.15625 5.359375 -1.15625 L 0.75 -1.15625 C 0.640625 -1.15625 0.484375 -1.15625 0.484375 -0.96875 C 0.484375 -0.8125 0.65625 -0.8125 0.75 -0.8125 L 5.359375 -0.8125 C 5.453125 -0.8125 5.609375 -0.8125 5.609375 -0.96875 Z M 5.609375 -0.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 3.296875 0 L 3.296875 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.578125 L 2.328125 -4.4375 C 2.328125 -4.625 2.328125 -4.625 2.125 -4.625 C 1.671875 -4.1875 1.046875 -4.1875 0.765625 -4.1875 L 0.765625 -3.9375 C 0.921875 -3.9375 1.390625 -3.9375 1.765625 -4.125 L 1.765625 -0.578125 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.296875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 3.59375 -2.21875 C 3.59375 -2.984375 3.5 -3.546875 3.1875 -4.03125 C 2.96875 -4.34375 2.53125 -4.625 1.984375 -4.625 C 0.359375 -4.625 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.984375 0.140625 C 3.59375 0.140625 3.59375 -1.71875 3.59375 -2.21875 Z M 2.96875 -2.3125 C 2.96875 -1.796875 2.96875 -1.28125 2.875 -0.84375 C 2.734375 -0.203125 2.265625 -0.0625 1.984375 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 1 -1.21875 1 -1.796875 1 -2.3125 C 1 -2.828125 1 -3.359375 1.09375 -3.734375 C 1.25 -4.28125 1.6875 -4.4375 1.984375 -4.4375 C 2.359375 -4.4375 2.71875 -4.203125 2.84375 -3.796875 C 2.953125 -3.421875 2.96875 -2.921875 2.96875 -2.3125 Z M 2.96875 -2.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 3.578125 -1.203125 C 3.578125 -1.75 3.140625 -2.296875 2.375 -2.453125 C 3.09375 -2.71875 3.359375 -3.234375 3.359375 -3.671875 C 3.359375 -4.21875 2.734375 -4.625 1.953125 -4.625 C 1.1875 -4.625 0.59375 -4.25 0.59375 -3.6875 C 0.59375 -3.453125 0.75 -3.328125 0.953125 -3.328125 C 1.171875 -3.328125 1.3125 -3.484375 1.3125 -3.671875 C 1.3125 -3.875 1.171875 -4.03125 0.953125 -4.046875 C 1.203125 -4.34375 1.671875 -4.421875 1.9375 -4.421875 C 2.25 -4.421875 2.6875 -4.265625 2.6875 -3.671875 C 2.6875 -3.375 2.59375 -3.046875 2.40625 -2.84375 C 2.1875 -2.578125 1.984375 -2.5625 1.640625 -2.53125 C 1.46875 -2.515625 1.453125 -2.515625 1.421875 -2.515625 C 1.421875 -2.515625 1.34375 -2.5 1.34375 -2.421875 C 1.34375 -2.328125 1.40625 -2.328125 1.53125 -2.328125 L 1.90625 -2.328125 C 2.453125 -2.328125 2.84375 -1.953125 2.84375 -1.203125 C 2.84375 -0.34375 2.328125 -0.078125 1.9375 -0.078125 C 1.65625 -0.078125 1.03125 -0.15625 0.75 -0.578125 C 1.078125 -0.578125 1.15625 -0.8125 1.15625 -0.96875 C 1.15625 -1.1875 0.984375 -1.34375 0.765625 -1.34375 C 0.578125 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.578125 -0.515625 3.578125 -1.203125 Z M 3.578125 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 3.6875 -1.140625 L 3.6875 -1.390625 L 2.90625 -1.390625 L 2.90625 -4.5 C 2.90625 -4.640625 2.90625 -4.703125 2.765625 -4.703125 C 2.671875 -4.703125 2.640625 -4.703125 2.578125 -4.59375 L 0.265625 -1.390625 L 0.265625 -1.140625 L 2.328125 -1.140625 L 2.328125 -0.578125 C 2.328125 -0.328125 2.328125 -0.25 1.75 -0.25 L 1.5625 -0.25 L 1.5625 0 L 2.609375 -0.03125 L 3.671875 0 L 3.671875 -0.25 L 3.484375 -0.25 C 2.90625 -0.25 2.90625 -0.328125 2.90625 -0.578125 L 2.90625 -1.140625 Z M 2.375 -1.390625 L 0.53125 -1.390625 L 2.375 -3.9375 Z M 2.375 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.265625 -1.109375 3.1875 -0.703125 3.09375 -0.640625 C 3.046875 -0.59375 2.515625 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.109375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.609375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.625 1.890625 -4.625 C 1.03125 -4.625 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.03125 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.109375 1.171875 -3.359375 C 1.171875 -3.484375 1.125 -3.734375 0.765625 -3.734375 C 0.984375 -4.21875 1.453125 -4.375 1.78125 -4.375 C 2.484375 -4.375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.1875 2.1875 -1.9375 L 0.515625 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.3125 0 Z M 3.515625 -1.265625 "/>
</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 3.296875 2.390625 C 3.296875 2.359375 3.296875 2.34375 3.125 2.171875 C 1.890625 0.921875 1.5625 -0.96875 1.5625 -2.5 C 1.5625 -4.234375 1.9375 -5.96875 3.171875 -7.203125 C 3.296875 -7.328125 3.296875 -7.34375 3.296875 -7.375 C 3.296875 -7.453125 3.265625 -7.484375 3.203125 -7.484375 C 3.09375 -7.484375 2.203125 -6.796875 1.609375 -5.53125 C 1.109375 -4.4375 0.984375 -3.328125 0.984375 -2.5 C 0.984375 -1.71875 1.09375 -0.515625 1.640625 0.625 C 2.25 1.84375 3.09375 2.5 3.203125 2.5 C 3.265625 2.5 3.296875 2.46875 3.296875 2.390625 Z M 3.296875 2.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 7.1875 -2.5 C 7.1875 -2.6875 7 -2.6875 6.859375 -2.6875 L 4.078125 -2.6875 L 4.078125 -5.484375 C 4.078125 -5.625 4.078125 -5.8125 3.875 -5.8125 C 3.671875 -5.8125 3.671875 -5.625 3.671875 -5.484375 L 3.671875 -2.6875 L 0.890625 -2.6875 C 0.75 -2.6875 0.5625 -2.6875 0.5625 -2.5 C 0.5625 -2.296875 0.75 -2.296875 0.890625 -2.296875 L 3.671875 -2.296875 L 3.671875 0.5 C 3.671875 0.640625 3.671875 0.828125 3.875 0.828125 C 4.078125 0.828125 4.078125 0.640625 4.078125 0.5 L 4.078125 -2.296875 L 6.859375 -2.296875 C 7 -2.296875 7.1875 -2.296875 7.1875 -2.5 Z M 7.1875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 2.875 -2.5 C 2.875 -3.265625 2.765625 -4.46875 2.21875 -5.609375 C 1.625 -6.828125 0.765625 -7.484375 0.671875 -7.484375 C 0.609375 -7.484375 0.5625 -7.4375 0.5625 -7.375 C 0.5625 -7.34375 0.5625 -7.328125 0.75 -7.140625 C 1.734375 -6.15625 2.296875 -4.578125 2.296875 -2.5 C 2.296875 -0.78125 1.9375 0.96875 0.703125 2.21875 C 0.5625 2.34375 0.5625 2.359375 0.5625 2.390625 C 0.5625 2.453125 0.609375 2.5 0.671875 2.5 C 0.765625 2.5 1.671875 1.8125 2.25 0.546875 C 2.765625 -0.546875 2.875 -1.65625 2.875 -2.5 Z M 2.875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph4-5">
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-6">
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph4-7">
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-8">
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph4-9">
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph4-10">
<path style="stroke:none;" d="M 4.6875 -1.640625 L 4.6875 -1.953125 L 3.703125 -1.953125 L 3.703125 -6.484375 C 3.703125 -6.6875 3.703125 -6.75 3.53125 -6.75 C 3.453125 -6.75 3.421875 -6.75 3.34375 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 L 2.9375 -1.640625 L 2.9375 -0.78125 C 2.9375 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.96875 -0.3125 L 1.96875 0 C 2.375 -0.03125 2.890625 -0.03125 3.3125 -0.03125 C 3.734375 -0.03125 4.25 -0.03125 4.671875 0 L 4.671875 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.703125 -0.421875 3.703125 -0.78125 L 3.703125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.671875 Z M 2.984375 -1.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 4.9375 -1.421875 C 4.9375 -1.53125 4.859375 -1.53125 4.828125 -1.53125 C 4.734375 -1.53125 4.71875 -1.484375 4.6875 -1.421875 C 4.359375 -0.34375 3.6875 -0.109375 3.375 -0.109375 C 2.984375 -0.109375 2.828125 -0.421875 2.828125 -0.765625 C 2.828125 -0.984375 2.875 -1.203125 2.984375 -1.640625 L 3.328125 -3.015625 C 3.390625 -3.265625 3.625 -4.1875 4.3125 -4.1875 C 4.359375 -4.1875 4.609375 -4.1875 4.8125 -4.0625 C 4.53125 -4 4.34375 -3.765625 4.34375 -3.515625 C 4.34375 -3.359375 4.453125 -3.171875 4.71875 -3.171875 C 4.9375 -3.171875 5.25 -3.34375 5.25 -3.75 C 5.25 -4.265625 4.671875 -4.40625 4.328125 -4.40625 C 3.75 -4.40625 3.40625 -3.875 3.28125 -3.65625 C 3.03125 -4.3125 2.5 -4.40625 2.203125 -4.40625 C 1.171875 -4.40625 0.59375 -3.125 0.59375 -2.875 C 0.59375 -2.765625 0.71875 -2.765625 0.71875 -2.765625 C 0.796875 -2.765625 0.828125 -2.796875 0.84375 -2.875 C 1.1875 -3.9375 1.84375 -4.1875 2.1875 -4.1875 C 2.375 -4.1875 2.71875 -4.09375 2.71875 -3.515625 C 2.71875 -3.203125 2.546875 -2.546875 2.1875 -1.140625 C 2.03125 -0.53125 1.671875 -0.109375 1.234375 -0.109375 C 1.171875 -0.109375 0.953125 -0.109375 0.734375 -0.234375 C 0.984375 -0.296875 1.203125 -0.5 1.203125 -0.78125 C 1.203125 -1.046875 0.984375 -1.125 0.84375 -1.125 C 0.53125 -1.125 0.296875 -0.875 0.296875 -0.546875 C 0.296875 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.890625 0.109375 2.25 -0.59375 2.265625 -0.640625 C 2.390625 -0.28125 2.75 0.109375 3.34375 0.109375 C 4.375 0.109375 4.9375 -1.171875 4.9375 -1.421875 Z M 4.9375 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 1.90625 -2.5 C 1.90625 -2.78125 1.671875 -3.015625 1.390625 -3.015625 C 1.09375 -3.015625 0.859375 -2.78125 0.859375 -2.5 C 0.859375 -2.203125 1.09375 -1.96875 1.390625 -1.96875 C 1.671875 -1.96875 1.90625 -2.203125 1.90625 -2.5 Z M 1.90625 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph6-2">
<path style="stroke:none;" d="M 6.921875 -2.5 C 6.921875 -2.6875 6.734375 -2.6875 6.59375 -2.6875 L 1.15625 -2.6875 C 1.015625 -2.6875 0.828125 -2.6875 0.828125 -2.5 C 0.828125 -2.296875 1.015625 -2.296875 1.15625 -2.296875 L 6.59375 -2.296875 C 6.734375 -2.296875 6.921875 -2.296875 6.921875 -2.5 Z M 6.921875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph7-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph7-1">
<path style="stroke:none;" d="M 7.375 -1.734375 C 7.375 -1.78125 7.34375 -1.828125 7.296875 -1.828125 C 6.515625 -2.046875 5.890625 -2.6875 5.75 -3.5 C 5.734375 -3.546875 5.6875 -3.578125 5.640625 -3.578125 L 5.5 -3.578125 C 5.4375 -3.578125 5.40625 -3.546875 5.40625 -3.46875 C 5.53125 -2.84375 5.875 -2.28125 6.40625 -1.90625 L 0.703125 -1.90625 C 0.59375 -1.90625 0.53125 -1.828125 0.53125 -1.734375 C 0.53125 -1.65625 0.59375 -1.578125 0.703125 -1.578125 L 6.40625 -1.578125 C 5.875 -1.203125 5.53125 -0.640625 5.40625 -0.015625 C 5.40625 0.0625 5.4375 0.09375 5.5 0.09375 L 5.640625 0.09375 C 5.6875 0.09375 5.734375 0.0625 5.75 0.015625 C 5.890625 -0.796875 6.515625 -1.4375 7.296875 -1.65625 C 7.34375 -1.65625 7.375 -1.703125 7.375 -1.734375 Z M 7.375 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph7-2">
<path style="stroke:none;" d="M 7.390625 -1.5 C 7.390625 -2.328125 6.78125 -3.078125 5.921875 -3.078125 C 4.921875 -3.078125 4.3125 -2.28125 4.015625 -1.90625 C 3.671875 -2.328125 3.0625 -3.078125 2.03125 -3.078125 C 1.15625 -3.078125 0.546875 -2.328125 0.546875 -1.5 C 0.546875 -0.6875 1.140625 0.0625 2 0.0625 C 3 0.0625 3.625 -0.71875 3.90625 -1.09375 C 4.25 -0.671875 4.859375 0.0625 5.890625 0.0625 C 6.78125 0.0625 7.390625 -0.671875 7.390625 -1.5 Z M 7.1875 -1.5 C 7.1875 -0.8125 6.625 -0.3125 6.015625 -0.3125 C 5.359375 -0.3125 4.90625 -0.875 4.25 -1.65625 C 4.671875 -2.328125 5.296875 -2.8125 5.984375 -2.8125 C 6.703125 -2.8125 7.1875 -2.1875 7.1875 -1.5 Z M 3.671875 -1.359375 C 3.25 -0.671875 2.640625 -0.1875 1.953125 -0.1875 C 1.234375 -0.1875 0.734375 -0.828125 0.734375 -1.5 C 0.734375 -2.1875 1.3125 -2.6875 1.921875 -2.6875 C 2.578125 -2.6875 3.03125 -2.125 3.671875 -1.359375 Z M 3.671875 -1.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph7-3">
<path style="stroke:none;" d="M 5.46875 -1.734375 C 5.46875 -1.921875 5.296875 -1.921875 5.203125 -1.921875 L 1.015625 -1.921875 C 0.90625 -1.921875 0.75 -1.921875 0.75 -1.734375 C 0.75 -1.578125 0.921875 -1.578125 1.015625 -1.578125 L 5.203125 -1.578125 C 5.296875 -1.578125 5.46875 -1.578125 5.46875 -1.734375 Z M 5.46875 -1.734375 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="15.95" y="7.007"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="20.875" y="4.001"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="13.162" y="9.996"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="13.904" y="31.215"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="16.723" y="31.215"/>
<use xlink:href="#glyph3-2" x="22.839023" y="31.215"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="27.552" y="19.46"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="31.427" y="19.46"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="39.335" y="19.46"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="49.295607" y="19.46"/>
<use xlink:href="#glyph4-4" x="54.276907" y="19.46"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="16.891" y="44.675"/>
<use xlink:href="#glyph3-3" x="20.861882" y="44.675"/>
<use xlink:href="#glyph3-3" x="24.832763" y="44.675"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="16.483" y="47.664"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="15.954" y="68.883"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="19.654" y="68.883"/>
<use xlink:href="#glyph3-2" x="25.770023" y="68.883"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="29.741" y="57.129"/>
<use xlink:href="#glyph4-5" x="33.615455" y="57.129"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="40.811" y="57.129"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="45.792" y="57.129"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-4" x="51.486" y="57.129"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-6" x="3.695" y="86.817"/>
<use xlink:href="#glyph4-7" x="6.46261" y="86.817"/>
<use xlink:href="#glyph4-8" x="9.230221" y="86.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="0.449" y="92.795"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-1" x="4.967" y="92.795"/>
<use xlink:href="#glyph7-2" x="12.909461" y="92.795"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="20.852" y="86.817"/>
<use xlink:href="#glyph4-9" x="24.726455" y="86.817"/>
<use xlink:href="#glyph4-10" x="29.707755" y="86.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="34.689" y="86.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="40.383" y="82.704"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-2" x="47.066" y="86.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-9" x="57.029" y="86.817"/>
<use xlink:href="#glyph4-3" x="62.0103" y="86.817"/>
<use xlink:href="#glyph4-4" x="66.9916" y="86.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-5" x="10.879" y="106.255"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="5.669" y="108.248"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-3" x="1.352" y="136.542"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="7.579" y="136.542"/>
<use xlink:href="#glyph3-6" x="11.549882" y="136.542"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="17.735" y="121.808"/>
<use xlink:href="#glyph4-9" x="21.609455" y="121.808"/>
<use xlink:href="#glyph4-10" x="26.590755" y="121.808"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="31.572" y="121.808"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="37.266" y="117.695"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-2" x="43.949" y="121.808"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-9" x="53.912" y="121.808"/>
<use xlink:href="#glyph4-3" x="58.8933" y="121.808"/>
<use xlink:href="#glyph4-4" x="63.8746" y="121.808"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -0,0 +1,243 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" version="1.1">
<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 4.578125 -1 C 4.578125 -1.09375 4.5 -1.09375 4.46875 -1.09375 C 4.375 -1.09375 4.375 -1.046875 4.34375 -0.96875 C 4.1875 -0.40625 3.875 -0.125 3.609375 -0.125 C 3.453125 -0.125 3.421875 -0.21875 3.421875 -0.375 C 3.421875 -0.53125 3.46875 -0.625 3.59375 -0.9375 C 3.671875 -1.15625 3.953125 -1.890625 3.953125 -2.28125 C 3.953125 -2.953125 3.421875 -3.078125 3.046875 -3.078125 C 2.46875 -3.078125 2.078125 -2.71875 1.875 -2.4375 C 1.828125 -2.921875 1.421875 -3.078125 1.125 -3.078125 C 0.828125 -3.078125 0.671875 -2.859375 0.578125 -2.703125 C 0.421875 -2.4375 0.328125 -2.046875 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.9375 0.59375 -2.125 C 0.703125 -2.53125 0.84375 -2.875 1.109375 -2.875 C 1.296875 -2.875 1.34375 -2.71875 1.34375 -2.53125 C 1.34375 -2.40625 1.28125 -2.140625 1.21875 -1.953125 L 1.078125 -1.328125 L 0.84375 -0.4375 C 0.828125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.296875 -0.078125 C 1.328125 -0.140625 1.375 -0.375 1.421875 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.65625 -1.453125 1.6875 -1.609375 C 1.765625 -1.890625 1.78125 -1.953125 1.984375 -2.234375 C 2.171875 -2.515625 2.5 -2.875 3.03125 -2.875 C 3.421875 -2.875 3.4375 -2.515625 3.4375 -2.390625 C 3.4375 -1.96875 3.140625 -1.203125 3.03125 -0.90625 C 2.953125 -0.703125 2.921875 -0.640625 2.921875 -0.53125 C 2.921875 -0.15625 3.21875 0.0625 3.578125 0.0625 C 4.28125 0.0625 4.578125 -0.890625 4.578125 -1 Z M 4.578125 -1 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.265625 -4.359375 C 2.265625 -4.46875 2.171875 -4.625 1.984375 -4.625 C 1.796875 -4.625 1.59375 -4.4375 1.59375 -4.234375 C 1.59375 -4.125 1.671875 -3.96875 1.875 -3.96875 C 2.0625 -3.96875 2.265625 -4.171875 2.265625 -4.359375 Z M 2.4375 -1 C 2.4375 -1.09375 2.34375 -1.09375 2.328125 -1.09375 C 2.234375 -1.09375 2.21875 -1.046875 2.1875 -0.96875 C 2.03125 -0.40625 1.734375 -0.125 1.453125 -0.125 C 1.3125 -0.125 1.28125 -0.21875 1.28125 -0.375 C 1.28125 -0.53125 1.328125 -0.65625 1.390625 -0.8125 L 1.609375 -1.375 L 1.953125 -2.265625 C 1.984375 -2.328125 2 -2.40625 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.625 1.0625 -2.875 1.3125 -2.875 C 1.421875 -2.875 1.484375 -2.828125 1.484375 -2.640625 C 1.484375 -2.46875 1.453125 -2.375 1.28125 -1.9375 L 0.84375 -0.8125 C 0.8125 -0.71875 0.78125 -0.640625 0.78125 -0.515625 C 0.78125 -0.1875 1.046875 0.0625 1.4375 0.0625 C 2.125 0.0625 2.4375 -0.890625 2.4375 -1 Z M 2.4375 -1 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.0625 -4.359375 C 3.0625 -4.46875 2.96875 -4.625 2.78125 -4.625 C 2.578125 -4.625 2.390625 -4.421875 2.390625 -4.234375 C 2.390625 -4.125 2.46875 -3.96875 2.671875 -3.96875 C 2.859375 -3.96875 3.0625 -4.15625 3.0625 -4.359375 Z M 2.765625 -2.171875 C 2.78125 -2.25 2.796875 -2.3125 2.796875 -2.421875 C 2.796875 -2.796875 2.46875 -3.078125 2.0625 -3.078125 C 1.28125 -3.078125 0.84375 -2.109375 0.84375 -2 C 0.84375 -1.921875 0.9375 -1.921875 0.953125 -1.921875 C 1.03125 -1.921875 1.046875 -1.9375 1.09375 -2.046875 C 1.265625 -2.453125 1.625 -2.875 2.03125 -2.875 C 2.203125 -2.875 2.265625 -2.765625 2.265625 -2.53125 C 2.265625 -2.453125 2.265625 -2.359375 2.25 -2.328125 L 1.578125 0.34375 C 1.46875 0.828125 1.09375 1.21875 0.6875 1.21875 C 0.59375 1.21875 0.515625 1.21875 0.4375 1.1875 C 0.609375 1.09375 0.671875 0.9375 0.671875 0.828125 C 0.671875 0.65625 0.53125 0.578125 0.390625 0.578125 C 0.1875 0.578125 0 0.765625 0 0.984375 C 0 1.25 0.265625 1.421875 0.6875 1.421875 C 1.109375 1.421875 1.921875 1.171875 2.140625 0.328125 Z M 2.765625 -2.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" 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 "/>
</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 2.9375 -0.96875 L 2.71875 -0.96875 C 2.71875 -0.875 2.65625 -0.5625 2.578125 -0.515625 C 2.546875 -0.484375 2.125 -0.484375 2.046875 -0.484375 L 1.078125 -0.484375 C 1.40625 -0.71875 1.765625 -1 2.0625 -1.203125 C 2.515625 -1.515625 2.9375 -1.796875 2.9375 -2.328125 C 2.9375 -2.96875 2.328125 -3.3125 1.625 -3.3125 C 0.953125 -3.3125 0.453125 -2.9375 0.453125 -2.4375 C 0.453125 -2.1875 0.671875 -2.140625 0.75 -2.140625 C 0.875 -2.140625 1.03125 -2.234375 1.03125 -2.4375 C 1.03125 -2.609375 0.90625 -2.71875 0.75 -2.71875 C 0.890625 -2.953125 1.1875 -3.09375 1.515625 -3.09375 C 2 -3.09375 2.40625 -2.8125 2.40625 -2.328125 C 2.40625 -1.90625 2.109375 -1.578125 1.734375 -1.265625 L 0.515625 -0.234375 C 0.46875 -0.1875 0.453125 -0.1875 0.453125 -0.15625 L 0.453125 0 L 2.765625 0 Z M 2.9375 -0.96875 "/>
</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 13.828125 10.765625 L 13.578125 10.765625 C 13.1875 11.796875 12.125 12.484375 10.984375 12.78125 C 10.78125 12.828125 9.796875 13.09375 7.890625 13.09375 L 1.875 13.09375 L 6.953125 7.140625 C 7.015625 7.0625 7.03125 7.03125 7.03125 6.984375 C 7.03125 6.984375 7.03125 6.921875 6.96875 6.828125 L 2.328125 0.484375 L 7.78125 0.484375 C 9.125 0.484375 10.03125 0.625 10.125 0.640625 C 10.65625 0.71875 11.53125 0.890625 12.3125 1.390625 C 12.5625 1.546875 13.234375 2 13.578125 2.796875 L 13.828125 2.796875 L 12.625 0 L 0.84375 0 C 0.609375 0 0.59375 0.015625 0.5625 0.0625 C 0.5625 0.09375 0.5625 0.296875 0.5625 0.40625 L 5.828125 7.609375 L 0.671875 13.671875 C 0.5625 13.78125 0.5625 13.84375 0.5625 13.84375 C 0.5625 13.953125 0.65625 13.953125 0.84375 13.953125 L 12.625 13.953125 Z M 13.828125 10.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 12.171875 13.953125 L 12.171875 13.421875 C 10.84375 13.421875 10.53125 12.953125 10.53125 12.328125 L 10.53125 1.640625 C 10.53125 0.984375 10.859375 0.53125 12.171875 0.53125 L 12.171875 0 L 0.5625 0 L 0.5625 0.53125 C 1.890625 0.53125 2.1875 1 2.1875 1.640625 L 2.1875 12.328125 C 2.1875 12.96875 1.875 13.421875 0.5625 13.421875 L 0.5625 13.953125 L 5.359375 13.953125 L 5.359375 13.421875 C 4.03125 13.421875 3.71875 12.953125 3.71875 12.328125 L 3.71875 0.53125 L 9.015625 0.53125 L 9.015625 12.328125 C 9.015625 12.96875 8.6875 13.421875 7.375 13.421875 L 7.375 13.953125 Z M 12.171875 13.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 9.40625 0.921875 C 9.40625 0.390625 8.859375 0 8.3125 0 C 7.5625 0 7 1.09375 6.453125 3.125 C 6.421875 3.234375 5.0625 8.234375 3.96875 14.75 C 3.703125 16.28125 3.421875 17.9375 3.09375 19.328125 C 2.90625 20.0625 2.453125 21.9375 1.640625 21.9375 C 1.28125 21.9375 1.03125 21.703125 1.03125 21.703125 C 1.359375 21.6875 1.53125 21.46875 1.53125 21.21875 C 1.53125 20.890625 1.28125 20.71875 1.046875 20.71875 C 0.8125 20.71875 0.5625 20.875 0.5625 21.21875 C 0.5625 21.734375 1.0625 22.15625 1.671875 22.15625 C 3.1875 22.15625 3.75 19.8125 4.453125 16.921875 C 5.21875 13.78125 5.875 10.59375 6.40625 7.390625 C 6.78125 5.28125 7.140625 3.28125 7.484375 2 C 7.609375 1.5 7.9375 0.21875 8.328125 0.21875 C 8.640625 0.21875 8.890625 0.40625 8.9375 0.453125 C 8.609375 0.46875 8.4375 0.6875 8.4375 0.9375 C 8.4375 1.265625 8.6875 1.421875 8.90625 1.421875 C 9.15625 1.421875 9.40625 1.28125 9.40625 0.921875 Z M 9.40625 0.921875 "/>
</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 5.609375 -2.515625 C 5.609375 -2.6875 5.453125 -2.6875 5.359375 -2.6875 L 0.75 -2.6875 C 0.65625 -2.6875 0.484375 -2.6875 0.484375 -2.515625 C 0.484375 -2.34375 0.640625 -2.34375 0.75 -2.34375 L 5.359375 -2.34375 C 5.453125 -2.34375 5.609375 -2.34375 5.609375 -2.515625 Z M 5.609375 -0.96875 C 5.609375 -1.15625 5.453125 -1.15625 5.359375 -1.15625 L 0.75 -1.15625 C 0.640625 -1.15625 0.484375 -1.15625 0.484375 -0.96875 C 0.484375 -0.8125 0.65625 -0.8125 0.75 -0.8125 L 5.359375 -0.8125 C 5.453125 -0.8125 5.609375 -0.8125 5.609375 -0.96875 Z M 5.609375 -0.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 3.296875 0 L 3.296875 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.578125 L 2.328125 -4.4375 C 2.328125 -4.625 2.328125 -4.625 2.125 -4.625 C 1.671875 -4.1875 1.046875 -4.1875 0.765625 -4.1875 L 0.765625 -3.9375 C 0.921875 -3.9375 1.390625 -3.9375 1.765625 -4.125 L 1.765625 -0.578125 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.296875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 3.59375 -2.21875 C 3.59375 -2.984375 3.5 -3.546875 3.1875 -4.03125 C 2.96875 -4.34375 2.53125 -4.625 1.984375 -4.625 C 0.359375 -4.625 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.984375 0.140625 C 3.59375 0.140625 3.59375 -1.71875 3.59375 -2.21875 Z M 2.96875 -2.3125 C 2.96875 -1.796875 2.96875 -1.28125 2.875 -0.84375 C 2.734375 -0.203125 2.265625 -0.0625 1.984375 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 1 -1.21875 1 -1.796875 1 -2.3125 C 1 -2.828125 1 -3.359375 1.09375 -3.734375 C 1.25 -4.28125 1.6875 -4.4375 1.984375 -4.4375 C 2.359375 -4.4375 2.71875 -4.203125 2.84375 -3.796875 C 2.953125 -3.421875 2.96875 -2.921875 2.96875 -2.3125 Z M 2.96875 -2.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 3.578125 -1.203125 C 3.578125 -1.75 3.140625 -2.296875 2.375 -2.453125 C 3.09375 -2.71875 3.359375 -3.234375 3.359375 -3.671875 C 3.359375 -4.21875 2.734375 -4.625 1.953125 -4.625 C 1.1875 -4.625 0.59375 -4.25 0.59375 -3.6875 C 0.59375 -3.453125 0.75 -3.328125 0.953125 -3.328125 C 1.171875 -3.328125 1.3125 -3.484375 1.3125 -3.671875 C 1.3125 -3.875 1.171875 -4.03125 0.953125 -4.046875 C 1.203125 -4.34375 1.671875 -4.421875 1.9375 -4.421875 C 2.25 -4.421875 2.6875 -4.265625 2.6875 -3.671875 C 2.6875 -3.375 2.59375 -3.046875 2.40625 -2.84375 C 2.1875 -2.578125 1.984375 -2.5625 1.640625 -2.53125 C 1.46875 -2.515625 1.453125 -2.515625 1.421875 -2.515625 C 1.421875 -2.515625 1.34375 -2.5 1.34375 -2.421875 C 1.34375 -2.328125 1.40625 -2.328125 1.53125 -2.328125 L 1.90625 -2.328125 C 2.453125 -2.328125 2.84375 -1.953125 2.84375 -1.203125 C 2.84375 -0.34375 2.328125 -0.078125 1.9375 -0.078125 C 1.65625 -0.078125 1.03125 -0.15625 0.75 -0.578125 C 1.078125 -0.578125 1.15625 -0.8125 1.15625 -0.96875 C 1.15625 -1.1875 0.984375 -1.34375 0.765625 -1.34375 C 0.578125 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.578125 -0.515625 3.578125 -1.203125 Z M 3.578125 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 3.6875 -1.140625 L 3.6875 -1.390625 L 2.90625 -1.390625 L 2.90625 -4.5 C 2.90625 -4.640625 2.90625 -4.703125 2.765625 -4.703125 C 2.671875 -4.703125 2.640625 -4.703125 2.578125 -4.59375 L 0.265625 -1.390625 L 0.265625 -1.140625 L 2.328125 -1.140625 L 2.328125 -0.578125 C 2.328125 -0.328125 2.328125 -0.25 1.75 -0.25 L 1.5625 -0.25 L 1.5625 0 L 2.609375 -0.03125 L 3.671875 0 L 3.671875 -0.25 L 3.484375 -0.25 C 2.90625 -0.25 2.90625 -0.328125 2.90625 -0.578125 L 2.90625 -1.140625 Z M 2.375 -1.390625 L 0.53125 -1.390625 L 2.375 -3.9375 Z M 2.375 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.265625 -1.109375 3.1875 -0.703125 3.09375 -0.640625 C 3.046875 -0.59375 2.515625 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.109375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.609375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.625 1.890625 -4.625 C 1.03125 -4.625 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.03125 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.109375 1.171875 -3.359375 C 1.171875 -3.484375 1.125 -3.734375 0.765625 -3.734375 C 0.984375 -4.21875 1.453125 -4.375 1.78125 -4.375 C 2.484375 -4.375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.1875 2.1875 -1.9375 L 0.515625 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.3125 0 Z M 3.515625 -1.265625 "/>
</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 3.296875 2.390625 C 3.296875 2.359375 3.296875 2.34375 3.125 2.171875 C 1.890625 0.921875 1.5625 -0.96875 1.5625 -2.5 C 1.5625 -4.234375 1.9375 -5.96875 3.171875 -7.203125 C 3.296875 -7.328125 3.296875 -7.34375 3.296875 -7.375 C 3.296875 -7.453125 3.265625 -7.484375 3.203125 -7.484375 C 3.09375 -7.484375 2.203125 -6.796875 1.609375 -5.53125 C 1.109375 -4.4375 0.984375 -3.328125 0.984375 -2.5 C 0.984375 -1.71875 1.09375 -0.515625 1.640625 0.625 C 2.25 1.84375 3.09375 2.5 3.203125 2.5 C 3.265625 2.5 3.296875 2.46875 3.296875 2.390625 Z M 3.296875 2.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 7.1875 -2.5 C 7.1875 -2.6875 7 -2.6875 6.859375 -2.6875 L 4.078125 -2.6875 L 4.078125 -5.484375 C 4.078125 -5.625 4.078125 -5.8125 3.875 -5.8125 C 3.671875 -5.8125 3.671875 -5.625 3.671875 -5.484375 L 3.671875 -2.6875 L 0.890625 -2.6875 C 0.75 -2.6875 0.5625 -2.6875 0.5625 -2.5 C 0.5625 -2.296875 0.75 -2.296875 0.890625 -2.296875 L 3.671875 -2.296875 L 3.671875 0.5 C 3.671875 0.640625 3.671875 0.828125 3.875 0.828125 C 4.078125 0.828125 4.078125 0.640625 4.078125 0.5 L 4.078125 -2.296875 L 6.859375 -2.296875 C 7 -2.296875 7.1875 -2.296875 7.1875 -2.5 Z M 7.1875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 2.875 -2.5 C 2.875 -3.265625 2.765625 -4.46875 2.21875 -5.609375 C 1.625 -6.828125 0.765625 -7.484375 0.671875 -7.484375 C 0.609375 -7.484375 0.5625 -7.4375 0.5625 -7.375 C 0.5625 -7.34375 0.5625 -7.328125 0.75 -7.140625 C 1.734375 -6.15625 2.296875 -4.578125 2.296875 -2.5 C 2.296875 -0.78125 1.9375 0.96875 0.703125 2.21875 C 0.5625 2.34375 0.5625 2.359375 0.5625 2.390625 C 0.5625 2.453125 0.609375 2.5 0.671875 2.5 C 0.765625 2.5 1.671875 1.8125 2.25 0.546875 C 2.765625 -0.546875 2.875 -1.65625 2.875 -2.5 Z M 2.875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph4-5">
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-6">
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph4-7">
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-8">
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph4-9">
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph4-10">
<path style="stroke:none;" d="M 4.6875 -1.640625 L 4.6875 -1.953125 L 3.703125 -1.953125 L 3.703125 -6.484375 C 3.703125 -6.6875 3.703125 -6.75 3.53125 -6.75 C 3.453125 -6.75 3.421875 -6.75 3.34375 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 L 2.9375 -1.640625 L 2.9375 -0.78125 C 2.9375 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.96875 -0.3125 L 1.96875 0 C 2.375 -0.03125 2.890625 -0.03125 3.3125 -0.03125 C 3.734375 -0.03125 4.25 -0.03125 4.671875 0 L 4.671875 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.703125 -0.421875 3.703125 -0.78125 L 3.703125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.671875 Z M 2.984375 -1.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 4.9375 -1.421875 C 4.9375 -1.53125 4.859375 -1.53125 4.828125 -1.53125 C 4.734375 -1.53125 4.71875 -1.484375 4.6875 -1.421875 C 4.359375 -0.34375 3.6875 -0.109375 3.375 -0.109375 C 2.984375 -0.109375 2.828125 -0.421875 2.828125 -0.765625 C 2.828125 -0.984375 2.875 -1.203125 2.984375 -1.640625 L 3.328125 -3.015625 C 3.390625 -3.265625 3.625 -4.1875 4.3125 -4.1875 C 4.359375 -4.1875 4.609375 -4.1875 4.8125 -4.0625 C 4.53125 -4 4.34375 -3.765625 4.34375 -3.515625 C 4.34375 -3.359375 4.453125 -3.171875 4.71875 -3.171875 C 4.9375 -3.171875 5.25 -3.34375 5.25 -3.75 C 5.25 -4.265625 4.671875 -4.40625 4.328125 -4.40625 C 3.75 -4.40625 3.40625 -3.875 3.28125 -3.65625 C 3.03125 -4.3125 2.5 -4.40625 2.203125 -4.40625 C 1.171875 -4.40625 0.59375 -3.125 0.59375 -2.875 C 0.59375 -2.765625 0.71875 -2.765625 0.71875 -2.765625 C 0.796875 -2.765625 0.828125 -2.796875 0.84375 -2.875 C 1.1875 -3.9375 1.84375 -4.1875 2.1875 -4.1875 C 2.375 -4.1875 2.71875 -4.09375 2.71875 -3.515625 C 2.71875 -3.203125 2.546875 -2.546875 2.1875 -1.140625 C 2.03125 -0.53125 1.671875 -0.109375 1.234375 -0.109375 C 1.171875 -0.109375 0.953125 -0.109375 0.734375 -0.234375 C 0.984375 -0.296875 1.203125 -0.5 1.203125 -0.78125 C 1.203125 -1.046875 0.984375 -1.125 0.84375 -1.125 C 0.53125 -1.125 0.296875 -0.875 0.296875 -0.546875 C 0.296875 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.890625 0.109375 2.25 -0.59375 2.265625 -0.640625 C 2.390625 -0.28125 2.75 0.109375 3.34375 0.109375 C 4.375 0.109375 4.9375 -1.171875 4.9375 -1.421875 Z M 4.9375 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 1.90625 -2.5 C 1.90625 -2.78125 1.671875 -3.015625 1.390625 -3.015625 C 1.09375 -3.015625 0.859375 -2.78125 0.859375 -2.5 C 0.859375 -2.203125 1.09375 -1.96875 1.390625 -1.96875 C 1.671875 -1.96875 1.90625 -2.203125 1.90625 -2.5 Z M 1.90625 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph6-2">
<path style="stroke:none;" d="M 6.921875 -2.5 C 6.921875 -2.6875 6.734375 -2.6875 6.59375 -2.6875 L 1.15625 -2.6875 C 1.015625 -2.6875 0.828125 -2.6875 0.828125 -2.5 C 0.828125 -2.296875 1.015625 -2.296875 1.15625 -2.296875 L 6.59375 -2.296875 C 6.734375 -2.296875 6.921875 -2.296875 6.921875 -2.5 Z M 6.921875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph7-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph7-1">
<path style="stroke:none;" d="M 7.375 -1.734375 C 7.375 -1.78125 7.34375 -1.828125 7.296875 -1.828125 C 6.515625 -2.046875 5.890625 -2.6875 5.75 -3.5 C 5.734375 -3.546875 5.6875 -3.578125 5.640625 -3.578125 L 5.5 -3.578125 C 5.4375 -3.578125 5.40625 -3.546875 5.40625 -3.46875 C 5.53125 -2.84375 5.875 -2.28125 6.40625 -1.90625 L 0.703125 -1.90625 C 0.59375 -1.90625 0.53125 -1.828125 0.53125 -1.734375 C 0.53125 -1.65625 0.59375 -1.578125 0.703125 -1.578125 L 6.40625 -1.578125 C 5.875 -1.203125 5.53125 -0.640625 5.40625 -0.015625 C 5.40625 0.0625 5.4375 0.09375 5.5 0.09375 L 5.640625 0.09375 C 5.6875 0.09375 5.734375 0.0625 5.75 0.015625 C 5.890625 -0.796875 6.515625 -1.4375 7.296875 -1.65625 C 7.34375 -1.65625 7.375 -1.703125 7.375 -1.734375 Z M 7.375 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph7-2">
<path style="stroke:none;" d="M 7.390625 -1.5 C 7.390625 -2.328125 6.78125 -3.078125 5.921875 -3.078125 C 4.921875 -3.078125 4.3125 -2.28125 4.015625 -1.90625 C 3.671875 -2.328125 3.0625 -3.078125 2.03125 -3.078125 C 1.15625 -3.078125 0.546875 -2.328125 0.546875 -1.5 C 0.546875 -0.6875 1.140625 0.0625 2 0.0625 C 3 0.0625 3.625 -0.71875 3.90625 -1.09375 C 4.25 -0.671875 4.859375 0.0625 5.890625 0.0625 C 6.78125 0.0625 7.390625 -0.671875 7.390625 -1.5 Z M 7.1875 -1.5 C 7.1875 -0.8125 6.625 -0.3125 6.015625 -0.3125 C 5.359375 -0.3125 4.90625 -0.875 4.25 -1.65625 C 4.671875 -2.328125 5.296875 -2.8125 5.984375 -2.8125 C 6.703125 -2.8125 7.1875 -2.1875 7.1875 -1.5 Z M 3.671875 -1.359375 C 3.25 -0.671875 2.640625 -0.1875 1.953125 -0.1875 C 1.234375 -0.1875 0.734375 -0.828125 0.734375 -1.5 C 0.734375 -2.1875 1.3125 -2.6875 1.921875 -2.6875 C 2.578125 -2.6875 3.03125 -2.125 3.671875 -1.359375 Z M 3.671875 -1.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph7-3">
<path style="stroke:none;" d="M 5.46875 -1.734375 C 5.46875 -1.921875 5.296875 -1.921875 5.203125 -1.921875 L 1.015625 -1.921875 C 0.90625 -1.921875 0.75 -1.921875 0.75 -1.734375 C 0.75 -1.578125 0.921875 -1.578125 1.015625 -1.578125 L 5.203125 -1.578125 C 5.296875 -1.578125 5.46875 -1.578125 5.46875 -1.734375 Z M 5.46875 -1.734375 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="276.95" y="143.897"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="281.875" y="140.891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="274.162" y="146.886"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="274.904" y="168.105"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="277.723" y="168.105"/>
<use xlink:href="#glyph3-2" x="283.839023" y="168.105"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="288.552" y="156.35"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="292.427" y="156.35"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="300.335" y="156.35"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="310.295607" y="156.35"/>
<use xlink:href="#glyph4-4" x="315.276907" y="156.35"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="277.891" y="181.565"/>
<use xlink:href="#glyph3-3" x="281.861882" y="181.565"/>
<use xlink:href="#glyph3-3" x="285.832763" y="181.565"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="277.483" y="184.554"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="276.954" y="205.773"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="280.654" y="205.773"/>
<use xlink:href="#glyph3-2" x="286.770023" y="205.773"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="290.741" y="194.019"/>
<use xlink:href="#glyph4-5" x="294.615455" y="194.019"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="301.811" y="194.019"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="306.792" y="194.019"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-4" x="312.486" y="194.019"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-6" x="264.695" y="223.707"/>
<use xlink:href="#glyph4-7" x="267.46261" y="223.707"/>
<use xlink:href="#glyph4-8" x="270.230221" y="223.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="261.449" y="229.685"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-1" x="265.967" y="229.685"/>
<use xlink:href="#glyph7-2" x="273.909461" y="229.685"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="281.852" y="223.707"/>
<use xlink:href="#glyph4-9" x="285.726455" y="223.707"/>
<use xlink:href="#glyph4-10" x="290.707755" y="223.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="295.689" y="223.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="301.383" y="219.594"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-2" x="308.066" y="223.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-9" x="318.029" y="223.707"/>
<use xlink:href="#glyph4-3" x="323.0103" y="223.707"/>
<use xlink:href="#glyph4-4" x="327.9916" y="223.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-5" x="271.879" y="243.145"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="266.669" y="245.138"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-3" x="262.352" y="273.432"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="268.579" y="273.432"/>
<use xlink:href="#glyph3-6" x="272.549882" y="273.432"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="278.735" y="258.698"/>
<use xlink:href="#glyph4-9" x="282.609455" y="258.698"/>
<use xlink:href="#glyph4-10" x="287.590755" y="258.698"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="292.572" y="258.698"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="298.266" y="254.585"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-2" x="304.949" y="258.698"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-9" x="314.912" y="258.698"/>
<use xlink:href="#glyph4-3" x="319.8933" y="258.698"/>
<use xlink:href="#glyph4-4" x="324.8746" y="258.698"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -0,0 +1,14 @@
\documentclass[a4paper]{article}
\usepackage{lmodern}
\usepackage{amssymb,amsmath}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\begin{document}
\thispagestyle{empty}
$$\sum \limits_{i=1}^{n^2}(x+2)$$
$$\prod \limits_{j=1}^{100}(3 \cdot x)$$
$$\lim_{x \rightarrow \infty}(14x^3 - 12)$$
$$\int \limits_{-12}^{4}(14x^3 - 12)$$
\end{document}

View File

@ -1,6 +1,6 @@
<div class="layout-content-only">
<div class="layout-content">
<h1><span class="emoji">🖥️</span><br/>Code-Listings</h1>
<h1><span class="emoji">🖥️</span><br/>Quelltext-Listings</h1>
</div>
</div>
@ -8,28 +8,108 @@
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Codeblöcke mit Syntaxhighlighting</h2>
<p>Paket <code>minted</code></p>
<p>Voraussetzungen: das Python-Paket <code>Pygments</code></p>
<p>--shell-escape Flag hinzufügen (TeXstudio: Options > Configure TeXstudio > Commands "pdflatex -syntex=1 -interaction=nonstopmode %.tex" in "pdflatex -syntex=1 -interaction=nonstopmode --shell-escape %.tex" ändern)</p>
<pre class="lang-tex hljs">
<code>
\begin{minted}{java}
public class Duck {
public static void main(String[] args) {
System.out.println("Hallo,Welt!");
}
}
\end{minted}
\begin{minted}{python}
def printHello:
print("Hallo, Welt!")
\end{minted}
</code>
</pre>
</div>
<div class="preview-layout">
<img src="sections/german/10/minted.png">
<h2>Installation</h2>
<p>
Mit dem Paket <code>minted</code> lässt sich Quelltext gut darstellen. Dafür wird die Programmiersprache Python benötigt.
</p>
<p>
Nach der <a href="https://www.python.org/">Installation von Python</a> kann das zugehörige Paket <a href="http://pygments.org/"><code>Pygments</code></a> in der Eingabeaufforderung installiert werden durch:
</p>
<pre class="lang-bash hljs"><code>pip install Pygments</code></pre>
<p>Anschließend muss das LaTeX-Paket nur noch eingebunden werden:</p>
<pre class="lang-tex hljs"><code>\usepackage{minted}</code></pre>
</div>
<div class="layout-preview">
<img src="sections/german/10/minted-overview-crop.svg" style="padding: 2rem;">
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2>Anpassungen beim Kompilieren</h2>
<div class="box warning">
<p>
Um Dokumente mit Quelltext-Listings kompilieren zu können, muss die Flag <code>--shell-escape</code> an den Compiler übergeben werden.
</p>
</div>
<p>
In TeXstudio muss diese unter <b><code>Optionen > TeXstudio konfigurieren > Befehle</code></b>
bei <code>PdfLaTeX</code> vor <code>%.tex</code> ergänzt werden:
</p>
<p>
<code style="hyphens: auto; font-size:85%;">pdflatex -syntex=1 -interaction=nonstopmode <b>--shell-escape</b> %.tex</code></pre>
</p>
</div>
</div>
---
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Code im LaTeX-Quelltext</h2>
<p class="fragment">In einer eigenen Umgebung:</p>
<pre class="lang-tex hljs fragment"><code>\section\*{Haskell-Magie}
Quadrate aller geraden Zahlen zwischen 1 und 200:
\begin{minted}{haskell}
[x^2 | x <- [1..200], even x]
\end{minted}</code></pre>
<p class="fragment">Inline im Quelltext:</p>
<pre class="lang-tex hljs fragment"><code>\section\*{Ein HTML-Beispiel}
Eine Überschrift wird so ausgezeichnet:
\mint{html}|<h2>LaTeX im Studium</h2>|.</code></pre>
</div>
<div class="layout-preview">
<img src="sections/german/10/minted-haskell-crop.svg">
</div>
</div>
---
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Code aus externen Dateien</h2>
<p>Um Redundanz zu vermeiden, ist es manchmal praktisch, den Quelltext direkt aus der Quelldatei einzulesen.</p>
<pre class="lang-tex hljs"><code>\section\*{Einfache Java-Anwendung}
\inputminted{java}{Test.java}</code></pre>
<pre class="lang-java hljs" data-sourcefile="Test.java"><code>public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}</code></pre>
</div>
<div class="layout-preview">
<img src="sections/german/10/minted-java-crop.svg">
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2><code>Minted</code> konfigurieren</h2>
<p>
Durch optionale Parameter können Zeilennummerierung, Umbrüche, Farben und Themes für das Syntax Highlighting ausgewählt werden:
</p>
<pre class="hljs lang-tex"><code>\begin{minted}[
linenos=true,
tabsize=4,
breaklines=true,
]{javascript}
% ...
\end{minted}</code></pre>
<p><span class="emoji">🔗</span> <a href="https://www.overleaf.com/learn/latex/Code_Highlighting_with_minted">Einführung</a> und <a href="https://ctan.kako-dev.de/macros/latex/contrib/minted/minted.pdf">offizielle Dokumentation</a></p>
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2 data-category="Aufgabe" data-task="9">Quelltext einbinden</h2>
<ul>
<li class="fragment"></li>
</ul>
</div>
</div>

View File

@ -0,0 +1,5 @@
public class Test {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}

View File

@ -0,0 +1,481 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="223pt" height="148pt" viewBox="0 0 223 148" version="1.1">
<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 12.0625 0 L 12.0625 -0.609375 L 10.546875 -0.609375 L 10.546875 -9.21875 L 12.0625 -9.21875 L 12.0625 -9.84375 C 11.640625 -9.8125 10.109375 -9.8125 9.59375 -9.8125 C 9.078125 -9.8125 7.546875 -9.8125 7.125 -9.84375 L 7.125 -9.21875 L 8.65625 -9.21875 L 8.65625 -5.421875 L 3.953125 -5.421875 L 3.953125 -9.21875 L 5.484375 -9.21875 L 5.484375 -9.84375 C 5.0625 -9.8125 3.53125 -9.8125 3.015625 -9.8125 C 2.5 -9.8125 0.96875 -9.8125 0.546875 -9.84375 L 0.546875 -9.21875 L 2.0625 -9.21875 L 2.0625 -0.609375 L 0.546875 -0.609375 L 0.546875 0 C 0.96875 -0.03125 2.5 -0.03125 3.015625 -0.03125 C 3.53125 -0.03125 5.0625 -0.03125 5.484375 0 L 5.484375 -0.609375 L 3.953125 -0.609375 L 3.953125 -4.8125 L 8.65625 -4.8125 L 8.65625 -0.609375 L 7.125 -0.609375 L 7.125 0 C 7.546875 -0.03125 9.078125 -0.03125 9.59375 -0.03125 C 10.109375 -0.03125 11.640625 -0.03125 12.0625 0 Z M 12.0625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 7.765625 -0.3125 C 7.765625 -0.609375 7.625 -0.609375 7.4375 -0.609375 C 6.53125 -0.625 6.53125 -0.859375 6.53125 -1.1875 L 6.53125 -4.28125 C 6.53125 -5.609375 5.484375 -6.5 3.453125 -6.5 C 2.65625 -6.5 0.96875 -6.421875 0.96875 -5.21875 C 0.96875 -4.625 1.421875 -4.359375 1.8125 -4.359375 C 2.234375 -4.359375 2.65625 -4.65625 2.65625 -5.203125 C 2.65625 -5.484375 2.546875 -5.734375 2.3125 -5.890625 C 2.78125 -6.03125 3.125 -6.03125 3.40625 -6.03125 C 4.375 -6.03125 4.96875 -5.484375 4.96875 -4.296875 L 4.96875 -3.734375 C 2.703125 -3.734375 0.421875 -3.09375 0.421875 -1.5 C 0.421875 -0.203125 2.078125 0.09375 3.0625 0.09375 C 4.171875 0.09375 4.875 -0.515625 5.15625 -1.140625 C 5.15625 -0.609375 5.15625 0 6.609375 0 L 7.34375 0 C 7.640625 0 7.765625 0 7.765625 -0.3125 Z M 4.96875 -2 C 4.96875 -0.640625 3.765625 -0.390625 3.296875 -0.390625 C 2.59375 -0.390625 2.015625 -0.859375 2.015625 -1.515625 C 2.015625 -2.828125 3.5625 -3.265625 4.96875 -3.34375 Z M 4.96875 -2 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 5.8125 -2 C 5.8125 -2.6875 5.4375 -3.15625 5.15625 -3.40625 C 4.5625 -3.90625 4.078125 -3.984375 3.296875 -4.125 C 2.375 -4.28125 1.515625 -4.453125 1.515625 -5.140625 C 1.515625 -6.0625 2.796875 -6.0625 3.09375 -6.0625 C 4.6875 -6.0625 4.78125 -5.0625 4.8125 -4.703125 C 4.8125 -4.515625 4.9375 -4.515625 5.109375 -4.515625 C 5.40625 -4.515625 5.40625 -4.5625 5.40625 -4.890625 L 5.40625 -6.125 C 5.40625 -6.390625 5.40625 -6.5 5.1875 -6.5 C 5.109375 -6.5 5.078125 -6.5 4.859375 -6.375 C 4.8125 -6.328125 4.640625 -6.21875 4.578125 -6.1875 C 4.171875 -6.40625 3.640625 -6.5 3.125 -6.5 C 2.703125 -6.5 0.546875 -6.5 0.546875 -4.640625 C 0.546875 -3.125 2.328125 -2.8125 2.765625 -2.734375 C 3.15625 -2.671875 3.625 -2.578125 3.6875 -2.578125 C 4.265625 -2.453125 4.828125 -2.09375 4.828125 -1.484375 C 4.828125 -0.390625 3.53125 -0.390625 3.234375 -0.390625 C 2.5 -0.390625 1.59375 -0.609375 1.1875 -2.015625 C 1.109375 -2.296875 1.09375 -2.3125 0.84375 -2.3125 C 0.546875 -2.3125 0.546875 -2.265625 0.546875 -1.9375 L 0.546875 -0.28125 C 0.546875 -0.015625 0.546875 0.09375 0.765625 0.09375 C 0.859375 0.09375 0.890625 0.09375 1.171875 -0.140625 L 1.546875 -0.421875 C 2.1875 0.09375 2.96875 0.09375 3.234375 0.09375 C 4.015625 0.09375 5.8125 -0.09375 5.8125 -2 Z M 5.8125 -2 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 8.25 0 L 8.25 -0.609375 C 8.015625 -0.609375 7.734375 -0.609375 7.578125 -0.625 C 7.375 -0.671875 7.3125 -0.71875 7.15625 -0.921875 L 4.765625 -4.015625 L 6.5625 -5.484375 C 6.734375 -5.625 6.90625 -5.75 7.890625 -5.75 L 7.890625 -6.375 C 7.515625 -6.34375 7.234375 -6.34375 6.703125 -6.34375 C 6.328125 -6.34375 5.515625 -6.34375 5.1875 -6.375 L 5.1875 -5.75 C 5.359375 -5.75 5.703125 -5.703125 5.703125 -5.59375 C 5.703125 -5.53125 5.625 -5.484375 5.59375 -5.453125 L 2.984375 -3.359375 L 2.984375 -9.953125 L 0.5 -9.84375 L 0.5 -9.21875 C 1.390625 -9.21875 1.484375 -9.21875 1.484375 -8.65625 L 1.484375 -0.609375 L 0.5 -0.609375 L 0.5 0 C 0.828125 -0.03125 1.828125 -0.03125 2.203125 -0.03125 C 2.59375 -0.03125 3.578125 -0.03125 3.921875 0 L 3.921875 -0.609375 L 2.921875 -0.609375 L 2.921875 -2.53125 C 3.15625 -2.71875 3.375 -2.890625 3.6875 -3.15625 L 5.421875 -0.921875 C 5.515625 -0.796875 5.515625 -0.765625 5.515625 -0.765625 C 5.515625 -0.609375 5.234375 -0.609375 5.03125 -0.609375 L 5.03125 0 C 5.375 -0.03125 6.328125 -0.03125 6.71875 -0.03125 C 7.4375 -0.03125 7.640625 -0.03125 8.25 0 Z M 8.25 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 6.90625 -1.671875 C 6.90625 -1.890625 6.6875 -1.890625 6.59375 -1.890625 C 6.375 -1.890625 6.359375 -1.84375 6.265625 -1.65625 C 5.890625 -0.734375 4.953125 -0.4375 4.265625 -0.4375 C 2.1875 -0.4375 2.171875 -2.359375 2.171875 -3.171875 L 6.484375 -3.171875 C 6.8125 -3.171875 6.90625 -3.171875 6.90625 -3.53125 C 6.90625 -3.953125 6.796875 -5.03125 6.140625 -5.703125 C 5.53125 -6.3125 4.734375 -6.5 3.90625 -6.5 C 1.65625 -6.5 0.4375 -5.03125 0.4375 -3.234375 C 0.4375 -1.21875 1.921875 0.09375 4.09375 0.09375 C 6.25 0.09375 6.90625 -1.4375 6.90625 -1.671875 Z M 5.578125 -3.578125 L 2.171875 -3.578125 C 2.1875 -4.171875 2.203125 -4.734375 2.515625 -5.25 C 2.78125 -5.703125 3.28125 -6.03125 3.90625 -6.03125 C 5.4375 -6.03125 5.5625 -4.296875 5.578125 -3.578125 Z M 5.578125 -3.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.109375 0 L 4.109375 -0.609375 L 3.109375 -0.609375 L 3.109375 -9.953125 L 0.625 -9.84375 L 0.625 -9.21875 C 1.515625 -9.21875 1.625 -9.21875 1.625 -8.65625 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 1.984375 -0.03125 2.359375 -0.03125 C 2.75 -0.03125 3.765625 -0.03125 4.109375 0 Z M 4.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.46875 -2.53125 L 4.46875 -3.84375 L 0.171875 -3.84375 L 0.171875 -2.53125 Z M 4.46875 -2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 14.703125 0 L 14.703125 -0.609375 L 13.1875 -0.609375 L 13.1875 -9.21875 L 14.703125 -9.21875 L 14.703125 -9.84375 L 11.640625 -9.84375 C 11.34375 -9.84375 11.21875 -9.84375 11.09375 -9.53125 L 7.640625 -1.828125 L 4.203125 -9.53125 C 4.078125 -9.84375 3.9375 -9.84375 3.640625 -9.84375 L 0.59375 -9.84375 L 0.59375 -9.21875 L 2.109375 -9.21875 L 2.109375 -1.046875 C 2.109375 -0.734375 2.09375 -0.71875 1.71875 -0.65625 C 1.46875 -0.625 1.171875 -0.609375 0.921875 -0.609375 L 0.59375 -0.609375 L 0.59375 0 C 0.921875 -0.03125 2.03125 -0.03125 2.4375 -0.03125 C 2.84375 -0.03125 3.96875 -0.03125 4.296875 0 L 4.296875 -0.609375 L 3.96875 -0.609375 C 3.578125 -0.609375 3.5625 -0.609375 3.21875 -0.65625 C 2.796875 -0.71875 2.78125 -0.734375 2.78125 -1.046875 L 2.78125 -9.046875 L 2.796875 -9.046875 L 6.703125 -0.296875 C 6.765625 -0.140625 6.859375 0 7.09375 0 C 7.34375 0 7.4375 -0.140625 7.5 -0.296875 L 11.46875 -9.21875 L 11.484375 -9.21875 L 11.484375 -0.609375 L 9.96875 -0.609375 L 9.96875 0 C 10.359375 -0.03125 11.84375 -0.03125 12.328125 -0.03125 C 12.828125 -0.03125 14.3125 -0.03125 14.703125 0 Z M 14.703125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 7.8125 -5.734375 C 7.8125 -6.078125 7.5625 -6.546875 6.953125 -6.546875 C 6.34375 -6.546875 5.75 -6.234375 5.453125 -5.984375 C 4.859375 -6.328125 4.296875 -6.453125 3.578125 -6.453125 C 1.59375 -6.453125 0.796875 -5.34375 0.796875 -4.34375 C 0.796875 -3.90625 0.953125 -3.3125 1.546875 -2.828125 C 1.3125 -2.546875 1.046875 -2.046875 1.046875 -1.53125 C 1.046875 -0.921875 1.375 -0.390625 1.671875 -0.15625 C 1.328125 -0.078125 0.4375 0.265625 0.4375 1.078125 C 0.4375 1.921875 1.375 2.890625 4.015625 2.890625 C 6.390625 2.890625 7.609375 2.109375 7.609375 1.03125 C 7.609375 -0.234375 6.765625 -0.640625 6.40625 -0.8125 C 5.71875 -1.15625 4.8125 -1.15625 3.546875 -1.15625 C 3.1875 -1.15625 2.546875 -1.15625 2.484375 -1.171875 C 1.859375 -1.28125 1.6875 -1.828125 1.6875 -2.09375 C 1.6875 -2.203125 1.703125 -2.421875 1.859375 -2.609375 C 2.546875 -2.234375 3.359375 -2.234375 3.578125 -2.234375 C 5.546875 -2.234375 6.34375 -3.34375 6.34375 -4.34375 C 6.34375 -5.078125 5.921875 -5.59375 5.75 -5.734375 C 6.171875 -5.96875 6.515625 -6.03125 6.75 -6.046875 C 6.71875 -5.984375 6.671875 -5.921875 6.671875 -5.734375 C 6.671875 -5.4375 6.875 -5.15625 7.25 -5.15625 C 7.609375 -5.15625 7.8125 -5.4375 7.8125 -5.734375 Z M 4.8125 -4.34375 C 4.8125 -3.6875 4.8125 -2.703125 3.578125 -2.703125 C 2.328125 -2.703125 2.328125 -3.6875 2.328125 -4.34375 C 2.328125 -5 2.328125 -6 3.578125 -6 C 4.8125 -6 4.8125 -5 4.8125 -4.34375 Z M 6.421875 1.09375 C 6.421875 1.59375 5.921875 2.421875 4.03125 2.421875 C 2.140625 2.421875 1.625 1.625 1.625 1.078125 C 1.625 0.15625 2.53125 0.15625 2.734375 0.15625 L 4.375 0.15625 C 5.421875 0.15625 6.421875 0.34375 6.421875 1.09375 Z M 6.421875 1.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 4 0 L 4 -0.609375 L 3.109375 -0.609375 L 3.109375 -6.453125 L 0.671875 -6.34375 L 0.671875 -5.71875 C 1.515625 -5.71875 1.625 -5.71875 1.625 -5.15625 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 1.953125 -0.03125 2.34375 -0.03125 C 2.734375 -0.03125 3.65625 -0.03125 4 0 Z M 3.28125 -8.71875 C 3.28125 -9.3125 2.796875 -9.75 2.25 -9.75 C 1.65625 -9.75 1.203125 -9.28125 1.203125 -8.71875 C 1.203125 -8.140625 1.6875 -7.6875 2.234375 -7.6875 C 2.828125 -7.6875 3.28125 -8.15625 3.28125 -8.71875 Z M 3.28125 -8.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 10.125 -3.875 L 9.53125 -3.875 C 9.21875 -1.734375 8.6875 -0.609375 6.203125 -0.609375 L 3.953125 -0.609375 L 3.953125 -4.765625 L 4.8125 -4.765625 C 6.1875 -4.765625 6.328125 -4.171875 6.328125 -3.078125 L 6.921875 -3.078125 L 6.921875 -7.0625 L 6.328125 -7.0625 C 6.328125 -5.984375 6.1875 -5.375 4.8125 -5.375 L 3.953125 -5.375 L 3.953125 -9.15625 L 6.203125 -9.15625 C 8.390625 -9.15625 8.859375 -8.21875 9.078125 -6.375 L 9.6875 -6.375 L 9.265625 -9.765625 L 0.546875 -9.765625 L 0.546875 -9.15625 L 2.0625 -9.15625 L 2.0625 -0.609375 L 0.546875 -0.609375 L 0.546875 0 L 9.515625 0 Z M 10.125 -3.875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4.421875 -6.453125 3.53125 -5.953125 3.046875 -4.875 L 3.03125 -4.875 L 3.03125 -6.453125 L 0.609375 -6.34375 L 0.609375 -5.71875 C 1.484375 -5.71875 1.59375 -5.71875 1.59375 -5.15625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 10.609375 -6.3125 L 10.328125 -9.703125 L 0.875 -9.703125 L 0.59375 -6.3125 L 1.1875 -6.3125 C 1.3125 -7.875 1.4375 -9.09375 3.5 -9.09375 L 4.65625 -9.09375 L 4.65625 -0.609375 L 2.5 -0.609375 L 2.5 0 L 5.609375 -0.03125 L 8.71875 0 L 8.71875 -0.609375 L 6.5625 -0.609375 L 6.5625 -9.09375 L 7.703125 -9.09375 C 9.765625 -9.09375 9.890625 -7.890625 10.015625 -6.3125 Z M 10.609375 -6.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 9.015625 -3.875 L 8.40625 -3.875 C 8.3125 -2.890625 8.078125 -0.609375 5.5 -0.609375 L 3.953125 -0.609375 L 3.953125 -9.21875 L 5.859375 -9.21875 L 5.859375 -9.84375 L 3.125 -9.8125 C 2.59375 -9.8125 0.96875 -9.8125 0.546875 -9.84375 L 0.546875 -9.21875 L 2.0625 -9.21875 L 2.0625 -0.609375 L 0.546875 -0.609375 L 0.546875 0 L 8.59375 0 Z M 9.015625 -3.875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 10.578125 -2.65625 C 10.578125 -4.015625 9.375 -5 7.640625 -5.140625 C 9.703125 -5.515625 10.109375 -6.703125 10.109375 -7.375 C 10.109375 -8.6875 8.90625 -9.84375 6.609375 -9.84375 L 0.5625 -9.84375 L 0.5625 -9.21875 L 2.078125 -9.21875 L 2.078125 -0.609375 L 0.5625 -0.609375 L 0.5625 0 L 7.046875 0 C 9.40625 0 10.578125 -1.28125 10.578125 -2.65625 Z M 8.21875 -7.390625 C 8.21875 -6.390625 7.65625 -5.34375 5.984375 -5.34375 L 3.84375 -5.34375 L 3.84375 -9.21875 L 6.4375 -9.21875 C 7.921875 -9.21875 8.21875 -8.109375 8.21875 -7.390625 Z M 8.625 -2.6875 C 8.625 -1.78125 8.140625 -0.609375 6.484375 -0.609375 L 3.84375 -0.609375 L 3.84375 -4.875 L 6.703125 -4.875 C 8.375 -4.875 8.625 -3.328125 8.625 -2.6875 Z M 8.625 -2.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 8.40625 -3.203125 C 8.40625 -5.171875 7.078125 -6.453125 5.140625 -6.453125 C 4.28125 -6.453125 3.5625 -6.171875 2.984375 -5.703125 L 2.984375 -6.453125 L 0.5 -6.34375 L 0.5 -5.71875 C 1.390625 -5.71875 1.484375 -5.71875 1.484375 -5.15625 L 1.484375 2.171875 L 0.5 2.171875 L 0.5 2.78125 C 0.828125 2.75 1.859375 2.75 2.265625 2.75 C 2.671875 2.75 3.71875 2.75 4.046875 2.78125 L 4.046875 2.171875 L 3.0625 2.171875 L 3.0625 -0.59375 C 3.40625 -0.265625 4.046875 0.09375 4.90625 0.09375 C 6.875 0.09375 8.40625 -1.109375 8.40625 -3.203125 Z M 6.6875 -3.203125 C 6.6875 -1.125 5.65625 -0.390625 4.734375 -0.390625 C 4.109375 -0.390625 3.5 -0.703125 3.0625 -1.375 L 3.0625 -5.015625 C 3.578125 -5.703125 4.34375 -5.9375 4.90625 -5.9375 C 5.84375 -5.9375 6.6875 -5.09375 6.6875 -3.203125 Z M 6.6875 -3.203125 "/>
</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 7.25 0.09375 C 7.25 0 7.25 -0.109375 7.140625 -0.109375 C 7.046875 -0.109375 7.03125 -0.03125 7.03125 0.0625 C 6.96875 0.609375 6.546875 0.90625 6.125 0.90625 C 5.65625 0.90625 5.40625 0.5625 5.15625 -0.0625 C 6.34375 -0.59375 7.1875 -1.875 7.1875 -3.375 C 7.1875 -5.40625 5.6875 -7.03125 3.875 -7.03125 C 2.078125 -7.03125 0.5625 -5.4375 0.5625 -3.375 C 0.5625 -1.359375 2.0625 0.21875 3.875 0.21875 C 4.1875 0.21875 4.53125 0.15625 4.828125 0.0625 C 4.96875 1.015625 5.109375 1.9375 6.046875 1.9375 C 7.0625 1.9375 7.25 0.609375 7.25 0.09375 Z M 6.1875 -3.375 C 6.1875 -2.609375 6.078125 -1.203125 5.015625 -0.421875 C 4.796875 -0.984375 4.46875 -1.46875 3.890625 -1.46875 C 3.375 -1.46875 3.078125 -1.046875 3.078125 -0.640625 C 3.078125 -0.375 3.203125 -0.171875 3.203125 -0.15625 C 2.671875 -0.359375 1.5625 -1.09375 1.5625 -3.375 C 1.5625 -5.96875 2.953125 -6.78125 3.875 -6.78125 C 4.828125 -6.78125 6.1875 -5.921875 6.1875 -3.375 Z M 4.75 -0.265625 C 4.421875 -0.0625 4.09375 -0.03125 3.875 -0.03125 C 3.375 -0.03125 3.296875 -0.484375 3.296875 -0.640625 C 3.296875 -0.921875 3.5 -1.25 3.890625 -1.25 C 4.421875 -1.25 4.640625 -0.84375 4.75 -0.265625 Z M 4.75 -0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 3.15625 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 L 3.78125 0.109375 Z M 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -1.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 Z M 3.3125 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 Z M 3.484375 -2.515625 L 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 3.484375 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 5.578125 -2.65625 L 5.328125 -2.65625 C 5.25 -1.28125 5.0625 -0.34375 3.21875 -0.34375 L 1.578125 -0.34375 L 5.453125 -6.453125 C 5.515625 -6.5625 5.515625 -6.578125 5.515625 -6.65625 C 5.515625 -6.8125 5.46875 -6.8125 5.265625 -6.8125 L 0.796875 -6.8125 L 0.6875 -4.5625 L 0.9375 -4.5625 C 1 -5.6875 1.3125 -6.5 2.9375 -6.5 L 4.5 -6.5 L 0.625 -0.375 C 0.5625 -0.265625 0.5625 -0.25 0.5625 -0.171875 C 0.5625 0 0.609375 0 0.8125 0 L 5.40625 0 Z M 5.578125 -2.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 4 -1.859375 L 3.75 -1.859375 C 3.65625 -0.6875 3.453125 -0.25 2.296875 -0.25 L 1.109375 -0.25 L 3.890625 -4 C 3.984375 -4.109375 3.984375 -4.125 3.984375 -4.171875 C 3.984375 -4.296875 3.890625 -4.296875 3.71875 -4.296875 L 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.734375 -3.703125 0.921875 -4.078125 2.015625 -4.078125 L 3.15625 -4.078125 L 0.375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.828125 0 Z M 4 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 7.015625 -3.984375 L 7.015625 -4.296875 C 6.78125 -4.28125 6.5 -4.265625 6.28125 -4.265625 L 5.359375 -4.296875 L 5.359375 -3.984375 C 5.71875 -3.984375 5.9375 -3.796875 5.9375 -3.515625 C 5.9375 -3.453125 5.9375 -3.421875 5.875 -3.296875 L 4.96875 -0.75 L 3.984375 -3.53125 C 3.953125 -3.65625 3.9375 -3.671875 3.9375 -3.71875 C 3.9375 -3.984375 4.328125 -3.984375 4.53125 -3.984375 L 4.53125 -4.296875 L 3.484375 -4.265625 C 3.1875 -4.265625 2.90625 -4.28125 2.609375 -4.296875 L 2.609375 -3.984375 C 2.96875 -3.984375 3.125 -3.96875 3.234375 -3.84375 C 3.28125 -3.78125 3.390625 -3.484375 3.453125 -3.296875 L 2.609375 -0.875 L 1.65625 -3.53125 C 1.609375 -3.65625 1.609375 -3.671875 1.609375 -3.71875 C 1.609375 -3.984375 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 L 1.109375 -4.265625 L 0.171875 -4.296875 L 0.171875 -3.984375 C 0.671875 -3.984375 0.796875 -3.953125 0.921875 -3.640625 L 2.171875 -0.109375 C 2.21875 0.03125 2.25 0.109375 2.375 0.109375 C 2.515625 0.109375 2.53125 0.046875 2.578125 -0.09375 L 3.59375 -2.90625 L 4.609375 -0.078125 C 4.640625 0.03125 4.671875 0.109375 4.8125 0.109375 C 4.9375 0.109375 4.96875 0.015625 5 -0.078125 L 6.171875 -3.34375 C 6.34375 -3.84375 6.65625 -3.984375 7.015625 -3.984375 Z M 7.015625 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-16">
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-17">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-18">
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-19">
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-20">
<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 Z M 3.765625 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-21">
<path style="stroke:none;" d="M 1.90625 -3.765625 C 1.90625 -4.0625 1.671875 -4.296875 1.390625 -4.296875 C 1.09375 -4.296875 0.859375 -4.0625 0.859375 -3.765625 C 0.859375 -3.484375 1.09375 -3.234375 1.390625 -3.234375 C 1.671875 -3.234375 1.90625 -3.484375 1.90625 -3.765625 Z M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-22">
<path style="stroke:none;" d="M 6.5 -2.578125 L 6.25 -2.578125 C 6 -1.03125 5.765625 -0.3125 4.0625 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -3.375 L 3.140625 -3.375 C 4.109375 -3.375 4.21875 -3.046875 4.21875 -2.203125 L 4.46875 -2.203125 L 4.46875 -4.84375 L 4.21875 -4.84375 C 4.21875 -3.984375 4.109375 -3.671875 3.140625 -3.671875 L 2.25 -3.671875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 4.015625 -6.46875 C 5.546875 -6.46875 5.8125 -5.921875 5.96875 -4.53125 L 6.21875 -4.53125 L 5.9375 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 6.078125 0 Z M 6.5 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-23">
<path style="stroke:none;" d="M 7.140625 -6.5 L 7.140625 -6.8125 L 5.96875 -6.78125 L 4.78125 -6.8125 L 4.78125 -6.5 C 5.796875 -6.5 5.796875 -6.03125 5.796875 -5.765625 L 5.796875 -2.296875 C 5.796875 -0.890625 4.828125 -0.09375 3.890625 -0.09375 C 3.421875 -0.09375 2.25 -0.34375 2.25 -2.234375 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.03125 -6.5 L 3.265625 -6.5 L 3.265625 -6.8125 C 2.921875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -2.265625 C 1.359375 -0.875 2.515625 0.21875 3.875 0.21875 C 5.015625 0.21875 5.90625 -0.703125 6.078125 -1.84375 C 6.109375 -2.046875 6.109375 -2.140625 6.109375 -2.53125 L 6.109375 -5.71875 C 6.109375 -6.046875 6.109375 -6.5 7.140625 -6.5 Z M 3.40625 -7.8125 C 3.40625 -8.0625 3.203125 -8.28125 2.9375 -8.28125 C 2.625 -8.28125 2.4375 -8.03125 2.4375 -7.8125 C 2.4375 -7.5625 2.65625 -7.34375 2.921875 -7.34375 C 3.234375 -7.34375 3.40625 -7.59375 3.40625 -7.8125 Z M 5.5 -7.8125 C 5.5 -8.0625 5.296875 -8.28125 5.03125 -8.28125 C 4.71875 -8.28125 4.53125 -8.03125 4.53125 -7.8125 C 4.53125 -7.5625 4.75 -7.34375 5.015625 -7.34375 C 5.328125 -7.34375 5.5 -7.59375 5.5 -7.8125 Z M 5.5 -7.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-24">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-25">
<path style="stroke:none;" d="M 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 L 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 Z M 3.5625 -6.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-26">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-27">
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</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 4.8125 0.53125 C 4.8125 0.21875 4.578125 0.21875 4.421875 0.21875 L 2.90625 0.21875 L 2.90625 -6.3125 L 4.421875 -6.3125 C 4.5625 -6.3125 4.8125 -6.3125 4.8125 -6.609375 C 4.8125 -6.921875 4.578125 -6.921875 4.421875 -6.921875 L 2.609375 -6.921875 C 2.28125 -6.921875 2.21875 -6.828125 2.21875 -6.515625 L 2.21875 0.421875 C 2.21875 0.734375 2.265625 0.828125 2.609375 0.828125 L 4.421875 0.828125 C 4.5625 0.828125 4.8125 0.828125 4.8125 0.53125 Z M 4.8125 0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 4.9375 -0.296875 C 4.9375 -0.609375 4.6875 -0.609375 4.53125 -0.609375 L 4.140625 -0.609375 L 2.859375 -2.21875 L 4 -3.6875 L 4.390625 -3.6875 C 4.53125 -3.6875 4.8125 -3.6875 4.8125 -3.984375 C 4.8125 -4.296875 4.546875 -4.296875 4.390625 -4.296875 L 3.234375 -4.296875 C 3.078125 -4.296875 2.828125 -4.296875 2.828125 -4 C 2.828125 -3.6875 3.046875 -3.6875 3.3125 -3.6875 L 2.578125 -2.6875 L 1.828125 -3.6875 C 2.078125 -3.6875 2.296875 -3.6875 2.296875 -4 C 2.296875 -4.296875 2.046875 -4.296875 1.90625 -4.296875 L 0.734375 -4.296875 C 0.59375 -4.296875 0.328125 -4.296875 0.328125 -3.984375 C 0.328125 -3.6875 0.59375 -3.6875 0.734375 -3.6875 L 1.140625 -3.6875 L 2.3125 -2.21875 L 1.078125 -0.609375 L 0.671875 -0.609375 C 0.53125 -0.609375 0.265625 -0.609375 0.265625 -0.296875 C 0.265625 0 0.53125 0 0.671875 0 L 1.84375 0 C 2 0 2.25 0 2.25 -0.296875 C 2.25 -0.609375 2.03125 -0.609375 1.71875 -0.609375 L 2.578125 -1.828125 L 3.46875 -0.609375 C 3.1875 -0.609375 2.96875 -0.609375 2.96875 -0.296875 C 2.96875 0 3.21875 0 3.375 0 L 4.53125 0 C 4.671875 0 4.9375 0 4.9375 -0.296875 Z M 4.9375 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 4.359375 -5.40625 L 2.734375 -6.203125 C 2.65625 -6.234375 2.578125 -6.234375 2.5 -6.203125 L 0.875 -5.40625 C 0.53125 -5.25 0.765625 -4.71875 1.109375 -4.875 L 2.609375 -5.515625 L 4.109375 -4.875 C 4.46875 -4.71875 4.703125 -5.25 4.359375 -5.40625 Z M 4.359375 -5.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 4.703125 -0.40625 L 4.703125 -0.671875 C 4.703125 -0.859375 4.703125 -1.078125 4.359375 -1.078125 C 4.015625 -1.078125 4.015625 -0.890625 4.015625 -0.609375 L 1.640625 -0.609375 C 2.234375 -1.109375 3.1875 -1.859375 3.625 -2.265625 C 4.25 -2.828125 4.703125 -3.453125 4.703125 -4.25 C 4.703125 -5.453125 3.703125 -6.203125 2.484375 -6.203125 C 1.3125 -6.203125 0.515625 -5.390625 0.515625 -4.53125 C 0.515625 -4.171875 0.796875 -4.0625 0.96875 -4.0625 C 1.171875 -4.0625 1.40625 -4.234375 1.40625 -4.5 C 1.40625 -4.625 1.359375 -4.75 1.265625 -4.828125 C 1.421875 -5.28125 1.890625 -5.59375 2.4375 -5.59375 C 3.25 -5.59375 4.015625 -5.140625 4.015625 -4.25 C 4.015625 -3.5625 3.53125 -2.984375 2.875 -2.4375 L 0.671875 -0.578125 C 0.578125 -0.5 0.515625 -0.453125 0.515625 -0.3125 C 0.515625 0 0.765625 0 0.921875 0 L 4.3125 0 C 4.640625 0 4.703125 -0.09375 4.703125 -0.40625 Z M 4.703125 -0.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 2.953125 0.359375 L 2.953125 -6.453125 C 2.953125 -6.5625 2.953125 -6.921875 2.609375 -6.921875 C 2.265625 -6.921875 2.265625 -6.5625 2.265625 -6.453125 L 2.265625 0.359375 C 2.265625 0.484375 2.265625 0.828125 2.609375 0.828125 C 2.953125 0.828125 2.953125 0.484375 2.953125 0.359375 Z M 2.953125 0.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 4.40625 -0.296875 C 4.40625 -0.609375 4.171875 -0.609375 4 -0.609375 L 3.09375 -0.609375 L 3.09375 -5.796875 C 3.09375 -5.953125 3.09375 -6.203125 2.796875 -6.203125 C 2.609375 -6.203125 2.546875 -6.078125 2.5 -5.96875 C 2.125 -5.109375 1.609375 -5 1.421875 -4.984375 C 1.25 -4.96875 1.046875 -4.953125 1.046875 -4.671875 C 1.046875 -4.421875 1.21875 -4.375 1.375 -4.375 C 1.5625 -4.375 1.96875 -4.4375 2.40625 -4.8125 L 2.40625 -0.609375 L 1.5 -0.609375 C 1.34375 -0.609375 1.109375 -0.609375 1.109375 -0.296875 C 1.109375 0 1.359375 0 1.5 0 L 4 0 C 4.15625 0 4.40625 0 4.40625 -0.296875 Z M 4.40625 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 3.234375 -0.625 C 3.234375 -0.984375 2.9375 -1.25 2.625 -1.25 C 2.25 -1.25 2 -0.9375 2 -0.625 C 2 -0.265625 2.296875 0 2.609375 0 C 2.984375 0 3.234375 -0.3125 3.234375 -0.625 Z M 3.234375 -0.625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 4.71875 -3.046875 C 4.71875 -4.890625 3.703125 -6.203125 2.609375 -6.203125 C 1.5 -6.203125 0.5 -4.859375 0.5 -3.046875 C 0.5 -1.203125 1.515625 0.109375 2.609375 0.109375 C 3.734375 0.109375 4.71875 -1.21875 4.71875 -3.046875 Z M 4.03125 -3.15625 C 4.03125 -1.671875 3.390625 -0.5 2.609375 -0.5 C 1.828125 -0.5 1.1875 -1.671875 1.1875 -3.15625 C 1.1875 -4.609375 1.875 -5.59375 2.609375 -5.59375 C 3.34375 -5.59375 4.03125 -4.609375 4.03125 -3.15625 Z M 4.03125 -3.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-9">
<path style="stroke:none;" d="M 3.015625 0.421875 L 3.015625 -6.515625 C 3.015625 -6.8125 2.953125 -6.921875 2.609375 -6.921875 L 0.8125 -6.921875 C 0.65625 -6.921875 0.40625 -6.921875 0.40625 -6.625 C 0.40625 -6.3125 0.640625 -6.3125 0.8125 -6.3125 L 2.328125 -6.3125 L 2.328125 0.21875 L 0.8125 0.21875 C 0.65625 0.21875 0.40625 0.21875 0.40625 0.515625 C 0.40625 0.828125 0.640625 0.828125 0.8125 0.828125 L 2.609375 0.828125 C 2.9375 0.828125 3.015625 0.734375 3.015625 0.421875 Z M 3.015625 0.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-10">
<path style="stroke:none;" d="M 3.453125 -0.25 C 3.453125 -0.859375 3.0625 -1.25 2.625 -1.25 C 2.21875 -1.25 2 -0.953125 2 -0.625 C 2 -0.25 2.28125 0 2.609375 0 C 2.671875 0 2.734375 -0.015625 2.8125 -0.03125 C 2.65625 0.59375 2.1875 0.75 2.078125 0.78125 C 1.96875 0.8125 1.796875 0.875 1.796875 1.0625 C 1.796875 1.21875 1.9375 1.390625 2.109375 1.390625 C 2.4375 1.390625 3.453125 0.84375 3.453125 -0.25 Z M 3.453125 -0.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-11">
<path style="stroke:none;" d="M 4.625 -1.09375 C 4.625 -1.359375 4.34375 -1.359375 4.28125 -1.359375 C 4.09375 -1.359375 4.015625 -1.328125 3.953125 -1.140625 C 3.734375 -0.640625 3.1875 -0.546875 2.90625 -0.546875 C 2.15625 -0.546875 1.421875 -1.046875 1.25 -1.90625 L 4.234375 -1.90625 C 4.4375 -1.90625 4.625 -1.90625 4.625 -2.265625 C 4.625 -3.40625 3.984375 -4.390625 2.6875 -4.390625 C 1.5 -4.390625 0.546875 -3.390625 0.546875 -2.15625 C 0.546875 -0.953125 1.5625 0.0625 2.84375 0.0625 C 4.15625 0.0625 4.625 -0.84375 4.625 -1.09375 Z M 3.921875 -2.5 L 1.265625 -2.5 C 1.40625 -3.234375 2 -3.78125 2.6875 -3.78125 C 3.203125 -3.78125 3.828125 -3.53125 3.921875 -2.5 Z M 3.921875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph2-12">
<path style="stroke:none;" d="M 4.984375 -3.984375 C 4.984375 -4.296875 4.75 -4.296875 4.578125 -4.296875 L 3.421875 -4.296875 C 3.265625 -4.296875 3.015625 -4.296875 3.015625 -4 C 3.015625 -3.6875 3.265625 -3.6875 3.421875 -3.6875 L 3.703125 -3.6875 L 2.609375 -0.484375 L 1.53125 -3.6875 L 1.796875 -3.6875 C 1.953125 -3.6875 2.203125 -3.6875 2.203125 -3.984375 C 2.203125 -4.296875 1.96875 -4.296875 1.796875 -4.296875 L 0.640625 -4.296875 C 0.484375 -4.296875 0.234375 -4.296875 0.234375 -3.984375 C 0.234375 -3.6875 0.484375 -3.6875 0.640625 -3.6875 L 0.9375 -3.6875 L 2.078125 -0.296875 C 2.203125 0.046875 2.40625 0.046875 2.609375 0.046875 C 2.796875 0.046875 3.03125 0.046875 3.140625 -0.296875 L 4.28125 -3.6875 L 4.578125 -3.6875 C 4.734375 -3.6875 4.984375 -3.6875 4.984375 -3.984375 Z M 4.984375 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-13">
<path style="stroke:none;" d="M 5.109375 -0.296875 C 5.109375 -0.609375 4.859375 -0.609375 4.6875 -0.609375 L 4.25 -0.609375 L 4.25 -2.921875 C 4.25 -3.921875 3.75 -4.359375 2.953125 -4.359375 C 2.296875 -4.359375 1.84375 -4.015625 1.65625 -3.828125 C 1.65625 -4.140625 1.65625 -4.296875 1.25 -4.296875 L 0.53125 -4.296875 C 0.375 -4.296875 0.125 -4.296875 0.125 -3.984375 C 0.125 -3.6875 0.375 -3.6875 0.515625 -3.6875 L 0.96875 -3.6875 L 0.96875 -0.609375 L 0.53125 -0.609375 C 0.375 -0.609375 0.125 -0.609375 0.125 -0.296875 C 0.125 0 0.375 0 0.515625 0 L 2.109375 0 C 2.25 0 2.5 0 2.5 -0.296875 C 2.5 -0.609375 2.25 -0.609375 2.09375 -0.609375 L 1.65625 -0.609375 L 1.65625 -2.375 C 1.65625 -3.375 2.390625 -3.75 2.90625 -3.75 C 3.421875 -3.75 3.5625 -3.46875 3.5625 -2.875 L 3.5625 -0.609375 L 3.1875 -0.609375 C 3.015625 -0.609375 2.765625 -0.609375 2.765625 -0.296875 C 2.765625 0 3.046875 0 3.1875 0 L 4.703125 0 C 4.84375 0 5.109375 0 5.109375 -0.296875 Z M 5.109375 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-14">
<path style="stroke:none;" d="M 4.671875 -0.90625 C 4.671875 -1.09375 4.53125 -1.171875 4.421875 -1.25 L 1.5625 -3.046875 L 4.421875 -4.859375 C 4.53125 -4.921875 4.671875 -5 4.671875 -5.1875 C 4.671875 -5.421875 4.46875 -5.546875 4.3125 -5.546875 C 4.234375 -5.546875 4.203125 -5.53125 4.0625 -5.4375 L 0.78125 -3.375 C 0.6875 -3.3125 0.5625 -3.234375 0.5625 -3.046875 C 0.5625 -2.921875 0.640625 -2.8125 0.734375 -2.734375 L 4.0625 -0.65625 C 4.203125 -0.5625 4.234375 -0.5625 4.3125 -0.5625 C 4.46875 -0.5625 4.671875 -0.671875 4.671875 -0.90625 Z M 4.671875 -0.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-15">
<path style="stroke:none;" d="M 4.671875 -3.046875 C 4.671875 -3.1875 4.578125 -3.296875 4.484375 -3.359375 L 1.171875 -5.4375 C 1.03125 -5.53125 1 -5.546875 0.90625 -5.546875 C 0.75 -5.546875 0.5625 -5.421875 0.5625 -5.1875 C 0.5625 -5 0.6875 -4.921875 0.796875 -4.859375 L 3.65625 -3.046875 L 0.796875 -1.25 C 0.6875 -1.171875 0.5625 -1.09375 0.5625 -0.90625 C 0.5625 -0.671875 0.75 -0.5625 0.90625 -0.5625 C 1 -0.5625 1.03125 -0.5625 1.171875 -0.65625 L 4.453125 -2.71875 C 4.53125 -2.78125 4.671875 -2.859375 4.671875 -3.046875 Z M 4.671875 -3.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-16">
<path style="stroke:none;" d="M 4.859375 -0.40625 L 4.859375 -1.296875 C 4.859375 -1.5 4.859375 -1.703125 4.53125 -1.703125 C 4.171875 -1.703125 4.171875 -1.5 4.171875 -1.296875 L 4.171875 -0.609375 L 1.78125 -0.609375 L 1.78125 -5.484375 L 2.328125 -5.484375 C 2.46875 -5.484375 2.734375 -5.484375 2.734375 -5.78125 C 2.734375 -6.09375 2.484375 -6.09375 2.328125 -6.09375 L 0.71875 -6.09375 C 0.5625 -6.09375 0.3125 -6.09375 0.3125 -5.78125 C 0.3125 -5.484375 0.5625 -5.484375 0.71875 -5.484375 L 1.09375 -5.484375 L 1.09375 -0.609375 L 0.71875 -0.609375 C 0.5625 -0.609375 0.3125 -0.609375 0.3125 -0.296875 C 0.3125 0 0.5625 0 0.71875 0 L 4.46875 0 C 4.796875 0 4.859375 -0.09375 4.859375 -0.40625 Z M 4.859375 -0.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-17">
<path style="stroke:none;" d="M 5.171875 -0.3125 C 5.171875 -0.609375 4.921875 -0.609375 4.78125 -0.609375 C 4.359375 -0.609375 4.25 -0.65625 4.171875 -0.6875 L 4.171875 -2.84375 C 4.171875 -3.546875 3.640625 -4.390625 2.203125 -4.390625 C 1.78125 -4.390625 0.75 -4.390625 0.75 -3.65625 C 0.75 -3.359375 0.96875 -3.203125 1.203125 -3.203125 C 1.359375 -3.203125 1.640625 -3.296875 1.640625 -3.65625 C 1.640625 -3.734375 1.65625 -3.75 1.859375 -3.765625 C 2 -3.78125 2.125 -3.78125 2.21875 -3.78125 C 2.96875 -3.78125 3.484375 -3.46875 3.484375 -2.765625 C 1.71875 -2.734375 0.5 -2.234375 0.5 -1.28125 C 0.5 -0.59375 1.125 0.0625 2.140625 0.0625 C 2.515625 0.0625 3.125 -0.015625 3.59375 -0.3125 C 3.8125 -0.015625 4.296875 0 4.671875 0 C 4.953125 0 5.171875 0 5.171875 -0.3125 Z M 3.484375 -1.328125 C 3.484375 -1.109375 3.484375 -0.890625 3.09375 -0.71875 C 2.734375 -0.546875 2.296875 -0.546875 2.21875 -0.546875 C 1.59375 -0.546875 1.1875 -0.890625 1.1875 -1.28125 C 1.1875 -1.765625 2.046875 -2.140625 3.484375 -2.171875 Z M 3.484375 -1.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-18">
<path style="stroke:none;" d="M 4.96875 -4.953125 L 4.96875 -5.6875 C 4.96875 -5.984375 4.90625 -6.09375 4.5625 -6.09375 L 0.671875 -6.09375 C 0.34375 -6.09375 0.265625 -6.015625 0.265625 -5.6875 L 0.265625 -4.953125 C 0.265625 -4.765625 0.265625 -4.546875 0.59375 -4.546875 C 0.953125 -4.546875 0.953125 -4.75 0.953125 -4.953125 L 0.953125 -5.484375 L 2.265625 -5.484375 L 2.265625 -0.609375 L 1.75 -0.609375 C 1.609375 -0.609375 1.359375 -0.609375 1.359375 -0.3125 C 1.359375 0 1.59375 0 1.75 0 L 3.484375 0 C 3.625 0 3.875 0 3.875 -0.296875 C 3.875 -0.609375 3.640625 -0.609375 3.484375 -0.609375 L 2.953125 -0.609375 L 2.953125 -5.484375 L 4.28125 -5.484375 L 4.28125 -4.953125 C 4.28125 -4.765625 4.28125 -4.546875 4.609375 -4.546875 C 4.96875 -4.546875 4.96875 -4.75 4.96875 -4.953125 Z M 4.96875 -4.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-19">
<path style="stroke:none;" d="M 4.9375 -0.296875 C 4.9375 -0.609375 4.6875 -0.609375 4.53125 -0.609375 L 4.3125 -0.609375 L 2.90625 -3.25 L 4.03125 -5.484375 L 4.25 -5.484375 C 4.390625 -5.484375 4.65625 -5.484375 4.65625 -5.78125 C 4.65625 -6.09375 4.390625 -6.09375 4.25 -6.09375 L 3.203125 -6.09375 C 3.0625 -6.09375 2.8125 -6.09375 2.8125 -5.796875 C 2.8125 -5.484375 3.046875 -5.484375 3.265625 -5.484375 L 2.5625 -4.03125 L 1.796875 -5.484375 C 2 -5.484375 2.21875 -5.484375 2.21875 -5.796875 C 2.21875 -6.09375 1.96875 -6.09375 1.828125 -6.09375 L 0.78125 -6.09375 C 0.640625 -6.09375 0.375 -6.09375 0.375 -5.796875 C 0.375 -5.484375 0.640625 -5.484375 0.78125 -5.484375 L 1.015625 -5.484375 L 2.21875 -3.234375 L 0.890625 -0.609375 L 0.671875 -0.609375 C 0.515625 -0.609375 0.265625 -0.609375 0.265625 -0.296875 C 0.265625 0 0.515625 0 0.671875 0 L 1.703125 0 C 1.859375 0 2.109375 0 2.109375 -0.296875 C 2.109375 -0.609375 1.875 -0.609375 1.640625 -0.609375 L 2.5625 -2.546875 L 3.546875 -0.609375 C 3.3125 -0.609375 3.09375 -0.609375 3.09375 -0.296875 C 3.09375 0 3.34375 0 3.5 0 L 4.53125 0 C 4.6875 0 4.9375 0 4.9375 -0.296875 Z M 4.9375 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-20">
<path style="stroke:none;" d="M 4.53125 -0.296875 C 4.53125 -0.609375 4.28125 -0.609375 4.125 -0.609375 L 3.078125 -0.609375 L 3.078125 -3.890625 C 3.078125 -4.203125 3.015625 -4.296875 2.6875 -4.296875 L 1.265625 -4.296875 C 1.109375 -4.296875 0.859375 -4.296875 0.859375 -4 C 0.859375 -3.6875 1.109375 -3.6875 1.265625 -3.6875 L 2.390625 -3.6875 L 2.390625 -0.609375 L 1.1875 -0.609375 C 1.03125 -0.609375 0.78125 -0.609375 0.78125 -0.296875 C 0.78125 0 1.03125 0 1.1875 0 L 4.125 0 C 4.28125 0 4.53125 0 4.53125 -0.296875 Z M 3.125 -5.53125 C 3.125 -5.8125 2.90625 -6.03125 2.625 -6.03125 C 2.34375 -6.03125 2.125 -5.8125 2.125 -5.53125 C 2.125 -5.25 2.34375 -5.03125 2.625 -5.03125 C 2.90625 -5.03125 3.125 -5.25 3.125 -5.53125 Z M 3.125 -5.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-21">
<path style="stroke:none;" d="M 5.140625 -0.296875 C 5.140625 -0.609375 4.9375 -0.609375 4.578125 -0.609375 L 4.578125 -3.015625 C 4.578125 -3.21875 4.578125 -4.359375 3.6875 -4.359375 C 3.390625 -4.359375 2.984375 -4.234375 2.703125 -3.84375 C 2.546875 -4.171875 2.265625 -4.359375 1.9375 -4.359375 C 1.625 -4.359375 1.328125 -4.21875 1.09375 -4 C 1.0625 -4.296875 0.875 -4.296875 0.6875 -4.296875 L 0.375 -4.296875 C 0.21875 -4.296875 -0.046875 -4.296875 -0.046875 -4 C -0.046875 -3.6875 0.171875 -3.6875 0.53125 -3.6875 L 0.53125 -0.609375 C 0.171875 -0.609375 -0.046875 -0.609375 -0.046875 -0.296875 C -0.046875 0 0.234375 0 0.375 0 L 1.25 0 C 1.390625 0 1.65625 0 1.65625 -0.296875 C 1.65625 -0.609375 1.453125 -0.609375 1.09375 -0.609375 L 1.09375 -2.390625 C 1.09375 -3.28125 1.5 -3.75 1.90625 -3.75 C 2.140625 -3.75 2.265625 -3.578125 2.265625 -2.9375 L 2.265625 -0.609375 C 2.078125 -0.609375 1.828125 -0.609375 1.828125 -0.296875 C 1.828125 0 2.109375 0 2.25 0 L 2.984375 0 C 3.140625 0 3.40625 0 3.40625 -0.296875 C 3.40625 -0.609375 3.1875 -0.609375 2.828125 -0.609375 L 2.828125 -2.390625 C 2.828125 -3.28125 3.234375 -3.75 3.65625 -3.75 C 3.875 -3.75 4.015625 -3.578125 4.015625 -2.9375 L 4.015625 -0.609375 C 3.828125 -0.609375 3.578125 -0.609375 3.578125 -0.296875 C 3.578125 0 3.84375 0 3.984375 0 L 4.734375 0 C 4.890625 0 5.140625 0 5.140625 -0.296875 Z M 5.140625 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-22">
<path style="stroke:none;" d="M 4.703125 -1.65625 C 4.703125 -2.296875 4.34375 -2.71875 4.234375 -2.84375 C 3.8125 -3.234375 3.546875 -3.3125 2.765625 -3.484375 L 1.96875 -3.671875 C 1.546875 -3.78125 1.171875 -4.140625 1.171875 -4.609375 C 1.171875 -5.109375 1.65625 -5.59375 2.359375 -5.59375 C 3.53125 -5.59375 3.6875 -4.65625 3.75 -4.34375 C 3.78125 -4.125 3.890625 -4.0625 4.09375 -4.0625 C 4.4375 -4.0625 4.4375 -4.28125 4.4375 -4.46875 L 4.4375 -5.796875 C 4.4375 -5.953125 4.4375 -6.203125 4.140625 -6.203125 C 3.890625 -6.203125 3.84375 -6.03125 3.765625 -5.734375 C 3.359375 -6.078125 2.828125 -6.203125 2.375 -6.203125 C 1.265625 -6.203125 0.515625 -5.40625 0.515625 -4.5625 C 0.515625 -3.890625 0.984375 -3.234375 1.796875 -3 L 2.953125 -2.734375 C 3.234375 -2.671875 4.0625 -2.46875 4.0625 -1.609375 C 4.0625 -1.09375 3.625 -0.5 2.84375 -0.5 C 2.5625 -0.5 2.078125 -0.53125 1.671875 -0.8125 C 1.25 -1.078125 1.21875 -1.5 1.203125 -1.671875 C 1.203125 -1.84375 1.1875 -2.03125 0.875 -2.03125 C 0.515625 -2.03125 0.515625 -1.8125 0.515625 -1.609375 L 0.515625 -0.296875 C 0.515625 -0.140625 0.515625 0.109375 0.8125 0.109375 C 1.03125 0.109375 1.09375 -0.03125 1.1875 -0.34375 C 1.578125 -0.046875 2.1875 0.109375 2.828125 0.109375 C 3.984375 0.109375 4.703125 -0.765625 4.703125 -1.65625 Z M 4.703125 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-23">
<path style="stroke:none;" d="M 4.46875 -1.25 C 4.46875 -1.4375 4.46875 -1.640625 4.125 -1.640625 C 3.796875 -1.640625 3.78125 -1.4375 3.78125 -1.265625 C 3.78125 -0.640625 3.203125 -0.546875 2.984375 -0.546875 C 2.21875 -0.546875 2.21875 -1.0625 2.21875 -1.3125 L 2.21875 -3.6875 L 3.84375 -3.6875 C 4 -3.6875 4.25 -3.6875 4.25 -3.984375 C 4.25 -4.296875 4 -4.296875 3.84375 -4.296875 L 2.21875 -4.296875 L 2.21875 -5.109375 C 2.21875 -5.296875 2.21875 -5.515625 1.875 -5.515625 C 1.53125 -5.515625 1.53125 -5.3125 1.53125 -5.109375 L 1.53125 -4.296875 L 0.65625 -4.296875 C 0.5 -4.296875 0.25 -4.296875 0.25 -3.984375 C 0.25 -3.6875 0.5 -3.6875 0.640625 -3.6875 L 1.53125 -3.6875 L 1.53125 -1.25 C 1.53125 -0.296875 2.203125 0.0625 2.9375 0.0625 C 3.671875 0.0625 4.46875 -0.375 4.46875 -1.25 Z M 4.46875 -1.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-24">
<path style="stroke:none;" d="M 5.109375 -0.3125 C 5.109375 -0.609375 4.84375 -0.609375 4.703125 -0.609375 L 4.25 -0.609375 L 4.25 -3.890625 C 4.25 -4.203125 4.203125 -4.296875 3.859375 -4.296875 L 3.125 -4.296875 C 2.96875 -4.296875 2.71875 -4.296875 2.71875 -3.984375 C 2.71875 -3.6875 2.984375 -3.6875 3.125 -3.6875 L 3.5625 -3.6875 L 3.5625 -1.5625 C 3.5625 -0.671875 2.765625 -0.546875 2.4375 -0.546875 C 1.65625 -0.546875 1.65625 -0.875 1.65625 -1.203125 L 1.65625 -3.890625 C 1.65625 -4.203125 1.59375 -4.296875 1.25 -4.296875 L 0.53125 -4.296875 C 0.375 -4.296875 0.125 -4.296875 0.125 -3.984375 C 0.125 -3.6875 0.375 -3.6875 0.515625 -3.6875 L 0.96875 -3.6875 L 0.96875 -1.140625 C 0.96875 -0.171875 1.65625 0.0625 2.375 0.0625 C 2.796875 0.0625 3.203125 -0.046875 3.5625 -0.3125 C 3.578125 0 3.78125 0 3.96875 0 L 4.6875 0 C 4.859375 0 5.109375 0 5.109375 -0.3125 Z M 5.109375 -0.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-25">
<path style="stroke:none;" d="M 5.109375 -0.3125 C 5.109375 -0.609375 4.84375 -0.609375 4.703125 -0.609375 L 4.25 -0.609375 L 4.25 -5.6875 C 4.25 -5.984375 4.203125 -6.09375 3.859375 -6.09375 L 3.125 -6.09375 C 2.96875 -6.09375 2.71875 -6.09375 2.71875 -5.78125 C 2.71875 -5.484375 2.984375 -5.484375 3.125 -5.484375 L 3.5625 -5.484375 L 3.5625 -3.90625 C 3.234375 -4.203125 2.828125 -4.359375 2.40625 -4.359375 C 1.3125 -4.359375 0.359375 -3.40625 0.359375 -2.140625 C 0.359375 -0.90625 1.25 0.0625 2.3125 0.0625 C 2.875 0.0625 3.296875 -0.203125 3.5625 -0.5 C 3.5625 -0.140625 3.5625 0 3.96875 0 L 4.6875 0 C 4.859375 0 5.109375 0 5.109375 -0.3125 Z M 3.5625 -1.9375 C 3.5625 -1.375 3.125 -0.546875 2.359375 -0.546875 C 1.640625 -0.546875 1.046875 -1.25 1.046875 -2.140625 C 1.046875 -3.09375 1.75 -3.75 2.4375 -3.75 C 3.078125 -3.75 3.5625 -3.1875 3.5625 -2.640625 Z M 3.5625 -1.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-26">
<path style="stroke:none;" d="M 4.640625 -6.5625 C 4.640625 -6.75 4.5 -6.921875 4.296875 -6.921875 C 4.078125 -6.921875 4 -6.765625 3.953125 -6.640625 L 0.65625 0.234375 C 0.59375 0.40625 0.578125 0.40625 0.578125 0.484375 C 0.578125 0.65625 0.734375 0.828125 0.921875 0.828125 C 1.140625 0.828125 1.21875 0.671875 1.28125 0.546875 L 4.5625 -6.328125 C 4.640625 -6.484375 4.640625 -6.484375 4.640625 -6.5625 Z M 4.640625 -6.5625 "/>
</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 4.6875 -0.953125 C 4.6875 -1.171875 4.546875 -1.28125 4.421875 -1.359375 L 1.734375 -3.046875 L 4.421875 -4.75 C 4.546875 -4.828125 4.6875 -4.921875 4.6875 -5.140625 C 4.6875 -5.40625 4.46875 -5.546875 4.28125 -5.546875 C 4.171875 -5.546875 4.140625 -5.546875 3.984375 -5.4375 L 0.78125 -3.4375 C 0.671875 -3.375 0.53125 -3.265625 0.53125 -3.046875 C 0.53125 -2.90625 0.625 -2.765625 0.75 -2.6875 L 3.984375 -0.65625 C 4.140625 -0.546875 4.171875 -0.546875 4.28125 -0.546875 C 4.46875 -0.546875 4.6875 -0.6875 4.6875 -0.953125 Z M 4.6875 -0.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 4.6875 -3.046875 C 4.6875 -3.453125 4.296875 -3.46875 4.15625 -3.46875 L 1.0625 -3.46875 C 0.921875 -3.46875 0.53125 -3.453125 0.53125 -3.046875 C 0.53125 -2.640625 0.921875 -2.625 1.0625 -2.625 L 4.15625 -2.625 C 4.296875 -2.625 4.6875 -2.640625 4.6875 -3.046875 Z M 4.6875 -3.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 5.109375 -0.375 C 5.109375 -0.734375 4.828125 -0.75 4.640625 -0.75 L 4.296875 -0.75 L 4.296875 -2.921875 C 4.296875 -3.953125 3.765625 -4.390625 2.953125 -4.390625 C 2.40625 -4.390625 2 -4.171875 1.75 -3.984375 L 1.75 -5.609375 C 1.75 -5.96875 1.6875 -6.09375 1.28125 -6.09375 L 0.578125 -6.09375 C 0.390625 -6.09375 0.109375 -6.078125 0.109375 -5.71875 C 0.109375 -5.359375 0.40625 -5.34375 0.5625 -5.34375 L 0.921875 -5.34375 L 0.921875 -0.75 L 0.578125 -0.75 C 0.390625 -0.75 0.109375 -0.734375 0.109375 -0.375 C 0.109375 -0.015625 0.40625 0 0.5625 0 L 2.109375 0 C 2.28125 0 2.578125 -0.015625 2.578125 -0.375 C 2.578125 -0.734375 2.296875 -0.75 2.109375 -0.75 L 1.75 -0.75 L 1.75 -2.390625 C 1.75 -3.296875 2.4375 -3.65625 2.890625 -3.65625 C 3.359375 -3.65625 3.46875 -3.40625 3.46875 -2.875 L 3.46875 -0.75 L 3.171875 -0.75 C 2.984375 -0.75 2.6875 -0.734375 2.6875 -0.375 C 2.6875 -0.015625 3 0 3.171875 0 L 4.65625 0 C 4.8125 0 5.109375 -0.015625 5.109375 -0.375 Z M 5.109375 -0.375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 4.71875 -0.484375 L 4.71875 -0.734375 C 4.71875 -0.953125 4.71875 -1.203125 4.328125 -1.203125 C 3.953125 -1.203125 3.90625 -1.03125 3.90625 -0.75 L 1.890625 -0.75 C 2.453125 -1.234375 3.265625 -1.875 3.65625 -2.21875 C 4.28125 -2.78125 4.71875 -3.421875 4.71875 -4.234375 C 4.71875 -5.4375 3.71875 -6.203125 2.484375 -6.203125 C 1.28125 -6.203125 0.5 -5.359375 0.5 -4.5 C 0.5 -4.078125 0.8125 -3.953125 1 -3.953125 C 1.25 -3.953125 1.515625 -4.140625 1.515625 -4.46875 C 1.515625 -4.578125 1.46875 -4.71875 1.390625 -4.8125 C 1.546875 -5.1875 1.953125 -5.453125 2.4375 -5.453125 C 3.1875 -5.453125 3.90625 -5.03125 3.90625 -4.234375 C 3.90625 -3.5625 3.4375 -3.015625 2.8125 -2.515625 L 0.671875 -0.703125 C 0.5625 -0.609375 0.5 -0.546875 0.5 -0.375 C 0.5 -0.015625 0.78125 0 0.96875 0 L 4.265625 0 C 4.640625 0 4.71875 -0.09375 4.71875 -0.484375 Z M 4.71875 -0.484375 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="-0.198" y="10.871"/>
<use xlink:href="#glyph0-2" x="12.420918" y="10.871"/>
<use xlink:href="#glyph0-3" x="20.266854" y="10.871"/>
<use xlink:href="#glyph0-4" x="26.632263" y="10.871"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="34.70487" y="10.871"/>
<use xlink:href="#glyph0-6" x="42.068774" y="10.871"/>
<use xlink:href="#glyph0-6" x="46.551962" y="10.871"/>
<use xlink:href="#glyph0-7" x="51.035149" y="10.871"/>
<use xlink:href="#glyph0-8" x="56.414974" y="10.871"/>
<use xlink:href="#glyph0-2" x="71.725239" y="10.871"/>
<use xlink:href="#glyph0-9" x="79.571176" y="10.871"/>
<use xlink:href="#glyph0-10" x="87.640913" y="10.871"/>
<use xlink:href="#glyph0-5" x="92.124101" y="10.871"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="-0.198" y="32.692"/>
<use xlink:href="#glyph1-2" x="7.55091" y="32.692"/>
<use xlink:href="#glyph1-3" x="13.086131" y="32.692"/>
<use xlink:href="#glyph1-4" x="18.067431" y="32.692"/>
<use xlink:href="#glyph1-5" x="23.602651" y="32.692"/>
<use xlink:href="#glyph1-3" x="27.505002" y="32.692"/>
<use xlink:href="#glyph1-6" x="32.486302" y="32.692"/>
<use xlink:href="#glyph1-7" x="36.360757" y="32.692"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="44.106678" y="32.692"/>
<use xlink:href="#glyph1-8" x="49.087978" y="32.692"/>
<use xlink:href="#glyph1-8" x="51.855589" y="32.692"/>
<use xlink:href="#glyph1-7" x="54.623199" y="32.692"/>
<use xlink:href="#glyph1-5" x="59.051575" y="32.692"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="66.271471" y="32.692"/>
<use xlink:href="#glyph1-7" x="71.252771" y="32.692"/>
<use xlink:href="#glyph1-5" x="75.681147" y="32.692"/>
<use xlink:href="#glyph1-3" x="79.583497" y="32.692"/>
<use xlink:href="#glyph1-4" x="84.564797" y="32.692"/>
<use xlink:href="#glyph1-7" x="90.100018" y="32.692"/>
<use xlink:href="#glyph1-10" x="94.528393" y="32.692"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="103.38116" y="32.692"/>
<use xlink:href="#glyph1-3" x="109.469305" y="32.692"/>
<use xlink:href="#glyph1-12" x="114.450605" y="32.692"/>
<use xlink:href="#glyph1-8" x="119.985825" y="32.692"/>
<use xlink:href="#glyph1-7" x="122.753435" y="32.692"/>
<use xlink:href="#glyph1-10" x="127.181811" y="32.692"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-13" x="136.04454" y="32.692"/>
<use xlink:href="#glyph1-14" x="140.472916" y="32.692"/>
<use xlink:href="#glyph1-15" x="147.667905" y="32.692"/>
<use xlink:href="#glyph1-16" x="150.435516" y="32.692"/>
<use xlink:href="#glyph1-17" x="154.365761" y="32.692"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="158.515184" y="32.692"/>
<use xlink:href="#glyph1-7" x="164.050405" y="32.692"/>
<use xlink:href="#glyph1-10" x="168.478781" y="32.692"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-18" x="177.331547" y="32.692"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="185.630393" y="32.692"/>
<use xlink:href="#glyph1-10" x="191.165613" y="32.692"/>
<use xlink:href="#glyph1-4" x="196.700834" y="32.692"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="205.5536" y="32.692"/>
<use xlink:href="#glyph1-20" x="210.5349" y="32.692"/>
<use xlink:href="#glyph1-20" x="215.5162" y="32.692"/>
<use xlink:href="#glyph1-21" x="220.4975" y="32.692"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="-0.198" y="52.617"/>
<use xlink:href="#glyph2-2" x="5.032365" y="52.617"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="10.26273" y="52.617"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="15.493095" y="52.617"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="25.953825" y="52.617"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="36.414555" y="52.617"/>
</g>
<g style="fill:rgb(66.999817%,12.998962%,100%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="46.875" y="52.617"/>
<use xlink:href="#glyph3-2" x="52.105365" y="52.617"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="62.566" y="52.617"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="67.796365" y="52.617"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="73.02673" y="52.617"/>
<use xlink:href="#glyph2-7" x="78.257095" y="52.617"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="83.48746" y="52.617"/>
<use xlink:href="#glyph2-8" x="88.717825" y="52.617"/>
<use xlink:href="#glyph2-8" x="93.94819" y="52.617"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-9" x="99.178555" y="52.617"/>
<use xlink:href="#glyph2-10" x="104.40892" y="52.617"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-11" x="114.86965" y="52.617"/>
<use xlink:href="#glyph2-12" x="120.100015" y="52.617"/>
<use xlink:href="#glyph2-11" x="125.33038" y="52.617"/>
<use xlink:href="#glyph2-13" x="130.560745" y="52.617"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="141.021475" y="52.617"/>
<use xlink:href="#glyph2-9" x="146.25184" y="52.617"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="-0.198" y="85.563"/>
<use xlink:href="#glyph0-10" x="10.395234" y="85.563"/>
<use xlink:href="#glyph0-12" x="14.878422" y="85.563"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="29.224622" y="85.563"/>
<use xlink:href="#glyph0-13" x="41.843539" y="85.563"/>
<use xlink:href="#glyph0-8" x="53.068006" y="85.563"/>
<use xlink:href="#glyph0-14" x="68.378271" y="85.563"/>
<use xlink:href="#glyph0-7" x="78.074867" y="85.563"/>
<use xlink:href="#glyph0-15" x="83.454692" y="85.563"/>
<use xlink:href="#glyph0-5" x="94.927348" y="85.563"/>
<use xlink:href="#glyph0-10" x="102.291253" y="85.563"/>
<use xlink:href="#glyph0-3" x="106.77444" y="85.563"/>
<use xlink:href="#glyph0-16" x="113.139849" y="85.563"/>
<use xlink:href="#glyph0-10" x="122.106224" y="85.563"/>
<use xlink:href="#glyph0-5" x="126.589412" y="85.563"/>
<use xlink:href="#glyph0-6" x="133.953316" y="85.563"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-22" x="-0.198" y="107.384"/>
<use xlink:href="#glyph1-15" x="6.582546" y="107.384"/>
<use xlink:href="#glyph1-10" x="9.350156" y="107.384"/>
<use xlink:href="#glyph1-7" x="14.885376" y="107.384"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-23" x="22.631298" y="107.384"/>
<use xlink:href="#glyph1-24" x="30.103248" y="107.384"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="35.917421" y="107.384"/>
<use xlink:href="#glyph1-5" x="40.345797" y="107.384"/>
<use xlink:href="#glyph1-16" x="44.248147" y="107.384"/>
<use xlink:href="#glyph1-17" x="48.178393" y="107.384"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="52.327816" y="107.384"/>
<use xlink:href="#glyph1-5" x="57.863037" y="107.384"/>
<use xlink:href="#glyph1-15" x="61.765387" y="107.384"/>
<use xlink:href="#glyph1-25" x="64.532997" y="107.384"/>
<use xlink:href="#glyph1-6" x="67.577568" y="107.384"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-14" x="74.769569" y="107.384"/>
<use xlink:href="#glyph1-15" x="81.964558" y="107.384"/>
<use xlink:href="#glyph1-5" x="84.732169" y="107.384"/>
<use xlink:href="#glyph1-4" x="88.634519" y="107.384"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-16" x="97.487286" y="107.384"/>
<use xlink:href="#glyph1-26" x="101.417531" y="107.384"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="109.72634" y="107.384"/>
<use xlink:href="#glyph1-2" x="114.70764" y="107.384"/>
<use xlink:href="#glyph1-16" x="120.24286" y="107.384"/>
<use xlink:href="#glyph1-9" x="124.173106" y="107.384"/>
<use xlink:href="#glyph1-7" x="129.154406" y="107.384"/>
<use xlink:href="#glyph1-13" x="133.582782" y="107.384"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="138.001195" y="107.384"/>
<use xlink:href="#glyph1-15" x="142.42957" y="107.384"/>
<use xlink:href="#glyph1-17" x="145.197181" y="107.384"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="149.356566" y="107.384"/>
<use xlink:href="#glyph1-10" x="154.891787" y="107.384"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="160.417045" y="107.384"/>
<use xlink:href="#glyph1-6" x="164.84542" y="107.384"/>
<use xlink:href="#glyph1-21" x="168.719876" y="107.384"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-14" x="-0.198" y="127.309"/>
</g>
<g style="fill:rgb(0%,50%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="5.032" y="127.309"/>
<use xlink:href="#glyph3-4" x="10.262365" y="127.309"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-15" x="15.493" y="127.309"/>
<use xlink:href="#glyph2-16" x="20.723365" y="127.309"/>
<use xlink:href="#glyph2-17" x="25.95373" y="127.309"/>
<use xlink:href="#glyph2-18" x="31.184095" y="127.309"/>
<use xlink:href="#glyph2-11" x="36.41446" y="127.309"/>
<use xlink:href="#glyph2-19" x="41.644825" y="127.309"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-20" x="52.105555" y="127.309"/>
<use xlink:href="#glyph2-21" x="57.33592" y="127.309"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-22" x="67.79665" y="127.309"/>
<use xlink:href="#glyph2-23" x="73.027015" y="127.309"/>
<use xlink:href="#glyph2-24" x="78.25738" y="127.309"/>
<use xlink:href="#glyph2-25" x="83.487745" y="127.309"/>
<use xlink:href="#glyph2-20" x="88.71811" y="127.309"/>
<use xlink:href="#glyph2-24" x="93.948475" y="127.309"/>
<use xlink:href="#glyph2-21" x="99.17884" y="127.309"/>
<use xlink:href="#glyph2-14" x="104.409205" y="127.309"/>
<use xlink:href="#glyph2-26" x="109.63957" y="127.309"/>
</g>
<g style="fill:rgb(0%,50%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="114.87" y="127.309"/>
<use xlink:href="#glyph3-4" x="120.100365" y="127.309"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-15" x="125.331" y="127.309"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-27" x="14.746" y="147.234"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 72 KiB

View File

@ -0,0 +1,481 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" version="1.1">
<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 12.0625 0 L 12.0625 -0.609375 L 10.546875 -0.609375 L 10.546875 -9.21875 L 12.0625 -9.21875 L 12.0625 -9.84375 C 11.640625 -9.8125 10.109375 -9.8125 9.59375 -9.8125 C 9.078125 -9.8125 7.546875 -9.8125 7.125 -9.84375 L 7.125 -9.21875 L 8.65625 -9.21875 L 8.65625 -5.421875 L 3.953125 -5.421875 L 3.953125 -9.21875 L 5.484375 -9.21875 L 5.484375 -9.84375 C 5.0625 -9.8125 3.53125 -9.8125 3.015625 -9.8125 C 2.5 -9.8125 0.96875 -9.8125 0.546875 -9.84375 L 0.546875 -9.21875 L 2.0625 -9.21875 L 2.0625 -0.609375 L 0.546875 -0.609375 L 0.546875 0 C 0.96875 -0.03125 2.5 -0.03125 3.015625 -0.03125 C 3.53125 -0.03125 5.0625 -0.03125 5.484375 0 L 5.484375 -0.609375 L 3.953125 -0.609375 L 3.953125 -4.8125 L 8.65625 -4.8125 L 8.65625 -0.609375 L 7.125 -0.609375 L 7.125 0 C 7.546875 -0.03125 9.078125 -0.03125 9.59375 -0.03125 C 10.109375 -0.03125 11.640625 -0.03125 12.0625 0 Z M 12.0625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 7.765625 -0.3125 C 7.765625 -0.609375 7.625 -0.609375 7.4375 -0.609375 C 6.53125 -0.625 6.53125 -0.859375 6.53125 -1.1875 L 6.53125 -4.28125 C 6.53125 -5.609375 5.484375 -6.5 3.453125 -6.5 C 2.65625 -6.5 0.96875 -6.421875 0.96875 -5.21875 C 0.96875 -4.625 1.421875 -4.359375 1.8125 -4.359375 C 2.234375 -4.359375 2.65625 -4.65625 2.65625 -5.203125 C 2.65625 -5.484375 2.546875 -5.734375 2.3125 -5.890625 C 2.78125 -6.03125 3.125 -6.03125 3.40625 -6.03125 C 4.375 -6.03125 4.96875 -5.484375 4.96875 -4.296875 L 4.96875 -3.734375 C 2.703125 -3.734375 0.421875 -3.09375 0.421875 -1.5 C 0.421875 -0.203125 2.078125 0.09375 3.0625 0.09375 C 4.171875 0.09375 4.875 -0.515625 5.15625 -1.140625 C 5.15625 -0.609375 5.15625 0 6.609375 0 L 7.34375 0 C 7.640625 0 7.765625 0 7.765625 -0.3125 Z M 4.96875 -2 C 4.96875 -0.640625 3.765625 -0.390625 3.296875 -0.390625 C 2.59375 -0.390625 2.015625 -0.859375 2.015625 -1.515625 C 2.015625 -2.828125 3.5625 -3.265625 4.96875 -3.34375 Z M 4.96875 -2 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 5.8125 -2 C 5.8125 -2.6875 5.4375 -3.15625 5.15625 -3.40625 C 4.5625 -3.90625 4.078125 -3.984375 3.296875 -4.125 C 2.375 -4.28125 1.515625 -4.453125 1.515625 -5.140625 C 1.515625 -6.0625 2.796875 -6.0625 3.09375 -6.0625 C 4.6875 -6.0625 4.78125 -5.0625 4.8125 -4.703125 C 4.8125 -4.515625 4.9375 -4.515625 5.109375 -4.515625 C 5.40625 -4.515625 5.40625 -4.5625 5.40625 -4.890625 L 5.40625 -6.125 C 5.40625 -6.390625 5.40625 -6.5 5.1875 -6.5 C 5.109375 -6.5 5.078125 -6.5 4.859375 -6.375 C 4.8125 -6.328125 4.640625 -6.21875 4.578125 -6.1875 C 4.171875 -6.40625 3.640625 -6.5 3.125 -6.5 C 2.703125 -6.5 0.546875 -6.5 0.546875 -4.640625 C 0.546875 -3.125 2.328125 -2.8125 2.765625 -2.734375 C 3.15625 -2.671875 3.625 -2.578125 3.6875 -2.578125 C 4.265625 -2.453125 4.828125 -2.09375 4.828125 -1.484375 C 4.828125 -0.390625 3.53125 -0.390625 3.234375 -0.390625 C 2.5 -0.390625 1.59375 -0.609375 1.1875 -2.015625 C 1.109375 -2.296875 1.09375 -2.3125 0.84375 -2.3125 C 0.546875 -2.3125 0.546875 -2.265625 0.546875 -1.9375 L 0.546875 -0.28125 C 0.546875 -0.015625 0.546875 0.09375 0.765625 0.09375 C 0.859375 0.09375 0.890625 0.09375 1.171875 -0.140625 L 1.546875 -0.421875 C 2.1875 0.09375 2.96875 0.09375 3.234375 0.09375 C 4.015625 0.09375 5.8125 -0.09375 5.8125 -2 Z M 5.8125 -2 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 8.25 0 L 8.25 -0.609375 C 8.015625 -0.609375 7.734375 -0.609375 7.578125 -0.625 C 7.375 -0.671875 7.3125 -0.71875 7.15625 -0.921875 L 4.765625 -4.015625 L 6.5625 -5.484375 C 6.734375 -5.625 6.90625 -5.75 7.890625 -5.75 L 7.890625 -6.375 C 7.515625 -6.34375 7.234375 -6.34375 6.703125 -6.34375 C 6.328125 -6.34375 5.515625 -6.34375 5.1875 -6.375 L 5.1875 -5.75 C 5.359375 -5.75 5.703125 -5.703125 5.703125 -5.59375 C 5.703125 -5.53125 5.625 -5.484375 5.59375 -5.453125 L 2.984375 -3.359375 L 2.984375 -9.953125 L 0.5 -9.84375 L 0.5 -9.21875 C 1.390625 -9.21875 1.484375 -9.21875 1.484375 -8.65625 L 1.484375 -0.609375 L 0.5 -0.609375 L 0.5 0 C 0.828125 -0.03125 1.828125 -0.03125 2.203125 -0.03125 C 2.59375 -0.03125 3.578125 -0.03125 3.921875 0 L 3.921875 -0.609375 L 2.921875 -0.609375 L 2.921875 -2.53125 C 3.15625 -2.71875 3.375 -2.890625 3.6875 -3.15625 L 5.421875 -0.921875 C 5.515625 -0.796875 5.515625 -0.765625 5.515625 -0.765625 C 5.515625 -0.609375 5.234375 -0.609375 5.03125 -0.609375 L 5.03125 0 C 5.375 -0.03125 6.328125 -0.03125 6.71875 -0.03125 C 7.4375 -0.03125 7.640625 -0.03125 8.25 0 Z M 8.25 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 6.90625 -1.671875 C 6.90625 -1.890625 6.6875 -1.890625 6.59375 -1.890625 C 6.375 -1.890625 6.359375 -1.84375 6.265625 -1.65625 C 5.890625 -0.734375 4.953125 -0.4375 4.265625 -0.4375 C 2.1875 -0.4375 2.171875 -2.359375 2.171875 -3.171875 L 6.484375 -3.171875 C 6.8125 -3.171875 6.90625 -3.171875 6.90625 -3.53125 C 6.90625 -3.953125 6.796875 -5.03125 6.140625 -5.703125 C 5.53125 -6.3125 4.734375 -6.5 3.90625 -6.5 C 1.65625 -6.5 0.4375 -5.03125 0.4375 -3.234375 C 0.4375 -1.21875 1.921875 0.09375 4.09375 0.09375 C 6.25 0.09375 6.90625 -1.4375 6.90625 -1.671875 Z M 5.578125 -3.578125 L 2.171875 -3.578125 C 2.1875 -4.171875 2.203125 -4.734375 2.515625 -5.25 C 2.78125 -5.703125 3.28125 -6.03125 3.90625 -6.03125 C 5.4375 -6.03125 5.5625 -4.296875 5.578125 -3.578125 Z M 5.578125 -3.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.109375 0 L 4.109375 -0.609375 L 3.109375 -0.609375 L 3.109375 -9.953125 L 0.625 -9.84375 L 0.625 -9.21875 C 1.515625 -9.21875 1.625 -9.21875 1.625 -8.65625 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 1.984375 -0.03125 2.359375 -0.03125 C 2.75 -0.03125 3.765625 -0.03125 4.109375 0 Z M 4.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.46875 -2.53125 L 4.46875 -3.84375 L 0.171875 -3.84375 L 0.171875 -2.53125 Z M 4.46875 -2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 14.703125 0 L 14.703125 -0.609375 L 13.1875 -0.609375 L 13.1875 -9.21875 L 14.703125 -9.21875 L 14.703125 -9.84375 L 11.640625 -9.84375 C 11.34375 -9.84375 11.21875 -9.84375 11.09375 -9.53125 L 7.640625 -1.828125 L 4.203125 -9.53125 C 4.078125 -9.84375 3.9375 -9.84375 3.640625 -9.84375 L 0.59375 -9.84375 L 0.59375 -9.21875 L 2.109375 -9.21875 L 2.109375 -1.046875 C 2.109375 -0.734375 2.09375 -0.71875 1.71875 -0.65625 C 1.46875 -0.625 1.171875 -0.609375 0.921875 -0.609375 L 0.59375 -0.609375 L 0.59375 0 C 0.921875 -0.03125 2.03125 -0.03125 2.4375 -0.03125 C 2.84375 -0.03125 3.96875 -0.03125 4.296875 0 L 4.296875 -0.609375 L 3.96875 -0.609375 C 3.578125 -0.609375 3.5625 -0.609375 3.21875 -0.65625 C 2.796875 -0.71875 2.78125 -0.734375 2.78125 -1.046875 L 2.78125 -9.046875 L 2.796875 -9.046875 L 6.703125 -0.296875 C 6.765625 -0.140625 6.859375 0 7.09375 0 C 7.34375 0 7.4375 -0.140625 7.5 -0.296875 L 11.46875 -9.21875 L 11.484375 -9.21875 L 11.484375 -0.609375 L 9.96875 -0.609375 L 9.96875 0 C 10.359375 -0.03125 11.84375 -0.03125 12.328125 -0.03125 C 12.828125 -0.03125 14.3125 -0.03125 14.703125 0 Z M 14.703125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 7.8125 -5.734375 C 7.8125 -6.078125 7.5625 -6.546875 6.953125 -6.546875 C 6.34375 -6.546875 5.75 -6.234375 5.453125 -5.984375 C 4.859375 -6.328125 4.296875 -6.453125 3.578125 -6.453125 C 1.59375 -6.453125 0.796875 -5.34375 0.796875 -4.34375 C 0.796875 -3.90625 0.953125 -3.3125 1.546875 -2.828125 C 1.3125 -2.546875 1.046875 -2.046875 1.046875 -1.53125 C 1.046875 -0.921875 1.375 -0.390625 1.671875 -0.15625 C 1.328125 -0.078125 0.4375 0.265625 0.4375 1.078125 C 0.4375 1.921875 1.375 2.890625 4.015625 2.890625 C 6.390625 2.890625 7.609375 2.109375 7.609375 1.03125 C 7.609375 -0.234375 6.765625 -0.640625 6.40625 -0.8125 C 5.71875 -1.15625 4.8125 -1.15625 3.546875 -1.15625 C 3.1875 -1.15625 2.546875 -1.15625 2.484375 -1.171875 C 1.859375 -1.28125 1.6875 -1.828125 1.6875 -2.09375 C 1.6875 -2.203125 1.703125 -2.421875 1.859375 -2.609375 C 2.546875 -2.234375 3.359375 -2.234375 3.578125 -2.234375 C 5.546875 -2.234375 6.34375 -3.34375 6.34375 -4.34375 C 6.34375 -5.078125 5.921875 -5.59375 5.75 -5.734375 C 6.171875 -5.96875 6.515625 -6.03125 6.75 -6.046875 C 6.71875 -5.984375 6.671875 -5.921875 6.671875 -5.734375 C 6.671875 -5.4375 6.875 -5.15625 7.25 -5.15625 C 7.609375 -5.15625 7.8125 -5.4375 7.8125 -5.734375 Z M 4.8125 -4.34375 C 4.8125 -3.6875 4.8125 -2.703125 3.578125 -2.703125 C 2.328125 -2.703125 2.328125 -3.6875 2.328125 -4.34375 C 2.328125 -5 2.328125 -6 3.578125 -6 C 4.8125 -6 4.8125 -5 4.8125 -4.34375 Z M 6.421875 1.09375 C 6.421875 1.59375 5.921875 2.421875 4.03125 2.421875 C 2.140625 2.421875 1.625 1.625 1.625 1.078125 C 1.625 0.15625 2.53125 0.15625 2.734375 0.15625 L 4.375 0.15625 C 5.421875 0.15625 6.421875 0.34375 6.421875 1.09375 Z M 6.421875 1.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 4 0 L 4 -0.609375 L 3.109375 -0.609375 L 3.109375 -6.453125 L 0.671875 -6.34375 L 0.671875 -5.71875 C 1.515625 -5.71875 1.625 -5.71875 1.625 -5.15625 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 1.953125 -0.03125 2.34375 -0.03125 C 2.734375 -0.03125 3.65625 -0.03125 4 0 Z M 3.28125 -8.71875 C 3.28125 -9.3125 2.796875 -9.75 2.25 -9.75 C 1.65625 -9.75 1.203125 -9.28125 1.203125 -8.71875 C 1.203125 -8.140625 1.6875 -7.6875 2.234375 -7.6875 C 2.828125 -7.6875 3.28125 -8.15625 3.28125 -8.71875 Z M 3.28125 -8.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 10.125 -3.875 L 9.53125 -3.875 C 9.21875 -1.734375 8.6875 -0.609375 6.203125 -0.609375 L 3.953125 -0.609375 L 3.953125 -4.765625 L 4.8125 -4.765625 C 6.1875 -4.765625 6.328125 -4.171875 6.328125 -3.078125 L 6.921875 -3.078125 L 6.921875 -7.0625 L 6.328125 -7.0625 C 6.328125 -5.984375 6.1875 -5.375 4.8125 -5.375 L 3.953125 -5.375 L 3.953125 -9.15625 L 6.203125 -9.15625 C 8.390625 -9.15625 8.859375 -8.21875 9.078125 -6.375 L 9.6875 -6.375 L 9.265625 -9.765625 L 0.546875 -9.765625 L 0.546875 -9.15625 L 2.0625 -9.15625 L 2.0625 -0.609375 L 0.546875 -0.609375 L 0.546875 0 L 9.515625 0 Z M 10.125 -3.875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4.421875 -6.453125 3.53125 -5.953125 3.046875 -4.875 L 3.03125 -4.875 L 3.03125 -6.453125 L 0.609375 -6.34375 L 0.609375 -5.71875 C 1.484375 -5.71875 1.59375 -5.71875 1.59375 -5.15625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 10.609375 -6.3125 L 10.328125 -9.703125 L 0.875 -9.703125 L 0.59375 -6.3125 L 1.1875 -6.3125 C 1.3125 -7.875 1.4375 -9.09375 3.5 -9.09375 L 4.65625 -9.09375 L 4.65625 -0.609375 L 2.5 -0.609375 L 2.5 0 L 5.609375 -0.03125 L 8.71875 0 L 8.71875 -0.609375 L 6.5625 -0.609375 L 6.5625 -9.09375 L 7.703125 -9.09375 C 9.765625 -9.09375 9.890625 -7.890625 10.015625 -6.3125 Z M 10.609375 -6.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 9.015625 -3.875 L 8.40625 -3.875 C 8.3125 -2.890625 8.078125 -0.609375 5.5 -0.609375 L 3.953125 -0.609375 L 3.953125 -9.21875 L 5.859375 -9.21875 L 5.859375 -9.84375 L 3.125 -9.8125 C 2.59375 -9.8125 0.96875 -9.8125 0.546875 -9.84375 L 0.546875 -9.21875 L 2.0625 -9.21875 L 2.0625 -0.609375 L 0.546875 -0.609375 L 0.546875 0 L 8.59375 0 Z M 9.015625 -3.875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 10.578125 -2.65625 C 10.578125 -4.015625 9.375 -5 7.640625 -5.140625 C 9.703125 -5.515625 10.109375 -6.703125 10.109375 -7.375 C 10.109375 -8.6875 8.90625 -9.84375 6.609375 -9.84375 L 0.5625 -9.84375 L 0.5625 -9.21875 L 2.078125 -9.21875 L 2.078125 -0.609375 L 0.5625 -0.609375 L 0.5625 0 L 7.046875 0 C 9.40625 0 10.578125 -1.28125 10.578125 -2.65625 Z M 8.21875 -7.390625 C 8.21875 -6.390625 7.65625 -5.34375 5.984375 -5.34375 L 3.84375 -5.34375 L 3.84375 -9.21875 L 6.4375 -9.21875 C 7.921875 -9.21875 8.21875 -8.109375 8.21875 -7.390625 Z M 8.625 -2.6875 C 8.625 -1.78125 8.140625 -0.609375 6.484375 -0.609375 L 3.84375 -0.609375 L 3.84375 -4.875 L 6.703125 -4.875 C 8.375 -4.875 8.625 -3.328125 8.625 -2.6875 Z M 8.625 -2.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 8.40625 -3.203125 C 8.40625 -5.171875 7.078125 -6.453125 5.140625 -6.453125 C 4.28125 -6.453125 3.5625 -6.171875 2.984375 -5.703125 L 2.984375 -6.453125 L 0.5 -6.34375 L 0.5 -5.71875 C 1.390625 -5.71875 1.484375 -5.71875 1.484375 -5.15625 L 1.484375 2.171875 L 0.5 2.171875 L 0.5 2.78125 C 0.828125 2.75 1.859375 2.75 2.265625 2.75 C 2.671875 2.75 3.71875 2.75 4.046875 2.78125 L 4.046875 2.171875 L 3.0625 2.171875 L 3.0625 -0.59375 C 3.40625 -0.265625 4.046875 0.09375 4.90625 0.09375 C 6.875 0.09375 8.40625 -1.109375 8.40625 -3.203125 Z M 6.6875 -3.203125 C 6.6875 -1.125 5.65625 -0.390625 4.734375 -0.390625 C 4.109375 -0.390625 3.5 -0.703125 3.0625 -1.375 L 3.0625 -5.015625 C 3.578125 -5.703125 4.34375 -5.9375 4.90625 -5.9375 C 5.84375 -5.9375 6.6875 -5.09375 6.6875 -3.203125 Z M 6.6875 -3.203125 "/>
</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 7.25 0.09375 C 7.25 0 7.25 -0.109375 7.140625 -0.109375 C 7.046875 -0.109375 7.03125 -0.03125 7.03125 0.0625 C 6.96875 0.609375 6.546875 0.90625 6.125 0.90625 C 5.65625 0.90625 5.40625 0.5625 5.15625 -0.0625 C 6.34375 -0.59375 7.1875 -1.875 7.1875 -3.375 C 7.1875 -5.40625 5.6875 -7.03125 3.875 -7.03125 C 2.078125 -7.03125 0.5625 -5.4375 0.5625 -3.375 C 0.5625 -1.359375 2.0625 0.21875 3.875 0.21875 C 4.1875 0.21875 4.53125 0.15625 4.828125 0.0625 C 4.96875 1.015625 5.109375 1.9375 6.046875 1.9375 C 7.0625 1.9375 7.25 0.609375 7.25 0.09375 Z M 6.1875 -3.375 C 6.1875 -2.609375 6.078125 -1.203125 5.015625 -0.421875 C 4.796875 -0.984375 4.46875 -1.46875 3.890625 -1.46875 C 3.375 -1.46875 3.078125 -1.046875 3.078125 -0.640625 C 3.078125 -0.375 3.203125 -0.171875 3.203125 -0.15625 C 2.671875 -0.359375 1.5625 -1.09375 1.5625 -3.375 C 1.5625 -5.96875 2.953125 -6.78125 3.875 -6.78125 C 4.828125 -6.78125 6.1875 -5.921875 6.1875 -3.375 Z M 4.75 -0.265625 C 4.421875 -0.0625 4.09375 -0.03125 3.875 -0.03125 C 3.375 -0.03125 3.296875 -0.484375 3.296875 -0.640625 C 3.296875 -0.921875 3.5 -1.25 3.890625 -1.25 C 4.421875 -1.25 4.640625 -0.84375 4.75 -0.265625 Z M 4.75 -0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 3.15625 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 L 3.78125 0.109375 Z M 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -1.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 Z M 3.3125 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 Z M 3.484375 -2.515625 L 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 3.484375 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 5.578125 -2.65625 L 5.328125 -2.65625 C 5.25 -1.28125 5.0625 -0.34375 3.21875 -0.34375 L 1.578125 -0.34375 L 5.453125 -6.453125 C 5.515625 -6.5625 5.515625 -6.578125 5.515625 -6.65625 C 5.515625 -6.8125 5.46875 -6.8125 5.265625 -6.8125 L 0.796875 -6.8125 L 0.6875 -4.5625 L 0.9375 -4.5625 C 1 -5.6875 1.3125 -6.5 2.9375 -6.5 L 4.5 -6.5 L 0.625 -0.375 C 0.5625 -0.265625 0.5625 -0.25 0.5625 -0.171875 C 0.5625 0 0.609375 0 0.8125 0 L 5.40625 0 Z M 5.578125 -2.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 4 -1.859375 L 3.75 -1.859375 C 3.65625 -0.6875 3.453125 -0.25 2.296875 -0.25 L 1.109375 -0.25 L 3.890625 -4 C 3.984375 -4.109375 3.984375 -4.125 3.984375 -4.171875 C 3.984375 -4.296875 3.890625 -4.296875 3.71875 -4.296875 L 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.734375 -3.703125 0.921875 -4.078125 2.015625 -4.078125 L 3.15625 -4.078125 L 0.375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.828125 0 Z M 4 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 7.015625 -3.984375 L 7.015625 -4.296875 C 6.78125 -4.28125 6.5 -4.265625 6.28125 -4.265625 L 5.359375 -4.296875 L 5.359375 -3.984375 C 5.71875 -3.984375 5.9375 -3.796875 5.9375 -3.515625 C 5.9375 -3.453125 5.9375 -3.421875 5.875 -3.296875 L 4.96875 -0.75 L 3.984375 -3.53125 C 3.953125 -3.65625 3.9375 -3.671875 3.9375 -3.71875 C 3.9375 -3.984375 4.328125 -3.984375 4.53125 -3.984375 L 4.53125 -4.296875 L 3.484375 -4.265625 C 3.1875 -4.265625 2.90625 -4.28125 2.609375 -4.296875 L 2.609375 -3.984375 C 2.96875 -3.984375 3.125 -3.96875 3.234375 -3.84375 C 3.28125 -3.78125 3.390625 -3.484375 3.453125 -3.296875 L 2.609375 -0.875 L 1.65625 -3.53125 C 1.609375 -3.65625 1.609375 -3.671875 1.609375 -3.71875 C 1.609375 -3.984375 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 L 1.109375 -4.265625 L 0.171875 -4.296875 L 0.171875 -3.984375 C 0.671875 -3.984375 0.796875 -3.953125 0.921875 -3.640625 L 2.171875 -0.109375 C 2.21875 0.03125 2.25 0.109375 2.375 0.109375 C 2.515625 0.109375 2.53125 0.046875 2.578125 -0.09375 L 3.59375 -2.90625 L 4.609375 -0.078125 C 4.640625 0.03125 4.671875 0.109375 4.8125 0.109375 C 4.9375 0.109375 4.96875 0.015625 5 -0.078125 L 6.171875 -3.34375 C 6.34375 -3.84375 6.65625 -3.984375 7.015625 -3.984375 Z M 7.015625 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-16">
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-17">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-18">
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-19">
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-20">
<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 Z M 3.765625 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-21">
<path style="stroke:none;" d="M 1.90625 -3.765625 C 1.90625 -4.0625 1.671875 -4.296875 1.390625 -4.296875 C 1.09375 -4.296875 0.859375 -4.0625 0.859375 -3.765625 C 0.859375 -3.484375 1.09375 -3.234375 1.390625 -3.234375 C 1.671875 -3.234375 1.90625 -3.484375 1.90625 -3.765625 Z M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-22">
<path style="stroke:none;" d="M 6.5 -2.578125 L 6.25 -2.578125 C 6 -1.03125 5.765625 -0.3125 4.0625 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -3.375 L 3.140625 -3.375 C 4.109375 -3.375 4.21875 -3.046875 4.21875 -2.203125 L 4.46875 -2.203125 L 4.46875 -4.84375 L 4.21875 -4.84375 C 4.21875 -3.984375 4.109375 -3.671875 3.140625 -3.671875 L 2.25 -3.671875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 4.015625 -6.46875 C 5.546875 -6.46875 5.8125 -5.921875 5.96875 -4.53125 L 6.21875 -4.53125 L 5.9375 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 6.078125 0 Z M 6.5 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-23">
<path style="stroke:none;" d="M 7.140625 -6.5 L 7.140625 -6.8125 L 5.96875 -6.78125 L 4.78125 -6.8125 L 4.78125 -6.5 C 5.796875 -6.5 5.796875 -6.03125 5.796875 -5.765625 L 5.796875 -2.296875 C 5.796875 -0.890625 4.828125 -0.09375 3.890625 -0.09375 C 3.421875 -0.09375 2.25 -0.34375 2.25 -2.234375 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.03125 -6.5 L 3.265625 -6.5 L 3.265625 -6.8125 C 2.921875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -2.265625 C 1.359375 -0.875 2.515625 0.21875 3.875 0.21875 C 5.015625 0.21875 5.90625 -0.703125 6.078125 -1.84375 C 6.109375 -2.046875 6.109375 -2.140625 6.109375 -2.53125 L 6.109375 -5.71875 C 6.109375 -6.046875 6.109375 -6.5 7.140625 -6.5 Z M 3.40625 -7.8125 C 3.40625 -8.0625 3.203125 -8.28125 2.9375 -8.28125 C 2.625 -8.28125 2.4375 -8.03125 2.4375 -7.8125 C 2.4375 -7.5625 2.65625 -7.34375 2.921875 -7.34375 C 3.234375 -7.34375 3.40625 -7.59375 3.40625 -7.8125 Z M 5.5 -7.8125 C 5.5 -8.0625 5.296875 -8.28125 5.03125 -8.28125 C 4.71875 -8.28125 4.53125 -8.03125 4.53125 -7.8125 C 4.53125 -7.5625 4.75 -7.34375 5.015625 -7.34375 C 5.328125 -7.34375 5.5 -7.59375 5.5 -7.8125 Z M 5.5 -7.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-24">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-25">
<path style="stroke:none;" d="M 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 L 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 Z M 3.5625 -6.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-26">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-27">
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</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 4.8125 0.53125 C 4.8125 0.21875 4.578125 0.21875 4.421875 0.21875 L 2.90625 0.21875 L 2.90625 -6.3125 L 4.421875 -6.3125 C 4.5625 -6.3125 4.8125 -6.3125 4.8125 -6.609375 C 4.8125 -6.921875 4.578125 -6.921875 4.421875 -6.921875 L 2.609375 -6.921875 C 2.28125 -6.921875 2.21875 -6.828125 2.21875 -6.515625 L 2.21875 0.421875 C 2.21875 0.734375 2.265625 0.828125 2.609375 0.828125 L 4.421875 0.828125 C 4.5625 0.828125 4.8125 0.828125 4.8125 0.53125 Z M 4.8125 0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 4.9375 -0.296875 C 4.9375 -0.609375 4.6875 -0.609375 4.53125 -0.609375 L 4.140625 -0.609375 L 2.859375 -2.21875 L 4 -3.6875 L 4.390625 -3.6875 C 4.53125 -3.6875 4.8125 -3.6875 4.8125 -3.984375 C 4.8125 -4.296875 4.546875 -4.296875 4.390625 -4.296875 L 3.234375 -4.296875 C 3.078125 -4.296875 2.828125 -4.296875 2.828125 -4 C 2.828125 -3.6875 3.046875 -3.6875 3.3125 -3.6875 L 2.578125 -2.6875 L 1.828125 -3.6875 C 2.078125 -3.6875 2.296875 -3.6875 2.296875 -4 C 2.296875 -4.296875 2.046875 -4.296875 1.90625 -4.296875 L 0.734375 -4.296875 C 0.59375 -4.296875 0.328125 -4.296875 0.328125 -3.984375 C 0.328125 -3.6875 0.59375 -3.6875 0.734375 -3.6875 L 1.140625 -3.6875 L 2.3125 -2.21875 L 1.078125 -0.609375 L 0.671875 -0.609375 C 0.53125 -0.609375 0.265625 -0.609375 0.265625 -0.296875 C 0.265625 0 0.53125 0 0.671875 0 L 1.84375 0 C 2 0 2.25 0 2.25 -0.296875 C 2.25 -0.609375 2.03125 -0.609375 1.71875 -0.609375 L 2.578125 -1.828125 L 3.46875 -0.609375 C 3.1875 -0.609375 2.96875 -0.609375 2.96875 -0.296875 C 2.96875 0 3.21875 0 3.375 0 L 4.53125 0 C 4.671875 0 4.9375 0 4.9375 -0.296875 Z M 4.9375 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 4.359375 -5.40625 L 2.734375 -6.203125 C 2.65625 -6.234375 2.578125 -6.234375 2.5 -6.203125 L 0.875 -5.40625 C 0.53125 -5.25 0.765625 -4.71875 1.109375 -4.875 L 2.609375 -5.515625 L 4.109375 -4.875 C 4.46875 -4.71875 4.703125 -5.25 4.359375 -5.40625 Z M 4.359375 -5.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 4.703125 -0.40625 L 4.703125 -0.671875 C 4.703125 -0.859375 4.703125 -1.078125 4.359375 -1.078125 C 4.015625 -1.078125 4.015625 -0.890625 4.015625 -0.609375 L 1.640625 -0.609375 C 2.234375 -1.109375 3.1875 -1.859375 3.625 -2.265625 C 4.25 -2.828125 4.703125 -3.453125 4.703125 -4.25 C 4.703125 -5.453125 3.703125 -6.203125 2.484375 -6.203125 C 1.3125 -6.203125 0.515625 -5.390625 0.515625 -4.53125 C 0.515625 -4.171875 0.796875 -4.0625 0.96875 -4.0625 C 1.171875 -4.0625 1.40625 -4.234375 1.40625 -4.5 C 1.40625 -4.625 1.359375 -4.75 1.265625 -4.828125 C 1.421875 -5.28125 1.890625 -5.59375 2.4375 -5.59375 C 3.25 -5.59375 4.015625 -5.140625 4.015625 -4.25 C 4.015625 -3.5625 3.53125 -2.984375 2.875 -2.4375 L 0.671875 -0.578125 C 0.578125 -0.5 0.515625 -0.453125 0.515625 -0.3125 C 0.515625 0 0.765625 0 0.921875 0 L 4.3125 0 C 4.640625 0 4.703125 -0.09375 4.703125 -0.40625 Z M 4.703125 -0.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 2.953125 0.359375 L 2.953125 -6.453125 C 2.953125 -6.5625 2.953125 -6.921875 2.609375 -6.921875 C 2.265625 -6.921875 2.265625 -6.5625 2.265625 -6.453125 L 2.265625 0.359375 C 2.265625 0.484375 2.265625 0.828125 2.609375 0.828125 C 2.953125 0.828125 2.953125 0.484375 2.953125 0.359375 Z M 2.953125 0.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 4.40625 -0.296875 C 4.40625 -0.609375 4.171875 -0.609375 4 -0.609375 L 3.09375 -0.609375 L 3.09375 -5.796875 C 3.09375 -5.953125 3.09375 -6.203125 2.796875 -6.203125 C 2.609375 -6.203125 2.546875 -6.078125 2.5 -5.96875 C 2.125 -5.109375 1.609375 -5 1.421875 -4.984375 C 1.25 -4.96875 1.046875 -4.953125 1.046875 -4.671875 C 1.046875 -4.421875 1.21875 -4.375 1.375 -4.375 C 1.5625 -4.375 1.96875 -4.4375 2.40625 -4.8125 L 2.40625 -0.609375 L 1.5 -0.609375 C 1.34375 -0.609375 1.109375 -0.609375 1.109375 -0.296875 C 1.109375 0 1.359375 0 1.5 0 L 4 0 C 4.15625 0 4.40625 0 4.40625 -0.296875 Z M 4.40625 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 3.234375 -0.625 C 3.234375 -0.984375 2.9375 -1.25 2.625 -1.25 C 2.25 -1.25 2 -0.9375 2 -0.625 C 2 -0.265625 2.296875 0 2.609375 0 C 2.984375 0 3.234375 -0.3125 3.234375 -0.625 Z M 3.234375 -0.625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 4.71875 -3.046875 C 4.71875 -4.890625 3.703125 -6.203125 2.609375 -6.203125 C 1.5 -6.203125 0.5 -4.859375 0.5 -3.046875 C 0.5 -1.203125 1.515625 0.109375 2.609375 0.109375 C 3.734375 0.109375 4.71875 -1.21875 4.71875 -3.046875 Z M 4.03125 -3.15625 C 4.03125 -1.671875 3.390625 -0.5 2.609375 -0.5 C 1.828125 -0.5 1.1875 -1.671875 1.1875 -3.15625 C 1.1875 -4.609375 1.875 -5.59375 2.609375 -5.59375 C 3.34375 -5.59375 4.03125 -4.609375 4.03125 -3.15625 Z M 4.03125 -3.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-9">
<path style="stroke:none;" d="M 3.015625 0.421875 L 3.015625 -6.515625 C 3.015625 -6.8125 2.953125 -6.921875 2.609375 -6.921875 L 0.8125 -6.921875 C 0.65625 -6.921875 0.40625 -6.921875 0.40625 -6.625 C 0.40625 -6.3125 0.640625 -6.3125 0.8125 -6.3125 L 2.328125 -6.3125 L 2.328125 0.21875 L 0.8125 0.21875 C 0.65625 0.21875 0.40625 0.21875 0.40625 0.515625 C 0.40625 0.828125 0.640625 0.828125 0.8125 0.828125 L 2.609375 0.828125 C 2.9375 0.828125 3.015625 0.734375 3.015625 0.421875 Z M 3.015625 0.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-10">
<path style="stroke:none;" d="M 3.453125 -0.25 C 3.453125 -0.859375 3.0625 -1.25 2.625 -1.25 C 2.21875 -1.25 2 -0.953125 2 -0.625 C 2 -0.25 2.28125 0 2.609375 0 C 2.671875 0 2.734375 -0.015625 2.8125 -0.03125 C 2.65625 0.59375 2.1875 0.75 2.078125 0.78125 C 1.96875 0.8125 1.796875 0.875 1.796875 1.0625 C 1.796875 1.21875 1.9375 1.390625 2.109375 1.390625 C 2.4375 1.390625 3.453125 0.84375 3.453125 -0.25 Z M 3.453125 -0.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-11">
<path style="stroke:none;" d="M 4.625 -1.09375 C 4.625 -1.359375 4.34375 -1.359375 4.28125 -1.359375 C 4.09375 -1.359375 4.015625 -1.328125 3.953125 -1.140625 C 3.734375 -0.640625 3.1875 -0.546875 2.90625 -0.546875 C 2.15625 -0.546875 1.421875 -1.046875 1.25 -1.90625 L 4.234375 -1.90625 C 4.4375 -1.90625 4.625 -1.90625 4.625 -2.265625 C 4.625 -3.40625 3.984375 -4.390625 2.6875 -4.390625 C 1.5 -4.390625 0.546875 -3.390625 0.546875 -2.15625 C 0.546875 -0.953125 1.5625 0.0625 2.84375 0.0625 C 4.15625 0.0625 4.625 -0.84375 4.625 -1.09375 Z M 3.921875 -2.5 L 1.265625 -2.5 C 1.40625 -3.234375 2 -3.78125 2.6875 -3.78125 C 3.203125 -3.78125 3.828125 -3.53125 3.921875 -2.5 Z M 3.921875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph2-12">
<path style="stroke:none;" d="M 4.984375 -3.984375 C 4.984375 -4.296875 4.75 -4.296875 4.578125 -4.296875 L 3.421875 -4.296875 C 3.265625 -4.296875 3.015625 -4.296875 3.015625 -4 C 3.015625 -3.6875 3.265625 -3.6875 3.421875 -3.6875 L 3.703125 -3.6875 L 2.609375 -0.484375 L 1.53125 -3.6875 L 1.796875 -3.6875 C 1.953125 -3.6875 2.203125 -3.6875 2.203125 -3.984375 C 2.203125 -4.296875 1.96875 -4.296875 1.796875 -4.296875 L 0.640625 -4.296875 C 0.484375 -4.296875 0.234375 -4.296875 0.234375 -3.984375 C 0.234375 -3.6875 0.484375 -3.6875 0.640625 -3.6875 L 0.9375 -3.6875 L 2.078125 -0.296875 C 2.203125 0.046875 2.40625 0.046875 2.609375 0.046875 C 2.796875 0.046875 3.03125 0.046875 3.140625 -0.296875 L 4.28125 -3.6875 L 4.578125 -3.6875 C 4.734375 -3.6875 4.984375 -3.6875 4.984375 -3.984375 Z M 4.984375 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-13">
<path style="stroke:none;" d="M 5.109375 -0.296875 C 5.109375 -0.609375 4.859375 -0.609375 4.6875 -0.609375 L 4.25 -0.609375 L 4.25 -2.921875 C 4.25 -3.921875 3.75 -4.359375 2.953125 -4.359375 C 2.296875 -4.359375 1.84375 -4.015625 1.65625 -3.828125 C 1.65625 -4.140625 1.65625 -4.296875 1.25 -4.296875 L 0.53125 -4.296875 C 0.375 -4.296875 0.125 -4.296875 0.125 -3.984375 C 0.125 -3.6875 0.375 -3.6875 0.515625 -3.6875 L 0.96875 -3.6875 L 0.96875 -0.609375 L 0.53125 -0.609375 C 0.375 -0.609375 0.125 -0.609375 0.125 -0.296875 C 0.125 0 0.375 0 0.515625 0 L 2.109375 0 C 2.25 0 2.5 0 2.5 -0.296875 C 2.5 -0.609375 2.25 -0.609375 2.09375 -0.609375 L 1.65625 -0.609375 L 1.65625 -2.375 C 1.65625 -3.375 2.390625 -3.75 2.90625 -3.75 C 3.421875 -3.75 3.5625 -3.46875 3.5625 -2.875 L 3.5625 -0.609375 L 3.1875 -0.609375 C 3.015625 -0.609375 2.765625 -0.609375 2.765625 -0.296875 C 2.765625 0 3.046875 0 3.1875 0 L 4.703125 0 C 4.84375 0 5.109375 0 5.109375 -0.296875 Z M 5.109375 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-14">
<path style="stroke:none;" d="M 4.671875 -0.90625 C 4.671875 -1.09375 4.53125 -1.171875 4.421875 -1.25 L 1.5625 -3.046875 L 4.421875 -4.859375 C 4.53125 -4.921875 4.671875 -5 4.671875 -5.1875 C 4.671875 -5.421875 4.46875 -5.546875 4.3125 -5.546875 C 4.234375 -5.546875 4.203125 -5.53125 4.0625 -5.4375 L 0.78125 -3.375 C 0.6875 -3.3125 0.5625 -3.234375 0.5625 -3.046875 C 0.5625 -2.921875 0.640625 -2.8125 0.734375 -2.734375 L 4.0625 -0.65625 C 4.203125 -0.5625 4.234375 -0.5625 4.3125 -0.5625 C 4.46875 -0.5625 4.671875 -0.671875 4.671875 -0.90625 Z M 4.671875 -0.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-15">
<path style="stroke:none;" d="M 4.671875 -3.046875 C 4.671875 -3.1875 4.578125 -3.296875 4.484375 -3.359375 L 1.171875 -5.4375 C 1.03125 -5.53125 1 -5.546875 0.90625 -5.546875 C 0.75 -5.546875 0.5625 -5.421875 0.5625 -5.1875 C 0.5625 -5 0.6875 -4.921875 0.796875 -4.859375 L 3.65625 -3.046875 L 0.796875 -1.25 C 0.6875 -1.171875 0.5625 -1.09375 0.5625 -0.90625 C 0.5625 -0.671875 0.75 -0.5625 0.90625 -0.5625 C 1 -0.5625 1.03125 -0.5625 1.171875 -0.65625 L 4.453125 -2.71875 C 4.53125 -2.78125 4.671875 -2.859375 4.671875 -3.046875 Z M 4.671875 -3.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-16">
<path style="stroke:none;" d="M 4.859375 -0.40625 L 4.859375 -1.296875 C 4.859375 -1.5 4.859375 -1.703125 4.53125 -1.703125 C 4.171875 -1.703125 4.171875 -1.5 4.171875 -1.296875 L 4.171875 -0.609375 L 1.78125 -0.609375 L 1.78125 -5.484375 L 2.328125 -5.484375 C 2.46875 -5.484375 2.734375 -5.484375 2.734375 -5.78125 C 2.734375 -6.09375 2.484375 -6.09375 2.328125 -6.09375 L 0.71875 -6.09375 C 0.5625 -6.09375 0.3125 -6.09375 0.3125 -5.78125 C 0.3125 -5.484375 0.5625 -5.484375 0.71875 -5.484375 L 1.09375 -5.484375 L 1.09375 -0.609375 L 0.71875 -0.609375 C 0.5625 -0.609375 0.3125 -0.609375 0.3125 -0.296875 C 0.3125 0 0.5625 0 0.71875 0 L 4.46875 0 C 4.796875 0 4.859375 -0.09375 4.859375 -0.40625 Z M 4.859375 -0.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-17">
<path style="stroke:none;" d="M 5.171875 -0.3125 C 5.171875 -0.609375 4.921875 -0.609375 4.78125 -0.609375 C 4.359375 -0.609375 4.25 -0.65625 4.171875 -0.6875 L 4.171875 -2.84375 C 4.171875 -3.546875 3.640625 -4.390625 2.203125 -4.390625 C 1.78125 -4.390625 0.75 -4.390625 0.75 -3.65625 C 0.75 -3.359375 0.96875 -3.203125 1.203125 -3.203125 C 1.359375 -3.203125 1.640625 -3.296875 1.640625 -3.65625 C 1.640625 -3.734375 1.65625 -3.75 1.859375 -3.765625 C 2 -3.78125 2.125 -3.78125 2.21875 -3.78125 C 2.96875 -3.78125 3.484375 -3.46875 3.484375 -2.765625 C 1.71875 -2.734375 0.5 -2.234375 0.5 -1.28125 C 0.5 -0.59375 1.125 0.0625 2.140625 0.0625 C 2.515625 0.0625 3.125 -0.015625 3.59375 -0.3125 C 3.8125 -0.015625 4.296875 0 4.671875 0 C 4.953125 0 5.171875 0 5.171875 -0.3125 Z M 3.484375 -1.328125 C 3.484375 -1.109375 3.484375 -0.890625 3.09375 -0.71875 C 2.734375 -0.546875 2.296875 -0.546875 2.21875 -0.546875 C 1.59375 -0.546875 1.1875 -0.890625 1.1875 -1.28125 C 1.1875 -1.765625 2.046875 -2.140625 3.484375 -2.171875 Z M 3.484375 -1.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-18">
<path style="stroke:none;" d="M 4.96875 -4.953125 L 4.96875 -5.6875 C 4.96875 -5.984375 4.90625 -6.09375 4.5625 -6.09375 L 0.671875 -6.09375 C 0.34375 -6.09375 0.265625 -6.015625 0.265625 -5.6875 L 0.265625 -4.953125 C 0.265625 -4.765625 0.265625 -4.546875 0.59375 -4.546875 C 0.953125 -4.546875 0.953125 -4.75 0.953125 -4.953125 L 0.953125 -5.484375 L 2.265625 -5.484375 L 2.265625 -0.609375 L 1.75 -0.609375 C 1.609375 -0.609375 1.359375 -0.609375 1.359375 -0.3125 C 1.359375 0 1.59375 0 1.75 0 L 3.484375 0 C 3.625 0 3.875 0 3.875 -0.296875 C 3.875 -0.609375 3.640625 -0.609375 3.484375 -0.609375 L 2.953125 -0.609375 L 2.953125 -5.484375 L 4.28125 -5.484375 L 4.28125 -4.953125 C 4.28125 -4.765625 4.28125 -4.546875 4.609375 -4.546875 C 4.96875 -4.546875 4.96875 -4.75 4.96875 -4.953125 Z M 4.96875 -4.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-19">
<path style="stroke:none;" d="M 4.9375 -0.296875 C 4.9375 -0.609375 4.6875 -0.609375 4.53125 -0.609375 L 4.3125 -0.609375 L 2.90625 -3.25 L 4.03125 -5.484375 L 4.25 -5.484375 C 4.390625 -5.484375 4.65625 -5.484375 4.65625 -5.78125 C 4.65625 -6.09375 4.390625 -6.09375 4.25 -6.09375 L 3.203125 -6.09375 C 3.0625 -6.09375 2.8125 -6.09375 2.8125 -5.796875 C 2.8125 -5.484375 3.046875 -5.484375 3.265625 -5.484375 L 2.5625 -4.03125 L 1.796875 -5.484375 C 2 -5.484375 2.21875 -5.484375 2.21875 -5.796875 C 2.21875 -6.09375 1.96875 -6.09375 1.828125 -6.09375 L 0.78125 -6.09375 C 0.640625 -6.09375 0.375 -6.09375 0.375 -5.796875 C 0.375 -5.484375 0.640625 -5.484375 0.78125 -5.484375 L 1.015625 -5.484375 L 2.21875 -3.234375 L 0.890625 -0.609375 L 0.671875 -0.609375 C 0.515625 -0.609375 0.265625 -0.609375 0.265625 -0.296875 C 0.265625 0 0.515625 0 0.671875 0 L 1.703125 0 C 1.859375 0 2.109375 0 2.109375 -0.296875 C 2.109375 -0.609375 1.875 -0.609375 1.640625 -0.609375 L 2.5625 -2.546875 L 3.546875 -0.609375 C 3.3125 -0.609375 3.09375 -0.609375 3.09375 -0.296875 C 3.09375 0 3.34375 0 3.5 0 L 4.53125 0 C 4.6875 0 4.9375 0 4.9375 -0.296875 Z M 4.9375 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-20">
<path style="stroke:none;" d="M 4.53125 -0.296875 C 4.53125 -0.609375 4.28125 -0.609375 4.125 -0.609375 L 3.078125 -0.609375 L 3.078125 -3.890625 C 3.078125 -4.203125 3.015625 -4.296875 2.6875 -4.296875 L 1.265625 -4.296875 C 1.109375 -4.296875 0.859375 -4.296875 0.859375 -4 C 0.859375 -3.6875 1.109375 -3.6875 1.265625 -3.6875 L 2.390625 -3.6875 L 2.390625 -0.609375 L 1.1875 -0.609375 C 1.03125 -0.609375 0.78125 -0.609375 0.78125 -0.296875 C 0.78125 0 1.03125 0 1.1875 0 L 4.125 0 C 4.28125 0 4.53125 0 4.53125 -0.296875 Z M 3.125 -5.53125 C 3.125 -5.8125 2.90625 -6.03125 2.625 -6.03125 C 2.34375 -6.03125 2.125 -5.8125 2.125 -5.53125 C 2.125 -5.25 2.34375 -5.03125 2.625 -5.03125 C 2.90625 -5.03125 3.125 -5.25 3.125 -5.53125 Z M 3.125 -5.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-21">
<path style="stroke:none;" d="M 5.140625 -0.296875 C 5.140625 -0.609375 4.9375 -0.609375 4.578125 -0.609375 L 4.578125 -3.015625 C 4.578125 -3.21875 4.578125 -4.359375 3.6875 -4.359375 C 3.390625 -4.359375 2.984375 -4.234375 2.703125 -3.84375 C 2.546875 -4.171875 2.265625 -4.359375 1.9375 -4.359375 C 1.625 -4.359375 1.328125 -4.21875 1.09375 -4 C 1.0625 -4.296875 0.875 -4.296875 0.6875 -4.296875 L 0.375 -4.296875 C 0.21875 -4.296875 -0.046875 -4.296875 -0.046875 -4 C -0.046875 -3.6875 0.171875 -3.6875 0.53125 -3.6875 L 0.53125 -0.609375 C 0.171875 -0.609375 -0.046875 -0.609375 -0.046875 -0.296875 C -0.046875 0 0.234375 0 0.375 0 L 1.25 0 C 1.390625 0 1.65625 0 1.65625 -0.296875 C 1.65625 -0.609375 1.453125 -0.609375 1.09375 -0.609375 L 1.09375 -2.390625 C 1.09375 -3.28125 1.5 -3.75 1.90625 -3.75 C 2.140625 -3.75 2.265625 -3.578125 2.265625 -2.9375 L 2.265625 -0.609375 C 2.078125 -0.609375 1.828125 -0.609375 1.828125 -0.296875 C 1.828125 0 2.109375 0 2.25 0 L 2.984375 0 C 3.140625 0 3.40625 0 3.40625 -0.296875 C 3.40625 -0.609375 3.1875 -0.609375 2.828125 -0.609375 L 2.828125 -2.390625 C 2.828125 -3.28125 3.234375 -3.75 3.65625 -3.75 C 3.875 -3.75 4.015625 -3.578125 4.015625 -2.9375 L 4.015625 -0.609375 C 3.828125 -0.609375 3.578125 -0.609375 3.578125 -0.296875 C 3.578125 0 3.84375 0 3.984375 0 L 4.734375 0 C 4.890625 0 5.140625 0 5.140625 -0.296875 Z M 5.140625 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-22">
<path style="stroke:none;" d="M 4.703125 -1.65625 C 4.703125 -2.296875 4.34375 -2.71875 4.234375 -2.84375 C 3.8125 -3.234375 3.546875 -3.3125 2.765625 -3.484375 L 1.96875 -3.671875 C 1.546875 -3.78125 1.171875 -4.140625 1.171875 -4.609375 C 1.171875 -5.109375 1.65625 -5.59375 2.359375 -5.59375 C 3.53125 -5.59375 3.6875 -4.65625 3.75 -4.34375 C 3.78125 -4.125 3.890625 -4.0625 4.09375 -4.0625 C 4.4375 -4.0625 4.4375 -4.28125 4.4375 -4.46875 L 4.4375 -5.796875 C 4.4375 -5.953125 4.4375 -6.203125 4.140625 -6.203125 C 3.890625 -6.203125 3.84375 -6.03125 3.765625 -5.734375 C 3.359375 -6.078125 2.828125 -6.203125 2.375 -6.203125 C 1.265625 -6.203125 0.515625 -5.40625 0.515625 -4.5625 C 0.515625 -3.890625 0.984375 -3.234375 1.796875 -3 L 2.953125 -2.734375 C 3.234375 -2.671875 4.0625 -2.46875 4.0625 -1.609375 C 4.0625 -1.09375 3.625 -0.5 2.84375 -0.5 C 2.5625 -0.5 2.078125 -0.53125 1.671875 -0.8125 C 1.25 -1.078125 1.21875 -1.5 1.203125 -1.671875 C 1.203125 -1.84375 1.1875 -2.03125 0.875 -2.03125 C 0.515625 -2.03125 0.515625 -1.8125 0.515625 -1.609375 L 0.515625 -0.296875 C 0.515625 -0.140625 0.515625 0.109375 0.8125 0.109375 C 1.03125 0.109375 1.09375 -0.03125 1.1875 -0.34375 C 1.578125 -0.046875 2.1875 0.109375 2.828125 0.109375 C 3.984375 0.109375 4.703125 -0.765625 4.703125 -1.65625 Z M 4.703125 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-23">
<path style="stroke:none;" d="M 4.46875 -1.25 C 4.46875 -1.4375 4.46875 -1.640625 4.125 -1.640625 C 3.796875 -1.640625 3.78125 -1.4375 3.78125 -1.265625 C 3.78125 -0.640625 3.203125 -0.546875 2.984375 -0.546875 C 2.21875 -0.546875 2.21875 -1.0625 2.21875 -1.3125 L 2.21875 -3.6875 L 3.84375 -3.6875 C 4 -3.6875 4.25 -3.6875 4.25 -3.984375 C 4.25 -4.296875 4 -4.296875 3.84375 -4.296875 L 2.21875 -4.296875 L 2.21875 -5.109375 C 2.21875 -5.296875 2.21875 -5.515625 1.875 -5.515625 C 1.53125 -5.515625 1.53125 -5.3125 1.53125 -5.109375 L 1.53125 -4.296875 L 0.65625 -4.296875 C 0.5 -4.296875 0.25 -4.296875 0.25 -3.984375 C 0.25 -3.6875 0.5 -3.6875 0.640625 -3.6875 L 1.53125 -3.6875 L 1.53125 -1.25 C 1.53125 -0.296875 2.203125 0.0625 2.9375 0.0625 C 3.671875 0.0625 4.46875 -0.375 4.46875 -1.25 Z M 4.46875 -1.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-24">
<path style="stroke:none;" d="M 5.109375 -0.3125 C 5.109375 -0.609375 4.84375 -0.609375 4.703125 -0.609375 L 4.25 -0.609375 L 4.25 -3.890625 C 4.25 -4.203125 4.203125 -4.296875 3.859375 -4.296875 L 3.125 -4.296875 C 2.96875 -4.296875 2.71875 -4.296875 2.71875 -3.984375 C 2.71875 -3.6875 2.984375 -3.6875 3.125 -3.6875 L 3.5625 -3.6875 L 3.5625 -1.5625 C 3.5625 -0.671875 2.765625 -0.546875 2.4375 -0.546875 C 1.65625 -0.546875 1.65625 -0.875 1.65625 -1.203125 L 1.65625 -3.890625 C 1.65625 -4.203125 1.59375 -4.296875 1.25 -4.296875 L 0.53125 -4.296875 C 0.375 -4.296875 0.125 -4.296875 0.125 -3.984375 C 0.125 -3.6875 0.375 -3.6875 0.515625 -3.6875 L 0.96875 -3.6875 L 0.96875 -1.140625 C 0.96875 -0.171875 1.65625 0.0625 2.375 0.0625 C 2.796875 0.0625 3.203125 -0.046875 3.5625 -0.3125 C 3.578125 0 3.78125 0 3.96875 0 L 4.6875 0 C 4.859375 0 5.109375 0 5.109375 -0.3125 Z M 5.109375 -0.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-25">
<path style="stroke:none;" d="M 5.109375 -0.3125 C 5.109375 -0.609375 4.84375 -0.609375 4.703125 -0.609375 L 4.25 -0.609375 L 4.25 -5.6875 C 4.25 -5.984375 4.203125 -6.09375 3.859375 -6.09375 L 3.125 -6.09375 C 2.96875 -6.09375 2.71875 -6.09375 2.71875 -5.78125 C 2.71875 -5.484375 2.984375 -5.484375 3.125 -5.484375 L 3.5625 -5.484375 L 3.5625 -3.90625 C 3.234375 -4.203125 2.828125 -4.359375 2.40625 -4.359375 C 1.3125 -4.359375 0.359375 -3.40625 0.359375 -2.140625 C 0.359375 -0.90625 1.25 0.0625 2.3125 0.0625 C 2.875 0.0625 3.296875 -0.203125 3.5625 -0.5 C 3.5625 -0.140625 3.5625 0 3.96875 0 L 4.6875 0 C 4.859375 0 5.109375 0 5.109375 -0.3125 Z M 3.5625 -1.9375 C 3.5625 -1.375 3.125 -0.546875 2.359375 -0.546875 C 1.640625 -0.546875 1.046875 -1.25 1.046875 -2.140625 C 1.046875 -3.09375 1.75 -3.75 2.4375 -3.75 C 3.078125 -3.75 3.5625 -3.1875 3.5625 -2.640625 Z M 3.5625 -1.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-26">
<path style="stroke:none;" d="M 4.640625 -6.5625 C 4.640625 -6.75 4.5 -6.921875 4.296875 -6.921875 C 4.078125 -6.921875 4 -6.765625 3.953125 -6.640625 L 0.65625 0.234375 C 0.59375 0.40625 0.578125 0.40625 0.578125 0.484375 C 0.578125 0.65625 0.734375 0.828125 0.921875 0.828125 C 1.140625 0.828125 1.21875 0.671875 1.28125 0.546875 L 4.5625 -6.328125 C 4.640625 -6.484375 4.640625 -6.484375 4.640625 -6.5625 Z M 4.640625 -6.5625 "/>
</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 4.6875 -0.953125 C 4.6875 -1.171875 4.546875 -1.28125 4.421875 -1.359375 L 1.734375 -3.046875 L 4.421875 -4.75 C 4.546875 -4.828125 4.6875 -4.921875 4.6875 -5.140625 C 4.6875 -5.40625 4.46875 -5.546875 4.28125 -5.546875 C 4.171875 -5.546875 4.140625 -5.546875 3.984375 -5.4375 L 0.78125 -3.4375 C 0.671875 -3.375 0.53125 -3.265625 0.53125 -3.046875 C 0.53125 -2.90625 0.625 -2.765625 0.75 -2.6875 L 3.984375 -0.65625 C 4.140625 -0.546875 4.171875 -0.546875 4.28125 -0.546875 C 4.46875 -0.546875 4.6875 -0.6875 4.6875 -0.953125 Z M 4.6875 -0.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 4.6875 -3.046875 C 4.6875 -3.453125 4.296875 -3.46875 4.15625 -3.46875 L 1.0625 -3.46875 C 0.921875 -3.46875 0.53125 -3.453125 0.53125 -3.046875 C 0.53125 -2.640625 0.921875 -2.625 1.0625 -2.625 L 4.15625 -2.625 C 4.296875 -2.625 4.6875 -2.640625 4.6875 -3.046875 Z M 4.6875 -3.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 5.109375 -0.375 C 5.109375 -0.734375 4.828125 -0.75 4.640625 -0.75 L 4.296875 -0.75 L 4.296875 -2.921875 C 4.296875 -3.953125 3.765625 -4.390625 2.953125 -4.390625 C 2.40625 -4.390625 2 -4.171875 1.75 -3.984375 L 1.75 -5.609375 C 1.75 -5.96875 1.6875 -6.09375 1.28125 -6.09375 L 0.578125 -6.09375 C 0.390625 -6.09375 0.109375 -6.078125 0.109375 -5.71875 C 0.109375 -5.359375 0.40625 -5.34375 0.5625 -5.34375 L 0.921875 -5.34375 L 0.921875 -0.75 L 0.578125 -0.75 C 0.390625 -0.75 0.109375 -0.734375 0.109375 -0.375 C 0.109375 -0.015625 0.40625 0 0.5625 0 L 2.109375 0 C 2.28125 0 2.578125 -0.015625 2.578125 -0.375 C 2.578125 -0.734375 2.296875 -0.75 2.109375 -0.75 L 1.75 -0.75 L 1.75 -2.390625 C 1.75 -3.296875 2.4375 -3.65625 2.890625 -3.65625 C 3.359375 -3.65625 3.46875 -3.40625 3.46875 -2.875 L 3.46875 -0.75 L 3.171875 -0.75 C 2.984375 -0.75 2.6875 -0.734375 2.6875 -0.375 C 2.6875 -0.015625 3 0 3.171875 0 L 4.65625 0 C 4.8125 0 5.109375 -0.015625 5.109375 -0.375 Z M 5.109375 -0.375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 4.71875 -0.484375 L 4.71875 -0.734375 C 4.71875 -0.953125 4.71875 -1.203125 4.328125 -1.203125 C 3.953125 -1.203125 3.90625 -1.03125 3.90625 -0.75 L 1.890625 -0.75 C 2.453125 -1.234375 3.265625 -1.875 3.65625 -2.21875 C 4.28125 -2.78125 4.71875 -3.421875 4.71875 -4.234375 C 4.71875 -5.4375 3.71875 -6.203125 2.484375 -6.203125 C 1.28125 -6.203125 0.5 -5.359375 0.5 -4.5 C 0.5 -4.078125 0.8125 -3.953125 1 -3.953125 C 1.25 -3.953125 1.515625 -4.140625 1.515625 -4.46875 C 1.515625 -4.578125 1.46875 -4.71875 1.390625 -4.8125 C 1.546875 -5.1875 1.953125 -5.453125 2.4375 -5.453125 C 3.1875 -5.453125 3.90625 -5.03125 3.90625 -4.234375 C 3.90625 -3.5625 3.4375 -3.015625 2.8125 -2.515625 L 0.671875 -0.703125 C 0.5625 -0.609375 0.5 -0.546875 0.5 -0.375 C 0.5 -0.015625 0.78125 0 0.96875 0 L 4.265625 0 C 4.640625 0 4.71875 -0.09375 4.71875 -0.484375 Z M 4.71875 -0.484375 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="124.802" y="135.761"/>
<use xlink:href="#glyph0-2" x="137.420918" y="135.761"/>
<use xlink:href="#glyph0-3" x="145.266854" y="135.761"/>
<use xlink:href="#glyph0-4" x="151.632263" y="135.761"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="159.70487" y="135.761"/>
<use xlink:href="#glyph0-6" x="167.068774" y="135.761"/>
<use xlink:href="#glyph0-6" x="171.551962" y="135.761"/>
<use xlink:href="#glyph0-7" x="176.035149" y="135.761"/>
<use xlink:href="#glyph0-8" x="181.414974" y="135.761"/>
<use xlink:href="#glyph0-2" x="196.725239" y="135.761"/>
<use xlink:href="#glyph0-9" x="204.571176" y="135.761"/>
<use xlink:href="#glyph0-10" x="212.640913" y="135.761"/>
<use xlink:href="#glyph0-5" x="217.124101" y="135.761"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="124.802" y="157.582"/>
<use xlink:href="#glyph1-2" x="132.55091" y="157.582"/>
<use xlink:href="#glyph1-3" x="138.086131" y="157.582"/>
<use xlink:href="#glyph1-4" x="143.067431" y="157.582"/>
<use xlink:href="#glyph1-5" x="148.602651" y="157.582"/>
<use xlink:href="#glyph1-3" x="152.505002" y="157.582"/>
<use xlink:href="#glyph1-6" x="157.486302" y="157.582"/>
<use xlink:href="#glyph1-7" x="161.360757" y="157.582"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="169.106678" y="157.582"/>
<use xlink:href="#glyph1-8" x="174.087978" y="157.582"/>
<use xlink:href="#glyph1-8" x="176.855589" y="157.582"/>
<use xlink:href="#glyph1-7" x="179.623199" y="157.582"/>
<use xlink:href="#glyph1-5" x="184.051575" y="157.582"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="191.271471" y="157.582"/>
<use xlink:href="#glyph1-7" x="196.252771" y="157.582"/>
<use xlink:href="#glyph1-5" x="200.681147" y="157.582"/>
<use xlink:href="#glyph1-3" x="204.583497" y="157.582"/>
<use xlink:href="#glyph1-4" x="209.564797" y="157.582"/>
<use xlink:href="#glyph1-7" x="215.100018" y="157.582"/>
<use xlink:href="#glyph1-10" x="219.528393" y="157.582"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="228.38116" y="157.582"/>
<use xlink:href="#glyph1-3" x="234.469305" y="157.582"/>
<use xlink:href="#glyph1-12" x="239.450605" y="157.582"/>
<use xlink:href="#glyph1-8" x="244.985825" y="157.582"/>
<use xlink:href="#glyph1-7" x="247.753435" y="157.582"/>
<use xlink:href="#glyph1-10" x="252.181811" y="157.582"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-13" x="261.04454" y="157.582"/>
<use xlink:href="#glyph1-14" x="265.472916" y="157.582"/>
<use xlink:href="#glyph1-15" x="272.667905" y="157.582"/>
<use xlink:href="#glyph1-16" x="275.435516" y="157.582"/>
<use xlink:href="#glyph1-17" x="279.365761" y="157.582"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="283.515184" y="157.582"/>
<use xlink:href="#glyph1-7" x="289.050405" y="157.582"/>
<use xlink:href="#glyph1-10" x="293.478781" y="157.582"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-18" x="302.331547" y="157.582"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="310.630393" y="157.582"/>
<use xlink:href="#glyph1-10" x="316.165613" y="157.582"/>
<use xlink:href="#glyph1-4" x="321.700834" y="157.582"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="330.5536" y="157.582"/>
<use xlink:href="#glyph1-20" x="335.5349" y="157.582"/>
<use xlink:href="#glyph1-20" x="340.5162" y="157.582"/>
<use xlink:href="#glyph1-21" x="345.4975" y="157.582"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="124.802" y="177.507"/>
<use xlink:href="#glyph2-2" x="130.032365" y="177.507"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="135.26273" y="177.507"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="140.493095" y="177.507"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="150.953825" y="177.507"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="161.414555" y="177.507"/>
</g>
<g style="fill:rgb(66.999817%,12.998962%,100%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="171.875" y="177.507"/>
<use xlink:href="#glyph3-2" x="177.105365" y="177.507"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="187.566" y="177.507"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="192.796365" y="177.507"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="198.02673" y="177.507"/>
<use xlink:href="#glyph2-7" x="203.257095" y="177.507"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="208.48746" y="177.507"/>
<use xlink:href="#glyph2-8" x="213.717825" y="177.507"/>
<use xlink:href="#glyph2-8" x="218.94819" y="177.507"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-9" x="224.178555" y="177.507"/>
<use xlink:href="#glyph2-10" x="229.40892" y="177.507"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-11" x="239.86965" y="177.507"/>
<use xlink:href="#glyph2-12" x="245.100015" y="177.507"/>
<use xlink:href="#glyph2-11" x="250.33038" y="177.507"/>
<use xlink:href="#glyph2-13" x="255.560745" y="177.507"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="266.021475" y="177.507"/>
<use xlink:href="#glyph2-9" x="271.25184" y="177.507"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="124.802" y="210.453"/>
<use xlink:href="#glyph0-10" x="135.395234" y="210.453"/>
<use xlink:href="#glyph0-12" x="139.878422" y="210.453"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="154.224622" y="210.453"/>
<use xlink:href="#glyph0-13" x="166.843539" y="210.453"/>
<use xlink:href="#glyph0-8" x="178.068006" y="210.453"/>
<use xlink:href="#glyph0-14" x="193.378271" y="210.453"/>
<use xlink:href="#glyph0-7" x="203.074867" y="210.453"/>
<use xlink:href="#glyph0-15" x="208.454692" y="210.453"/>
<use xlink:href="#glyph0-5" x="219.927348" y="210.453"/>
<use xlink:href="#glyph0-10" x="227.291253" y="210.453"/>
<use xlink:href="#glyph0-3" x="231.77444" y="210.453"/>
<use xlink:href="#glyph0-16" x="238.139849" y="210.453"/>
<use xlink:href="#glyph0-10" x="247.106224" y="210.453"/>
<use xlink:href="#glyph0-5" x="251.589412" y="210.453"/>
<use xlink:href="#glyph0-6" x="258.953316" y="210.453"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-22" x="124.802" y="232.274"/>
<use xlink:href="#glyph1-15" x="131.582546" y="232.274"/>
<use xlink:href="#glyph1-10" x="134.350156" y="232.274"/>
<use xlink:href="#glyph1-7" x="139.885376" y="232.274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-23" x="147.631298" y="232.274"/>
<use xlink:href="#glyph1-24" x="155.103248" y="232.274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="160.917421" y="232.274"/>
<use xlink:href="#glyph1-5" x="165.345797" y="232.274"/>
<use xlink:href="#glyph1-16" x="169.248147" y="232.274"/>
<use xlink:href="#glyph1-17" x="173.178393" y="232.274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="177.327816" y="232.274"/>
<use xlink:href="#glyph1-5" x="182.863037" y="232.274"/>
<use xlink:href="#glyph1-15" x="186.765387" y="232.274"/>
<use xlink:href="#glyph1-25" x="189.532997" y="232.274"/>
<use xlink:href="#glyph1-6" x="192.577568" y="232.274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-14" x="199.769569" y="232.274"/>
<use xlink:href="#glyph1-15" x="206.964558" y="232.274"/>
<use xlink:href="#glyph1-5" x="209.732169" y="232.274"/>
<use xlink:href="#glyph1-4" x="213.634519" y="232.274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-16" x="222.487286" y="232.274"/>
<use xlink:href="#glyph1-26" x="226.417531" y="232.274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="234.72634" y="232.274"/>
<use xlink:href="#glyph1-2" x="239.70764" y="232.274"/>
<use xlink:href="#glyph1-16" x="245.24286" y="232.274"/>
<use xlink:href="#glyph1-9" x="249.173106" y="232.274"/>
<use xlink:href="#glyph1-7" x="254.154406" y="232.274"/>
<use xlink:href="#glyph1-13" x="258.582782" y="232.274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="263.001195" y="232.274"/>
<use xlink:href="#glyph1-15" x="267.42957" y="232.274"/>
<use xlink:href="#glyph1-17" x="270.197181" y="232.274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="274.356566" y="232.274"/>
<use xlink:href="#glyph1-10" x="279.891787" y="232.274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="285.417045" y="232.274"/>
<use xlink:href="#glyph1-6" x="289.84542" y="232.274"/>
<use xlink:href="#glyph1-21" x="293.719876" y="232.274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-14" x="124.802" y="252.199"/>
</g>
<g style="fill:rgb(0%,50%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="130.032" y="252.199"/>
<use xlink:href="#glyph3-4" x="135.262365" y="252.199"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-15" x="140.493" y="252.199"/>
<use xlink:href="#glyph2-16" x="145.723365" y="252.199"/>
<use xlink:href="#glyph2-17" x="150.95373" y="252.199"/>
<use xlink:href="#glyph2-18" x="156.184095" y="252.199"/>
<use xlink:href="#glyph2-11" x="161.41446" y="252.199"/>
<use xlink:href="#glyph2-19" x="166.644825" y="252.199"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-20" x="177.105555" y="252.199"/>
<use xlink:href="#glyph2-21" x="182.33592" y="252.199"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-22" x="192.79665" y="252.199"/>
<use xlink:href="#glyph2-23" x="198.027015" y="252.199"/>
<use xlink:href="#glyph2-24" x="203.25738" y="252.199"/>
<use xlink:href="#glyph2-25" x="208.487745" y="252.199"/>
<use xlink:href="#glyph2-20" x="213.71811" y="252.199"/>
<use xlink:href="#glyph2-24" x="218.948475" y="252.199"/>
<use xlink:href="#glyph2-21" x="224.17884" y="252.199"/>
<use xlink:href="#glyph2-14" x="229.409205" y="252.199"/>
<use xlink:href="#glyph2-26" x="234.63957" y="252.199"/>
</g>
<g style="fill:rgb(0%,50%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="239.87" y="252.199"/>
<use xlink:href="#glyph3-4" x="245.100365" y="252.199"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-15" x="250.331" y="252.199"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-27" x="139.746" y="272.124"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 72 KiB

View File

@ -0,0 +1,21 @@
\documentclass[a4paper]{article}
\usepackage{lmodern}
\usepackage{amssymb,amsmath}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{minted}
\begin{document}
\thispagestyle{empty}
\section*{Haskell-Magie}
Quadrate aller geraden Zahlen zwischen 1 und 200:
\begin{minted}{haskell}
[x^2 | x <- [1..200], even x]
\end{minted}
\section*{Ein HTML-Beispiel}
Eine Überschrift wird so ausgezeichnet:
\mint{html}|<h2>LaTeX im Studium</h2>|.
\end{document}

View File

@ -0,0 +1,369 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="220pt" height="82pt" viewBox="0 0 220 82" version="1.1">
<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 10.125 -3.875 L 9.53125 -3.875 C 9.21875 -1.734375 8.6875 -0.609375 6.203125 -0.609375 L 3.953125 -0.609375 L 3.953125 -4.765625 L 4.8125 -4.765625 C 6.1875 -4.765625 6.328125 -4.171875 6.328125 -3.078125 L 6.921875 -3.078125 L 6.921875 -7.0625 L 6.328125 -7.0625 C 6.328125 -5.984375 6.1875 -5.375 4.8125 -5.375 L 3.953125 -5.375 L 3.953125 -9.15625 L 6.203125 -9.15625 C 8.390625 -9.15625 8.859375 -8.21875 9.078125 -6.375 L 9.6875 -6.375 L 9.265625 -9.765625 L 0.546875 -9.765625 L 0.546875 -9.15625 L 2.0625 -9.15625 L 2.0625 -0.609375 L 0.546875 -0.609375 L 0.546875 0 L 9.515625 0 Z M 10.125 -3.875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4 0 L 4 -0.609375 L 3.109375 -0.609375 L 3.109375 -6.453125 L 0.671875 -6.34375 L 0.671875 -5.71875 C 1.515625 -5.71875 1.625 -5.71875 1.625 -5.15625 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 1.953125 -0.03125 2.34375 -0.03125 C 2.734375 -0.03125 3.65625 -0.03125 4 0 Z M 3.28125 -8.71875 C 3.28125 -9.3125 2.796875 -9.75 2.25 -9.75 C 1.65625 -9.75 1.203125 -9.28125 1.203125 -8.71875 C 1.203125 -8.140625 1.6875 -7.6875 2.234375 -7.6875 C 2.828125 -7.6875 3.28125 -8.15625 3.28125 -8.71875 Z M 3.28125 -8.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4.421875 -6.453125 3.53125 -5.953125 3.046875 -4.875 L 3.03125 -4.875 L 3.03125 -6.453125 L 0.609375 -6.34375 L 0.609375 -5.71875 C 1.484375 -5.71875 1.59375 -5.71875 1.59375 -5.15625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 6.046875 -8.84375 C 6.046875 -9.4375 5.53125 -10.046875 4.515625 -10.046875 C 3.21875 -10.046875 1.625 -9.5 1.625 -7.828125 L 1.625 -6.375 L 0.5625 -6.375 L 0.5625 -5.75 L 1.625 -5.75 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 2.03125 -0.03125 2.4375 -0.03125 C 2.859375 -0.03125 4.015625 -0.03125 4.359375 0 L 4.359375 -0.609375 L 3.109375 -0.609375 L 3.109375 -5.75 L 4.75 -5.75 L 4.75 -6.375 L 3.046875 -6.375 L 3.046875 -7.84375 C 3.046875 -9.34375 3.984375 -9.5625 4.453125 -9.5625 C 4.625 -9.5625 4.640625 -9.546875 4.734375 -9.53125 C 4.515625 -9.375 4.390625 -9.140625 4.390625 -8.828125 C 4.390625 -8.265625 4.84375 -8 5.21875 -8 C 5.53125 -8 6.046875 -8.21875 6.046875 -8.84375 Z M 6.046875 -8.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 7.765625 -0.3125 C 7.765625 -0.609375 7.625 -0.609375 7.4375 -0.609375 C 6.53125 -0.625 6.53125 -0.859375 6.53125 -1.1875 L 6.53125 -4.28125 C 6.53125 -5.609375 5.484375 -6.5 3.453125 -6.5 C 2.65625 -6.5 0.96875 -6.421875 0.96875 -5.21875 C 0.96875 -4.625 1.421875 -4.359375 1.8125 -4.359375 C 2.234375 -4.359375 2.65625 -4.65625 2.65625 -5.203125 C 2.65625 -5.484375 2.546875 -5.734375 2.3125 -5.890625 C 2.78125 -6.03125 3.125 -6.03125 3.40625 -6.03125 C 4.375 -6.03125 4.96875 -5.484375 4.96875 -4.296875 L 4.96875 -3.734375 C 2.703125 -3.734375 0.421875 -3.09375 0.421875 -1.5 C 0.421875 -0.203125 2.078125 0.09375 3.0625 0.09375 C 4.171875 0.09375 4.875 -0.515625 5.15625 -1.140625 C 5.15625 -0.609375 5.15625 0 6.609375 0 L 7.34375 0 C 7.640625 0 7.765625 0 7.765625 -0.3125 Z M 4.96875 -2 C 4.96875 -0.640625 3.765625 -0.390625 3.296875 -0.390625 C 2.59375 -0.390625 2.015625 -0.859375 2.015625 -1.515625 C 2.015625 -2.828125 3.5625 -3.265625 4.96875 -3.34375 Z M 4.96875 -2 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 6.71875 -1.671875 C 6.71875 -1.84375 6.5625 -1.84375 6.40625 -1.84375 C 6.1875 -1.84375 6.171875 -1.84375 6.09375 -1.65625 C 6 -1.390625 5.609375 -0.4375 4.28125 -0.4375 C 2.265625 -0.4375 2.265625 -2.609375 2.265625 -3.25 C 2.265625 -4.109375 2.28125 -5.984375 4.15625 -5.984375 C 4.265625 -5.984375 5.109375 -5.953125 5.109375 -5.875 C 5.109375 -5.875 5.09375 -5.859375 5.0625 -5.84375 C 5.015625 -5.796875 4.828125 -5.578125 4.828125 -5.21875 C 4.828125 -4.625 5.328125 -4.375 5.6875 -4.375 C 5.984375 -4.375 6.53125 -4.5625 6.53125 -5.234375 C 6.53125 -6.40625 4.875 -6.5 4.109375 -6.5 C 1.546875 -6.5 0.546875 -4.828125 0.546875 -3.1875 C 0.546875 -1.234375 1.90625 0.09375 4.015625 0.09375 C 6.265625 0.09375 6.71875 -1.578125 6.71875 -1.671875 Z M 6.71875 -1.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4 -6.453125 3.296875 -5.4375 3.09375 -5 L 3.078125 -5 L 3.078125 -9.953125 L 0.609375 -9.84375 L 0.609375 -9.21875 C 1.484375 -9.21875 1.59375 -9.21875 1.59375 -8.65625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 6.90625 -1.671875 C 6.90625 -1.890625 6.6875 -1.890625 6.59375 -1.890625 C 6.375 -1.890625 6.359375 -1.84375 6.265625 -1.65625 C 5.890625 -0.734375 4.953125 -0.4375 4.265625 -0.4375 C 2.1875 -0.4375 2.171875 -2.359375 2.171875 -3.171875 L 6.484375 -3.171875 C 6.8125 -3.171875 6.90625 -3.171875 6.90625 -3.53125 C 6.90625 -3.953125 6.796875 -5.03125 6.140625 -5.703125 C 5.53125 -6.3125 4.734375 -6.5 3.90625 -6.5 C 1.65625 -6.5 0.4375 -5.03125 0.4375 -3.234375 C 0.4375 -1.21875 1.921875 0.09375 4.09375 0.09375 C 6.25 0.09375 6.90625 -1.4375 6.90625 -1.671875 Z M 5.578125 -3.578125 L 2.171875 -3.578125 C 2.1875 -4.171875 2.203125 -4.734375 2.515625 -5.25 C 2.78125 -5.703125 3.28125 -6.03125 3.90625 -6.03125 C 5.4375 -6.03125 5.5625 -4.296875 5.578125 -3.578125 Z M 5.578125 -3.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 7.40625 -9.21875 L 7.40625 -9.84375 C 7.046875 -9.8125 5.5625 -9.8125 5.109375 -9.8125 L 2.453125 -9.84375 L 2.453125 -9.21875 L 4.4375 -9.21875 L 4.4375 -2.140625 C 4.4375 -0.78125 3.765625 -0.296875 3.03125 -0.296875 C 2.921875 -0.296875 2.265625 -0.296875 1.703125 -0.65625 C 2.21875 -0.78125 2.46875 -1.203125 2.46875 -1.640625 C 2.46875 -2.34375 1.90625 -2.65625 1.46875 -2.65625 C 0.953125 -2.65625 0.4375 -2.296875 0.4375 -1.640625 C 0.4375 -0.5625 1.546875 0.171875 3.09375 0.171875 C 4.9375 0.171875 6.25 -0.65625 6.25 -2.140625 L 6.25 -9.21875 Z M 7.40625 -9.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 8.15625 -5.75 L 8.15625 -6.375 C 7.640625 -6.34375 7.609375 -6.34375 7.03125 -6.34375 L 5.796875 -6.375 L 5.796875 -5.75 C 6.1875 -5.75 6.5 -5.6875 6.5 -5.578125 C 6.5 -5.578125 6.5 -5.546875 6.421875 -5.40625 L 4.75 -1.71875 L 2.890625 -5.75 L 3.6875 -5.75 L 3.6875 -6.375 C 3.359375 -6.34375 2.359375 -6.34375 1.96875 -6.34375 C 1.546875 -6.34375 0.71875 -6.34375 0.34375 -6.375 L 0.34375 -5.75 L 1.25 -5.75 L 3.765625 -0.265625 C 3.90625 0 3.9375 0.078125 4.265625 0.078125 C 4.484375 0.078125 4.609375 0.046875 4.734375 -0.25 L 7.09375 -5.421875 C 7.203125 -5.640625 7.265625 -5.75 8.15625 -5.75 Z M 8.15625 -5.75 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 4.46875 -2.53125 L 4.46875 -3.84375 L 0.171875 -3.84375 L 0.171875 -2.53125 Z M 4.46875 -2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 11.625 0 L 11.625 -0.609375 L 10.25 -0.609375 L 6.5625 -9.703125 C 6.46875 -9.96875 6.4375 -10.046875 6.09375 -10.046875 C 5.734375 -10.046875 5.703125 -9.96875 5.609375 -9.703125 L 2.046875 -0.96875 C 1.953125 -0.734375 1.953125 -0.703125 1.546875 -0.65625 C 1.1875 -0.609375 1.140625 -0.609375 0.8125 -0.609375 L 0.5625 -0.609375 L 0.5625 0 C 0.9375 -0.03125 1.796875 -0.03125 2.203125 -0.03125 C 2.59375 -0.03125 3.640625 -0.03125 3.96875 0 L 3.96875 -0.609375 C 3.65625 -0.609375 3.109375 -0.609375 2.71875 -0.78125 C 2.75 -0.90625 2.75 -0.9375 2.78125 -0.984375 L 3.546875 -2.859375 L 7.390625 -2.859375 L 8.296875 -0.609375 L 6.9375 -0.609375 L 6.9375 0 C 7.40625 -0.03125 8.796875 -0.03125 9.34375 -0.03125 C 9.796875 -0.03125 11.265625 -0.03125 11.625 0 Z M 7.125 -3.46875 L 3.78125 -3.46875 L 5.46875 -7.609375 Z M 7.125 -3.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 11.296875 -5.75 L 11.296875 -6.375 C 10.890625 -6.34375 10.703125 -6.34375 10.1875 -6.34375 C 9.59375 -6.34375 9.40625 -6.34375 8.890625 -6.375 L 8.890625 -5.75 C 9.015625 -5.75 9.71875 -5.75 9.71875 -5.5625 C 9.71875 -5.5625 9.71875 -5.53125 9.671875 -5.390625 L 8.15625 -1.65625 L 6.515625 -5.75 L 7.328125 -5.75 L 7.328125 -6.375 C 6.984375 -6.34375 6.140625 -6.34375 5.75 -6.34375 L 4.28125 -6.375 L 4.28125 -5.75 L 5.125 -5.75 C 5.15625 -5.640625 5.234375 -5.453125 5.296875 -5.328125 C 5.328125 -5.234375 5.484375 -4.890625 5.484375 -4.8125 L 5.421875 -4.640625 L 4.328125 -1.9375 L 2.78125 -5.75 L 3.59375 -5.75 L 3.59375 -6.375 C 3.265625 -6.34375 2.296875 -6.34375 1.90625 -6.34375 C 1.453125 -6.34375 0.765625 -6.34375 0.328125 -6.375 L 0.328125 -5.75 L 1.171875 -5.75 L 3.375 -0.28125 C 3.46875 -0.03125 3.53125 0.078125 3.84375 0.078125 C 4 0.078125 4.171875 0.078125 4.28125 -0.21875 L 5.8125 -4.015625 L 7.328125 -0.25 C 7.453125 0.078125 7.609375 0.078125 7.78125 0.078125 C 8.109375 0.078125 8.140625 -0.015625 8.25 -0.265625 L 10.328125 -5.40625 C 10.421875 -5.65625 10.46875 -5.75 11.296875 -5.75 Z M 11.296875 -5.75 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 8.453125 0 L 8.453125 -0.609375 C 7.5625 -0.609375 7.453125 -0.609375 7.453125 -1.171875 L 7.453125 -9.953125 L 4.984375 -9.84375 L 4.984375 -9.21875 C 5.859375 -9.21875 5.96875 -9.21875 5.96875 -8.65625 L 5.96875 -5.765625 C 5.65625 -6.03125 5.015625 -6.453125 4.03125 -6.453125 C 2 -6.453125 0.546875 -5.1875 0.546875 -3.1875 C 0.546875 -1.140625 1.96875 0.09375 3.875 0.09375 C 4.65625 0.09375 5.328125 -0.1875 5.890625 -0.65625 L 5.890625 0.09375 Z M 5.890625 -1.453125 C 5.296875 -0.578125 4.5625 -0.390625 4.046875 -0.390625 C 2.265625 -0.390625 2.265625 -2.203125 2.265625 -3.15625 C 2.265625 -3.828125 2.265625 -4.546875 2.578125 -5.09375 C 3.03125 -5.890625 3.875 -5.984375 4.203125 -5.984375 C 4.796875 -5.984375 5.421875 -5.71875 5.890625 -5.09375 Z M 5.890625 -1.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 C 7.71875 -0.609375 7.609375 -0.609375 7.609375 -1.171875 L 7.609375 -6.453125 L 5.0625 -6.34375 L 5.0625 -5.71875 C 5.953125 -5.71875 6.046875 -5.71875 6.046875 -5.15625 L 6.046875 -2.359375 C 6.046875 -1.265625 5.40625 -0.390625 4.28125 -0.390625 C 3.21875 -0.390625 3.15625 -0.75 3.15625 -1.53125 L 3.15625 -6.453125 L 0.609375 -6.34375 L 0.609375 -5.71875 C 1.484375 -5.71875 1.59375 -5.71875 1.59375 -5.15625 L 1.59375 -1.765625 C 1.59375 -0.328125 2.546875 0.09375 4.09375 0.09375 C 4.4375 0.09375 5.5 0.09375 6.109375 -1.078125 L 6.125 -1.078125 L 6.125 0.09375 Z M 8.609375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 7.8125 -5.734375 C 7.8125 -6.078125 7.5625 -6.546875 6.953125 -6.546875 C 6.34375 -6.546875 5.75 -6.234375 5.453125 -5.984375 C 4.859375 -6.328125 4.296875 -6.453125 3.578125 -6.453125 C 1.59375 -6.453125 0.796875 -5.34375 0.796875 -4.34375 C 0.796875 -3.90625 0.953125 -3.3125 1.546875 -2.828125 C 1.3125 -2.546875 1.046875 -2.046875 1.046875 -1.53125 C 1.046875 -0.921875 1.375 -0.390625 1.671875 -0.15625 C 1.328125 -0.078125 0.4375 0.265625 0.4375 1.078125 C 0.4375 1.921875 1.375 2.890625 4.015625 2.890625 C 6.390625 2.890625 7.609375 2.109375 7.609375 1.03125 C 7.609375 -0.234375 6.765625 -0.640625 6.40625 -0.8125 C 5.71875 -1.15625 4.8125 -1.15625 3.546875 -1.15625 C 3.1875 -1.15625 2.546875 -1.15625 2.484375 -1.171875 C 1.859375 -1.28125 1.6875 -1.828125 1.6875 -2.09375 C 1.6875 -2.203125 1.703125 -2.421875 1.859375 -2.609375 C 2.546875 -2.234375 3.359375 -2.234375 3.578125 -2.234375 C 5.546875 -2.234375 6.34375 -3.34375 6.34375 -4.34375 C 6.34375 -5.078125 5.921875 -5.59375 5.75 -5.734375 C 6.171875 -5.96875 6.515625 -6.03125 6.75 -6.046875 C 6.71875 -5.984375 6.671875 -5.921875 6.671875 -5.734375 C 6.671875 -5.4375 6.875 -5.15625 7.25 -5.15625 C 7.609375 -5.15625 7.8125 -5.4375 7.8125 -5.734375 Z M 4.8125 -4.34375 C 4.8125 -3.6875 4.8125 -2.703125 3.578125 -2.703125 C 2.328125 -2.703125 2.328125 -3.6875 2.328125 -4.34375 C 2.328125 -5 2.328125 -6 3.578125 -6 C 4.8125 -6 4.8125 -5 4.8125 -4.34375 Z M 6.421875 1.09375 C 6.421875 1.59375 5.921875 2.421875 4.03125 2.421875 C 2.140625 2.421875 1.625 1.625 1.625 1.078125 C 1.625 0.15625 2.53125 0.15625 2.734375 0.15625 L 4.375 0.15625 C 5.421875 0.15625 6.421875 0.34375 6.421875 1.09375 Z M 6.421875 1.09375 "/>
</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 4.890625 -2.171875 C 4.890625 -3.421875 3.984375 -4.390625 2.90625 -4.390625 C 2.484375 -4.390625 2.078125 -4.25 1.75 -4 C 1.734375 -4.234375 1.640625 -4.34375 1.28125 -4.34375 L 0.578125 -4.34375 C 0.390625 -4.34375 0.09375 -4.328125 0.09375 -3.96875 C 0.09375 -3.609375 0.40625 -3.59375 0.5625 -3.59375 L 0.921875 -3.59375 L 0.921875 1.40625 L 0.578125 1.40625 C 0.390625 1.40625 0.09375 1.421875 0.09375 1.78125 C 0.09375 2.140625 0.40625 2.15625 0.5625 2.15625 L 2.109375 2.15625 C 2.28125 2.15625 2.578125 2.140625 2.578125 1.78125 C 2.578125 1.421875 2.296875 1.40625 2.109375 1.40625 L 1.75 1.40625 L 1.75 -0.34375 C 2.140625 -0.015625 2.515625 0.0625 2.796875 0.0625 C 3.890625 0.0625 4.890625 -0.890625 4.890625 -2.171875 Z M 4.0625 -2.171875 C 4.0625 -1.296875 3.421875 -0.6875 2.78125 -0.6875 C 2.078125 -0.6875 1.765625 -1.5 1.765625 -1.9375 L 1.765625 -2.640625 C 1.765625 -3.1875 2.296875 -3.65625 2.859375 -3.65625 C 3.53125 -3.65625 4.0625 -2.96875 4.0625 -2.171875 Z M 4.0625 -2.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 5.109375 -0.375 C 5.109375 -0.734375 4.8125 -0.75 4.65625 -0.75 L 4.296875 -0.75 L 4.296875 -3.875 C 4.296875 -4.234375 4.21875 -4.34375 3.828125 -4.34375 L 3.125 -4.34375 C 2.9375 -4.34375 2.640625 -4.328125 2.640625 -3.96875 C 2.640625 -3.609375 2.9375 -3.59375 3.109375 -3.59375 L 3.46875 -3.59375 L 3.46875 -1.609375 C 3.46875 -0.796875 2.734375 -0.6875 2.4375 -0.6875 C 1.765625 -0.6875 1.75 -0.96875 1.75 -1.25 L 1.75 -3.875 C 1.75 -4.234375 1.6875 -4.34375 1.28125 -4.34375 L 0.578125 -4.34375 C 0.390625 -4.34375 0.109375 -4.328125 0.109375 -3.96875 C 0.109375 -3.609375 0.40625 -3.59375 0.5625 -3.59375 L 0.921875 -3.59375 L 0.921875 -1.1875 C 0.921875 -0.203125 1.640625 0.0625 2.390625 0.0625 C 2.765625 0.0625 3.140625 -0.03125 3.484375 -0.25 C 3.546875 -0.015625 3.75 0 3.9375 0 L 4.640625 0 C 4.828125 0 5.109375 -0.015625 5.109375 -0.375 Z M 5.109375 -0.375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 4.890625 -2.171875 C 4.890625 -3.421875 3.984375 -4.390625 2.90625 -4.390625 C 2.484375 -4.390625 2.078125 -4.25 1.75 -4.015625 L 1.75 -5.609375 C 1.75 -5.96875 1.6875 -6.09375 1.28125 -6.09375 L 0.578125 -6.09375 C 0.390625 -6.09375 0.09375 -6.078125 0.09375 -5.71875 C 0.09375 -5.359375 0.40625 -5.34375 0.5625 -5.34375 L 0.921875 -5.34375 L 0.921875 -0.484375 C 0.921875 -0.234375 0.9375 0 1.34375 0 C 1.65625 0 1.734375 -0.140625 1.75 -0.34375 C 2.125 -0.015625 2.515625 0.0625 2.796875 0.0625 C 3.890625 0.0625 4.890625 -0.890625 4.890625 -2.171875 Z M 4.0625 -2.171875 C 4.0625 -1.296875 3.421875 -0.6875 2.78125 -0.6875 C 2.078125 -0.6875 1.765625 -1.5 1.765625 -1.9375 L 1.765625 -2.640625 C 1.765625 -3.1875 2.296875 -3.65625 2.859375 -3.65625 C 3.53125 -3.65625 4.0625 -2.96875 4.0625 -2.171875 Z M 4.0625 -2.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 4.6875 -0.375 C 4.6875 -0.734375 4.40625 -0.75 4.21875 -0.75 L 3.03125 -0.75 L 3.03125 -5.609375 C 3.03125 -5.96875 2.953125 -6.09375 2.5625 -6.09375 L 1.03125 -6.09375 C 0.84375 -6.09375 0.546875 -6.078125 0.546875 -5.71875 C 0.546875 -5.359375 0.84375 -5.34375 1.015625 -5.34375 L 2.203125 -5.34375 L 2.203125 -0.75 L 1.03125 -0.75 C 0.84375 -0.75 0.546875 -0.734375 0.546875 -0.375 C 0.546875 -0.015625 0.84375 0 1.015625 0 L 4.21875 0 C 4.390625 0 4.6875 -0.015625 4.6875 -0.375 Z M 4.6875 -0.375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 4.5625 -0.375 C 4.5625 -0.734375 4.265625 -0.75 4.09375 -0.75 L 3.15625 -0.75 L 3.15625 -3.875 C 3.15625 -4.234375 3.078125 -4.34375 2.6875 -4.34375 L 1.3125 -4.34375 C 1.125 -4.34375 0.828125 -4.328125 0.828125 -3.984375 C 0.828125 -3.609375 1.125 -3.59375 1.3125 -3.59375 L 2.328125 -3.59375 L 2.328125 -0.75 L 1.21875 -0.75 C 1.03125 -0.75 0.75 -0.734375 0.75 -0.375 C 0.75 -0.015625 1.046875 0 1.21875 0 L 4.09375 0 C 4.265625 0 4.5625 -0.015625 4.5625 -0.375 Z M 3.1875 -5.484375 C 3.1875 -5.796875 2.9375 -6.046875 2.625 -6.046875 C 2.296875 -6.046875 2.046875 -5.796875 2.046875 -5.484375 C 2.046875 -5.15625 2.296875 -4.921875 2.625 -4.921875 C 2.9375 -4.921875 3.1875 -5.15625 3.1875 -5.484375 Z M 3.1875 -5.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 4.671875 -1.140625 C 4.671875 -1.46875 4.328125 -1.484375 4.25 -1.484375 C 4.0625 -1.484375 3.953125 -1.46875 3.859375 -1.21875 C 3.8125 -1.109375 3.609375 -0.6875 2.96875 -0.6875 C 2.1875 -0.6875 1.53125 -1.328125 1.53125 -2.171875 C 1.53125 -2.625 1.78125 -3.671875 3.03125 -3.671875 L 3.53125 -3.671875 C 3.546875 -3.265625 3.765625 -3.125 4.03125 -3.125 C 4.3125 -3.125 4.5625 -3.3125 4.5625 -3.640625 C 4.5625 -4.390625 3.5 -4.421875 3.03125 -4.421875 C 1.3125 -4.421875 0.703125 -3.0625 0.703125 -2.171875 C 0.703125 -0.96875 1.640625 0.0625 2.90625 0.0625 C 4.34375 0.0625 4.671875 -0.96875 4.671875 -1.140625 Z M 4.671875 -1.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 5.1875 -0.375 C 5.1875 -0.734375 4.90625 -0.75 4.71875 -0.75 C 4.4375 -0.75 4.296875 -0.78125 4.21875 -0.8125 L 4.21875 -2.84375 C 4.21875 -3.5625 3.671875 -4.421875 2.21875 -4.421875 C 1.78125 -4.421875 0.734375 -4.390625 0.734375 -3.640625 C 0.734375 -3.296875 0.984375 -3.125 1.25 -3.125 C 1.421875 -3.125 1.75 -3.21875 1.75 -3.65625 C 1.75 -3.65625 2.078125 -3.671875 2.234375 -3.671875 C 2.890625 -3.671875 3.359375 -3.421875 3.390625 -2.84375 C 1.671875 -2.796875 0.484375 -2.265625 0.484375 -1.328125 C 0.484375 -0.625 1.109375 0.0625 2.15625 0.0625 C 2.515625 0.0625 3.09375 -0.015625 3.5625 -0.296875 C 3.8125 -0.015625 4.25 0 4.625 0 C 4.953125 0 5.1875 -0.015625 5.1875 -0.375 Z M 3.375 -1.375 C 3.375 -1.1875 3.375 -1 3.046875 -0.84375 C 2.71875 -0.6875 2.296875 -0.6875 2.21875 -0.6875 C 1.671875 -0.6875 1.296875 -0.984375 1.296875 -1.328125 C 1.296875 -1.765625 2.078125 -2.0625 3.375 -2.109375 Z M 3.375 -1.375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 4.609375 -1.296875 C 4.609375 -2.359375 3.296875 -2.578125 2.96875 -2.625 L 1.96875 -2.8125 C 1.703125 -2.875 1.4375 -2.984375 1.4375 -3.203125 C 1.4375 -3.4375 1.75 -3.671875 2.59375 -3.671875 C 3.3125 -3.671875 3.453125 -3.4375 3.484375 -3.203125 C 3.5 -3.015625 3.53125 -2.8125 3.890625 -2.8125 C 4.3125 -2.8125 4.3125 -3.046875 4.3125 -3.28125 L 4.3125 -3.953125 C 4.3125 -4.140625 4.296875 -4.421875 3.953125 -4.421875 C 3.734375 -4.421875 3.65625 -4.34375 3.609375 -4.25 C 3.1875 -4.421875 2.796875 -4.421875 2.609375 -4.421875 C 0.90625 -4.421875 0.6875 -3.5625 0.6875 -3.203125 C 0.6875 -2.265625 1.734375 -2.078125 2.671875 -1.9375 C 3.109375 -1.859375 3.859375 -1.75 3.859375 -1.296875 C 3.859375 -0.953125 3.515625 -0.6875 2.6875 -0.6875 C 2.265625 -0.6875 1.75 -0.78125 1.53125 -1.5 C 1.46875 -1.71875 1.421875 -1.828125 1.109375 -1.828125 C 0.703125 -1.828125 0.6875 -1.59375 0.6875 -1.359375 L 0.6875 -0.421875 C 0.6875 -0.234375 0.703125 0.0625 1.0625 0.0625 C 1.15625 0.0625 1.328125 0.0625 1.453125 -0.265625 C 1.921875 0.046875 2.40625 0.0625 2.6875 0.0625 C 4.28125 0.0625 4.609375 -0.8125 4.609375 -1.296875 Z M 4.609375 -1.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 4.984375 -4.90625 L 4.984375 -5.609375 C 4.984375 -5.96875 4.921875 -6.09375 4.515625 -6.09375 L 0.71875 -6.09375 C 0.34375 -6.09375 0.234375 -6 0.234375 -5.609375 L 0.234375 -4.90625 C 0.234375 -4.6875 0.25 -4.421875 0.640625 -4.421875 C 1.0625 -4.421875 1.0625 -4.671875 1.0625 -4.90625 L 1.0625 -5.34375 L 2.203125 -5.34375 L 2.203125 -0.75 L 1.78125 -0.75 C 1.59375 -0.75 1.3125 -0.734375 1.3125 -0.375 C 1.3125 -0.015625 1.578125 0 1.78125 0 L 3.453125 0 C 3.640625 0 3.921875 -0.015625 3.921875 -0.375 C 3.921875 -0.734375 3.65625 -0.75 3.453125 -0.75 L 3.03125 -0.75 L 3.03125 -5.34375 L 4.15625 -5.34375 L 4.15625 -4.90625 C 4.15625 -4.6875 4.171875 -4.421875 4.5625 -4.421875 C 4.96875 -4.421875 4.984375 -4.671875 4.984375 -4.90625 Z M 4.984375 -4.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 4.65625 -1.140625 C 4.65625 -1.46875 4.3125 -1.484375 4.234375 -1.484375 C 4.015625 -1.484375 3.921875 -1.453125 3.84375 -1.21875 C 3.640625 -0.765625 3.15625 -0.6875 2.90625 -0.6875 C 2.234375 -0.6875 1.5625 -1.109375 1.390625 -1.859375 L 4.1875 -1.859375 C 4.4375 -1.859375 4.65625 -1.859375 4.65625 -2.296875 C 4.65625 -3.4375 4 -4.421875 2.6875 -4.421875 C 1.5 -4.421875 0.515625 -3.421875 0.515625 -2.1875 C 0.515625 -0.953125 1.53125 0.0625 2.828125 0.0625 C 4.1875 0.0625 4.65625 -0.875 4.65625 -1.140625 Z M 3.796875 -2.59375 L 1.390625 -2.59375 C 1.5625 -3.21875 2.078125 -3.671875 2.6875 -3.671875 C 3.15625 -3.671875 3.6875 -3.453125 3.796875 -2.59375 Z M 3.796875 -2.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 4.5 -1.3125 C 4.5 -1.515625 4.5 -1.75 4.078125 -1.75 C 3.6875 -1.75 3.671875 -1.515625 3.671875 -1.3125 C 3.671875 -0.78125 3.171875 -0.6875 2.953125 -0.6875 C 2.296875 -0.6875 2.296875 -1.140625 2.296875 -1.359375 L 2.296875 -3.59375 L 3.8125 -3.59375 C 3.984375 -3.59375 4.28125 -3.609375 4.28125 -3.96875 C 4.28125 -4.34375 4 -4.34375 3.8125 -4.34375 L 2.296875 -4.34375 L 2.296875 -5.0625 C 2.296875 -5.28125 2.28125 -5.53125 1.890625 -5.53125 C 1.46875 -5.53125 1.46875 -5.296875 1.46875 -5.0625 L 1.46875 -4.34375 L 0.703125 -4.34375 C 0.515625 -4.34375 0.234375 -4.328125 0.234375 -3.96875 C 0.234375 -3.609375 0.515625 -3.59375 0.6875 -3.59375 L 1.46875 -3.59375 L 1.46875 -1.3125 C 1.46875 -0.3125 2.15625 0.0625 2.921875 0.0625 C 3.671875 0.0625 4.5 -0.390625 4.5 -1.3125 Z M 4.5 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 5 -3.96875 C 5 -4.34375 4.71875 -4.34375 4.53125 -4.34375 L 3.40625 -4.34375 C 3.21875 -4.34375 2.9375 -4.328125 2.9375 -3.984375 C 2.9375 -3.609375 3.203125 -3.59375 3.40625 -3.59375 L 3.5625 -3.59375 L 2.609375 -0.78125 L 1.671875 -3.59375 L 1.828125 -3.59375 C 2 -3.59375 2.296875 -3.609375 2.296875 -3.96875 C 2.296875 -4.34375 2.015625 -4.34375 1.828125 -4.34375 L 0.6875 -4.34375 C 0.5 -4.34375 0.21875 -4.34375 0.21875 -3.96875 C 0.21875 -3.609375 0.515625 -3.59375 0.6875 -3.59375 L 0.921875 -3.59375 L 2.03125 -0.34375 C 2.15625 0.046875 2.375 0.046875 2.609375 0.046875 C 2.828125 0.046875 3.078125 0.03125 3.203125 -0.34375 L 4.296875 -3.59375 L 4.53125 -3.59375 C 4.71875 -3.59375 5 -3.609375 5 -3.96875 Z M 5 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 4.6875 -2.171875 C 4.6875 -3.4375 3.734375 -4.421875 2.609375 -4.421875 C 1.484375 -4.421875 0.53125 -3.4375 0.53125 -2.171875 C 0.53125 -0.890625 1.5 0.0625 2.609375 0.0625 C 3.71875 0.0625 4.6875 -0.90625 4.6875 -2.171875 Z M 3.859375 -2.25 C 3.859375 -1.390625 3.296875 -0.6875 2.609375 -0.6875 C 1.9375 -0.6875 1.359375 -1.390625 1.359375 -2.25 C 1.359375 -3.078125 1.96875 -3.671875 2.609375 -3.671875 C 3.265625 -3.671875 3.859375 -3.078125 3.859375 -2.25 Z M 3.859375 -2.25 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 5.125 -0.375 C 5.125 -0.734375 4.828125 -0.75 4.65625 -0.75 L 4.296875 -0.75 L 4.296875 -5.609375 C 4.296875 -5.96875 4.234375 -6.09375 3.828125 -6.09375 L 3.125 -6.09375 C 2.9375 -6.09375 2.640625 -6.078125 2.640625 -5.71875 C 2.640625 -5.359375 2.9375 -5.34375 3.109375 -5.34375 L 3.46875 -5.34375 L 3.46875 -4.046875 C 3.15625 -4.28125 2.796875 -4.390625 2.40625 -4.390625 C 1.3125 -4.390625 0.34375 -3.453125 0.34375 -2.15625 C 0.34375 -0.921875 1.25 0.0625 2.328125 0.0625 C 2.8125 0.0625 3.1875 -0.140625 3.46875 -0.390625 C 3.484375 -0.109375 3.546875 0 3.9375 0 L 4.640625 0 C 4.828125 0 5.125 -0.015625 5.125 -0.375 Z M 3.453125 -1.96875 C 3.453125 -1.453125 3.046875 -0.6875 2.359375 -0.6875 C 1.6875 -0.6875 1.15625 -1.34375 1.15625 -2.15625 C 1.15625 -3.046875 1.796875 -3.65625 2.4375 -3.65625 C 3.015625 -3.65625 3.453125 -3.15625 3.453125 -2.65625 Z M 3.453125 -1.96875 "/>
</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 4.65625 0.515625 C 4.65625 0.234375 4.40625 0.21875 4.3125 0.21875 C 2.953125 0.1875 2.953125 -0.171875 2.953125 -0.484375 L 2.953125 -2.078125 C 2.953125 -2.328125 2.9375 -2.734375 2.375 -3.046875 C 2.796875 -3.296875 2.953125 -3.625 2.953125 -3.875 L 2.953125 -5.1875 C 2.953125 -5.4375 2.953125 -5.828125 2.984375 -5.90625 C 3.171875 -6.296875 4.046875 -6.3125 4.390625 -6.3125 C 4.453125 -6.3125 4.65625 -6.375 4.65625 -6.609375 C 4.65625 -6.921875 4.421875 -6.921875 4.234375 -6.921875 C 3.53125 -6.921875 2.453125 -6.78125 2.28125 -5.90625 C 2.265625 -5.859375 2.265625 -5.359375 2.265625 -5.078125 L 2.265625 -4.171875 C 2.265625 -3.8125 2.265625 -3.671875 1.90625 -3.515625 C 1.5625 -3.359375 1.0625 -3.34375 0.828125 -3.34375 C 0.765625 -3.34375 0.5625 -3.296875 0.5625 -3.046875 C 0.5625 -2.75 0.8125 -2.734375 0.90625 -2.734375 C 1.171875 -2.734375 2.25 -2.703125 2.265625 -2.15625 L 2.265625 -0.515625 C 2.265625 -0.203125 2.265625 0.234375 2.796875 0.53125 C 3.203125 0.75 3.765625 0.828125 4.234375 0.828125 C 4.421875 0.828125 4.65625 0.828125 4.65625 0.515625 Z M 4.65625 0.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 5.140625 -0.296875 C 5.140625 -0.609375 4.9375 -0.609375 4.578125 -0.609375 L 4.578125 -3.015625 C 4.578125 -3.21875 4.578125 -4.359375 3.6875 -4.359375 C 3.390625 -4.359375 2.984375 -4.234375 2.703125 -3.84375 C 2.546875 -4.171875 2.265625 -4.359375 1.9375 -4.359375 C 1.625 -4.359375 1.328125 -4.21875 1.09375 -4 C 1.0625 -4.296875 0.875 -4.296875 0.6875 -4.296875 L 0.375 -4.296875 C 0.21875 -4.296875 -0.046875 -4.296875 -0.046875 -4 C -0.046875 -3.6875 0.171875 -3.6875 0.53125 -3.6875 L 0.53125 -0.609375 C 0.171875 -0.609375 -0.046875 -0.609375 -0.046875 -0.296875 C -0.046875 0 0.234375 0 0.375 0 L 1.25 0 C 1.390625 0 1.65625 0 1.65625 -0.296875 C 1.65625 -0.609375 1.453125 -0.609375 1.09375 -0.609375 L 1.09375 -2.390625 C 1.09375 -3.28125 1.5 -3.75 1.90625 -3.75 C 2.140625 -3.75 2.265625 -3.578125 2.265625 -2.9375 L 2.265625 -0.609375 C 2.078125 -0.609375 1.828125 -0.609375 1.828125 -0.296875 C 1.828125 0 2.109375 0 2.25 0 L 2.984375 0 C 3.140625 0 3.40625 0 3.40625 -0.296875 C 3.40625 -0.609375 3.1875 -0.609375 2.828125 -0.609375 L 2.828125 -2.390625 C 2.828125 -3.28125 3.234375 -3.75 3.65625 -3.75 C 3.875 -3.75 4.015625 -3.578125 4.015625 -2.9375 L 4.015625 -0.609375 C 3.828125 -0.609375 3.578125 -0.609375 3.578125 -0.296875 C 3.578125 0 3.84375 0 3.984375 0 L 4.734375 0 C 4.890625 0 5.140625 0 5.140625 -0.296875 Z M 5.140625 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 5.171875 -0.3125 C 5.171875 -0.609375 4.921875 -0.609375 4.78125 -0.609375 C 4.359375 -0.609375 4.25 -0.65625 4.171875 -0.6875 L 4.171875 -2.84375 C 4.171875 -3.546875 3.640625 -4.390625 2.203125 -4.390625 C 1.78125 -4.390625 0.75 -4.390625 0.75 -3.65625 C 0.75 -3.359375 0.96875 -3.203125 1.203125 -3.203125 C 1.359375 -3.203125 1.640625 -3.296875 1.640625 -3.65625 C 1.640625 -3.734375 1.65625 -3.75 1.859375 -3.765625 C 2 -3.78125 2.125 -3.78125 2.21875 -3.78125 C 2.96875 -3.78125 3.484375 -3.46875 3.484375 -2.765625 C 1.71875 -2.734375 0.5 -2.234375 0.5 -1.28125 C 0.5 -0.59375 1.125 0.0625 2.140625 0.0625 C 2.515625 0.0625 3.125 -0.015625 3.59375 -0.3125 C 3.8125 -0.015625 4.296875 0 4.671875 0 C 4.953125 0 5.171875 0 5.171875 -0.3125 Z M 3.484375 -1.328125 C 3.484375 -1.109375 3.484375 -0.890625 3.09375 -0.71875 C 2.734375 -0.546875 2.296875 -0.546875 2.21875 -0.546875 C 1.59375 -0.546875 1.1875 -0.890625 1.1875 -1.28125 C 1.1875 -1.765625 2.046875 -2.140625 3.484375 -2.171875 Z M 3.484375 -1.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 4.53125 -0.296875 C 4.53125 -0.609375 4.28125 -0.609375 4.125 -0.609375 L 3.078125 -0.609375 L 3.078125 -3.890625 C 3.078125 -4.203125 3.015625 -4.296875 2.6875 -4.296875 L 1.265625 -4.296875 C 1.109375 -4.296875 0.859375 -4.296875 0.859375 -4 C 0.859375 -3.6875 1.109375 -3.6875 1.265625 -3.6875 L 2.390625 -3.6875 L 2.390625 -0.609375 L 1.1875 -0.609375 C 1.03125 -0.609375 0.78125 -0.609375 0.78125 -0.296875 C 0.78125 0 1.03125 0 1.1875 0 L 4.125 0 C 4.28125 0 4.53125 0 4.53125 -0.296875 Z M 3.125 -5.53125 C 3.125 -5.8125 2.90625 -6.03125 2.625 -6.03125 C 2.34375 -6.03125 2.125 -5.8125 2.125 -5.53125 C 2.125 -5.25 2.34375 -5.03125 2.625 -5.03125 C 2.90625 -5.03125 3.125 -5.25 3.125 -5.53125 Z M 3.125 -5.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 5.109375 -0.296875 C 5.109375 -0.609375 4.859375 -0.609375 4.6875 -0.609375 L 4.25 -0.609375 L 4.25 -2.921875 C 4.25 -3.921875 3.75 -4.359375 2.953125 -4.359375 C 2.296875 -4.359375 1.84375 -4.015625 1.65625 -3.828125 C 1.65625 -4.140625 1.65625 -4.296875 1.25 -4.296875 L 0.53125 -4.296875 C 0.375 -4.296875 0.125 -4.296875 0.125 -3.984375 C 0.125 -3.6875 0.375 -3.6875 0.515625 -3.6875 L 0.96875 -3.6875 L 0.96875 -0.609375 L 0.53125 -0.609375 C 0.375 -0.609375 0.125 -0.609375 0.125 -0.296875 C 0.125 0 0.375 0 0.515625 0 L 2.109375 0 C 2.25 0 2.5 0 2.5 -0.296875 C 2.5 -0.609375 2.25 -0.609375 2.09375 -0.609375 L 1.65625 -0.609375 L 1.65625 -2.375 C 1.65625 -3.375 2.390625 -3.75 2.90625 -3.75 C 3.421875 -3.75 3.5625 -3.46875 3.5625 -2.875 L 3.5625 -0.609375 L 3.1875 -0.609375 C 3.015625 -0.609375 2.765625 -0.609375 2.765625 -0.296875 C 2.765625 0 3.046875 0 3.1875 0 L 4.703125 0 C 4.84375 0 5.109375 0 5.109375 -0.296875 Z M 5.109375 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 4.359375 0.53125 C 4.359375 0.390625 4.28125 0.34375 4.109375 0.234375 C 2.875 -0.609375 2.40625 -1.9375 2.40625 -3.046875 C 2.40625 -4.046875 2.796875 -5.4375 4.125 -6.34375 C 4.28125 -6.453125 4.359375 -6.484375 4.359375 -6.640625 C 4.359375 -6.71875 4.3125 -6.921875 4.046875 -6.921875 C 3.765625 -6.921875 1.71875 -5.609375 1.71875 -3.046875 C 1.71875 -1.859375 2.1875 -0.96875 2.53125 -0.46875 C 3.0625 0.265625 3.8125 0.8125 4.046875 0.8125 C 4.3125 0.8125 4.359375 0.625 4.359375 0.53125 Z M 4.359375 0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 4.703125 -1.65625 C 4.703125 -2.296875 4.34375 -2.71875 4.234375 -2.84375 C 3.8125 -3.234375 3.546875 -3.3125 2.765625 -3.484375 L 1.96875 -3.671875 C 1.546875 -3.78125 1.171875 -4.140625 1.171875 -4.609375 C 1.171875 -5.109375 1.65625 -5.59375 2.359375 -5.59375 C 3.53125 -5.59375 3.6875 -4.65625 3.75 -4.34375 C 3.78125 -4.125 3.890625 -4.0625 4.09375 -4.0625 C 4.4375 -4.0625 4.4375 -4.28125 4.4375 -4.46875 L 4.4375 -5.796875 C 4.4375 -5.953125 4.4375 -6.203125 4.140625 -6.203125 C 3.890625 -6.203125 3.84375 -6.03125 3.765625 -5.734375 C 3.359375 -6.078125 2.828125 -6.203125 2.375 -6.203125 C 1.265625 -6.203125 0.515625 -5.40625 0.515625 -4.5625 C 0.515625 -3.890625 0.984375 -3.234375 1.796875 -3 L 2.953125 -2.734375 C 3.234375 -2.671875 4.0625 -2.46875 4.0625 -1.609375 C 4.0625 -1.09375 3.625 -0.5 2.84375 -0.5 C 2.5625 -0.5 2.078125 -0.53125 1.671875 -0.8125 C 1.25 -1.078125 1.21875 -1.5 1.203125 -1.671875 C 1.203125 -1.84375 1.1875 -2.03125 0.875 -2.03125 C 0.515625 -2.03125 0.515625 -1.8125 0.515625 -1.609375 L 0.515625 -0.296875 C 0.515625 -0.140625 0.515625 0.109375 0.8125 0.109375 C 1.03125 0.109375 1.09375 -0.03125 1.1875 -0.34375 C 1.578125 -0.046875 2.1875 0.109375 2.828125 0.109375 C 3.984375 0.109375 4.703125 -0.765625 4.703125 -1.65625 Z M 4.703125 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 4.46875 -1.25 C 4.46875 -1.4375 4.46875 -1.640625 4.125 -1.640625 C 3.796875 -1.640625 3.78125 -1.4375 3.78125 -1.265625 C 3.78125 -0.640625 3.203125 -0.546875 2.984375 -0.546875 C 2.21875 -0.546875 2.21875 -1.0625 2.21875 -1.3125 L 2.21875 -3.6875 L 3.84375 -3.6875 C 4 -3.6875 4.25 -3.6875 4.25 -3.984375 C 4.25 -4.296875 4 -4.296875 3.84375 -4.296875 L 2.21875 -4.296875 L 2.21875 -5.109375 C 2.21875 -5.296875 2.21875 -5.515625 1.875 -5.515625 C 1.53125 -5.515625 1.53125 -5.3125 1.53125 -5.109375 L 1.53125 -4.296875 L 0.65625 -4.296875 C 0.5 -4.296875 0.25 -4.296875 0.25 -3.984375 C 0.25 -3.6875 0.5 -3.6875 0.640625 -3.6875 L 1.53125 -3.6875 L 1.53125 -1.25 C 1.53125 -0.296875 2.203125 0.0625 2.9375 0.0625 C 3.671875 0.0625 4.46875 -0.375 4.46875 -1.25 Z M 4.46875 -1.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-9">
<path style="stroke:none;" d="M 4.859375 -3.734375 C 4.859375 -3.9375 4.734375 -4.359375 3.90625 -4.359375 C 3.40625 -4.359375 2.765625 -4.171875 2.21875 -3.546875 L 2.21875 -3.890625 C 2.21875 -4.203125 2.15625 -4.296875 1.8125 -4.296875 L 0.71875 -4.296875 C 0.5625 -4.296875 0.3125 -4.296875 0.3125 -4 C 0.3125 -3.6875 0.5625 -3.6875 0.71875 -3.6875 L 1.53125 -3.6875 L 1.53125 -0.609375 L 0.71875 -0.609375 C 0.5625 -0.609375 0.3125 -0.609375 0.3125 -0.3125 C 0.3125 0 0.5625 0 0.71875 0 L 3.3125 0 C 3.46875 0 3.734375 0 3.734375 -0.296875 C 3.734375 -0.609375 3.46875 -0.609375 3.3125 -0.609375 L 2.21875 -0.609375 L 2.21875 -1.859375 C 2.21875 -2.796875 2.796875 -3.75 4 -3.75 C 4.015625 -3.515625 4.1875 -3.3125 4.4375 -3.3125 C 4.65625 -3.3125 4.859375 -3.46875 4.859375 -3.734375 Z M 4.859375 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-10">
<path style="stroke:none;" d="M 5.078125 -3.875 C 5.078125 -4.09375 4.890625 -4.40625 4.34375 -4.40625 C 4.234375 -4.40625 3.75 -4.390625 3.296875 -4.0625 C 3.125 -4.171875 2.78125 -4.359375 2.328125 -4.359375 C 1.390625 -4.359375 0.671875 -3.609375 0.671875 -2.765625 C 0.671875 -2.328125 0.84375 -2 1 -1.8125 C 0.890625 -1.65625 0.796875 -1.4375 0.796875 -1.140625 C 0.796875 -0.78125 0.9375 -0.53125 1.03125 -0.421875 C 0.296875 0.03125 0.296875 0.703125 0.296875 0.8125 C 0.296875 1.671875 1.328125 2.28125 2.609375 2.28125 C 3.890625 2.28125 4.9375 1.671875 4.9375 0.8125 C 4.9375 0.453125 4.75 -0.046875 4.25 -0.3125 C 4.109375 -0.390625 3.703125 -0.609375 2.796875 -0.609375 L 2.109375 -0.609375 C 2.03125 -0.609375 1.890625 -0.609375 1.8125 -0.625 C 1.671875 -0.625 1.609375 -0.625 1.484375 -0.765625 C 1.375 -0.90625 1.359375 -1.125 1.359375 -1.125 C 1.359375 -1.171875 1.390625 -1.3125 1.421875 -1.40625 C 1.453125 -1.390625 1.828125 -1.15625 2.328125 -1.15625 C 3.234375 -1.15625 3.96875 -1.875 3.96875 -2.765625 C 3.96875 -3.0625 3.875 -3.34375 3.703125 -3.625 C 3.921875 -3.75 4.15625 -3.78125 4.28125 -3.796875 C 4.34375 -3.53125 4.578125 -3.453125 4.671875 -3.453125 C 4.84375 -3.453125 5.078125 -3.578125 5.078125 -3.875 Z M 3.28125 -2.765625 C 3.28125 -2.1875 2.84375 -1.75 2.328125 -1.75 C 1.78125 -1.75 1.359375 -2.21875 1.359375 -2.75 C 1.359375 -3.3125 1.796875 -3.765625 2.328125 -3.765625 C 2.859375 -3.765625 3.28125 -3.296875 3.28125 -2.765625 Z M 4.359375 0.8125 C 4.359375 1.25 3.609375 1.6875 2.609375 1.6875 C 1.609375 1.6875 0.875 1.25 0.875 0.8125 C 0.875 0.640625 0.953125 0.3125 1.28125 0.125 C 1.53125 -0.046875 1.609375 -0.046875 2.34375 -0.046875 C 3.234375 -0.046875 4.359375 -0.046875 4.359375 0.8125 Z M 4.359375 0.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-11">
<path style="stroke:none;" d="M 4.8125 0.53125 C 4.8125 0.21875 4.578125 0.21875 4.421875 0.21875 L 2.90625 0.21875 L 2.90625 -6.3125 L 4.421875 -6.3125 C 4.5625 -6.3125 4.8125 -6.3125 4.8125 -6.609375 C 4.8125 -6.921875 4.578125 -6.921875 4.421875 -6.921875 L 2.609375 -6.921875 C 2.28125 -6.921875 2.21875 -6.828125 2.21875 -6.515625 L 2.21875 0.421875 C 2.21875 0.734375 2.265625 0.828125 2.609375 0.828125 L 4.421875 0.828125 C 4.5625 0.828125 4.8125 0.828125 4.8125 0.53125 Z M 4.8125 0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-12">
<path style="stroke:none;" d="M 3.015625 0.421875 L 3.015625 -6.515625 C 3.015625 -6.8125 2.953125 -6.921875 2.609375 -6.921875 L 0.8125 -6.921875 C 0.65625 -6.921875 0.40625 -6.921875 0.40625 -6.625 C 0.40625 -6.3125 0.640625 -6.3125 0.8125 -6.3125 L 2.328125 -6.3125 L 2.328125 0.21875 L 0.8125 0.21875 C 0.65625 0.21875 0.40625 0.21875 0.40625 0.515625 C 0.40625 0.828125 0.640625 0.828125 0.8125 0.828125 L 2.609375 0.828125 C 2.9375 0.828125 3.015625 0.734375 3.015625 0.421875 Z M 3.015625 0.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-13">
<path style="stroke:none;" d="M 4.578125 -1.25 C 4.578125 -2.28125 3.296875 -2.5 2.96875 -2.546875 L 2.296875 -2.65625 C 2 -2.703125 1.328125 -2.828125 1.328125 -3.203125 C 1.328125 -3.46875 1.640625 -3.78125 2.59375 -3.78125 C 3.421875 -3.78125 3.5625 -3.484375 3.59375 -3.21875 C 3.59375 -3.046875 3.625 -2.875 3.921875 -2.875 C 4.28125 -2.875 4.28125 -3.09375 4.28125 -3.296875 L 4.28125 -3.984375 C 4.28125 -4.140625 4.28125 -4.390625 3.984375 -4.390625 C 3.734375 -4.390625 3.703125 -4.25 3.671875 -4.171875 C 3.234375 -4.390625 2.796875 -4.390625 2.609375 -4.390625 C 0.953125 -4.390625 0.71875 -3.5625 0.71875 -3.203125 C 0.71875 -2.296875 1.765625 -2.125 2.6875 -1.984375 C 3.171875 -1.90625 3.96875 -1.78125 3.96875 -1.25 C 3.96875 -0.875 3.59375 -0.546875 2.6875 -0.546875 C 2.21875 -0.546875 1.671875 -0.65625 1.421875 -1.4375 C 1.359375 -1.609375 1.328125 -1.71875 1.0625 -1.71875 C 0.71875 -1.71875 0.71875 -1.515625 0.71875 -1.3125 L 0.71875 -0.34375 C 0.71875 -0.1875 0.71875 0.0625 1.015625 0.0625 C 1.109375 0.0625 1.265625 0.046875 1.390625 -0.3125 C 1.875 0.046875 2.40625 0.0625 2.6875 0.0625 C 4.25 0.0625 4.578125 -0.765625 4.578125 -1.25 Z M 4.578125 -1.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-14">
<path style="stroke:none;" d="M 3.515625 -3.046875 C 3.515625 -4.234375 3.046875 -5.140625 2.703125 -5.625 C 2.171875 -6.359375 1.421875 -6.921875 1.1875 -6.921875 C 0.9375 -6.921875 0.875 -6.71875 0.875 -6.640625 C 0.875 -6.484375 0.984375 -6.421875 1.03125 -6.390625 C 2.671875 -5.296875 2.828125 -3.703125 2.828125 -3.046875 C 2.828125 -2.046875 2.453125 -0.671875 1.109375 0.234375 C 0.953125 0.34375 0.875 0.390625 0.875 0.53125 C 0.875 0.625 0.9375 0.8125 1.1875 0.8125 C 1.46875 0.8125 3.515625 -0.5 3.515625 -3.046875 Z M 3.515625 -3.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-15">
<path style="stroke:none;" d="M 4.984375 -3.984375 C 4.984375 -4.296875 4.75 -4.296875 4.578125 -4.296875 L 3.421875 -4.296875 C 3.265625 -4.296875 3.015625 -4.296875 3.015625 -4 C 3.015625 -3.6875 3.265625 -3.6875 3.421875 -3.6875 L 3.703125 -3.6875 L 2.984375 -1.5625 C 2.84375 -1.203125 2.796875 -1.015625 2.71875 -0.703125 C 2.65625 -0.890625 2.578125 -1.109375 2.5 -1.296875 L 1.578125 -3.6875 L 1.828125 -3.6875 C 1.96875 -3.6875 2.21875 -3.6875 2.21875 -3.984375 C 2.21875 -4.296875 1.984375 -4.296875 1.828125 -4.296875 L 0.65625 -4.296875 C 0.5 -4.296875 0.265625 -4.296875 0.265625 -3.984375 C 0.265625 -3.6875 0.515625 -3.6875 0.65625 -3.6875 L 0.96875 -3.6875 L 2.375 -0.125 C 2.421875 -0.03125 2.421875 0 2.421875 0 C 2.421875 0 2.171875 0.84375 2.046875 1.09375 C 1.75 1.640625 1.390625 1.65625 1.25 1.671875 C 1.25 1.671875 1.296875 1.578125 1.296875 1.453125 C 1.296875 1.203125 1.109375 1.015625 0.875 1.015625 C 0.59375 1.015625 0.421875 1.203125 0.421875 1.453125 C 0.421875 1.875 0.765625 2.265625 1.25 2.265625 C 2.25 2.265625 2.703125 0.953125 2.734375 0.84375 L 4.28125 -3.6875 L 4.578125 -3.6875 C 4.734375 -3.6875 4.984375 -3.6875 4.984375 -3.984375 Z M 4.984375 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-16">
<path style="stroke:none;" d="M 4.625 -1.09375 C 4.625 -1.359375 4.34375 -1.359375 4.28125 -1.359375 C 4.09375 -1.359375 4.015625 -1.328125 3.953125 -1.140625 C 3.734375 -0.640625 3.1875 -0.546875 2.90625 -0.546875 C 2.15625 -0.546875 1.421875 -1.046875 1.25 -1.90625 L 4.234375 -1.90625 C 4.4375 -1.90625 4.625 -1.90625 4.625 -2.265625 C 4.625 -3.40625 3.984375 -4.390625 2.6875 -4.390625 C 1.5 -4.390625 0.546875 -3.390625 0.546875 -2.15625 C 0.546875 -0.953125 1.5625 0.0625 2.84375 0.0625 C 4.15625 0.0625 4.625 -0.84375 4.625 -1.09375 Z M 3.921875 -2.5 L 1.265625 -2.5 C 1.40625 -3.234375 2 -3.78125 2.6875 -3.78125 C 3.203125 -3.78125 3.828125 -3.53125 3.921875 -2.5 Z M 3.921875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph2-17">
<path style="stroke:none;" d="M 3.234375 -0.625 C 3.234375 -0.984375 2.9375 -1.25 2.625 -1.25 C 2.25 -1.25 2 -0.9375 2 -0.625 C 2 -0.265625 2.296875 0 2.609375 0 C 2.984375 0 3.234375 -0.3125 3.234375 -0.625 Z M 3.234375 -0.625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-18">
<path style="stroke:none;" d="M 4.65625 -2.15625 C 4.65625 -3.40625 3.734375 -4.390625 2.609375 -4.390625 C 1.5 -4.390625 0.5625 -3.40625 0.5625 -2.15625 C 0.5625 -0.890625 1.515625 0.0625 2.609375 0.0625 C 3.703125 0.0625 4.65625 -0.890625 4.65625 -2.15625 Z M 3.96875 -2.21875 C 3.96875 -1.296875 3.34375 -0.546875 2.609375 -0.546875 C 1.875 -0.546875 1.25 -1.296875 1.25 -2.21875 C 1.25 -3.125 1.90625 -3.78125 2.609375 -3.78125 C 3.328125 -3.78125 3.96875 -3.125 3.96875 -2.21875 Z M 3.96875 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-19">
<path style="stroke:none;" d="M 5.109375 -0.3125 C 5.109375 -0.609375 4.84375 -0.609375 4.703125 -0.609375 L 4.25 -0.609375 L 4.25 -3.890625 C 4.25 -4.203125 4.203125 -4.296875 3.859375 -4.296875 L 3.125 -4.296875 C 2.96875 -4.296875 2.71875 -4.296875 2.71875 -3.984375 C 2.71875 -3.6875 2.984375 -3.6875 3.125 -3.6875 L 3.5625 -3.6875 L 3.5625 -1.5625 C 3.5625 -0.671875 2.765625 -0.546875 2.4375 -0.546875 C 1.65625 -0.546875 1.65625 -0.875 1.65625 -1.203125 L 1.65625 -3.890625 C 1.65625 -4.203125 1.59375 -4.296875 1.25 -4.296875 L 0.53125 -4.296875 C 0.375 -4.296875 0.125 -4.296875 0.125 -3.984375 C 0.125 -3.6875 0.375 -3.6875 0.515625 -3.6875 L 0.96875 -3.6875 L 0.96875 -1.140625 C 0.96875 -0.171875 1.65625 0.0625 2.375 0.0625 C 2.796875 0.0625 3.203125 -0.046875 3.5625 -0.3125 C 3.578125 0 3.78125 0 3.96875 0 L 4.6875 0 C 4.859375 0 5.109375 0 5.109375 -0.3125 Z M 5.109375 -0.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-20">
<path style="stroke:none;" d="M 4.859375 -2.15625 C 4.859375 -3.375 3.984375 -4.359375 2.921875 -4.359375 C 2.4375 -4.359375 2 -4.171875 1.65625 -3.875 C 1.65625 -4.15625 1.640625 -4.296875 1.25 -4.296875 L 0.53125 -4.296875 C 0.375 -4.296875 0.125 -4.296875 0.125 -3.984375 C 0.125 -3.6875 0.375 -3.6875 0.515625 -3.6875 L 0.96875 -3.6875 L 0.96875 1.609375 L 0.53125 1.609375 C 0.375 1.609375 0.125 1.609375 0.125 1.90625 C 0.125 2.21875 0.375 2.21875 0.515625 2.21875 L 2.109375 2.21875 C 2.25 2.21875 2.5 2.21875 2.5 1.90625 C 2.5 1.609375 2.25 1.609375 2.09375 1.609375 L 1.65625 1.609375 L 1.65625 -0.453125 C 2.0625 -0.03125 2.5 0.0625 2.8125 0.0625 C 3.890625 0.0625 4.859375 -0.890625 4.859375 -2.15625 Z M 4.171875 -2.15625 C 4.171875 -1.203125 3.484375 -0.546875 2.78125 -0.546875 C 2 -0.546875 1.65625 -1.421875 1.65625 -1.90625 L 1.65625 -2.625 C 1.65625 -3.21875 2.234375 -3.75 2.859375 -3.75 C 3.59375 -3.75 4.171875 -3.015625 4.171875 -2.15625 Z M 4.171875 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-21">
<path style="stroke:none;" d="M 4.65625 -0.296875 C 4.65625 -0.609375 4.421875 -0.609375 4.25 -0.609375 L 2.953125 -0.609375 L 2.953125 -5.6875 C 2.953125 -5.984375 2.90625 -6.09375 2.5625 -6.09375 L 0.984375 -6.09375 C 0.828125 -6.09375 0.578125 -6.09375 0.578125 -5.78125 C 0.578125 -5.484375 0.84375 -5.484375 0.984375 -5.484375 L 2.265625 -5.484375 L 2.265625 -0.609375 L 0.984375 -0.609375 C 0.828125 -0.609375 0.578125 -0.609375 0.578125 -0.296875 C 0.578125 0 0.84375 0 0.984375 0 L 4.25 0 C 4.40625 0 4.65625 0 4.65625 -0.296875 Z M 4.65625 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-22">
<path style="stroke:none;" d="M 3.9375 -5.65625 C 3.96875 -6.125 3.625 -6.203125 3.5 -6.203125 C 3.3125 -6.203125 3.015625 -6.09375 3.046875 -5.65625 L 3.1875 -3.625 C 3.1875 -3.484375 3.21875 -3.265625 3.5 -3.265625 C 3.75 -3.265625 3.796875 -3.453125 3.8125 -3.625 Z M 2.171875 -5.65625 C 2.203125 -6.125 1.859375 -6.203125 1.734375 -6.203125 C 1.546875 -6.203125 1.25 -6.09375 1.28125 -5.65625 L 1.421875 -3.625 C 1.421875 -3.484375 1.453125 -3.265625 1.734375 -3.265625 C 1.984375 -3.265625 2.03125 -3.453125 2.046875 -3.625 Z M 2.171875 -5.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-23">
<path style="stroke:none;" d="M 5 -0.296875 C 5 -0.609375 4.765625 -0.609375 4.609375 -0.609375 L 4.359375 -0.609375 L 4.359375 -5.484375 L 4.609375 -5.484375 C 4.75 -5.484375 5 -5.484375 5 -5.78125 C 5 -6.09375 4.765625 -6.09375 4.609375 -6.09375 L 3.421875 -6.09375 C 3.265625 -6.09375 3.015625 -6.09375 3.015625 -5.796875 C 3.015625 -5.484375 3.265625 -5.484375 3.421875 -5.484375 L 3.671875 -5.484375 L 3.671875 -3.46875 L 1.5625 -3.46875 L 1.5625 -5.484375 L 1.796875 -5.484375 C 1.953125 -5.484375 2.203125 -5.484375 2.203125 -5.78125 C 2.203125 -6.09375 1.96875 -6.09375 1.796875 -6.09375 L 0.625 -6.09375 C 0.453125 -6.09375 0.21875 -6.09375 0.21875 -5.78125 C 0.21875 -5.484375 0.46875 -5.484375 0.625 -5.484375 L 0.875 -5.484375 L 0.875 -0.609375 L 0.625 -0.609375 C 0.453125 -0.609375 0.21875 -0.609375 0.21875 -0.296875 C 0.21875 0 0.46875 0 0.625 0 L 1.796875 0 C 1.953125 0 2.203125 0 2.203125 -0.296875 C 2.203125 -0.609375 1.96875 -0.609375 1.796875 -0.609375 L 1.5625 -0.609375 L 1.5625 -2.859375 L 3.671875 -2.859375 L 3.671875 -0.609375 L 3.421875 -0.609375 C 3.265625 -0.609375 3.015625 -0.609375 3.015625 -0.3125 C 3.015625 0 3.265625 0 3.421875 0 L 4.609375 0 C 4.75 0 5 0 5 -0.296875 Z M 5 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-24">
<path style="stroke:none;" d="M 3.453125 -0.25 C 3.453125 -0.859375 3.0625 -1.25 2.625 -1.25 C 2.21875 -1.25 2 -0.953125 2 -0.625 C 2 -0.25 2.28125 0 2.609375 0 C 2.671875 0 2.734375 -0.015625 2.8125 -0.03125 C 2.65625 0.59375 2.1875 0.75 2.078125 0.78125 C 1.96875 0.8125 1.796875 0.875 1.796875 1.0625 C 1.796875 1.21875 1.9375 1.390625 2.109375 1.390625 C 2.4375 1.390625 3.453125 0.84375 3.453125 -0.25 Z M 3.453125 -0.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-25">
<path style="stroke:none;" d="M 5.109375 -5.78125 C 5.109375 -6.09375 4.859375 -6.09375 4.703125 -6.09375 L 3.921875 -6.09375 C 3.765625 -6.09375 3.515625 -6.09375 3.515625 -5.78125 C 3.515625 -5.484375 3.765625 -5.484375 3.921875 -5.484375 L 4.171875 -5.484375 L 3.734375 -2.15625 C 3.65625 -1.5625 3.578125 -1.03125 3.5625 -0.75 C 3.5 -1.390625 3.03125 -3.375 3.015625 -3.421875 C 2.9375 -3.65625 2.703125 -3.65625 2.609375 -3.65625 C 2.515625 -3.65625 2.3125 -3.65625 2.21875 -3.4375 C 2.1875 -3.375 1.71875 -1.375 1.671875 -0.75 L 1.65625 -0.75 C 1.65625 -0.8125 1.640625 -1 1.578125 -1.53125 L 1.0625 -5.484375 L 1.3125 -5.484375 C 1.453125 -5.484375 1.703125 -5.484375 1.703125 -5.78125 C 1.703125 -6.09375 1.46875 -6.09375 1.3125 -6.09375 L 0.515625 -6.09375 C 0.375 -6.09375 0.109375 -6.09375 0.109375 -5.78125 C 0.109375 -5.484375 0.390625 -5.484375 0.484375 -5.484375 L 1.203125 -0.265625 C 1.25 0.078125 1.5 0.078125 1.609375 0.078125 C 1.703125 0.078125 1.90625 0.078125 2 -0.125 C 2.03125 -0.1875 2.578125 -2.515625 2.609375 -2.921875 L 2.625 -2.921875 C 2.65625 -2.46875 3.203125 -0.1875 3.203125 -0.171875 C 3.28125 0.078125 3.53125 0.078125 3.609375 0.078125 C 3.734375 0.078125 3.96875 0.078125 4.015625 -0.265625 L 4.734375 -5.484375 C 4.84375 -5.484375 5.109375 -5.484375 5.109375 -5.78125 Z M 5.109375 -5.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-26">
<path style="stroke:none;" d="M 5.109375 -0.3125 C 5.109375 -0.609375 4.84375 -0.609375 4.703125 -0.609375 L 4.25 -0.609375 L 4.25 -5.6875 C 4.25 -5.984375 4.203125 -6.09375 3.859375 -6.09375 L 3.125 -6.09375 C 2.96875 -6.09375 2.71875 -6.09375 2.71875 -5.78125 C 2.71875 -5.484375 2.984375 -5.484375 3.125 -5.484375 L 3.5625 -5.484375 L 3.5625 -3.90625 C 3.234375 -4.203125 2.828125 -4.359375 2.40625 -4.359375 C 1.3125 -4.359375 0.359375 -3.40625 0.359375 -2.140625 C 0.359375 -0.90625 1.25 0.0625 2.3125 0.0625 C 2.875 0.0625 3.296875 -0.203125 3.5625 -0.5 C 3.5625 -0.140625 3.5625 0 3.96875 0 L 4.6875 0 C 4.859375 0 5.109375 0 5.109375 -0.3125 Z M 3.5625 -1.9375 C 3.5625 -1.375 3.125 -0.546875 2.359375 -0.546875 C 1.640625 -0.546875 1.046875 -1.25 1.046875 -2.140625 C 1.046875 -3.09375 1.75 -3.75 2.4375 -3.75 C 3.078125 -3.75 3.5625 -3.1875 3.5625 -2.640625 Z M 3.5625 -1.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-27">
<path style="stroke:none;" d="M 3.109375 -5.625 C 3.109375 -6.15625 2.703125 -6.203125 2.609375 -6.203125 C 2.515625 -6.203125 2.109375 -6.15625 2.109375 -5.625 L 2.1875 -3.296875 L 2.21875 -2.09375 C 2.21875 -1.828125 2.484375 -1.828125 2.609375 -1.828125 C 2.96875 -1.828125 3 -1.90625 3.015625 -2.3125 L 3.0625 -4.03125 C 3.078125 -4.5625 3.109375 -5.109375 3.109375 -5.625 Z M 3.109375 -0.5 C 3.109375 -0.78125 2.890625 -1 2.609375 -1 C 2.328125 -1 2.109375 -0.78125 2.109375 -0.5 C 2.109375 -0.21875 2.328125 0 2.609375 0 C 2.890625 0 3.109375 -0.21875 3.109375 -0.5 Z M 3.109375 -0.5 "/>
</symbol>
<symbol overflow="visible" id="glyph2-28">
<path style="stroke:none;" d="M 3.234375 -3.671875 C 3.234375 -4.03125 2.9375 -4.296875 2.625 -4.296875 C 2.25 -4.296875 2 -3.984375 2 -3.671875 C 2 -3.3125 2.296875 -3.046875 2.609375 -3.046875 C 2.984375 -3.046875 3.234375 -3.359375 3.234375 -3.671875 Z M 3.296875 -0.265625 C 3.296875 -0.921875 2.984375 -1.25 2.609375 -1.25 C 2.25 -1.25 2 -0.96875 2 -0.625 C 2 -0.34375 2.15625 0 2.65625 0 C 2.515625 0.53125 2.140625 0.734375 2 0.8125 C 1.9375 0.84375 1.796875 0.90625 1.796875 1.0625 C 1.796875 1.21875 1.9375 1.390625 2.109375 1.390625 C 2.328125 1.390625 3.296875 0.84375 3.296875 -0.265625 Z M 3.296875 -0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-29">
<path style="stroke:none;" d="M 4.65625 -3.046875 C 4.65625 -3.34375 4.421875 -3.34375 4.3125 -3.34375 C 4.078125 -3.359375 2.984375 -3.375 2.953125 -3.9375 L 2.953125 -5.609375 C 2.953125 -5.875 2.953125 -6.328125 2.4375 -6.625 C 1.96875 -6.875 1.328125 -6.921875 0.984375 -6.921875 C 0.8125 -6.921875 0.5625 -6.921875 0.5625 -6.609375 C 0.5625 -6.34375 0.75 -6.3125 0.890625 -6.3125 C 2.265625 -6.296875 2.265625 -5.9375 2.265625 -5.609375 L 2.265625 -4 C 2.265625 -3.59375 2.421875 -3.28125 2.84375 -3.046875 C 2.296875 -2.734375 2.265625 -2.265625 2.265625 -2.21875 L 2.265625 -0.453125 C 2.265625 -0.15625 2.265625 0.203125 0.828125 0.21875 C 0.765625 0.21875 0.5625 0.28125 0.5625 0.515625 C 0.5625 0.828125 0.8125 0.828125 0.984375 0.828125 C 1.859375 0.828125 2.796875 0.625 2.953125 -0.171875 C 2.953125 -0.234375 2.953125 -0.734375 2.953125 -1.015625 L 2.953125 -1.90625 C 2.953125 -2.265625 2.953125 -2.421875 3.3125 -2.578125 C 3.671875 -2.734375 4.15625 -2.734375 4.390625 -2.734375 C 4.453125 -2.734375 4.65625 -2.796875 4.65625 -3.046875 Z M 4.65625 -3.046875 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="0.802" y="10.871"/>
<use xlink:href="#glyph0-2" x="11.395234" y="10.871"/>
<use xlink:href="#glyph0-3" x="15.878422" y="10.871"/>
<use xlink:href="#glyph0-4" x="24.844797" y="10.871"/>
<use xlink:href="#glyph0-5" x="29.775586" y="10.871"/>
<use xlink:href="#glyph0-6" x="37.621522" y="10.871"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="44.34989" y="10.871"/>
<use xlink:href="#glyph0-8" x="53.316265" y="10.871"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="66.059995" y="10.871"/>
<use xlink:href="#glyph0-5" x="74.395137" y="10.871"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="81.796341" y="10.871"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="89.40987" y="10.871"/>
<use xlink:href="#glyph0-11" x="97.255806" y="10.871"/>
<use xlink:href="#glyph0-12" x="102.635631" y="10.871"/>
<use xlink:href="#glyph0-3" x="114.822728" y="10.871"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="123.344371" y="10.871"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="134.555926" y="10.871"/>
<use xlink:href="#glyph0-3" x="141.919831" y="10.871"/>
<use xlink:href="#glyph0-14" x="150.886206" y="10.871"/>
<use xlink:href="#glyph0-15" x="159.852581" y="10.871"/>
<use xlink:href="#glyph0-3" x="168.818956" y="10.871"/>
<use xlink:href="#glyph0-16" x="177.785331" y="10.871"/>
</g>
<g style="fill:rgb(0%,50%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="0.802" y="32.692"/>
<use xlink:href="#glyph1-2" x="6.032365" y="32.692"/>
<use xlink:href="#glyph1-3" x="11.26273" y="32.692"/>
<use xlink:href="#glyph1-4" x="16.493095" y="32.692"/>
<use xlink:href="#glyph1-5" x="21.72346" y="32.692"/>
<use xlink:href="#glyph1-6" x="26.953825" y="32.692"/>
</g>
<g style="fill:rgb(0%,50%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="37.414555" y="32.692"/>
<use xlink:href="#glyph1-4" x="42.64492" y="32.692"/>
<use xlink:href="#glyph1-7" x="47.875285" y="32.692"/>
<use xlink:href="#glyph1-8" x="53.10565" y="32.692"/>
<use xlink:href="#glyph1-8" x="58.336015" y="32.692"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="68.796745" y="32.692"/>
<use xlink:href="#glyph1-10" x="74.02711" y="32.692"/>
<use xlink:href="#glyph1-8" x="79.257475" y="32.692"/>
<use xlink:href="#glyph1-11" x="84.48784" y="32.692"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="94.949" y="32.692"/>
</g>
<g style="fill:rgb(0%,50%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="11.263" y="44.647"/>
<use xlink:href="#glyph1-2" x="16.493365" y="44.647"/>
<use xlink:href="#glyph1-3" x="21.72373" y="44.647"/>
<use xlink:href="#glyph1-4" x="26.954095" y="44.647"/>
<use xlink:href="#glyph1-5" x="32.18446" y="44.647"/>
<use xlink:href="#glyph1-6" x="37.414825" y="44.647"/>
</g>
<g style="fill:rgb(0%,50%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-8" x="47.875555" y="44.647"/>
<use xlink:href="#glyph1-11" x="53.10592" y="44.647"/>
<use xlink:href="#glyph1-7" x="58.336285" y="44.647"/>
<use xlink:href="#glyph1-11" x="63.56665" y="44.647"/>
<use xlink:href="#glyph1-5" x="68.797015" y="44.647"/>
<use xlink:href="#glyph1-6" x="74.02738" y="44.647"/>
</g>
<g style="fill:rgb(68.998718%,0%,25%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="84.48811" y="44.647"/>
<use xlink:href="#glyph1-13" x="89.718475" y="44.647"/>
<use xlink:href="#glyph1-5" x="94.94884" y="44.647"/>
<use xlink:href="#glyph1-14" x="100.179205" y="44.647"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="110.64" y="44.647"/>
<use xlink:href="#glyph2-3" x="115.870365" y="44.647"/>
<use xlink:href="#glyph2-4" x="121.10073" y="44.647"/>
<use xlink:href="#glyph2-5" x="126.331095" y="44.647"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="131.56146" y="44.647"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="136.791825" y="44.647"/>
<use xlink:href="#glyph2-8" x="142.02219" y="44.647"/>
<use xlink:href="#glyph2-9" x="147.252555" y="44.647"/>
<use xlink:href="#glyph2-4" x="152.48292" y="44.647"/>
<use xlink:href="#glyph2-5" x="157.713285" y="44.647"/>
<use xlink:href="#glyph2-10" x="162.94365" y="44.647"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-11" x="168.174015" y="44.647"/>
<use xlink:href="#glyph2-12" x="173.40438" y="44.647"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="183.86511" y="44.647"/>
<use xlink:href="#glyph2-9" x="189.095475" y="44.647"/>
<use xlink:href="#glyph2-10" x="194.32584" y="44.647"/>
<use xlink:href="#glyph2-13" x="199.556205" y="44.647"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-14" x="204.78657" y="44.647"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="215.2473" y="44.647"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="21.723" y="56.602"/>
<use xlink:href="#glyph2-15" x="26.953365" y="56.602"/>
<use xlink:href="#glyph2-13" x="32.18373" y="56.602"/>
<use xlink:href="#glyph2-8" x="37.414095" y="56.602"/>
<use xlink:href="#glyph2-16" x="42.64446" y="56.602"/>
<use xlink:href="#glyph2-2" x="47.874825" y="56.602"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-17" x="53.10519" y="56.602"/>
</g>
<g style="fill:rgb(48.999023%,55.999756%,15.99884%);fill-opacity:1;">
<use xlink:href="#glyph2-18" x="58.335555" y="56.602"/>
<use xlink:href="#glyph2-19" x="63.56592" y="56.602"/>
<use xlink:href="#glyph2-8" x="68.796285" y="56.602"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-17" x="74.02665" y="56.602"/>
</g>
<g style="fill:rgb(48.999023%,55.999756%,15.99884%);fill-opacity:1;">
<use xlink:href="#glyph2-20" x="79.257015" y="56.602"/>
<use xlink:href="#glyph2-9" x="84.48738" y="56.602"/>
<use xlink:href="#glyph2-4" x="89.717745" y="56.602"/>
<use xlink:href="#glyph2-5" x="94.94811" y="56.602"/>
<use xlink:href="#glyph2-8" x="100.178475" y="56.602"/>
<use xlink:href="#glyph2-21" x="105.40884" y="56.602"/>
<use xlink:href="#glyph2-5" x="110.639205" y="56.602"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="115.86957" y="56.602"/>
</g>
<g style="fill:rgb(72.999573%,12.998962%,12.998962%);fill-opacity:1;">
<use xlink:href="#glyph2-22" x="121.099935" y="56.602"/>
<use xlink:href="#glyph2-23" x="126.3303" y="56.602"/>
<use xlink:href="#glyph2-16" x="131.560665" y="56.602"/>
<use xlink:href="#glyph2-21" x="136.79103" y="56.602"/>
<use xlink:href="#glyph2-21" x="142.021395" y="56.602"/>
<use xlink:href="#glyph2-18" x="147.25176" y="56.602"/>
<use xlink:href="#glyph2-24" x="152.482125" y="56.602"/>
</g>
<g style="fill:rgb(72.999573%,12.998962%,12.998962%);fill-opacity:1;">
<use xlink:href="#glyph2-25" x="162.942855" y="56.602"/>
<use xlink:href="#glyph2-18" x="168.17322" y="56.602"/>
<use xlink:href="#glyph2-9" x="173.403585" y="56.602"/>
<use xlink:href="#glyph2-21" x="178.63395" y="56.602"/>
<use xlink:href="#glyph2-26" x="183.864315" y="56.602"/>
<use xlink:href="#glyph2-27" x="189.09468" y="56.602"/>
<use xlink:href="#glyph2-22" x="194.325045" y="56.602"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-14" x="199.55541" y="56.602"/>
<use xlink:href="#glyph2-28" x="204.785775" y="56.602"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-29" x="11.263" y="68.557"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-29" x="0.802" y="80.513"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 60 KiB

View File

@ -0,0 +1,369 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" version="1.1">
<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 10.125 -3.875 L 9.53125 -3.875 C 9.21875 -1.734375 8.6875 -0.609375 6.203125 -0.609375 L 3.953125 -0.609375 L 3.953125 -4.765625 L 4.8125 -4.765625 C 6.1875 -4.765625 6.328125 -4.171875 6.328125 -3.078125 L 6.921875 -3.078125 L 6.921875 -7.0625 L 6.328125 -7.0625 C 6.328125 -5.984375 6.1875 -5.375 4.8125 -5.375 L 3.953125 -5.375 L 3.953125 -9.15625 L 6.203125 -9.15625 C 8.390625 -9.15625 8.859375 -8.21875 9.078125 -6.375 L 9.6875 -6.375 L 9.265625 -9.765625 L 0.546875 -9.765625 L 0.546875 -9.15625 L 2.0625 -9.15625 L 2.0625 -0.609375 L 0.546875 -0.609375 L 0.546875 0 L 9.515625 0 Z M 10.125 -3.875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4 0 L 4 -0.609375 L 3.109375 -0.609375 L 3.109375 -6.453125 L 0.671875 -6.34375 L 0.671875 -5.71875 C 1.515625 -5.71875 1.625 -5.71875 1.625 -5.15625 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 1.953125 -0.03125 2.34375 -0.03125 C 2.734375 -0.03125 3.65625 -0.03125 4 0 Z M 3.28125 -8.71875 C 3.28125 -9.3125 2.796875 -9.75 2.25 -9.75 C 1.65625 -9.75 1.203125 -9.28125 1.203125 -8.71875 C 1.203125 -8.140625 1.6875 -7.6875 2.234375 -7.6875 C 2.828125 -7.6875 3.28125 -8.15625 3.28125 -8.71875 Z M 3.28125 -8.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4.421875 -6.453125 3.53125 -5.953125 3.046875 -4.875 L 3.03125 -4.875 L 3.03125 -6.453125 L 0.609375 -6.34375 L 0.609375 -5.71875 C 1.484375 -5.71875 1.59375 -5.71875 1.59375 -5.15625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 6.046875 -8.84375 C 6.046875 -9.4375 5.53125 -10.046875 4.515625 -10.046875 C 3.21875 -10.046875 1.625 -9.5 1.625 -7.828125 L 1.625 -6.375 L 0.5625 -6.375 L 0.5625 -5.75 L 1.625 -5.75 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 2.03125 -0.03125 2.4375 -0.03125 C 2.859375 -0.03125 4.015625 -0.03125 4.359375 0 L 4.359375 -0.609375 L 3.109375 -0.609375 L 3.109375 -5.75 L 4.75 -5.75 L 4.75 -6.375 L 3.046875 -6.375 L 3.046875 -7.84375 C 3.046875 -9.34375 3.984375 -9.5625 4.453125 -9.5625 C 4.625 -9.5625 4.640625 -9.546875 4.734375 -9.53125 C 4.515625 -9.375 4.390625 -9.140625 4.390625 -8.828125 C 4.390625 -8.265625 4.84375 -8 5.21875 -8 C 5.53125 -8 6.046875 -8.21875 6.046875 -8.84375 Z M 6.046875 -8.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 7.765625 -0.3125 C 7.765625 -0.609375 7.625 -0.609375 7.4375 -0.609375 C 6.53125 -0.625 6.53125 -0.859375 6.53125 -1.1875 L 6.53125 -4.28125 C 6.53125 -5.609375 5.484375 -6.5 3.453125 -6.5 C 2.65625 -6.5 0.96875 -6.421875 0.96875 -5.21875 C 0.96875 -4.625 1.421875 -4.359375 1.8125 -4.359375 C 2.234375 -4.359375 2.65625 -4.65625 2.65625 -5.203125 C 2.65625 -5.484375 2.546875 -5.734375 2.3125 -5.890625 C 2.78125 -6.03125 3.125 -6.03125 3.40625 -6.03125 C 4.375 -6.03125 4.96875 -5.484375 4.96875 -4.296875 L 4.96875 -3.734375 C 2.703125 -3.734375 0.421875 -3.09375 0.421875 -1.5 C 0.421875 -0.203125 2.078125 0.09375 3.0625 0.09375 C 4.171875 0.09375 4.875 -0.515625 5.15625 -1.140625 C 5.15625 -0.609375 5.15625 0 6.609375 0 L 7.34375 0 C 7.640625 0 7.765625 0 7.765625 -0.3125 Z M 4.96875 -2 C 4.96875 -0.640625 3.765625 -0.390625 3.296875 -0.390625 C 2.59375 -0.390625 2.015625 -0.859375 2.015625 -1.515625 C 2.015625 -2.828125 3.5625 -3.265625 4.96875 -3.34375 Z M 4.96875 -2 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 6.71875 -1.671875 C 6.71875 -1.84375 6.5625 -1.84375 6.40625 -1.84375 C 6.1875 -1.84375 6.171875 -1.84375 6.09375 -1.65625 C 6 -1.390625 5.609375 -0.4375 4.28125 -0.4375 C 2.265625 -0.4375 2.265625 -2.609375 2.265625 -3.25 C 2.265625 -4.109375 2.28125 -5.984375 4.15625 -5.984375 C 4.265625 -5.984375 5.109375 -5.953125 5.109375 -5.875 C 5.109375 -5.875 5.09375 -5.859375 5.0625 -5.84375 C 5.015625 -5.796875 4.828125 -5.578125 4.828125 -5.21875 C 4.828125 -4.625 5.328125 -4.375 5.6875 -4.375 C 5.984375 -4.375 6.53125 -4.5625 6.53125 -5.234375 C 6.53125 -6.40625 4.875 -6.5 4.109375 -6.5 C 1.546875 -6.5 0.546875 -4.828125 0.546875 -3.1875 C 0.546875 -1.234375 1.90625 0.09375 4.015625 0.09375 C 6.265625 0.09375 6.71875 -1.578125 6.71875 -1.671875 Z M 6.71875 -1.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4 -6.453125 3.296875 -5.4375 3.09375 -5 L 3.078125 -5 L 3.078125 -9.953125 L 0.609375 -9.84375 L 0.609375 -9.21875 C 1.484375 -9.21875 1.59375 -9.21875 1.59375 -8.65625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 6.90625 -1.671875 C 6.90625 -1.890625 6.6875 -1.890625 6.59375 -1.890625 C 6.375 -1.890625 6.359375 -1.84375 6.265625 -1.65625 C 5.890625 -0.734375 4.953125 -0.4375 4.265625 -0.4375 C 2.1875 -0.4375 2.171875 -2.359375 2.171875 -3.171875 L 6.484375 -3.171875 C 6.8125 -3.171875 6.90625 -3.171875 6.90625 -3.53125 C 6.90625 -3.953125 6.796875 -5.03125 6.140625 -5.703125 C 5.53125 -6.3125 4.734375 -6.5 3.90625 -6.5 C 1.65625 -6.5 0.4375 -5.03125 0.4375 -3.234375 C 0.4375 -1.21875 1.921875 0.09375 4.09375 0.09375 C 6.25 0.09375 6.90625 -1.4375 6.90625 -1.671875 Z M 5.578125 -3.578125 L 2.171875 -3.578125 C 2.1875 -4.171875 2.203125 -4.734375 2.515625 -5.25 C 2.78125 -5.703125 3.28125 -6.03125 3.90625 -6.03125 C 5.4375 -6.03125 5.5625 -4.296875 5.578125 -3.578125 Z M 5.578125 -3.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 7.40625 -9.21875 L 7.40625 -9.84375 C 7.046875 -9.8125 5.5625 -9.8125 5.109375 -9.8125 L 2.453125 -9.84375 L 2.453125 -9.21875 L 4.4375 -9.21875 L 4.4375 -2.140625 C 4.4375 -0.78125 3.765625 -0.296875 3.03125 -0.296875 C 2.921875 -0.296875 2.265625 -0.296875 1.703125 -0.65625 C 2.21875 -0.78125 2.46875 -1.203125 2.46875 -1.640625 C 2.46875 -2.34375 1.90625 -2.65625 1.46875 -2.65625 C 0.953125 -2.65625 0.4375 -2.296875 0.4375 -1.640625 C 0.4375 -0.5625 1.546875 0.171875 3.09375 0.171875 C 4.9375 0.171875 6.25 -0.65625 6.25 -2.140625 L 6.25 -9.21875 Z M 7.40625 -9.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 8.15625 -5.75 L 8.15625 -6.375 C 7.640625 -6.34375 7.609375 -6.34375 7.03125 -6.34375 L 5.796875 -6.375 L 5.796875 -5.75 C 6.1875 -5.75 6.5 -5.6875 6.5 -5.578125 C 6.5 -5.578125 6.5 -5.546875 6.421875 -5.40625 L 4.75 -1.71875 L 2.890625 -5.75 L 3.6875 -5.75 L 3.6875 -6.375 C 3.359375 -6.34375 2.359375 -6.34375 1.96875 -6.34375 C 1.546875 -6.34375 0.71875 -6.34375 0.34375 -6.375 L 0.34375 -5.75 L 1.25 -5.75 L 3.765625 -0.265625 C 3.90625 0 3.9375 0.078125 4.265625 0.078125 C 4.484375 0.078125 4.609375 0.046875 4.734375 -0.25 L 7.09375 -5.421875 C 7.203125 -5.640625 7.265625 -5.75 8.15625 -5.75 Z M 8.15625 -5.75 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 4.46875 -2.53125 L 4.46875 -3.84375 L 0.171875 -3.84375 L 0.171875 -2.53125 Z M 4.46875 -2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 11.625 0 L 11.625 -0.609375 L 10.25 -0.609375 L 6.5625 -9.703125 C 6.46875 -9.96875 6.4375 -10.046875 6.09375 -10.046875 C 5.734375 -10.046875 5.703125 -9.96875 5.609375 -9.703125 L 2.046875 -0.96875 C 1.953125 -0.734375 1.953125 -0.703125 1.546875 -0.65625 C 1.1875 -0.609375 1.140625 -0.609375 0.8125 -0.609375 L 0.5625 -0.609375 L 0.5625 0 C 0.9375 -0.03125 1.796875 -0.03125 2.203125 -0.03125 C 2.59375 -0.03125 3.640625 -0.03125 3.96875 0 L 3.96875 -0.609375 C 3.65625 -0.609375 3.109375 -0.609375 2.71875 -0.78125 C 2.75 -0.90625 2.75 -0.9375 2.78125 -0.984375 L 3.546875 -2.859375 L 7.390625 -2.859375 L 8.296875 -0.609375 L 6.9375 -0.609375 L 6.9375 0 C 7.40625 -0.03125 8.796875 -0.03125 9.34375 -0.03125 C 9.796875 -0.03125 11.265625 -0.03125 11.625 0 Z M 7.125 -3.46875 L 3.78125 -3.46875 L 5.46875 -7.609375 Z M 7.125 -3.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 11.296875 -5.75 L 11.296875 -6.375 C 10.890625 -6.34375 10.703125 -6.34375 10.1875 -6.34375 C 9.59375 -6.34375 9.40625 -6.34375 8.890625 -6.375 L 8.890625 -5.75 C 9.015625 -5.75 9.71875 -5.75 9.71875 -5.5625 C 9.71875 -5.5625 9.71875 -5.53125 9.671875 -5.390625 L 8.15625 -1.65625 L 6.515625 -5.75 L 7.328125 -5.75 L 7.328125 -6.375 C 6.984375 -6.34375 6.140625 -6.34375 5.75 -6.34375 L 4.28125 -6.375 L 4.28125 -5.75 L 5.125 -5.75 C 5.15625 -5.640625 5.234375 -5.453125 5.296875 -5.328125 C 5.328125 -5.234375 5.484375 -4.890625 5.484375 -4.8125 L 5.421875 -4.640625 L 4.328125 -1.9375 L 2.78125 -5.75 L 3.59375 -5.75 L 3.59375 -6.375 C 3.265625 -6.34375 2.296875 -6.34375 1.90625 -6.34375 C 1.453125 -6.34375 0.765625 -6.34375 0.328125 -6.375 L 0.328125 -5.75 L 1.171875 -5.75 L 3.375 -0.28125 C 3.46875 -0.03125 3.53125 0.078125 3.84375 0.078125 C 4 0.078125 4.171875 0.078125 4.28125 -0.21875 L 5.8125 -4.015625 L 7.328125 -0.25 C 7.453125 0.078125 7.609375 0.078125 7.78125 0.078125 C 8.109375 0.078125 8.140625 -0.015625 8.25 -0.265625 L 10.328125 -5.40625 C 10.421875 -5.65625 10.46875 -5.75 11.296875 -5.75 Z M 11.296875 -5.75 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 8.453125 0 L 8.453125 -0.609375 C 7.5625 -0.609375 7.453125 -0.609375 7.453125 -1.171875 L 7.453125 -9.953125 L 4.984375 -9.84375 L 4.984375 -9.21875 C 5.859375 -9.21875 5.96875 -9.21875 5.96875 -8.65625 L 5.96875 -5.765625 C 5.65625 -6.03125 5.015625 -6.453125 4.03125 -6.453125 C 2 -6.453125 0.546875 -5.1875 0.546875 -3.1875 C 0.546875 -1.140625 1.96875 0.09375 3.875 0.09375 C 4.65625 0.09375 5.328125 -0.1875 5.890625 -0.65625 L 5.890625 0.09375 Z M 5.890625 -1.453125 C 5.296875 -0.578125 4.5625 -0.390625 4.046875 -0.390625 C 2.265625 -0.390625 2.265625 -2.203125 2.265625 -3.15625 C 2.265625 -3.828125 2.265625 -4.546875 2.578125 -5.09375 C 3.03125 -5.890625 3.875 -5.984375 4.203125 -5.984375 C 4.796875 -5.984375 5.421875 -5.71875 5.890625 -5.09375 Z M 5.890625 -1.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 C 7.71875 -0.609375 7.609375 -0.609375 7.609375 -1.171875 L 7.609375 -6.453125 L 5.0625 -6.34375 L 5.0625 -5.71875 C 5.953125 -5.71875 6.046875 -5.71875 6.046875 -5.15625 L 6.046875 -2.359375 C 6.046875 -1.265625 5.40625 -0.390625 4.28125 -0.390625 C 3.21875 -0.390625 3.15625 -0.75 3.15625 -1.53125 L 3.15625 -6.453125 L 0.609375 -6.34375 L 0.609375 -5.71875 C 1.484375 -5.71875 1.59375 -5.71875 1.59375 -5.15625 L 1.59375 -1.765625 C 1.59375 -0.328125 2.546875 0.09375 4.09375 0.09375 C 4.4375 0.09375 5.5 0.09375 6.109375 -1.078125 L 6.125 -1.078125 L 6.125 0.09375 Z M 8.609375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 7.8125 -5.734375 C 7.8125 -6.078125 7.5625 -6.546875 6.953125 -6.546875 C 6.34375 -6.546875 5.75 -6.234375 5.453125 -5.984375 C 4.859375 -6.328125 4.296875 -6.453125 3.578125 -6.453125 C 1.59375 -6.453125 0.796875 -5.34375 0.796875 -4.34375 C 0.796875 -3.90625 0.953125 -3.3125 1.546875 -2.828125 C 1.3125 -2.546875 1.046875 -2.046875 1.046875 -1.53125 C 1.046875 -0.921875 1.375 -0.390625 1.671875 -0.15625 C 1.328125 -0.078125 0.4375 0.265625 0.4375 1.078125 C 0.4375 1.921875 1.375 2.890625 4.015625 2.890625 C 6.390625 2.890625 7.609375 2.109375 7.609375 1.03125 C 7.609375 -0.234375 6.765625 -0.640625 6.40625 -0.8125 C 5.71875 -1.15625 4.8125 -1.15625 3.546875 -1.15625 C 3.1875 -1.15625 2.546875 -1.15625 2.484375 -1.171875 C 1.859375 -1.28125 1.6875 -1.828125 1.6875 -2.09375 C 1.6875 -2.203125 1.703125 -2.421875 1.859375 -2.609375 C 2.546875 -2.234375 3.359375 -2.234375 3.578125 -2.234375 C 5.546875 -2.234375 6.34375 -3.34375 6.34375 -4.34375 C 6.34375 -5.078125 5.921875 -5.59375 5.75 -5.734375 C 6.171875 -5.96875 6.515625 -6.03125 6.75 -6.046875 C 6.71875 -5.984375 6.671875 -5.921875 6.671875 -5.734375 C 6.671875 -5.4375 6.875 -5.15625 7.25 -5.15625 C 7.609375 -5.15625 7.8125 -5.4375 7.8125 -5.734375 Z M 4.8125 -4.34375 C 4.8125 -3.6875 4.8125 -2.703125 3.578125 -2.703125 C 2.328125 -2.703125 2.328125 -3.6875 2.328125 -4.34375 C 2.328125 -5 2.328125 -6 3.578125 -6 C 4.8125 -6 4.8125 -5 4.8125 -4.34375 Z M 6.421875 1.09375 C 6.421875 1.59375 5.921875 2.421875 4.03125 2.421875 C 2.140625 2.421875 1.625 1.625 1.625 1.078125 C 1.625 0.15625 2.53125 0.15625 2.734375 0.15625 L 4.375 0.15625 C 5.421875 0.15625 6.421875 0.34375 6.421875 1.09375 Z M 6.421875 1.09375 "/>
</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 4.890625 -2.171875 C 4.890625 -3.421875 3.984375 -4.390625 2.90625 -4.390625 C 2.484375 -4.390625 2.078125 -4.25 1.75 -4 C 1.734375 -4.234375 1.640625 -4.34375 1.28125 -4.34375 L 0.578125 -4.34375 C 0.390625 -4.34375 0.09375 -4.328125 0.09375 -3.96875 C 0.09375 -3.609375 0.40625 -3.59375 0.5625 -3.59375 L 0.921875 -3.59375 L 0.921875 1.40625 L 0.578125 1.40625 C 0.390625 1.40625 0.09375 1.421875 0.09375 1.78125 C 0.09375 2.140625 0.40625 2.15625 0.5625 2.15625 L 2.109375 2.15625 C 2.28125 2.15625 2.578125 2.140625 2.578125 1.78125 C 2.578125 1.421875 2.296875 1.40625 2.109375 1.40625 L 1.75 1.40625 L 1.75 -0.34375 C 2.140625 -0.015625 2.515625 0.0625 2.796875 0.0625 C 3.890625 0.0625 4.890625 -0.890625 4.890625 -2.171875 Z M 4.0625 -2.171875 C 4.0625 -1.296875 3.421875 -0.6875 2.78125 -0.6875 C 2.078125 -0.6875 1.765625 -1.5 1.765625 -1.9375 L 1.765625 -2.640625 C 1.765625 -3.1875 2.296875 -3.65625 2.859375 -3.65625 C 3.53125 -3.65625 4.0625 -2.96875 4.0625 -2.171875 Z M 4.0625 -2.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 5.109375 -0.375 C 5.109375 -0.734375 4.8125 -0.75 4.65625 -0.75 L 4.296875 -0.75 L 4.296875 -3.875 C 4.296875 -4.234375 4.21875 -4.34375 3.828125 -4.34375 L 3.125 -4.34375 C 2.9375 -4.34375 2.640625 -4.328125 2.640625 -3.96875 C 2.640625 -3.609375 2.9375 -3.59375 3.109375 -3.59375 L 3.46875 -3.59375 L 3.46875 -1.609375 C 3.46875 -0.796875 2.734375 -0.6875 2.4375 -0.6875 C 1.765625 -0.6875 1.75 -0.96875 1.75 -1.25 L 1.75 -3.875 C 1.75 -4.234375 1.6875 -4.34375 1.28125 -4.34375 L 0.578125 -4.34375 C 0.390625 -4.34375 0.109375 -4.328125 0.109375 -3.96875 C 0.109375 -3.609375 0.40625 -3.59375 0.5625 -3.59375 L 0.921875 -3.59375 L 0.921875 -1.1875 C 0.921875 -0.203125 1.640625 0.0625 2.390625 0.0625 C 2.765625 0.0625 3.140625 -0.03125 3.484375 -0.25 C 3.546875 -0.015625 3.75 0 3.9375 0 L 4.640625 0 C 4.828125 0 5.109375 -0.015625 5.109375 -0.375 Z M 5.109375 -0.375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 4.890625 -2.171875 C 4.890625 -3.421875 3.984375 -4.390625 2.90625 -4.390625 C 2.484375 -4.390625 2.078125 -4.25 1.75 -4.015625 L 1.75 -5.609375 C 1.75 -5.96875 1.6875 -6.09375 1.28125 -6.09375 L 0.578125 -6.09375 C 0.390625 -6.09375 0.09375 -6.078125 0.09375 -5.71875 C 0.09375 -5.359375 0.40625 -5.34375 0.5625 -5.34375 L 0.921875 -5.34375 L 0.921875 -0.484375 C 0.921875 -0.234375 0.9375 0 1.34375 0 C 1.65625 0 1.734375 -0.140625 1.75 -0.34375 C 2.125 -0.015625 2.515625 0.0625 2.796875 0.0625 C 3.890625 0.0625 4.890625 -0.890625 4.890625 -2.171875 Z M 4.0625 -2.171875 C 4.0625 -1.296875 3.421875 -0.6875 2.78125 -0.6875 C 2.078125 -0.6875 1.765625 -1.5 1.765625 -1.9375 L 1.765625 -2.640625 C 1.765625 -3.1875 2.296875 -3.65625 2.859375 -3.65625 C 3.53125 -3.65625 4.0625 -2.96875 4.0625 -2.171875 Z M 4.0625 -2.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 4.6875 -0.375 C 4.6875 -0.734375 4.40625 -0.75 4.21875 -0.75 L 3.03125 -0.75 L 3.03125 -5.609375 C 3.03125 -5.96875 2.953125 -6.09375 2.5625 -6.09375 L 1.03125 -6.09375 C 0.84375 -6.09375 0.546875 -6.078125 0.546875 -5.71875 C 0.546875 -5.359375 0.84375 -5.34375 1.015625 -5.34375 L 2.203125 -5.34375 L 2.203125 -0.75 L 1.03125 -0.75 C 0.84375 -0.75 0.546875 -0.734375 0.546875 -0.375 C 0.546875 -0.015625 0.84375 0 1.015625 0 L 4.21875 0 C 4.390625 0 4.6875 -0.015625 4.6875 -0.375 Z M 4.6875 -0.375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 4.5625 -0.375 C 4.5625 -0.734375 4.265625 -0.75 4.09375 -0.75 L 3.15625 -0.75 L 3.15625 -3.875 C 3.15625 -4.234375 3.078125 -4.34375 2.6875 -4.34375 L 1.3125 -4.34375 C 1.125 -4.34375 0.828125 -4.328125 0.828125 -3.984375 C 0.828125 -3.609375 1.125 -3.59375 1.3125 -3.59375 L 2.328125 -3.59375 L 2.328125 -0.75 L 1.21875 -0.75 C 1.03125 -0.75 0.75 -0.734375 0.75 -0.375 C 0.75 -0.015625 1.046875 0 1.21875 0 L 4.09375 0 C 4.265625 0 4.5625 -0.015625 4.5625 -0.375 Z M 3.1875 -5.484375 C 3.1875 -5.796875 2.9375 -6.046875 2.625 -6.046875 C 2.296875 -6.046875 2.046875 -5.796875 2.046875 -5.484375 C 2.046875 -5.15625 2.296875 -4.921875 2.625 -4.921875 C 2.9375 -4.921875 3.1875 -5.15625 3.1875 -5.484375 Z M 3.1875 -5.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 4.671875 -1.140625 C 4.671875 -1.46875 4.328125 -1.484375 4.25 -1.484375 C 4.0625 -1.484375 3.953125 -1.46875 3.859375 -1.21875 C 3.8125 -1.109375 3.609375 -0.6875 2.96875 -0.6875 C 2.1875 -0.6875 1.53125 -1.328125 1.53125 -2.171875 C 1.53125 -2.625 1.78125 -3.671875 3.03125 -3.671875 L 3.53125 -3.671875 C 3.546875 -3.265625 3.765625 -3.125 4.03125 -3.125 C 4.3125 -3.125 4.5625 -3.3125 4.5625 -3.640625 C 4.5625 -4.390625 3.5 -4.421875 3.03125 -4.421875 C 1.3125 -4.421875 0.703125 -3.0625 0.703125 -2.171875 C 0.703125 -0.96875 1.640625 0.0625 2.90625 0.0625 C 4.34375 0.0625 4.671875 -0.96875 4.671875 -1.140625 Z M 4.671875 -1.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 5.1875 -0.375 C 5.1875 -0.734375 4.90625 -0.75 4.71875 -0.75 C 4.4375 -0.75 4.296875 -0.78125 4.21875 -0.8125 L 4.21875 -2.84375 C 4.21875 -3.5625 3.671875 -4.421875 2.21875 -4.421875 C 1.78125 -4.421875 0.734375 -4.390625 0.734375 -3.640625 C 0.734375 -3.296875 0.984375 -3.125 1.25 -3.125 C 1.421875 -3.125 1.75 -3.21875 1.75 -3.65625 C 1.75 -3.65625 2.078125 -3.671875 2.234375 -3.671875 C 2.890625 -3.671875 3.359375 -3.421875 3.390625 -2.84375 C 1.671875 -2.796875 0.484375 -2.265625 0.484375 -1.328125 C 0.484375 -0.625 1.109375 0.0625 2.15625 0.0625 C 2.515625 0.0625 3.09375 -0.015625 3.5625 -0.296875 C 3.8125 -0.015625 4.25 0 4.625 0 C 4.953125 0 5.1875 -0.015625 5.1875 -0.375 Z M 3.375 -1.375 C 3.375 -1.1875 3.375 -1 3.046875 -0.84375 C 2.71875 -0.6875 2.296875 -0.6875 2.21875 -0.6875 C 1.671875 -0.6875 1.296875 -0.984375 1.296875 -1.328125 C 1.296875 -1.765625 2.078125 -2.0625 3.375 -2.109375 Z M 3.375 -1.375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 4.609375 -1.296875 C 4.609375 -2.359375 3.296875 -2.578125 2.96875 -2.625 L 1.96875 -2.8125 C 1.703125 -2.875 1.4375 -2.984375 1.4375 -3.203125 C 1.4375 -3.4375 1.75 -3.671875 2.59375 -3.671875 C 3.3125 -3.671875 3.453125 -3.4375 3.484375 -3.203125 C 3.5 -3.015625 3.53125 -2.8125 3.890625 -2.8125 C 4.3125 -2.8125 4.3125 -3.046875 4.3125 -3.28125 L 4.3125 -3.953125 C 4.3125 -4.140625 4.296875 -4.421875 3.953125 -4.421875 C 3.734375 -4.421875 3.65625 -4.34375 3.609375 -4.25 C 3.1875 -4.421875 2.796875 -4.421875 2.609375 -4.421875 C 0.90625 -4.421875 0.6875 -3.5625 0.6875 -3.203125 C 0.6875 -2.265625 1.734375 -2.078125 2.671875 -1.9375 C 3.109375 -1.859375 3.859375 -1.75 3.859375 -1.296875 C 3.859375 -0.953125 3.515625 -0.6875 2.6875 -0.6875 C 2.265625 -0.6875 1.75 -0.78125 1.53125 -1.5 C 1.46875 -1.71875 1.421875 -1.828125 1.109375 -1.828125 C 0.703125 -1.828125 0.6875 -1.59375 0.6875 -1.359375 L 0.6875 -0.421875 C 0.6875 -0.234375 0.703125 0.0625 1.0625 0.0625 C 1.15625 0.0625 1.328125 0.0625 1.453125 -0.265625 C 1.921875 0.046875 2.40625 0.0625 2.6875 0.0625 C 4.28125 0.0625 4.609375 -0.8125 4.609375 -1.296875 Z M 4.609375 -1.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 4.984375 -4.90625 L 4.984375 -5.609375 C 4.984375 -5.96875 4.921875 -6.09375 4.515625 -6.09375 L 0.71875 -6.09375 C 0.34375 -6.09375 0.234375 -6 0.234375 -5.609375 L 0.234375 -4.90625 C 0.234375 -4.6875 0.25 -4.421875 0.640625 -4.421875 C 1.0625 -4.421875 1.0625 -4.671875 1.0625 -4.90625 L 1.0625 -5.34375 L 2.203125 -5.34375 L 2.203125 -0.75 L 1.78125 -0.75 C 1.59375 -0.75 1.3125 -0.734375 1.3125 -0.375 C 1.3125 -0.015625 1.578125 0 1.78125 0 L 3.453125 0 C 3.640625 0 3.921875 -0.015625 3.921875 -0.375 C 3.921875 -0.734375 3.65625 -0.75 3.453125 -0.75 L 3.03125 -0.75 L 3.03125 -5.34375 L 4.15625 -5.34375 L 4.15625 -4.90625 C 4.15625 -4.6875 4.171875 -4.421875 4.5625 -4.421875 C 4.96875 -4.421875 4.984375 -4.671875 4.984375 -4.90625 Z M 4.984375 -4.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 4.65625 -1.140625 C 4.65625 -1.46875 4.3125 -1.484375 4.234375 -1.484375 C 4.015625 -1.484375 3.921875 -1.453125 3.84375 -1.21875 C 3.640625 -0.765625 3.15625 -0.6875 2.90625 -0.6875 C 2.234375 -0.6875 1.5625 -1.109375 1.390625 -1.859375 L 4.1875 -1.859375 C 4.4375 -1.859375 4.65625 -1.859375 4.65625 -2.296875 C 4.65625 -3.4375 4 -4.421875 2.6875 -4.421875 C 1.5 -4.421875 0.515625 -3.421875 0.515625 -2.1875 C 0.515625 -0.953125 1.53125 0.0625 2.828125 0.0625 C 4.1875 0.0625 4.65625 -0.875 4.65625 -1.140625 Z M 3.796875 -2.59375 L 1.390625 -2.59375 C 1.5625 -3.21875 2.078125 -3.671875 2.6875 -3.671875 C 3.15625 -3.671875 3.6875 -3.453125 3.796875 -2.59375 Z M 3.796875 -2.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 4.5 -1.3125 C 4.5 -1.515625 4.5 -1.75 4.078125 -1.75 C 3.6875 -1.75 3.671875 -1.515625 3.671875 -1.3125 C 3.671875 -0.78125 3.171875 -0.6875 2.953125 -0.6875 C 2.296875 -0.6875 2.296875 -1.140625 2.296875 -1.359375 L 2.296875 -3.59375 L 3.8125 -3.59375 C 3.984375 -3.59375 4.28125 -3.609375 4.28125 -3.96875 C 4.28125 -4.34375 4 -4.34375 3.8125 -4.34375 L 2.296875 -4.34375 L 2.296875 -5.0625 C 2.296875 -5.28125 2.28125 -5.53125 1.890625 -5.53125 C 1.46875 -5.53125 1.46875 -5.296875 1.46875 -5.0625 L 1.46875 -4.34375 L 0.703125 -4.34375 C 0.515625 -4.34375 0.234375 -4.328125 0.234375 -3.96875 C 0.234375 -3.609375 0.515625 -3.59375 0.6875 -3.59375 L 1.46875 -3.59375 L 1.46875 -1.3125 C 1.46875 -0.3125 2.15625 0.0625 2.921875 0.0625 C 3.671875 0.0625 4.5 -0.390625 4.5 -1.3125 Z M 4.5 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 5 -3.96875 C 5 -4.34375 4.71875 -4.34375 4.53125 -4.34375 L 3.40625 -4.34375 C 3.21875 -4.34375 2.9375 -4.328125 2.9375 -3.984375 C 2.9375 -3.609375 3.203125 -3.59375 3.40625 -3.59375 L 3.5625 -3.59375 L 2.609375 -0.78125 L 1.671875 -3.59375 L 1.828125 -3.59375 C 2 -3.59375 2.296875 -3.609375 2.296875 -3.96875 C 2.296875 -4.34375 2.015625 -4.34375 1.828125 -4.34375 L 0.6875 -4.34375 C 0.5 -4.34375 0.21875 -4.34375 0.21875 -3.96875 C 0.21875 -3.609375 0.515625 -3.59375 0.6875 -3.59375 L 0.921875 -3.59375 L 2.03125 -0.34375 C 2.15625 0.046875 2.375 0.046875 2.609375 0.046875 C 2.828125 0.046875 3.078125 0.03125 3.203125 -0.34375 L 4.296875 -3.59375 L 4.53125 -3.59375 C 4.71875 -3.59375 5 -3.609375 5 -3.96875 Z M 5 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 4.6875 -2.171875 C 4.6875 -3.4375 3.734375 -4.421875 2.609375 -4.421875 C 1.484375 -4.421875 0.53125 -3.4375 0.53125 -2.171875 C 0.53125 -0.890625 1.5 0.0625 2.609375 0.0625 C 3.71875 0.0625 4.6875 -0.90625 4.6875 -2.171875 Z M 3.859375 -2.25 C 3.859375 -1.390625 3.296875 -0.6875 2.609375 -0.6875 C 1.9375 -0.6875 1.359375 -1.390625 1.359375 -2.25 C 1.359375 -3.078125 1.96875 -3.671875 2.609375 -3.671875 C 3.265625 -3.671875 3.859375 -3.078125 3.859375 -2.25 Z M 3.859375 -2.25 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 5.125 -0.375 C 5.125 -0.734375 4.828125 -0.75 4.65625 -0.75 L 4.296875 -0.75 L 4.296875 -5.609375 C 4.296875 -5.96875 4.234375 -6.09375 3.828125 -6.09375 L 3.125 -6.09375 C 2.9375 -6.09375 2.640625 -6.078125 2.640625 -5.71875 C 2.640625 -5.359375 2.9375 -5.34375 3.109375 -5.34375 L 3.46875 -5.34375 L 3.46875 -4.046875 C 3.15625 -4.28125 2.796875 -4.390625 2.40625 -4.390625 C 1.3125 -4.390625 0.34375 -3.453125 0.34375 -2.15625 C 0.34375 -0.921875 1.25 0.0625 2.328125 0.0625 C 2.8125 0.0625 3.1875 -0.140625 3.46875 -0.390625 C 3.484375 -0.109375 3.546875 0 3.9375 0 L 4.640625 0 C 4.828125 0 5.125 -0.015625 5.125 -0.375 Z M 3.453125 -1.96875 C 3.453125 -1.453125 3.046875 -0.6875 2.359375 -0.6875 C 1.6875 -0.6875 1.15625 -1.34375 1.15625 -2.15625 C 1.15625 -3.046875 1.796875 -3.65625 2.4375 -3.65625 C 3.015625 -3.65625 3.453125 -3.15625 3.453125 -2.65625 Z M 3.453125 -1.96875 "/>
</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 4.65625 0.515625 C 4.65625 0.234375 4.40625 0.21875 4.3125 0.21875 C 2.953125 0.1875 2.953125 -0.171875 2.953125 -0.484375 L 2.953125 -2.078125 C 2.953125 -2.328125 2.9375 -2.734375 2.375 -3.046875 C 2.796875 -3.296875 2.953125 -3.625 2.953125 -3.875 L 2.953125 -5.1875 C 2.953125 -5.4375 2.953125 -5.828125 2.984375 -5.90625 C 3.171875 -6.296875 4.046875 -6.3125 4.390625 -6.3125 C 4.453125 -6.3125 4.65625 -6.375 4.65625 -6.609375 C 4.65625 -6.921875 4.421875 -6.921875 4.234375 -6.921875 C 3.53125 -6.921875 2.453125 -6.78125 2.28125 -5.90625 C 2.265625 -5.859375 2.265625 -5.359375 2.265625 -5.078125 L 2.265625 -4.171875 C 2.265625 -3.8125 2.265625 -3.671875 1.90625 -3.515625 C 1.5625 -3.359375 1.0625 -3.34375 0.828125 -3.34375 C 0.765625 -3.34375 0.5625 -3.296875 0.5625 -3.046875 C 0.5625 -2.75 0.8125 -2.734375 0.90625 -2.734375 C 1.171875 -2.734375 2.25 -2.703125 2.265625 -2.15625 L 2.265625 -0.515625 C 2.265625 -0.203125 2.265625 0.234375 2.796875 0.53125 C 3.203125 0.75 3.765625 0.828125 4.234375 0.828125 C 4.421875 0.828125 4.65625 0.828125 4.65625 0.515625 Z M 4.65625 0.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 5.140625 -0.296875 C 5.140625 -0.609375 4.9375 -0.609375 4.578125 -0.609375 L 4.578125 -3.015625 C 4.578125 -3.21875 4.578125 -4.359375 3.6875 -4.359375 C 3.390625 -4.359375 2.984375 -4.234375 2.703125 -3.84375 C 2.546875 -4.171875 2.265625 -4.359375 1.9375 -4.359375 C 1.625 -4.359375 1.328125 -4.21875 1.09375 -4 C 1.0625 -4.296875 0.875 -4.296875 0.6875 -4.296875 L 0.375 -4.296875 C 0.21875 -4.296875 -0.046875 -4.296875 -0.046875 -4 C -0.046875 -3.6875 0.171875 -3.6875 0.53125 -3.6875 L 0.53125 -0.609375 C 0.171875 -0.609375 -0.046875 -0.609375 -0.046875 -0.296875 C -0.046875 0 0.234375 0 0.375 0 L 1.25 0 C 1.390625 0 1.65625 0 1.65625 -0.296875 C 1.65625 -0.609375 1.453125 -0.609375 1.09375 -0.609375 L 1.09375 -2.390625 C 1.09375 -3.28125 1.5 -3.75 1.90625 -3.75 C 2.140625 -3.75 2.265625 -3.578125 2.265625 -2.9375 L 2.265625 -0.609375 C 2.078125 -0.609375 1.828125 -0.609375 1.828125 -0.296875 C 1.828125 0 2.109375 0 2.25 0 L 2.984375 0 C 3.140625 0 3.40625 0 3.40625 -0.296875 C 3.40625 -0.609375 3.1875 -0.609375 2.828125 -0.609375 L 2.828125 -2.390625 C 2.828125 -3.28125 3.234375 -3.75 3.65625 -3.75 C 3.875 -3.75 4.015625 -3.578125 4.015625 -2.9375 L 4.015625 -0.609375 C 3.828125 -0.609375 3.578125 -0.609375 3.578125 -0.296875 C 3.578125 0 3.84375 0 3.984375 0 L 4.734375 0 C 4.890625 0 5.140625 0 5.140625 -0.296875 Z M 5.140625 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 5.171875 -0.3125 C 5.171875 -0.609375 4.921875 -0.609375 4.78125 -0.609375 C 4.359375 -0.609375 4.25 -0.65625 4.171875 -0.6875 L 4.171875 -2.84375 C 4.171875 -3.546875 3.640625 -4.390625 2.203125 -4.390625 C 1.78125 -4.390625 0.75 -4.390625 0.75 -3.65625 C 0.75 -3.359375 0.96875 -3.203125 1.203125 -3.203125 C 1.359375 -3.203125 1.640625 -3.296875 1.640625 -3.65625 C 1.640625 -3.734375 1.65625 -3.75 1.859375 -3.765625 C 2 -3.78125 2.125 -3.78125 2.21875 -3.78125 C 2.96875 -3.78125 3.484375 -3.46875 3.484375 -2.765625 C 1.71875 -2.734375 0.5 -2.234375 0.5 -1.28125 C 0.5 -0.59375 1.125 0.0625 2.140625 0.0625 C 2.515625 0.0625 3.125 -0.015625 3.59375 -0.3125 C 3.8125 -0.015625 4.296875 0 4.671875 0 C 4.953125 0 5.171875 0 5.171875 -0.3125 Z M 3.484375 -1.328125 C 3.484375 -1.109375 3.484375 -0.890625 3.09375 -0.71875 C 2.734375 -0.546875 2.296875 -0.546875 2.21875 -0.546875 C 1.59375 -0.546875 1.1875 -0.890625 1.1875 -1.28125 C 1.1875 -1.765625 2.046875 -2.140625 3.484375 -2.171875 Z M 3.484375 -1.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 4.53125 -0.296875 C 4.53125 -0.609375 4.28125 -0.609375 4.125 -0.609375 L 3.078125 -0.609375 L 3.078125 -3.890625 C 3.078125 -4.203125 3.015625 -4.296875 2.6875 -4.296875 L 1.265625 -4.296875 C 1.109375 -4.296875 0.859375 -4.296875 0.859375 -4 C 0.859375 -3.6875 1.109375 -3.6875 1.265625 -3.6875 L 2.390625 -3.6875 L 2.390625 -0.609375 L 1.1875 -0.609375 C 1.03125 -0.609375 0.78125 -0.609375 0.78125 -0.296875 C 0.78125 0 1.03125 0 1.1875 0 L 4.125 0 C 4.28125 0 4.53125 0 4.53125 -0.296875 Z M 3.125 -5.53125 C 3.125 -5.8125 2.90625 -6.03125 2.625 -6.03125 C 2.34375 -6.03125 2.125 -5.8125 2.125 -5.53125 C 2.125 -5.25 2.34375 -5.03125 2.625 -5.03125 C 2.90625 -5.03125 3.125 -5.25 3.125 -5.53125 Z M 3.125 -5.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 5.109375 -0.296875 C 5.109375 -0.609375 4.859375 -0.609375 4.6875 -0.609375 L 4.25 -0.609375 L 4.25 -2.921875 C 4.25 -3.921875 3.75 -4.359375 2.953125 -4.359375 C 2.296875 -4.359375 1.84375 -4.015625 1.65625 -3.828125 C 1.65625 -4.140625 1.65625 -4.296875 1.25 -4.296875 L 0.53125 -4.296875 C 0.375 -4.296875 0.125 -4.296875 0.125 -3.984375 C 0.125 -3.6875 0.375 -3.6875 0.515625 -3.6875 L 0.96875 -3.6875 L 0.96875 -0.609375 L 0.53125 -0.609375 C 0.375 -0.609375 0.125 -0.609375 0.125 -0.296875 C 0.125 0 0.375 0 0.515625 0 L 2.109375 0 C 2.25 0 2.5 0 2.5 -0.296875 C 2.5 -0.609375 2.25 -0.609375 2.09375 -0.609375 L 1.65625 -0.609375 L 1.65625 -2.375 C 1.65625 -3.375 2.390625 -3.75 2.90625 -3.75 C 3.421875 -3.75 3.5625 -3.46875 3.5625 -2.875 L 3.5625 -0.609375 L 3.1875 -0.609375 C 3.015625 -0.609375 2.765625 -0.609375 2.765625 -0.296875 C 2.765625 0 3.046875 0 3.1875 0 L 4.703125 0 C 4.84375 0 5.109375 0 5.109375 -0.296875 Z M 5.109375 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 4.359375 0.53125 C 4.359375 0.390625 4.28125 0.34375 4.109375 0.234375 C 2.875 -0.609375 2.40625 -1.9375 2.40625 -3.046875 C 2.40625 -4.046875 2.796875 -5.4375 4.125 -6.34375 C 4.28125 -6.453125 4.359375 -6.484375 4.359375 -6.640625 C 4.359375 -6.71875 4.3125 -6.921875 4.046875 -6.921875 C 3.765625 -6.921875 1.71875 -5.609375 1.71875 -3.046875 C 1.71875 -1.859375 2.1875 -0.96875 2.53125 -0.46875 C 3.0625 0.265625 3.8125 0.8125 4.046875 0.8125 C 4.3125 0.8125 4.359375 0.625 4.359375 0.53125 Z M 4.359375 0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 4.703125 -1.65625 C 4.703125 -2.296875 4.34375 -2.71875 4.234375 -2.84375 C 3.8125 -3.234375 3.546875 -3.3125 2.765625 -3.484375 L 1.96875 -3.671875 C 1.546875 -3.78125 1.171875 -4.140625 1.171875 -4.609375 C 1.171875 -5.109375 1.65625 -5.59375 2.359375 -5.59375 C 3.53125 -5.59375 3.6875 -4.65625 3.75 -4.34375 C 3.78125 -4.125 3.890625 -4.0625 4.09375 -4.0625 C 4.4375 -4.0625 4.4375 -4.28125 4.4375 -4.46875 L 4.4375 -5.796875 C 4.4375 -5.953125 4.4375 -6.203125 4.140625 -6.203125 C 3.890625 -6.203125 3.84375 -6.03125 3.765625 -5.734375 C 3.359375 -6.078125 2.828125 -6.203125 2.375 -6.203125 C 1.265625 -6.203125 0.515625 -5.40625 0.515625 -4.5625 C 0.515625 -3.890625 0.984375 -3.234375 1.796875 -3 L 2.953125 -2.734375 C 3.234375 -2.671875 4.0625 -2.46875 4.0625 -1.609375 C 4.0625 -1.09375 3.625 -0.5 2.84375 -0.5 C 2.5625 -0.5 2.078125 -0.53125 1.671875 -0.8125 C 1.25 -1.078125 1.21875 -1.5 1.203125 -1.671875 C 1.203125 -1.84375 1.1875 -2.03125 0.875 -2.03125 C 0.515625 -2.03125 0.515625 -1.8125 0.515625 -1.609375 L 0.515625 -0.296875 C 0.515625 -0.140625 0.515625 0.109375 0.8125 0.109375 C 1.03125 0.109375 1.09375 -0.03125 1.1875 -0.34375 C 1.578125 -0.046875 2.1875 0.109375 2.828125 0.109375 C 3.984375 0.109375 4.703125 -0.765625 4.703125 -1.65625 Z M 4.703125 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 4.46875 -1.25 C 4.46875 -1.4375 4.46875 -1.640625 4.125 -1.640625 C 3.796875 -1.640625 3.78125 -1.4375 3.78125 -1.265625 C 3.78125 -0.640625 3.203125 -0.546875 2.984375 -0.546875 C 2.21875 -0.546875 2.21875 -1.0625 2.21875 -1.3125 L 2.21875 -3.6875 L 3.84375 -3.6875 C 4 -3.6875 4.25 -3.6875 4.25 -3.984375 C 4.25 -4.296875 4 -4.296875 3.84375 -4.296875 L 2.21875 -4.296875 L 2.21875 -5.109375 C 2.21875 -5.296875 2.21875 -5.515625 1.875 -5.515625 C 1.53125 -5.515625 1.53125 -5.3125 1.53125 -5.109375 L 1.53125 -4.296875 L 0.65625 -4.296875 C 0.5 -4.296875 0.25 -4.296875 0.25 -3.984375 C 0.25 -3.6875 0.5 -3.6875 0.640625 -3.6875 L 1.53125 -3.6875 L 1.53125 -1.25 C 1.53125 -0.296875 2.203125 0.0625 2.9375 0.0625 C 3.671875 0.0625 4.46875 -0.375 4.46875 -1.25 Z M 4.46875 -1.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-9">
<path style="stroke:none;" d="M 4.859375 -3.734375 C 4.859375 -3.9375 4.734375 -4.359375 3.90625 -4.359375 C 3.40625 -4.359375 2.765625 -4.171875 2.21875 -3.546875 L 2.21875 -3.890625 C 2.21875 -4.203125 2.15625 -4.296875 1.8125 -4.296875 L 0.71875 -4.296875 C 0.5625 -4.296875 0.3125 -4.296875 0.3125 -4 C 0.3125 -3.6875 0.5625 -3.6875 0.71875 -3.6875 L 1.53125 -3.6875 L 1.53125 -0.609375 L 0.71875 -0.609375 C 0.5625 -0.609375 0.3125 -0.609375 0.3125 -0.3125 C 0.3125 0 0.5625 0 0.71875 0 L 3.3125 0 C 3.46875 0 3.734375 0 3.734375 -0.296875 C 3.734375 -0.609375 3.46875 -0.609375 3.3125 -0.609375 L 2.21875 -0.609375 L 2.21875 -1.859375 C 2.21875 -2.796875 2.796875 -3.75 4 -3.75 C 4.015625 -3.515625 4.1875 -3.3125 4.4375 -3.3125 C 4.65625 -3.3125 4.859375 -3.46875 4.859375 -3.734375 Z M 4.859375 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-10">
<path style="stroke:none;" d="M 5.078125 -3.875 C 5.078125 -4.09375 4.890625 -4.40625 4.34375 -4.40625 C 4.234375 -4.40625 3.75 -4.390625 3.296875 -4.0625 C 3.125 -4.171875 2.78125 -4.359375 2.328125 -4.359375 C 1.390625 -4.359375 0.671875 -3.609375 0.671875 -2.765625 C 0.671875 -2.328125 0.84375 -2 1 -1.8125 C 0.890625 -1.65625 0.796875 -1.4375 0.796875 -1.140625 C 0.796875 -0.78125 0.9375 -0.53125 1.03125 -0.421875 C 0.296875 0.03125 0.296875 0.703125 0.296875 0.8125 C 0.296875 1.671875 1.328125 2.28125 2.609375 2.28125 C 3.890625 2.28125 4.9375 1.671875 4.9375 0.8125 C 4.9375 0.453125 4.75 -0.046875 4.25 -0.3125 C 4.109375 -0.390625 3.703125 -0.609375 2.796875 -0.609375 L 2.109375 -0.609375 C 2.03125 -0.609375 1.890625 -0.609375 1.8125 -0.625 C 1.671875 -0.625 1.609375 -0.625 1.484375 -0.765625 C 1.375 -0.90625 1.359375 -1.125 1.359375 -1.125 C 1.359375 -1.171875 1.390625 -1.3125 1.421875 -1.40625 C 1.453125 -1.390625 1.828125 -1.15625 2.328125 -1.15625 C 3.234375 -1.15625 3.96875 -1.875 3.96875 -2.765625 C 3.96875 -3.0625 3.875 -3.34375 3.703125 -3.625 C 3.921875 -3.75 4.15625 -3.78125 4.28125 -3.796875 C 4.34375 -3.53125 4.578125 -3.453125 4.671875 -3.453125 C 4.84375 -3.453125 5.078125 -3.578125 5.078125 -3.875 Z M 3.28125 -2.765625 C 3.28125 -2.1875 2.84375 -1.75 2.328125 -1.75 C 1.78125 -1.75 1.359375 -2.21875 1.359375 -2.75 C 1.359375 -3.3125 1.796875 -3.765625 2.328125 -3.765625 C 2.859375 -3.765625 3.28125 -3.296875 3.28125 -2.765625 Z M 4.359375 0.8125 C 4.359375 1.25 3.609375 1.6875 2.609375 1.6875 C 1.609375 1.6875 0.875 1.25 0.875 0.8125 C 0.875 0.640625 0.953125 0.3125 1.28125 0.125 C 1.53125 -0.046875 1.609375 -0.046875 2.34375 -0.046875 C 3.234375 -0.046875 4.359375 -0.046875 4.359375 0.8125 Z M 4.359375 0.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-11">
<path style="stroke:none;" d="M 4.8125 0.53125 C 4.8125 0.21875 4.578125 0.21875 4.421875 0.21875 L 2.90625 0.21875 L 2.90625 -6.3125 L 4.421875 -6.3125 C 4.5625 -6.3125 4.8125 -6.3125 4.8125 -6.609375 C 4.8125 -6.921875 4.578125 -6.921875 4.421875 -6.921875 L 2.609375 -6.921875 C 2.28125 -6.921875 2.21875 -6.828125 2.21875 -6.515625 L 2.21875 0.421875 C 2.21875 0.734375 2.265625 0.828125 2.609375 0.828125 L 4.421875 0.828125 C 4.5625 0.828125 4.8125 0.828125 4.8125 0.53125 Z M 4.8125 0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-12">
<path style="stroke:none;" d="M 3.015625 0.421875 L 3.015625 -6.515625 C 3.015625 -6.8125 2.953125 -6.921875 2.609375 -6.921875 L 0.8125 -6.921875 C 0.65625 -6.921875 0.40625 -6.921875 0.40625 -6.625 C 0.40625 -6.3125 0.640625 -6.3125 0.8125 -6.3125 L 2.328125 -6.3125 L 2.328125 0.21875 L 0.8125 0.21875 C 0.65625 0.21875 0.40625 0.21875 0.40625 0.515625 C 0.40625 0.828125 0.640625 0.828125 0.8125 0.828125 L 2.609375 0.828125 C 2.9375 0.828125 3.015625 0.734375 3.015625 0.421875 Z M 3.015625 0.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-13">
<path style="stroke:none;" d="M 4.578125 -1.25 C 4.578125 -2.28125 3.296875 -2.5 2.96875 -2.546875 L 2.296875 -2.65625 C 2 -2.703125 1.328125 -2.828125 1.328125 -3.203125 C 1.328125 -3.46875 1.640625 -3.78125 2.59375 -3.78125 C 3.421875 -3.78125 3.5625 -3.484375 3.59375 -3.21875 C 3.59375 -3.046875 3.625 -2.875 3.921875 -2.875 C 4.28125 -2.875 4.28125 -3.09375 4.28125 -3.296875 L 4.28125 -3.984375 C 4.28125 -4.140625 4.28125 -4.390625 3.984375 -4.390625 C 3.734375 -4.390625 3.703125 -4.25 3.671875 -4.171875 C 3.234375 -4.390625 2.796875 -4.390625 2.609375 -4.390625 C 0.953125 -4.390625 0.71875 -3.5625 0.71875 -3.203125 C 0.71875 -2.296875 1.765625 -2.125 2.6875 -1.984375 C 3.171875 -1.90625 3.96875 -1.78125 3.96875 -1.25 C 3.96875 -0.875 3.59375 -0.546875 2.6875 -0.546875 C 2.21875 -0.546875 1.671875 -0.65625 1.421875 -1.4375 C 1.359375 -1.609375 1.328125 -1.71875 1.0625 -1.71875 C 0.71875 -1.71875 0.71875 -1.515625 0.71875 -1.3125 L 0.71875 -0.34375 C 0.71875 -0.1875 0.71875 0.0625 1.015625 0.0625 C 1.109375 0.0625 1.265625 0.046875 1.390625 -0.3125 C 1.875 0.046875 2.40625 0.0625 2.6875 0.0625 C 4.25 0.0625 4.578125 -0.765625 4.578125 -1.25 Z M 4.578125 -1.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-14">
<path style="stroke:none;" d="M 3.515625 -3.046875 C 3.515625 -4.234375 3.046875 -5.140625 2.703125 -5.625 C 2.171875 -6.359375 1.421875 -6.921875 1.1875 -6.921875 C 0.9375 -6.921875 0.875 -6.71875 0.875 -6.640625 C 0.875 -6.484375 0.984375 -6.421875 1.03125 -6.390625 C 2.671875 -5.296875 2.828125 -3.703125 2.828125 -3.046875 C 2.828125 -2.046875 2.453125 -0.671875 1.109375 0.234375 C 0.953125 0.34375 0.875 0.390625 0.875 0.53125 C 0.875 0.625 0.9375 0.8125 1.1875 0.8125 C 1.46875 0.8125 3.515625 -0.5 3.515625 -3.046875 Z M 3.515625 -3.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-15">
<path style="stroke:none;" d="M 4.984375 -3.984375 C 4.984375 -4.296875 4.75 -4.296875 4.578125 -4.296875 L 3.421875 -4.296875 C 3.265625 -4.296875 3.015625 -4.296875 3.015625 -4 C 3.015625 -3.6875 3.265625 -3.6875 3.421875 -3.6875 L 3.703125 -3.6875 L 2.984375 -1.5625 C 2.84375 -1.203125 2.796875 -1.015625 2.71875 -0.703125 C 2.65625 -0.890625 2.578125 -1.109375 2.5 -1.296875 L 1.578125 -3.6875 L 1.828125 -3.6875 C 1.96875 -3.6875 2.21875 -3.6875 2.21875 -3.984375 C 2.21875 -4.296875 1.984375 -4.296875 1.828125 -4.296875 L 0.65625 -4.296875 C 0.5 -4.296875 0.265625 -4.296875 0.265625 -3.984375 C 0.265625 -3.6875 0.515625 -3.6875 0.65625 -3.6875 L 0.96875 -3.6875 L 2.375 -0.125 C 2.421875 -0.03125 2.421875 0 2.421875 0 C 2.421875 0 2.171875 0.84375 2.046875 1.09375 C 1.75 1.640625 1.390625 1.65625 1.25 1.671875 C 1.25 1.671875 1.296875 1.578125 1.296875 1.453125 C 1.296875 1.203125 1.109375 1.015625 0.875 1.015625 C 0.59375 1.015625 0.421875 1.203125 0.421875 1.453125 C 0.421875 1.875 0.765625 2.265625 1.25 2.265625 C 2.25 2.265625 2.703125 0.953125 2.734375 0.84375 L 4.28125 -3.6875 L 4.578125 -3.6875 C 4.734375 -3.6875 4.984375 -3.6875 4.984375 -3.984375 Z M 4.984375 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-16">
<path style="stroke:none;" d="M 4.625 -1.09375 C 4.625 -1.359375 4.34375 -1.359375 4.28125 -1.359375 C 4.09375 -1.359375 4.015625 -1.328125 3.953125 -1.140625 C 3.734375 -0.640625 3.1875 -0.546875 2.90625 -0.546875 C 2.15625 -0.546875 1.421875 -1.046875 1.25 -1.90625 L 4.234375 -1.90625 C 4.4375 -1.90625 4.625 -1.90625 4.625 -2.265625 C 4.625 -3.40625 3.984375 -4.390625 2.6875 -4.390625 C 1.5 -4.390625 0.546875 -3.390625 0.546875 -2.15625 C 0.546875 -0.953125 1.5625 0.0625 2.84375 0.0625 C 4.15625 0.0625 4.625 -0.84375 4.625 -1.09375 Z M 3.921875 -2.5 L 1.265625 -2.5 C 1.40625 -3.234375 2 -3.78125 2.6875 -3.78125 C 3.203125 -3.78125 3.828125 -3.53125 3.921875 -2.5 Z M 3.921875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph2-17">
<path style="stroke:none;" d="M 3.234375 -0.625 C 3.234375 -0.984375 2.9375 -1.25 2.625 -1.25 C 2.25 -1.25 2 -0.9375 2 -0.625 C 2 -0.265625 2.296875 0 2.609375 0 C 2.984375 0 3.234375 -0.3125 3.234375 -0.625 Z M 3.234375 -0.625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-18">
<path style="stroke:none;" d="M 4.65625 -2.15625 C 4.65625 -3.40625 3.734375 -4.390625 2.609375 -4.390625 C 1.5 -4.390625 0.5625 -3.40625 0.5625 -2.15625 C 0.5625 -0.890625 1.515625 0.0625 2.609375 0.0625 C 3.703125 0.0625 4.65625 -0.890625 4.65625 -2.15625 Z M 3.96875 -2.21875 C 3.96875 -1.296875 3.34375 -0.546875 2.609375 -0.546875 C 1.875 -0.546875 1.25 -1.296875 1.25 -2.21875 C 1.25 -3.125 1.90625 -3.78125 2.609375 -3.78125 C 3.328125 -3.78125 3.96875 -3.125 3.96875 -2.21875 Z M 3.96875 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-19">
<path style="stroke:none;" d="M 5.109375 -0.3125 C 5.109375 -0.609375 4.84375 -0.609375 4.703125 -0.609375 L 4.25 -0.609375 L 4.25 -3.890625 C 4.25 -4.203125 4.203125 -4.296875 3.859375 -4.296875 L 3.125 -4.296875 C 2.96875 -4.296875 2.71875 -4.296875 2.71875 -3.984375 C 2.71875 -3.6875 2.984375 -3.6875 3.125 -3.6875 L 3.5625 -3.6875 L 3.5625 -1.5625 C 3.5625 -0.671875 2.765625 -0.546875 2.4375 -0.546875 C 1.65625 -0.546875 1.65625 -0.875 1.65625 -1.203125 L 1.65625 -3.890625 C 1.65625 -4.203125 1.59375 -4.296875 1.25 -4.296875 L 0.53125 -4.296875 C 0.375 -4.296875 0.125 -4.296875 0.125 -3.984375 C 0.125 -3.6875 0.375 -3.6875 0.515625 -3.6875 L 0.96875 -3.6875 L 0.96875 -1.140625 C 0.96875 -0.171875 1.65625 0.0625 2.375 0.0625 C 2.796875 0.0625 3.203125 -0.046875 3.5625 -0.3125 C 3.578125 0 3.78125 0 3.96875 0 L 4.6875 0 C 4.859375 0 5.109375 0 5.109375 -0.3125 Z M 5.109375 -0.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-20">
<path style="stroke:none;" d="M 4.859375 -2.15625 C 4.859375 -3.375 3.984375 -4.359375 2.921875 -4.359375 C 2.4375 -4.359375 2 -4.171875 1.65625 -3.875 C 1.65625 -4.15625 1.640625 -4.296875 1.25 -4.296875 L 0.53125 -4.296875 C 0.375 -4.296875 0.125 -4.296875 0.125 -3.984375 C 0.125 -3.6875 0.375 -3.6875 0.515625 -3.6875 L 0.96875 -3.6875 L 0.96875 1.609375 L 0.53125 1.609375 C 0.375 1.609375 0.125 1.609375 0.125 1.90625 C 0.125 2.21875 0.375 2.21875 0.515625 2.21875 L 2.109375 2.21875 C 2.25 2.21875 2.5 2.21875 2.5 1.90625 C 2.5 1.609375 2.25 1.609375 2.09375 1.609375 L 1.65625 1.609375 L 1.65625 -0.453125 C 2.0625 -0.03125 2.5 0.0625 2.8125 0.0625 C 3.890625 0.0625 4.859375 -0.890625 4.859375 -2.15625 Z M 4.171875 -2.15625 C 4.171875 -1.203125 3.484375 -0.546875 2.78125 -0.546875 C 2 -0.546875 1.65625 -1.421875 1.65625 -1.90625 L 1.65625 -2.625 C 1.65625 -3.21875 2.234375 -3.75 2.859375 -3.75 C 3.59375 -3.75 4.171875 -3.015625 4.171875 -2.15625 Z M 4.171875 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-21">
<path style="stroke:none;" d="M 4.65625 -0.296875 C 4.65625 -0.609375 4.421875 -0.609375 4.25 -0.609375 L 2.953125 -0.609375 L 2.953125 -5.6875 C 2.953125 -5.984375 2.90625 -6.09375 2.5625 -6.09375 L 0.984375 -6.09375 C 0.828125 -6.09375 0.578125 -6.09375 0.578125 -5.78125 C 0.578125 -5.484375 0.84375 -5.484375 0.984375 -5.484375 L 2.265625 -5.484375 L 2.265625 -0.609375 L 0.984375 -0.609375 C 0.828125 -0.609375 0.578125 -0.609375 0.578125 -0.296875 C 0.578125 0 0.84375 0 0.984375 0 L 4.25 0 C 4.40625 0 4.65625 0 4.65625 -0.296875 Z M 4.65625 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-22">
<path style="stroke:none;" d="M 3.9375 -5.65625 C 3.96875 -6.125 3.625 -6.203125 3.5 -6.203125 C 3.3125 -6.203125 3.015625 -6.09375 3.046875 -5.65625 L 3.1875 -3.625 C 3.1875 -3.484375 3.21875 -3.265625 3.5 -3.265625 C 3.75 -3.265625 3.796875 -3.453125 3.8125 -3.625 Z M 2.171875 -5.65625 C 2.203125 -6.125 1.859375 -6.203125 1.734375 -6.203125 C 1.546875 -6.203125 1.25 -6.09375 1.28125 -5.65625 L 1.421875 -3.625 C 1.421875 -3.484375 1.453125 -3.265625 1.734375 -3.265625 C 1.984375 -3.265625 2.03125 -3.453125 2.046875 -3.625 Z M 2.171875 -5.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-23">
<path style="stroke:none;" d="M 5 -0.296875 C 5 -0.609375 4.765625 -0.609375 4.609375 -0.609375 L 4.359375 -0.609375 L 4.359375 -5.484375 L 4.609375 -5.484375 C 4.75 -5.484375 5 -5.484375 5 -5.78125 C 5 -6.09375 4.765625 -6.09375 4.609375 -6.09375 L 3.421875 -6.09375 C 3.265625 -6.09375 3.015625 -6.09375 3.015625 -5.796875 C 3.015625 -5.484375 3.265625 -5.484375 3.421875 -5.484375 L 3.671875 -5.484375 L 3.671875 -3.46875 L 1.5625 -3.46875 L 1.5625 -5.484375 L 1.796875 -5.484375 C 1.953125 -5.484375 2.203125 -5.484375 2.203125 -5.78125 C 2.203125 -6.09375 1.96875 -6.09375 1.796875 -6.09375 L 0.625 -6.09375 C 0.453125 -6.09375 0.21875 -6.09375 0.21875 -5.78125 C 0.21875 -5.484375 0.46875 -5.484375 0.625 -5.484375 L 0.875 -5.484375 L 0.875 -0.609375 L 0.625 -0.609375 C 0.453125 -0.609375 0.21875 -0.609375 0.21875 -0.296875 C 0.21875 0 0.46875 0 0.625 0 L 1.796875 0 C 1.953125 0 2.203125 0 2.203125 -0.296875 C 2.203125 -0.609375 1.96875 -0.609375 1.796875 -0.609375 L 1.5625 -0.609375 L 1.5625 -2.859375 L 3.671875 -2.859375 L 3.671875 -0.609375 L 3.421875 -0.609375 C 3.265625 -0.609375 3.015625 -0.609375 3.015625 -0.3125 C 3.015625 0 3.265625 0 3.421875 0 L 4.609375 0 C 4.75 0 5 0 5 -0.296875 Z M 5 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-24">
<path style="stroke:none;" d="M 3.453125 -0.25 C 3.453125 -0.859375 3.0625 -1.25 2.625 -1.25 C 2.21875 -1.25 2 -0.953125 2 -0.625 C 2 -0.25 2.28125 0 2.609375 0 C 2.671875 0 2.734375 -0.015625 2.8125 -0.03125 C 2.65625 0.59375 2.1875 0.75 2.078125 0.78125 C 1.96875 0.8125 1.796875 0.875 1.796875 1.0625 C 1.796875 1.21875 1.9375 1.390625 2.109375 1.390625 C 2.4375 1.390625 3.453125 0.84375 3.453125 -0.25 Z M 3.453125 -0.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-25">
<path style="stroke:none;" d="M 5.109375 -5.78125 C 5.109375 -6.09375 4.859375 -6.09375 4.703125 -6.09375 L 3.921875 -6.09375 C 3.765625 -6.09375 3.515625 -6.09375 3.515625 -5.78125 C 3.515625 -5.484375 3.765625 -5.484375 3.921875 -5.484375 L 4.171875 -5.484375 L 3.734375 -2.15625 C 3.65625 -1.5625 3.578125 -1.03125 3.5625 -0.75 C 3.5 -1.390625 3.03125 -3.375 3.015625 -3.421875 C 2.9375 -3.65625 2.703125 -3.65625 2.609375 -3.65625 C 2.515625 -3.65625 2.3125 -3.65625 2.21875 -3.4375 C 2.1875 -3.375 1.71875 -1.375 1.671875 -0.75 L 1.65625 -0.75 C 1.65625 -0.8125 1.640625 -1 1.578125 -1.53125 L 1.0625 -5.484375 L 1.3125 -5.484375 C 1.453125 -5.484375 1.703125 -5.484375 1.703125 -5.78125 C 1.703125 -6.09375 1.46875 -6.09375 1.3125 -6.09375 L 0.515625 -6.09375 C 0.375 -6.09375 0.109375 -6.09375 0.109375 -5.78125 C 0.109375 -5.484375 0.390625 -5.484375 0.484375 -5.484375 L 1.203125 -0.265625 C 1.25 0.078125 1.5 0.078125 1.609375 0.078125 C 1.703125 0.078125 1.90625 0.078125 2 -0.125 C 2.03125 -0.1875 2.578125 -2.515625 2.609375 -2.921875 L 2.625 -2.921875 C 2.65625 -2.46875 3.203125 -0.1875 3.203125 -0.171875 C 3.28125 0.078125 3.53125 0.078125 3.609375 0.078125 C 3.734375 0.078125 3.96875 0.078125 4.015625 -0.265625 L 4.734375 -5.484375 C 4.84375 -5.484375 5.109375 -5.484375 5.109375 -5.78125 Z M 5.109375 -5.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-26">
<path style="stroke:none;" d="M 5.109375 -0.3125 C 5.109375 -0.609375 4.84375 -0.609375 4.703125 -0.609375 L 4.25 -0.609375 L 4.25 -5.6875 C 4.25 -5.984375 4.203125 -6.09375 3.859375 -6.09375 L 3.125 -6.09375 C 2.96875 -6.09375 2.71875 -6.09375 2.71875 -5.78125 C 2.71875 -5.484375 2.984375 -5.484375 3.125 -5.484375 L 3.5625 -5.484375 L 3.5625 -3.90625 C 3.234375 -4.203125 2.828125 -4.359375 2.40625 -4.359375 C 1.3125 -4.359375 0.359375 -3.40625 0.359375 -2.140625 C 0.359375 -0.90625 1.25 0.0625 2.3125 0.0625 C 2.875 0.0625 3.296875 -0.203125 3.5625 -0.5 C 3.5625 -0.140625 3.5625 0 3.96875 0 L 4.6875 0 C 4.859375 0 5.109375 0 5.109375 -0.3125 Z M 3.5625 -1.9375 C 3.5625 -1.375 3.125 -0.546875 2.359375 -0.546875 C 1.640625 -0.546875 1.046875 -1.25 1.046875 -2.140625 C 1.046875 -3.09375 1.75 -3.75 2.4375 -3.75 C 3.078125 -3.75 3.5625 -3.1875 3.5625 -2.640625 Z M 3.5625 -1.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-27">
<path style="stroke:none;" d="M 3.109375 -5.625 C 3.109375 -6.15625 2.703125 -6.203125 2.609375 -6.203125 C 2.515625 -6.203125 2.109375 -6.15625 2.109375 -5.625 L 2.1875 -3.296875 L 2.21875 -2.09375 C 2.21875 -1.828125 2.484375 -1.828125 2.609375 -1.828125 C 2.96875 -1.828125 3 -1.90625 3.015625 -2.3125 L 3.0625 -4.03125 C 3.078125 -4.5625 3.109375 -5.109375 3.109375 -5.625 Z M 3.109375 -0.5 C 3.109375 -0.78125 2.890625 -1 2.609375 -1 C 2.328125 -1 2.109375 -0.78125 2.109375 -0.5 C 2.109375 -0.21875 2.328125 0 2.609375 0 C 2.890625 0 3.109375 -0.21875 3.109375 -0.5 Z M 3.109375 -0.5 "/>
</symbol>
<symbol overflow="visible" id="glyph2-28">
<path style="stroke:none;" d="M 3.234375 -3.671875 C 3.234375 -4.03125 2.9375 -4.296875 2.625 -4.296875 C 2.25 -4.296875 2 -3.984375 2 -3.671875 C 2 -3.3125 2.296875 -3.046875 2.609375 -3.046875 C 2.984375 -3.046875 3.234375 -3.359375 3.234375 -3.671875 Z M 3.296875 -0.265625 C 3.296875 -0.921875 2.984375 -1.25 2.609375 -1.25 C 2.25 -1.25 2 -0.96875 2 -0.625 C 2 -0.34375 2.15625 0 2.65625 0 C 2.515625 0.53125 2.140625 0.734375 2 0.8125 C 1.9375 0.84375 1.796875 0.90625 1.796875 1.0625 C 1.796875 1.21875 1.9375 1.390625 2.109375 1.390625 C 2.328125 1.390625 3.296875 0.84375 3.296875 -0.265625 Z M 3.296875 -0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-29">
<path style="stroke:none;" d="M 4.65625 -3.046875 C 4.65625 -3.34375 4.421875 -3.34375 4.3125 -3.34375 C 4.078125 -3.359375 2.984375 -3.375 2.953125 -3.9375 L 2.953125 -5.609375 C 2.953125 -5.875 2.953125 -6.328125 2.4375 -6.625 C 1.96875 -6.875 1.328125 -6.921875 0.984375 -6.921875 C 0.8125 -6.921875 0.5625 -6.921875 0.5625 -6.609375 C 0.5625 -6.34375 0.75 -6.3125 0.890625 -6.3125 C 2.265625 -6.296875 2.265625 -5.9375 2.265625 -5.609375 L 2.265625 -4 C 2.265625 -3.59375 2.421875 -3.28125 2.84375 -3.046875 C 2.296875 -2.734375 2.265625 -2.265625 2.265625 -2.21875 L 2.265625 -0.453125 C 2.265625 -0.15625 2.265625 0.203125 0.828125 0.21875 C 0.765625 0.21875 0.5625 0.28125 0.5625 0.515625 C 0.5625 0.828125 0.8125 0.828125 0.984375 0.828125 C 1.859375 0.828125 2.796875 0.625 2.953125 -0.171875 C 2.953125 -0.234375 2.953125 -0.734375 2.953125 -1.015625 L 2.953125 -1.90625 C 2.953125 -2.265625 2.953125 -2.421875 3.3125 -2.578125 C 3.671875 -2.734375 4.15625 -2.734375 4.390625 -2.734375 C 4.453125 -2.734375 4.65625 -2.796875 4.65625 -3.046875 Z M 4.65625 -3.046875 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="124.802" y="135.761"/>
<use xlink:href="#glyph0-2" x="135.395234" y="135.761"/>
<use xlink:href="#glyph0-3" x="139.878422" y="135.761"/>
<use xlink:href="#glyph0-4" x="148.844797" y="135.761"/>
<use xlink:href="#glyph0-5" x="153.775586" y="135.761"/>
<use xlink:href="#glyph0-6" x="161.621522" y="135.761"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="168.34989" y="135.761"/>
<use xlink:href="#glyph0-8" x="177.316265" y="135.761"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="190.059995" y="135.761"/>
<use xlink:href="#glyph0-5" x="198.395137" y="135.761"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="205.796341" y="135.761"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="213.40987" y="135.761"/>
<use xlink:href="#glyph0-11" x="221.255806" y="135.761"/>
<use xlink:href="#glyph0-12" x="226.635631" y="135.761"/>
<use xlink:href="#glyph0-3" x="238.822728" y="135.761"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="247.344371" y="135.761"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="258.555926" y="135.761"/>
<use xlink:href="#glyph0-3" x="265.919831" y="135.761"/>
<use xlink:href="#glyph0-14" x="274.886206" y="135.761"/>
<use xlink:href="#glyph0-15" x="283.852581" y="135.761"/>
<use xlink:href="#glyph0-3" x="292.818956" y="135.761"/>
<use xlink:href="#glyph0-16" x="301.785331" y="135.761"/>
</g>
<g style="fill:rgb(0%,50%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="124.802" y="157.582"/>
<use xlink:href="#glyph1-2" x="130.032365" y="157.582"/>
<use xlink:href="#glyph1-3" x="135.26273" y="157.582"/>
<use xlink:href="#glyph1-4" x="140.493095" y="157.582"/>
<use xlink:href="#glyph1-5" x="145.72346" y="157.582"/>
<use xlink:href="#glyph1-6" x="150.953825" y="157.582"/>
</g>
<g style="fill:rgb(0%,50%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="161.414555" y="157.582"/>
<use xlink:href="#glyph1-4" x="166.64492" y="157.582"/>
<use xlink:href="#glyph1-7" x="171.875285" y="157.582"/>
<use xlink:href="#glyph1-8" x="177.10565" y="157.582"/>
<use xlink:href="#glyph1-8" x="182.336015" y="157.582"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="192.796745" y="157.582"/>
<use xlink:href="#glyph1-10" x="198.02711" y="157.582"/>
<use xlink:href="#glyph1-8" x="203.257475" y="157.582"/>
<use xlink:href="#glyph1-11" x="208.48784" y="157.582"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="218.949" y="157.582"/>
</g>
<g style="fill:rgb(0%,50%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="135.263" y="169.537"/>
<use xlink:href="#glyph1-2" x="140.493365" y="169.537"/>
<use xlink:href="#glyph1-3" x="145.72373" y="169.537"/>
<use xlink:href="#glyph1-4" x="150.954095" y="169.537"/>
<use xlink:href="#glyph1-5" x="156.18446" y="169.537"/>
<use xlink:href="#glyph1-6" x="161.414825" y="169.537"/>
</g>
<g style="fill:rgb(0%,50%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-8" x="171.875555" y="169.537"/>
<use xlink:href="#glyph1-11" x="177.10592" y="169.537"/>
<use xlink:href="#glyph1-7" x="182.336285" y="169.537"/>
<use xlink:href="#glyph1-11" x="187.56665" y="169.537"/>
<use xlink:href="#glyph1-5" x="192.797015" y="169.537"/>
<use xlink:href="#glyph1-6" x="198.02738" y="169.537"/>
</g>
<g style="fill:rgb(68.998718%,0%,25%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="208.48811" y="169.537"/>
<use xlink:href="#glyph1-13" x="213.718475" y="169.537"/>
<use xlink:href="#glyph1-5" x="218.94884" y="169.537"/>
<use xlink:href="#glyph1-14" x="224.179205" y="169.537"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="234.64" y="169.537"/>
<use xlink:href="#glyph2-3" x="239.870365" y="169.537"/>
<use xlink:href="#glyph2-4" x="245.10073" y="169.537"/>
<use xlink:href="#glyph2-5" x="250.331095" y="169.537"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="255.56146" y="169.537"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="260.791825" y="169.537"/>
<use xlink:href="#glyph2-8" x="266.02219" y="169.537"/>
<use xlink:href="#glyph2-9" x="271.252555" y="169.537"/>
<use xlink:href="#glyph2-4" x="276.48292" y="169.537"/>
<use xlink:href="#glyph2-5" x="281.713285" y="169.537"/>
<use xlink:href="#glyph2-10" x="286.94365" y="169.537"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-11" x="292.174015" y="169.537"/>
<use xlink:href="#glyph2-12" x="297.40438" y="169.537"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="307.86511" y="169.537"/>
<use xlink:href="#glyph2-9" x="313.095475" y="169.537"/>
<use xlink:href="#glyph2-10" x="318.32584" y="169.537"/>
<use xlink:href="#glyph2-13" x="323.556205" y="169.537"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-14" x="328.78657" y="169.537"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="339.2473" y="169.537"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="145.723" y="181.492"/>
<use xlink:href="#glyph2-15" x="150.953365" y="181.492"/>
<use xlink:href="#glyph2-13" x="156.18373" y="181.492"/>
<use xlink:href="#glyph2-8" x="161.414095" y="181.492"/>
<use xlink:href="#glyph2-16" x="166.64446" y="181.492"/>
<use xlink:href="#glyph2-2" x="171.874825" y="181.492"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-17" x="177.10519" y="181.492"/>
</g>
<g style="fill:rgb(48.999023%,55.999756%,15.99884%);fill-opacity:1;">
<use xlink:href="#glyph2-18" x="182.335555" y="181.492"/>
<use xlink:href="#glyph2-19" x="187.56592" y="181.492"/>
<use xlink:href="#glyph2-8" x="192.796285" y="181.492"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-17" x="198.02665" y="181.492"/>
</g>
<g style="fill:rgb(48.999023%,55.999756%,15.99884%);fill-opacity:1;">
<use xlink:href="#glyph2-20" x="203.257015" y="181.492"/>
<use xlink:href="#glyph2-9" x="208.48738" y="181.492"/>
<use xlink:href="#glyph2-4" x="213.717745" y="181.492"/>
<use xlink:href="#glyph2-5" x="218.94811" y="181.492"/>
<use xlink:href="#glyph2-8" x="224.178475" y="181.492"/>
<use xlink:href="#glyph2-21" x="229.40884" y="181.492"/>
<use xlink:href="#glyph2-5" x="234.639205" y="181.492"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="239.86957" y="181.492"/>
</g>
<g style="fill:rgb(72.999573%,12.998962%,12.998962%);fill-opacity:1;">
<use xlink:href="#glyph2-22" x="245.099935" y="181.492"/>
<use xlink:href="#glyph2-23" x="250.3303" y="181.492"/>
<use xlink:href="#glyph2-16" x="255.560665" y="181.492"/>
<use xlink:href="#glyph2-21" x="260.79103" y="181.492"/>
<use xlink:href="#glyph2-21" x="266.021395" y="181.492"/>
<use xlink:href="#glyph2-18" x="271.25176" y="181.492"/>
<use xlink:href="#glyph2-24" x="276.482125" y="181.492"/>
</g>
<g style="fill:rgb(72.999573%,12.998962%,12.998962%);fill-opacity:1;">
<use xlink:href="#glyph2-25" x="286.942855" y="181.492"/>
<use xlink:href="#glyph2-18" x="292.17322" y="181.492"/>
<use xlink:href="#glyph2-9" x="297.403585" y="181.492"/>
<use xlink:href="#glyph2-21" x="302.63395" y="181.492"/>
<use xlink:href="#glyph2-26" x="307.864315" y="181.492"/>
<use xlink:href="#glyph2-27" x="313.09468" y="181.492"/>
<use xlink:href="#glyph2-22" x="318.325045" y="181.492"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-14" x="323.55541" y="181.492"/>
<use xlink:href="#glyph2-28" x="328.785775" y="181.492"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-29" x="135.263" y="193.447"/>
</g>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph2-29" x="124.802" y="205.403"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 60 KiB

View File

@ -0,0 +1,14 @@
\documentclass[a4paper]{article}
\usepackage{lmodern}
\usepackage{amssymb,amsmath}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{minted}
\begin{document}
\thispagestyle{empty}
\section*{Einfache Java-Anwendung}
\inputminted{java}{Test.java}
\end{document}

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 128 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 129 KiB

View File

@ -0,0 +1,45 @@
\documentclass[a4paper]{article}
\usepackage{lmodern}
\usepackage{amssymb,amsmath}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{minted}
\begin{document}
\thispagestyle{empty}
\begin{minted}[
fontfamily=tt,
linenos=true,
numberblanklines=true,
numbersep=12pt,
numbersep=5pt,
gobble=0,
frame=leftline,
framerule=0.4pt,
framesep=2mm,
funcnamehighlighting=true,
tabsize=4,
breaklines=true,
texcl=false,
]{html}
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Installation</h2>
<p>
Mit dem Paket <code>minted</code> lässt sich Quelltext gut darstellen. Dafür wird die Programmiersprache Python benötigt.
</p>
<p>
Nach der <a href="https://www.python.org/">Installation von Python</a> kann das zugehörige Paket <a href="http://pygments.org/"><code>Pygments</code></a> in der Eingabeaufforderung installiert werden durch:
</p>
<pre class="lang-bash hljs"><code>pip install Pygments</code></pre>
<p>Anschließend muss das LaTeX-Paket nur noch eingebunden werden:</p>
<pre class="lang-tex hljs"><code>\usepackage{minted}</code></pre>
</div>
<div class="layout-preview">
<img src="sections/german/10/minted-overview-crop.svg">
</div>
</div>
\end{minted}
\end{document}

View File

@ -1,18 +1,79 @@
<div class="layout-content-only">
<div class="layout-content">
<h1>Grafiken</h1>
<h1><span class="emoji">🖼️</span><br/>Grafiken</h1>
</div>
</div>
---
TODO: Grafiken (mit Positionierung)
<div class="layout-content-only">
<div class="layout-content">
<h2>Grafiken einbinden</h2>
<p>Um Grafiken darzustellen, muss das Paket <code>graphicx</code> eingebunden werden.</p>
<pre class="hljs lang-tex"><code>\begin{figure}
\includegraphics{&lt;dateipfad>}
\caption[&lt;kurztitel>]{&lt;bildunterschrift>}
\end{figure}</code></pre>
<p>Bildgröße angeben:</p>
<pre class="hljs lang-tex"><code>\includegraphics[width=0.5\*\textwidth,
height=5cm]{&lt;dateipfad>}</code></pre>
</div>
</div>
---
<div class="layout-only">
<div class="layout-content-only">
<div class="layout-content">
<h2 data-category="Aufgabe">6. Grafiken einfügen</h2>
<h2>Positionierung auf der Seite</h2>
<pre class="hljs lang-tex"><code>\begin{figure}[&lt;positionskürzel>]</code></pre>
<p>LaTeX positioniert Grafiken für uns automatisch. Durch Kürzel können wir unsere Präferenzen angeben.</p>
<table>
<tr>
<th style="min-width:4em">Kürzel</th>
<th>Position</th>
</tr>
<tr class="fragment">
<td>t</td>
<td>oberer Seitenrand</td>
</tr>
<tr class="fragment">
<td>b</td>
<td>unterer Seitenrand</td>
</tr>
<tr class="fragment">
<td>p</td>
<td>auf einer eigenen Seite</td>
</tr>
<tr class="fragment">
<td>H</td>
<td>definitiv und unbedingt ohne Widerspruch genau an dieser Stelle und nirgendwo sonst (benötigt Paket <code>float</code>)</td>
</tr>
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2>Zentrierte Anordnung</h2>
<pre class="hljs lang-tex"><code>\begin{figure}[p]
\begin{center}
\includegraphics{&lt;dateipfad>}
\end{center}
\end{figure}</code></pre>
<p>Alternativ:</p>
<pre class="hljs lang-tex"><code>\begin{figure}[p]
\centering
\includegraphics{&lt;dateipfad>}
\end{figure}</code></pre>
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2 data-category="Aufgabe" data-task="10">Grafiken einfügen</h2>
<ul>
<li class="fragment"></li>
</ul>

View File

@ -1,18 +1,202 @@
<div class="layout-content-only">
<div class="layout-content">
<h1>Tabellen</h1>
<h1><span class="emoji">🗒️</span><br/>Tabellen</h1>
</div>
</div>
---
TODO: Tabellen (booktabs, Möglichkeit für Querformat)
<div class="layout-content-only">
<div class="layout-content">
<h2>Grundstruktur</h2>
<p>Für typografisch schöne Tabellen nutzen wir das Paket <code>booktabs</code>.</p>
<pre class="hljs lang-tex"><code>\usepackage{booktabs}</code></pre>
<pre class="hljs lang-tex"><code>\begin{table}[&lt;position>]
\begin{tabular}{&lt;spaltendefinition>}
% Tabelleninhalt
\end{tabular}
\caption{&lt;tabellenunterschrift>}
\end{table}</code></pre>
<p>Die Positionierung erfolgt analog zu Grafiken.</p>
</div>
</div>
---
<div class="layout-only">
<div class="layout-content-and-preview">
<div class="layout-content">
<h2 data-category="Aufgabe">7. Tabellen einfügen</h2>
<h2>Spaltendefinitionen</h2>
<pre class="hljs lang-tex"><code>\begin{tabular}{lrcl}
% Tabelleninhalt
\end{tabular}</pre></code>
<table>
<tr>
<th>Kürzel</th>
<th>Bedeutung</th>
</tr>
<tr class="fragment">
<td>l</td>
<td>linksbündige Spalte</td>
</tr>
<tr class="fragment">
<td>c</td>
<td>zentrierte Spalte</td>
</tr>
<tr class="fragment">
<td>r</td>
<td>rechtsbündige Spalte</td>
</tr>
</table>
<p class="fragment">Vertikale Trennlinien und doppelte horizontale Linien sind unter Typograph\*innen nicht gern gesehen und sollten vermieden werden.</p>
</div>
<div class="layout-preview">
<img class="thin-padding" src="sections/german/12/table-example-crop.svg">
</div>
</div>
---
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Tabelleninhalt</h2>
<pre class="hljs lang-tex"><code>\begin{tabular}{lll}
\toprule
Spalte 1 & Spalte 2 & Spalte 3 \\\\
\midrule
Inhalt a & Inhalt b & Inhalt c \\\\
Inhalt e & Inhalt f & Inhalt g \\\\
Inhalt i & Inhalt j & Inhalt k \\\\
\bottomrule
\end{tabular}</code></pre>
<ul>
<li class="fragment">Zellen werden durch <code>&</code> abgetrennt.</li>
<li class="fragment">Zeilen werden durch zwei Backslashes beendet.</li>
<li class="fragment"><code>\toprule</code>, <code>\midrule</code> und <code>\bottomrule</code> strukturieren die Tabelle.</li>
</ul>
</div>
<div class="layout-preview">
<img class="thin-padding" src="sections/german/12/table-content-example-crop.svg">
</div>
</div>
---
<div class="layout-wide-content">
<div class="layout-content">
<h2>Die gesamte Tabelle</h2>
<pre class="lang-tex hljs"><code>\begin{table}[h]
\begin{tabular}{lrcl} \toprule
Sprache & Autor & Erscheinungsjahr & Aktuelle Version \\\\
\midrule
C++ & Bjarne Stroustrup & 1985 & ISO/IEC 14882:2017 \\\\
Java & James Gosling & 1998 & 12.0.1 \\\\
Python & Guido van Rossum & 1991 & 3.7.3 \\\\
\bottomrule
\end{tabular}
\caption{Bekannte Programmiersprachen}
\end{table}</code></pre>
<p data-category="Hinweis">
Durch <code>@{}</code> vor und nach der Spaltendefinition werden die horizontalen Linien auf die Breite des Textes beschränkt.
Beispiel: <code>\begin{tabular}{@{}lrcl@{}}</code>
</p>
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2>Besonders lange Tabellen</h2>
<p>Tabellen, die über mehrere Seiten gehen, werden von <code>tabular</code> einfach abgeschnitten. Die Lösung bietet hier das Paket <code>longtable</code>:</p>
<pre class="lang-tex hljs"><code>\usepackage{longtable}</code></pre>
<pre class="lang-tex hljs"><code>\begin{longtable}{lll}
% Tabelleninhalt
\caption{&lt;untertitel>}
\label{&lt;label>}
\end{longtable}</code></pre>
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2>Hinweise zu <code>longtable</code></h2>
<pre class="lang-tex hljs"><code>\begin{longtable}{lll}
% Tabelleninhalt
\caption{&lt;untertitel>}
\label{&lt;label>}
\end{longtable}</code></pre>
<ul>
<li class="fragment">Die <code>longtable</code>-Umgebung vereint die <code>tabular</code>-Umgebung und die <code>table</code>-Umgebung.</li>
<li class="fragment">Untertitel und Label können deshalb direkt unter dem Tabelleninhalt stehen.</li>
<li class="fragment">Die Features von <code>booktabs</code> stehen auch in <code>longtable</code> zur Verfügung, sofern das Paket <code>booktabs</code> eingebunden ist.</li>
</ul>
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2>Besonders breite Tabellen</h2>
<p>Sollte die Tabelle einmal zu breit für eine Seite werden, können einzelne Seiten auch im Querformat dargestellt werden:</p>
<pre class="lang-tex hljs"><code>\usepackage{lscape}</code></pre>
<pre class="lang-tex hljs"><code>\begin{landscape}
\begin{table}[h]
\begin{tabular}{lll}
% Tabelleninhalt
\end{tabular}
\end{table}
\end{landscape}</code></pre>
</div>
</div>
---
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Weiterführendes Beispiel</h2>
<pre class="lang-tex hljs"><code>\begin{table}[h]
\begin{tabular}{llr}
\toprule
Struktur & \multicolumn{2}{l}{Zeitkomplexität für Zugriff} \\ \cmidrule(r){2-3}
& Average & Worst \\
\midrule
Stack & $\mathcal{O}(n)$ & $\mathcal{O}(n)$ \\
Binärbaum & $\mathcal{O}(log(n))$ & $\mathcal{O}(log(n))$ \\
AVL-Baum & $\mathcal{O}(log(n))$ & $\mathcal{O}(log(n))$ \\
\bottomrule
\end{tabular}
\end{table}</code></pre>
<p>
<a href="http://packages.oth-regensburg.de/ctan/macros/latex/contrib/booktabs/booktabs.pdf"><span class="emoji">🔗</span> Dokumentation zu Booktabs</a>
</p>
</div>
<div class="layout-preview">
<img class="thin-padding" src="sections/german/12/table-advanced-example-crop.svg">
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2>Vereinfachung</h2>
<p>
Der <a href="https://tablesgenerator.com/">Tables Generator</a> ist ein wunderbares Werkzeug, um schnell Tabellen verschiedener Formate zu erstellen.
</p>
<a href="https://tablesgenerator.com/">
<img src="sections/german/12/tables-generator.png">
</a>
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2 data-category="Aufgabe" data-task="11">Tabellen einfügen</h2>
<ul>
<li class="fragment"></li>
</ul>

View File

@ -0,0 +1,347 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="192pt" height="77pt" viewBox="0 0 192 77" version="1.1">
<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 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 Z M 4.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 Z M 3.3125 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 5.578125 -2.65625 L 5.328125 -2.65625 C 5.25 -1.28125 5.0625 -0.34375 3.21875 -0.34375 L 1.578125 -0.34375 L 5.453125 -6.453125 C 5.515625 -6.5625 5.515625 -6.578125 5.515625 -6.65625 C 5.515625 -6.8125 5.46875 -6.8125 5.265625 -6.8125 L 0.796875 -6.8125 L 0.6875 -4.5625 L 0.9375 -4.5625 C 1 -5.6875 1.3125 -6.5 2.9375 -6.5 L 4.5 -6.5 L 0.625 -0.375 C 0.5625 -0.265625 0.5625 -0.25 0.5625 -0.171875 C 0.5625 0 0.609375 0 0.8125 0 L 5.40625 0 Z M 5.578125 -2.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 Z M 3.484375 -2.515625 L 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 3.484375 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 L 1.390625 1.90625 L 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 5.140625 0 L 5.140625 -0.3125 C 4.609375 -0.3125 4.421875 -0.328125 4.203125 -0.625 L 2.859375 -2.34375 C 3.15625 -2.71875 3.53125 -3.203125 3.78125 -3.46875 C 4.09375 -3.828125 4.5 -3.984375 4.96875 -3.984375 L 4.96875 -4.296875 C 4.703125 -4.28125 4.40625 -4.265625 4.140625 -4.265625 C 3.84375 -4.265625 3.3125 -4.28125 3.1875 -4.296875 L 3.1875 -3.984375 C 3.40625 -3.96875 3.484375 -3.84375 3.484375 -3.671875 C 3.484375 -3.515625 3.375 -3.390625 3.328125 -3.328125 L 2.71875 -2.546875 L 1.9375 -3.5625 C 1.84375 -3.65625 1.84375 -3.671875 1.84375 -3.734375 C 1.84375 -3.890625 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 L 1.109375 -4.265625 C 0.90625 -4.265625 0.4375 -4.28125 0.171875 -4.296875 L 0.171875 -3.984375 C 0.875 -3.984375 0.875 -3.984375 1.34375 -3.375 L 2.328125 -2.09375 C 1.859375 -1.5 1.859375 -1.46875 1.390625 -0.90625 C 0.921875 -0.328125 0.328125 -0.3125 0.125 -0.3125 L 0.125 0 C 0.375 -0.015625 0.6875 -0.03125 0.953125 -0.03125 L 1.890625 0 L 1.890625 -0.3125 C 1.671875 -0.34375 1.609375 -0.46875 1.609375 -0.625 C 1.609375 -0.84375 1.890625 -1.171875 2.5 -1.890625 L 3.265625 -0.890625 C 3.34375 -0.78125 3.46875 -0.625 3.46875 -0.5625 C 3.46875 -0.46875 3.375 -0.3125 3.109375 -0.3125 L 3.109375 0 L 4.1875 -0.03125 C 4.453125 -0.03125 4.84375 -0.015625 5.140625 0 Z M 5.140625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 L 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 Z M 3.5625 -6.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 2.375 -6.03125 C 2.375 -6.265625 2.15625 -6.5 1.890625 -6.5 C 1.578125 -6.5 1.40625 -6.25 1.40625 -6.03125 C 1.40625 -5.78125 1.609375 -5.546875 1.890625 -5.546875 C 2.1875 -5.546875 2.375 -5.796875 2.375 -6.03125 Z M 4.140625 -6.03125 C 4.140625 -6.265625 3.9375 -6.5 3.671875 -6.5 C 3.359375 -6.5 3.1875 -6.25 3.1875 -6.03125 C 3.1875 -5.78125 3.390625 -5.546875 3.65625 -5.546875 C 3.96875 -5.546875 4.140625 -5.796875 4.140625 -6.03125 Z M 4.140625 -6.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 6.265625 -6.328125 C 6.265625 -6.6875 5.90625 -7.03125 5.359375 -7.03125 C 4.765625 -7.03125 4.328125 -6.65625 4.28125 -6.609375 C 3.984375 -6.984375 3.421875 -7.03125 3.15625 -7.03125 C 2.21875 -7.03125 1.0625 -6.515625 1.0625 -5.4375 L 1.0625 -4.296875 L 0.265625 -4.296875 L 0.265625 -3.984375 L 1.0625 -3.984375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.390625 -0.03125 L 2.5 0 L 2.5 -0.3125 C 1.828125 -0.3125 1.71875 -0.3125 1.71875 -0.75 L 1.71875 -3.984375 L 3.8125 -3.984375 L 3.8125 -0.75 C 3.8125 -0.3125 3.703125 -0.3125 3.03125 -0.3125 L 3.03125 0 L 4.171875 -0.03125 C 4.5625 -0.03125 5.03125 -0.03125 5.4375 0 L 5.4375 -0.3125 L 5.21875 -0.3125 C 4.484375 -0.3125 4.46875 -0.421875 4.46875 -0.78125 L 4.46875 -3.984375 L 5.609375 -3.984375 L 5.609375 -4.296875 L 4.4375 -4.296875 L 4.4375 -5.453125 C 4.4375 -6.34375 4.921875 -6.8125 5.359375 -6.8125 C 5.390625 -6.8125 5.546875 -6.8125 5.6875 -6.734375 C 5.578125 -6.703125 5.390625 -6.5625 5.390625 -6.3125 C 5.390625 -6.09375 5.546875 -5.890625 5.828125 -5.890625 C 6.109375 -5.890625 6.265625 -6.09375 6.265625 -6.328125 Z M 3.921875 -6.625 C 3.765625 -6.59375 3.5625 -6.453125 3.5625 -6.1875 C 3.5625 -6.125 3.5625 -5.875 3.84375 -5.78125 C 3.8125 -5.65625 3.8125 -5.5625 3.8125 -5.4375 L 3.8125 -4.296875 L 1.6875 -4.296875 L 1.6875 -5.421875 C 1.6875 -6.390625 2.5 -6.8125 3.15625 -6.8125 C 3.640625 -6.8125 3.921875 -6.625 3.921875 -6.625 Z M 3.921875 -6.625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 7.140625 0 L 7.140625 -0.3125 L 6.96875 -0.3125 C 6.375 -0.3125 6.234375 -0.375 6.125 -0.703125 L 3.96875 -6.9375 C 3.921875 -7.0625 3.890625 -7.140625 3.734375 -7.140625 C 3.578125 -7.140625 3.546875 -7.078125 3.5 -6.9375 L 1.4375 -0.984375 C 1.25 -0.46875 0.859375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.328125 -0.03125 L 2.484375 0 L 2.484375 -0.3125 C 1.984375 -0.3125 1.734375 -0.5625 1.734375 -0.8125 C 1.734375 -0.84375 1.75 -0.953125 1.75 -0.96875 L 2.21875 -2.265625 L 4.671875 -2.265625 L 5.203125 -0.75 C 5.21875 -0.703125 5.234375 -0.640625 5.234375 -0.609375 C 5.234375 -0.3125 4.671875 -0.3125 4.40625 -0.3125 L 4.40625 0 C 4.765625 -0.03125 5.46875 -0.03125 5.84375 -0.03125 Z M 4.5625 -2.578125 L 2.328125 -2.578125 L 3.4375 -5.828125 Z M 4.5625 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.8125 -3.984375 3.921875 -3.75 3.921875 -3.5625 C 3.921875 -3.46875 3.90625 -3.421875 3.875 -3.3125 L 2.84375 -0.78125 L 1.734375 -3.5625 C 1.671875 -3.6875 1.671875 -3.734375 1.671875 -3.734375 C 1.671875 -3.984375 2.0625 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.8125 -3.984375 0.859375 -3.921875 0.984375 -3.625 L 2.421875 -0.078125 C 2.484375 0.0625 2.5 0.109375 2.625 0.109375 C 2.765625 0.109375 2.796875 0.015625 2.84375 -0.078125 L 4.140625 -3.3125 C 4.234375 -3.546875 4.40625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 3.15625 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 10.0625 -6.5 L 10.0625 -6.8125 C 9.765625 -6.78125 9.453125 -6.78125 9.15625 -6.78125 L 7.96875 -6.8125 L 7.96875 -6.5 C 8.640625 -6.484375 8.828125 -6.15625 8.828125 -5.96875 C 8.828125 -5.90625 8.796875 -5.828125 8.78125 -5.765625 L 7.28125 -1.171875 L 5.6875 -6.046875 C 5.6875 -6.09375 5.65625 -6.15625 5.65625 -6.203125 C 5.65625 -6.5 6.234375 -6.5 6.5 -6.5 L 6.5 -6.8125 C 6.140625 -6.78125 5.46875 -6.78125 5.078125 -6.78125 L 3.875 -6.8125 L 3.875 -6.5 C 4.4375 -6.5 4.640625 -6.5 4.765625 -6.140625 L 4.984375 -5.4375 L 3.59375 -1.171875 L 2 -6.078125 C 1.984375 -6.09375 1.96875 -6.171875 1.96875 -6.203125 C 1.96875 -6.5 2.546875 -6.5 2.8125 -6.5 L 2.8125 -6.8125 C 2.453125 -6.78125 1.78125 -6.78125 1.390625 -6.78125 L 0.171875 -6.8125 L 0.171875 -6.5 C 0.921875 -6.5 0.96875 -6.453125 1.09375 -6.078125 L 3.078125 0.03125 C 3.109375 0.125 3.140625 0.21875 3.265625 0.21875 C 3.40625 0.21875 3.421875 0.15625 3.46875 0.015625 L 5.109375 -5.046875 L 6.765625 0.03125 C 6.796875 0.125 6.828125 0.21875 6.953125 0.21875 C 7.09375 0.21875 7.125 0.15625 7.15625 0.015625 L 9.0625 -5.828125 C 9.234375 -6.40625 9.671875 -6.5 10.0625 -6.5 Z M 10.0625 -6.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 3.296875 2.390625 C 3.296875 2.359375 3.296875 2.34375 3.125 2.171875 C 1.890625 0.921875 1.5625 -0.96875 1.5625 -2.5 C 1.5625 -4.234375 1.9375 -5.96875 3.171875 -7.203125 C 3.296875 -7.328125 3.296875 -7.34375 3.296875 -7.375 C 3.296875 -7.453125 3.265625 -7.484375 3.203125 -7.484375 C 3.09375 -7.484375 2.203125 -6.796875 1.609375 -5.53125 C 1.109375 -4.4375 0.984375 -3.328125 0.984375 -2.5 C 0.984375 -1.71875 1.09375 -0.515625 1.640625 0.625 C 2.25 1.84375 3.09375 2.5 3.203125 2.5 C 3.265625 2.5 3.296875 2.46875 3.296875 2.390625 Z M 3.296875 2.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 2.875 -2.5 C 2.875 -3.265625 2.765625 -4.46875 2.21875 -5.609375 C 1.625 -6.828125 0.765625 -7.484375 0.671875 -7.484375 C 0.609375 -7.484375 0.5625 -7.4375 0.5625 -7.375 C 0.5625 -7.34375 0.5625 -7.328125 0.75 -7.140625 C 1.734375 -6.15625 2.296875 -4.578125 2.296875 -2.5 C 2.296875 -0.78125 1.9375 0.96875 0.703125 2.21875 C 0.5625 2.34375 0.5625 2.359375 0.5625 2.390625 C 0.5625 2.453125 0.609375 2.5 0.671875 2.5 C 0.765625 2.5 1.671875 1.8125 2.25 0.546875 C 2.765625 -0.546875 2.875 -1.65625 2.875 -2.5 Z M 2.875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-27">
<path style="stroke:none;" d="M 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 Z M 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 L 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 Z M 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 Z M 5.5 -1.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-28">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-29">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-30">
<path style="stroke:none;" d="M 7.28125 -6.5 L 7.28125 -6.8125 C 6.96875 -6.78125 6.5625 -6.78125 6.3125 -6.78125 L 5.171875 -6.8125 L 5.171875 -6.5 C 5.6875 -6.484375 5.90625 -6.234375 5.90625 -6 C 5.90625 -5.921875 5.875 -5.859375 5.859375 -5.796875 L 4.03125 -1 L 2.125 -6.03125 C 2.0625 -6.171875 2.0625 -6.203125 2.0625 -6.203125 C 2.0625 -6.5 2.625 -6.5 2.875 -6.5 L 2.875 -6.8125 C 2.515625 -6.78125 1.828125 -6.78125 1.453125 -6.78125 L 0.1875 -6.8125 L 0.1875 -6.5 C 0.84375 -6.5 1.03125 -6.5 1.171875 -6.125 L 3.484375 0 C 3.546875 0.1875 3.59375 0.21875 3.734375 0.21875 C 3.890625 0.21875 3.921875 0.171875 3.96875 0.03125 L 6.1875 -5.828125 C 6.328125 -6.203125 6.59375 -6.484375 7.28125 -6.5 Z M 7.28125 -6.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-31">
<path style="stroke:none;" d="M 5.796875 -2.578125 L 5.546875 -2.578125 C 5.4375 -1.5625 5.296875 -0.3125 3.546875 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -6.015625 C 2.25 -6.359375 2.25 -6.5 3.1875 -6.5 L 3.515625 -6.5 L 3.515625 -6.8125 C 3.15625 -6.78125 2.25 -6.78125 1.84375 -6.78125 C 1.453125 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 5.515625 0 Z M 5.796875 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-32">
<path style="stroke:none;" d="M 2.75 -1.859375 L 2.75 -2.4375 L 0.109375 -2.4375 L 0.109375 -1.859375 Z M 2.75 -1.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 7.75 -4.8125 C 7.75 -6.15625 7.125 -7.03125 5.984375 -7.03125 C 4.90625 -7.03125 4.03125 -6.15625 4 -6.140625 C 3.171875 -5.328125 2.890625 -4.453125 2.890625 -4.421875 C 2.890625 -4.359375 2.9375 -4.359375 2.984375 -4.359375 C 3.15625 -4.359375 3.40625 -4.5 3.40625 -4.5 C 3.65625 -4.671875 3.6875 -4.71875 3.765625 -4.921875 C 4 -5.4375 4.234375 -5.765625 4.453125 -6.03125 C 4.71875 -6.34375 4.9375 -6.484375 5.328125 -6.484375 C 6.234375 -6.484375 6.890625 -5.71875 6.890625 -4.375 C 6.890625 -2.375 5.484375 -0.328125 3.59375 -0.328125 C 2.203125 -0.328125 1.421875 -1.453125 1.421875 -2.875 C 1.421875 -3.671875 1.6875 -5.5 3.65625 -6.625 C 3.78125 -6.703125 3.96875 -6.859375 3.96875 -6.953125 C 3.96875 -7.03125 3.890625 -7.03125 3.859375 -7.03125 C 3.53125 -7.03125 0.5625 -5.453125 0.5625 -2.453125 C 0.5625 -1 1.34375 0.21875 2.9375 0.21875 C 4.90625 0.21875 7.75 -1.75 7.75 -4.8125 Z M 7.75 -4.8125 "/>
</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 5.6875 -1.421875 C 5.6875 -1.53125 5.609375 -1.53125 5.578125 -1.53125 C 5.46875 -1.53125 5.46875 -1.5 5.421875 -1.34375 C 5.21875 -0.671875 4.890625 -0.109375 4.40625 -0.109375 C 4.234375 -0.109375 4.171875 -0.203125 4.171875 -0.4375 C 4.171875 -0.6875 4.25 -0.921875 4.34375 -1.140625 C 4.53125 -1.671875 4.953125 -2.765625 4.953125 -3.34375 C 4.953125 -4 4.53125 -4.40625 3.8125 -4.40625 C 2.90625 -4.40625 2.421875 -3.765625 2.25 -3.53125 C 2.203125 -4.09375 1.796875 -4.40625 1.328125 -4.40625 C 0.875 -4.40625 0.6875 -4.015625 0.59375 -3.84375 C 0.421875 -3.5 0.296875 -2.90625 0.296875 -2.875 C 0.296875 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.515625 -2.765625 0.515625 -2.78125 0.578125 -3 C 0.75 -3.703125 0.953125 -4.1875 1.3125 -4.1875 C 1.5 -4.1875 1.609375 -4.0625 1.609375 -3.734375 C 1.609375 -3.515625 1.578125 -3.40625 1.453125 -2.890625 L 0.875 -0.59375 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.078125 0.109375 C 1.203125 0.109375 1.375 0.03125 1.453125 -0.171875 C 1.453125 -0.1875 1.578125 -0.65625 1.640625 -0.90625 L 1.859375 -1.796875 C 1.90625 -2.03125 1.96875 -2.25 2.03125 -2.46875 L 2.15625 -2.96875 C 2.296875 -3.28125 2.828125 -4.1875 3.78125 -4.1875 C 4.234375 -4.1875 4.3125 -3.8125 4.3125 -3.484375 C 4.3125 -2.875 3.828125 -1.59375 3.671875 -1.171875 C 3.578125 -0.9375 3.5625 -0.8125 3.5625 -0.703125 C 3.5625 -0.234375 3.921875 0.109375 4.390625 0.109375 C 5.328125 0.109375 5.6875 -1.34375 5.6875 -1.421875 Z M 5.6875 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 2.390625 -1.421875 C 2.390625 -1.53125 2.296875 -1.53125 2.265625 -1.53125 C 2.171875 -1.53125 2.15625 -1.484375 2.140625 -1.34375 C 1.96875 -0.703125 1.78125 -0.109375 1.375 -0.109375 C 1.078125 -0.109375 1.078125 -0.421875 1.078125 -0.5625 C 1.078125 -0.8125 1.09375 -0.859375 1.140625 -1.046875 L 2.578125 -6.8125 C 2.578125 -6.8125 2.578125 -6.921875 2.4375 -6.921875 C 2.21875 -6.921875 1.484375 -6.84375 1.21875 -6.8125 C 1.140625 -6.8125 1.03125 -6.796875 1.03125 -6.609375 C 1.03125 -6.5 1.140625 -6.5 1.28125 -6.5 C 1.765625 -6.5 1.78125 -6.40625 1.78125 -6.328125 L 1.75 -6.125 L 0.484375 -1.140625 C 0.453125 -1.03125 0.4375 -0.96875 0.4375 -0.8125 C 0.4375 -0.234375 0.875 0.109375 1.34375 0.109375 C 1.671875 0.109375 1.921875 -0.09375 2.09375 -0.453125 C 2.265625 -0.828125 2.390625 -1.421875 2.390625 -1.421875 Z M 2.390625 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 4.671875 -2.71875 C 4.671875 -3.765625 3.984375 -4.40625 3.078125 -4.40625 C 1.75 -4.40625 0.40625 -2.984375 0.40625 -1.578125 C 0.40625 -0.59375 1.078125 0.109375 2 0.109375 C 3.328125 0.109375 4.671875 -1.265625 4.671875 -2.71875 Z M 3.953125 -3.109375 C 3.953125 -2.71875 3.75 -1.671875 3.375 -1.03125 C 3.015625 -0.453125 2.46875 -0.109375 2.015625 -0.109375 C 1.578125 -0.109375 1.140625 -0.421875 1.140625 -1.203125 C 1.140625 -1.6875 1.40625 -2.765625 1.71875 -3.265625 C 2.21875 -4.03125 2.796875 -4.1875 3.078125 -4.1875 C 3.65625 -4.1875 3.953125 -3.703125 3.953125 -3.109375 Z M 3.953125 -3.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 3.59375 0.671875 L 4.6875 -3.765625 C 4.703125 -3.8125 4.71875 -3.875 4.71875 -3.9375 C 4.71875 -4.109375 4.609375 -4.203125 4.4375 -4.203125 C 4.34375 -4.203125 4.0625 -4.140625 4.03125 -3.78125 C 3.84375 -4.140625 3.5 -4.40625 3.09375 -4.40625 C 1.96875 -4.40625 0.734375 -3.015625 0.734375 -1.578125 C 0.734375 -0.59375 1.328125 0 2.046875 0 C 2.640625 0 3.109375 -0.46875 3.203125 -0.578125 L 3.21875 -0.5625 L 2.890625 0.75 C 2.84375 0.84375 2.515625 1.828125 1.453125 1.828125 C 1.265625 1.828125 0.9375 1.8125 0.65625 1.71875 C 0.953125 1.640625 1.0625 1.375 1.0625 1.203125 C 1.0625 1.046875 0.953125 0.859375 0.6875 0.859375 C 0.46875 0.859375 0.15625 1.03125 0.15625 1.4375 C 0.15625 1.84375 0.515625 2.046875 1.46875 2.046875 C 2.71875 2.046875 3.4375 1.265625 3.59375 0.671875 Z M 3.875 -3.1875 L 3.40625 -1.28125 C 3.34375 -1.015625 3.109375 -0.765625 2.890625 -0.578125 C 2.6875 -0.40625 2.375 -0.21875 2.078125 -0.21875 C 1.578125 -0.21875 1.4375 -0.734375 1.4375 -1.140625 C 1.4375 -1.609375 1.71875 -2.796875 2 -3.296875 C 2.265625 -3.78125 2.6875 -4.1875 3.109375 -4.1875 C 3.765625 -4.1875 3.90625 -3.375 3.90625 -3.328125 C 3.90625 -3.28125 3.890625 -3.21875 3.875 -3.1875 Z M 3.875 -3.1875 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 -0.00159375 L 190.283938 -0.00159375 " transform="matrix(1,0,0,-1,0.802,1.307)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="6.78" y="12.861"/>
<use xlink:href="#glyph0-2" x="12.315221" y="12.861"/>
<use xlink:href="#glyph0-3" x="16.189676" y="12.861"/>
<use xlink:href="#glyph0-4" x="20.092026" y="12.861"/>
<use xlink:href="#glyph0-5" x="25.627247" y="12.861"/>
<use xlink:href="#glyph0-2" x="30.885507" y="12.861"/>
<use xlink:href="#glyph0-4" x="34.759962" y="12.861"/>
<use xlink:href="#glyph0-3" x="40.295183" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="67.998184" y="12.861"/>
<use xlink:href="#glyph0-7" x="74.086329" y="12.861"/>
<use xlink:href="#glyph0-8" x="78.514705" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="81.272353" y="12.861"/>
<use xlink:href="#glyph0-5" x="85.146808" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="90.136078" y="12.861"/>
<use xlink:href="#glyph0-10" x="95.117378" y="12.861"/>
<use xlink:href="#glyph0-11" x="103.419213" y="12.861"/>
<use xlink:href="#glyph0-12" x="108.954433" y="12.861"/>
<use xlink:href="#glyph0-7" x="111.722043" y="12.861"/>
<use xlink:href="#glyph0-13" x="116.150419" y="12.861"/>
<use xlink:href="#glyph0-8" x="121.408679" y="12.861"/>
<use xlink:href="#glyph0-2" x="124.17629" y="12.861"/>
<use xlink:href="#glyph0-14" x="128.050745" y="12.861"/>
<use xlink:href="#glyph0-2" x="133.032045" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="140.224046" y="12.861"/>
<use xlink:href="#glyph0-16" x="143.268616" y="12.861"/>
<use xlink:href="#glyph0-3" x="148.803837" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="156.023733" y="12.861"/>
<use xlink:href="#glyph0-4" x="162.111878" y="12.861"/>
<use xlink:href="#glyph0-17" x="167.647098" y="12.861"/>
<use xlink:href="#glyph0-3" x="172.628398" y="12.861"/>
<use xlink:href="#glyph0-8" x="176.530749" y="12.861"/>
<use xlink:href="#glyph0-18" x="179.298359" y="12.861"/>
</g>
<path style="fill:none;stroke-width:0.299;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.000375 0.0005 L 124.089469 0.0005 " transform="matrix(1,0,0,-1,62.016,18.313)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="67.994" y="29.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-20" x="74.360101" y="29.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="79.339409" y="29.618"/>
<use xlink:href="#glyph0-3" x="83.767785" y="29.618"/>
<use xlink:href="#glyph0-21" x="87.670135" y="29.618"/>
<use xlink:href="#glyph0-17" x="92.651435" y="29.618"/>
<use xlink:href="#glyph0-7" x="97.632735" y="29.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-22" x="159.017295" y="29.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="168.419997" y="29.618"/>
<use xlink:href="#glyph0-3" x="173.401297" y="29.618"/>
<use xlink:href="#glyph0-23" x="177.303647" y="29.618"/>
<use xlink:href="#glyph0-2" x="181.233893" y="29.618"/>
</g>
<path style="fill:none;stroke-width:0.498;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 0.00103125 L 190.283938 0.00103125 " transform="matrix(1,0,0,-1,0.802,35.169)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="6.78" y="46.574"/>
<use xlink:href="#glyph0-2" x="12.315221" y="46.574"/>
<use xlink:href="#glyph0-21" x="16.189676" y="46.574"/>
<use xlink:href="#glyph0-24" x="21.170976" y="46.574"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="25.320399" y="46.574"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="67.994" y="46.574"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="76.202" y="46.574"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="80.076" y="46.574"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="86.056" y="46.574"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="163.173" y="46.574"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="171.381" y="46.574"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="175.255" y="46.574"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="181.235" y="46.574"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-27" x="6.78" y="58.529"/>
<use xlink:href="#glyph0-8" x="13.83651" y="58.529"/>
<use xlink:href="#glyph0-28" x="16.60412" y="58.529"/>
<use xlink:href="#glyph0-14" x="22.13934" y="58.529"/>
<use xlink:href="#glyph0-3" x="27.12064" y="58.529"/>
<use xlink:href="#glyph0-29" x="31.022991" y="58.529"/>
<use xlink:href="#glyph0-21" x="36.558211" y="58.529"/>
<use xlink:href="#glyph0-4" x="41.539511" y="58.529"/>
<use xlink:href="#glyph0-10" x="47.074732" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="67.994" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="76.202" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="80.076" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="83.248092" y="58.529"/>
<use xlink:href="#glyph2-4" x="88.076964" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="93.184" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="97.058" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="103.038" y="58.529"/>
<use xlink:href="#glyph0-26" x="106.912455" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="142.317" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="150.525" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="154.399" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="157.571092" y="58.529"/>
<use xlink:href="#glyph2-4" x="162.399964" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="167.506" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="171.381" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="177.361" y="58.529"/>
<use xlink:href="#glyph0-26" x="181.235455" y="58.529"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="6.78" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-30" x="13.146101" y="70.484"/>
<use xlink:href="#glyph0-31" x="20.618051" y="70.484"/>
<use xlink:href="#glyph0-32" x="26.844676" y="70.484"/>
<use xlink:href="#glyph0-27" x="30.165211" y="70.484"/>
<use xlink:href="#glyph0-21" x="37.221721" y="70.484"/>
<use xlink:href="#glyph0-4" x="42.203021" y="70.484"/>
<use xlink:href="#glyph0-10" x="47.738241" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="67.994" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="76.202" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="80.076" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="83.248092" y="70.484"/>
<use xlink:href="#glyph2-4" x="88.076964" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="93.184" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="97.058" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="103.038" y="70.484"/>
<use xlink:href="#glyph0-26" x="106.912455" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="142.317" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="150.525" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="154.399" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="157.571092" y="70.484"/>
<use xlink:href="#glyph2-4" x="162.399964" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="167.507" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="171.381" y="70.484"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="177.361" y="70.484"/>
<use xlink:href="#glyph0-26" x="181.235455" y="70.484"/>
</g>
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 0.00140625 L 190.283938 0.00140625 " transform="matrix(1,0,0,-1,0.802,76.185)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 46 KiB

View File

@ -0,0 +1,347 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" version="1.1">
<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 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 Z M 4.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 Z M 3.3125 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 5.578125 -2.65625 L 5.328125 -2.65625 C 5.25 -1.28125 5.0625 -0.34375 3.21875 -0.34375 L 1.578125 -0.34375 L 5.453125 -6.453125 C 5.515625 -6.5625 5.515625 -6.578125 5.515625 -6.65625 C 5.515625 -6.8125 5.46875 -6.8125 5.265625 -6.8125 L 0.796875 -6.8125 L 0.6875 -4.5625 L 0.9375 -4.5625 C 1 -5.6875 1.3125 -6.5 2.9375 -6.5 L 4.5 -6.5 L 0.625 -0.375 C 0.5625 -0.265625 0.5625 -0.25 0.5625 -0.171875 C 0.5625 0 0.609375 0 0.8125 0 L 5.40625 0 Z M 5.578125 -2.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 Z M 3.484375 -2.515625 L 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 3.484375 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 L 1.390625 1.90625 L 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 5.140625 0 L 5.140625 -0.3125 C 4.609375 -0.3125 4.421875 -0.328125 4.203125 -0.625 L 2.859375 -2.34375 C 3.15625 -2.71875 3.53125 -3.203125 3.78125 -3.46875 C 4.09375 -3.828125 4.5 -3.984375 4.96875 -3.984375 L 4.96875 -4.296875 C 4.703125 -4.28125 4.40625 -4.265625 4.140625 -4.265625 C 3.84375 -4.265625 3.3125 -4.28125 3.1875 -4.296875 L 3.1875 -3.984375 C 3.40625 -3.96875 3.484375 -3.84375 3.484375 -3.671875 C 3.484375 -3.515625 3.375 -3.390625 3.328125 -3.328125 L 2.71875 -2.546875 L 1.9375 -3.5625 C 1.84375 -3.65625 1.84375 -3.671875 1.84375 -3.734375 C 1.84375 -3.890625 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 L 1.109375 -4.265625 C 0.90625 -4.265625 0.4375 -4.28125 0.171875 -4.296875 L 0.171875 -3.984375 C 0.875 -3.984375 0.875 -3.984375 1.34375 -3.375 L 2.328125 -2.09375 C 1.859375 -1.5 1.859375 -1.46875 1.390625 -0.90625 C 0.921875 -0.328125 0.328125 -0.3125 0.125 -0.3125 L 0.125 0 C 0.375 -0.015625 0.6875 -0.03125 0.953125 -0.03125 L 1.890625 0 L 1.890625 -0.3125 C 1.671875 -0.34375 1.609375 -0.46875 1.609375 -0.625 C 1.609375 -0.84375 1.890625 -1.171875 2.5 -1.890625 L 3.265625 -0.890625 C 3.34375 -0.78125 3.46875 -0.625 3.46875 -0.5625 C 3.46875 -0.46875 3.375 -0.3125 3.109375 -0.3125 L 3.109375 0 L 4.1875 -0.03125 C 4.453125 -0.03125 4.84375 -0.015625 5.140625 0 Z M 5.140625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 L 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 Z M 3.5625 -6.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 2.375 -6.03125 C 2.375 -6.265625 2.15625 -6.5 1.890625 -6.5 C 1.578125 -6.5 1.40625 -6.25 1.40625 -6.03125 C 1.40625 -5.78125 1.609375 -5.546875 1.890625 -5.546875 C 2.1875 -5.546875 2.375 -5.796875 2.375 -6.03125 Z M 4.140625 -6.03125 C 4.140625 -6.265625 3.9375 -6.5 3.671875 -6.5 C 3.359375 -6.5 3.1875 -6.25 3.1875 -6.03125 C 3.1875 -5.78125 3.390625 -5.546875 3.65625 -5.546875 C 3.96875 -5.546875 4.140625 -5.796875 4.140625 -6.03125 Z M 4.140625 -6.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 6.265625 -6.328125 C 6.265625 -6.6875 5.90625 -7.03125 5.359375 -7.03125 C 4.765625 -7.03125 4.328125 -6.65625 4.28125 -6.609375 C 3.984375 -6.984375 3.421875 -7.03125 3.15625 -7.03125 C 2.21875 -7.03125 1.0625 -6.515625 1.0625 -5.4375 L 1.0625 -4.296875 L 0.265625 -4.296875 L 0.265625 -3.984375 L 1.0625 -3.984375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.390625 -0.03125 L 2.5 0 L 2.5 -0.3125 C 1.828125 -0.3125 1.71875 -0.3125 1.71875 -0.75 L 1.71875 -3.984375 L 3.8125 -3.984375 L 3.8125 -0.75 C 3.8125 -0.3125 3.703125 -0.3125 3.03125 -0.3125 L 3.03125 0 L 4.171875 -0.03125 C 4.5625 -0.03125 5.03125 -0.03125 5.4375 0 L 5.4375 -0.3125 L 5.21875 -0.3125 C 4.484375 -0.3125 4.46875 -0.421875 4.46875 -0.78125 L 4.46875 -3.984375 L 5.609375 -3.984375 L 5.609375 -4.296875 L 4.4375 -4.296875 L 4.4375 -5.453125 C 4.4375 -6.34375 4.921875 -6.8125 5.359375 -6.8125 C 5.390625 -6.8125 5.546875 -6.8125 5.6875 -6.734375 C 5.578125 -6.703125 5.390625 -6.5625 5.390625 -6.3125 C 5.390625 -6.09375 5.546875 -5.890625 5.828125 -5.890625 C 6.109375 -5.890625 6.265625 -6.09375 6.265625 -6.328125 Z M 3.921875 -6.625 C 3.765625 -6.59375 3.5625 -6.453125 3.5625 -6.1875 C 3.5625 -6.125 3.5625 -5.875 3.84375 -5.78125 C 3.8125 -5.65625 3.8125 -5.5625 3.8125 -5.4375 L 3.8125 -4.296875 L 1.6875 -4.296875 L 1.6875 -5.421875 C 1.6875 -6.390625 2.5 -6.8125 3.15625 -6.8125 C 3.640625 -6.8125 3.921875 -6.625 3.921875 -6.625 Z M 3.921875 -6.625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 7.140625 0 L 7.140625 -0.3125 L 6.96875 -0.3125 C 6.375 -0.3125 6.234375 -0.375 6.125 -0.703125 L 3.96875 -6.9375 C 3.921875 -7.0625 3.890625 -7.140625 3.734375 -7.140625 C 3.578125 -7.140625 3.546875 -7.078125 3.5 -6.9375 L 1.4375 -0.984375 C 1.25 -0.46875 0.859375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.328125 -0.03125 L 2.484375 0 L 2.484375 -0.3125 C 1.984375 -0.3125 1.734375 -0.5625 1.734375 -0.8125 C 1.734375 -0.84375 1.75 -0.953125 1.75 -0.96875 L 2.21875 -2.265625 L 4.671875 -2.265625 L 5.203125 -0.75 C 5.21875 -0.703125 5.234375 -0.640625 5.234375 -0.609375 C 5.234375 -0.3125 4.671875 -0.3125 4.40625 -0.3125 L 4.40625 0 C 4.765625 -0.03125 5.46875 -0.03125 5.84375 -0.03125 Z M 4.5625 -2.578125 L 2.328125 -2.578125 L 3.4375 -5.828125 Z M 4.5625 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.8125 -3.984375 3.921875 -3.75 3.921875 -3.5625 C 3.921875 -3.46875 3.90625 -3.421875 3.875 -3.3125 L 2.84375 -0.78125 L 1.734375 -3.5625 C 1.671875 -3.6875 1.671875 -3.734375 1.671875 -3.734375 C 1.671875 -3.984375 2.0625 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.8125 -3.984375 0.859375 -3.921875 0.984375 -3.625 L 2.421875 -0.078125 C 2.484375 0.0625 2.5 0.109375 2.625 0.109375 C 2.765625 0.109375 2.796875 0.015625 2.84375 -0.078125 L 4.140625 -3.3125 C 4.234375 -3.546875 4.40625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 3.15625 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 10.0625 -6.5 L 10.0625 -6.8125 C 9.765625 -6.78125 9.453125 -6.78125 9.15625 -6.78125 L 7.96875 -6.8125 L 7.96875 -6.5 C 8.640625 -6.484375 8.828125 -6.15625 8.828125 -5.96875 C 8.828125 -5.90625 8.796875 -5.828125 8.78125 -5.765625 L 7.28125 -1.171875 L 5.6875 -6.046875 C 5.6875 -6.09375 5.65625 -6.15625 5.65625 -6.203125 C 5.65625 -6.5 6.234375 -6.5 6.5 -6.5 L 6.5 -6.8125 C 6.140625 -6.78125 5.46875 -6.78125 5.078125 -6.78125 L 3.875 -6.8125 L 3.875 -6.5 C 4.4375 -6.5 4.640625 -6.5 4.765625 -6.140625 L 4.984375 -5.4375 L 3.59375 -1.171875 L 2 -6.078125 C 1.984375 -6.09375 1.96875 -6.171875 1.96875 -6.203125 C 1.96875 -6.5 2.546875 -6.5 2.8125 -6.5 L 2.8125 -6.8125 C 2.453125 -6.78125 1.78125 -6.78125 1.390625 -6.78125 L 0.171875 -6.8125 L 0.171875 -6.5 C 0.921875 -6.5 0.96875 -6.453125 1.09375 -6.078125 L 3.078125 0.03125 C 3.109375 0.125 3.140625 0.21875 3.265625 0.21875 C 3.40625 0.21875 3.421875 0.15625 3.46875 0.015625 L 5.109375 -5.046875 L 6.765625 0.03125 C 6.796875 0.125 6.828125 0.21875 6.953125 0.21875 C 7.09375 0.21875 7.125 0.15625 7.15625 0.015625 L 9.0625 -5.828125 C 9.234375 -6.40625 9.671875 -6.5 10.0625 -6.5 Z M 10.0625 -6.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 3.296875 2.390625 C 3.296875 2.359375 3.296875 2.34375 3.125 2.171875 C 1.890625 0.921875 1.5625 -0.96875 1.5625 -2.5 C 1.5625 -4.234375 1.9375 -5.96875 3.171875 -7.203125 C 3.296875 -7.328125 3.296875 -7.34375 3.296875 -7.375 C 3.296875 -7.453125 3.265625 -7.484375 3.203125 -7.484375 C 3.09375 -7.484375 2.203125 -6.796875 1.609375 -5.53125 C 1.109375 -4.4375 0.984375 -3.328125 0.984375 -2.5 C 0.984375 -1.71875 1.09375 -0.515625 1.640625 0.625 C 2.25 1.84375 3.09375 2.5 3.203125 2.5 C 3.265625 2.5 3.296875 2.46875 3.296875 2.390625 Z M 3.296875 2.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 2.875 -2.5 C 2.875 -3.265625 2.765625 -4.46875 2.21875 -5.609375 C 1.625 -6.828125 0.765625 -7.484375 0.671875 -7.484375 C 0.609375 -7.484375 0.5625 -7.4375 0.5625 -7.375 C 0.5625 -7.34375 0.5625 -7.328125 0.75 -7.140625 C 1.734375 -6.15625 2.296875 -4.578125 2.296875 -2.5 C 2.296875 -0.78125 1.9375 0.96875 0.703125 2.21875 C 0.5625 2.34375 0.5625 2.359375 0.5625 2.390625 C 0.5625 2.453125 0.609375 2.5 0.671875 2.5 C 0.765625 2.5 1.671875 1.8125 2.25 0.546875 C 2.765625 -0.546875 2.875 -1.65625 2.875 -2.5 Z M 2.875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-27">
<path style="stroke:none;" d="M 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 Z M 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 L 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 Z M 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 Z M 5.5 -1.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-28">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-29">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-30">
<path style="stroke:none;" d="M 7.28125 -6.5 L 7.28125 -6.8125 C 6.96875 -6.78125 6.5625 -6.78125 6.3125 -6.78125 L 5.171875 -6.8125 L 5.171875 -6.5 C 5.6875 -6.484375 5.90625 -6.234375 5.90625 -6 C 5.90625 -5.921875 5.875 -5.859375 5.859375 -5.796875 L 4.03125 -1 L 2.125 -6.03125 C 2.0625 -6.171875 2.0625 -6.203125 2.0625 -6.203125 C 2.0625 -6.5 2.625 -6.5 2.875 -6.5 L 2.875 -6.8125 C 2.515625 -6.78125 1.828125 -6.78125 1.453125 -6.78125 L 0.1875 -6.8125 L 0.1875 -6.5 C 0.84375 -6.5 1.03125 -6.5 1.171875 -6.125 L 3.484375 0 C 3.546875 0.1875 3.59375 0.21875 3.734375 0.21875 C 3.890625 0.21875 3.921875 0.171875 3.96875 0.03125 L 6.1875 -5.828125 C 6.328125 -6.203125 6.59375 -6.484375 7.28125 -6.5 Z M 7.28125 -6.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-31">
<path style="stroke:none;" d="M 5.796875 -2.578125 L 5.546875 -2.578125 C 5.4375 -1.5625 5.296875 -0.3125 3.546875 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -6.015625 C 2.25 -6.359375 2.25 -6.5 3.1875 -6.5 L 3.515625 -6.5 L 3.515625 -6.8125 C 3.15625 -6.78125 2.25 -6.78125 1.84375 -6.78125 C 1.453125 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 5.515625 0 Z M 5.796875 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-32">
<path style="stroke:none;" d="M 2.75 -1.859375 L 2.75 -2.4375 L 0.109375 -2.4375 L 0.109375 -1.859375 Z M 2.75 -1.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 7.75 -4.8125 C 7.75 -6.15625 7.125 -7.03125 5.984375 -7.03125 C 4.90625 -7.03125 4.03125 -6.15625 4 -6.140625 C 3.171875 -5.328125 2.890625 -4.453125 2.890625 -4.421875 C 2.890625 -4.359375 2.9375 -4.359375 2.984375 -4.359375 C 3.15625 -4.359375 3.40625 -4.5 3.40625 -4.5 C 3.65625 -4.671875 3.6875 -4.71875 3.765625 -4.921875 C 4 -5.4375 4.234375 -5.765625 4.453125 -6.03125 C 4.71875 -6.34375 4.9375 -6.484375 5.328125 -6.484375 C 6.234375 -6.484375 6.890625 -5.71875 6.890625 -4.375 C 6.890625 -2.375 5.484375 -0.328125 3.59375 -0.328125 C 2.203125 -0.328125 1.421875 -1.453125 1.421875 -2.875 C 1.421875 -3.671875 1.6875 -5.5 3.65625 -6.625 C 3.78125 -6.703125 3.96875 -6.859375 3.96875 -6.953125 C 3.96875 -7.03125 3.890625 -7.03125 3.859375 -7.03125 C 3.53125 -7.03125 0.5625 -5.453125 0.5625 -2.453125 C 0.5625 -1 1.34375 0.21875 2.9375 0.21875 C 4.90625 0.21875 7.75 -1.75 7.75 -4.8125 Z M 7.75 -4.8125 "/>
</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 5.6875 -1.421875 C 5.6875 -1.53125 5.609375 -1.53125 5.578125 -1.53125 C 5.46875 -1.53125 5.46875 -1.5 5.421875 -1.34375 C 5.21875 -0.671875 4.890625 -0.109375 4.40625 -0.109375 C 4.234375 -0.109375 4.171875 -0.203125 4.171875 -0.4375 C 4.171875 -0.6875 4.25 -0.921875 4.34375 -1.140625 C 4.53125 -1.671875 4.953125 -2.765625 4.953125 -3.34375 C 4.953125 -4 4.53125 -4.40625 3.8125 -4.40625 C 2.90625 -4.40625 2.421875 -3.765625 2.25 -3.53125 C 2.203125 -4.09375 1.796875 -4.40625 1.328125 -4.40625 C 0.875 -4.40625 0.6875 -4.015625 0.59375 -3.84375 C 0.421875 -3.5 0.296875 -2.90625 0.296875 -2.875 C 0.296875 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.515625 -2.765625 0.515625 -2.78125 0.578125 -3 C 0.75 -3.703125 0.953125 -4.1875 1.3125 -4.1875 C 1.5 -4.1875 1.609375 -4.0625 1.609375 -3.734375 C 1.609375 -3.515625 1.578125 -3.40625 1.453125 -2.890625 L 0.875 -0.59375 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.078125 0.109375 C 1.203125 0.109375 1.375 0.03125 1.453125 -0.171875 C 1.453125 -0.1875 1.578125 -0.65625 1.640625 -0.90625 L 1.859375 -1.796875 C 1.90625 -2.03125 1.96875 -2.25 2.03125 -2.46875 L 2.15625 -2.96875 C 2.296875 -3.28125 2.828125 -4.1875 3.78125 -4.1875 C 4.234375 -4.1875 4.3125 -3.8125 4.3125 -3.484375 C 4.3125 -2.875 3.828125 -1.59375 3.671875 -1.171875 C 3.578125 -0.9375 3.5625 -0.8125 3.5625 -0.703125 C 3.5625 -0.234375 3.921875 0.109375 4.390625 0.109375 C 5.328125 0.109375 5.6875 -1.34375 5.6875 -1.421875 Z M 5.6875 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 2.390625 -1.421875 C 2.390625 -1.53125 2.296875 -1.53125 2.265625 -1.53125 C 2.171875 -1.53125 2.15625 -1.484375 2.140625 -1.34375 C 1.96875 -0.703125 1.78125 -0.109375 1.375 -0.109375 C 1.078125 -0.109375 1.078125 -0.421875 1.078125 -0.5625 C 1.078125 -0.8125 1.09375 -0.859375 1.140625 -1.046875 L 2.578125 -6.8125 C 2.578125 -6.8125 2.578125 -6.921875 2.4375 -6.921875 C 2.21875 -6.921875 1.484375 -6.84375 1.21875 -6.8125 C 1.140625 -6.8125 1.03125 -6.796875 1.03125 -6.609375 C 1.03125 -6.5 1.140625 -6.5 1.28125 -6.5 C 1.765625 -6.5 1.78125 -6.40625 1.78125 -6.328125 L 1.75 -6.125 L 0.484375 -1.140625 C 0.453125 -1.03125 0.4375 -0.96875 0.4375 -0.8125 C 0.4375 -0.234375 0.875 0.109375 1.34375 0.109375 C 1.671875 0.109375 1.921875 -0.09375 2.09375 -0.453125 C 2.265625 -0.828125 2.390625 -1.421875 2.390625 -1.421875 Z M 2.390625 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 4.671875 -2.71875 C 4.671875 -3.765625 3.984375 -4.40625 3.078125 -4.40625 C 1.75 -4.40625 0.40625 -2.984375 0.40625 -1.578125 C 0.40625 -0.59375 1.078125 0.109375 2 0.109375 C 3.328125 0.109375 4.671875 -1.265625 4.671875 -2.71875 Z M 3.953125 -3.109375 C 3.953125 -2.71875 3.75 -1.671875 3.375 -1.03125 C 3.015625 -0.453125 2.46875 -0.109375 2.015625 -0.109375 C 1.578125 -0.109375 1.140625 -0.421875 1.140625 -1.203125 C 1.140625 -1.6875 1.40625 -2.765625 1.71875 -3.265625 C 2.21875 -4.03125 2.796875 -4.1875 3.078125 -4.1875 C 3.65625 -4.1875 3.953125 -3.703125 3.953125 -3.109375 Z M 3.953125 -3.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 3.59375 0.671875 L 4.6875 -3.765625 C 4.703125 -3.8125 4.71875 -3.875 4.71875 -3.9375 C 4.71875 -4.109375 4.609375 -4.203125 4.4375 -4.203125 C 4.34375 -4.203125 4.0625 -4.140625 4.03125 -3.78125 C 3.84375 -4.140625 3.5 -4.40625 3.09375 -4.40625 C 1.96875 -4.40625 0.734375 -3.015625 0.734375 -1.578125 C 0.734375 -0.59375 1.328125 0 2.046875 0 C 2.640625 0 3.109375 -0.46875 3.203125 -0.578125 L 3.21875 -0.5625 L 2.890625 0.75 C 2.84375 0.84375 2.515625 1.828125 1.453125 1.828125 C 1.265625 1.828125 0.9375 1.8125 0.65625 1.71875 C 0.953125 1.640625 1.0625 1.375 1.0625 1.203125 C 1.0625 1.046875 0.953125 0.859375 0.6875 0.859375 C 0.46875 0.859375 0.15625 1.03125 0.15625 1.4375 C 0.15625 1.84375 0.515625 2.046875 1.46875 2.046875 C 2.71875 2.046875 3.4375 1.265625 3.59375 0.671875 Z M 3.875 -3.1875 L 3.40625 -1.28125 C 3.34375 -1.015625 3.109375 -0.765625 2.890625 -0.578125 C 2.6875 -0.40625 2.375 -0.21875 2.078125 -0.21875 C 1.578125 -0.21875 1.4375 -0.734375 1.4375 -1.140625 C 1.4375 -1.609375 1.71875 -2.796875 2 -3.296875 C 2.265625 -3.78125 2.6875 -4.1875 3.109375 -4.1875 C 3.765625 -4.1875 3.90625 -3.375 3.90625 -3.328125 C 3.90625 -3.28125 3.890625 -3.21875 3.875 -3.1875 Z M 3.875 -3.1875 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 0.0016875 L 190.283938 0.0016875 " transform="matrix(1,0,0,-1,124.802,126.197)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="130.78" y="137.751"/>
<use xlink:href="#glyph0-2" x="136.315221" y="137.751"/>
<use xlink:href="#glyph0-3" x="140.189676" y="137.751"/>
<use xlink:href="#glyph0-4" x="144.092026" y="137.751"/>
<use xlink:href="#glyph0-5" x="149.627247" y="137.751"/>
<use xlink:href="#glyph0-2" x="154.885507" y="137.751"/>
<use xlink:href="#glyph0-4" x="158.759962" y="137.751"/>
<use xlink:href="#glyph0-3" x="164.295183" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="191.998184" y="137.751"/>
<use xlink:href="#glyph0-7" x="198.086329" y="137.751"/>
<use xlink:href="#glyph0-8" x="202.514705" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="205.272353" y="137.751"/>
<use xlink:href="#glyph0-5" x="209.146808" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="214.136078" y="137.751"/>
<use xlink:href="#glyph0-10" x="219.117378" y="137.751"/>
<use xlink:href="#glyph0-11" x="227.419213" y="137.751"/>
<use xlink:href="#glyph0-12" x="232.954433" y="137.751"/>
<use xlink:href="#glyph0-7" x="235.722043" y="137.751"/>
<use xlink:href="#glyph0-13" x="240.150419" y="137.751"/>
<use xlink:href="#glyph0-8" x="245.408679" y="137.751"/>
<use xlink:href="#glyph0-2" x="248.17629" y="137.751"/>
<use xlink:href="#glyph0-14" x="252.050745" y="137.751"/>
<use xlink:href="#glyph0-2" x="257.032045" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="264.224046" y="137.751"/>
<use xlink:href="#glyph0-16" x="267.268616" y="137.751"/>
<use xlink:href="#glyph0-3" x="272.803837" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="280.023733" y="137.751"/>
<use xlink:href="#glyph0-4" x="286.111878" y="137.751"/>
<use xlink:href="#glyph0-17" x="291.647098" y="137.751"/>
<use xlink:href="#glyph0-3" x="296.628398" y="137.751"/>
<use xlink:href="#glyph0-8" x="300.530749" y="137.751"/>
<use xlink:href="#glyph0-18" x="303.298359" y="137.751"/>
</g>
<path style="fill:none;stroke-width:0.299;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.000375 -0.000125 L 124.089469 -0.000125 " transform="matrix(1,0,0,-1,186.016,143.203)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="191.994" y="154.508"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-20" x="198.360101" y="154.508"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="203.339409" y="154.508"/>
<use xlink:href="#glyph0-3" x="207.767785" y="154.508"/>
<use xlink:href="#glyph0-21" x="211.670135" y="154.508"/>
<use xlink:href="#glyph0-17" x="216.651435" y="154.508"/>
<use xlink:href="#glyph0-7" x="221.632735" y="154.508"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-22" x="283.017295" y="154.508"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="292.419997" y="154.508"/>
<use xlink:href="#glyph0-3" x="297.401297" y="154.508"/>
<use xlink:href="#glyph0-23" x="301.303647" y="154.508"/>
<use xlink:href="#glyph0-2" x="305.233893" y="154.508"/>
</g>
<path style="fill:none;stroke-width:0.498;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 0.00040625 L 190.283938 0.00040625 " transform="matrix(1,0,0,-1,124.802,160.059)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="130.78" y="171.464"/>
<use xlink:href="#glyph0-2" x="136.315221" y="171.464"/>
<use xlink:href="#glyph0-21" x="140.189676" y="171.464"/>
<use xlink:href="#glyph0-24" x="145.170976" y="171.464"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="149.320399" y="171.464"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="191.994" y="171.464"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="200.202" y="171.464"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="204.076" y="171.464"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="210.056" y="171.464"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="287.173" y="171.464"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="295.381" y="171.464"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="299.255" y="171.464"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="305.235" y="171.464"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-27" x="130.78" y="183.419"/>
<use xlink:href="#glyph0-8" x="137.83651" y="183.419"/>
<use xlink:href="#glyph0-28" x="140.60412" y="183.419"/>
<use xlink:href="#glyph0-14" x="146.13934" y="183.419"/>
<use xlink:href="#glyph0-3" x="151.12064" y="183.419"/>
<use xlink:href="#glyph0-29" x="155.022991" y="183.419"/>
<use xlink:href="#glyph0-21" x="160.558211" y="183.419"/>
<use xlink:href="#glyph0-4" x="165.539511" y="183.419"/>
<use xlink:href="#glyph0-10" x="171.074732" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="191.994" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="200.202" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="204.076" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="207.248092" y="183.419"/>
<use xlink:href="#glyph2-4" x="212.076964" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="217.184" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="221.058" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="227.038" y="183.419"/>
<use xlink:href="#glyph0-26" x="230.912455" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="266.317" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="274.525" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="278.399" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="281.571092" y="183.419"/>
<use xlink:href="#glyph2-4" x="286.399964" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="291.506" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="295.381" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="301.361" y="183.419"/>
<use xlink:href="#glyph0-26" x="305.235455" y="183.419"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="130.78" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-30" x="137.146101" y="195.374"/>
<use xlink:href="#glyph0-31" x="144.618051" y="195.374"/>
<use xlink:href="#glyph0-32" x="150.844676" y="195.374"/>
<use xlink:href="#glyph0-27" x="154.165211" y="195.374"/>
<use xlink:href="#glyph0-21" x="161.221721" y="195.374"/>
<use xlink:href="#glyph0-4" x="166.203021" y="195.374"/>
<use xlink:href="#glyph0-10" x="171.738241" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="191.994" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="200.202" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="204.076" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="207.248092" y="195.374"/>
<use xlink:href="#glyph2-4" x="212.076964" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="217.184" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="221.058" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="227.038" y="195.374"/>
<use xlink:href="#glyph0-26" x="230.912455" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="266.317" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="274.525" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="278.399" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="281.571092" y="195.374"/>
<use xlink:href="#glyph2-4" x="286.399964" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="291.507" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="295.381" y="195.374"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="301.361" y="195.374"/>
<use xlink:href="#glyph0-26" x="305.235455" y="195.374"/>
</g>
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 0.00078125 L 190.283938 0.00078125 " transform="matrix(1,0,0,-1,124.802,201.075)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 46 KiB

View File

@ -0,0 +1,24 @@
\documentclass[a4paper]{article}
\usepackage{lmodern}
\usepackage{amssymb,amsmath}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{booktabs}
\begin{document}
\thispagestyle{empty}
\begin{table}[h]
\begin{tabular}{llr}
\toprule
Struktur & \multicolumn{2}{l}{Zeitkomplexität für Zugriff} \\ \cmidrule(r){2-3}
& Average & Worst \\
\midrule
Stack & $\mathcal{O}(n)$ & $\mathcal{O}(n)$ \\
Binärbaum & $\mathcal{O}(log(n))$ & $\mathcal{O}(log(n))$ \\
AVL-Baum & $\mathcal{O}(log(n))$ & $\mathcal{O}(log(n))$ \\
\bottomrule
\end{tabular}
\end{table}
\end{document}

View File

@ -0,0 +1,208 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="143pt" height="60pt" viewBox="0 0 143 60" version="1.1">
<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 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 Z M 4.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 L 1.390625 1.90625 L 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 3.15625 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 Z M 3.3125 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 Z M 3.484375 -2.515625 L 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 3.484375 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 3.3125 0 L 3.3125 -0.3125 L 3.0625 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.0625 -6.5 L 3.3125 -6.5 L 3.3125 -6.8125 C 2.96875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.625 -6.78125 0.28125 -6.8125 L 0.28125 -6.5 L 0.53125 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.53125 -0.3125 L 0.28125 -0.3125 L 0.28125 0 C 0.625 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.1875 -0.03125 2.96875 -0.03125 3.3125 0 Z M 3.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 L 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 Z M 3.5625 -6.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 2.09375 0.5 L 2.09375 -4.40625 L 0.578125 -4.296875 L 0.578125 -3.984375 C 1.34375 -3.984375 1.4375 -3.921875 1.4375 -3.421875 L 1.4375 0.515625 C 1.4375 0.96875 1.34375 1.828125 0.703125 1.828125 C 0.65625 1.828125 0.421875 1.828125 0.171875 1.6875 C 0.3125 1.65625 0.515625 1.515625 0.515625 1.25 C 0.515625 0.984375 0.34375 0.78125 0.0625 0.78125 C -0.21875 0.78125 -0.40625 0.984375 -0.40625 1.25 C -0.40625 1.765625 0.15625 2.046875 0.734375 2.046875 C 1.46875 2.046875 2.09375 1.40625 2.09375 0.5 Z M 2.09375 -6.015625 C 2.09375 -6.296875 1.859375 -6.546875 1.5625 -6.546875 C 1.21875 -6.546875 1.03125 -6.265625 1.03125 -6.015625 C 1.03125 -5.75 1.25 -5.5 1.5625 -5.5 C 1.890625 -5.5 2.09375 -5.765625 2.09375 -6.015625 Z M 2.09375 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 -0.00159375 L 142.1355 -0.00159375 " transform="matrix(1,0,0,-1,0.802,1.307)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="6.78" y="12.861"/>
<use xlink:href="#glyph0-2" x="12.315221" y="12.861"/>
<use xlink:href="#glyph0-3" x="17.850441" y="12.861"/>
<use xlink:href="#glyph0-4" x="22.831741" y="12.861"/>
<use xlink:href="#glyph0-5" x="25.599351" y="12.861"/>
<use xlink:href="#glyph0-6" x="29.473807" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="37.219728" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="54.156148" y="12.861"/>
<use xlink:href="#glyph0-2" x="59.691369" y="12.861"/>
<use xlink:href="#glyph0-3" x="65.226589" y="12.861"/>
<use xlink:href="#glyph0-4" x="70.207889" y="12.861"/>
<use xlink:href="#glyph0-5" x="72.975499" y="12.861"/>
<use xlink:href="#glyph0-6" x="76.849955" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="84.595876" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="101.532296" y="12.861"/>
<use xlink:href="#glyph0-2" x="107.067517" y="12.861"/>
<use xlink:href="#glyph0-3" x="112.602737" y="12.861"/>
<use xlink:href="#glyph0-4" x="117.584037" y="12.861"/>
<use xlink:href="#glyph0-5" x="120.351647" y="12.861"/>
<use xlink:href="#glyph0-6" x="124.226103" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="131.972024" y="12.861"/>
</g>
<path style="fill:none;stroke-width:0.498;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 0.00184375 L 142.1355 0.00184375 " transform="matrix(1,0,0,-1,0.802,18.412)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="6.78" y="29.817"/>
<use xlink:href="#glyph0-11" x="10.377495" y="29.817"/>
<use xlink:href="#glyph0-12" x="15.912715" y="29.817"/>
<use xlink:href="#glyph0-3" x="21.447936" y="29.817"/>
<use xlink:href="#glyph0-4" x="26.429236" y="29.817"/>
<use xlink:href="#glyph0-5" x="29.196846" y="29.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="36.388847" y="29.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="54.162126" y="29.817"/>
<use xlink:href="#glyph0-11" x="57.75962" y="29.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="63.284878" y="29.817"/>
<use xlink:href="#glyph0-3" x="68.820099" y="29.817"/>
<use xlink:href="#glyph0-4" x="73.801399" y="29.817"/>
<use xlink:href="#glyph0-5" x="76.569009" y="29.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="83.770973" y="29.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="101.540266" y="29.817"/>
<use xlink:href="#glyph0-11" x="105.137761" y="29.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="110.663019" y="29.817"/>
<use xlink:href="#glyph0-3" x="116.19824" y="29.817"/>
<use xlink:href="#glyph0-4" x="121.17954" y="29.817"/>
<use xlink:href="#glyph0-5" x="123.94715" y="29.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="131.149113" y="29.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="6.78" y="41.772"/>
<use xlink:href="#glyph0-11" x="10.377495" y="41.772"/>
<use xlink:href="#glyph0-12" x="15.912715" y="41.772"/>
<use xlink:href="#glyph0-3" x="21.447936" y="41.772"/>
<use xlink:href="#glyph0-4" x="26.429236" y="41.772"/>
<use xlink:href="#glyph0-5" x="29.196846" y="41.772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="36.388847" y="41.772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="54.157144" y="41.772"/>
<use xlink:href="#glyph0-11" x="57.754639" y="41.772"/>
<use xlink:href="#glyph0-12" x="63.28986" y="41.772"/>
<use xlink:href="#glyph0-3" x="68.82508" y="41.772"/>
<use xlink:href="#glyph0-4" x="73.80638" y="41.772"/>
<use xlink:href="#glyph0-5" x="76.573991" y="41.772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="83.765992" y="41.772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="101.535285" y="41.772"/>
<use xlink:href="#glyph0-11" x="105.13278" y="41.772"/>
<use xlink:href="#glyph0-12" x="110.668" y="41.772"/>
<use xlink:href="#glyph0-3" x="116.203221" y="41.772"/>
<use xlink:href="#glyph0-4" x="121.184521" y="41.772"/>
<use xlink:href="#glyph0-5" x="123.952131" y="41.772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="131.144132" y="41.772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="6.78" y="53.728"/>
<use xlink:href="#glyph0-11" x="10.377495" y="53.728"/>
<use xlink:href="#glyph0-12" x="15.912715" y="53.728"/>
<use xlink:href="#glyph0-3" x="21.447936" y="53.728"/>
<use xlink:href="#glyph0-4" x="26.429236" y="53.728"/>
<use xlink:href="#glyph0-5" x="29.196846" y="53.728"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="36.388847" y="53.728"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="54.160133" y="53.728"/>
<use xlink:href="#glyph0-11" x="57.757628" y="53.728"/>
<use xlink:href="#glyph0-12" x="63.292849" y="53.728"/>
<use xlink:href="#glyph0-3" x="68.828069" y="53.728"/>
<use xlink:href="#glyph0-4" x="73.809369" y="53.728"/>
<use xlink:href="#glyph0-5" x="76.576979" y="53.728"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="83.76898" y="53.728"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="101.538274" y="53.728"/>
<use xlink:href="#glyph0-11" x="105.135769" y="53.728"/>
<use xlink:href="#glyph0-12" x="110.670989" y="53.728"/>
<use xlink:href="#glyph0-3" x="116.20621" y="53.728"/>
<use xlink:href="#glyph0-4" x="121.18751" y="53.728"/>
<use xlink:href="#glyph0-5" x="123.95512" y="53.728"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="131.147121" y="53.728"/>
</g>
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 -0.0016875 L 142.1355 -0.0016875 " transform="matrix(1,0,0,-1,0.802,59.428)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,208 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" version="1.1">
<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 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 Z M 4.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 L 1.390625 1.90625 L 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 3.15625 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 Z M 3.3125 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 Z M 3.484375 -2.515625 L 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 3.484375 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 3.3125 0 L 3.3125 -0.3125 L 3.0625 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.0625 -6.5 L 3.3125 -6.5 L 3.3125 -6.8125 C 2.96875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.625 -6.78125 0.28125 -6.8125 L 0.28125 -6.5 L 0.53125 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.53125 -0.3125 L 0.28125 -0.3125 L 0.28125 0 C 0.625 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.1875 -0.03125 2.96875 -0.03125 3.3125 0 Z M 3.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 L 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 Z M 3.5625 -6.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 2.09375 0.5 L 2.09375 -4.40625 L 0.578125 -4.296875 L 0.578125 -3.984375 C 1.34375 -3.984375 1.4375 -3.921875 1.4375 -3.421875 L 1.4375 0.515625 C 1.4375 0.96875 1.34375 1.828125 0.703125 1.828125 C 0.65625 1.828125 0.421875 1.828125 0.171875 1.6875 C 0.3125 1.65625 0.515625 1.515625 0.515625 1.25 C 0.515625 0.984375 0.34375 0.78125 0.0625 0.78125 C -0.21875 0.78125 -0.40625 0.984375 -0.40625 1.25 C -0.40625 1.765625 0.15625 2.046875 0.734375 2.046875 C 1.46875 2.046875 2.09375 1.40625 2.09375 0.5 Z M 2.09375 -6.015625 C 2.09375 -6.296875 1.859375 -6.546875 1.5625 -6.546875 C 1.21875 -6.546875 1.03125 -6.265625 1.03125 -6.015625 C 1.03125 -5.75 1.25 -5.5 1.5625 -5.5 C 1.890625 -5.5 2.09375 -5.765625 2.09375 -6.015625 Z M 2.09375 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 0.0016875 L 142.1355 0.0016875 " transform="matrix(1,0,0,-1,124.802,126.197)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="130.78" y="137.751"/>
<use xlink:href="#glyph0-2" x="136.315221" y="137.751"/>
<use xlink:href="#glyph0-3" x="141.850441" y="137.751"/>
<use xlink:href="#glyph0-4" x="146.831741" y="137.751"/>
<use xlink:href="#glyph0-5" x="149.599351" y="137.751"/>
<use xlink:href="#glyph0-6" x="153.473807" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="161.219728" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="178.156148" y="137.751"/>
<use xlink:href="#glyph0-2" x="183.691369" y="137.751"/>
<use xlink:href="#glyph0-3" x="189.226589" y="137.751"/>
<use xlink:href="#glyph0-4" x="194.207889" y="137.751"/>
<use xlink:href="#glyph0-5" x="196.975499" y="137.751"/>
<use xlink:href="#glyph0-6" x="200.849955" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="208.595876" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="225.532296" y="137.751"/>
<use xlink:href="#glyph0-2" x="231.067517" y="137.751"/>
<use xlink:href="#glyph0-3" x="236.602737" y="137.751"/>
<use xlink:href="#glyph0-4" x="241.584037" y="137.751"/>
<use xlink:href="#glyph0-5" x="244.351647" y="137.751"/>
<use xlink:href="#glyph0-6" x="248.226103" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="255.972024" y="137.751"/>
</g>
<path style="fill:none;stroke-width:0.498;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 0.00121875 L 142.1355 0.00121875 " transform="matrix(1,0,0,-1,124.802,143.302)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="130.78" y="154.707"/>
<use xlink:href="#glyph0-11" x="134.377495" y="154.707"/>
<use xlink:href="#glyph0-12" x="139.912715" y="154.707"/>
<use xlink:href="#glyph0-3" x="145.447936" y="154.707"/>
<use xlink:href="#glyph0-4" x="150.429236" y="154.707"/>
<use xlink:href="#glyph0-5" x="153.196846" y="154.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="160.388847" y="154.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="178.162126" y="154.707"/>
<use xlink:href="#glyph0-11" x="181.75962" y="154.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="187.284878" y="154.707"/>
<use xlink:href="#glyph0-3" x="192.820099" y="154.707"/>
<use xlink:href="#glyph0-4" x="197.801399" y="154.707"/>
<use xlink:href="#glyph0-5" x="200.569009" y="154.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="207.770973" y="154.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="225.540266" y="154.707"/>
<use xlink:href="#glyph0-11" x="229.137761" y="154.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="234.663019" y="154.707"/>
<use xlink:href="#glyph0-3" x="240.19824" y="154.707"/>
<use xlink:href="#glyph0-4" x="245.17954" y="154.707"/>
<use xlink:href="#glyph0-5" x="247.94715" y="154.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="255.149113" y="154.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="130.78" y="166.662"/>
<use xlink:href="#glyph0-11" x="134.377495" y="166.662"/>
<use xlink:href="#glyph0-12" x="139.912715" y="166.662"/>
<use xlink:href="#glyph0-3" x="145.447936" y="166.662"/>
<use xlink:href="#glyph0-4" x="150.429236" y="166.662"/>
<use xlink:href="#glyph0-5" x="153.196846" y="166.662"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="160.388847" y="166.662"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="178.157144" y="166.662"/>
<use xlink:href="#glyph0-11" x="181.754639" y="166.662"/>
<use xlink:href="#glyph0-12" x="187.28986" y="166.662"/>
<use xlink:href="#glyph0-3" x="192.82508" y="166.662"/>
<use xlink:href="#glyph0-4" x="197.80638" y="166.662"/>
<use xlink:href="#glyph0-5" x="200.573991" y="166.662"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="207.765992" y="166.662"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="225.535285" y="166.662"/>
<use xlink:href="#glyph0-11" x="229.13278" y="166.662"/>
<use xlink:href="#glyph0-12" x="234.668" y="166.662"/>
<use xlink:href="#glyph0-3" x="240.203221" y="166.662"/>
<use xlink:href="#glyph0-4" x="245.184521" y="166.662"/>
<use xlink:href="#glyph0-5" x="247.952131" y="166.662"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="255.144132" y="166.662"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="130.78" y="178.618"/>
<use xlink:href="#glyph0-11" x="134.377495" y="178.618"/>
<use xlink:href="#glyph0-12" x="139.912715" y="178.618"/>
<use xlink:href="#glyph0-3" x="145.447936" y="178.618"/>
<use xlink:href="#glyph0-4" x="150.429236" y="178.618"/>
<use xlink:href="#glyph0-5" x="153.196846" y="178.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="160.388847" y="178.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="178.160133" y="178.618"/>
<use xlink:href="#glyph0-11" x="181.757628" y="178.618"/>
<use xlink:href="#glyph0-12" x="187.292849" y="178.618"/>
<use xlink:href="#glyph0-3" x="192.828069" y="178.618"/>
<use xlink:href="#glyph0-4" x="197.809369" y="178.618"/>
<use xlink:href="#glyph0-5" x="200.576979" y="178.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="207.76898" y="178.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="225.538274" y="178.618"/>
<use xlink:href="#glyph0-11" x="229.135769" y="178.618"/>
<use xlink:href="#glyph0-12" x="234.670989" y="178.618"/>
<use xlink:href="#glyph0-3" x="240.20621" y="178.618"/>
<use xlink:href="#glyph0-4" x="245.18751" y="178.618"/>
<use xlink:href="#glyph0-5" x="247.95512" y="178.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="255.147121" y="178.618"/>
</g>
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 0.00159375 L 142.1355 0.00159375 " transform="matrix(1,0,0,-1,124.802,184.318)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,23 @@
\documentclass[a4paper]{article}
\usepackage{lmodern}
\usepackage{amssymb,amsmath}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{booktabs}
\begin{document}
\thispagestyle{empty}
\begin{table}[h]
\begin{tabular}{lll}
\toprule
Spalte 1 & Spalte 2 & Spalte 3 \\
\midrule
Inhalt a & Inhalt b & Inhalt c \\
Inhalt e & Inhalt f & Inhalt g \\
Inhalt i & Inhalt j & Inhalt k \\
\bottomrule
\end{tabular}
\end{table}
\end{document}

View File

@ -0,0 +1,408 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="330pt" height="80pt" viewBox="0 0 330 80" version="1.1">
<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 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 Z M 4.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 L 1.390625 1.90625 L 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 3.15625 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 Z M 3.484375 -2.515625 L 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 3.484375 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 7.140625 0 L 7.140625 -0.3125 L 6.96875 -0.3125 C 6.375 -0.3125 6.234375 -0.375 6.125 -0.703125 L 3.96875 -6.9375 C 3.921875 -7.0625 3.890625 -7.140625 3.734375 -7.140625 C 3.578125 -7.140625 3.546875 -7.078125 3.5 -6.9375 L 1.4375 -0.984375 C 1.25 -0.46875 0.859375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.328125 -0.03125 L 2.484375 0 L 2.484375 -0.3125 C 1.984375 -0.3125 1.734375 -0.5625 1.734375 -0.8125 C 1.734375 -0.84375 1.75 -0.953125 1.75 -0.96875 L 2.21875 -2.265625 L 4.671875 -2.265625 L 5.203125 -0.75 C 5.21875 -0.703125 5.234375 -0.640625 5.234375 -0.609375 C 5.234375 -0.3125 4.671875 -0.3125 4.40625 -0.3125 L 4.40625 0 C 4.765625 -0.03125 5.46875 -0.03125 5.84375 -0.03125 Z M 4.5625 -2.578125 L 2.328125 -2.578125 L 3.4375 -5.828125 Z M 4.5625 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 Z M 3.3125 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 6.5 -2.578125 L 6.25 -2.578125 C 6 -1.03125 5.765625 -0.3125 4.0625 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -3.375 L 3.140625 -3.375 C 4.109375 -3.375 4.21875 -3.046875 4.21875 -2.203125 L 4.46875 -2.203125 L 4.46875 -4.84375 L 4.21875 -4.84375 C 4.21875 -3.984375 4.109375 -3.671875 3.140625 -3.671875 L 2.25 -3.671875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 4.015625 -6.46875 C 5.546875 -6.46875 5.8125 -5.921875 5.96875 -4.53125 L 6.21875 -4.53125 L 5.9375 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 6.078125 0 Z M 6.5 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 2.09375 0.5 L 2.09375 -4.40625 L 0.578125 -4.296875 L 0.578125 -3.984375 C 1.34375 -3.984375 1.4375 -3.921875 1.4375 -3.421875 L 1.4375 0.515625 C 1.4375 0.96875 1.34375 1.828125 0.703125 1.828125 C 0.65625 1.828125 0.421875 1.828125 0.171875 1.6875 C 0.3125 1.65625 0.515625 1.515625 0.515625 1.25 C 0.515625 0.984375 0.34375 0.78125 0.0625 0.78125 C -0.21875 0.78125 -0.40625 0.984375 -0.40625 1.25 C -0.40625 1.765625 0.15625 2.046875 0.734375 2.046875 C 1.46875 2.046875 2.09375 1.40625 2.09375 0.5 Z M 2.09375 -6.015625 C 2.09375 -6.296875 1.859375 -6.546875 1.5625 -6.546875 C 1.21875 -6.546875 1.03125 -6.265625 1.03125 -6.015625 C 1.03125 -5.75 1.25 -5.5 1.5625 -5.5 C 1.890625 -5.5 2.09375 -5.765625 2.09375 -6.015625 Z M 2.09375 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 7.28125 -6.5 L 7.28125 -6.8125 C 6.96875 -6.78125 6.5625 -6.78125 6.3125 -6.78125 L 5.171875 -6.8125 L 5.171875 -6.5 C 5.6875 -6.484375 5.90625 -6.234375 5.90625 -6 C 5.90625 -5.921875 5.875 -5.859375 5.859375 -5.796875 L 4.03125 -1 L 2.125 -6.03125 C 2.0625 -6.171875 2.0625 -6.203125 2.0625 -6.203125 C 2.0625 -6.5 2.625 -6.5 2.875 -6.5 L 2.875 -6.8125 C 2.515625 -6.78125 1.828125 -6.78125 1.453125 -6.78125 L 0.1875 -6.8125 L 0.1875 -6.5 C 0.84375 -6.5 1.03125 -6.5 1.171875 -6.125 L 3.484375 0 C 3.546875 0.1875 3.59375 0.21875 3.734375 0.21875 C 3.890625 0.21875 3.921875 0.171875 3.96875 0.03125 L 6.1875 -5.828125 C 6.328125 -6.203125 6.59375 -6.484375 7.28125 -6.5 Z M 7.28125 -6.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 6.625 -2.328125 C 6.625 -2.421875 6.625 -2.5 6.5 -2.5 C 6.390625 -2.5 6.390625 -2.4375 6.375 -2.328125 C 6.296875 -0.90625 5.234375 -0.09375 4.140625 -0.09375 C 3.53125 -0.09375 1.578125 -0.421875 1.578125 -3.40625 C 1.578125 -6.375 3.53125 -6.71875 4.140625 -6.71875 C 5.21875 -6.71875 6.109375 -5.8125 6.3125 -4.359375 C 6.328125 -4.21875 6.328125 -4.1875 6.46875 -4.1875 C 6.625 -4.1875 6.625 -4.21875 6.625 -4.421875 L 6.625 -6.78125 C 6.625 -6.953125 6.625 -7.03125 6.515625 -7.03125 C 6.484375 -7.03125 6.4375 -7.03125 6.359375 -6.90625 L 5.859375 -6.171875 C 5.5 -6.53125 4.984375 -7.03125 4.03125 -7.03125 C 2.15625 -7.03125 0.5625 -5.4375 0.5625 -3.40625 C 0.5625 -1.34375 2.171875 0.21875 4.03125 0.21875 C 5.65625 0.21875 6.625 -1.171875 6.625 -2.328125 Z M 6.625 -2.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 7.1875 -2.5 C 7.1875 -2.6875 7 -2.6875 6.859375 -2.6875 L 4.078125 -2.6875 L 4.078125 -5.484375 C 4.078125 -5.625 4.078125 -5.8125 3.875 -5.8125 C 3.671875 -5.8125 3.671875 -5.625 3.671875 -5.484375 L 3.671875 -2.6875 L 0.890625 -2.6875 C 0.75 -2.6875 0.5625 -2.6875 0.5625 -2.5 C 0.5625 -2.296875 0.75 -2.296875 0.890625 -2.296875 L 3.671875 -2.296875 L 3.671875 0.5 C 3.671875 0.640625 3.671875 0.828125 3.875 0.828125 C 4.078125 0.828125 4.078125 0.640625 4.078125 0.5 L 4.078125 -2.296875 L 6.859375 -2.296875 C 7 -2.296875 7.1875 -2.296875 7.1875 -2.5 Z M 7.1875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 Z M 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 L 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 Z M 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 Z M 5.5 -1.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 4.5625 -3.28125 C 4.5625 -5.96875 3.40625 -6.640625 2.515625 -6.640625 C 1.96875 -6.640625 1.484375 -6.453125 1.0625 -6.015625 C 0.640625 -5.5625 0.421875 -5.140625 0.421875 -4.390625 C 0.421875 -3.15625 1.296875 -2.171875 2.40625 -2.171875 C 3.015625 -2.171875 3.421875 -2.59375 3.65625 -3.171875 L 3.65625 -2.84375 C 3.65625 -0.515625 2.625 -0.0625 2.046875 -0.0625 C 1.875 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.25 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.34375 0.21875 4.5625 -1.140625 4.5625 -3.28125 Z M 3.640625 -4.203125 C 3.640625 -3.375 3.296875 -2.40625 2.421875 -2.40625 C 2.265625 -2.40625 1.796875 -2.40625 1.5 -3.03125 C 1.3125 -3.40625 1.3125 -3.890625 1.3125 -4.390625 C 1.3125 -4.921875 1.3125 -5.390625 1.53125 -5.765625 C 1.796875 -6.265625 2.171875 -6.390625 2.515625 -6.390625 C 2.984375 -6.390625 3.3125 -6.046875 3.484375 -5.609375 C 3.59375 -5.28125 3.640625 -4.65625 3.640625 -4.203125 Z M 3.640625 -4.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 4.5625 -1.671875 C 4.5625 -2.03125 4.453125 -2.484375 4.0625 -2.90625 C 3.875 -3.109375 3.71875 -3.203125 3.078125 -3.609375 C 3.796875 -3.984375 4.28125 -4.5 4.28125 -5.15625 C 4.28125 -6.078125 3.40625 -6.640625 2.5 -6.640625 C 1.5 -6.640625 0.6875 -5.90625 0.6875 -4.96875 C 0.6875 -4.796875 0.703125 -4.34375 1.125 -3.875 C 1.234375 -3.765625 1.609375 -3.515625 1.859375 -3.34375 C 1.28125 -3.046875 0.421875 -2.5 0.421875 -1.5 C 0.421875 -0.453125 1.4375 0.21875 2.484375 0.21875 C 3.609375 0.21875 4.5625 -0.609375 4.5625 -1.671875 Z M 3.84375 -5.15625 C 3.84375 -4.578125 3.453125 -4.109375 2.859375 -3.765625 L 1.625 -4.5625 C 1.171875 -4.859375 1.125 -5.1875 1.125 -5.359375 C 1.125 -5.96875 1.78125 -6.390625 2.484375 -6.390625 C 3.203125 -6.390625 3.84375 -5.875 3.84375 -5.15625 Z M 4.0625 -1.3125 C 4.0625 -0.578125 3.3125 -0.0625 2.5 -0.0625 C 1.640625 -0.0625 0.921875 -0.671875 0.921875 -1.5 C 0.921875 -2.078125 1.234375 -2.71875 2.078125 -3.1875 L 3.3125 -2.40625 C 3.59375 -2.21875 4.0625 -1.921875 4.0625 -1.3125 Z M 4.0625 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-27">
<path style="stroke:none;" d="M 4.46875 -2 C 4.46875 -3.1875 3.65625 -4.1875 2.578125 -4.1875 C 2.109375 -4.1875 1.671875 -4.03125 1.3125 -3.671875 L 1.3125 -5.625 C 1.515625 -5.5625 1.84375 -5.5 2.15625 -5.5 C 3.390625 -5.5 4.09375 -6.40625 4.09375 -6.53125 C 4.09375 -6.59375 4.0625 -6.640625 3.984375 -6.640625 C 3.984375 -6.640625 3.953125 -6.640625 3.90625 -6.609375 C 3.703125 -6.515625 3.21875 -6.3125 2.546875 -6.3125 C 2.15625 -6.3125 1.6875 -6.390625 1.21875 -6.59375 C 1.140625 -6.625 1.109375 -6.625 1.109375 -6.625 C 1 -6.625 1 -6.546875 1 -6.390625 L 1 -3.4375 C 1 -3.265625 1 -3.1875 1.140625 -3.1875 C 1.21875 -3.1875 1.234375 -3.203125 1.28125 -3.265625 C 1.390625 -3.421875 1.75 -3.96875 2.5625 -3.96875 C 3.078125 -3.96875 3.328125 -3.515625 3.40625 -3.328125 C 3.5625 -2.953125 3.59375 -2.578125 3.59375 -2.078125 C 3.59375 -1.71875 3.59375 -1.125 3.34375 -0.703125 C 3.109375 -0.3125 2.734375 -0.0625 2.28125 -0.0625 C 1.5625 -0.0625 0.984375 -0.59375 0.8125 -1.171875 C 0.84375 -1.171875 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.890625 1.3125 -2.140625 0.984375 -2.140625 C 0.84375 -2.140625 0.5 -2.0625 0.5 -1.609375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.453125 0.21875 4.46875 -0.734375 4.46875 -2 Z M 4.46875 -2 "/>
</symbol>
<symbol overflow="visible" id="glyph0-28">
<path style="stroke:none;" d="M 3.3125 0 L 3.3125 -0.3125 L 3.0625 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.0625 -6.5 L 3.3125 -6.5 L 3.3125 -6.8125 C 2.96875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.625 -6.78125 0.28125 -6.8125 L 0.28125 -6.5 L 0.53125 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.53125 -0.3125 L 0.28125 -0.3125 L 0.28125 0 C 0.625 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.1875 -0.03125 2.96875 -0.03125 3.3125 0 Z M 3.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-29">
<path style="stroke:none;" d="M 7.1875 -3.375 C 7.1875 -5.40625 5.6875 -7.03125 3.875 -7.03125 C 2.078125 -7.03125 0.5625 -5.4375 0.5625 -3.375 C 0.5625 -1.328125 2.09375 0.21875 3.875 0.21875 C 5.6875 0.21875 7.1875 -1.359375 7.1875 -3.375 Z M 6.15625 -3.515625 C 6.15625 -0.875 4.796875 -0.046875 3.875 -0.046875 C 2.921875 -0.046875 1.578125 -0.921875 1.578125 -3.515625 C 1.578125 -6.09375 3.046875 -6.78125 3.875 -6.78125 C 4.734375 -6.78125 6.15625 -6.078125 6.15625 -3.515625 Z M 6.15625 -3.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-30">
<path style="stroke:none;" d="M 4.421875 -7.28125 C 4.421875 -7.390625 4.328125 -7.484375 4.21875 -7.484375 C 4.078125 -7.484375 4.03125 -7.375 4 -7.28125 L 0.609375 2.109375 C 0.5625 2.25 0.5625 2.296875 0.5625 2.296875 C 0.5625 2.40625 0.640625 2.5 0.75 2.5 C 0.890625 2.5 0.9375 2.390625 0.96875 2.296875 L 4.359375 -7.09375 C 4.421875 -7.234375 4.421875 -7.28125 4.421875 -7.28125 Z M 4.421875 -7.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-31">
<path style="stroke:none;" d="M 4.6875 -1.640625 L 4.6875 -1.953125 L 3.703125 -1.953125 L 3.703125 -6.484375 C 3.703125 -6.6875 3.703125 -6.75 3.53125 -6.75 C 3.453125 -6.75 3.421875 -6.75 3.34375 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 L 2.9375 -1.640625 L 2.9375 -0.78125 C 2.9375 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.96875 -0.3125 L 1.96875 0 C 2.375 -0.03125 2.890625 -0.03125 3.3125 -0.03125 C 3.734375 -0.03125 4.25 -0.03125 4.671875 0 L 4.671875 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.703125 -0.421875 3.703125 -0.78125 L 3.703125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.671875 Z M 2.984375 -1.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-32">
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-33">
<path style="stroke:none;" d="M 1.90625 -3.765625 C 1.90625 -4.0625 1.671875 -4.296875 1.390625 -4.296875 C 1.09375 -4.296875 0.859375 -4.0625 0.859375 -3.765625 C 0.859375 -3.484375 1.09375 -3.234375 1.390625 -3.234375 C 1.671875 -3.234375 1.90625 -3.484375 1.90625 -3.765625 Z M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-34">
<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 Z M 3.765625 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-35">
<path style="stroke:none;" d="M 4.828125 -6.421875 L 2.40625 -6.421875 C 1.203125 -6.421875 1.171875 -6.546875 1.140625 -6.734375 L 0.890625 -6.734375 L 0.5625 -4.6875 L 0.8125 -4.6875 C 0.84375 -4.84375 0.921875 -5.46875 1.0625 -5.59375 C 1.125 -5.65625 1.90625 -5.65625 2.03125 -5.65625 L 4.09375 -5.65625 L 2.984375 -4.078125 C 2.078125 -2.734375 1.75 -1.34375 1.75 -0.328125 C 1.75 -0.234375 1.75 0.21875 2.21875 0.21875 C 2.671875 0.21875 2.671875 -0.234375 2.671875 -0.328125 L 2.671875 -0.84375 C 2.671875 -1.390625 2.703125 -1.9375 2.78125 -2.46875 C 2.828125 -2.703125 2.953125 -3.5625 3.40625 -4.171875 L 4.75 -6.078125 C 4.828125 -6.1875 4.828125 -6.203125 4.828125 -6.421875 Z M 4.828125 -6.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-36">
<path style="stroke:none;" d="M 4.640625 -6.5 L 4.640625 -6.8125 L 3.34375 -6.78125 C 2.9375 -6.78125 2.046875 -6.78125 1.671875 -6.8125 L 1.671875 -6.5 L 2.03125 -6.5 C 3.015625 -6.5 3.015625 -6.375 3.015625 -6.015625 L 3.015625 -1.46875 C 3.015625 -0.5625 2.515625 0 1.984375 0 C 1.921875 0 1.25 0 0.890625 -0.578125 C 1.40625 -0.578125 1.53125 -0.875 1.53125 -1.140625 C 1.53125 -1.5 1.25 -1.6875 0.96875 -1.6875 C 0.75 -1.6875 0.40625 -1.5625 0.40625 -1.109375 C 0.40625 -0.375 1.109375 0.21875 2 0.21875 C 3.015625 0.21875 3.75 -0.484375 3.859375 -1.21875 C 3.875 -1.3125 3.875 -1.328125 3.875 -1.671875 L 3.875 -6.09375 C 3.875 -6.5 4 -6.5 4.640625 -6.5 Z M 4.640625 -6.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-37">
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.8125 -3.984375 3.921875 -3.75 3.921875 -3.5625 C 3.921875 -3.46875 3.90625 -3.421875 3.875 -3.3125 L 2.84375 -0.78125 L 1.734375 -3.5625 C 1.671875 -3.6875 1.671875 -3.734375 1.671875 -3.734375 C 1.671875 -3.984375 2.0625 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.8125 -3.984375 0.859375 -3.921875 0.984375 -3.625 L 2.421875 -0.078125 C 2.484375 0.0625 2.5 0.109375 2.625 0.109375 C 2.765625 0.109375 2.796875 0.015625 2.84375 -0.078125 L 4.140625 -3.3125 C 4.234375 -3.546875 4.40625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-38">
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-39">
<path style="stroke:none;" d="M 7.328125 -2.40625 L 7.328125 -2.71875 L 6.109375 -2.6875 C 5.71875 -2.6875 4.859375 -2.6875 4.5 -2.71875 L 4.5 -2.40625 L 4.828125 -2.40625 C 5.71875 -2.40625 5.75 -2.296875 5.75 -1.9375 L 5.75 -1.296875 C 5.75 -0.171875 4.484375 -0.09375 4.203125 -0.09375 C 3.5625 -0.09375 1.578125 -0.4375 1.578125 -3.40625 C 1.578125 -6.390625 3.546875 -6.71875 4.140625 -6.71875 C 5.21875 -6.71875 6.125 -5.828125 6.3125 -4.359375 C 6.34375 -4.21875 6.34375 -4.1875 6.484375 -4.1875 C 6.640625 -4.1875 6.640625 -4.21875 6.640625 -4.421875 L 6.640625 -6.78125 C 6.640625 -6.953125 6.640625 -7.03125 6.53125 -7.03125 C 6.484375 -7.03125 6.453125 -7.03125 6.375 -6.90625 L 5.875 -6.171875 C 5.546875 -6.484375 5.015625 -7.03125 4.03125 -7.03125 C 2.171875 -7.03125 0.5625 -5.453125 0.5625 -3.40625 C 0.5625 -1.359375 2.15625 0.21875 4.046875 0.21875 C 4.78125 0.21875 5.578125 -0.046875 5.90625 -0.625 C 6.046875 -0.40625 6.4375 -0.015625 6.546875 -0.015625 C 6.640625 -0.015625 6.640625 -0.09375 6.640625 -0.234375 L 6.640625 -1.96875 C 6.640625 -2.359375 6.671875 -2.40625 7.328125 -2.40625 Z M 7.328125 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-40">
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-41">
<path style="stroke:none;" d="M 6.21875 -4.953125 C 6.21875 -5.9375 5.234375 -6.8125 3.875 -6.8125 L 0.34375 -6.8125 L 0.34375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.375 -6.390625 1.375 -6.03125 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.4375 -0.03125 1.8125 -0.03125 C 2.1875 -0.03125 2.9375 -0.03125 3.296875 0 L 3.296875 -0.3125 L 3.046875 -0.3125 C 2.28125 -0.3125 2.265625 -0.421875 2.265625 -0.78125 L 2.265625 -3.15625 L 3.953125 -3.15625 C 5.140625 -3.15625 6.21875 -3.953125 6.21875 -4.953125 Z M 5.1875 -4.953125 C 5.1875 -4.484375 5.1875 -3.40625 3.609375 -3.40625 L 2.234375 -3.40625 L 2.234375 -6.09375 C 2.234375 -6.4375 2.25 -6.5 2.71875 -6.5 L 3.609375 -6.5 C 5.1875 -6.5 5.1875 -5.4375 5.1875 -4.953125 Z M 5.1875 -4.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-42">
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.765625 -3.984375 3.921875 -3.8125 3.921875 -3.5625 C 3.921875 -3.453125 3.90625 -3.4375 3.859375 -3.3125 L 2.84375 -0.875 L 1.75 -3.546875 C 1.703125 -3.65625 1.6875 -3.6875 1.6875 -3.734375 C 1.6875 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.671875 -3.984375 0.859375 -3.984375 1 -3.640625 L 2.5 0 L 2.25 0.59375 C 2.03125 1.140625 1.75 1.828125 1.109375 1.828125 C 1.0625 1.828125 0.828125 1.828125 0.640625 1.640625 C 0.953125 1.609375 1.03125 1.390625 1.03125 1.21875 C 1.03125 0.96875 0.84375 0.8125 0.609375 0.8125 C 0.40625 0.8125 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.6875 0.609375 2.046875 1.109375 2.046875 C 1.734375 2.046875 2.140625 1.46875 2.375 0.90625 L 4.140625 -3.34375 C 4.390625 -3.984375 4.90625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-43">
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 L 3.78125 0.109375 Z M 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -1.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-44">
<path style="stroke:none;" d="M 7.296875 -0.875 C 7.296875 -0.9375 7.296875 -1.046875 7.171875 -1.046875 C 7.0625 -1.046875 7.0625 -0.953125 7.046875 -0.890625 C 6.984375 -0.171875 6.640625 0 6.390625 0 C 5.90625 0 5.828125 -0.515625 5.6875 -1.4375 L 5.546875 -2.234375 C 5.375 -2.875 4.890625 -3.203125 4.34375 -3.390625 C 5.296875 -3.625 6.078125 -4.234375 6.078125 -5.015625 C 6.078125 -5.96875 4.9375 -6.8125 3.484375 -6.8125 L 0.34375 -6.8125 L 0.34375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.375 -6.390625 1.375 -6.03125 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.1875 -0.03125 2.90625 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.296875 L 3.375 -3.296875 C 3.53125 -3.296875 3.953125 -3.296875 4.3125 -2.953125 C 4.6875 -2.609375 4.6875 -2.296875 4.6875 -1.625 C 4.6875 -0.984375 4.6875 -0.578125 5.09375 -0.203125 C 5.5 0.15625 6.046875 0.21875 6.34375 0.21875 C 7.125 0.21875 7.296875 -0.59375 7.296875 -0.875 Z M 5.046875 -5.015625 C 5.046875 -4.328125 4.8125 -3.515625 3.34375 -3.515625 L 2.234375 -3.515625 L 2.234375 -6.09375 C 2.234375 -6.328125 2.234375 -6.453125 2.453125 -6.484375 C 2.546875 -6.5 2.84375 -6.5 3.046875 -6.5 C 3.9375 -6.5 5.046875 -6.453125 5.046875 -5.015625 Z M 5.046875 -5.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-45">
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-46">
<path style="stroke:none;" d="M 6.828125 -4.5 L 6.640625 -6.75 L 0.546875 -6.75 L 0.359375 -4.5 L 0.609375 -4.5 C 0.75 -6.109375 0.890625 -6.4375 2.40625 -6.4375 C 2.578125 -6.4375 2.84375 -6.4375 2.9375 -6.421875 C 3.15625 -6.375 3.15625 -6.265625 3.15625 -6.046875 L 3.15625 -0.78125 C 3.15625 -0.453125 3.15625 -0.3125 2.109375 -0.3125 L 1.703125 -0.3125 L 1.703125 0 C 2.109375 -0.03125 3.125 -0.03125 3.59375 -0.03125 C 4.046875 -0.03125 5.078125 -0.03125 5.484375 0 L 5.484375 -0.3125 L 5.078125 -0.3125 C 4.03125 -0.3125 4.03125 -0.453125 4.03125 -0.78125 L 4.03125 -6.046875 C 4.03125 -6.234375 4.03125 -6.375 4.21875 -6.421875 C 4.328125 -6.4375 4.59375 -6.4375 4.78125 -6.4375 C 6.296875 -6.4375 6.4375 -6.109375 6.578125 -4.5 Z M 6.828125 -4.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-47">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 -0.00159375 L 328.944094 -0.00159375 " transform="matrix(1,0,0,-1,0.802,1.307)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="6.78" y="12.861"/>
<use xlink:href="#glyph0-2" x="12.315221" y="12.861"/>
<use xlink:href="#glyph0-3" x="17.850441" y="12.861"/>
<use xlink:href="#glyph0-4" x="21.752792" y="12.861"/>
<use xlink:href="#glyph0-5" x="26.734092" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="30.883514" y="12.861"/>
<use xlink:href="#glyph0-7" x="36.418735" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="109.818191" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="117.02115" y="12.861"/>
<use xlink:href="#glyph0-10" x="122.556371" y="12.861"/>
<use xlink:href="#glyph0-11" x="126.430826" y="12.861"/>
<use xlink:href="#glyph0-3" x="131.412126" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="147.269596" y="12.861"/>
<use xlink:href="#glyph0-3" x="154.050142" y="12.861"/>
<use xlink:href="#glyph0-13" x="157.952492" y="12.861"/>
<use xlink:href="#glyph0-5" x="161.882738" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="166.032161" y="12.861"/>
<use xlink:href="#glyph0-7" x="171.567382" y="12.861"/>
<use xlink:href="#glyph0-14" x="175.995757" y="12.861"/>
<use xlink:href="#glyph0-15" x="178.763368" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="184.019635" y="12.861"/>
<use xlink:href="#glyph0-15" x="189.554856" y="12.861"/>
<use xlink:href="#glyph0-16" x="195.090076" y="12.861"/>
<use xlink:href="#glyph0-13" x="200.071376" y="12.861"/>
<use xlink:href="#glyph0-17" x="204.001622" y="12.861"/>
<use xlink:href="#glyph0-4" x="207.046193" y="12.861"/>
<use xlink:href="#glyph0-6" x="212.027493" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="217.552751" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="233.410221" y="12.861"/>
<use xlink:href="#glyph0-18" x="240.882171" y="12.861"/>
<use xlink:href="#glyph0-10" x="246.140431" y="12.861"/>
<use xlink:href="#glyph0-9" x="250.014886" y="12.861"/>
<use xlink:href="#glyph0-7" x="255.550107" y="12.861"/>
<use xlink:href="#glyph0-19" x="259.978483" y="12.861"/>
<use xlink:href="#glyph0-19" x="262.746093" y="12.861"/>
<use xlink:href="#glyph0-7" x="265.513703" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-20" x="273.269587" y="12.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="279.904679" y="12.861"/>
<use xlink:href="#glyph0-3" x="284.333055" y="12.861"/>
<use xlink:href="#glyph0-13" x="288.235405" y="12.861"/>
<use xlink:href="#glyph0-14" x="292.165651" y="12.861"/>
<use xlink:href="#glyph0-11" x="294.933261" y="12.861"/>
<use xlink:href="#glyph0-15" x="299.914561" y="12.861"/>
</g>
<path style="fill:none;stroke-width:0.498;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 0.00184375 L 328.944094 0.00184375 " transform="matrix(1,0,0,-1,0.802,18.412)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-21" x="6.78" y="29.817"/>
<use xlink:href="#glyph0-22" x="13.97499" y="29.817"/>
<use xlink:href="#glyph0-22" x="21.7239" y="29.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-23" x="56.441568" y="29.817"/>
<use xlink:href="#glyph0-17" x="63.498078" y="29.817"/>
<use xlink:href="#glyph0-4" x="66.542649" y="29.817"/>
<use xlink:href="#glyph0-3" x="71.523949" y="29.817"/>
<use xlink:href="#glyph0-15" x="75.426299" y="29.817"/>
<use xlink:href="#glyph0-7" x="80.96152" y="29.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="88.707441" y="29.817"/>
<use xlink:href="#glyph0-10" x="94.242662" y="29.817"/>
<use xlink:href="#glyph0-3" x="98.117117" y="29.817"/>
<use xlink:href="#glyph0-11" x="102.019467" y="29.817"/>
<use xlink:href="#glyph0-9" x="107.000767" y="29.817"/>
<use xlink:href="#glyph0-13" x="112.535988" y="29.817"/>
<use xlink:href="#glyph0-10" x="116.466233" y="29.817"/>
<use xlink:href="#glyph0-3" x="120.340689" y="29.817"/>
<use xlink:href="#glyph0-9" x="124.243039" y="29.817"/>
<use xlink:href="#glyph0-2" x="129.77826" y="29.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="174.39676" y="29.817"/>
<use xlink:href="#glyph0-25" x="179.37806" y="29.817"/>
<use xlink:href="#glyph0-26" x="184.35936" y="29.817"/>
<use xlink:href="#glyph0-27" x="189.34066" y="29.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-28" x="233.415202" y="29.817"/>
<use xlink:href="#glyph0-1" x="237.012697" y="29.817"/>
<use xlink:href="#glyph0-29" x="242.547918" y="29.817"/>
<use xlink:href="#glyph0-30" x="250.296828" y="29.817"/>
<use xlink:href="#glyph0-28" x="255.278128" y="29.817"/>
<use xlink:href="#glyph0-12" x="258.875623" y="29.817"/>
<use xlink:href="#glyph0-21" x="265.656168" y="29.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="276.168704" y="29.817"/>
<use xlink:href="#glyph0-31" x="281.150004" y="29.817"/>
<use xlink:href="#glyph0-26" x="286.131304" y="29.817"/>
<use xlink:href="#glyph0-26" x="291.112604" y="29.817"/>
<use xlink:href="#glyph0-32" x="296.093904" y="29.817"/>
<use xlink:href="#glyph0-33" x="301.075204" y="29.817"/>
<use xlink:href="#glyph0-32" x="303.842814" y="29.817"/>
<use xlink:href="#glyph0-34" x="308.824114" y="29.817"/>
<use xlink:href="#glyph0-24" x="313.805414" y="29.817"/>
<use xlink:href="#glyph0-35" x="318.786714" y="29.817"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-36" x="6.78" y="41.772"/>
<use xlink:href="#glyph0-4" x="11.89978" y="41.772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-37" x="16.602127" y="41.772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="21.312445" y="41.772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-36" x="72.45047" y="41.772"/>
<use xlink:href="#glyph0-4" x="77.570251" y="41.772"/>
<use xlink:href="#glyph0-38" x="82.551551" y="41.772"/>
<use xlink:href="#glyph0-7" x="90.853385" y="41.772"/>
<use xlink:href="#glyph0-13" x="95.281761" y="41.772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-39" x="102.529552" y="41.772"/>
<use xlink:href="#glyph0-11" x="110.347205" y="41.772"/>
<use xlink:href="#glyph0-13" x="115.328505" y="41.772"/>
<use xlink:href="#glyph0-19" x="119.25875" y="41.772"/>
<use xlink:href="#glyph0-14" x="122.026361" y="41.772"/>
<use xlink:href="#glyph0-15" x="124.793971" y="41.772"/>
<use xlink:href="#glyph0-16" x="130.329191" y="41.772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="174.403734" y="41.772"/>
<use xlink:href="#glyph0-25" x="179.385034" y="41.772"/>
<use xlink:href="#glyph0-25" x="184.366334" y="41.772"/>
<use xlink:href="#glyph0-26" x="189.347634" y="41.772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="233.412214" y="41.772"/>
<use xlink:href="#glyph0-32" x="238.393514" y="41.772"/>
<use xlink:href="#glyph0-40" x="243.374814" y="41.772"/>
<use xlink:href="#glyph0-34" x="246.142424" y="41.772"/>
<use xlink:href="#glyph0-40" x="251.123724" y="41.772"/>
<use xlink:href="#glyph0-24" x="253.891334" y="41.772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-41" x="6.78" y="53.728"/>
<use xlink:href="#glyph0-42" x="13.560546" y="53.728"/>
<use xlink:href="#glyph0-10" x="18.818806" y="53.728"/>
<use xlink:href="#glyph0-6" x="22.693261" y="53.728"/>
<use xlink:href="#glyph0-11" x="28.228482" y="53.728"/>
<use xlink:href="#glyph0-15" x="33.209782" y="53.728"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-39" x="52.802231" y="53.728"/>
<use xlink:href="#glyph0-9" x="60.619883" y="53.728"/>
<use xlink:href="#glyph0-14" x="66.155103" y="53.728"/>
<use xlink:href="#glyph0-43" x="68.922714" y="53.728"/>
<use xlink:href="#glyph0-11" x="74.457934" y="53.728"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-37" x="82.75678" y="53.728"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="87.467097" y="53.728"/>
<use xlink:href="#glyph0-15" x="92.448397" y="53.728"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-44" x="101.301164" y="53.728"/>
<use xlink:href="#glyph0-11" x="108.634634" y="53.728"/>
<use xlink:href="#glyph0-13" x="113.615934" y="53.728"/>
<use xlink:href="#glyph0-13" x="117.546179" y="53.728"/>
<use xlink:href="#glyph0-9" x="121.476425" y="53.728"/>
<use xlink:href="#glyph0-38" x="127.011646" y="53.728"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="174.39676" y="53.728"/>
<use xlink:href="#glyph0-25" x="179.37806" y="53.728"/>
<use xlink:href="#glyph0-25" x="184.35936" y="53.728"/>
<use xlink:href="#glyph0-24" x="189.34066" y="53.728"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-45" x="233.415202" y="53.728"/>
<use xlink:href="#glyph0-40" x="238.396502" y="53.728"/>
<use xlink:href="#glyph0-35" x="241.164113" y="53.728"/>
<use xlink:href="#glyph0-40" x="246.145413" y="53.728"/>
<use xlink:href="#glyph0-45" x="248.913023" y="53.728"/>
</g>
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 -0.0016875 L 328.944094 -0.0016875 " transform="matrix(1,0,0,-1,0.802,59.428)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-46" x="80.005" y="77.648"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="86.373094" y="77.648"/>
<use xlink:href="#glyph0-47" x="91.354394" y="77.648"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="97.158605" y="77.648"/>
<use xlink:href="#glyph0-19" x="101.58698" y="77.648"/>
<use xlink:href="#glyph0-19" x="104.354591" y="77.648"/>
<use xlink:href="#glyph0-7" x="107.122201" y="77.648"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="114.878085" y="77.648"/>
<use xlink:href="#glyph0-33" x="119.859385" y="77.648"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-23" x="125.944541" y="77.648"/>
<use xlink:href="#glyph0-7" x="133.001051" y="77.648"/>
<use xlink:href="#glyph0-18" x="137.429426" y="77.648"/>
<use xlink:href="#glyph0-4" x="142.687687" y="77.648"/>
<use xlink:href="#glyph0-15" x="147.668987" y="77.648"/>
<use xlink:href="#glyph0-15" x="153.204207" y="77.648"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="158.460475" y="77.648"/>
<use xlink:href="#glyph0-7" x="162.33493" y="77.648"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-41" x="170.080852" y="77.648"/>
<use xlink:href="#glyph0-3" x="176.861397" y="77.648"/>
<use xlink:href="#glyph0-11" x="180.763748" y="77.648"/>
<use xlink:href="#glyph0-16" x="185.745048" y="77.648"/>
<use xlink:href="#glyph0-3" x="190.726348" y="77.648"/>
<use xlink:href="#glyph0-4" x="194.628698" y="77.648"/>
<use xlink:href="#glyph0-38" x="199.609998" y="77.648"/>
<use xlink:href="#glyph0-38" x="207.911833" y="77.648"/>
<use xlink:href="#glyph0-14" x="216.213667" y="77.648"/>
<use xlink:href="#glyph0-7" x="218.981277" y="77.648"/>
<use xlink:href="#glyph0-3" x="223.409653" y="77.648"/>
<use xlink:href="#glyph0-13" x="227.312004" y="77.648"/>
<use xlink:href="#glyph0-2" x="231.242249" y="77.648"/>
<use xlink:href="#glyph0-3" x="236.77747" y="77.648"/>
<use xlink:href="#glyph0-4" x="240.67982" y="77.648"/>
<use xlink:href="#glyph0-5" x="245.66112" y="77.648"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="249.810543" y="77.648"/>
<use xlink:href="#glyph0-7" x="255.345764" y="77.648"/>
<use xlink:href="#glyph0-15" x="259.774139" y="77.648"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 55 KiB

View File

@ -0,0 +1,408 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" version="1.1">
<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 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 Z M 4.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 L 1.390625 1.90625 L 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 3.15625 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 Z M 3.484375 -2.515625 L 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 3.484375 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 7.140625 0 L 7.140625 -0.3125 L 6.96875 -0.3125 C 6.375 -0.3125 6.234375 -0.375 6.125 -0.703125 L 3.96875 -6.9375 C 3.921875 -7.0625 3.890625 -7.140625 3.734375 -7.140625 C 3.578125 -7.140625 3.546875 -7.078125 3.5 -6.9375 L 1.4375 -0.984375 C 1.25 -0.46875 0.859375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.328125 -0.03125 L 2.484375 0 L 2.484375 -0.3125 C 1.984375 -0.3125 1.734375 -0.5625 1.734375 -0.8125 C 1.734375 -0.84375 1.75 -0.953125 1.75 -0.96875 L 2.21875 -2.265625 L 4.671875 -2.265625 L 5.203125 -0.75 C 5.21875 -0.703125 5.234375 -0.640625 5.234375 -0.609375 C 5.234375 -0.3125 4.671875 -0.3125 4.40625 -0.3125 L 4.40625 0 C 4.765625 -0.03125 5.46875 -0.03125 5.84375 -0.03125 Z M 4.5625 -2.578125 L 2.328125 -2.578125 L 3.4375 -5.828125 Z M 4.5625 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 Z M 3.3125 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 6.5 -2.578125 L 6.25 -2.578125 C 6 -1.03125 5.765625 -0.3125 4.0625 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -3.375 L 3.140625 -3.375 C 4.109375 -3.375 4.21875 -3.046875 4.21875 -2.203125 L 4.46875 -2.203125 L 4.46875 -4.84375 L 4.21875 -4.84375 C 4.21875 -3.984375 4.109375 -3.671875 3.140625 -3.671875 L 2.25 -3.671875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 4.015625 -6.46875 C 5.546875 -6.46875 5.8125 -5.921875 5.96875 -4.53125 L 6.21875 -4.53125 L 5.9375 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 6.078125 0 Z M 6.5 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 2.09375 0.5 L 2.09375 -4.40625 L 0.578125 -4.296875 L 0.578125 -3.984375 C 1.34375 -3.984375 1.4375 -3.921875 1.4375 -3.421875 L 1.4375 0.515625 C 1.4375 0.96875 1.34375 1.828125 0.703125 1.828125 C 0.65625 1.828125 0.421875 1.828125 0.171875 1.6875 C 0.3125 1.65625 0.515625 1.515625 0.515625 1.25 C 0.515625 0.984375 0.34375 0.78125 0.0625 0.78125 C -0.21875 0.78125 -0.40625 0.984375 -0.40625 1.25 C -0.40625 1.765625 0.15625 2.046875 0.734375 2.046875 C 1.46875 2.046875 2.09375 1.40625 2.09375 0.5 Z M 2.09375 -6.015625 C 2.09375 -6.296875 1.859375 -6.546875 1.5625 -6.546875 C 1.21875 -6.546875 1.03125 -6.265625 1.03125 -6.015625 C 1.03125 -5.75 1.25 -5.5 1.5625 -5.5 C 1.890625 -5.5 2.09375 -5.765625 2.09375 -6.015625 Z M 2.09375 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 7.28125 -6.5 L 7.28125 -6.8125 C 6.96875 -6.78125 6.5625 -6.78125 6.3125 -6.78125 L 5.171875 -6.8125 L 5.171875 -6.5 C 5.6875 -6.484375 5.90625 -6.234375 5.90625 -6 C 5.90625 -5.921875 5.875 -5.859375 5.859375 -5.796875 L 4.03125 -1 L 2.125 -6.03125 C 2.0625 -6.171875 2.0625 -6.203125 2.0625 -6.203125 C 2.0625 -6.5 2.625 -6.5 2.875 -6.5 L 2.875 -6.8125 C 2.515625 -6.78125 1.828125 -6.78125 1.453125 -6.78125 L 0.1875 -6.8125 L 0.1875 -6.5 C 0.84375 -6.5 1.03125 -6.5 1.171875 -6.125 L 3.484375 0 C 3.546875 0.1875 3.59375 0.21875 3.734375 0.21875 C 3.890625 0.21875 3.921875 0.171875 3.96875 0.03125 L 6.1875 -5.828125 C 6.328125 -6.203125 6.59375 -6.484375 7.28125 -6.5 Z M 7.28125 -6.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 6.625 -2.328125 C 6.625 -2.421875 6.625 -2.5 6.5 -2.5 C 6.390625 -2.5 6.390625 -2.4375 6.375 -2.328125 C 6.296875 -0.90625 5.234375 -0.09375 4.140625 -0.09375 C 3.53125 -0.09375 1.578125 -0.421875 1.578125 -3.40625 C 1.578125 -6.375 3.53125 -6.71875 4.140625 -6.71875 C 5.21875 -6.71875 6.109375 -5.8125 6.3125 -4.359375 C 6.328125 -4.21875 6.328125 -4.1875 6.46875 -4.1875 C 6.625 -4.1875 6.625 -4.21875 6.625 -4.421875 L 6.625 -6.78125 C 6.625 -6.953125 6.625 -7.03125 6.515625 -7.03125 C 6.484375 -7.03125 6.4375 -7.03125 6.359375 -6.90625 L 5.859375 -6.171875 C 5.5 -6.53125 4.984375 -7.03125 4.03125 -7.03125 C 2.15625 -7.03125 0.5625 -5.4375 0.5625 -3.40625 C 0.5625 -1.34375 2.171875 0.21875 4.03125 0.21875 C 5.65625 0.21875 6.625 -1.171875 6.625 -2.328125 Z M 6.625 -2.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 7.1875 -2.5 C 7.1875 -2.6875 7 -2.6875 6.859375 -2.6875 L 4.078125 -2.6875 L 4.078125 -5.484375 C 4.078125 -5.625 4.078125 -5.8125 3.875 -5.8125 C 3.671875 -5.8125 3.671875 -5.625 3.671875 -5.484375 L 3.671875 -2.6875 L 0.890625 -2.6875 C 0.75 -2.6875 0.5625 -2.6875 0.5625 -2.5 C 0.5625 -2.296875 0.75 -2.296875 0.890625 -2.296875 L 3.671875 -2.296875 L 3.671875 0.5 C 3.671875 0.640625 3.671875 0.828125 3.875 0.828125 C 4.078125 0.828125 4.078125 0.640625 4.078125 0.5 L 4.078125 -2.296875 L 6.859375 -2.296875 C 7 -2.296875 7.1875 -2.296875 7.1875 -2.5 Z M 7.1875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 Z M 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 L 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 Z M 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 Z M 5.5 -1.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 4.5625 -3.28125 C 4.5625 -5.96875 3.40625 -6.640625 2.515625 -6.640625 C 1.96875 -6.640625 1.484375 -6.453125 1.0625 -6.015625 C 0.640625 -5.5625 0.421875 -5.140625 0.421875 -4.390625 C 0.421875 -3.15625 1.296875 -2.171875 2.40625 -2.171875 C 3.015625 -2.171875 3.421875 -2.59375 3.65625 -3.171875 L 3.65625 -2.84375 C 3.65625 -0.515625 2.625 -0.0625 2.046875 -0.0625 C 1.875 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.25 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.34375 0.21875 4.5625 -1.140625 4.5625 -3.28125 Z M 3.640625 -4.203125 C 3.640625 -3.375 3.296875 -2.40625 2.421875 -2.40625 C 2.265625 -2.40625 1.796875 -2.40625 1.5 -3.03125 C 1.3125 -3.40625 1.3125 -3.890625 1.3125 -4.390625 C 1.3125 -4.921875 1.3125 -5.390625 1.53125 -5.765625 C 1.796875 -6.265625 2.171875 -6.390625 2.515625 -6.390625 C 2.984375 -6.390625 3.3125 -6.046875 3.484375 -5.609375 C 3.59375 -5.28125 3.640625 -4.65625 3.640625 -4.203125 Z M 3.640625 -4.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 4.5625 -1.671875 C 4.5625 -2.03125 4.453125 -2.484375 4.0625 -2.90625 C 3.875 -3.109375 3.71875 -3.203125 3.078125 -3.609375 C 3.796875 -3.984375 4.28125 -4.5 4.28125 -5.15625 C 4.28125 -6.078125 3.40625 -6.640625 2.5 -6.640625 C 1.5 -6.640625 0.6875 -5.90625 0.6875 -4.96875 C 0.6875 -4.796875 0.703125 -4.34375 1.125 -3.875 C 1.234375 -3.765625 1.609375 -3.515625 1.859375 -3.34375 C 1.28125 -3.046875 0.421875 -2.5 0.421875 -1.5 C 0.421875 -0.453125 1.4375 0.21875 2.484375 0.21875 C 3.609375 0.21875 4.5625 -0.609375 4.5625 -1.671875 Z M 3.84375 -5.15625 C 3.84375 -4.578125 3.453125 -4.109375 2.859375 -3.765625 L 1.625 -4.5625 C 1.171875 -4.859375 1.125 -5.1875 1.125 -5.359375 C 1.125 -5.96875 1.78125 -6.390625 2.484375 -6.390625 C 3.203125 -6.390625 3.84375 -5.875 3.84375 -5.15625 Z M 4.0625 -1.3125 C 4.0625 -0.578125 3.3125 -0.0625 2.5 -0.0625 C 1.640625 -0.0625 0.921875 -0.671875 0.921875 -1.5 C 0.921875 -2.078125 1.234375 -2.71875 2.078125 -3.1875 L 3.3125 -2.40625 C 3.59375 -2.21875 4.0625 -1.921875 4.0625 -1.3125 Z M 4.0625 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-27">
<path style="stroke:none;" d="M 4.46875 -2 C 4.46875 -3.1875 3.65625 -4.1875 2.578125 -4.1875 C 2.109375 -4.1875 1.671875 -4.03125 1.3125 -3.671875 L 1.3125 -5.625 C 1.515625 -5.5625 1.84375 -5.5 2.15625 -5.5 C 3.390625 -5.5 4.09375 -6.40625 4.09375 -6.53125 C 4.09375 -6.59375 4.0625 -6.640625 3.984375 -6.640625 C 3.984375 -6.640625 3.953125 -6.640625 3.90625 -6.609375 C 3.703125 -6.515625 3.21875 -6.3125 2.546875 -6.3125 C 2.15625 -6.3125 1.6875 -6.390625 1.21875 -6.59375 C 1.140625 -6.625 1.109375 -6.625 1.109375 -6.625 C 1 -6.625 1 -6.546875 1 -6.390625 L 1 -3.4375 C 1 -3.265625 1 -3.1875 1.140625 -3.1875 C 1.21875 -3.1875 1.234375 -3.203125 1.28125 -3.265625 C 1.390625 -3.421875 1.75 -3.96875 2.5625 -3.96875 C 3.078125 -3.96875 3.328125 -3.515625 3.40625 -3.328125 C 3.5625 -2.953125 3.59375 -2.578125 3.59375 -2.078125 C 3.59375 -1.71875 3.59375 -1.125 3.34375 -0.703125 C 3.109375 -0.3125 2.734375 -0.0625 2.28125 -0.0625 C 1.5625 -0.0625 0.984375 -0.59375 0.8125 -1.171875 C 0.84375 -1.171875 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.890625 1.3125 -2.140625 0.984375 -2.140625 C 0.84375 -2.140625 0.5 -2.0625 0.5 -1.609375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.453125 0.21875 4.46875 -0.734375 4.46875 -2 Z M 4.46875 -2 "/>
</symbol>
<symbol overflow="visible" id="glyph0-28">
<path style="stroke:none;" d="M 3.3125 0 L 3.3125 -0.3125 L 3.0625 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.0625 -6.5 L 3.3125 -6.5 L 3.3125 -6.8125 C 2.96875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.625 -6.78125 0.28125 -6.8125 L 0.28125 -6.5 L 0.53125 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.53125 -0.3125 L 0.28125 -0.3125 L 0.28125 0 C 0.625 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.1875 -0.03125 2.96875 -0.03125 3.3125 0 Z M 3.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-29">
<path style="stroke:none;" d="M 7.1875 -3.375 C 7.1875 -5.40625 5.6875 -7.03125 3.875 -7.03125 C 2.078125 -7.03125 0.5625 -5.4375 0.5625 -3.375 C 0.5625 -1.328125 2.09375 0.21875 3.875 0.21875 C 5.6875 0.21875 7.1875 -1.359375 7.1875 -3.375 Z M 6.15625 -3.515625 C 6.15625 -0.875 4.796875 -0.046875 3.875 -0.046875 C 2.921875 -0.046875 1.578125 -0.921875 1.578125 -3.515625 C 1.578125 -6.09375 3.046875 -6.78125 3.875 -6.78125 C 4.734375 -6.78125 6.15625 -6.078125 6.15625 -3.515625 Z M 6.15625 -3.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-30">
<path style="stroke:none;" d="M 4.421875 -7.28125 C 4.421875 -7.390625 4.328125 -7.484375 4.21875 -7.484375 C 4.078125 -7.484375 4.03125 -7.375 4 -7.28125 L 0.609375 2.109375 C 0.5625 2.25 0.5625 2.296875 0.5625 2.296875 C 0.5625 2.40625 0.640625 2.5 0.75 2.5 C 0.890625 2.5 0.9375 2.390625 0.96875 2.296875 L 4.359375 -7.09375 C 4.421875 -7.234375 4.421875 -7.28125 4.421875 -7.28125 Z M 4.421875 -7.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-31">
<path style="stroke:none;" d="M 4.6875 -1.640625 L 4.6875 -1.953125 L 3.703125 -1.953125 L 3.703125 -6.484375 C 3.703125 -6.6875 3.703125 -6.75 3.53125 -6.75 C 3.453125 -6.75 3.421875 -6.75 3.34375 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 L 2.9375 -1.640625 L 2.9375 -0.78125 C 2.9375 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.96875 -0.3125 L 1.96875 0 C 2.375 -0.03125 2.890625 -0.03125 3.3125 -0.03125 C 3.734375 -0.03125 4.25 -0.03125 4.671875 0 L 4.671875 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.703125 -0.421875 3.703125 -0.78125 L 3.703125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.671875 Z M 2.984375 -1.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-32">
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-33">
<path style="stroke:none;" d="M 1.90625 -3.765625 C 1.90625 -4.0625 1.671875 -4.296875 1.390625 -4.296875 C 1.09375 -4.296875 0.859375 -4.0625 0.859375 -3.765625 C 0.859375 -3.484375 1.09375 -3.234375 1.390625 -3.234375 C 1.671875 -3.234375 1.90625 -3.484375 1.90625 -3.765625 Z M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-34">
<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 Z M 3.765625 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-35">
<path style="stroke:none;" d="M 4.828125 -6.421875 L 2.40625 -6.421875 C 1.203125 -6.421875 1.171875 -6.546875 1.140625 -6.734375 L 0.890625 -6.734375 L 0.5625 -4.6875 L 0.8125 -4.6875 C 0.84375 -4.84375 0.921875 -5.46875 1.0625 -5.59375 C 1.125 -5.65625 1.90625 -5.65625 2.03125 -5.65625 L 4.09375 -5.65625 L 2.984375 -4.078125 C 2.078125 -2.734375 1.75 -1.34375 1.75 -0.328125 C 1.75 -0.234375 1.75 0.21875 2.21875 0.21875 C 2.671875 0.21875 2.671875 -0.234375 2.671875 -0.328125 L 2.671875 -0.84375 C 2.671875 -1.390625 2.703125 -1.9375 2.78125 -2.46875 C 2.828125 -2.703125 2.953125 -3.5625 3.40625 -4.171875 L 4.75 -6.078125 C 4.828125 -6.1875 4.828125 -6.203125 4.828125 -6.421875 Z M 4.828125 -6.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-36">
<path style="stroke:none;" d="M 4.640625 -6.5 L 4.640625 -6.8125 L 3.34375 -6.78125 C 2.9375 -6.78125 2.046875 -6.78125 1.671875 -6.8125 L 1.671875 -6.5 L 2.03125 -6.5 C 3.015625 -6.5 3.015625 -6.375 3.015625 -6.015625 L 3.015625 -1.46875 C 3.015625 -0.5625 2.515625 0 1.984375 0 C 1.921875 0 1.25 0 0.890625 -0.578125 C 1.40625 -0.578125 1.53125 -0.875 1.53125 -1.140625 C 1.53125 -1.5 1.25 -1.6875 0.96875 -1.6875 C 0.75 -1.6875 0.40625 -1.5625 0.40625 -1.109375 C 0.40625 -0.375 1.109375 0.21875 2 0.21875 C 3.015625 0.21875 3.75 -0.484375 3.859375 -1.21875 C 3.875 -1.3125 3.875 -1.328125 3.875 -1.671875 L 3.875 -6.09375 C 3.875 -6.5 4 -6.5 4.640625 -6.5 Z M 4.640625 -6.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-37">
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.8125 -3.984375 3.921875 -3.75 3.921875 -3.5625 C 3.921875 -3.46875 3.90625 -3.421875 3.875 -3.3125 L 2.84375 -0.78125 L 1.734375 -3.5625 C 1.671875 -3.6875 1.671875 -3.734375 1.671875 -3.734375 C 1.671875 -3.984375 2.0625 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.8125 -3.984375 0.859375 -3.921875 0.984375 -3.625 L 2.421875 -0.078125 C 2.484375 0.0625 2.5 0.109375 2.625 0.109375 C 2.765625 0.109375 2.796875 0.015625 2.84375 -0.078125 L 4.140625 -3.3125 C 4.234375 -3.546875 4.40625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-38">
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-39">
<path style="stroke:none;" d="M 7.328125 -2.40625 L 7.328125 -2.71875 L 6.109375 -2.6875 C 5.71875 -2.6875 4.859375 -2.6875 4.5 -2.71875 L 4.5 -2.40625 L 4.828125 -2.40625 C 5.71875 -2.40625 5.75 -2.296875 5.75 -1.9375 L 5.75 -1.296875 C 5.75 -0.171875 4.484375 -0.09375 4.203125 -0.09375 C 3.5625 -0.09375 1.578125 -0.4375 1.578125 -3.40625 C 1.578125 -6.390625 3.546875 -6.71875 4.140625 -6.71875 C 5.21875 -6.71875 6.125 -5.828125 6.3125 -4.359375 C 6.34375 -4.21875 6.34375 -4.1875 6.484375 -4.1875 C 6.640625 -4.1875 6.640625 -4.21875 6.640625 -4.421875 L 6.640625 -6.78125 C 6.640625 -6.953125 6.640625 -7.03125 6.53125 -7.03125 C 6.484375 -7.03125 6.453125 -7.03125 6.375 -6.90625 L 5.875 -6.171875 C 5.546875 -6.484375 5.015625 -7.03125 4.03125 -7.03125 C 2.171875 -7.03125 0.5625 -5.453125 0.5625 -3.40625 C 0.5625 -1.359375 2.15625 0.21875 4.046875 0.21875 C 4.78125 0.21875 5.578125 -0.046875 5.90625 -0.625 C 6.046875 -0.40625 6.4375 -0.015625 6.546875 -0.015625 C 6.640625 -0.015625 6.640625 -0.09375 6.640625 -0.234375 L 6.640625 -1.96875 C 6.640625 -2.359375 6.671875 -2.40625 7.328125 -2.40625 Z M 7.328125 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-40">
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-41">
<path style="stroke:none;" d="M 6.21875 -4.953125 C 6.21875 -5.9375 5.234375 -6.8125 3.875 -6.8125 L 0.34375 -6.8125 L 0.34375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.375 -6.390625 1.375 -6.03125 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.4375 -0.03125 1.8125 -0.03125 C 2.1875 -0.03125 2.9375 -0.03125 3.296875 0 L 3.296875 -0.3125 L 3.046875 -0.3125 C 2.28125 -0.3125 2.265625 -0.421875 2.265625 -0.78125 L 2.265625 -3.15625 L 3.953125 -3.15625 C 5.140625 -3.15625 6.21875 -3.953125 6.21875 -4.953125 Z M 5.1875 -4.953125 C 5.1875 -4.484375 5.1875 -3.40625 3.609375 -3.40625 L 2.234375 -3.40625 L 2.234375 -6.09375 C 2.234375 -6.4375 2.25 -6.5 2.71875 -6.5 L 3.609375 -6.5 C 5.1875 -6.5 5.1875 -5.4375 5.1875 -4.953125 Z M 5.1875 -4.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-42">
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.765625 -3.984375 3.921875 -3.8125 3.921875 -3.5625 C 3.921875 -3.453125 3.90625 -3.4375 3.859375 -3.3125 L 2.84375 -0.875 L 1.75 -3.546875 C 1.703125 -3.65625 1.6875 -3.6875 1.6875 -3.734375 C 1.6875 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.671875 -3.984375 0.859375 -3.984375 1 -3.640625 L 2.5 0 L 2.25 0.59375 C 2.03125 1.140625 1.75 1.828125 1.109375 1.828125 C 1.0625 1.828125 0.828125 1.828125 0.640625 1.640625 C 0.953125 1.609375 1.03125 1.390625 1.03125 1.21875 C 1.03125 0.96875 0.84375 0.8125 0.609375 0.8125 C 0.40625 0.8125 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.6875 0.609375 2.046875 1.109375 2.046875 C 1.734375 2.046875 2.140625 1.46875 2.375 0.90625 L 4.140625 -3.34375 C 4.390625 -3.984375 4.90625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-43">
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 L 3.78125 0.109375 Z M 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -1.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-44">
<path style="stroke:none;" d="M 7.296875 -0.875 C 7.296875 -0.9375 7.296875 -1.046875 7.171875 -1.046875 C 7.0625 -1.046875 7.0625 -0.953125 7.046875 -0.890625 C 6.984375 -0.171875 6.640625 0 6.390625 0 C 5.90625 0 5.828125 -0.515625 5.6875 -1.4375 L 5.546875 -2.234375 C 5.375 -2.875 4.890625 -3.203125 4.34375 -3.390625 C 5.296875 -3.625 6.078125 -4.234375 6.078125 -5.015625 C 6.078125 -5.96875 4.9375 -6.8125 3.484375 -6.8125 L 0.34375 -6.8125 L 0.34375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.375 -6.390625 1.375 -6.03125 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.1875 -0.03125 2.90625 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.296875 L 3.375 -3.296875 C 3.53125 -3.296875 3.953125 -3.296875 4.3125 -2.953125 C 4.6875 -2.609375 4.6875 -2.296875 4.6875 -1.625 C 4.6875 -0.984375 4.6875 -0.578125 5.09375 -0.203125 C 5.5 0.15625 6.046875 0.21875 6.34375 0.21875 C 7.125 0.21875 7.296875 -0.59375 7.296875 -0.875 Z M 5.046875 -5.015625 C 5.046875 -4.328125 4.8125 -3.515625 3.34375 -3.515625 L 2.234375 -3.515625 L 2.234375 -6.09375 C 2.234375 -6.328125 2.234375 -6.453125 2.453125 -6.484375 C 2.546875 -6.5 2.84375 -6.5 3.046875 -6.5 C 3.9375 -6.5 5.046875 -6.453125 5.046875 -5.015625 Z M 5.046875 -5.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-45">
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-46">
<path style="stroke:none;" d="M 6.828125 -4.5 L 6.640625 -6.75 L 0.546875 -6.75 L 0.359375 -4.5 L 0.609375 -4.5 C 0.75 -6.109375 0.890625 -6.4375 2.40625 -6.4375 C 2.578125 -6.4375 2.84375 -6.4375 2.9375 -6.421875 C 3.15625 -6.375 3.15625 -6.265625 3.15625 -6.046875 L 3.15625 -0.78125 C 3.15625 -0.453125 3.15625 -0.3125 2.109375 -0.3125 L 1.703125 -0.3125 L 1.703125 0 C 2.109375 -0.03125 3.125 -0.03125 3.59375 -0.03125 C 4.046875 -0.03125 5.078125 -0.03125 5.484375 0 L 5.484375 -0.3125 L 5.078125 -0.3125 C 4.03125 -0.3125 4.03125 -0.453125 4.03125 -0.78125 L 4.03125 -6.046875 C 4.03125 -6.234375 4.03125 -6.375 4.21875 -6.421875 C 4.328125 -6.4375 4.59375 -6.4375 4.78125 -6.4375 C 6.296875 -6.4375 6.4375 -6.109375 6.578125 -4.5 Z M 6.828125 -4.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-47">
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 0.0016875 L 328.944094 0.0016875 " transform="matrix(1,0,0,-1,124.802,126.197)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="130.78" y="137.751"/>
<use xlink:href="#glyph0-2" x="136.315221" y="137.751"/>
<use xlink:href="#glyph0-3" x="141.850441" y="137.751"/>
<use xlink:href="#glyph0-4" x="145.752792" y="137.751"/>
<use xlink:href="#glyph0-5" x="150.734092" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="154.883514" y="137.751"/>
<use xlink:href="#glyph0-7" x="160.418735" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="233.818191" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="241.02115" y="137.751"/>
<use xlink:href="#glyph0-10" x="246.556371" y="137.751"/>
<use xlink:href="#glyph0-11" x="250.430826" y="137.751"/>
<use xlink:href="#glyph0-3" x="255.412126" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="271.269596" y="137.751"/>
<use xlink:href="#glyph0-3" x="278.050142" y="137.751"/>
<use xlink:href="#glyph0-13" x="281.952492" y="137.751"/>
<use xlink:href="#glyph0-5" x="285.882738" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="290.032161" y="137.751"/>
<use xlink:href="#glyph0-7" x="295.567382" y="137.751"/>
<use xlink:href="#glyph0-14" x="299.995757" y="137.751"/>
<use xlink:href="#glyph0-15" x="302.763368" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="308.019635" y="137.751"/>
<use xlink:href="#glyph0-15" x="313.554856" y="137.751"/>
<use xlink:href="#glyph0-16" x="319.090076" y="137.751"/>
<use xlink:href="#glyph0-13" x="324.071376" y="137.751"/>
<use xlink:href="#glyph0-17" x="328.001622" y="137.751"/>
<use xlink:href="#glyph0-4" x="331.046193" y="137.751"/>
<use xlink:href="#glyph0-6" x="336.027493" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="341.552751" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="357.410221" y="137.751"/>
<use xlink:href="#glyph0-18" x="364.882171" y="137.751"/>
<use xlink:href="#glyph0-10" x="370.140431" y="137.751"/>
<use xlink:href="#glyph0-9" x="374.014886" y="137.751"/>
<use xlink:href="#glyph0-7" x="379.550107" y="137.751"/>
<use xlink:href="#glyph0-19" x="383.978483" y="137.751"/>
<use xlink:href="#glyph0-19" x="386.746093" y="137.751"/>
<use xlink:href="#glyph0-7" x="389.513703" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-20" x="397.269587" y="137.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="403.904679" y="137.751"/>
<use xlink:href="#glyph0-3" x="408.333055" y="137.751"/>
<use xlink:href="#glyph0-13" x="412.235405" y="137.751"/>
<use xlink:href="#glyph0-14" x="416.165651" y="137.751"/>
<use xlink:href="#glyph0-11" x="418.933261" y="137.751"/>
<use xlink:href="#glyph0-15" x="423.914561" y="137.751"/>
</g>
<path style="fill:none;stroke-width:0.498;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 0.00121875 L 328.944094 0.00121875 " transform="matrix(1,0,0,-1,124.802,143.302)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-21" x="130.78" y="154.707"/>
<use xlink:href="#glyph0-22" x="137.97499" y="154.707"/>
<use xlink:href="#glyph0-22" x="145.7239" y="154.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-23" x="180.441568" y="154.707"/>
<use xlink:href="#glyph0-17" x="187.498078" y="154.707"/>
<use xlink:href="#glyph0-4" x="190.542649" y="154.707"/>
<use xlink:href="#glyph0-3" x="195.523949" y="154.707"/>
<use xlink:href="#glyph0-15" x="199.426299" y="154.707"/>
<use xlink:href="#glyph0-7" x="204.96152" y="154.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="212.707441" y="154.707"/>
<use xlink:href="#glyph0-10" x="218.242662" y="154.707"/>
<use xlink:href="#glyph0-3" x="222.117117" y="154.707"/>
<use xlink:href="#glyph0-11" x="226.019467" y="154.707"/>
<use xlink:href="#glyph0-9" x="231.000767" y="154.707"/>
<use xlink:href="#glyph0-13" x="236.535988" y="154.707"/>
<use xlink:href="#glyph0-10" x="240.466233" y="154.707"/>
<use xlink:href="#glyph0-3" x="244.340689" y="154.707"/>
<use xlink:href="#glyph0-9" x="248.243039" y="154.707"/>
<use xlink:href="#glyph0-2" x="253.77826" y="154.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="298.39676" y="154.707"/>
<use xlink:href="#glyph0-25" x="303.37806" y="154.707"/>
<use xlink:href="#glyph0-26" x="308.35936" y="154.707"/>
<use xlink:href="#glyph0-27" x="313.34066" y="154.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-28" x="357.415202" y="154.707"/>
<use xlink:href="#glyph0-1" x="361.012697" y="154.707"/>
<use xlink:href="#glyph0-29" x="366.547918" y="154.707"/>
<use xlink:href="#glyph0-30" x="374.296828" y="154.707"/>
<use xlink:href="#glyph0-28" x="379.278128" y="154.707"/>
<use xlink:href="#glyph0-12" x="382.875623" y="154.707"/>
<use xlink:href="#glyph0-21" x="389.656168" y="154.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="400.168704" y="154.707"/>
<use xlink:href="#glyph0-31" x="405.150004" y="154.707"/>
<use xlink:href="#glyph0-26" x="410.131304" y="154.707"/>
<use xlink:href="#glyph0-26" x="415.112604" y="154.707"/>
<use xlink:href="#glyph0-32" x="420.093904" y="154.707"/>
<use xlink:href="#glyph0-33" x="425.075204" y="154.707"/>
<use xlink:href="#glyph0-32" x="427.842814" y="154.707"/>
<use xlink:href="#glyph0-34" x="432.824114" y="154.707"/>
<use xlink:href="#glyph0-24" x="437.805414" y="154.707"/>
<use xlink:href="#glyph0-35" x="442.786714" y="154.707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-36" x="130.78" y="166.662"/>
<use xlink:href="#glyph0-4" x="135.89978" y="166.662"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-37" x="140.602127" y="166.662"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="145.312445" y="166.662"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-36" x="196.45047" y="166.662"/>
<use xlink:href="#glyph0-4" x="201.570251" y="166.662"/>
<use xlink:href="#glyph0-38" x="206.551551" y="166.662"/>
<use xlink:href="#glyph0-7" x="214.853385" y="166.662"/>
<use xlink:href="#glyph0-13" x="219.281761" y="166.662"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-39" x="226.529552" y="166.662"/>
<use xlink:href="#glyph0-11" x="234.347205" y="166.662"/>
<use xlink:href="#glyph0-13" x="239.328505" y="166.662"/>
<use xlink:href="#glyph0-19" x="243.25875" y="166.662"/>
<use xlink:href="#glyph0-14" x="246.026361" y="166.662"/>
<use xlink:href="#glyph0-15" x="248.793971" y="166.662"/>
<use xlink:href="#glyph0-16" x="254.329191" y="166.662"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="298.403734" y="166.662"/>
<use xlink:href="#glyph0-25" x="303.385034" y="166.662"/>
<use xlink:href="#glyph0-25" x="308.366334" y="166.662"/>
<use xlink:href="#glyph0-26" x="313.347634" y="166.662"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="357.412214" y="166.662"/>
<use xlink:href="#glyph0-32" x="362.393514" y="166.662"/>
<use xlink:href="#glyph0-40" x="367.374814" y="166.662"/>
<use xlink:href="#glyph0-34" x="370.142424" y="166.662"/>
<use xlink:href="#glyph0-40" x="375.123724" y="166.662"/>
<use xlink:href="#glyph0-24" x="377.891334" y="166.662"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-41" x="130.78" y="178.618"/>
<use xlink:href="#glyph0-42" x="137.560546" y="178.618"/>
<use xlink:href="#glyph0-10" x="142.818806" y="178.618"/>
<use xlink:href="#glyph0-6" x="146.693261" y="178.618"/>
<use xlink:href="#glyph0-11" x="152.228482" y="178.618"/>
<use xlink:href="#glyph0-15" x="157.209782" y="178.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-39" x="176.802231" y="178.618"/>
<use xlink:href="#glyph0-9" x="184.619883" y="178.618"/>
<use xlink:href="#glyph0-14" x="190.155103" y="178.618"/>
<use xlink:href="#glyph0-43" x="192.922714" y="178.618"/>
<use xlink:href="#glyph0-11" x="198.457934" y="178.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-37" x="206.75678" y="178.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="211.467097" y="178.618"/>
<use xlink:href="#glyph0-15" x="216.448397" y="178.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-44" x="225.301164" y="178.618"/>
<use xlink:href="#glyph0-11" x="232.634634" y="178.618"/>
<use xlink:href="#glyph0-13" x="237.615934" y="178.618"/>
<use xlink:href="#glyph0-13" x="241.546179" y="178.618"/>
<use xlink:href="#glyph0-9" x="245.476425" y="178.618"/>
<use xlink:href="#glyph0-38" x="251.011646" y="178.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="298.39676" y="178.618"/>
<use xlink:href="#glyph0-25" x="303.37806" y="178.618"/>
<use xlink:href="#glyph0-25" x="308.35936" y="178.618"/>
<use xlink:href="#glyph0-24" x="313.34066" y="178.618"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-45" x="357.415202" y="178.618"/>
<use xlink:href="#glyph0-40" x="362.396502" y="178.618"/>
<use xlink:href="#glyph0-35" x="365.164113" y="178.618"/>
<use xlink:href="#glyph0-40" x="370.145413" y="178.618"/>
<use xlink:href="#glyph0-45" x="372.913023" y="178.618"/>
</g>
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 0.00159375 L 328.944094 0.00159375 " transform="matrix(1,0,0,-1,124.802,184.318)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-46" x="204.005" y="202.538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="210.373094" y="202.538"/>
<use xlink:href="#glyph0-47" x="215.354394" y="202.538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="221.158605" y="202.538"/>
<use xlink:href="#glyph0-19" x="225.58698" y="202.538"/>
<use xlink:href="#glyph0-19" x="228.354591" y="202.538"/>
<use xlink:href="#glyph0-7" x="231.122201" y="202.538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="238.878085" y="202.538"/>
<use xlink:href="#glyph0-33" x="243.859385" y="202.538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-23" x="249.944541" y="202.538"/>
<use xlink:href="#glyph0-7" x="257.001051" y="202.538"/>
<use xlink:href="#glyph0-18" x="261.429426" y="202.538"/>
<use xlink:href="#glyph0-4" x="266.687687" y="202.538"/>
<use xlink:href="#glyph0-15" x="271.668987" y="202.538"/>
<use xlink:href="#glyph0-15" x="277.204207" y="202.538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="282.460475" y="202.538"/>
<use xlink:href="#glyph0-7" x="286.33493" y="202.538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-41" x="294.080852" y="202.538"/>
<use xlink:href="#glyph0-3" x="300.861397" y="202.538"/>
<use xlink:href="#glyph0-11" x="304.763748" y="202.538"/>
<use xlink:href="#glyph0-16" x="309.745048" y="202.538"/>
<use xlink:href="#glyph0-3" x="314.726348" y="202.538"/>
<use xlink:href="#glyph0-4" x="318.628698" y="202.538"/>
<use xlink:href="#glyph0-38" x="323.609998" y="202.538"/>
<use xlink:href="#glyph0-38" x="331.911833" y="202.538"/>
<use xlink:href="#glyph0-14" x="340.213667" y="202.538"/>
<use xlink:href="#glyph0-7" x="342.981277" y="202.538"/>
<use xlink:href="#glyph0-3" x="347.409653" y="202.538"/>
<use xlink:href="#glyph0-13" x="351.312004" y="202.538"/>
<use xlink:href="#glyph0-2" x="355.242249" y="202.538"/>
<use xlink:href="#glyph0-3" x="360.77747" y="202.538"/>
<use xlink:href="#glyph0-4" x="364.67982" y="202.538"/>
<use xlink:href="#glyph0-5" x="369.66112" y="202.538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="373.810543" y="202.538"/>
<use xlink:href="#glyph0-7" x="379.345764" y="202.538"/>
<use xlink:href="#glyph0-15" x="383.774139" y="202.538"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 55 KiB

View File

@ -0,0 +1,24 @@
\documentclass[a4paper]{article}
\usepackage{lmodern}
\usepackage{amssymb,amsmath}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{booktabs}
\usepackage[ngerman]{babel}
\begin{document}
\thispagestyle{empty}
\begin{table}[h]
\begin{tabular}{lrcl} \toprule
Sprache & Autor & Erscheinungsjahr & Aktuelle Version \\
\midrule
C++ & Bjarne Stroustrup & 1985 & ISO/IEC 14882:2017 \\
Java & James Gosling & 1998 & 12.0.1 \\
Python & Guido van Rossum & 1991 & 3.7.3 \\
\bottomrule
\end{tabular}
\caption{Bekannte Programmiersprachen}
\end{table}
\end{document}

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

View File

@ -1,28 +1,123 @@
<div class="layout-content-only">
<div class="layout-content">
<h1>Referenzen und Fußnoten</h1>
<h1><span class="emoji">📎</span><br/>Referenzen und&nbsp;Fußnoten</h1>
</div>
</div>
---
TODO: Label und Ref
---
TODO: hyperref mit `\autoref` ODER cleveref mit `\cref` (nach hyperref einbinden)
---
TODO: Fußnoten
---
<div class="layout-only">
<div class="layout-content-and-preview">
<div class="layout-content">
<h2 data-category="Aufgabe">8. Referenzen einfügen</h2>
<h2>Fußnoten</h2>
<pre class="hljs lang-tex"><code>\usepackage{hyperref}</code></pre>
<p>Die Nummerierung erfolgt automatisch und ist fortlaufend, unabhängig davon, ob ein neuer Abschnitt beginnt.</p>
<pre class="hljs lang-tex"><code>Eber, beim Hausschwein insbesondere
oberdeutsch Saubär, beim Wildschwein
Keiler, bezeichnet das männliche
Geschlecht des Schweins.
\footnote{\url{http&#x200b;s://de.wikipedia.org/
wiki/Eber}}</code></pre>
</div>
<div class="layout-preview">
<img src="sections/german/13/footnote-example-crop.svg">
</div>
</div>
---
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Referenzen</h2>
Manuell (Just dont!)
<pre class="hljs lang-tex"><code>Wie man in Abbildung 23 sieht, ...</code></pre>
Mit dem Befehl <code>\ref</code>:
<pre class="hljs lang-tex"><code>\begin{figure}[H]
\includegraphics[width=\textwidth]{fooboar.jpeg}
\caption{Unser Maskottchen Fooboar}
\label{img:fooboar}
\end{figure}
Wie man in Abbildung \ref{img:fooboar} sieht, ...</code></pre>
</div>
<div class="layout-preview">
<img src="sections/german/13/ref-example-crop.svg">
</div>
</div>
---
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Referenzen</h2>
Mit dem Paket <code>cleveref</code>:
<pre class="hljs lang-tex"><code>\begin{figure}[H]
\includegraphics[width=\textwidth]{fooboar.jpeg}
\caption{Unser Maskottchen Fooboar}
\label{img:fooboar}
\end{figure}
Fooboar ist ein sehr engagierter
Jungeber (siehe \cref{img:fooboar}).</code></pre>
<p>Der Befehl <code>\cref</code> fügt selbstständig die passende Abkürzung ein.</p>
</div>
<div class="layout-preview">
<img src="sections/german/13/cref-example-crop.svg">
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2>Dinge, die zu beachten sind</h2>
<ul>
<li class="fragment">Durch <code>\cref</code> eingefügte Passagen tauchen in einigen Dokumentklassen erst dann auf Deutsch auf, wenn bereits in der Dokumentklasse die Sprache festgelegt wurde:
<pre class="lang-tex hljs"><code>\documentclass[ngerman]{article}</code></pre>
</li>
<li class="fragment">Beschriftungen (<code>\caption{…}</code>) müssen <b>immer</b> vergeben werden.</li>
<li class="fragment">
Label müssen <b>eindeutig</b> sein. Zur Strukturierung ist das Voranstellen von Kürzeln üblich:<br/>
<code>img</code> für Bilder, <code>tab</code> für Tabellen, <code>fig</code> für Figures, <code>sec</code> für Abschnitte, …
</li>
</ul>
</div>
</div>
---
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Weiterführend</h2>
<ul>
<li class="fragment">
Beide Referenzierungsbefehle funktionieren mit <b>Bildern, Tabellen, Listings und sogar Überschriften</b>, sofern die richtigen Label vergeben wurden.
</li>
<li class="fragment">
Wurde vor dem Paket <code>cleveref</code> das Paket <code>hyperref</code> eingebunden, entsteht ein <b>klickbarer Link</b> im fertigen PDF.
</li>
<li class="fragment">
Mehrere Referenzen können in <code>\cref</code> kommagetrennt angegeben werden.
<pre class="hljs lang-tex"><code>\section{Ein Einstieg}
\label{sec:section1}
% …
Hier sei verwiesen auf
\cref{sec:section1,sec:section2,
sec:section4}.</code></pre>
</li>
</ul>
</div>
<div class="layout-preview">
<img src="sections/german/13/cref-multiple-example-crop.svg">
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2 data-category="Aufgabe" data-task="12">Referenzen einfügen</h2>
<ul>
<li class="fragment"></li>
</ul>
</div>
</div>
</div>

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.6 MiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.6 MiB

View File

@ -0,0 +1,20 @@
\documentclass[a4paper,ngerman]{article}
\usepackage{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{cleveref}
\usepackage{graphicx}
\usepackage{float}
\begin{document}
\thispagestyle{empty}
\begin{figure}[H]
\includegraphics[width=\textwidth]{fooboar.jpeg}
\caption{Unser Maskottchen Fooboar}
\label{img:fooboar}
\end{figure}
Fooboar ist ein sehr engagierter Jungeber (siehe \cref{img:fooboar}).
\end{document}

View File

@ -0,0 +1,363 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="206pt" height="146pt" viewBox="0 0 206 146" version="1.1">
<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 1.234375 -8.5 L 1.234375 -7.9375 C 1.921875 -7.9375 2.625 -7.984375 3.28125 -8.203125 L 3.28125 -0.59375 L 1.3125 -0.59375 L 1.3125 -0.015625 L 6.78125 -0.015625 L 6.78125 -0.59375 L 4.84375 -0.59375 L 4.84375 -8.859375 C 4.84375 -8.921875 4.859375 -9.015625 4.859375 -9.109375 C 4.859375 -9.3125 4.796875 -9.421875 4.578125 -9.421875 C 4.296875 -9.421875 4.015625 -9.09375 3.71875 -8.953125 C 2.9375 -8.59375 2.078125 -8.5 1.234375 -8.5 Z M 1.234375 -8.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0.5 -9.796875 L 0.5 -9.21875 L 2.015625 -9.21875 L 2.015625 -0.59375 L 0.5 -0.59375 L 0.5 -0.015625 L 9.3125 -0.015625 L 9.890625 -3.84375 L 9.359375 -3.84375 C 9.1875 -2.953125 9.09375 -1.984375 8.421875 -1.3125 C 7.703125 -0.609375 6.640625 -0.59375 5.703125 -0.59375 L 3.796875 -0.59375 L 3.796875 -4.8125 L 4.640625 -4.8125 C 5.234375 -4.8125 5.921875 -4.734375 6.125 -4.015625 C 6.203125 -3.734375 6.203125 -3.421875 6.203125 -3.125 L 6.75 -3.125 L 6.75 -7.0625 L 6.203125 -7.0625 C 6.203125 -6.65625 6.203125 -6.203125 6 -5.875 C 5.703125 -5.421875 5.15625 -5.375 4.640625 -5.375 L 3.796875 -5.375 L 3.796875 -9.21875 L 5.984375 -9.21875 C 6.953125 -9.21875 7.921875 -9.125 8.515625 -8.125 C 8.796875 -7.609375 8.84375 -7.015625 8.921875 -6.4375 L 9.46875 -6.4375 L 9.078125 -9.796875 Z M 0.5 -9.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 0.625 -6.359375 L 0.625 -5.78125 C 0.734375 -5.78125 0.84375 -5.796875 0.96875 -5.796875 C 1.28125 -5.796875 1.578125 -5.734375 1.578125 -5.328125 L 1.578125 -0.59375 L 0.59375 -0.59375 L 0.59375 -0.015625 L 3.9375 -0.015625 L 3.9375 -0.59375 L 3.03125 -0.59375 L 3.03125 -6.46875 L 1.4375 -6.46875 Z M 1.984375 -9.984375 C 1.5 -9.890625 1.140625 -9.515625 1.140625 -9.015625 C 1.140625 -8.515625 1.515625 -8.046875 2.125 -8.046875 L 2.21875 -8.046875 C 2.703125 -8.140625 3.0625 -8.515625 3.0625 -9.015625 C 3.0625 -9.515625 2.6875 -9.984375 2.078125 -9.984375 Z M 1.984375 -9.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.546875 -6.359375 L 0.546875 -5.78125 L 0.828125 -5.78125 C 1.203125 -5.78125 1.546875 -5.734375 1.546875 -5.296875 L 1.546875 -0.59375 L 0.546875 -0.59375 L 0.546875 -0.015625 L 4.0625 -0.015625 L 4.0625 -0.59375 L 3.0625 -0.59375 L 3.0625 -3.5 C 3.0625 -4.65625 3.65625 -6.03125 5.046875 -6.03125 C 5.875 -6.03125 5.921875 -5.09375 5.921875 -4.28125 L 5.921875 -0.59375 L 4.921875 -0.59375 L 4.921875 -0.015625 L 8.4375 -0.015625 L 8.4375 -0.59375 L 7.4375 -0.59375 L 7.4375 -4.3125 C 7.4375 -4.8125 7.40625 -5.296875 7.125 -5.71875 C 6.734375 -6.359375 5.953125 -6.46875 5.28125 -6.46875 C 4.25 -6.46875 3.234375 -5.8125 2.953125 -4.8125 L 2.9375 -6.46875 L 1.34375 -6.46875 Z M 0.546875 -6.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.484375 -0.46875 C 1.9375 -0.078125 2.578125 0.078125 3.203125 0.078125 C 4.5 0.078125 5.6875 -0.515625 5.6875 -2 L 5.6875 -2.15625 C 5.609375 -2.984375 4.984375 -3.59375 4.234375 -3.890625 C 3.859375 -4.03125 3.453125 -4.09375 3.0625 -4.15625 C 2.5 -4.265625 1.46875 -4.40625 1.46875 -5.15625 C 1.46875 -5.9375 2.375 -6.109375 3.03125 -6.109375 C 3.875 -6.109375 4.640625 -5.78125 4.75 -4.765625 C 4.75 -4.640625 4.75 -4.515625 4.96875 -4.515625 L 5.0625 -4.515625 C 5.234375 -4.515625 5.3125 -4.59375 5.3125 -4.796875 C 5.3125 -4.875 5.296875 -4.96875 5.296875 -5.03125 L 5.296875 -6.3125 C 5.296875 -6.4375 5.234375 -6.515625 5.109375 -6.515625 C 4.84375 -6.515625 4.640625 -6.203125 4.484375 -6.203125 C 4.296875 -6.203125 4.015625 -6.40625 3.75 -6.453125 C 3.5 -6.5 3.25 -6.515625 3.015625 -6.515625 C 1.96875 -6.515625 0.53125 -6.234375 0.53125 -4.59375 C 0.53125 -3.125 2.25 -2.859375 3.28125 -2.671875 C 3.90625 -2.546875 4.75 -2.328125 4.75 -1.484375 C 4.75 -0.421875 3.578125 -0.375 2.984375 -0.375 C 1.90625 -0.515625 1.46875 -1 1.078125 -2.203125 C 1.03125 -2.359375 0.921875 -2.359375 0.78125 -2.359375 C 0.609375 -2.359375 0.53125 -2.296875 0.53125 -2.09375 L 0.53125 -0.34375 C 0.53125 -0.296875 0.515625 -0.234375 0.515625 -0.15625 C 0.515625 -0.03125 0.5625 0.078125 0.703125 0.078125 C 0.875 0.078125 1.0625 -0.109375 1.171875 -0.21875 C 1.28125 -0.296875 1.390625 -0.375 1.484375 -0.46875 Z M 1.484375 -0.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 2.390625 -9.125 C 2.390625 -8 1.828125 -6.25 0.28125 -6.25 L 0.28125 -5.8125 L 1.4375 -5.8125 L 1.4375 -1.9375 C 1.4375 -1.5 1.46875 -1.078125 1.703125 -0.703125 C 2.125 -0.078125 2.921875 0.078125 3.59375 0.078125 C 4.71875 0.078125 5.25 -0.859375 5.25 -1.984375 L 5.25 -2.546875 L 4.703125 -2.546875 C 4.703125 -2.359375 4.71875 -2.15625 4.71875 -1.9375 C 4.71875 -1.359375 4.578125 -0.421875 3.796875 -0.421875 C 3.078125 -0.421875 2.9375 -1.171875 2.9375 -1.84375 L 2.9375 -5.8125 L 4.984375 -5.8125 L 4.984375 -6.390625 L 2.9375 -6.390625 L 2.9375 -9.125 Z M 2.390625 -9.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 2.0625 -3.234375 L 6.484375 -3.234375 C 6.671875 -3.234375 6.734375 -3.328125 6.734375 -3.5 C 6.734375 -5.046875 5.96875 -6.53125 3.78125 -6.53125 C 3.015625 -6.53125 2.21875 -6.3125 1.609375 -5.84375 C 0.8125 -5.234375 0.4375 -4.25 0.4375 -3.25 C 0.4375 -1.203125 2 0.078125 3.96875 0.078125 C 5.046875 0.078125 6.234375 -0.375 6.6875 -1.53125 C 6.703125 -1.59375 6.734375 -1.640625 6.734375 -1.6875 C 6.734375 -1.828125 6.59375 -1.890625 6.4375 -1.890625 C 6.171875 -1.890625 6.09375 -1.515625 5.984375 -1.3125 C 5.609375 -0.734375 4.875 -0.421875 4.1875 -0.421875 C 3.4375 -0.421875 2.71875 -0.765625 2.359375 -1.453125 C 2.078125 -2 2.0625 -2.625 2.0625 -3.234375 Z M 2.0625 -3.609375 C 2.0625 -4.25 2.140625 -4.9375 2.53125 -5.453125 C 2.828125 -5.84375 3.3125 -6.0625 3.78125 -6.0625 C 5.09375 -6.0625 5.421875 -4.6875 5.421875 -3.609375 Z M 2.0625 -3.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 1.546875 -2.84375 C 1.21875 -2.484375 1.046875 -2.015625 1.046875 -1.53125 C 1.046875 -0.984375 1.28125 -0.5625 1.671875 -0.15625 C 1 -0.0625 0.4375 0.46875 0.4375 1.078125 C 0.4375 2.625 2.859375 2.875 4 2.875 C 5.25 2.875 7.4375 2.578125 7.4375 1.03125 C 7.4375 -0.5 6.234375 -1.140625 4.078125 -1.140625 L 3.28125 -1.140625 C 3.125 -1.140625 2.953125 -1.140625 2.78125 -1.140625 C 2.140625 -1.140625 1.640625 -1.46875 1.640625 -2.09375 L 1.640625 -2.15625 C 1.65625 -2.34375 1.71875 -2.5 1.8125 -2.65625 C 2.375 -2.40625 2.875 -2.265625 3.5 -2.265625 C 4.71875 -2.265625 6.203125 -2.84375 6.203125 -4.359375 C 6.203125 -4.921875 5.984375 -5.328125 5.609375 -5.78125 C 5.953125 -5.921875 6.296875 -6.078125 6.671875 -6.09375 C 6.609375 -6 6.578125 -5.875 6.578125 -5.765625 C 6.578125 -5.453125 6.828125 -5.25 7.125 -5.25 C 7.4375 -5.25 7.65625 -5.5 7.65625 -5.78125 C 7.65625 -6.21875 7.265625 -6.5625 6.828125 -6.5625 C 6.328125 -6.5625 5.828125 -6.359375 5.4375 -6.0625 C 5.40625 -6.03125 5.359375 -6.015625 5.328125 -6.015625 C 5.25 -6.015625 5.125 -6.125 5.015625 -6.171875 C 4.546875 -6.390625 4.015625 -6.484375 3.484375 -6.484375 C 2.078125 -6.484375 0.796875 -5.71875 0.796875 -4.359375 C 0.796875 -3.8125 1.0625 -3.15625 1.546875 -2.84375 Z M 1.5625 1.171875 C 1.5625 1.140625 1.546875 1.109375 1.546875 1.0625 C 1.546875 0.65625 1.828125 0.265625 2.21875 0.15625 C 2.390625 0.109375 2.578125 0.109375 2.75 0.109375 L 4.09375 0.109375 C 4.875 0.109375 6.3125 0.109375 6.3125 1.109375 C 6.3125 2.1875 4.8125 2.453125 3.984375 2.453125 C 3.046875 2.453125 1.703125 2.21875 1.5625 1.171875 Z M 2.265625 -3.96875 L 2.265625 -4.4375 C 2.265625 -5.171875 2.390625 -6.046875 3.515625 -6.046875 C 4.484375 -6.046875 4.734375 -5.375 4.734375 -4.328125 L 4.734375 -4.21875 C 4.734375 -3.453125 4.515625 -2.6875 3.5 -2.6875 C 3.140625 -2.6875 2.765625 -2.8125 2.546875 -3.0625 C 2.328125 -3.328125 2.3125 -3.640625 2.265625 -3.96875 Z M 2.265625 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 1.65625 -7.953125 C 2.03125 -8.515625 2.71875 -8.84375 3.40625 -8.84375 C 4.625 -8.84375 5.328125 -7.796875 5.328125 -6.703125 L 5.328125 -6.53125 C 5.25 -5.171875 4.171875 -4.0625 3.28125 -3.140625 C 2.5 -2.328125 1.65625 -1.515625 0.9375 -0.65625 C 0.8125 -0.546875 0.78125 -0.46875 0.78125 -0.3125 L 0.78125 -0.015625 L 6.703125 -0.015625 L 7.078125 -3.03125 L 6.546875 -3.03125 C 6.453125 -2.4375 6.46875 -1.671875 5.90625 -1.671875 C 5.5625 -1.640625 5.21875 -1.640625 4.875 -1.640625 L 2.46875 -1.640625 C 3.234375 -2.296875 3.984375 -2.96875 4.78125 -3.578125 C 5.796875 -4.359375 7.078125 -5.21875 7.078125 -6.734375 C 7.078125 -8.625 5.25 -9.421875 3.765625 -9.421875 C 2.4375 -9.421875 0.78125 -8.65625 0.78125 -7.109375 C 0.78125 -6.515625 1.21875 -6.171875 1.6875 -6.171875 C 2.234375 -6.171875 2.578125 -6.59375 2.578125 -7.078125 C 2.578125 -7.609375 2.1875 -7.953125 1.65625 -7.953125 Z M 1.65625 -7.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 0.546875 -9.859375 L 0.546875 -9.28125 L 2.046875 -9.28125 L 2.046875 -0.59375 L 0.546875 -0.59375 L 0.546875 -0.015625 L 6.40625 -0.015625 C 7.703125 -0.015625 9.25 -0.15625 10.03125 -1.484375 C 10.234375 -1.84375 10.328125 -2.21875 10.328125 -2.625 C 10.328125 -4.15625 8.84375 -5.15625 7.4375 -5.15625 C 8.625 -5.453125 9.890625 -5.984375 9.890625 -7.40625 C 9.890625 -8.359375 9.21875 -9.125 8.359375 -9.515625 C 7.625 -9.84375 6.84375 -9.84375 6.0625 -9.859375 Z M 3.734375 -0.59375 L 3.734375 -4.90625 L 6.390625 -4.90625 C 6.734375 -4.90625 7.078125 -4.890625 7.421875 -4.71875 C 8.171875 -4.34375 8.484375 -3.5 8.484375 -2.71875 C 8.484375 -2 8.21875 -1.28125 7.5625 -0.890625 C 7.078125 -0.609375 6.546875 -0.59375 6 -0.59375 Z M 3.734375 -5.34375 L 3.734375 -9.28125 L 6.109375 -9.28125 C 6.46875 -9.28125 6.84375 -9.265625 7.1875 -9.09375 C 7.796875 -8.78125 8.09375 -8.09375 8.09375 -7.421875 C 8.09375 -6.703125 7.78125 -6.03125 7.171875 -5.671875 C 6.671875 -5.34375 6.078125 -5.34375 5.515625 -5.34375 Z M 3.734375 -5.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 5.15625 -5.90625 C 4.921875 -5.734375 4.78125 -5.53125 4.78125 -5.234375 C 4.78125 -4.828125 5.0625 -4.421875 5.53125 -4.421875 L 5.625 -4.421875 C 6.125 -4.421875 6.390625 -4.828125 6.390625 -5.21875 C 6.390625 -6.5 4.546875 -6.515625 4.015625 -6.515625 L 3.984375 -6.515625 C 3.15625 -6.515625 2.3125 -6.3125 1.65625 -5.78125 C 0.90625 -5.15625 0.515625 -4.1875 0.515625 -3.21875 C 0.515625 -1.234375 1.984375 0.078125 3.9375 0.078125 C 4.9375 0.078125 5.984375 -0.359375 6.421875 -1.3125 C 6.46875 -1.421875 6.5625 -1.5625 6.5625 -1.671875 C 6.5625 -1.8125 6.4375 -1.84375 6.34375 -1.84375 L 6.234375 -1.84375 C 5.96875 -1.84375 6 -1.625 5.890625 -1.453125 C 5.578125 -0.765625 4.9375 -0.421875 4.25 -0.421875 C 2.828125 -0.421875 2.171875 -1.578125 2.171875 -3.203125 C 2.171875 -4.34375 2.3125 -6.03125 4.109375 -6.03125 C 4.453125 -6.03125 4.8125 -5.96875 5.15625 -5.90625 Z M 5.15625 -5.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 0.546875 -9.859375 L 0.546875 -9.28125 L 0.8125 -9.28125 C 1.1875 -9.28125 1.546875 -9.28125 1.546875 -8.75 L 1.546875 -0.59375 L 0.546875 -0.59375 L 0.546875 -0.015625 L 4.0625 -0.015625 L 4.0625 -0.59375 L 3.0625 -0.59375 L 3.0625 -3.5 C 3.0625 -4.65625 3.65625 -6.03125 5.046875 -6.03125 C 5.875 -6.03125 5.921875 -5.09375 5.921875 -4.28125 L 5.921875 -0.59375 L 4.921875 -0.59375 L 4.921875 -0.015625 L 8.4375 -0.015625 L 8.4375 -0.59375 L 7.4375 -0.59375 L 7.4375 -4.265625 C 7.4375 -4.78125 7.40625 -5.3125 7.109375 -5.75 C 6.734375 -6.359375 5.953125 -6.46875 5.28125 -6.46875 C 4.359375 -6.46875 3.25 -5.84375 3.015625 -4.953125 L 3 -9.96875 L 1.375 -9.96875 Z M 0.546875 -9.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 2.1875 -5.875 C 2.59375 -5.984375 2.984375 -6.0625 3.40625 -6.0625 C 4.171875 -6.0625 4.9375 -5.6875 4.9375 -4.1875 L 4.9375 -3.703125 C 3.234375 -3.703125 0.5 -3.328125 0.5 -1.484375 C 0.5 -0.25 2.0625 0.078125 3 0.078125 C 3.78125 0.078125 4.828125 -0.3125 5.09375 -1.1875 L 5.109375 -1.1875 C 5.109375 -0.4375 5.6875 0.03125 6.390625 0.03125 C 7.046875 0.03125 7.78125 -0.421875 7.78125 -1.15625 L 7.78125 -2.046875 L 7.25 -2.046875 L 7.25 -1.234375 C 7.25 -0.984375 7.140625 -0.625 6.84375 -0.625 C 6.53125 -0.625 6.4375 -1.015625 6.4375 -1.234375 L 6.4375 -4.21875 C 6.4375 -5.546875 5.4375 -6.515625 3.515625 -6.515625 C 2.59375 -6.515625 1.03125 -6.359375 1.03125 -5.125 C 1.03125 -4.625 1.421875 -4.328125 1.84375 -4.328125 C 2.28125 -4.328125 2.640625 -4.65625 2.640625 -5.125 C 2.640625 -5.46875 2.453125 -5.6875 2.1875 -5.875 Z M 4.9375 -3.359375 L 4.9375 -2 C 4.9375 -1.078125 4.21875 -0.375 3.296875 -0.375 C 2.703125 -0.375 2.015625 -0.78125 2.015625 -1.5 C 2.015625 -2.96875 3.84375 -3.25 4.9375 -3.359375 Z M 4.9375 -3.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 0.59375 -9.859375 L 0.59375 -9.28125 C 0.71875 -9.28125 0.84375 -9.296875 0.96875 -9.296875 C 1.3125 -9.296875 1.578125 -9.21875 1.578125 -8.8125 L 1.578125 -0.59375 L 0.59375 -0.59375 L 0.59375 -0.015625 L 4.015625 -0.015625 L 4.015625 -0.59375 L 3.03125 -0.59375 L 3.03125 -9.96875 L 1.40625 -9.96875 Z M 0.59375 -9.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 1.921875 -0.734375 C 2.671875 -0.09375 3.78125 0.15625 4.734375 0.15625 C 6.390625 0.15625 7.890625 -0.859375 7.890625 -2.859375 C 7.890625 -4.03125 7.171875 -5.125 6.125 -5.625 C 5.6875 -5.828125 5.203125 -5.890625 4.734375 -6.015625 L 3.828125 -6.203125 C 3.0625 -6.375 2.09375 -6.734375 2.09375 -7.859375 C 2.09375 -8.96875 3 -9.5 3.9375 -9.5 C 5.515625 -9.5 6.59375 -8.515625 6.859375 -6.921875 C 6.890625 -6.765625 6.84375 -6.578125 7.109375 -6.578125 L 7.21875 -6.578125 C 7.359375 -6.578125 7.4375 -6.625 7.4375 -6.828125 L 7.4375 -9.796875 C 7.4375 -9.90625 7.40625 -10.03125 7.265625 -10.03125 C 6.90625 -10.03125 6.5625 -9.1875 6.375 -9.1875 L 6.359375 -9.1875 C 6.234375 -9.21875 6.078125 -9.375 5.96875 -9.46875 C 5.359375 -9.875 4.65625 -10.03125 3.9375 -10.03125 C 2.453125 -10.03125 0.875 -9.1875 0.875 -7.25 C 0.875 -6.03125 1.640625 -5.03125 2.71875 -4.59375 C 2.953125 -4.484375 3.234375 -4.4375 3.484375 -4.375 L 4.953125 -4.046875 C 5.90625 -3.828125 6.5625 -3.296875 6.65625 -2.34375 L 6.65625 -2.203125 C 6.65625 -1.21875 5.953125 -0.421875 4.796875 -0.421875 C 3.40625 -0.421875 1.8125 -0.90625 1.46875 -2.609375 L 1.421875 -3.078125 C 1.421875 -3.21875 1.34375 -3.28125 1.203125 -3.28125 L 1.078125 -3.28125 C 0.90625 -3.28125 0.875 -3.171875 0.875 -3.0625 L 0.875 -0.046875 C 0.875 0.09375 0.953125 0.15625 1.0625 0.15625 C 1.265625 0.15625 1.6875 -0.421875 1.921875 -0.734375 Z M 1.921875 -0.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 2.015625 -8.3125 C 2.4375 -8.734375 3.09375 -8.9375 3.734375 -8.9375 C 4.5 -8.9375 5.03125 -8.484375 5.03125 -7.625 L 5.03125 -7.515625 C 5.03125 -6.625 4.703125 -5.5 3.6875 -5.296875 C 3.34375 -5.234375 2.625 -5.359375 2.625 -5 L 2.625 -4.921875 C 2.65625 -4.765625 2.8125 -4.765625 2.9375 -4.765625 C 3.0625 -4.765625 3.1875 -4.78125 3.296875 -4.78125 L 3.578125 -4.78125 C 4.140625 -4.78125 4.640625 -4.640625 4.96875 -4.171875 C 5.28125 -3.734375 5.3125 -3.09375 5.3125 -2.5625 C 5.3125 -1.6875 5.1875 -0.375 3.734375 -0.375 C 2.984375 -0.375 2.421875 -0.546875 1.71875 -0.9375 L 1.71875 -0.953125 C 2.203125 -1 2.546875 -1.375 2.546875 -1.859375 C 2.546875 -2.328125 2.25 -2.75 1.734375 -2.828125 L 1.625 -2.828125 C 1.03125 -2.828125 0.65625 -2.40625 0.65625 -1.875 C 0.65625 -0.265625 2.671875 0.15625 3.796875 0.15625 C 5.34375 0.15625 7.21875 -0.578125 7.21875 -2.53125 C 7.21875 -3.984375 5.953125 -4.875 4.640625 -5.015625 C 5.625 -5.4375 6.78125 -6.03125 6.78125 -7.4375 C 6.78125 -8.921875 5.078125 -9.421875 3.828125 -9.421875 C 2.671875 -9.421875 1.078125 -8.859375 1.078125 -7.484375 C 1.078125 -6.984375 1.453125 -6.5625 1.96875 -6.5625 C 2.484375 -6.5625 2.84375 -6.953125 2.84375 -7.453125 C 2.84375 -7.953125 2.5 -8.3125 2.015625 -8.3125 Z M 2.015625 -8.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 2.421875 -9.859375 L 2.421875 -9.28125 L 4.390625 -9.28125 L 4.390625 -2.375 C 4.390625 -1.515625 4.234375 -0.28125 2.953125 -0.28125 C 2.4375 -0.28125 2.078125 -0.484375 1.609375 -0.703125 L 1.609375 -0.71875 C 2.125 -0.8125 2.40625 -1.1875 2.40625 -1.671875 C 2.40625 -2.234375 1.96875 -2.59375 1.453125 -2.59375 C 0.953125 -2.59375 0.515625 -2.21875 0.515625 -1.640625 C 0.515625 -0.359375 1.953125 0.15625 3.0625 0.15625 C 4.15625 0.15625 5.5625 -0.203125 6 -1.375 C 6.109375 -1.703125 6.125 -2.015625 6.125 -2.359375 L 6.125 -9.28125 L 7.265625 -9.28125 L 7.265625 -9.859375 Z M 2.421875 -9.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 0.8125 -6.390625 L 0.65625 -3.9375 L 1.203125 -3.9375 C 1.21875 -4.40625 1.265625 -4.9375 1.546875 -5.328125 C 1.9375 -5.875 2.609375 -5.9375 3.234375 -5.9375 L 4.484375 -5.9375 C 3.203125 -4.15625 1.890625 -2.359375 0.59375 -0.609375 C 0.515625 -0.5 0.4375 -0.375 0.4375 -0.25 C 0.4375 -0.078125 0.578125 -0.015625 0.71875 -0.015625 L 6.109375 -0.015625 L 6.34375 -2.828125 L 5.796875 -2.828125 C 5.75 -2.21875 5.6875 -1.609375 5.328125 -1.09375 C 4.84375 -0.5625 4.140625 -0.5 3.46875 -0.5 L 2.265625 -0.5 C 2.5625 -0.96875 2.9375 -1.421875 3.265625 -1.875 C 4.21875 -3.1875 5.15625 -4.484375 6.125 -5.796875 C 6.203125 -5.890625 6.296875 -6.03125 6.296875 -6.15625 C 6.296875 -6.328125 6.1875 -6.390625 6.03125 -6.390625 Z M 0.8125 -6.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 0.453125 -9.859375 L 0.453125 -9.28125 C 0.578125 -9.28125 0.71875 -9.296875 0.84375 -9.296875 C 1.15625 -9.296875 1.46875 -9.21875 1.46875 -8.78125 L 1.46875 -0.015625 L 2 -0.03125 L 2.734375 -0.875 C 3.28125 -0.28125 3.96875 0.078125 4.828125 0.078125 C 6.609375 0.078125 8.21875 -1.078125 8.21875 -3.21875 C 8.21875 -4.84375 7.171875 -6.46875 5.046875 -6.46875 C 4.234375 -6.46875 3.546875 -6.203125 2.90625 -5.71875 L 2.90625 -9.96875 L 1.296875 -9.96875 Z M 6.5625 -2.640625 C 6.53125 -2 6.453125 -1.4375 6.03125 -0.953125 C 5.6875 -0.578125 5.171875 -0.375 4.65625 -0.375 C 3.984375 -0.375 3.40625 -0.734375 3.046875 -1.28125 C 2.96875 -1.375 2.96875 -1.484375 2.96875 -1.578125 L 2.96875 -5 C 3.046875 -5.484375 4.0625 -6.03125 4.78125 -6.03125 C 6.421875 -6.03125 6.578125 -4.453125 6.578125 -3.375 L 6.578125 -3 C 6.578125 -2.875 6.578125 -2.75 6.5625 -2.640625 Z M 6.5625 -2.640625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 0.453125 -6.359375 L 0.453125 -5.78125 L 0.75 -5.78125 C 1.125 -5.78125 1.46875 -5.734375 1.46875 -5.296875 L 1.46875 -0.59375 L 0.453125 -0.59375 L 0.453125 -0.015625 L 4.15625 -0.015625 L 4.15625 -0.59375 L 2.90625 -0.59375 L 2.90625 -2.65625 C 2.90625 -3.9375 2.953125 -6.03125 4.65625 -6.03125 C 4.46875 -5.84375 4.359375 -5.65625 4.359375 -5.390625 C 4.359375 -4.875 4.734375 -4.578125 5.15625 -4.578125 C 5.640625 -4.578125 5.953125 -4.953125 5.953125 -5.359375 C 5.953125 -6.078125 5.203125 -6.46875 4.578125 -6.46875 C 3.6875 -6.46875 2.9375 -5.65625 2.8125 -4.796875 L 2.796875 -6.46875 L 1.25 -6.390625 Z M 0.453125 -6.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 0.4375 -2.265625 L 4.4375 -2.265625 L 4.4375 -0.59375 L 2.890625 -0.59375 L 2.890625 -0.015625 L 7.4375 -0.015625 L 7.4375 -0.59375 L 6.046875 -0.59375 L 6.046875 -2.265625 L 7.4375 -2.265625 L 7.4375 -2.84375 L 6.046875 -2.84375 L 6.046875 -9.1875 C 6.046875 -9.375 6 -9.46875 5.78125 -9.46875 L 5.6875 -9.46875 C 5.328125 -9.46875 5.21875 -9.171875 5.03125 -8.9375 C 3.59375 -6.921875 2.015625 -5.015625 0.578125 -3.015625 C 0.5 -2.90625 0.4375 -2.859375 0.4375 -2.71875 Z M 1.0625 -2.84375 L 4.546875 -7.453125 L 4.546875 -2.84375 Z M 1.0625 -2.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 0.5 -9.859375 L 0.5 -9.28125 L 2.015625 -9.28125 L 2.015625 -0.59375 L 0.5 -0.59375 L 0.5 -0.015625 L 5.3125 -0.015625 L 5.3125 -0.59375 L 3.796875 -0.59375 L 3.796875 -3.6875 L 5.3125 -5 C 5.515625 -4.640625 5.828125 -4.265625 6.09375 -3.921875 C 6.59375 -3.21875 7.109375 -2.515625 7.625 -1.8125 L 8.1875 -1.03125 C 8.234375 -0.96875 8.34375 -0.859375 8.34375 -0.765625 L 8.34375 -0.734375 C 8.3125 -0.609375 7.828125 -0.59375 7.5 -0.59375 L 7.34375 -0.59375 L 7.34375 -0.015625 L 11.671875 -0.015625 L 11.671875 -0.59375 C 11.5 -0.59375 11.328125 -0.578125 11.15625 -0.578125 C 10.796875 -0.578125 10.5 -0.625 10.296875 -0.921875 L 10.0625 -1.21875 C 9.8125 -1.578125 9.53125 -1.953125 9.28125 -2.3125 L 7.5 -4.75 C 7.171875 -5.1875 6.828125 -5.640625 6.53125 -6.09375 L 9.71875 -8.859375 L 10.078125 -9.140625 L 10.53125 -9.234375 L 11.453125 -9.28125 L 11.453125 -9.859375 L 8.109375 -9.859375 L 8.109375 -9.28125 C 8.421875 -9.28125 9.109375 -9.234375 9.109375 -9.109375 C 9.109375 -9.015625 8.90625 -8.859375 8.796875 -8.796875 C 7.625 -7.78125 6.484375 -6.78125 5.328125 -5.765625 C 4.8125 -5.328125 4.328125 -4.859375 3.796875 -4.453125 L 3.796875 -9.28125 L 5.3125 -9.28125 L 5.3125 -9.859375 Z M 0.5 -9.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 0.546875 -6.359375 L 0.546875 -5.78125 L 0.90625 -5.78125 C 1.171875 -5.78125 1.515625 -5.75 1.546875 -5.4375 L 1.546875 -1.984375 C 1.546875 -1.546875 1.578125 -1.109375 1.8125 -0.71875 C 2.21875 0.015625 3.234375 0.078125 3.9375 0.078125 C 4.8125 0.078125 5.6875 -0.3125 5.96875 -1.15625 L 5.984375 0.078125 L 8.4375 0.078125 L 8.4375 -0.59375 L 8.0625 -0.59375 C 7.734375 -0.59375 7.4375 -0.609375 7.4375 -1.0625 L 7.4375 -6.46875 L 5.765625 -6.46875 L 4.921875 -6.359375 L 4.921875 -5.78125 L 5.234375 -5.78125 C 5.609375 -5.78125 5.921875 -5.734375 5.921875 -5.328125 L 5.921875 -2.15625 C 5.84375 -1.25 5.25 -0.375 4.203125 -0.375 C 3.640625 -0.375 3.046875 -0.375 3.046875 -1.46875 C 3.046875 -1.671875 3.0625 -1.90625 3.0625 -2.09375 L 3.0625 -6.46875 L 1.390625 -6.46875 Z M 0.546875 -6.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 0.3125 -6.390625 L 0.3125 -5.8125 L 1.078125 -5.8125 C 1.34375 -5.8125 1.5625 -5.015625 1.75 -4.640625 C 2.359375 -3.234375 2.96875 -1.828125 3.625 -0.4375 C 3.75 -0.203125 3.765625 0.0625 4.15625 0.0625 C 4.515625 0.0625 4.578125 -0.171875 4.65625 -0.421875 C 5.3125 -1.75 5.875 -3.109375 6.484375 -4.453125 L 6.859375 -5.296875 C 7.015625 -5.796875 7.421875 -5.8125 7.984375 -5.8125 L 7.984375 -6.390625 L 5.6875 -6.390625 L 5.6875 -5.8125 C 5.890625 -5.8125 6.296875 -5.796875 6.375 -5.65625 L 6.375 -5.609375 C 6.375 -5.515625 6.3125 -5.421875 6.28125 -5.359375 C 6.171875 -5.125 6.0625 -4.890625 5.953125 -4.640625 L 5.140625 -2.796875 C 4.984375 -2.453125 4.796875 -2.09375 4.65625 -1.734375 L 4.640625 -1.734375 L 2.8125 -5.8125 L 3.609375 -5.8125 L 3.609375 -6.390625 Z M 0.3125 -6.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 3.671875 -6.515625 C 1.953125 -6.328125 0.4375 -5.375 0.4375 -3.15625 C 0.4375 -2.1875 0.796875 -1.234375 1.59375 -0.625 C 2.25 -0.125 3.109375 0.078125 3.9375 0.078125 C 5.6875 0.078125 7.4375 -0.890625 7.4375 -3.1875 C 7.4375 -3.96875 7.1875 -4.8125 6.65625 -5.40625 C 5.953125 -6.21875 4.875 -6.515625 3.84375 -6.515625 Z M 2.078125 -2.71875 L 2.078125 -3.46875 C 2.078125 -4.203125 2.09375 -5.046875 2.65625 -5.59375 C 2.984375 -5.921875 3.453125 -6.078125 3.921875 -6.078125 C 4.96875 -6.078125 5.65625 -5.390625 5.765625 -4.296875 C 5.796875 -4.015625 5.8125 -3.734375 5.8125 -3.453125 L 5.8125 -3.109375 C 5.8125 -2.40625 5.78125 -1.59375 5.34375 -1.046875 C 5 -0.609375 4.46875 -0.421875 3.9375 -0.421875 C 3.40625 -0.421875 2.84375 -0.625 2.515625 -1.078125 C 2.140625 -1.546875 2.140625 -2.15625 2.078125 -2.71875 Z M 2.078125 -2.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 1.546875 -1.484375 C 2.03125 -1.484375 2.5 -1.734375 2.5 -2.328125 C 2.5 -2.796875 2.15625 -3.171875 1.65625 -3.171875 C 1.171875 -3.171875 0.78125 -2.875 0.78125 -2.265625 C 0.78125 -0.859375 2.15625 0.15625 3.484375 0.15625 C 5.15625 0.15625 7.09375 -0.65625 7.09375 -2.921875 C 7.09375 -4.546875 5.953125 -5.90625 4.015625 -5.90625 C 3.34375 -5.90625 2.65625 -5.703125 2.140625 -5.28125 L 2.140625 -7.5625 C 2.515625 -7.484375 2.875 -7.4375 3.234375 -7.4375 L 3.34375 -7.4375 C 4.484375 -7.4375 5.5625 -7.984375 6.3125 -8.84375 C 6.390625 -8.96875 6.46875 -9.078125 6.46875 -9.203125 C 6.46875 -9.3125 6.421875 -9.40625 6.328125 -9.40625 C 6.296875 -9.40625 6.25 -9.40625 6.21875 -9.390625 C 5.515625 -9.125 4.765625 -8.96875 3.984375 -8.96875 C 3.453125 -8.96875 2.921875 -9.03125 2.421875 -9.1875 L 2 -9.3125 C 1.90625 -9.359375 1.828125 -9.390625 1.734375 -9.40625 L 1.6875 -9.40625 C 1.609375 -9.40625 1.5625 -9.359375 1.546875 -9.28125 L 1.546875 -4.703125 C 1.546875 -4.5625 1.625 -4.453125 1.78125 -4.453125 C 2.0625 -4.453125 2.234375 -4.8125 2.484375 -5 C 2.875 -5.3125 3.359375 -5.421875 3.84375 -5.453125 L 3.953125 -5.453125 C 5.296875 -5.453125 5.296875 -3.90625 5.296875 -2.96875 L 5.296875 -2.71875 C 5.296875 -2.109375 5.265625 -1.484375 4.890625 -0.96875 C 4.5625 -0.546875 4.046875 -0.375 3.53125 -0.375 C 2.6875 -0.375 2 -0.796875 1.546875 -1.484375 Z M 1.546875 -1.484375 "/>
</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 0.328125 -6.8125 L 0.328125 -6.515625 C 0.453125 -6.515625 0.59375 -6.515625 0.703125 -6.515625 C 1.0625 -6.515625 1.359375 -6.46875 1.359375 -6.078125 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.6875 -0.3125 C 0.5625 -0.3125 0.4375 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 3.265625 -0.015625 L 3.265625 -0.3125 L 2.9375 -0.3125 C 2.515625 -0.3125 2.25 -0.34375 2.25 -0.75 L 2.25 -3.40625 L 5.21875 -3.40625 L 5.21875 -0.75 C 5.21875 -0.359375 4.890625 -0.3125 4.53125 -0.3125 L 4.203125 -0.3125 L 4.203125 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 C 7.015625 -0.3125 6.890625 -0.3125 6.765625 -0.3125 C 6.421875 -0.3125 6.109375 -0.359375 6.109375 -0.75 L 6.109375 -6.078125 C 6.109375 -6.453125 6.4375 -6.515625 6.765625 -6.515625 C 6.890625 -6.515625 7.03125 -6.515625 7.140625 -6.515625 L 7.140625 -6.8125 L 4.203125 -6.8125 L 4.203125 -6.515625 L 4.53125 -6.515625 C 4.953125 -6.515625 5.21875 -6.484375 5.21875 -6.078125 L 5.21875 -3.703125 L 2.25 -3.703125 L 2.25 -6.078125 C 2.25 -6.46875 2.578125 -6.515625 2.9375 -6.515625 L 3.265625 -6.515625 L 3.265625 -6.8125 Z M 0.328125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 0.375 -4.296875 L 0.375 -3.984375 L 0.5625 -3.984375 C 0.84375 -3.984375 1.109375 -3.953125 1.109375 -3.484375 L 1.109375 -0.734375 C 1.109375 -0.375 0.921875 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.265625 -0.3125 C 2.015625 -0.3125 1.78125 -0.34375 1.78125 -0.671875 L 1.78125 -4.40625 Z M 1.203125 -6.671875 C 0.953125 -6.640625 0.75 -6.421875 0.75 -6.15625 C 0.75 -5.859375 1 -5.625 1.28125 -5.625 C 1.5625 -5.625 1.8125 -5.84375 1.8125 -6.15625 C 1.8125 -6.4375 1.5625 -6.671875 1.28125 -6.671875 C 1.25 -6.671875 1.234375 -6.671875 1.203125 -6.671875 Z M 1.203125 -6.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 1.109375 -2.3125 L 3.984375 -2.3125 C 4.09375 -2.3125 4.140625 -2.375 4.140625 -2.5 C 4.140625 -3.546875 3.5 -4.46875 2.375 -4.46875 C 1.15625 -4.46875 0.28125 -3.375 0.28125 -2.1875 C 0.28125 -1.28125 0.78125 -0.453125 1.671875 -0.0625 C 1.890625 0.046875 2.15625 0.09375 2.40625 0.09375 L 2.4375 0.09375 C 3.203125 0.09375 3.84375 -0.328125 4.109375 -1.09375 C 4.125 -1.125 4.125 -1.171875 4.125 -1.203125 C 4.125 -1.265625 4.09375 -1.3125 4.015625 -1.3125 C 3.875 -1.3125 3.8125 -0.984375 3.75 -0.875 C 3.5 -0.4375 3.015625 -0.15625 2.5 -0.15625 C 2.140625 -0.15625 1.8125 -0.359375 1.546875 -0.625 C 1.140625 -1.09375 1.109375 -1.734375 1.109375 -2.3125 Z M 1.125 -2.515625 C 1.125 -3.296875 1.53125 -4.25 2.359375 -4.25 L 2.40625 -4.25 C 3.375 -4.15625 3.375 -3.125 3.46875 -2.515625 Z M 1.125 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 0.265625 -4.296875 L 0.265625 -3.984375 L 0.421875 -3.984375 C 0.75 -3.984375 1.046875 -3.953125 1.046875 -3.484375 L 1.046875 -0.734375 C 1.046875 -0.328125 0.765625 -0.3125 0.328125 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.6875 -0.015625 L 2.6875 -0.3125 C 2.5625 -0.3125 2.421875 -0.3125 2.296875 -0.3125 C 1.984375 -0.3125 1.71875 -0.359375 1.71875 -0.734375 L 1.71875 -2.046875 C 1.71875 -2.90625 1.90625 -4.1875 2.890625 -4.1875 C 2.9375 -4.1875 2.953125 -4.1875 3 -4.171875 C 2.84375 -4.109375 2.765625 -3.953125 2.765625 -3.78125 C 2.765625 -3.5625 2.921875 -3.40625 3.15625 -3.359375 C 3.4375 -3.359375 3.625 -3.53125 3.625 -3.78125 C 3.625 -4.1875 3.25 -4.40625 2.890625 -4.40625 C 2.296875 -4.40625 1.78125 -3.875 1.671875 -3.34375 L 1.671875 -4.40625 Z M 0.265625 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 1.75 -4.46875 C 1.390625 -4.421875 1 -4.359375 0.703125 -4.109375 C 0.46875 -3.890625 0.328125 -3.5625 0.328125 -3.234375 C 0.328125 -1.53125 3.09375 -2.5 3.09375 -1 C 3.09375 -0.40625 2.546875 -0.125 2 -0.125 C 1.25 -0.125 0.734375 -0.65625 0.59375 -1.515625 C 0.578125 -1.609375 0.5625 -1.6875 0.453125 -1.6875 C 0.375 -1.6875 0.328125 -1.640625 0.328125 -1.5625 L 0.328125 0.015625 C 0.34375 0.0625 0.375 0.09375 0.421875 0.09375 L 0.4375 0.09375 C 0.59375 0.09375 0.75 -0.265625 0.875 -0.296875 L 0.890625 -0.296875 C 0.96875 -0.296875 1.234375 -0.046875 1.453125 0.015625 C 1.609375 0.078125 1.796875 0.09375 1.96875 0.09375 C 2.796875 0.09375 3.59375 -0.34375 3.59375 -1.25 C 3.59375 -1.90625 3.109375 -2.453125 2.453125 -2.625 C 1.828125 -2.796875 0.8125 -2.796875 0.8125 -3.515625 C 0.8125 -4.125 1.484375 -4.28125 1.921875 -4.28125 C 2.40625 -4.28125 3.09375 -4 3.09375 -3.15625 C 3.09375 -3.0625 3.09375 -2.984375 3.203125 -2.984375 C 3.3125 -2.984375 3.34375 -3.0625 3.34375 -3.15625 C 3.34375 -3.203125 3.34375 -3.265625 3.34375 -3.296875 L 3.34375 -4.328125 C 3.34375 -4.390625 3.3125 -4.46875 3.234375 -4.46875 C 3.078125 -4.46875 2.96875 -4.21875 2.859375 -4.21875 L 2.84375 -4.21875 C 2.765625 -4.21875 2.609375 -4.34375 2.5 -4.390625 C 2.3125 -4.453125 2.109375 -4.46875 1.921875 -4.46875 C 1.859375 -4.46875 1.8125 -4.46875 1.75 -4.46875 Z M 1.75 -4.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 0.1875 -4.296875 L 0.1875 -3.984375 L 0.375 -3.984375 C 0.875 -3.984375 0.921875 -3.78125 1.21875 -3.03125 L 2.03125 -1.03125 C 2.1875 -0.640625 2.390625 0.09375 2.625 0.09375 C 2.859375 0.09375 3.046875 -0.625 3.203125 -0.984375 L 4.03125 -3.046875 C 4.28125 -3.671875 4.5 -3.984375 5.0625 -3.984375 L 5.0625 -4.296875 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.671875 -3.984375 3.921875 -3.8125 3.921875 -3.578125 C 3.921875 -3.453125 3.875 -3.3125 3.8125 -3.1875 C 3.53125 -2.46875 3.25 -1.78125 2.953125 -1.078125 C 2.9375 -0.984375 2.875 -0.890625 2.859375 -0.796875 L 2.84375 -0.796875 C 2.78125 -1.03125 2.671875 -1.25 2.578125 -1.484375 L 1.765625 -3.5 C 1.734375 -3.578125 1.6875 -3.65625 1.6875 -3.734375 L 1.6875 -3.78125 C 1.75 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 Z M 0.1875 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 0.171875 -4.296875 L 0.171875 -3.984375 L 0.328125 -3.984375 C 0.84375 -3.984375 0.875 -3.765625 1.109375 -3.0625 C 1.359375 -2.375 1.625 -1.6875 1.859375 -1 L 2.15625 -0.15625 C 2.203125 -0.046875 2.234375 0.09375 2.375 0.09375 L 2.390625 0.09375 C 2.609375 0.09375 2.75 -0.5625 2.875 -0.890625 C 3.0625 -1.421875 3.25 -1.953125 3.453125 -2.484375 C 3.5 -2.625 3.5625 -2.765625 3.59375 -2.90625 C 3.625 -2.765625 3.6875 -2.625 3.734375 -2.484375 L 4.03125 -1.671875 C 4.203125 -1.15625 4.40625 -0.640625 4.578125 -0.125 C 4.625 -0.015625 4.671875 0.09375 4.8125 0.09375 C 5.03125 0.09375 5.1875 -0.609375 5.3125 -0.96875 L 5.875 -2.546875 C 6.109375 -3.1875 6.25 -3.984375 7.015625 -3.984375 L 7.015625 -4.296875 L 5.359375 -4.296875 L 5.359375 -3.984375 C 5.625 -3.984375 5.90625 -3.84375 5.9375 -3.5625 C 5.9375 -3.28125 5.765625 -2.953125 5.671875 -2.703125 C 5.515625 -2.265625 5.359375 -1.84375 5.21875 -1.421875 C 5.140625 -1.203125 5.03125 -0.984375 4.984375 -0.765625 L 4.96875 -0.765625 C 4.921875 -1 4.796875 -1.3125 4.6875 -1.5625 C 4.46875 -2.203125 4.234375 -2.84375 4 -3.5 C 3.984375 -3.5625 3.953125 -3.65625 3.953125 -3.734375 L 3.953125 -3.765625 C 4 -3.984375 4.328125 -3.984375 4.53125 -3.984375 L 4.53125 -4.296875 L 2.59375 -4.296875 L 2.59375 -3.984375 L 2.765625 -3.984375 C 3.15625 -3.984375 3.25 -3.84375 3.375 -3.5 C 3.40625 -3.421875 3.453125 -3.34375 3.453125 -3.265625 C 3.4375 -3.171875 3.390625 -3.078125 3.359375 -2.984375 L 2.796875 -1.40625 C 2.734375 -1.234375 2.6875 -1.0625 2.609375 -0.90625 C 2.5 -1.171875 2.40625 -1.453125 2.3125 -1.71875 C 2.15625 -2.15625 2 -2.578125 1.859375 -3.015625 L 1.671875 -3.515625 C 1.65625 -3.578125 1.609375 -3.65625 1.609375 -3.71875 C 1.609375 -3.984375 1.984375 -3.984375 2.203125 -3.984375 L 2.203125 -4.296875 Z M 0.171875 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.546875 4.375 -3.84375 C 4.140625 -4.28125 3.640625 -4.40625 3.1875 -4.40625 C 2.578125 -4.40625 1.9375 -3.984375 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 1.109375 -3.796875 C 1.359375 -4.109375 1.796875 -4.25 2.171875 -4.25 C 2.90625 -4.25 3.234375 -3.578125 3.234375 -2.875 L 3.234375 -2.609375 C 2.09375 -2.609375 0.40625 -2.25 0.40625 -0.953125 L 0.40625 -0.875 C 0.484375 -0.09375 1.453125 0.09375 2.03125 0.09375 C 2.53125 0.09375 3.1875 -0.234375 3.3125 -0.75 C 3.375 -0.3125 3.65625 0.046875 4.09375 0.046875 C 4.5 0.046875 4.859375 -0.28125 4.921875 -0.734375 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.953125 C 4.671875 -0.671875 4.609375 -0.265625 4.3125 -0.265625 C 3.984375 -0.265625 3.9375 -0.65625 3.9375 -0.921875 L 3.9375 -2.59375 C 3.9375 -2.71875 3.953125 -2.84375 3.953125 -2.96875 C 3.953125 -3.9375 3.046875 -4.46875 2.21875 -4.46875 C 1.578125 -4.46875 0.703125 -4.15625 0.703125 -3.359375 C 0.703125 -3.078125 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.609375 -3.09375 1.609375 -3.34375 C 1.609375 -3.625 1.390625 -3.796875 1.109375 -3.796875 Z M 3.234375 -2.40625 L 3.234375 -1.390625 C 3.234375 -0.703125 2.765625 -0.15625 2.109375 -0.125 L 2.078125 -0.125 C 1.609375 -0.125 1.1875 -0.484375 1.1875 -0.96875 L 1.1875 -1.015625 C 1.25 -2.03125 2.375 -2.375 3.234375 -2.40625 Z M 3.234375 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.453125 -3.984375 C 0.734375 -3.984375 1.03125 -3.96875 1.09375 -3.671875 C 1.09375 -3.5625 1.09375 -3.453125 1.09375 -3.34375 L 1.09375 -1.359375 C 1.09375 -1.03125 1.109375 -0.734375 1.28125 -0.4375 C 1.5625 -0.015625 2.125 0.109375 2.59375 0.109375 C 3.046875 0.109375 3.453125 -0.09375 3.703125 -0.453125 C 3.765625 -0.5625 3.84375 -0.65625 3.875 -0.78125 L 3.875 0.09375 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.171875 -0.3125 C 4.84375 -0.3125 4.546875 -0.34375 4.546875 -0.796875 L 4.546875 -4.40625 L 3.078125 -4.296875 L 3.078125 -3.984375 L 3.21875 -3.984375 C 3.546875 -3.984375 3.84375 -3.953125 3.84375 -3.484375 L 3.84375 -1.6875 C 3.84375 -0.953125 3.46875 -0.125 2.640625 -0.125 C 2.078125 -0.125 1.796875 -0.265625 1.796875 -1.328125 L 1.796875 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.6875 C 1.109375 -0.34375 0.8125 -0.3125 0.515625 -0.3125 L 0.34375 -0.3125 L 0.34375 -0.015625 L 2.734375 -0.015625 L 2.734375 -0.3125 L 2.421875 -0.3125 C 2.203125 -0.3125 1.96875 -0.328125 1.859375 -0.4375 C 1.78125 -0.53125 1.78125 -0.65625 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.609375 C 1.75 -6.15625 2.125 -6.8125 2.65625 -6.8125 C 2.765625 -6.8125 2.90625 -6.796875 2.984375 -6.734375 C 2.796875 -6.6875 2.6875 -6.515625 2.6875 -6.3125 C 2.6875 -6.0625 2.875 -5.890625 3.125 -5.890625 C 3.375 -5.890625 3.5625 -6.09375 3.5625 -6.3125 C 3.5625 -6.78125 3.078125 -7.03125 2.65625 -7.03125 C 1.75 -7.03125 1.109375 -6.328125 1.109375 -5.359375 Z M 1.109375 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 0.3125 -0.3125 L 0.3125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 C 2.15625 -0.3125 1.75 -0.46875 1.71875 -0.8125 C 1.71875 -0.921875 1.78125 -1 1.796875 -1.09375 C 1.90625 -1.421875 2.015625 -1.75 2.140625 -2.078125 C 2.171875 -2.15625 2.171875 -2.28125 2.3125 -2.28125 L 4.578125 -2.28125 C 4.6875 -2.28125 4.703125 -2.171875 4.75 -2.078125 L 4.953125 -1.453125 C 5.046875 -1.203125 5.234375 -0.8125 5.234375 -0.609375 L 5.234375 -0.5625 C 5.140625 -0.328125 4.75 -0.3125 4.46875 -0.3125 L 4.40625 -0.3125 L 4.40625 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 L 6.859375 -0.3125 C 6.625 -0.3125 6.390625 -0.34375 6.265625 -0.453125 C 6.15625 -0.578125 6.125 -0.75 6.0625 -0.890625 C 5.546875 -2.375 5.046875 -3.875 4.515625 -5.359375 C 4.34375 -5.875 4.09375 -6.4375 3.96875 -6.953125 C 3.921875 -7.09375 3.875 -7.140625 3.734375 -7.140625 C 3.53125 -7.140625 3.484375 -6.9375 3.421875 -6.734375 C 2.875 -5.046875 2.25 -3.390625 1.6875 -1.71875 L 1.46875 -1.109375 C 1.421875 -0.9375 1.359375 -0.75 1.21875 -0.625 C 0.984375 -0.375 0.640625 -0.3125 0.3125 -0.3125 Z M 2.328125 -2.59375 L 3.4375 -5.828125 L 4.5625 -2.59375 Z M 2.328125 -2.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 0.265625 -6.8125 L 0.265625 -6.515625 L 0.4375 -6.515625 C 0.75 -6.515625 1.046875 -6.484375 1.046875 -6.015625 L 1.046875 -0.015625 L 1.28125 -0.03125 L 1.421875 -0.203125 L 1.65625 -0.625 L 1.671875 -0.625 C 1.90625 -0.140625 2.5 0.09375 3 0.09375 C 4.234375 0.09375 5.1875 -0.984375 5.1875 -2.15625 C 5.1875 -3.3125 4.3125 -4.40625 3.046875 -4.40625 C 2.515625 -4.40625 2.0625 -4.15625 1.71875 -3.765625 L 1.71875 -6.921875 Z M 4.34375 -1.90625 C 4.3125 -1.4375 4.25 -1.015625 3.953125 -0.640625 C 3.703125 -0.328125 3.328125 -0.125 2.9375 -0.125 C 2.5 -0.125 2.109375 -0.375 1.890625 -0.734375 C 1.796875 -0.84375 1.75 -0.921875 1.75 -1.078125 L 1.75 -2.734375 C 1.75 -2.875 1.734375 -3 1.734375 -3.125 C 1.734375 -3.734375 2.46875 -4.1875 3.015625 -4.1875 C 4.09375 -4.1875 4.359375 -2.9375 4.359375 -2.140625 C 4.359375 -2.0625 4.359375 -2 4.34375 -1.90625 Z M 4.34375 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 3.578125 -3.859375 C 3.3125 -3.84375 3.109375 -3.671875 3.109375 -3.40625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.875 -2.9375 4.03125 -3.15625 4.03125 -3.4375 L 4.03125 -3.5 C 3.921875 -4.234375 3.078125 -4.46875 2.5 -4.46875 C 1.28125 -4.46875 0.328125 -3.40625 0.328125 -2.15625 C 0.328125 -1.03125 1.203125 0.09375 2.5 0.09375 C 3.15625 0.09375 3.796875 -0.265625 4.0625 -0.953125 C 4.09375 -1.015625 4.140625 -1.109375 4.140625 -1.171875 C 4.140625 -1.25 4.09375 -1.296875 4.015625 -1.296875 C 3.875 -1.296875 3.78125 -0.921875 3.703125 -0.78125 C 3.46875 -0.40625 3.0625 -0.15625 2.609375 -0.15625 C 1.546875 -0.15625 1.21875 -1.21875 1.171875 -2 L 1.171875 -2.125 C 1.171875 -2.921875 1.359375 -4.109375 2.453125 -4.21875 L 2.53125 -4.21875 C 2.90625 -4.21875 3.296875 -4.109375 3.578125 -3.859375 Z M 3.578125 -3.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 0.3125 -6.8125 L 0.3125 -6.515625 L 0.46875 -6.515625 C 0.84375 -6.515625 1.09375 -6.46875 1.09375 -5.984375 L 1.09375 -0.953125 C 1.09375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.53125 4.390625 -3.84375 C 4.140625 -4.28125 3.65625 -4.40625 3.1875 -4.40625 C 2.609375 -4.40625 1.96875 -4.015625 1.78125 -3.453125 L 1.765625 -6.921875 Z M 0.3125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-16">
<path style="stroke:none;" d="M 1.484375 -6.140625 C 1.484375 -5.453125 1.203125 -4.203125 0.171875 -4.203125 L 0.171875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.421875 C 1.03125 -1.09375 1.0625 -0.75 1.21875 -0.46875 C 1.4375 -0.0625 1.90625 0.09375 2.34375 0.09375 C 3.15625 0.09375 3.3125 -0.8125 3.3125 -1.453125 L 3.3125 -1.8125 L 3.078125 -1.8125 C 3.078125 -1.671875 3.078125 -1.515625 3.078125 -1.359375 C 3.078125 -0.921875 2.984375 -0.15625 2.390625 -0.15625 C 1.828125 -0.15625 1.734375 -0.84375 1.734375 -1.28125 L 1.734375 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.734375 -4.296875 L 1.734375 -6.140625 Z M 1.484375 -6.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-17">
<path style="stroke:none;" d="M 0.890625 -6.015625 L 0.890625 -5.703125 C 1.328125 -5.703125 1.796875 -5.75 2.1875 -5.96875 L 2.1875 -0.75 C 2.1875 -0.375 1.8125 -0.3125 1.421875 -0.3125 C 1.25 -0.3125 1.09375 -0.3125 0.953125 -0.3125 L 0.953125 -0.015625 L 4.1875 -0.015625 L 4.1875 -0.3125 C 4.015625 -0.3125 3.84375 -0.3125 3.6875 -0.3125 C 3.296875 -0.3125 2.9375 -0.375 2.9375 -0.75 L 2.9375 -6.484375 C 2.9375 -6.578125 2.90625 -6.65625 2.796875 -6.65625 C 2.65625 -6.65625 2.5 -6.453125 2.375 -6.375 C 1.9375 -6.09375 1.40625 -6.015625 0.890625 -6.015625 Z M 0.890625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-18">
<path style="stroke:none;" d="M 1.78125 -0.1875 C 1.796875 -0.140625 1.8125 -0.078125 1.8125 -0.015625 C 1.8125 0.65625 1.5 1.234375 1.0625 1.71875 C 1.03125 1.75 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.859375 1.0625 1.90625 1.109375 1.90625 C 1.25 1.90625 1.53125 1.53125 1.65625 1.3125 C 1.890625 0.90625 2.03125 0.4375 2.03125 -0.03125 C 2.03125 -0.484375 1.890625 -1.0625 1.375 -1.0625 C 1.078125 -1.0625 0.859375 -0.84375 0.859375 -0.53125 C 0.859375 -0.203125 1.109375 -0.015625 1.390625 -0.015625 C 1.53125 -0.015625 1.6875 -0.0625 1.78125 -0.1875 Z M 1.78125 -0.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-19">
<path style="stroke:none;" d="M 0.890625 -5.328125 C 1.125 -5.828125 1.5 -6.34375 2.21875 -6.34375 C 3.15625 -6.34375 3.5625 -5.484375 3.5625 -4.703125 C 3.5625 -3.78125 2.953125 -3.03125 2.375 -2.375 C 1.8125 -1.703125 1.203125 -1.0625 0.625 -0.40625 C 0.53125 -0.3125 0.5 -0.265625 0.5 -0.125 L 0.5 -0.015625 L 4.203125 -0.015625 L 4.46875 -1.75 L 4.234375 -1.75 C 4.140625 -1.296875 4.203125 -0.796875 3.6875 -0.796875 L 3.296875 -0.796875 C 3 -0.78125 2.71875 -0.78125 2.421875 -0.78125 C 2.03125 -0.78125 1.65625 -0.78125 1.28125 -0.78125 L 1.96875 -1.453125 C 2.25 -1.71875 2.515625 -1.984375 2.796875 -2.234375 C 3.53125 -2.890625 4.46875 -3.609375 4.46875 -4.71875 C 4.46875 -5.84375 3.515625 -6.65625 2.390625 -6.65625 C 1.4375 -6.65625 0.5 -5.9375 0.5 -4.859375 C 0.5 -4.609375 0.59375 -4.296875 1.015625 -4.296875 C 1.3125 -4.296875 1.546875 -4.5 1.546875 -4.8125 C 1.546875 -5.078125 1.34375 -5.328125 1.03125 -5.328125 C 0.984375 -5.328125 0.9375 -5.328125 0.890625 -5.328125 Z M 0.890625 -5.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-20">
<path style="stroke:none;" d="M 3.03125 -6.8125 L 3.03125 -6.515625 L 3.1875 -6.515625 C 3.53125 -6.515625 3.8125 -6.46875 3.8125 -5.890625 L 3.796875 -3.796875 C 3.5625 -4.203125 2.984375 -4.40625 2.53125 -4.40625 C 1.3125 -4.40625 0.328125 -3.34375 0.328125 -2.140625 C 0.328125 -1.078125 1.140625 0.09375 2.46875 0.09375 C 2.984375 0.09375 3.453125 -0.15625 3.78125 -0.546875 L 3.78125 0.09375 L 5.25 -0.015625 L 5.25 -0.3125 L 5.078125 -0.3125 C 4.78125 -0.3125 4.46875 -0.34375 4.46875 -0.8125 L 4.46875 -6.921875 Z M 1.171875 -1.90625 L 1.171875 -2.046875 C 1.171875 -2.796875 1.25 -3.53125 1.9375 -4 C 2.140625 -4.109375 2.375 -4.1875 2.609375 -4.1875 C 3.09375 -4.1875 3.78125 -3.78125 3.78125 -3.15625 C 3.78125 -3.03125 3.78125 -2.90625 3.78125 -2.765625 L 3.78125 -1.109375 C 3.78125 -0.984375 3.734375 -0.890625 3.65625 -0.796875 C 3.40625 -0.40625 2.96875 -0.125 2.5 -0.125 C 1.78125 -0.125 1.3125 -0.78125 1.203125 -1.46875 C 1.1875 -1.609375 1.1875 -1.765625 1.171875 -1.90625 Z M 1.171875 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-21">
<path style="stroke:none;" d="M 0.28125 -1.65625 L 2.9375 -1.65625 L 2.9375 -0.75 C 2.9375 -0.34375 2.625 -0.3125 2.109375 -0.3125 L 1.96875 -0.3125 L 1.96875 -0.015625 L 4.671875 -0.015625 L 4.671875 -0.3125 C 4.546875 -0.3125 4.421875 -0.3125 4.296875 -0.3125 C 3.984375 -0.3125 3.703125 -0.375 3.703125 -0.75 L 3.703125 -1.65625 L 4.6875 -1.65625 L 4.6875 -1.96875 L 3.703125 -1.96875 L 3.703125 -6.4375 C 3.703125 -6.46875 3.71875 -6.515625 3.71875 -6.5625 C 3.71875 -6.671875 3.6875 -6.765625 3.5625 -6.765625 C 3.40625 -6.765625 3.375 -6.6875 3.3125 -6.578125 C 2.375 -5.15625 1.4375 -3.734375 0.515625 -2.328125 C 0.390625 -2.140625 0.265625 -2 0.265625 -1.828125 C 0.265625 -1.78125 0.28125 -1.71875 0.28125 -1.65625 Z M 0.5625 -1.96875 L 2.984375 -5.65625 L 2.984375 -1.96875 Z M 0.5625 -1.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-22">
<path style="stroke:none;" d="M 1.3125 -1.0625 C 1.0625 -1.03125 0.859375 -0.796875 0.859375 -0.546875 C 0.859375 -0.296875 1.0625 -0.015625 1.359375 -0.015625 C 1.640625 -0.015625 1.90625 -0.21875 1.90625 -0.53125 C 1.90625 -0.78125 1.71875 -1.0625 1.390625 -1.0625 C 1.359375 -1.0625 1.328125 -1.0625 1.3125 -1.0625 Z M 1.3125 -1.0625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="-0.198" y="10.871"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="23.471795" y="10.871"/>
<use xlink:href="#glyph0-3" x="33.824013" y="10.871"/>
<use xlink:href="#glyph0-4" x="38.206777" y="10.871"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="52.223015" y="10.871"/>
<use xlink:href="#glyph0-3" x="62.575233" y="10.871"/>
<use xlink:href="#glyph0-4" x="66.957997" y="10.871"/>
<use xlink:href="#glyph0-5" x="75.723525" y="10.871"/>
<use xlink:href="#glyph0-6" x="81.946907" y="10.871"/>
<use xlink:href="#glyph0-3" x="88.082776" y="10.871"/>
<use xlink:href="#glyph0-7" x="92.46554" y="10.871"/>
<use xlink:href="#glyph0-8" x="99.63864" y="10.871"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="-0.198" y="38.667"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="23.471795" y="38.667"/>
<use xlink:href="#glyph0-3" x="34.68622" y="38.667"/>
<use xlink:href="#glyph0-6" x="39.068984" y="38.667"/>
<use xlink:href="#glyph0-6" x="45.204854" y="38.667"/>
<use xlink:href="#glyph0-7" x="51.340724" y="38.667"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="63.764533" y="38.667"/>
<use xlink:href="#glyph0-11" x="69.987914" y="38.667"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="76.569951" y="38.667"/>
<use xlink:href="#glyph0-4" x="85.335479" y="38.667"/>
<use xlink:href="#glyph0-13" x="94.101007" y="38.667"/>
<use xlink:href="#glyph0-14" x="101.989983" y="38.667"/>
<use xlink:href="#glyph0-14" x="106.372747" y="38.667"/>
<use xlink:href="#glyph0-7" x="110.755511" y="38.667"/>
<use xlink:href="#glyph0-4" x="117.928611" y="38.667"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="131.944848" y="38.667"/>
<use xlink:href="#glyph0-3" x="140.710376" y="38.667"/>
<use xlink:href="#glyph0-7" x="145.093141" y="38.667"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="157.531296" y="38.667"/>
<use xlink:href="#glyph0-3" x="163.754677" y="38.667"/>
<use xlink:href="#glyph0-11" x="168.137442" y="38.667"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="174.705132" y="38.667"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="188.735716" y="38.667"/>
<use xlink:href="#glyph0-4" x="196.624691" y="38.667"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="-0.198" y="66.463"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="23.471795" y="66.463"/>
<use xlink:href="#glyph0-7" x="31.617568" y="66.463"/>
<use xlink:href="#glyph0-6" x="38.790668" y="66.463"/>
<use xlink:href="#glyph0-18" x="44.926537" y="66.463"/>
<use xlink:href="#glyph0-6" x="51.93896" y="66.463"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="63.325539" y="66.463"/>
<use xlink:href="#glyph0-7" x="71.214514" y="66.463"/>
<use xlink:href="#glyph0-12" x="78.387614" y="66.463"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="86.722757" y="66.463"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="98.109336" y="66.463"/>
<use xlink:href="#glyph0-5" x="105.282436" y="66.463"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="116.770872" y="66.463"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="125.966787" y="66.463"/>
<use xlink:href="#glyph0-20" x="133.139887" y="66.463"/>
<use xlink:href="#glyph0-8" x="139.542596" y="66.463"/>
<use xlink:href="#glyph0-13" x="147.431571" y="66.463"/>
<use xlink:href="#glyph0-19" x="155.320546" y="66.463"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-21" x="-0.198" y="94.259"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-22" x="23.471795" y="94.259"/>
<use xlink:href="#glyph0-23" x="35.821004" y="94.259"/>
<use xlink:href="#glyph0-20" x="44.586533" y="94.259"/>
<use xlink:href="#glyph0-18" x="50.989242" y="94.259"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="63.252373" y="94.259"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="71.148522" y="94.259"/>
<use xlink:href="#glyph0-20" x="79.037497" y="94.259"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="90.690915" y="94.259"/>
<use xlink:href="#glyph0-3" x="101.043133" y="94.259"/>
<use xlink:href="#glyph0-4" x="105.425897" y="94.259"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="113.76104" y="94.259"/>
<use xlink:href="#glyph0-20" x="119.896909" y="94.259"/>
<use xlink:href="#glyph0-3" x="126.299619" y="94.259"/>
<use xlink:href="#glyph0-6" x="130.682383" y="94.259"/>
<use xlink:href="#glyph0-6" x="136.818252" y="94.259"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="-0.198" y="122.056"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="23.471795" y="122.056"/>
<use xlink:href="#glyph0-7" x="34.68622" y="122.056"/>
<use xlink:href="#glyph0-20" x="41.85932" y="122.056"/>
<use xlink:href="#glyph0-23" x="48.262029" y="122.056"/>
<use xlink:href="#glyph0-12" x="57.027557" y="122.056"/>
<use xlink:href="#glyph0-3" x="65.793085" y="122.056"/>
<use xlink:href="#glyph0-8" x="70.175849" y="122.056"/>
<use xlink:href="#glyph0-7" x="78.064825" y="122.056"/>
<use xlink:href="#glyph0-4" x="85.237925" y="122.056"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="99.254162" y="122.056"/>
<use xlink:href="#glyph0-3" x="108.01969" y="122.056"/>
<use xlink:href="#glyph0-7" x="112.402455" y="122.056"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="124.84061" y="122.056"/>
<use xlink:href="#glyph0-3" x="131.063992" y="122.056"/>
<use xlink:href="#glyph0-11" x="135.446756" y="122.056"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="142.014446" y="122.056"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="-0.198" y="143.874"/>
<use xlink:href="#glyph1-2" x="7.271957" y="143.874"/>
<use xlink:href="#glyph1-3" x="10.038571" y="143.874"/>
<use xlink:href="#glyph1-4" x="14.464955" y="143.874"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="21.683855" y="143.874"/>
<use xlink:href="#glyph1-3" x="25.612108" y="143.874"/>
<use xlink:href="#glyph1-2" x="30.038491" y="143.874"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="36.132613" y="143.874"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="41.110925" y="143.874"/>
<use xlink:href="#glyph1-4" x="45.537308" y="143.874"/>
<use xlink:href="#glyph1-7" x="49.438662" y="143.874"/>
<use xlink:href="#glyph1-2" x="56.631659" y="143.874"/>
<use xlink:href="#glyph1-3" x="59.398273" y="143.874"/>
<use xlink:href="#glyph1-5" x="63.824656" y="143.874"/>
<use xlink:href="#glyph1-3" x="67.75291" y="143.874"/>
<use xlink:href="#glyph1-8" x="72.179293" y="143.874"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="81.030067" y="143.874"/>
<use xlink:href="#glyph1-10" x="86.01037" y="143.874"/>
<use xlink:href="#glyph1-11" x="91.543598" y="143.874"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="97.914681" y="143.874"/>
<use xlink:href="#glyph1-13" x="105.384639" y="143.874"/>
<use xlink:href="#glyph1-5" x="110.917867" y="143.874"/>
<use xlink:href="#glyph1-14" x="114.84612" y="143.874"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="118.99355" y="143.874"/>
<use xlink:href="#glyph1-8" x="124.526778" y="143.874"/>
<use xlink:href="#glyph1-2" x="130.060006" y="143.874"/>
<use xlink:href="#glyph1-16" x="132.82662" y="143.874"/>
<use xlink:href="#glyph1-16" x="136.700079" y="143.874"/>
<use xlink:href="#glyph1-3" x="140.573538" y="143.874"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-17" x="148.317467" y="143.874"/>
<use xlink:href="#glyph1-18" x="153.297771" y="143.874"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="159.381931" y="143.874"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="167.689743" y="143.874"/>
<use xlink:href="#glyph1-8" x="173.222971" y="143.874"/>
<use xlink:href="#glyph1-20" x="178.756199" y="143.874"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-21" x="187.606973" y="143.874"/>
<use xlink:href="#glyph1-22" x="192.587276" y="143.874"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 56 KiB

View File

@ -0,0 +1,363 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" version="1.1">
<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 1.234375 -8.5 L 1.234375 -7.9375 C 1.921875 -7.9375 2.625 -7.984375 3.28125 -8.203125 L 3.28125 -0.59375 L 1.3125 -0.59375 L 1.3125 -0.015625 L 6.78125 -0.015625 L 6.78125 -0.59375 L 4.84375 -0.59375 L 4.84375 -8.859375 C 4.84375 -8.921875 4.859375 -9.015625 4.859375 -9.109375 C 4.859375 -9.3125 4.796875 -9.421875 4.578125 -9.421875 C 4.296875 -9.421875 4.015625 -9.09375 3.71875 -8.953125 C 2.9375 -8.59375 2.078125 -8.5 1.234375 -8.5 Z M 1.234375 -8.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0.5 -9.796875 L 0.5 -9.21875 L 2.015625 -9.21875 L 2.015625 -0.59375 L 0.5 -0.59375 L 0.5 -0.015625 L 9.3125 -0.015625 L 9.890625 -3.84375 L 9.359375 -3.84375 C 9.1875 -2.953125 9.09375 -1.984375 8.421875 -1.3125 C 7.703125 -0.609375 6.640625 -0.59375 5.703125 -0.59375 L 3.796875 -0.59375 L 3.796875 -4.8125 L 4.640625 -4.8125 C 5.234375 -4.8125 5.921875 -4.734375 6.125 -4.015625 C 6.203125 -3.734375 6.203125 -3.421875 6.203125 -3.125 L 6.75 -3.125 L 6.75 -7.0625 L 6.203125 -7.0625 C 6.203125 -6.65625 6.203125 -6.203125 6 -5.875 C 5.703125 -5.421875 5.15625 -5.375 4.640625 -5.375 L 3.796875 -5.375 L 3.796875 -9.21875 L 5.984375 -9.21875 C 6.953125 -9.21875 7.921875 -9.125 8.515625 -8.125 C 8.796875 -7.609375 8.84375 -7.015625 8.921875 -6.4375 L 9.46875 -6.4375 L 9.078125 -9.796875 Z M 0.5 -9.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 0.625 -6.359375 L 0.625 -5.78125 C 0.734375 -5.78125 0.84375 -5.796875 0.96875 -5.796875 C 1.28125 -5.796875 1.578125 -5.734375 1.578125 -5.328125 L 1.578125 -0.59375 L 0.59375 -0.59375 L 0.59375 -0.015625 L 3.9375 -0.015625 L 3.9375 -0.59375 L 3.03125 -0.59375 L 3.03125 -6.46875 L 1.4375 -6.46875 Z M 1.984375 -9.984375 C 1.5 -9.890625 1.140625 -9.515625 1.140625 -9.015625 C 1.140625 -8.515625 1.515625 -8.046875 2.125 -8.046875 L 2.21875 -8.046875 C 2.703125 -8.140625 3.0625 -8.515625 3.0625 -9.015625 C 3.0625 -9.515625 2.6875 -9.984375 2.078125 -9.984375 Z M 1.984375 -9.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.546875 -6.359375 L 0.546875 -5.78125 L 0.828125 -5.78125 C 1.203125 -5.78125 1.546875 -5.734375 1.546875 -5.296875 L 1.546875 -0.59375 L 0.546875 -0.59375 L 0.546875 -0.015625 L 4.0625 -0.015625 L 4.0625 -0.59375 L 3.0625 -0.59375 L 3.0625 -3.5 C 3.0625 -4.65625 3.65625 -6.03125 5.046875 -6.03125 C 5.875 -6.03125 5.921875 -5.09375 5.921875 -4.28125 L 5.921875 -0.59375 L 4.921875 -0.59375 L 4.921875 -0.015625 L 8.4375 -0.015625 L 8.4375 -0.59375 L 7.4375 -0.59375 L 7.4375 -4.3125 C 7.4375 -4.8125 7.40625 -5.296875 7.125 -5.71875 C 6.734375 -6.359375 5.953125 -6.46875 5.28125 -6.46875 C 4.25 -6.46875 3.234375 -5.8125 2.953125 -4.8125 L 2.9375 -6.46875 L 1.34375 -6.46875 Z M 0.546875 -6.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.484375 -0.46875 C 1.9375 -0.078125 2.578125 0.078125 3.203125 0.078125 C 4.5 0.078125 5.6875 -0.515625 5.6875 -2 L 5.6875 -2.15625 C 5.609375 -2.984375 4.984375 -3.59375 4.234375 -3.890625 C 3.859375 -4.03125 3.453125 -4.09375 3.0625 -4.15625 C 2.5 -4.265625 1.46875 -4.40625 1.46875 -5.15625 C 1.46875 -5.9375 2.375 -6.109375 3.03125 -6.109375 C 3.875 -6.109375 4.640625 -5.78125 4.75 -4.765625 C 4.75 -4.640625 4.75 -4.515625 4.96875 -4.515625 L 5.0625 -4.515625 C 5.234375 -4.515625 5.3125 -4.59375 5.3125 -4.796875 C 5.3125 -4.875 5.296875 -4.96875 5.296875 -5.03125 L 5.296875 -6.3125 C 5.296875 -6.4375 5.234375 -6.515625 5.109375 -6.515625 C 4.84375 -6.515625 4.640625 -6.203125 4.484375 -6.203125 C 4.296875 -6.203125 4.015625 -6.40625 3.75 -6.453125 C 3.5 -6.5 3.25 -6.515625 3.015625 -6.515625 C 1.96875 -6.515625 0.53125 -6.234375 0.53125 -4.59375 C 0.53125 -3.125 2.25 -2.859375 3.28125 -2.671875 C 3.90625 -2.546875 4.75 -2.328125 4.75 -1.484375 C 4.75 -0.421875 3.578125 -0.375 2.984375 -0.375 C 1.90625 -0.515625 1.46875 -1 1.078125 -2.203125 C 1.03125 -2.359375 0.921875 -2.359375 0.78125 -2.359375 C 0.609375 -2.359375 0.53125 -2.296875 0.53125 -2.09375 L 0.53125 -0.34375 C 0.53125 -0.296875 0.515625 -0.234375 0.515625 -0.15625 C 0.515625 -0.03125 0.5625 0.078125 0.703125 0.078125 C 0.875 0.078125 1.0625 -0.109375 1.171875 -0.21875 C 1.28125 -0.296875 1.390625 -0.375 1.484375 -0.46875 Z M 1.484375 -0.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 2.390625 -9.125 C 2.390625 -8 1.828125 -6.25 0.28125 -6.25 L 0.28125 -5.8125 L 1.4375 -5.8125 L 1.4375 -1.9375 C 1.4375 -1.5 1.46875 -1.078125 1.703125 -0.703125 C 2.125 -0.078125 2.921875 0.078125 3.59375 0.078125 C 4.71875 0.078125 5.25 -0.859375 5.25 -1.984375 L 5.25 -2.546875 L 4.703125 -2.546875 C 4.703125 -2.359375 4.71875 -2.15625 4.71875 -1.9375 C 4.71875 -1.359375 4.578125 -0.421875 3.796875 -0.421875 C 3.078125 -0.421875 2.9375 -1.171875 2.9375 -1.84375 L 2.9375 -5.8125 L 4.984375 -5.8125 L 4.984375 -6.390625 L 2.9375 -6.390625 L 2.9375 -9.125 Z M 2.390625 -9.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 2.0625 -3.234375 L 6.484375 -3.234375 C 6.671875 -3.234375 6.734375 -3.328125 6.734375 -3.5 C 6.734375 -5.046875 5.96875 -6.53125 3.78125 -6.53125 C 3.015625 -6.53125 2.21875 -6.3125 1.609375 -5.84375 C 0.8125 -5.234375 0.4375 -4.25 0.4375 -3.25 C 0.4375 -1.203125 2 0.078125 3.96875 0.078125 C 5.046875 0.078125 6.234375 -0.375 6.6875 -1.53125 C 6.703125 -1.59375 6.734375 -1.640625 6.734375 -1.6875 C 6.734375 -1.828125 6.59375 -1.890625 6.4375 -1.890625 C 6.171875 -1.890625 6.09375 -1.515625 5.984375 -1.3125 C 5.609375 -0.734375 4.875 -0.421875 4.1875 -0.421875 C 3.4375 -0.421875 2.71875 -0.765625 2.359375 -1.453125 C 2.078125 -2 2.0625 -2.625 2.0625 -3.234375 Z M 2.0625 -3.609375 C 2.0625 -4.25 2.140625 -4.9375 2.53125 -5.453125 C 2.828125 -5.84375 3.3125 -6.0625 3.78125 -6.0625 C 5.09375 -6.0625 5.421875 -4.6875 5.421875 -3.609375 Z M 2.0625 -3.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 1.546875 -2.84375 C 1.21875 -2.484375 1.046875 -2.015625 1.046875 -1.53125 C 1.046875 -0.984375 1.28125 -0.5625 1.671875 -0.15625 C 1 -0.0625 0.4375 0.46875 0.4375 1.078125 C 0.4375 2.625 2.859375 2.875 4 2.875 C 5.25 2.875 7.4375 2.578125 7.4375 1.03125 C 7.4375 -0.5 6.234375 -1.140625 4.078125 -1.140625 L 3.28125 -1.140625 C 3.125 -1.140625 2.953125 -1.140625 2.78125 -1.140625 C 2.140625 -1.140625 1.640625 -1.46875 1.640625 -2.09375 L 1.640625 -2.15625 C 1.65625 -2.34375 1.71875 -2.5 1.8125 -2.65625 C 2.375 -2.40625 2.875 -2.265625 3.5 -2.265625 C 4.71875 -2.265625 6.203125 -2.84375 6.203125 -4.359375 C 6.203125 -4.921875 5.984375 -5.328125 5.609375 -5.78125 C 5.953125 -5.921875 6.296875 -6.078125 6.671875 -6.09375 C 6.609375 -6 6.578125 -5.875 6.578125 -5.765625 C 6.578125 -5.453125 6.828125 -5.25 7.125 -5.25 C 7.4375 -5.25 7.65625 -5.5 7.65625 -5.78125 C 7.65625 -6.21875 7.265625 -6.5625 6.828125 -6.5625 C 6.328125 -6.5625 5.828125 -6.359375 5.4375 -6.0625 C 5.40625 -6.03125 5.359375 -6.015625 5.328125 -6.015625 C 5.25 -6.015625 5.125 -6.125 5.015625 -6.171875 C 4.546875 -6.390625 4.015625 -6.484375 3.484375 -6.484375 C 2.078125 -6.484375 0.796875 -5.71875 0.796875 -4.359375 C 0.796875 -3.8125 1.0625 -3.15625 1.546875 -2.84375 Z M 1.5625 1.171875 C 1.5625 1.140625 1.546875 1.109375 1.546875 1.0625 C 1.546875 0.65625 1.828125 0.265625 2.21875 0.15625 C 2.390625 0.109375 2.578125 0.109375 2.75 0.109375 L 4.09375 0.109375 C 4.875 0.109375 6.3125 0.109375 6.3125 1.109375 C 6.3125 2.1875 4.8125 2.453125 3.984375 2.453125 C 3.046875 2.453125 1.703125 2.21875 1.5625 1.171875 Z M 2.265625 -3.96875 L 2.265625 -4.4375 C 2.265625 -5.171875 2.390625 -6.046875 3.515625 -6.046875 C 4.484375 -6.046875 4.734375 -5.375 4.734375 -4.328125 L 4.734375 -4.21875 C 4.734375 -3.453125 4.515625 -2.6875 3.5 -2.6875 C 3.140625 -2.6875 2.765625 -2.8125 2.546875 -3.0625 C 2.328125 -3.328125 2.3125 -3.640625 2.265625 -3.96875 Z M 2.265625 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 1.65625 -7.953125 C 2.03125 -8.515625 2.71875 -8.84375 3.40625 -8.84375 C 4.625 -8.84375 5.328125 -7.796875 5.328125 -6.703125 L 5.328125 -6.53125 C 5.25 -5.171875 4.171875 -4.0625 3.28125 -3.140625 C 2.5 -2.328125 1.65625 -1.515625 0.9375 -0.65625 C 0.8125 -0.546875 0.78125 -0.46875 0.78125 -0.3125 L 0.78125 -0.015625 L 6.703125 -0.015625 L 7.078125 -3.03125 L 6.546875 -3.03125 C 6.453125 -2.4375 6.46875 -1.671875 5.90625 -1.671875 C 5.5625 -1.640625 5.21875 -1.640625 4.875 -1.640625 L 2.46875 -1.640625 C 3.234375 -2.296875 3.984375 -2.96875 4.78125 -3.578125 C 5.796875 -4.359375 7.078125 -5.21875 7.078125 -6.734375 C 7.078125 -8.625 5.25 -9.421875 3.765625 -9.421875 C 2.4375 -9.421875 0.78125 -8.65625 0.78125 -7.109375 C 0.78125 -6.515625 1.21875 -6.171875 1.6875 -6.171875 C 2.234375 -6.171875 2.578125 -6.59375 2.578125 -7.078125 C 2.578125 -7.609375 2.1875 -7.953125 1.65625 -7.953125 Z M 1.65625 -7.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 0.546875 -9.859375 L 0.546875 -9.28125 L 2.046875 -9.28125 L 2.046875 -0.59375 L 0.546875 -0.59375 L 0.546875 -0.015625 L 6.40625 -0.015625 C 7.703125 -0.015625 9.25 -0.15625 10.03125 -1.484375 C 10.234375 -1.84375 10.328125 -2.21875 10.328125 -2.625 C 10.328125 -4.15625 8.84375 -5.15625 7.4375 -5.15625 C 8.625 -5.453125 9.890625 -5.984375 9.890625 -7.40625 C 9.890625 -8.359375 9.21875 -9.125 8.359375 -9.515625 C 7.625 -9.84375 6.84375 -9.84375 6.0625 -9.859375 Z M 3.734375 -0.59375 L 3.734375 -4.90625 L 6.390625 -4.90625 C 6.734375 -4.90625 7.078125 -4.890625 7.421875 -4.71875 C 8.171875 -4.34375 8.484375 -3.5 8.484375 -2.71875 C 8.484375 -2 8.21875 -1.28125 7.5625 -0.890625 C 7.078125 -0.609375 6.546875 -0.59375 6 -0.59375 Z M 3.734375 -5.34375 L 3.734375 -9.28125 L 6.109375 -9.28125 C 6.46875 -9.28125 6.84375 -9.265625 7.1875 -9.09375 C 7.796875 -8.78125 8.09375 -8.09375 8.09375 -7.421875 C 8.09375 -6.703125 7.78125 -6.03125 7.171875 -5.671875 C 6.671875 -5.34375 6.078125 -5.34375 5.515625 -5.34375 Z M 3.734375 -5.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 5.15625 -5.90625 C 4.921875 -5.734375 4.78125 -5.53125 4.78125 -5.234375 C 4.78125 -4.828125 5.0625 -4.421875 5.53125 -4.421875 L 5.625 -4.421875 C 6.125 -4.421875 6.390625 -4.828125 6.390625 -5.21875 C 6.390625 -6.5 4.546875 -6.515625 4.015625 -6.515625 L 3.984375 -6.515625 C 3.15625 -6.515625 2.3125 -6.3125 1.65625 -5.78125 C 0.90625 -5.15625 0.515625 -4.1875 0.515625 -3.21875 C 0.515625 -1.234375 1.984375 0.078125 3.9375 0.078125 C 4.9375 0.078125 5.984375 -0.359375 6.421875 -1.3125 C 6.46875 -1.421875 6.5625 -1.5625 6.5625 -1.671875 C 6.5625 -1.8125 6.4375 -1.84375 6.34375 -1.84375 L 6.234375 -1.84375 C 5.96875 -1.84375 6 -1.625 5.890625 -1.453125 C 5.578125 -0.765625 4.9375 -0.421875 4.25 -0.421875 C 2.828125 -0.421875 2.171875 -1.578125 2.171875 -3.203125 C 2.171875 -4.34375 2.3125 -6.03125 4.109375 -6.03125 C 4.453125 -6.03125 4.8125 -5.96875 5.15625 -5.90625 Z M 5.15625 -5.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 0.546875 -9.859375 L 0.546875 -9.28125 L 0.8125 -9.28125 C 1.1875 -9.28125 1.546875 -9.28125 1.546875 -8.75 L 1.546875 -0.59375 L 0.546875 -0.59375 L 0.546875 -0.015625 L 4.0625 -0.015625 L 4.0625 -0.59375 L 3.0625 -0.59375 L 3.0625 -3.5 C 3.0625 -4.65625 3.65625 -6.03125 5.046875 -6.03125 C 5.875 -6.03125 5.921875 -5.09375 5.921875 -4.28125 L 5.921875 -0.59375 L 4.921875 -0.59375 L 4.921875 -0.015625 L 8.4375 -0.015625 L 8.4375 -0.59375 L 7.4375 -0.59375 L 7.4375 -4.265625 C 7.4375 -4.78125 7.40625 -5.3125 7.109375 -5.75 C 6.734375 -6.359375 5.953125 -6.46875 5.28125 -6.46875 C 4.359375 -6.46875 3.25 -5.84375 3.015625 -4.953125 L 3 -9.96875 L 1.375 -9.96875 Z M 0.546875 -9.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 2.1875 -5.875 C 2.59375 -5.984375 2.984375 -6.0625 3.40625 -6.0625 C 4.171875 -6.0625 4.9375 -5.6875 4.9375 -4.1875 L 4.9375 -3.703125 C 3.234375 -3.703125 0.5 -3.328125 0.5 -1.484375 C 0.5 -0.25 2.0625 0.078125 3 0.078125 C 3.78125 0.078125 4.828125 -0.3125 5.09375 -1.1875 L 5.109375 -1.1875 C 5.109375 -0.4375 5.6875 0.03125 6.390625 0.03125 C 7.046875 0.03125 7.78125 -0.421875 7.78125 -1.15625 L 7.78125 -2.046875 L 7.25 -2.046875 L 7.25 -1.234375 C 7.25 -0.984375 7.140625 -0.625 6.84375 -0.625 C 6.53125 -0.625 6.4375 -1.015625 6.4375 -1.234375 L 6.4375 -4.21875 C 6.4375 -5.546875 5.4375 -6.515625 3.515625 -6.515625 C 2.59375 -6.515625 1.03125 -6.359375 1.03125 -5.125 C 1.03125 -4.625 1.421875 -4.328125 1.84375 -4.328125 C 2.28125 -4.328125 2.640625 -4.65625 2.640625 -5.125 C 2.640625 -5.46875 2.453125 -5.6875 2.1875 -5.875 Z M 4.9375 -3.359375 L 4.9375 -2 C 4.9375 -1.078125 4.21875 -0.375 3.296875 -0.375 C 2.703125 -0.375 2.015625 -0.78125 2.015625 -1.5 C 2.015625 -2.96875 3.84375 -3.25 4.9375 -3.359375 Z M 4.9375 -3.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 0.59375 -9.859375 L 0.59375 -9.28125 C 0.71875 -9.28125 0.84375 -9.296875 0.96875 -9.296875 C 1.3125 -9.296875 1.578125 -9.21875 1.578125 -8.8125 L 1.578125 -0.59375 L 0.59375 -0.59375 L 0.59375 -0.015625 L 4.015625 -0.015625 L 4.015625 -0.59375 L 3.03125 -0.59375 L 3.03125 -9.96875 L 1.40625 -9.96875 Z M 0.59375 -9.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 1.921875 -0.734375 C 2.671875 -0.09375 3.78125 0.15625 4.734375 0.15625 C 6.390625 0.15625 7.890625 -0.859375 7.890625 -2.859375 C 7.890625 -4.03125 7.171875 -5.125 6.125 -5.625 C 5.6875 -5.828125 5.203125 -5.890625 4.734375 -6.015625 L 3.828125 -6.203125 C 3.0625 -6.375 2.09375 -6.734375 2.09375 -7.859375 C 2.09375 -8.96875 3 -9.5 3.9375 -9.5 C 5.515625 -9.5 6.59375 -8.515625 6.859375 -6.921875 C 6.890625 -6.765625 6.84375 -6.578125 7.109375 -6.578125 L 7.21875 -6.578125 C 7.359375 -6.578125 7.4375 -6.625 7.4375 -6.828125 L 7.4375 -9.796875 C 7.4375 -9.90625 7.40625 -10.03125 7.265625 -10.03125 C 6.90625 -10.03125 6.5625 -9.1875 6.375 -9.1875 L 6.359375 -9.1875 C 6.234375 -9.21875 6.078125 -9.375 5.96875 -9.46875 C 5.359375 -9.875 4.65625 -10.03125 3.9375 -10.03125 C 2.453125 -10.03125 0.875 -9.1875 0.875 -7.25 C 0.875 -6.03125 1.640625 -5.03125 2.71875 -4.59375 C 2.953125 -4.484375 3.234375 -4.4375 3.484375 -4.375 L 4.953125 -4.046875 C 5.90625 -3.828125 6.5625 -3.296875 6.65625 -2.34375 L 6.65625 -2.203125 C 6.65625 -1.21875 5.953125 -0.421875 4.796875 -0.421875 C 3.40625 -0.421875 1.8125 -0.90625 1.46875 -2.609375 L 1.421875 -3.078125 C 1.421875 -3.21875 1.34375 -3.28125 1.203125 -3.28125 L 1.078125 -3.28125 C 0.90625 -3.28125 0.875 -3.171875 0.875 -3.0625 L 0.875 -0.046875 C 0.875 0.09375 0.953125 0.15625 1.0625 0.15625 C 1.265625 0.15625 1.6875 -0.421875 1.921875 -0.734375 Z M 1.921875 -0.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 2.015625 -8.3125 C 2.4375 -8.734375 3.09375 -8.9375 3.734375 -8.9375 C 4.5 -8.9375 5.03125 -8.484375 5.03125 -7.625 L 5.03125 -7.515625 C 5.03125 -6.625 4.703125 -5.5 3.6875 -5.296875 C 3.34375 -5.234375 2.625 -5.359375 2.625 -5 L 2.625 -4.921875 C 2.65625 -4.765625 2.8125 -4.765625 2.9375 -4.765625 C 3.0625 -4.765625 3.1875 -4.78125 3.296875 -4.78125 L 3.578125 -4.78125 C 4.140625 -4.78125 4.640625 -4.640625 4.96875 -4.171875 C 5.28125 -3.734375 5.3125 -3.09375 5.3125 -2.5625 C 5.3125 -1.6875 5.1875 -0.375 3.734375 -0.375 C 2.984375 -0.375 2.421875 -0.546875 1.71875 -0.9375 L 1.71875 -0.953125 C 2.203125 -1 2.546875 -1.375 2.546875 -1.859375 C 2.546875 -2.328125 2.25 -2.75 1.734375 -2.828125 L 1.625 -2.828125 C 1.03125 -2.828125 0.65625 -2.40625 0.65625 -1.875 C 0.65625 -0.265625 2.671875 0.15625 3.796875 0.15625 C 5.34375 0.15625 7.21875 -0.578125 7.21875 -2.53125 C 7.21875 -3.984375 5.953125 -4.875 4.640625 -5.015625 C 5.625 -5.4375 6.78125 -6.03125 6.78125 -7.4375 C 6.78125 -8.921875 5.078125 -9.421875 3.828125 -9.421875 C 2.671875 -9.421875 1.078125 -8.859375 1.078125 -7.484375 C 1.078125 -6.984375 1.453125 -6.5625 1.96875 -6.5625 C 2.484375 -6.5625 2.84375 -6.953125 2.84375 -7.453125 C 2.84375 -7.953125 2.5 -8.3125 2.015625 -8.3125 Z M 2.015625 -8.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 2.421875 -9.859375 L 2.421875 -9.28125 L 4.390625 -9.28125 L 4.390625 -2.375 C 4.390625 -1.515625 4.234375 -0.28125 2.953125 -0.28125 C 2.4375 -0.28125 2.078125 -0.484375 1.609375 -0.703125 L 1.609375 -0.71875 C 2.125 -0.8125 2.40625 -1.1875 2.40625 -1.671875 C 2.40625 -2.234375 1.96875 -2.59375 1.453125 -2.59375 C 0.953125 -2.59375 0.515625 -2.21875 0.515625 -1.640625 C 0.515625 -0.359375 1.953125 0.15625 3.0625 0.15625 C 4.15625 0.15625 5.5625 -0.203125 6 -1.375 C 6.109375 -1.703125 6.125 -2.015625 6.125 -2.359375 L 6.125 -9.28125 L 7.265625 -9.28125 L 7.265625 -9.859375 Z M 2.421875 -9.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 0.8125 -6.390625 L 0.65625 -3.9375 L 1.203125 -3.9375 C 1.21875 -4.40625 1.265625 -4.9375 1.546875 -5.328125 C 1.9375 -5.875 2.609375 -5.9375 3.234375 -5.9375 L 4.484375 -5.9375 C 3.203125 -4.15625 1.890625 -2.359375 0.59375 -0.609375 C 0.515625 -0.5 0.4375 -0.375 0.4375 -0.25 C 0.4375 -0.078125 0.578125 -0.015625 0.71875 -0.015625 L 6.109375 -0.015625 L 6.34375 -2.828125 L 5.796875 -2.828125 C 5.75 -2.21875 5.6875 -1.609375 5.328125 -1.09375 C 4.84375 -0.5625 4.140625 -0.5 3.46875 -0.5 L 2.265625 -0.5 C 2.5625 -0.96875 2.9375 -1.421875 3.265625 -1.875 C 4.21875 -3.1875 5.15625 -4.484375 6.125 -5.796875 C 6.203125 -5.890625 6.296875 -6.03125 6.296875 -6.15625 C 6.296875 -6.328125 6.1875 -6.390625 6.03125 -6.390625 Z M 0.8125 -6.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 0.453125 -9.859375 L 0.453125 -9.28125 C 0.578125 -9.28125 0.71875 -9.296875 0.84375 -9.296875 C 1.15625 -9.296875 1.46875 -9.21875 1.46875 -8.78125 L 1.46875 -0.015625 L 2 -0.03125 L 2.734375 -0.875 C 3.28125 -0.28125 3.96875 0.078125 4.828125 0.078125 C 6.609375 0.078125 8.21875 -1.078125 8.21875 -3.21875 C 8.21875 -4.84375 7.171875 -6.46875 5.046875 -6.46875 C 4.234375 -6.46875 3.546875 -6.203125 2.90625 -5.71875 L 2.90625 -9.96875 L 1.296875 -9.96875 Z M 6.5625 -2.640625 C 6.53125 -2 6.453125 -1.4375 6.03125 -0.953125 C 5.6875 -0.578125 5.171875 -0.375 4.65625 -0.375 C 3.984375 -0.375 3.40625 -0.734375 3.046875 -1.28125 C 2.96875 -1.375 2.96875 -1.484375 2.96875 -1.578125 L 2.96875 -5 C 3.046875 -5.484375 4.0625 -6.03125 4.78125 -6.03125 C 6.421875 -6.03125 6.578125 -4.453125 6.578125 -3.375 L 6.578125 -3 C 6.578125 -2.875 6.578125 -2.75 6.5625 -2.640625 Z M 6.5625 -2.640625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 0.453125 -6.359375 L 0.453125 -5.78125 L 0.75 -5.78125 C 1.125 -5.78125 1.46875 -5.734375 1.46875 -5.296875 L 1.46875 -0.59375 L 0.453125 -0.59375 L 0.453125 -0.015625 L 4.15625 -0.015625 L 4.15625 -0.59375 L 2.90625 -0.59375 L 2.90625 -2.65625 C 2.90625 -3.9375 2.953125 -6.03125 4.65625 -6.03125 C 4.46875 -5.84375 4.359375 -5.65625 4.359375 -5.390625 C 4.359375 -4.875 4.734375 -4.578125 5.15625 -4.578125 C 5.640625 -4.578125 5.953125 -4.953125 5.953125 -5.359375 C 5.953125 -6.078125 5.203125 -6.46875 4.578125 -6.46875 C 3.6875 -6.46875 2.9375 -5.65625 2.8125 -4.796875 L 2.796875 -6.46875 L 1.25 -6.390625 Z M 0.453125 -6.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 0.4375 -2.265625 L 4.4375 -2.265625 L 4.4375 -0.59375 L 2.890625 -0.59375 L 2.890625 -0.015625 L 7.4375 -0.015625 L 7.4375 -0.59375 L 6.046875 -0.59375 L 6.046875 -2.265625 L 7.4375 -2.265625 L 7.4375 -2.84375 L 6.046875 -2.84375 L 6.046875 -9.1875 C 6.046875 -9.375 6 -9.46875 5.78125 -9.46875 L 5.6875 -9.46875 C 5.328125 -9.46875 5.21875 -9.171875 5.03125 -8.9375 C 3.59375 -6.921875 2.015625 -5.015625 0.578125 -3.015625 C 0.5 -2.90625 0.4375 -2.859375 0.4375 -2.71875 Z M 1.0625 -2.84375 L 4.546875 -7.453125 L 4.546875 -2.84375 Z M 1.0625 -2.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 0.5 -9.859375 L 0.5 -9.28125 L 2.015625 -9.28125 L 2.015625 -0.59375 L 0.5 -0.59375 L 0.5 -0.015625 L 5.3125 -0.015625 L 5.3125 -0.59375 L 3.796875 -0.59375 L 3.796875 -3.6875 L 5.3125 -5 C 5.515625 -4.640625 5.828125 -4.265625 6.09375 -3.921875 C 6.59375 -3.21875 7.109375 -2.515625 7.625 -1.8125 L 8.1875 -1.03125 C 8.234375 -0.96875 8.34375 -0.859375 8.34375 -0.765625 L 8.34375 -0.734375 C 8.3125 -0.609375 7.828125 -0.59375 7.5 -0.59375 L 7.34375 -0.59375 L 7.34375 -0.015625 L 11.671875 -0.015625 L 11.671875 -0.59375 C 11.5 -0.59375 11.328125 -0.578125 11.15625 -0.578125 C 10.796875 -0.578125 10.5 -0.625 10.296875 -0.921875 L 10.0625 -1.21875 C 9.8125 -1.578125 9.53125 -1.953125 9.28125 -2.3125 L 7.5 -4.75 C 7.171875 -5.1875 6.828125 -5.640625 6.53125 -6.09375 L 9.71875 -8.859375 L 10.078125 -9.140625 L 10.53125 -9.234375 L 11.453125 -9.28125 L 11.453125 -9.859375 L 8.109375 -9.859375 L 8.109375 -9.28125 C 8.421875 -9.28125 9.109375 -9.234375 9.109375 -9.109375 C 9.109375 -9.015625 8.90625 -8.859375 8.796875 -8.796875 C 7.625 -7.78125 6.484375 -6.78125 5.328125 -5.765625 C 4.8125 -5.328125 4.328125 -4.859375 3.796875 -4.453125 L 3.796875 -9.28125 L 5.3125 -9.28125 L 5.3125 -9.859375 Z M 0.5 -9.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 0.546875 -6.359375 L 0.546875 -5.78125 L 0.90625 -5.78125 C 1.171875 -5.78125 1.515625 -5.75 1.546875 -5.4375 L 1.546875 -1.984375 C 1.546875 -1.546875 1.578125 -1.109375 1.8125 -0.71875 C 2.21875 0.015625 3.234375 0.078125 3.9375 0.078125 C 4.8125 0.078125 5.6875 -0.3125 5.96875 -1.15625 L 5.984375 0.078125 L 8.4375 0.078125 L 8.4375 -0.59375 L 8.0625 -0.59375 C 7.734375 -0.59375 7.4375 -0.609375 7.4375 -1.0625 L 7.4375 -6.46875 L 5.765625 -6.46875 L 4.921875 -6.359375 L 4.921875 -5.78125 L 5.234375 -5.78125 C 5.609375 -5.78125 5.921875 -5.734375 5.921875 -5.328125 L 5.921875 -2.15625 C 5.84375 -1.25 5.25 -0.375 4.203125 -0.375 C 3.640625 -0.375 3.046875 -0.375 3.046875 -1.46875 C 3.046875 -1.671875 3.0625 -1.90625 3.0625 -2.09375 L 3.0625 -6.46875 L 1.390625 -6.46875 Z M 0.546875 -6.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 0.3125 -6.390625 L 0.3125 -5.8125 L 1.078125 -5.8125 C 1.34375 -5.8125 1.5625 -5.015625 1.75 -4.640625 C 2.359375 -3.234375 2.96875 -1.828125 3.625 -0.4375 C 3.75 -0.203125 3.765625 0.0625 4.15625 0.0625 C 4.515625 0.0625 4.578125 -0.171875 4.65625 -0.421875 C 5.3125 -1.75 5.875 -3.109375 6.484375 -4.453125 L 6.859375 -5.296875 C 7.015625 -5.796875 7.421875 -5.8125 7.984375 -5.8125 L 7.984375 -6.390625 L 5.6875 -6.390625 L 5.6875 -5.8125 C 5.890625 -5.8125 6.296875 -5.796875 6.375 -5.65625 L 6.375 -5.609375 C 6.375 -5.515625 6.3125 -5.421875 6.28125 -5.359375 C 6.171875 -5.125 6.0625 -4.890625 5.953125 -4.640625 L 5.140625 -2.796875 C 4.984375 -2.453125 4.796875 -2.09375 4.65625 -1.734375 L 4.640625 -1.734375 L 2.8125 -5.8125 L 3.609375 -5.8125 L 3.609375 -6.390625 Z M 0.3125 -6.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 3.671875 -6.515625 C 1.953125 -6.328125 0.4375 -5.375 0.4375 -3.15625 C 0.4375 -2.1875 0.796875 -1.234375 1.59375 -0.625 C 2.25 -0.125 3.109375 0.078125 3.9375 0.078125 C 5.6875 0.078125 7.4375 -0.890625 7.4375 -3.1875 C 7.4375 -3.96875 7.1875 -4.8125 6.65625 -5.40625 C 5.953125 -6.21875 4.875 -6.515625 3.84375 -6.515625 Z M 2.078125 -2.71875 L 2.078125 -3.46875 C 2.078125 -4.203125 2.09375 -5.046875 2.65625 -5.59375 C 2.984375 -5.921875 3.453125 -6.078125 3.921875 -6.078125 C 4.96875 -6.078125 5.65625 -5.390625 5.765625 -4.296875 C 5.796875 -4.015625 5.8125 -3.734375 5.8125 -3.453125 L 5.8125 -3.109375 C 5.8125 -2.40625 5.78125 -1.59375 5.34375 -1.046875 C 5 -0.609375 4.46875 -0.421875 3.9375 -0.421875 C 3.40625 -0.421875 2.84375 -0.625 2.515625 -1.078125 C 2.140625 -1.546875 2.140625 -2.15625 2.078125 -2.71875 Z M 2.078125 -2.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 1.546875 -1.484375 C 2.03125 -1.484375 2.5 -1.734375 2.5 -2.328125 C 2.5 -2.796875 2.15625 -3.171875 1.65625 -3.171875 C 1.171875 -3.171875 0.78125 -2.875 0.78125 -2.265625 C 0.78125 -0.859375 2.15625 0.15625 3.484375 0.15625 C 5.15625 0.15625 7.09375 -0.65625 7.09375 -2.921875 C 7.09375 -4.546875 5.953125 -5.90625 4.015625 -5.90625 C 3.34375 -5.90625 2.65625 -5.703125 2.140625 -5.28125 L 2.140625 -7.5625 C 2.515625 -7.484375 2.875 -7.4375 3.234375 -7.4375 L 3.34375 -7.4375 C 4.484375 -7.4375 5.5625 -7.984375 6.3125 -8.84375 C 6.390625 -8.96875 6.46875 -9.078125 6.46875 -9.203125 C 6.46875 -9.3125 6.421875 -9.40625 6.328125 -9.40625 C 6.296875 -9.40625 6.25 -9.40625 6.21875 -9.390625 C 5.515625 -9.125 4.765625 -8.96875 3.984375 -8.96875 C 3.453125 -8.96875 2.921875 -9.03125 2.421875 -9.1875 L 2 -9.3125 C 1.90625 -9.359375 1.828125 -9.390625 1.734375 -9.40625 L 1.6875 -9.40625 C 1.609375 -9.40625 1.5625 -9.359375 1.546875 -9.28125 L 1.546875 -4.703125 C 1.546875 -4.5625 1.625 -4.453125 1.78125 -4.453125 C 2.0625 -4.453125 2.234375 -4.8125 2.484375 -5 C 2.875 -5.3125 3.359375 -5.421875 3.84375 -5.453125 L 3.953125 -5.453125 C 5.296875 -5.453125 5.296875 -3.90625 5.296875 -2.96875 L 5.296875 -2.71875 C 5.296875 -2.109375 5.265625 -1.484375 4.890625 -0.96875 C 4.5625 -0.546875 4.046875 -0.375 3.53125 -0.375 C 2.6875 -0.375 2 -0.796875 1.546875 -1.484375 Z M 1.546875 -1.484375 "/>
</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 0.328125 -6.8125 L 0.328125 -6.515625 C 0.453125 -6.515625 0.59375 -6.515625 0.703125 -6.515625 C 1.0625 -6.515625 1.359375 -6.46875 1.359375 -6.078125 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.6875 -0.3125 C 0.5625 -0.3125 0.4375 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 3.265625 -0.015625 L 3.265625 -0.3125 L 2.9375 -0.3125 C 2.515625 -0.3125 2.25 -0.34375 2.25 -0.75 L 2.25 -3.40625 L 5.21875 -3.40625 L 5.21875 -0.75 C 5.21875 -0.359375 4.890625 -0.3125 4.53125 -0.3125 L 4.203125 -0.3125 L 4.203125 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 C 7.015625 -0.3125 6.890625 -0.3125 6.765625 -0.3125 C 6.421875 -0.3125 6.109375 -0.359375 6.109375 -0.75 L 6.109375 -6.078125 C 6.109375 -6.453125 6.4375 -6.515625 6.765625 -6.515625 C 6.890625 -6.515625 7.03125 -6.515625 7.140625 -6.515625 L 7.140625 -6.8125 L 4.203125 -6.8125 L 4.203125 -6.515625 L 4.53125 -6.515625 C 4.953125 -6.515625 5.21875 -6.484375 5.21875 -6.078125 L 5.21875 -3.703125 L 2.25 -3.703125 L 2.25 -6.078125 C 2.25 -6.46875 2.578125 -6.515625 2.9375 -6.515625 L 3.265625 -6.515625 L 3.265625 -6.8125 Z M 0.328125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 0.375 -4.296875 L 0.375 -3.984375 L 0.5625 -3.984375 C 0.84375 -3.984375 1.109375 -3.953125 1.109375 -3.484375 L 1.109375 -0.734375 C 1.109375 -0.375 0.921875 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.265625 -0.3125 C 2.015625 -0.3125 1.78125 -0.34375 1.78125 -0.671875 L 1.78125 -4.40625 Z M 1.203125 -6.671875 C 0.953125 -6.640625 0.75 -6.421875 0.75 -6.15625 C 0.75 -5.859375 1 -5.625 1.28125 -5.625 C 1.5625 -5.625 1.8125 -5.84375 1.8125 -6.15625 C 1.8125 -6.4375 1.5625 -6.671875 1.28125 -6.671875 C 1.25 -6.671875 1.234375 -6.671875 1.203125 -6.671875 Z M 1.203125 -6.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 1.109375 -2.3125 L 3.984375 -2.3125 C 4.09375 -2.3125 4.140625 -2.375 4.140625 -2.5 C 4.140625 -3.546875 3.5 -4.46875 2.375 -4.46875 C 1.15625 -4.46875 0.28125 -3.375 0.28125 -2.1875 C 0.28125 -1.28125 0.78125 -0.453125 1.671875 -0.0625 C 1.890625 0.046875 2.15625 0.09375 2.40625 0.09375 L 2.4375 0.09375 C 3.203125 0.09375 3.84375 -0.328125 4.109375 -1.09375 C 4.125 -1.125 4.125 -1.171875 4.125 -1.203125 C 4.125 -1.265625 4.09375 -1.3125 4.015625 -1.3125 C 3.875 -1.3125 3.8125 -0.984375 3.75 -0.875 C 3.5 -0.4375 3.015625 -0.15625 2.5 -0.15625 C 2.140625 -0.15625 1.8125 -0.359375 1.546875 -0.625 C 1.140625 -1.09375 1.109375 -1.734375 1.109375 -2.3125 Z M 1.125 -2.515625 C 1.125 -3.296875 1.53125 -4.25 2.359375 -4.25 L 2.40625 -4.25 C 3.375 -4.15625 3.375 -3.125 3.46875 -2.515625 Z M 1.125 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 0.265625 -4.296875 L 0.265625 -3.984375 L 0.421875 -3.984375 C 0.75 -3.984375 1.046875 -3.953125 1.046875 -3.484375 L 1.046875 -0.734375 C 1.046875 -0.328125 0.765625 -0.3125 0.328125 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.6875 -0.015625 L 2.6875 -0.3125 C 2.5625 -0.3125 2.421875 -0.3125 2.296875 -0.3125 C 1.984375 -0.3125 1.71875 -0.359375 1.71875 -0.734375 L 1.71875 -2.046875 C 1.71875 -2.90625 1.90625 -4.1875 2.890625 -4.1875 C 2.9375 -4.1875 2.953125 -4.1875 3 -4.171875 C 2.84375 -4.109375 2.765625 -3.953125 2.765625 -3.78125 C 2.765625 -3.5625 2.921875 -3.40625 3.15625 -3.359375 C 3.4375 -3.359375 3.625 -3.53125 3.625 -3.78125 C 3.625 -4.1875 3.25 -4.40625 2.890625 -4.40625 C 2.296875 -4.40625 1.78125 -3.875 1.671875 -3.34375 L 1.671875 -4.40625 Z M 0.265625 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 1.75 -4.46875 C 1.390625 -4.421875 1 -4.359375 0.703125 -4.109375 C 0.46875 -3.890625 0.328125 -3.5625 0.328125 -3.234375 C 0.328125 -1.53125 3.09375 -2.5 3.09375 -1 C 3.09375 -0.40625 2.546875 -0.125 2 -0.125 C 1.25 -0.125 0.734375 -0.65625 0.59375 -1.515625 C 0.578125 -1.609375 0.5625 -1.6875 0.453125 -1.6875 C 0.375 -1.6875 0.328125 -1.640625 0.328125 -1.5625 L 0.328125 0.015625 C 0.34375 0.0625 0.375 0.09375 0.421875 0.09375 L 0.4375 0.09375 C 0.59375 0.09375 0.75 -0.265625 0.875 -0.296875 L 0.890625 -0.296875 C 0.96875 -0.296875 1.234375 -0.046875 1.453125 0.015625 C 1.609375 0.078125 1.796875 0.09375 1.96875 0.09375 C 2.796875 0.09375 3.59375 -0.34375 3.59375 -1.25 C 3.59375 -1.90625 3.109375 -2.453125 2.453125 -2.625 C 1.828125 -2.796875 0.8125 -2.796875 0.8125 -3.515625 C 0.8125 -4.125 1.484375 -4.28125 1.921875 -4.28125 C 2.40625 -4.28125 3.09375 -4 3.09375 -3.15625 C 3.09375 -3.0625 3.09375 -2.984375 3.203125 -2.984375 C 3.3125 -2.984375 3.34375 -3.0625 3.34375 -3.15625 C 3.34375 -3.203125 3.34375 -3.265625 3.34375 -3.296875 L 3.34375 -4.328125 C 3.34375 -4.390625 3.3125 -4.46875 3.234375 -4.46875 C 3.078125 -4.46875 2.96875 -4.21875 2.859375 -4.21875 L 2.84375 -4.21875 C 2.765625 -4.21875 2.609375 -4.34375 2.5 -4.390625 C 2.3125 -4.453125 2.109375 -4.46875 1.921875 -4.46875 C 1.859375 -4.46875 1.8125 -4.46875 1.75 -4.46875 Z M 1.75 -4.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 0.1875 -4.296875 L 0.1875 -3.984375 L 0.375 -3.984375 C 0.875 -3.984375 0.921875 -3.78125 1.21875 -3.03125 L 2.03125 -1.03125 C 2.1875 -0.640625 2.390625 0.09375 2.625 0.09375 C 2.859375 0.09375 3.046875 -0.625 3.203125 -0.984375 L 4.03125 -3.046875 C 4.28125 -3.671875 4.5 -3.984375 5.0625 -3.984375 L 5.0625 -4.296875 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.671875 -3.984375 3.921875 -3.8125 3.921875 -3.578125 C 3.921875 -3.453125 3.875 -3.3125 3.8125 -3.1875 C 3.53125 -2.46875 3.25 -1.78125 2.953125 -1.078125 C 2.9375 -0.984375 2.875 -0.890625 2.859375 -0.796875 L 2.84375 -0.796875 C 2.78125 -1.03125 2.671875 -1.25 2.578125 -1.484375 L 1.765625 -3.5 C 1.734375 -3.578125 1.6875 -3.65625 1.6875 -3.734375 L 1.6875 -3.78125 C 1.75 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 Z M 0.1875 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 0.171875 -4.296875 L 0.171875 -3.984375 L 0.328125 -3.984375 C 0.84375 -3.984375 0.875 -3.765625 1.109375 -3.0625 C 1.359375 -2.375 1.625 -1.6875 1.859375 -1 L 2.15625 -0.15625 C 2.203125 -0.046875 2.234375 0.09375 2.375 0.09375 L 2.390625 0.09375 C 2.609375 0.09375 2.75 -0.5625 2.875 -0.890625 C 3.0625 -1.421875 3.25 -1.953125 3.453125 -2.484375 C 3.5 -2.625 3.5625 -2.765625 3.59375 -2.90625 C 3.625 -2.765625 3.6875 -2.625 3.734375 -2.484375 L 4.03125 -1.671875 C 4.203125 -1.15625 4.40625 -0.640625 4.578125 -0.125 C 4.625 -0.015625 4.671875 0.09375 4.8125 0.09375 C 5.03125 0.09375 5.1875 -0.609375 5.3125 -0.96875 L 5.875 -2.546875 C 6.109375 -3.1875 6.25 -3.984375 7.015625 -3.984375 L 7.015625 -4.296875 L 5.359375 -4.296875 L 5.359375 -3.984375 C 5.625 -3.984375 5.90625 -3.84375 5.9375 -3.5625 C 5.9375 -3.28125 5.765625 -2.953125 5.671875 -2.703125 C 5.515625 -2.265625 5.359375 -1.84375 5.21875 -1.421875 C 5.140625 -1.203125 5.03125 -0.984375 4.984375 -0.765625 L 4.96875 -0.765625 C 4.921875 -1 4.796875 -1.3125 4.6875 -1.5625 C 4.46875 -2.203125 4.234375 -2.84375 4 -3.5 C 3.984375 -3.5625 3.953125 -3.65625 3.953125 -3.734375 L 3.953125 -3.765625 C 4 -3.984375 4.328125 -3.984375 4.53125 -3.984375 L 4.53125 -4.296875 L 2.59375 -4.296875 L 2.59375 -3.984375 L 2.765625 -3.984375 C 3.15625 -3.984375 3.25 -3.84375 3.375 -3.5 C 3.40625 -3.421875 3.453125 -3.34375 3.453125 -3.265625 C 3.4375 -3.171875 3.390625 -3.078125 3.359375 -2.984375 L 2.796875 -1.40625 C 2.734375 -1.234375 2.6875 -1.0625 2.609375 -0.90625 C 2.5 -1.171875 2.40625 -1.453125 2.3125 -1.71875 C 2.15625 -2.15625 2 -2.578125 1.859375 -3.015625 L 1.671875 -3.515625 C 1.65625 -3.578125 1.609375 -3.65625 1.609375 -3.71875 C 1.609375 -3.984375 1.984375 -3.984375 2.203125 -3.984375 L 2.203125 -4.296875 Z M 0.171875 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.546875 4.375 -3.84375 C 4.140625 -4.28125 3.640625 -4.40625 3.1875 -4.40625 C 2.578125 -4.40625 1.9375 -3.984375 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 1.109375 -3.796875 C 1.359375 -4.109375 1.796875 -4.25 2.171875 -4.25 C 2.90625 -4.25 3.234375 -3.578125 3.234375 -2.875 L 3.234375 -2.609375 C 2.09375 -2.609375 0.40625 -2.25 0.40625 -0.953125 L 0.40625 -0.875 C 0.484375 -0.09375 1.453125 0.09375 2.03125 0.09375 C 2.53125 0.09375 3.1875 -0.234375 3.3125 -0.75 C 3.375 -0.3125 3.65625 0.046875 4.09375 0.046875 C 4.5 0.046875 4.859375 -0.28125 4.921875 -0.734375 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.953125 C 4.671875 -0.671875 4.609375 -0.265625 4.3125 -0.265625 C 3.984375 -0.265625 3.9375 -0.65625 3.9375 -0.921875 L 3.9375 -2.59375 C 3.9375 -2.71875 3.953125 -2.84375 3.953125 -2.96875 C 3.953125 -3.9375 3.046875 -4.46875 2.21875 -4.46875 C 1.578125 -4.46875 0.703125 -4.15625 0.703125 -3.359375 C 0.703125 -3.078125 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.609375 -3.09375 1.609375 -3.34375 C 1.609375 -3.625 1.390625 -3.796875 1.109375 -3.796875 Z M 3.234375 -2.40625 L 3.234375 -1.390625 C 3.234375 -0.703125 2.765625 -0.15625 2.109375 -0.125 L 2.078125 -0.125 C 1.609375 -0.125 1.1875 -0.484375 1.1875 -0.96875 L 1.1875 -1.015625 C 1.25 -2.03125 2.375 -2.375 3.234375 -2.40625 Z M 3.234375 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.453125 -3.984375 C 0.734375 -3.984375 1.03125 -3.96875 1.09375 -3.671875 C 1.09375 -3.5625 1.09375 -3.453125 1.09375 -3.34375 L 1.09375 -1.359375 C 1.09375 -1.03125 1.109375 -0.734375 1.28125 -0.4375 C 1.5625 -0.015625 2.125 0.109375 2.59375 0.109375 C 3.046875 0.109375 3.453125 -0.09375 3.703125 -0.453125 C 3.765625 -0.5625 3.84375 -0.65625 3.875 -0.78125 L 3.875 0.09375 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.171875 -0.3125 C 4.84375 -0.3125 4.546875 -0.34375 4.546875 -0.796875 L 4.546875 -4.40625 L 3.078125 -4.296875 L 3.078125 -3.984375 L 3.21875 -3.984375 C 3.546875 -3.984375 3.84375 -3.953125 3.84375 -3.484375 L 3.84375 -1.6875 C 3.84375 -0.953125 3.46875 -0.125 2.640625 -0.125 C 2.078125 -0.125 1.796875 -0.265625 1.796875 -1.328125 L 1.796875 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.6875 C 1.109375 -0.34375 0.8125 -0.3125 0.515625 -0.3125 L 0.34375 -0.3125 L 0.34375 -0.015625 L 2.734375 -0.015625 L 2.734375 -0.3125 L 2.421875 -0.3125 C 2.203125 -0.3125 1.96875 -0.328125 1.859375 -0.4375 C 1.78125 -0.53125 1.78125 -0.65625 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.609375 C 1.75 -6.15625 2.125 -6.8125 2.65625 -6.8125 C 2.765625 -6.8125 2.90625 -6.796875 2.984375 -6.734375 C 2.796875 -6.6875 2.6875 -6.515625 2.6875 -6.3125 C 2.6875 -6.0625 2.875 -5.890625 3.125 -5.890625 C 3.375 -5.890625 3.5625 -6.09375 3.5625 -6.3125 C 3.5625 -6.78125 3.078125 -7.03125 2.65625 -7.03125 C 1.75 -7.03125 1.109375 -6.328125 1.109375 -5.359375 Z M 1.109375 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 0.3125 -0.3125 L 0.3125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 C 2.15625 -0.3125 1.75 -0.46875 1.71875 -0.8125 C 1.71875 -0.921875 1.78125 -1 1.796875 -1.09375 C 1.90625 -1.421875 2.015625 -1.75 2.140625 -2.078125 C 2.171875 -2.15625 2.171875 -2.28125 2.3125 -2.28125 L 4.578125 -2.28125 C 4.6875 -2.28125 4.703125 -2.171875 4.75 -2.078125 L 4.953125 -1.453125 C 5.046875 -1.203125 5.234375 -0.8125 5.234375 -0.609375 L 5.234375 -0.5625 C 5.140625 -0.328125 4.75 -0.3125 4.46875 -0.3125 L 4.40625 -0.3125 L 4.40625 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 L 6.859375 -0.3125 C 6.625 -0.3125 6.390625 -0.34375 6.265625 -0.453125 C 6.15625 -0.578125 6.125 -0.75 6.0625 -0.890625 C 5.546875 -2.375 5.046875 -3.875 4.515625 -5.359375 C 4.34375 -5.875 4.09375 -6.4375 3.96875 -6.953125 C 3.921875 -7.09375 3.875 -7.140625 3.734375 -7.140625 C 3.53125 -7.140625 3.484375 -6.9375 3.421875 -6.734375 C 2.875 -5.046875 2.25 -3.390625 1.6875 -1.71875 L 1.46875 -1.109375 C 1.421875 -0.9375 1.359375 -0.75 1.21875 -0.625 C 0.984375 -0.375 0.640625 -0.3125 0.3125 -0.3125 Z M 2.328125 -2.59375 L 3.4375 -5.828125 L 4.5625 -2.59375 Z M 2.328125 -2.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 0.265625 -6.8125 L 0.265625 -6.515625 L 0.4375 -6.515625 C 0.75 -6.515625 1.046875 -6.484375 1.046875 -6.015625 L 1.046875 -0.015625 L 1.28125 -0.03125 L 1.421875 -0.203125 L 1.65625 -0.625 L 1.671875 -0.625 C 1.90625 -0.140625 2.5 0.09375 3 0.09375 C 4.234375 0.09375 5.1875 -0.984375 5.1875 -2.15625 C 5.1875 -3.3125 4.3125 -4.40625 3.046875 -4.40625 C 2.515625 -4.40625 2.0625 -4.15625 1.71875 -3.765625 L 1.71875 -6.921875 Z M 4.34375 -1.90625 C 4.3125 -1.4375 4.25 -1.015625 3.953125 -0.640625 C 3.703125 -0.328125 3.328125 -0.125 2.9375 -0.125 C 2.5 -0.125 2.109375 -0.375 1.890625 -0.734375 C 1.796875 -0.84375 1.75 -0.921875 1.75 -1.078125 L 1.75 -2.734375 C 1.75 -2.875 1.734375 -3 1.734375 -3.125 C 1.734375 -3.734375 2.46875 -4.1875 3.015625 -4.1875 C 4.09375 -4.1875 4.359375 -2.9375 4.359375 -2.140625 C 4.359375 -2.0625 4.359375 -2 4.34375 -1.90625 Z M 4.34375 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 3.578125 -3.859375 C 3.3125 -3.84375 3.109375 -3.671875 3.109375 -3.40625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.875 -2.9375 4.03125 -3.15625 4.03125 -3.4375 L 4.03125 -3.5 C 3.921875 -4.234375 3.078125 -4.46875 2.5 -4.46875 C 1.28125 -4.46875 0.328125 -3.40625 0.328125 -2.15625 C 0.328125 -1.03125 1.203125 0.09375 2.5 0.09375 C 3.15625 0.09375 3.796875 -0.265625 4.0625 -0.953125 C 4.09375 -1.015625 4.140625 -1.109375 4.140625 -1.171875 C 4.140625 -1.25 4.09375 -1.296875 4.015625 -1.296875 C 3.875 -1.296875 3.78125 -0.921875 3.703125 -0.78125 C 3.46875 -0.40625 3.0625 -0.15625 2.609375 -0.15625 C 1.546875 -0.15625 1.21875 -1.21875 1.171875 -2 L 1.171875 -2.125 C 1.171875 -2.921875 1.359375 -4.109375 2.453125 -4.21875 L 2.53125 -4.21875 C 2.90625 -4.21875 3.296875 -4.109375 3.578125 -3.859375 Z M 3.578125 -3.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 0.3125 -6.8125 L 0.3125 -6.515625 L 0.46875 -6.515625 C 0.84375 -6.515625 1.09375 -6.46875 1.09375 -5.984375 L 1.09375 -0.953125 C 1.09375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.53125 4.390625 -3.84375 C 4.140625 -4.28125 3.65625 -4.40625 3.1875 -4.40625 C 2.609375 -4.40625 1.96875 -4.015625 1.78125 -3.453125 L 1.765625 -6.921875 Z M 0.3125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-16">
<path style="stroke:none;" d="M 1.484375 -6.140625 C 1.484375 -5.453125 1.203125 -4.203125 0.171875 -4.203125 L 0.171875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.421875 C 1.03125 -1.09375 1.0625 -0.75 1.21875 -0.46875 C 1.4375 -0.0625 1.90625 0.09375 2.34375 0.09375 C 3.15625 0.09375 3.3125 -0.8125 3.3125 -1.453125 L 3.3125 -1.8125 L 3.078125 -1.8125 C 3.078125 -1.671875 3.078125 -1.515625 3.078125 -1.359375 C 3.078125 -0.921875 2.984375 -0.15625 2.390625 -0.15625 C 1.828125 -0.15625 1.734375 -0.84375 1.734375 -1.28125 L 1.734375 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.734375 -4.296875 L 1.734375 -6.140625 Z M 1.484375 -6.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-17">
<path style="stroke:none;" d="M 0.890625 -6.015625 L 0.890625 -5.703125 C 1.328125 -5.703125 1.796875 -5.75 2.1875 -5.96875 L 2.1875 -0.75 C 2.1875 -0.375 1.8125 -0.3125 1.421875 -0.3125 C 1.25 -0.3125 1.09375 -0.3125 0.953125 -0.3125 L 0.953125 -0.015625 L 4.1875 -0.015625 L 4.1875 -0.3125 C 4.015625 -0.3125 3.84375 -0.3125 3.6875 -0.3125 C 3.296875 -0.3125 2.9375 -0.375 2.9375 -0.75 L 2.9375 -6.484375 C 2.9375 -6.578125 2.90625 -6.65625 2.796875 -6.65625 C 2.65625 -6.65625 2.5 -6.453125 2.375 -6.375 C 1.9375 -6.09375 1.40625 -6.015625 0.890625 -6.015625 Z M 0.890625 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-18">
<path style="stroke:none;" d="M 1.78125 -0.1875 C 1.796875 -0.140625 1.8125 -0.078125 1.8125 -0.015625 C 1.8125 0.65625 1.5 1.234375 1.0625 1.71875 C 1.03125 1.75 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.859375 1.0625 1.90625 1.109375 1.90625 C 1.25 1.90625 1.53125 1.53125 1.65625 1.3125 C 1.890625 0.90625 2.03125 0.4375 2.03125 -0.03125 C 2.03125 -0.484375 1.890625 -1.0625 1.375 -1.0625 C 1.078125 -1.0625 0.859375 -0.84375 0.859375 -0.53125 C 0.859375 -0.203125 1.109375 -0.015625 1.390625 -0.015625 C 1.53125 -0.015625 1.6875 -0.0625 1.78125 -0.1875 Z M 1.78125 -0.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-19">
<path style="stroke:none;" d="M 0.890625 -5.328125 C 1.125 -5.828125 1.5 -6.34375 2.21875 -6.34375 C 3.15625 -6.34375 3.5625 -5.484375 3.5625 -4.703125 C 3.5625 -3.78125 2.953125 -3.03125 2.375 -2.375 C 1.8125 -1.703125 1.203125 -1.0625 0.625 -0.40625 C 0.53125 -0.3125 0.5 -0.265625 0.5 -0.125 L 0.5 -0.015625 L 4.203125 -0.015625 L 4.46875 -1.75 L 4.234375 -1.75 C 4.140625 -1.296875 4.203125 -0.796875 3.6875 -0.796875 L 3.296875 -0.796875 C 3 -0.78125 2.71875 -0.78125 2.421875 -0.78125 C 2.03125 -0.78125 1.65625 -0.78125 1.28125 -0.78125 L 1.96875 -1.453125 C 2.25 -1.71875 2.515625 -1.984375 2.796875 -2.234375 C 3.53125 -2.890625 4.46875 -3.609375 4.46875 -4.71875 C 4.46875 -5.84375 3.515625 -6.65625 2.390625 -6.65625 C 1.4375 -6.65625 0.5 -5.9375 0.5 -4.859375 C 0.5 -4.609375 0.59375 -4.296875 1.015625 -4.296875 C 1.3125 -4.296875 1.546875 -4.5 1.546875 -4.8125 C 1.546875 -5.078125 1.34375 -5.328125 1.03125 -5.328125 C 0.984375 -5.328125 0.9375 -5.328125 0.890625 -5.328125 Z M 0.890625 -5.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-20">
<path style="stroke:none;" d="M 3.03125 -6.8125 L 3.03125 -6.515625 L 3.1875 -6.515625 C 3.53125 -6.515625 3.8125 -6.46875 3.8125 -5.890625 L 3.796875 -3.796875 C 3.5625 -4.203125 2.984375 -4.40625 2.53125 -4.40625 C 1.3125 -4.40625 0.328125 -3.34375 0.328125 -2.140625 C 0.328125 -1.078125 1.140625 0.09375 2.46875 0.09375 C 2.984375 0.09375 3.453125 -0.15625 3.78125 -0.546875 L 3.78125 0.09375 L 5.25 -0.015625 L 5.25 -0.3125 L 5.078125 -0.3125 C 4.78125 -0.3125 4.46875 -0.34375 4.46875 -0.8125 L 4.46875 -6.921875 Z M 1.171875 -1.90625 L 1.171875 -2.046875 C 1.171875 -2.796875 1.25 -3.53125 1.9375 -4 C 2.140625 -4.109375 2.375 -4.1875 2.609375 -4.1875 C 3.09375 -4.1875 3.78125 -3.78125 3.78125 -3.15625 C 3.78125 -3.03125 3.78125 -2.90625 3.78125 -2.765625 L 3.78125 -1.109375 C 3.78125 -0.984375 3.734375 -0.890625 3.65625 -0.796875 C 3.40625 -0.40625 2.96875 -0.125 2.5 -0.125 C 1.78125 -0.125 1.3125 -0.78125 1.203125 -1.46875 C 1.1875 -1.609375 1.1875 -1.765625 1.171875 -1.90625 Z M 1.171875 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-21">
<path style="stroke:none;" d="M 0.28125 -1.65625 L 2.9375 -1.65625 L 2.9375 -0.75 C 2.9375 -0.34375 2.625 -0.3125 2.109375 -0.3125 L 1.96875 -0.3125 L 1.96875 -0.015625 L 4.671875 -0.015625 L 4.671875 -0.3125 C 4.546875 -0.3125 4.421875 -0.3125 4.296875 -0.3125 C 3.984375 -0.3125 3.703125 -0.375 3.703125 -0.75 L 3.703125 -1.65625 L 4.6875 -1.65625 L 4.6875 -1.96875 L 3.703125 -1.96875 L 3.703125 -6.4375 C 3.703125 -6.46875 3.71875 -6.515625 3.71875 -6.5625 C 3.71875 -6.671875 3.6875 -6.765625 3.5625 -6.765625 C 3.40625 -6.765625 3.375 -6.6875 3.3125 -6.578125 C 2.375 -5.15625 1.4375 -3.734375 0.515625 -2.328125 C 0.390625 -2.140625 0.265625 -2 0.265625 -1.828125 C 0.265625 -1.78125 0.28125 -1.71875 0.28125 -1.65625 Z M 0.5625 -1.96875 L 2.984375 -5.65625 L 2.984375 -1.96875 Z M 0.5625 -1.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-22">
<path style="stroke:none;" d="M 1.3125 -1.0625 C 1.0625 -1.03125 0.859375 -0.796875 0.859375 -0.546875 C 0.859375 -0.296875 1.0625 -0.015625 1.359375 -0.015625 C 1.640625 -0.015625 1.90625 -0.21875 1.90625 -0.53125 C 1.90625 -0.78125 1.71875 -1.0625 1.390625 -1.0625 C 1.359375 -1.0625 1.328125 -1.0625 1.3125 -1.0625 Z M 1.3125 -1.0625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="124.802" y="135.761"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="148.471795" y="135.761"/>
<use xlink:href="#glyph0-3" x="158.824013" y="135.761"/>
<use xlink:href="#glyph0-4" x="163.206777" y="135.761"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="177.223015" y="135.761"/>
<use xlink:href="#glyph0-3" x="187.575233" y="135.761"/>
<use xlink:href="#glyph0-4" x="191.957997" y="135.761"/>
<use xlink:href="#glyph0-5" x="200.723525" y="135.761"/>
<use xlink:href="#glyph0-6" x="206.946907" y="135.761"/>
<use xlink:href="#glyph0-3" x="213.082776" y="135.761"/>
<use xlink:href="#glyph0-7" x="217.46554" y="135.761"/>
<use xlink:href="#glyph0-8" x="224.63864" y="135.761"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="124.802" y="163.557"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="148.471795" y="163.557"/>
<use xlink:href="#glyph0-3" x="159.68622" y="163.557"/>
<use xlink:href="#glyph0-6" x="164.068984" y="163.557"/>
<use xlink:href="#glyph0-6" x="170.204854" y="163.557"/>
<use xlink:href="#glyph0-7" x="176.340724" y="163.557"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="188.764533" y="163.557"/>
<use xlink:href="#glyph0-11" x="194.987914" y="163.557"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="201.569951" y="163.557"/>
<use xlink:href="#glyph0-4" x="210.335479" y="163.557"/>
<use xlink:href="#glyph0-13" x="219.101007" y="163.557"/>
<use xlink:href="#glyph0-14" x="226.989983" y="163.557"/>
<use xlink:href="#glyph0-14" x="231.372747" y="163.557"/>
<use xlink:href="#glyph0-7" x="235.755511" y="163.557"/>
<use xlink:href="#glyph0-4" x="242.928611" y="163.557"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="256.944848" y="163.557"/>
<use xlink:href="#glyph0-3" x="265.710376" y="163.557"/>
<use xlink:href="#glyph0-7" x="270.093141" y="163.557"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="282.531296" y="163.557"/>
<use xlink:href="#glyph0-3" x="288.754677" y="163.557"/>
<use xlink:href="#glyph0-11" x="293.137442" y="163.557"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="299.705132" y="163.557"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="313.735716" y="163.557"/>
<use xlink:href="#glyph0-4" x="321.624691" y="163.557"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="124.802" y="191.353"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="148.471795" y="191.353"/>
<use xlink:href="#glyph0-7" x="156.617568" y="191.353"/>
<use xlink:href="#glyph0-6" x="163.790668" y="191.353"/>
<use xlink:href="#glyph0-18" x="169.926537" y="191.353"/>
<use xlink:href="#glyph0-6" x="176.93896" y="191.353"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="188.325539" y="191.353"/>
<use xlink:href="#glyph0-7" x="196.214514" y="191.353"/>
<use xlink:href="#glyph0-12" x="203.387614" y="191.353"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="211.722757" y="191.353"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="223.109336" y="191.353"/>
<use xlink:href="#glyph0-5" x="230.282436" y="191.353"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="241.770872" y="191.353"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="250.966787" y="191.353"/>
<use xlink:href="#glyph0-20" x="258.139887" y="191.353"/>
<use xlink:href="#glyph0-8" x="264.542596" y="191.353"/>
<use xlink:href="#glyph0-13" x="272.431571" y="191.353"/>
<use xlink:href="#glyph0-19" x="280.320546" y="191.353"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-21" x="124.802" y="219.149"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-22" x="148.471795" y="219.149"/>
<use xlink:href="#glyph0-23" x="160.821004" y="219.149"/>
<use xlink:href="#glyph0-20" x="169.586533" y="219.149"/>
<use xlink:href="#glyph0-18" x="175.989242" y="219.149"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="188.252373" y="219.149"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="196.148522" y="219.149"/>
<use xlink:href="#glyph0-20" x="204.037497" y="219.149"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="215.690915" y="219.149"/>
<use xlink:href="#glyph0-3" x="226.043133" y="219.149"/>
<use xlink:href="#glyph0-4" x="230.425897" y="219.149"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="238.76104" y="219.149"/>
<use xlink:href="#glyph0-20" x="244.896909" y="219.149"/>
<use xlink:href="#glyph0-3" x="251.299619" y="219.149"/>
<use xlink:href="#glyph0-6" x="255.682383" y="219.149"/>
<use xlink:href="#glyph0-6" x="261.818252" y="219.149"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="124.802" y="246.946"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="148.471795" y="246.946"/>
<use xlink:href="#glyph0-7" x="159.68622" y="246.946"/>
<use xlink:href="#glyph0-20" x="166.85932" y="246.946"/>
<use xlink:href="#glyph0-23" x="173.262029" y="246.946"/>
<use xlink:href="#glyph0-12" x="182.027557" y="246.946"/>
<use xlink:href="#glyph0-3" x="190.793085" y="246.946"/>
<use xlink:href="#glyph0-8" x="195.175849" y="246.946"/>
<use xlink:href="#glyph0-7" x="203.064825" y="246.946"/>
<use xlink:href="#glyph0-4" x="210.237925" y="246.946"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="224.254162" y="246.946"/>
<use xlink:href="#glyph0-3" x="233.01969" y="246.946"/>
<use xlink:href="#glyph0-7" x="237.402455" y="246.946"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="249.84061" y="246.946"/>
<use xlink:href="#glyph0-3" x="256.063992" y="246.946"/>
<use xlink:href="#glyph0-11" x="260.446756" y="246.946"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="267.014446" y="246.946"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="124.802" y="268.764"/>
<use xlink:href="#glyph1-2" x="132.271957" y="268.764"/>
<use xlink:href="#glyph1-3" x="135.038571" y="268.764"/>
<use xlink:href="#glyph1-4" x="139.464955" y="268.764"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="146.683855" y="268.764"/>
<use xlink:href="#glyph1-3" x="150.612108" y="268.764"/>
<use xlink:href="#glyph1-2" x="155.038491" y="268.764"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="161.132613" y="268.764"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="166.110925" y="268.764"/>
<use xlink:href="#glyph1-4" x="170.537308" y="268.764"/>
<use xlink:href="#glyph1-7" x="174.438662" y="268.764"/>
<use xlink:href="#glyph1-2" x="181.631659" y="268.764"/>
<use xlink:href="#glyph1-3" x="184.398273" y="268.764"/>
<use xlink:href="#glyph1-5" x="188.824656" y="268.764"/>
<use xlink:href="#glyph1-3" x="192.75291" y="268.764"/>
<use xlink:href="#glyph1-8" x="197.179293" y="268.764"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="206.030067" y="268.764"/>
<use xlink:href="#glyph1-10" x="211.01037" y="268.764"/>
<use xlink:href="#glyph1-11" x="216.543598" y="268.764"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="222.914681" y="268.764"/>
<use xlink:href="#glyph1-13" x="230.384639" y="268.764"/>
<use xlink:href="#glyph1-5" x="235.917867" y="268.764"/>
<use xlink:href="#glyph1-14" x="239.84612" y="268.764"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="243.99355" y="268.764"/>
<use xlink:href="#glyph1-8" x="249.526778" y="268.764"/>
<use xlink:href="#glyph1-2" x="255.060006" y="268.764"/>
<use xlink:href="#glyph1-16" x="257.82662" y="268.764"/>
<use xlink:href="#glyph1-16" x="261.700079" y="268.764"/>
<use xlink:href="#glyph1-3" x="265.573538" y="268.764"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-17" x="273.317467" y="268.764"/>
<use xlink:href="#glyph1-18" x="278.297771" y="268.764"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="284.381931" y="268.764"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="292.689743" y="268.764"/>
<use xlink:href="#glyph1-8" x="298.222971" y="268.764"/>
<use xlink:href="#glyph1-20" x="303.756199" y="268.764"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-21" x="312.606973" y="268.764"/>
<use xlink:href="#glyph1-22" x="317.587276" y="268.764"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 56 KiB

View File

@ -0,0 +1,19 @@
\documentclass[a4paper,ngerman]{article}
\usepackage{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{cleveref}
\begin{document}
\thispagestyle{empty}
\section{Ein Einstieg}\label{sec:section1}
\section{Bitte schnallen Sie sich an}\label{sec:section2}
\section{Jetzt geht es bergab}\label{sec:section3}
\section{Kurz vor Eintritt}\label{sec:section4}
\section{Beruhigen Sie sich}\label{sec:section5}
Hier sei verwiesen auf \cref{sec:section1,sec:section2,sec:section4}.
\end{document}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 MiB

View File

@ -0,0 +1,394 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="348pt" height="47pt" viewBox="0 0 348 47" version="1.1">
<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 0.328125 -6.78125 L 0.328125 -6.484375 C 0.453125 -6.484375 0.59375 -6.484375 0.703125 -6.484375 C 1.0625 -6.484375 1.359375 -6.4375 1.359375 -6.046875 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.6875 -0.3125 C 0.5625 -0.3125 0.4375 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 6.078125 -0.015625 L 6.484375 -2.578125 L 6.234375 -2.578125 C 6.09375 -1.671875 5.96875 -0.671875 4.890625 -0.40625 C 4.578125 -0.328125 4.25 -0.3125 3.9375 -0.3125 L 2.65625 -0.3125 C 2.46875 -0.3125 2.25 -0.34375 2.25 -0.640625 L 2.25 -3.375 L 3.15625 -3.375 C 3.515625 -3.375 3.890625 -3.34375 4.09375 -3.046875 C 4.203125 -2.828125 4.21875 -2.5625 4.21875 -2.3125 L 4.21875 -2.21875 L 4.46875 -2.21875 L 4.46875 -4.859375 L 4.21875 -4.859375 L 4.21875 -4.75 C 4.21875 -4.21875 4.09375 -3.78125 3.515625 -3.703125 C 3.3125 -3.6875 3.125 -3.6875 2.9375 -3.6875 L 2.25 -3.6875 L 2.25 -6.125 C 2.25 -6.46875 2.453125 -6.484375 2.65625 -6.484375 L 3.859375 -6.484375 C 4.453125 -6.484375 5.171875 -6.484375 5.5625 -5.953125 C 5.859375 -5.546875 5.90625 -5.03125 5.96875 -4.546875 L 6.21875 -4.546875 L 5.9375 -6.78125 Z M 0.328125 -6.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0.265625 -6.8125 L 0.265625 -6.515625 L 0.4375 -6.515625 C 0.75 -6.515625 1.046875 -6.484375 1.046875 -6.015625 L 1.046875 -0.015625 L 1.28125 -0.03125 L 1.421875 -0.203125 L 1.65625 -0.625 L 1.671875 -0.625 C 1.90625 -0.140625 2.5 0.09375 3 0.09375 C 4.234375 0.09375 5.1875 -0.984375 5.1875 -2.15625 C 5.1875 -3.3125 4.3125 -4.40625 3.046875 -4.40625 C 2.515625 -4.40625 2.0625 -4.15625 1.71875 -3.765625 L 1.71875 -6.921875 Z M 4.34375 -1.90625 C 4.3125 -1.4375 4.25 -1.015625 3.953125 -0.640625 C 3.703125 -0.328125 3.328125 -0.125 2.9375 -0.125 C 2.5 -0.125 2.109375 -0.375 1.890625 -0.734375 C 1.796875 -0.84375 1.75 -0.921875 1.75 -1.078125 L 1.75 -2.734375 C 1.75 -2.875 1.734375 -3 1.734375 -3.125 C 1.734375 -3.734375 2.46875 -4.1875 3.015625 -4.1875 C 4.09375 -4.1875 4.359375 -2.9375 4.359375 -2.140625 C 4.359375 -2.0625 4.359375 -2 4.34375 -1.90625 Z M 4.34375 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 1.109375 -2.3125 L 3.984375 -2.3125 C 4.09375 -2.3125 4.140625 -2.375 4.140625 -2.5 C 4.140625 -3.546875 3.5 -4.46875 2.375 -4.46875 C 1.15625 -4.46875 0.28125 -3.375 0.28125 -2.1875 C 0.28125 -1.28125 0.78125 -0.453125 1.671875 -0.0625 C 1.890625 0.046875 2.15625 0.09375 2.40625 0.09375 L 2.4375 0.09375 C 3.203125 0.09375 3.84375 -0.328125 4.109375 -1.09375 C 4.125 -1.125 4.125 -1.171875 4.125 -1.203125 C 4.125 -1.265625 4.09375 -1.3125 4.015625 -1.3125 C 3.875 -1.3125 3.8125 -0.984375 3.75 -0.875 C 3.5 -0.4375 3.015625 -0.15625 2.5 -0.15625 C 2.140625 -0.15625 1.8125 -0.359375 1.546875 -0.625 C 1.140625 -1.09375 1.109375 -1.734375 1.109375 -2.3125 Z M 1.125 -2.515625 C 1.125 -3.296875 1.53125 -4.25 2.359375 -4.25 L 2.40625 -4.25 C 3.375 -4.15625 3.375 -3.125 3.46875 -2.515625 Z M 1.125 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.265625 -4.296875 L 0.265625 -3.984375 L 0.421875 -3.984375 C 0.75 -3.984375 1.046875 -3.953125 1.046875 -3.484375 L 1.046875 -0.734375 C 1.046875 -0.328125 0.765625 -0.3125 0.328125 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.6875 -0.015625 L 2.6875 -0.3125 C 2.5625 -0.3125 2.421875 -0.3125 2.296875 -0.3125 C 1.984375 -0.3125 1.71875 -0.359375 1.71875 -0.734375 L 1.71875 -2.046875 C 1.71875 -2.90625 1.90625 -4.1875 2.890625 -4.1875 C 2.9375 -4.1875 2.953125 -4.1875 3 -4.171875 C 2.84375 -4.109375 2.765625 -3.953125 2.765625 -3.78125 C 2.765625 -3.5625 2.921875 -3.40625 3.15625 -3.359375 C 3.4375 -3.359375 3.625 -3.53125 3.625 -3.78125 C 3.625 -4.1875 3.25 -4.40625 2.890625 -4.40625 C 2.296875 -4.40625 1.78125 -3.875 1.671875 -3.34375 L 1.671875 -4.40625 Z M 0.265625 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.78125 -0.1875 C 1.796875 -0.140625 1.8125 -0.078125 1.8125 -0.015625 C 1.8125 0.65625 1.5 1.234375 1.0625 1.71875 C 1.03125 1.75 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.859375 1.0625 1.90625 1.109375 1.90625 C 1.25 1.90625 1.53125 1.53125 1.65625 1.3125 C 1.890625 0.90625 2.03125 0.4375 2.03125 -0.03125 C 2.03125 -0.484375 1.890625 -1.0625 1.375 -1.0625 C 1.078125 -1.0625 0.859375 -0.84375 0.859375 -0.53125 C 0.859375 -0.203125 1.109375 -0.015625 1.390625 -0.015625 C 1.53125 -0.015625 1.6875 -0.0625 1.78125 -0.1875 Z M 1.78125 -0.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 0.375 -4.296875 L 0.375 -3.984375 L 0.5625 -3.984375 C 0.84375 -3.984375 1.109375 -3.953125 1.109375 -3.484375 L 1.109375 -0.734375 C 1.109375 -0.375 0.921875 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.265625 -0.3125 C 2.015625 -0.3125 1.78125 -0.34375 1.78125 -0.671875 L 1.78125 -4.40625 Z M 1.203125 -6.671875 C 0.953125 -6.640625 0.75 -6.421875 0.75 -6.15625 C 0.75 -5.859375 1 -5.625 1.28125 -5.625 C 1.5625 -5.625 1.8125 -5.84375 1.8125 -6.15625 C 1.8125 -6.4375 1.5625 -6.671875 1.28125 -6.671875 C 1.25 -6.671875 1.234375 -6.671875 1.203125 -6.671875 Z M 1.203125 -6.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.28125 2.1875 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.859375 -3.53125 3.859375 -3.078125 L 3.859375 -0.703125 C 3.859375 -0.34375 3.5625 -0.3125 3.234375 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.796875 -0.3125 4.5625 -0.359375 4.5625 -0.734375 L 4.5625 -2.546875 C 4.5625 -3.28125 4.953125 -4.1875 5.90625 -4.1875 C 6.546875 -4.1875 6.625 -3.53125 6.625 -3.078125 L 6.625 -0.703125 C 6.625 -0.34375 6.3125 -0.3125 5.984375 -0.3125 L 5.84375 -0.3125 L 5.84375 -0.015625 L 8.09375 -0.015625 L 8.09375 -0.3125 L 7.890625 -0.3125 C 7.59375 -0.3125 7.3125 -0.34375 7.3125 -0.703125 L 7.3125 -2.953125 C 7.3125 -3.3125 7.296875 -3.65625 7.0625 -3.984375 C 6.796875 -4.3125 6.375 -4.40625 5.96875 -4.40625 C 5.328125 -4.40625 4.796875 -4.03125 4.53125 -3.453125 C 4.34375 -4.15625 3.890625 -4.40625 3.203125 -4.40625 C 2.5625 -4.40625 1.953125 -4 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 C 0.453125 -6.515625 0.59375 -6.515625 0.703125 -6.515625 C 1.0625 -6.515625 1.359375 -6.46875 1.359375 -6.078125 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.6875 -0.3125 C 0.5625 -0.3125 0.4375 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 3.265625 -0.015625 L 3.265625 -0.3125 L 2.9375 -0.3125 C 2.515625 -0.3125 2.25 -0.34375 2.25 -0.75 L 2.25 -3.40625 L 5.21875 -3.40625 L 5.21875 -0.75 C 5.21875 -0.359375 4.890625 -0.3125 4.53125 -0.3125 L 4.203125 -0.3125 L 4.203125 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 C 7.015625 -0.3125 6.890625 -0.3125 6.765625 -0.3125 C 6.421875 -0.3125 6.109375 -0.359375 6.109375 -0.75 L 6.109375 -6.078125 C 6.109375 -6.453125 6.4375 -6.515625 6.765625 -6.515625 C 6.890625 -6.515625 7.03125 -6.515625 7.140625 -6.515625 L 7.140625 -6.8125 L 4.203125 -6.8125 L 4.203125 -6.515625 L 4.53125 -6.515625 C 4.953125 -6.515625 5.21875 -6.484375 5.21875 -6.078125 L 5.21875 -3.703125 L 2.25 -3.703125 L 2.25 -6.078125 C 2.25 -6.46875 2.578125 -6.515625 2.9375 -6.515625 L 3.265625 -6.515625 L 3.265625 -6.8125 Z M 0.328125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 1.109375 -3.796875 C 1.359375 -4.109375 1.796875 -4.25 2.171875 -4.25 C 2.90625 -4.25 3.234375 -3.578125 3.234375 -2.875 L 3.234375 -2.609375 C 2.09375 -2.609375 0.40625 -2.25 0.40625 -0.953125 L 0.40625 -0.875 C 0.484375 -0.09375 1.453125 0.09375 2.03125 0.09375 C 2.53125 0.09375 3.1875 -0.234375 3.3125 -0.75 C 3.375 -0.3125 3.65625 0.046875 4.09375 0.046875 C 4.5 0.046875 4.859375 -0.28125 4.921875 -0.734375 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.953125 C 4.671875 -0.671875 4.609375 -0.265625 4.3125 -0.265625 C 3.984375 -0.265625 3.9375 -0.65625 3.9375 -0.921875 L 3.9375 -2.59375 C 3.9375 -2.71875 3.953125 -2.84375 3.953125 -2.96875 C 3.953125 -3.9375 3.046875 -4.46875 2.21875 -4.46875 C 1.578125 -4.46875 0.703125 -4.15625 0.703125 -3.359375 C 0.703125 -3.078125 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.609375 -3.09375 1.609375 -3.34375 C 1.609375 -3.625 1.390625 -3.796875 1.109375 -3.796875 Z M 3.234375 -2.40625 L 3.234375 -1.390625 C 3.234375 -0.703125 2.765625 -0.15625 2.109375 -0.125 L 2.078125 -0.125 C 1.609375 -0.125 1.1875 -0.484375 1.1875 -0.96875 L 1.1875 -1.015625 C 1.25 -2.03125 2.375 -2.375 3.234375 -2.40625 Z M 3.234375 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.453125 -3.984375 C 0.734375 -3.984375 1.03125 -3.96875 1.09375 -3.671875 C 1.09375 -3.5625 1.09375 -3.453125 1.09375 -3.34375 L 1.09375 -1.359375 C 1.09375 -1.03125 1.109375 -0.734375 1.28125 -0.4375 C 1.5625 -0.015625 2.125 0.109375 2.59375 0.109375 C 3.046875 0.109375 3.453125 -0.09375 3.703125 -0.453125 C 3.765625 -0.5625 3.84375 -0.65625 3.875 -0.78125 L 3.875 0.09375 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.171875 -0.3125 C 4.84375 -0.3125 4.546875 -0.34375 4.546875 -0.796875 L 4.546875 -4.40625 L 3.078125 -4.296875 L 3.078125 -3.984375 L 3.21875 -3.984375 C 3.546875 -3.984375 3.84375 -3.953125 3.84375 -3.484375 L 3.84375 -1.6875 C 3.84375 -0.953125 3.46875 -0.125 2.640625 -0.125 C 2.078125 -0.125 1.796875 -0.265625 1.796875 -1.328125 L 1.796875 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 1.75 -4.46875 C 1.390625 -4.421875 1 -4.359375 0.703125 -4.109375 C 0.46875 -3.890625 0.328125 -3.5625 0.328125 -3.234375 C 0.328125 -1.53125 3.09375 -2.5 3.09375 -1 C 3.09375 -0.40625 2.546875 -0.125 2 -0.125 C 1.25 -0.125 0.734375 -0.65625 0.59375 -1.515625 C 0.578125 -1.609375 0.5625 -1.6875 0.453125 -1.6875 C 0.375 -1.6875 0.328125 -1.640625 0.328125 -1.5625 L 0.328125 0.015625 C 0.34375 0.0625 0.375 0.09375 0.421875 0.09375 L 0.4375 0.09375 C 0.59375 0.09375 0.75 -0.265625 0.875 -0.296875 L 0.890625 -0.296875 C 0.96875 -0.296875 1.234375 -0.046875 1.453125 0.015625 C 1.609375 0.078125 1.796875 0.09375 1.96875 0.09375 C 2.796875 0.09375 3.59375 -0.34375 3.59375 -1.25 C 3.59375 -1.90625 3.109375 -2.453125 2.453125 -2.625 C 1.828125 -2.796875 0.8125 -2.796875 0.8125 -3.515625 C 0.8125 -4.125 1.484375 -4.28125 1.921875 -4.28125 C 2.40625 -4.28125 3.09375 -4 3.09375 -3.15625 C 3.09375 -3.0625 3.09375 -2.984375 3.203125 -2.984375 C 3.3125 -2.984375 3.34375 -3.0625 3.34375 -3.15625 C 3.34375 -3.203125 3.34375 -3.265625 3.34375 -3.296875 L 3.34375 -4.328125 C 3.34375 -4.390625 3.3125 -4.46875 3.234375 -4.46875 C 3.078125 -4.46875 2.96875 -4.21875 2.859375 -4.21875 L 2.84375 -4.21875 C 2.765625 -4.21875 2.609375 -4.34375 2.5 -4.390625 C 2.3125 -4.453125 2.109375 -4.46875 1.921875 -4.46875 C 1.859375 -4.46875 1.8125 -4.46875 1.75 -4.46875 Z M 1.75 -4.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 3.578125 -3.859375 C 3.3125 -3.84375 3.109375 -3.671875 3.109375 -3.40625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.875 -2.9375 4.03125 -3.15625 4.03125 -3.4375 L 4.03125 -3.5 C 3.921875 -4.234375 3.078125 -4.46875 2.5 -4.46875 C 1.28125 -4.46875 0.328125 -3.40625 0.328125 -2.15625 C 0.328125 -1.03125 1.203125 0.09375 2.5 0.09375 C 3.15625 0.09375 3.796875 -0.265625 4.0625 -0.953125 C 4.09375 -1.015625 4.140625 -1.109375 4.140625 -1.171875 C 4.140625 -1.25 4.09375 -1.296875 4.015625 -1.296875 C 3.875 -1.296875 3.78125 -0.921875 3.703125 -0.78125 C 3.46875 -0.40625 3.0625 -0.15625 2.609375 -0.15625 C 1.546875 -0.15625 1.21875 -1.21875 1.171875 -2 L 1.171875 -2.125 C 1.171875 -2.921875 1.359375 -4.109375 2.453125 -4.21875 L 2.53125 -4.21875 C 2.90625 -4.21875 3.296875 -4.109375 3.578125 -3.859375 Z M 3.578125 -3.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 0.3125 -6.8125 L 0.3125 -6.515625 L 0.46875 -6.515625 C 0.84375 -6.515625 1.09375 -6.46875 1.09375 -5.984375 L 1.09375 -0.953125 C 1.09375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.53125 4.390625 -3.84375 C 4.140625 -4.28125 3.65625 -4.40625 3.1875 -4.40625 C 2.609375 -4.40625 1.96875 -4.015625 1.78125 -3.453125 L 1.765625 -6.921875 Z M 0.3125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 0.171875 -4.296875 L 0.171875 -3.984375 L 0.328125 -3.984375 C 0.84375 -3.984375 0.875 -3.765625 1.109375 -3.0625 C 1.359375 -2.375 1.625 -1.6875 1.859375 -1 L 2.15625 -0.15625 C 2.203125 -0.046875 2.234375 0.09375 2.375 0.09375 L 2.390625 0.09375 C 2.609375 0.09375 2.75 -0.5625 2.875 -0.890625 C 3.0625 -1.421875 3.25 -1.953125 3.453125 -2.484375 C 3.5 -2.625 3.5625 -2.765625 3.59375 -2.90625 C 3.625 -2.765625 3.6875 -2.625 3.734375 -2.484375 L 4.03125 -1.671875 C 4.203125 -1.15625 4.40625 -0.640625 4.578125 -0.125 C 4.625 -0.015625 4.671875 0.09375 4.8125 0.09375 C 5.03125 0.09375 5.1875 -0.609375 5.3125 -0.96875 L 5.875 -2.546875 C 6.109375 -3.1875 6.25 -3.984375 7.015625 -3.984375 L 7.015625 -4.296875 L 5.359375 -4.296875 L 5.359375 -3.984375 C 5.625 -3.984375 5.90625 -3.84375 5.9375 -3.5625 C 5.9375 -3.28125 5.765625 -2.953125 5.671875 -2.703125 C 5.515625 -2.265625 5.359375 -1.84375 5.21875 -1.421875 C 5.140625 -1.203125 5.03125 -0.984375 4.984375 -0.765625 L 4.96875 -0.765625 C 4.921875 -1 4.796875 -1.3125 4.6875 -1.5625 C 4.46875 -2.203125 4.234375 -2.84375 4 -3.5 C 3.984375 -3.5625 3.953125 -3.65625 3.953125 -3.734375 L 3.953125 -3.765625 C 4 -3.984375 4.328125 -3.984375 4.53125 -3.984375 L 4.53125 -4.296875 L 2.59375 -4.296875 L 2.59375 -3.984375 L 2.765625 -3.984375 C 3.15625 -3.984375 3.25 -3.84375 3.375 -3.5 C 3.40625 -3.421875 3.453125 -3.34375 3.453125 -3.265625 C 3.4375 -3.171875 3.390625 -3.078125 3.359375 -2.984375 L 2.796875 -1.40625 C 2.734375 -1.234375 2.6875 -1.0625 2.609375 -0.90625 C 2.5 -1.171875 2.40625 -1.453125 2.3125 -1.71875 C 2.15625 -2.15625 2 -2.578125 1.859375 -3.015625 L 1.671875 -3.515625 C 1.65625 -3.578125 1.609375 -3.65625 1.609375 -3.71875 C 1.609375 -3.984375 1.984375 -3.984375 2.203125 -3.984375 L 2.203125 -4.296875 Z M 0.171875 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.546875 4.375 -3.84375 C 4.140625 -4.28125 3.640625 -4.40625 3.1875 -4.40625 C 2.578125 -4.40625 1.9375 -3.984375 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 2.34375 -4.46875 C 1.09375 -4.34375 0.28125 -3.28125 0.28125 -2.125 C 0.28125 -1 1.171875 0.09375 2.5 0.09375 C 3.6875 0.09375 4.6875 -0.875 4.6875 -2.140625 C 4.6875 -3.3125 3.796875 -4.46875 2.46875 -4.46875 C 2.4375 -4.46875 2.375 -4.46875 2.34375 -4.46875 Z M 1.109375 -1.890625 L 1.109375 -2.328125 C 1.109375 -3.09375 1.359375 -4.25 2.484375 -4.25 C 3.296875 -4.25 3.75 -3.5625 3.84375 -2.8125 C 3.859375 -2.59375 3.859375 -2.375 3.859375 -2.15625 C 3.859375 -1.515625 3.78125 -0.703125 3.15625 -0.34375 C 2.953125 -0.203125 2.734375 -0.15625 2.5 -0.15625 C 1.78125 -0.15625 1.265625 -0.71875 1.15625 -1.5 C 1.140625 -1.625 1.140625 -1.765625 1.109375 -1.890625 Z M 1.109375 -1.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 3.03125 -6.8125 L 3.03125 -6.515625 L 3.1875 -6.515625 C 3.53125 -6.515625 3.8125 -6.46875 3.8125 -5.890625 L 3.796875 -3.796875 C 3.5625 -4.203125 2.984375 -4.40625 2.53125 -4.40625 C 1.3125 -4.40625 0.328125 -3.34375 0.328125 -2.140625 C 0.328125 -1.078125 1.140625 0.09375 2.46875 0.09375 C 2.984375 0.09375 3.453125 -0.15625 3.78125 -0.546875 L 3.78125 0.09375 L 5.25 -0.015625 L 5.25 -0.3125 L 5.078125 -0.3125 C 4.78125 -0.3125 4.46875 -0.34375 4.46875 -0.8125 L 4.46875 -6.921875 Z M 1.171875 -1.90625 L 1.171875 -2.046875 C 1.171875 -2.796875 1.25 -3.53125 1.9375 -4 C 2.140625 -4.109375 2.375 -4.1875 2.609375 -4.1875 C 3.09375 -4.1875 3.78125 -3.78125 3.78125 -3.15625 C 3.78125 -3.03125 3.78125 -2.90625 3.78125 -2.765625 L 3.78125 -1.109375 C 3.78125 -0.984375 3.734375 -0.890625 3.65625 -0.796875 C 3.40625 -0.40625 2.96875 -0.125 2.5 -0.125 C 1.78125 -0.125 1.3125 -0.78125 1.203125 -1.46875 C 1.1875 -1.609375 1.1875 -1.765625 1.171875 -1.90625 Z M 1.171875 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 1.484375 -6.140625 C 1.484375 -5.453125 1.203125 -4.203125 0.171875 -4.203125 L 0.171875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.421875 C 1.03125 -1.09375 1.0625 -0.75 1.21875 -0.46875 C 1.4375 -0.0625 1.90625 0.09375 2.34375 0.09375 C 3.15625 0.09375 3.3125 -0.8125 3.3125 -1.453125 L 3.3125 -1.8125 L 3.078125 -1.8125 C 3.078125 -1.671875 3.078125 -1.515625 3.078125 -1.359375 C 3.078125 -0.921875 2.984375 -0.15625 2.390625 -0.15625 C 1.828125 -0.15625 1.734375 -0.84375 1.734375 -1.28125 L 1.734375 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.734375 -4.296875 L 1.734375 -6.140625 Z M 1.484375 -6.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 1.15625 -0.484375 C 1.78125 0 2.265625 0.203125 3.046875 0.203125 C 4.234375 0.203125 4.96875 -0.859375 4.96875 -1.875 C 4.96875 -2.703125 4.5 -3.46875 3.703125 -3.796875 C 3.09375 -4.046875 2.34375 -4.03125 1.8125 -4.34375 C 1.421875 -4.59375 1.1875 -5.03125 1.1875 -5.46875 C 1.1875 -6.25 1.859375 -6.765625 2.5625 -6.765625 C 3.546875 -6.765625 4.234375 -5.96875 4.390625 -4.96875 C 4.421875 -4.828125 4.390625 -4.5625 4.578125 -4.5625 C 4.6875 -4.5625 4.6875 -4.640625 4.6875 -4.734375 L 4.6875 -6.890625 C 4.6875 -6.96875 4.671875 -7.03125 4.59375 -7.03125 C 4.453125 -7.03125 4.34375 -6.765625 4.25 -6.625 C 4.203125 -6.546875 4.125 -6.4375 4.09375 -6.34375 C 3.671875 -6.75 3.203125 -7.03125 2.546875 -7.03125 C 1.5625 -7.03125 0.546875 -6.359375 0.546875 -5.09375 C 0.546875 -4.0625 1.3125 -3.375 2.28125 -3.171875 C 2.5 -3.125 2.6875 -3.0625 2.90625 -3.015625 C 3.453125 -2.875 4.015625 -2.734375 4.25 -2.03125 C 4.3125 -1.875 4.34375 -1.71875 4.34375 -1.5625 C 4.34375 -0.8125 3.828125 -0.09375 2.984375 -0.09375 C 2 -0.09375 1.03125 -0.625 0.828125 -1.78125 C 0.8125 -1.859375 0.8125 -1.96875 0.796875 -2.046875 L 0.796875 -2.125 C 0.796875 -2.21875 0.75 -2.265625 0.671875 -2.265625 C 0.5625 -2.265625 0.546875 -2.1875 0.546875 -2.125 L 0.546875 0.0625 C 0.546875 0.140625 0.5625 0.203125 0.640625 0.203125 C 0.796875 0.203125 0.90625 -0.0625 0.984375 -0.203125 C 1.046875 -0.296875 1.109375 -0.390625 1.15625 -0.484375 Z M 1.15625 -0.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 1.109375 -3.796875 C 1.359375 -4.109375 1.796875 -4.25 2.171875 -4.25 C 2.90625 -4.25 3.234375 -3.578125 3.234375 -2.875 L 3.234375 -2.609375 C 2.09375 -2.609375 0.40625 -2.25 0.40625 -0.953125 L 0.40625 -0.875 C 0.484375 -0.09375 1.453125 0.09375 2.03125 0.09375 C 2.53125 0.09375 3.1875 -0.234375 3.3125 -0.75 C 3.375 -0.3125 3.65625 0.046875 4.09375 0.046875 C 4.5 0.046875 4.859375 -0.28125 4.921875 -0.734375 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.953125 C 4.671875 -0.671875 4.609375 -0.265625 4.3125 -0.265625 C 3.984375 -0.265625 3.9375 -0.65625 3.9375 -0.921875 L 3.9375 -2.59375 C 3.9375 -2.71875 3.953125 -2.84375 3.953125 -2.96875 C 3.953125 -3.9375 3.046875 -4.46875 2.21875 -4.46875 C 1.578125 -4.46875 0.703125 -4.15625 0.703125 -3.359375 C 0.703125 -3.078125 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.609375 -3.09375 1.609375 -3.34375 C 1.609375 -3.625 1.390625 -3.796875 1.109375 -3.796875 Z M 3.234375 -2.40625 L 3.234375 -1.390625 C 3.234375 -0.703125 2.765625 -0.15625 2.109375 -0.125 L 2.078125 -0.125 C 1.609375 -0.125 1.1875 -0.484375 1.1875 -0.96875 L 1.1875 -1.015625 C 1.25 -2.03125 2.375 -2.375 3.234375 -2.40625 Z M 1.453125 -6.5625 C 1.203125 -6.546875 0.984375 -6.3125 0.984375 -6.046875 C 0.984375 -5.765625 1.234375 -5.515625 1.515625 -5.515625 C 1.796875 -5.515625 2.046875 -5.75 2.046875 -6.046875 C 2.046875 -6.3125 1.859375 -6.578125 1.53125 -6.578125 C 1.5 -6.578125 1.46875 -6.5625 1.453125 -6.5625 Z M 3.375 -6.5625 C 3.125 -6.546875 2.9375 -6.3125 2.9375 -6.046875 C 2.9375 -5.796875 3.125 -5.515625 3.421875 -5.515625 C 3.734375 -5.515625 3.984375 -5.75 3.984375 -6.046875 C 3.984375 -6.34375 3.734375 -6.578125 3.453125 -6.578125 C 3.421875 -6.578125 3.40625 -6.5625 3.375 -6.5625 Z M 3.375 -6.5625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 0.171875 -6.8125 L 0.171875 -6.515625 L 0.390625 -6.515625 C 1.015625 -6.515625 1.0625 -6.21875 1.171875 -5.84375 C 1.796875 -3.953125 2.390625 -2.078125 3.015625 -0.171875 C 3.0625 -0.046875 3.09375 0.203125 3.28125 0.203125 L 3.296875 0.203125 C 3.484375 0.171875 3.515625 -0.140625 3.546875 -0.21875 C 4.046875 -1.75 4.53125 -3.28125 5.03125 -4.796875 C 5.0625 -4.890625 5.09375 -4.96875 5.109375 -5.046875 L 5.125 -5.046875 C 5.171875 -4.8125 5.28125 -4.578125 5.34375 -4.359375 C 5.796875 -2.984375 6.234375 -1.59375 6.6875 -0.21875 L 6.78125 0.046875 C 6.8125 0.125 6.84375 0.1875 6.921875 0.203125 L 6.953125 0.203125 C 7.140625 0.203125 7.171875 -0.03125 7.21875 -0.171875 C 7.84375 -2.015625 8.40625 -3.875 9.03125 -5.71875 C 9.15625 -6.125 9.359375 -6.515625 10.0625 -6.515625 L 10.0625 -6.8125 L 7.96875 -6.8125 L 7.96875 -6.515625 C 8.3125 -6.515625 8.796875 -6.375 8.828125 -5.984375 C 8.828125 -5.9375 8.8125 -5.859375 8.796875 -5.796875 L 8.703125 -5.546875 C 8.53125 -4.984375 8.34375 -4.421875 8.15625 -3.859375 L 7.5625 -2.015625 C 7.46875 -1.734375 7.359375 -1.46875 7.28125 -1.1875 C 7.140625 -1.53125 7.046875 -1.90625 6.9375 -2.25 C 6.546875 -3.453125 6.171875 -4.65625 5.765625 -5.859375 C 5.734375 -5.96875 5.65625 -6.09375 5.65625 -6.203125 C 5.65625 -6.515625 6.21875 -6.515625 6.5 -6.515625 L 6.5 -6.8125 L 3.875 -6.8125 L 3.875 -6.515625 L 4.140625 -6.515625 C 4.578125 -6.515625 4.671875 -6.40625 4.90625 -5.71875 C 4.921875 -5.65625 4.96875 -5.546875 4.96875 -5.46875 L 4.96875 -5.4375 C 4.96875 -5.3125 4.875 -5.125 4.828125 -4.984375 C 4.5 -4.0625 4.21875 -3.125 3.921875 -2.1875 C 3.8125 -1.859375 3.6875 -1.53125 3.59375 -1.1875 C 3.5625 -1.3125 3.515625 -1.421875 3.484375 -1.53125 L 2.40625 -4.859375 C 2.25 -5.28125 2.140625 -5.6875 2 -6.09375 C 1.984375 -6.125 1.96875 -6.1875 1.96875 -6.21875 L 1.96875 -6.25 C 2.046875 -6.515625 2.515625 -6.515625 2.8125 -6.515625 L 2.8125 -6.8125 Z M 0.171875 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 L 0.484375 -6.515625 C 0.84375 -6.515625 1.109375 -6.46875 1.109375 -5.984375 L 1.109375 -0.953125 C 1.109375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 -0.015625 L 2.546875 -0.015625 L 2.546875 -0.3125 L 2.296875 -0.3125 C 2.015625 -0.3125 1.78125 -0.359375 1.78125 -0.75 L 1.78125 -6.921875 Z M 0.328125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 C 0.453125 -6.515625 0.59375 -6.515625 0.703125 -6.515625 C 1.0625 -6.515625 1.359375 -6.46875 1.359375 -6.078125 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.6875 -0.3125 C 0.5625 -0.3125 0.4375 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 3.265625 -0.015625 L 3.265625 -0.3125 C 3.140625 -0.3125 2.984375 -0.3125 2.859375 -0.3125 C 2.53125 -0.3125 2.25 -0.375 2.25 -0.75 L 2.25 -2.421875 C 2.25 -2.578125 2.4375 -2.71875 2.546875 -2.828125 C 2.71875 -2.96875 2.875 -3.125 3.03125 -3.28125 C 3.15625 -3.390625 3.296875 -3.5 3.390625 -3.625 L 3.40625 -3.625 C 3.546875 -3.375 3.734375 -3.140625 3.890625 -2.90625 C 4.3125 -2.265625 4.765625 -1.640625 5.1875 -0.984375 C 5.25 -0.875 5.34375 -0.75 5.359375 -0.625 C 5.359375 -0.390625 5.078125 -0.3125 4.890625 -0.3125 L 4.78125 -0.3125 L 4.78125 -0.015625 L 7.34375 -0.015625 L 7.34375 -0.3125 C 7.125 -0.3125 6.875 -0.3125 6.671875 -0.421875 C 6.5 -0.515625 6.375 -0.6875 6.25 -0.84375 L 5.828125 -1.46875 C 5.25 -2.359375 4.671875 -3.21875 4.0625 -4.09375 C 4.046875 -4.109375 4.015625 -4.140625 4.015625 -4.171875 L 4.015625 -4.1875 C 4.015625 -4.265625 4.515625 -4.703125 4.75 -4.921875 L 5.4375 -5.578125 C 5.953125 -6.0625 6.453125 -6.515625 7.171875 -6.515625 L 7.203125 -6.515625 L 7.203125 -6.8125 L 5.078125 -6.8125 L 5.078125 -6.515625 C 5.265625 -6.515625 5.53125 -6.4375 5.53125 -6.171875 C 5.53125 -5.984375 5.359375 -5.828125 5.21875 -5.71875 L 5.109375 -5.609375 C 5.0625 -5.578125 5.03125 -5.515625 4.96875 -5.484375 C 4.0625 -4.609375 3.15625 -3.75 2.25 -2.875 L 2.25 -6.046875 C 2.25 -6.5 2.59375 -6.515625 3.1875 -6.515625 L 3.265625 -6.515625 L 3.265625 -6.8125 Z M 0.328125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.6875 -3.046875 0.703125 -3.453125 0.921875 -3.734375 C 1.171875 -4.046875 1.640625 -4.078125 2.03125 -4.078125 L 3.140625 -4.078125 C 2.203125 -2.875 1.3125 -1.59375 0.390625 -0.375 C 0.34375 -0.3125 0.28125 -0.21875 0.28125 -0.140625 C 0.28125 -0.046875 0.34375 -0.015625 0.453125 -0.015625 L 3.828125 -0.015625 L 4 -1.875 L 3.75 -1.875 C 3.671875 -1.203125 3.625 -0.375 2.671875 -0.28125 C 2.4375 -0.265625 2.21875 -0.265625 2 -0.265625 L 1.125 -0.265625 C 1.859375 -1.25 2.59375 -2.25 3.328125 -3.234375 C 3.546875 -3.53125 3.984375 -4 3.984375 -4.171875 C 3.984375 -4.265625 3.890625 -4.296875 3.8125 -4.296875 Z M 0.53125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 5.921875 -0.640625 C 6.046875 -0.390625 6.421875 -0.015625 6.546875 -0.015625 C 6.609375 -0.015625 6.640625 -0.0625 6.640625 -0.15625 L 6.640625 -1.84375 C 6.640625 -1.90625 6.625 -1.96875 6.625 -2.046875 C 6.625 -2.390625 6.890625 -2.40625 7.328125 -2.40625 L 7.328125 -2.71875 L 4.5 -2.71875 L 4.5 -2.40625 C 4.640625 -2.40625 4.796875 -2.421875 4.953125 -2.421875 C 5.4375 -2.421875 5.75 -2.390625 5.75 -1.9375 L 5.75 -1.6875 C 5.75 -1.5625 5.765625 -1.453125 5.765625 -1.328125 C 5.765625 -0.484375 4.984375 -0.09375 4.203125 -0.09375 C 3.28125 -0.09375 2.40625 -0.640625 1.984375 -1.453125 C 1.65625 -2.078125 1.578125 -2.765625 1.578125 -3.453125 C 1.578125 -4.4375 1.78125 -5.46875 2.578125 -6.140625 C 3.015625 -6.5 3.578125 -6.734375 4.140625 -6.734375 C 5.234375 -6.734375 5.984375 -5.828125 6.25 -4.734375 C 6.3125 -4.53125 6.25 -4.171875 6.484375 -4.171875 C 6.59375 -4.171875 6.640625 -4.25 6.640625 -4.34375 L 6.640625 -6.875 C 6.640625 -6.953125 6.625 -7.03125 6.515625 -7.03125 C 6.375 -7.03125 5.90625 -6.25 5.875 -6.1875 C 5.71875 -6.3125 5.578125 -6.453125 5.421875 -6.59375 C 5 -6.890625 4.5 -7.03125 3.984375 -7.03125 C 2.03125 -7.03125 0.546875 -5.28125 0.546875 -3.40625 L 0.546875 -3.265625 C 0.625 -1.421875 2.109375 0.203125 4.046875 0.203125 C 4.78125 0.203125 5.453125 0 5.921875 -0.640625 Z M 5.921875 -0.640625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 1.3125 -1.0625 C 1.0625 -1.03125 0.859375 -0.796875 0.859375 -0.546875 C 0.859375 -0.296875 1.0625 -0.015625 1.359375 -0.015625 C 1.640625 -0.015625 1.90625 -0.21875 1.90625 -0.53125 C 1.90625 -0.78125 1.71875 -1.0625 1.390625 -1.0625 C 1.359375 -1.0625 1.328125 -1.0625 1.3125 -1.0625 Z M 1.3125 -1.0625 "/>
</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 0.765625 -4.1875 L 0.765625 -3.9375 C 1.109375 -3.9375 1.4375 -3.984375 1.765625 -4.125 L 1.765625 -0.546875 C 1.765625 -0.296875 1.578125 -0.28125 1.421875 -0.265625 C 1.21875 -0.265625 1.015625 -0.265625 0.8125 -0.265625 L 0.8125 0 L 2.125 0 L 2.28125 -0.03125 L 2.953125 -0.03125 L 3.296875 0 L 3.296875 -0.265625 C 3.171875 -0.265625 3.03125 -0.25 2.90625 -0.25 C 2.609375 -0.25 2.34375 -0.296875 2.34375 -0.546875 L 2.34375 -4.5 C 2.34375 -4.578125 2.296875 -4.640625 2.203125 -4.640625 C 2.09375 -4.640625 2 -4.515625 1.90625 -4.453125 C 1.5625 -4.25 1.15625 -4.1875 0.765625 -4.1875 Z M 0.765625 -4.1875 "/>
</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.71875 -3.609375 L 0.71875 -3.359375 C 1.046875 -3.359375 1.34375 -3.40625 1.640625 -3.53125 L 1.640625 -0.484375 C 1.640625 -0.265625 1.453125 -0.265625 1.328125 -0.25 C 1.140625 -0.25 0.953125 -0.25 0.765625 -0.25 L 0.765625 0 L 1.296875 0 L 1.578125 -0.03125 L 2.71875 -0.03125 L 3.015625 0 L 3.015625 -0.25 C 2.90625 -0.25 2.765625 -0.234375 2.640625 -0.234375 C 2.375 -0.234375 2.140625 -0.265625 2.140625 -0.484375 L 2.140625 -3.859375 C 2.140625 -3.9375 2.109375 -3.984375 2.015625 -3.984375 C 1.921875 -3.984375 1.84375 -3.890625 1.75 -3.84375 C 1.4375 -3.640625 1.078125 -3.609375 0.71875 -3.609375 Z M 0.71875 -3.609375 "/>
</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 0.75 -4.34375 L 0.75 -0.53125 L 0.359375 -0.53125 C 0.171875 -0.53125 0.078125 -0.421875 0.078125 -0.265625 C 0.078125 -0.09375 0.1875 -0.015625 0.390625 -0.015625 L 1.71875 -0.015625 C 1.890625 -0.015625 2.03125 -0.09375 2.03125 -0.265625 C 2.03125 -0.421875 1.9375 -0.53125 1.75 -0.53125 L 1.359375 -0.53125 L 1.359375 -2.03125 C 1.421875 -2.53125 1.84375 -2.9375 2.359375 -2.953125 C 2.6875 -2.953125 2.859375 -2.8125 2.859375 -2.265625 L 2.859375 -0.53125 L 2.578125 -0.53125 C 2.375 -0.53125 2.25 -0.453125 2.25 -0.265625 C 2.25 -0.078125 2.375 -0.015625 2.578125 -0.015625 L 3.828125 -0.015625 C 4.015625 -0.015625 4.140625 -0.09375 4.140625 -0.265625 C 4.140625 -0.421875 4.046875 -0.53125 3.859375 -0.53125 L 3.46875 -0.53125 L 3.46875 -2.171875 C 3.46875 -2.671875 3.4375 -3.21875 2.796875 -3.421875 C 2.6875 -3.453125 2.5625 -3.46875 2.453125 -3.46875 C 2 -3.46875 1.6875 -3.3125 1.359375 -3.078125 L 1.359375 -4.546875 C 1.359375 -4.828125 1.21875 -4.875 1.046875 -4.875 L 0.296875 -4.875 C 0.171875 -4.859375 0.078125 -4.75 0.078125 -4.609375 C 0.078125 -4.46875 0.171875 -4.34375 0.34375 -4.34375 Z M 0.75 -4.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 1.203125 -3.4375 L 0.5 -3.4375 C 0.296875 -3.4375 0.203125 -3.328125 0.203125 -3.171875 C 0.203125 -3 0.3125 -2.90625 0.5 -2.90625 L 1.203125 -2.90625 L 1.203125 -1.109375 C 1.203125 -0.53125 1.515625 0.03125 2.359375 0.03125 C 2.96875 0.03125 3.625 -0.34375 3.625 -1.046875 C 3.625 -1.234375 3.484375 -1.3125 3.296875 -1.3125 C 2.9375 -1.3125 3.0625 -1.015625 2.9375 -0.8125 C 2.828125 -0.609375 2.625 -0.5 2.390625 -0.5 C 1.90625 -0.5 1.8125 -0.828125 1.8125 -1.140625 L 1.8125 -2.90625 L 3.234375 -2.90625 C 3.375 -2.9375 3.4375 -3.046875 3.4375 -3.171875 C 3.4375 -3.40625 3.25 -3.4375 3.109375 -3.4375 L 1.8125 -3.4375 L 1.8125 -4.125 C 1.8125 -4.34375 1.6875 -4.421875 1.515625 -4.421875 C 1.359375 -4.421875 1.203125 -4.34375 1.203125 -4.109375 Z M 1.203125 -3.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 1.359375 -3.125 C 1.359375 -3.421875 1.1875 -3.4375 1.015625 -3.4375 L 0.578125 -3.4375 C 0.515625 -3.4375 0.46875 -3.4375 0.390625 -3.4375 C 0.234375 -3.4375 0.078125 -3.359375 0.078125 -3.171875 C 0.078125 -2.96875 0.234375 -2.90625 0.390625 -2.90625 L 0.75 -2.90625 L 0.75 1.234375 L 0.359375 1.234375 C 0.171875 1.234375 0.078125 1.34375 0.078125 1.5 C 0.078125 1.671875 0.1875 1.765625 0.390625 1.765625 L 1.71875 1.765625 C 1.890625 1.765625 2.03125 1.6875 2.03125 1.5 C 2.03125 1.34375 1.9375 1.234375 1.75 1.234375 L 1.359375 1.234375 L 1.359375 -0.34375 C 1.609375 -0.09375 1.9375 0.03125 2.28125 0.03125 C 3.21875 0.03125 3.953125 -0.796875 3.953125 -1.71875 C 3.953125 -2.5625 3.359375 -3.484375 2.34375 -3.484375 C 1.96875 -3.484375 1.671875 -3.328125 1.359375 -3.125 Z M 3.34375 -1.625 C 3.28125 -1.046875 2.859375 -0.5 2.25 -0.5 C 1.71875 -0.5 1.359375 -1.078125 1.359375 -1.546875 C 1.359375 -1.65625 1.359375 -1.75 1.359375 -1.828125 C 1.359375 -1.921875 1.359375 -2.015625 1.359375 -2.09375 C 1.359375 -2.578125 1.875 -2.953125 2.3125 -2.953125 C 2.9375 -2.953125 3.34375 -2.3125 3.34375 -1.75 C 3.34375 -1.703125 3.34375 -1.65625 3.34375 -1.625 Z M 3.34375 -1.625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 1.140625 -0.234375 C 1.453125 -0.03125 1.8125 0.03125 2.171875 0.03125 C 2.75 0.03125 3.6875 -0.15625 3.6875 -1.015625 C 3.6875 -1.484375 3.296875 -1.8125 2.875 -1.953125 C 2.3125 -2.140625 1.109375 -2.078125 1.109375 -2.546875 C 1.109375 -2.90625 1.734375 -2.96875 2.0625 -2.96875 C 2.3125 -2.96875 2.75 -2.96875 2.828125 -2.65625 C 2.875 -2.484375 2.859375 -2.3125 3.15625 -2.3125 C 3.40625 -2.3125 3.453125 -2.484375 3.453125 -2.640625 L 3.453125 -3.203125 C 3.453125 -3.390625 3.359375 -3.5 3.171875 -3.5 C 3.078125 -3.5 2.984375 -3.453125 2.9375 -3.359375 C 2.671875 -3.484375 2.34375 -3.5 2.0625 -3.5 C 1.375 -3.5 0.578125 -3.25 0.578125 -2.546875 C 0.578125 -1.1875 3.15625 -1.921875 3.15625 -1 C 3.15625 -0.515625 2.34375 -0.5 2.171875 -0.5 L 2.15625 -0.5 C 1.765625 -0.5 1.40625 -0.640625 1.25 -1.015625 C 1.15625 -1.1875 1.15625 -1.359375 0.875 -1.359375 C 0.609375 -1.359375 0.578125 -1.171875 0.578125 -1.015625 L 0.578125 -0.265625 C 0.578125 -0.078125 0.671875 0.03125 0.859375 0.03125 C 1.015625 0.03125 1.109375 -0.09375 1.140625 -0.234375 Z M 1.140625 -0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 2.046875 -3.4375 C 1.8125 -3.375 1.578125 -3.21875 1.578125 -2.90625 C 1.578125 -2.609375 1.8125 -2.34375 2.125 -2.34375 C 2.421875 -2.34375 2.65625 -2.609375 2.65625 -2.890625 C 2.65625 -3.171875 2.421875 -3.4375 2.109375 -3.4375 C 2.09375 -3.4375 2.078125 -3.4375 2.046875 -3.4375 Z M 2.046875 -1.078125 C 1.8125 -1.03125 1.578125 -0.875 1.578125 -0.546875 C 1.578125 -0.265625 1.8125 0 2.125 0 C 2.421875 0 2.65625 -0.265625 2.65625 -0.546875 C 2.65625 -0.828125 2.421875 -1.09375 2.109375 -1.09375 C 2.09375 -1.09375 2.078125 -1.078125 2.046875 -1.078125 Z M 2.046875 -1.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 3.4375 -5.53125 C 3.28125 -5.5 3.234375 -5.34375 3.15625 -5.21875 C 2.8125 -4.4375 2.40625 -3.671875 2.046875 -2.90625 C 1.578125 -1.9375 1.125 -0.96875 0.640625 -0.046875 C 0.59375 0.078125 0.46875 0.25 0.46875 0.375 C 0.46875 0.53125 0.578125 0.65625 0.734375 0.65625 L 0.75 0.65625 C 0.9375 0.640625 1 0.46875 1.0625 0.328125 C 1.21875 0 1.375 -0.328125 1.53125 -0.65625 C 1.828125 -1.234375 2.09375 -1.8125 2.375 -2.375 C 2.703125 -3.046875 3.03125 -3.703125 3.34375 -4.359375 C 3.453125 -4.59375 3.546875 -4.84375 3.6875 -5.078125 C 3.71875 -5.125 3.75 -5.203125 3.75 -5.28125 C 3.75 -5.421875 3.640625 -5.53125 3.484375 -5.53125 C 3.46875 -5.53125 3.453125 -5.53125 3.4375 -5.53125 Z M 3.4375 -5.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 2.859375 -4.34375 L 2.859375 -3.140625 C 2.59375 -3.359375 2.265625 -3.46875 1.9375 -3.46875 C 1 -3.46875 0.265625 -2.65625 0.265625 -1.71875 C 0.265625 -0.8125 0.9375 0.03125 1.875 0.03125 C 2.234375 0.03125 2.59375 -0.109375 2.859375 -0.375 L 2.859375 -0.296875 C 2.859375 -0.03125 3.046875 -0.015625 3.21875 -0.015625 L 3.828125 -0.015625 C 4 -0.015625 4.140625 -0.078125 4.140625 -0.265625 C 4.140625 -0.484375 4 -0.53125 3.8125 -0.53125 L 3.46875 -0.53125 L 3.46875 -4.609375 C 3.46875 -4.765625 3.375 -4.890625 3.1875 -4.890625 C 3.140625 -4.890625 3.078125 -4.875 3.03125 -4.875 L 2.53125 -4.875 C 2.359375 -4.875 2.1875 -4.84375 2.1875 -4.609375 C 2.1875 -4.46875 2.28125 -4.34375 2.46875 -4.34375 Z M 0.875 -1.625 C 0.875 -1.65625 0.875 -1.703125 0.875 -1.734375 C 0.875 -2.3125 1.328125 -2.9375 1.96875 -2.9375 C 2.34375 -2.9375 2.78125 -2.65625 2.859375 -2.234375 L 2.859375 -1.84375 C 2.859375 -1.765625 2.875 -1.6875 2.875 -1.609375 C 2.875 -1.0625 2.453125 -0.5 1.890625 -0.5 C 1.265625 -0.5 0.9375 -1.109375 0.875 -1.625 Z M 0.875 -1.625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 1.046875 -1.5 L 3.421875 -1.5 C 3.671875 -1.5 3.75 -1.640625 3.75 -1.8125 C 3.75 -2.65625 3.28125 -3.5 2.1875 -3.5 C 1.140625 -3.5 0.421875 -2.65625 0.421875 -1.734375 C 0.421875 -0.65625 1.375 0.03125 2.3125 0.03125 C 2.8125 0.03125 3.34375 -0.140625 3.625 -0.5625 C 3.6875 -0.640625 3.75 -0.765625 3.75 -0.875 L 3.75 -0.890625 C 3.734375 -1.0625 3.59375 -1.109375 3.421875 -1.109375 C 3.15625 -1.109375 3.171875 -0.953125 3.078125 -0.828125 C 2.921875 -0.59375 2.625 -0.484375 2.34375 -0.484375 C 1.75 -0.484375 1.171875 -0.921875 1.046875 -1.5 Z M 1.0625 -2.03125 C 1.1875 -2.53125 1.609375 -2.96875 2.1875 -2.96875 C 2.71875 -2.96875 3.078125 -2.5625 3.109375 -2.03125 Z M 1.0625 -2.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M 2.046875 -1.078125 C 1.8125 -1.03125 1.578125 -0.875 1.578125 -0.546875 C 1.578125 -0.265625 1.8125 0 2.125 0 C 2.421875 0 2.65625 -0.265625 2.65625 -0.546875 C 2.65625 -0.828125 2.421875 -1.09375 2.109375 -1.09375 C 2.09375 -1.09375 2.078125 -1.078125 2.046875 -1.078125 Z M 2.046875 -1.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 2.125 -1.453125 C 2.15625 -1.125 2.25 -0.828125 2.34375 -0.515625 L 2.40625 -0.296875 C 2.46875 -0.015625 2.640625 0.03125 2.84375 0.03125 C 3.203125 0.03125 3.203125 -0.15625 3.328125 -0.90625 C 3.453125 -1.546875 3.546875 -2.203125 3.671875 -2.84375 C 3.703125 -2.9375 3.8125 -2.90625 3.890625 -2.921875 C 4.03125 -2.9375 4.09375 -3.046875 4.09375 -3.171875 C 4.09375 -3.359375 3.953125 -3.4375 3.765625 -3.4375 C 3.703125 -3.4375 3.640625 -3.4375 3.5625 -3.4375 L 2.765625 -3.4375 C 2.609375 -3.4375 2.46875 -3.359375 2.46875 -3.171875 C 2.46875 -3.015625 2.5625 -2.90625 2.75 -2.90625 L 3.1875 -2.90625 L 2.796875 -0.625 C 2.765625 -1 2.609375 -1.421875 2.515625 -1.75 C 2.453125 -1.953125 2.328125 -2.078125 2.125 -2.078125 C 1.8125 -2.078125 1.75 -1.8125 1.6875 -1.578125 C 1.609375 -1.265625 1.5 -0.9375 1.4375 -0.625 L 1.03125 -2.90625 L 1.46875 -2.90625 C 1.65625 -2.90625 1.765625 -3.015625 1.765625 -3.171875 C 1.765625 -3.359375 1.625 -3.4375 1.453125 -3.4375 L 0.640625 -3.4375 C 0.578125 -3.4375 0.515625 -3.4375 0.453125 -3.4375 C 0.25 -3.4375 0.125 -3.328125 0.125 -3.15625 L 0.125 -3.140625 C 0.15625 -2.96875 0.28125 -2.90625 0.46875 -2.90625 C 0.515625 -2.90625 0.546875 -2.890625 0.546875 -2.8125 C 0.671875 -2.15625 0.765625 -1.5 0.90625 -0.859375 L 1 -0.34375 C 1.046875 -0.0625 1.15625 0.03125 1.390625 0.03125 C 1.734375 0.03125 1.859375 -0.078125 2.0625 -1.109375 C 2.09375 -1.21875 2.125 -1.328125 2.125 -1.453125 Z M 2.125 -1.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 1.90625 -2.90625 L 1.90625 -0.53125 L 0.9375 -0.53125 C 0.71875 -0.53125 0.625 -0.4375 0.625 -0.28125 C 0.625 -0.15625 0.703125 -0.03125 0.859375 -0.015625 L 3.375 -0.015625 C 3.5625 -0.015625 3.671875 -0.109375 3.671875 -0.265625 C 3.671875 -0.4375 3.5625 -0.546875 3.375 -0.546875 C 3.3125 -0.546875 3.25 -0.53125 3.1875 -0.53125 L 2.515625 -0.53125 L 2.515625 -3.15625 C 2.515625 -3.390625 2.34375 -3.4375 2.1875 -3.4375 L 1.03125 -3.4375 C 0.875 -3.4375 0.6875 -3.40625 0.6875 -3.171875 C 0.6875 -3 0.796875 -2.90625 1.015625 -2.90625 Z M 2.03125 -4.875 C 1.828125 -4.859375 1.65625 -4.6875 1.65625 -4.46875 C 1.65625 -4.234375 1.84375 -4.03125 2.078125 -4.03125 C 2.296875 -4.03125 2.515625 -4.203125 2.515625 -4.453125 C 2.515625 -4.671875 2.328125 -4.890625 2.09375 -4.890625 C 2.078125 -4.890625 2.0625 -4.875 2.03125 -4.875 Z M 2.03125 -4.875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 0.859375 -4.34375 L 0.859375 -0.53125 L 0.4375 -0.53125 C 0.25 -0.53125 0.15625 -0.421875 0.15625 -0.265625 C 0.15625 -0.109375 0.265625 -0.015625 0.46875 -0.015625 L 1.734375 -0.015625 C 1.921875 -0.015625 2.0625 -0.078125 2.0625 -0.265625 C 2.0625 -0.4375 1.9375 -0.53125 1.78125 -0.53125 L 1.359375 -0.53125 L 1.359375 -1.09375 L 1.984375 -1.6875 L 2.890625 -0.53125 L 2.765625 -0.53125 C 2.59375 -0.53125 2.46875 -0.453125 2.46875 -0.265625 C 2.46875 -0.078125 2.609375 0 2.78125 0 C 2.84375 0 2.90625 -0.015625 2.953125 -0.015625 L 3.578125 -0.015625 C 3.640625 -0.015625 3.703125 0 3.765625 0 C 3.96875 0 4.09375 -0.09375 4.09375 -0.265625 C 4.09375 -0.5 3.90625 -0.53125 3.78125 -0.53125 L 3.609375 -0.53125 C 3.484375 -0.53125 3.453125 -0.609375 3.40625 -0.671875 C 3.15625 -1 2.890625 -1.328125 2.625 -1.65625 L 2.4375 -1.90625 C 2.40625 -1.9375 2.359375 -1.96875 2.359375 -2.015625 L 2.359375 -2.03125 C 2.359375 -2.0625 2.515625 -2.171875 2.578125 -2.234375 C 2.796875 -2.4375 3.03125 -2.625 3.234375 -2.84375 C 3.28125 -2.875 3.3125 -2.90625 3.375 -2.90625 L 3.4375 -2.90625 C 3.484375 -2.90625 3.546875 -2.90625 3.609375 -2.90625 C 3.78125 -2.90625 3.90625 -2.984375 3.90625 -3.171875 C 3.90625 -3.359375 3.78125 -3.4375 3.609375 -3.4375 C 3.546875 -3.4375 3.5 -3.4375 3.453125 -3.4375 L 2.3125 -3.4375 C 2.140625 -3.4375 2.015625 -3.359375 2.015625 -3.171875 C 2.015625 -2.984375 2.140625 -2.90625 2.328125 -2.90625 L 2.5625 -2.90625 L 1.359375 -1.796875 L 1.359375 -4.390625 C 1.359375 -4.453125 1.359375 -4.5 1.359375 -4.5625 C 1.359375 -4.75 1.265625 -4.890625 1.046875 -4.890625 C 1 -4.890625 0.9375 -4.875 0.890625 -4.875 L 0.390625 -4.875 C 0.25 -4.859375 0.15625 -4.75 0.15625 -4.625 C 0.15625 -4.46875 0.25 -4.34375 0.4375 -4.34375 Z M 0.859375 -4.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-13">
<path style="stroke:none;" d="M 1.390625 -2.953125 C 1.546875 -2.953125 1.703125 -2.96875 1.859375 -2.96875 C 2.25 -2.96875 2.828125 -2.8125 2.828125 -2.25 C 1.9375 -2.25 0.421875 -2.0625 0.421875 -1.078125 C 0.421875 -0.359375 1.109375 0.03125 1.8125 0.03125 C 2.203125 0.03125 2.59375 -0.078125 2.921875 -0.28125 C 3.046875 -0.03125 3.4375 -0.015625 3.734375 -0.015625 L 3.890625 -0.015625 C 4.015625 -0.015625 4.21875 -0.03125 4.21875 -0.25 C 4.21875 -0.5 4.0625 -0.53125 3.921875 -0.53125 L 3.8125 -0.53125 C 3.625 -0.53125 3.4375 -0.53125 3.4375 -0.6875 L 3.4375 -2.234375 C 3.4375 -2.984375 2.84375 -3.390625 2.21875 -3.484375 C 2.078125 -3.5 1.921875 -3.5 1.78125 -3.5 C 1.359375 -3.5 0.625 -3.46875 0.625 -2.890625 C 0.625 -2.671875 0.78125 -2.5 1.015625 -2.5 C 1.234375 -2.5 1.40625 -2.65625 1.40625 -2.875 C 1.40625 -2.890625 1.40625 -2.921875 1.390625 -2.953125 Z M 2.828125 -1.734375 L 2.828125 -1.125 C 2.828125 -0.609375 2.21875 -0.5 1.84375 -0.5 C 1.53125 -0.5 1.03125 -0.640625 1.03125 -1.0625 C 1.03125 -1.484375 1.765625 -1.625 2.0625 -1.671875 C 2.3125 -1.71875 2.578125 -1.734375 2.828125 -1.734375 Z M 2.828125 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-14">
<path style="stroke:none;" d="M 2 -3.5 C 1.078125 -3.390625 0.4375 -2.609375 0.4375 -1.71875 C 0.4375 -0.875 1.09375 0.046875 2.109375 0.046875 C 3.078125 0.046875 3.734375 -0.78125 3.78125 -1.640625 L 3.78125 -1.734375 C 3.78125 -2.65625 3.078125 -3.5 2.09375 -3.5 Z M 1.046875 -1.6875 C 1.046875 -1.71875 1.046875 -1.75 1.046875 -1.78125 C 1.046875 -2.359375 1.484375 -2.96875 2.109375 -2.96875 C 2.671875 -2.96875 3.09375 -2.484375 3.171875 -1.875 L 3.171875 -1.8125 C 3.171875 -1.203125 2.8125 -0.5 2.09375 -0.5 C 1.46875 -0.5 1.109375 -1.140625 1.046875 -1.6875 Z M 1.046875 -1.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-15">
<path style="stroke:none;" d="M 1.796875 -2.859375 L 1.796875 -3.09375 C 1.796875 -3.28125 1.75 -3.4375 1.484375 -3.4375 L 0.5625 -3.4375 C 0.390625 -3.4375 0.234375 -3.375 0.234375 -3.171875 C 0.234375 -3 0.34375 -2.90625 0.546875 -2.90625 L 1.1875 -2.90625 L 1.1875 -0.53125 L 0.53125 -0.53125 C 0.34375 -0.53125 0.234375 -0.421875 0.234375 -0.265625 C 0.234375 -0.125 0.34375 0 0.53125 0 C 0.5625 0 0.609375 -0.015625 0.65625 -0.015625 L 2.75 -0.015625 C 2.90625 -0.015625 2.984375 -0.15625 2.984375 -0.28125 C 2.984375 -0.4375 2.859375 -0.546875 2.671875 -0.546875 C 2.609375 -0.546875 2.546875 -0.53125 2.5 -0.53125 L 1.796875 -0.53125 L 1.796875 -1.4375 C 1.796875 -2.09375 2.1875 -2.953125 3.203125 -2.953125 C 3.203125 -2.734375 3.359375 -2.578125 3.5625 -2.578125 C 3.765625 -2.578125 3.921875 -2.734375 3.921875 -2.9375 C 3.921875 -3.390625 3.4375 -3.484375 3.140625 -3.484375 C 2.609375 -3.484375 2.171875 -3.21875 1.796875 -2.859375 Z M 1.796875 -2.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-16">
<path style="stroke:none;" d="M 0.8125 -0.34375 C 0.46875 -0.171875 0.234375 0.234375 0.234375 0.625 C 0.234375 1.484375 1.359375 1.8125 2.125 1.8125 C 2.84375 1.8125 4 1.515625 4 0.65625 C 4 0.125 3.65625 -0.234375 3.1875 -0.390625 C 2.796875 -0.515625 2.390625 -0.515625 1.984375 -0.515625 L 1.734375 -0.515625 C 1.65625 -0.515625 1.5625 -0.515625 1.484375 -0.53125 L 1.4375 -0.53125 C 1.234375 -0.53125 1.125 -0.75 1.125 -0.9375 L 1.125 -0.96875 C 1.125 -1.015625 1.140625 -1.0625 1.15625 -1.109375 C 1.390625 -0.984375 1.609375 -0.921875 1.875 -0.921875 C 2.609375 -0.921875 3.234375 -1.46875 3.234375 -2.203125 C 3.234375 -2.4375 3.171875 -2.671875 3.03125 -2.875 C 3.15625 -2.921875 3.28125 -2.96875 3.421875 -2.984375 C 3.4375 -2.8125 3.609375 -2.703125 3.765625 -2.703125 C 3.953125 -2.703125 4.109375 -2.859375 4.109375 -3.046875 C 4.109375 -3.40625 3.75 -3.515625 3.484375 -3.515625 C 3.25 -3.515625 2.984375 -3.4375 2.765625 -3.3125 C 2.734375 -3.296875 2.6875 -3.265625 2.65625 -3.265625 C 2.578125 -3.28125 2.5 -3.34375 2.421875 -3.375 C 2.265625 -3.4375 2.125 -3.46875 1.96875 -3.46875 L 1.875 -3.46875 C 1.1875 -3.46875 0.578125 -2.984375 0.515625 -2.25 L 0.515625 -2.203125 C 0.515625 -1.96875 0.578125 -1.75 0.703125 -1.546875 C 0.71875 -1.515625 0.75 -1.484375 0.75 -1.453125 C 0.75 -1.40625 0.71875 -1.375 0.703125 -1.34375 C 0.640625 -1.203125 0.625 -1.078125 0.625 -0.921875 C 0.625 -0.71875 0.6875 -0.515625 0.8125 -0.34375 Z M 0.734375 0.671875 C 0.734375 0.65625 0.734375 0.640625 0.734375 0.625 C 0.734375 0.1875 1.1875 -0.015625 1.5625 -0.015625 L 2.1875 -0.015625 C 2.6875 -0.015625 3.484375 0.03125 3.484375 0.625 C 3.484375 1.109375 2.59375 1.296875 2.140625 1.296875 C 1.703125 1.296875 1.171875 1.21875 0.859375 0.890625 C 0.8125 0.84375 0.75 0.765625 0.734375 0.671875 Z M 1.125 -2.125 C 1.125 -2.15625 1.125 -2.1875 1.125 -2.203125 C 1.125 -2.59375 1.46875 -2.9375 1.859375 -2.953125 L 1.875 -2.953125 C 2.28125 -2.953125 2.640625 -2.59375 2.640625 -2.1875 C 2.640625 -1.796875 2.296875 -1.453125 1.90625 -1.4375 L 1.875 -1.4375 C 1.484375 -1.4375 1.171875 -1.75 1.125 -2.125 Z M 1.125 -2.125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-17">
<path style="stroke:none;" d="M 0.75 -4.34375 L 0.75 -0.53125 L 0.515625 -0.53125 C 0.34375 -0.53125 0.1875 -0.484375 0.1875 -0.28125 C 0.1875 -0.15625 0.265625 -0.03125 0.40625 -0.015625 L 3.734375 -0.015625 C 3.875 -0.015625 4.015625 -0.046875 4.046875 -0.21875 L 4.046875 -1.109375 C 4.046875 -1.296875 3.9375 -1.40625 3.75 -1.40625 C 3.609375 -1.40625 3.421875 -1.359375 3.421875 -1.125 C 3.421875 -1.09375 3.4375 -1.046875 3.4375 -1 L 3.4375 -0.53125 L 1.359375 -0.53125 L 1.359375 -2.265625 L 2.359375 -2.265625 L 2.359375 -2.125 C 2.359375 -1.890625 2.5 -1.8125 2.671875 -1.8125 C 2.828125 -1.8125 2.984375 -1.859375 2.984375 -2.109375 L 2.984375 -2.78125 C 2.984375 -2.84375 2.984375 -2.890625 2.984375 -2.9375 C 2.984375 -3.1875 2.828125 -3.234375 2.671875 -3.234375 C 2.5 -3.234375 2.359375 -3.15625 2.359375 -2.9375 L 2.359375 -2.78125 L 1.359375 -2.78125 L 1.359375 -4.34375 L 3.265625 -4.34375 L 3.265625 -3.890625 C 3.265625 -3.640625 3.421875 -3.609375 3.578125 -3.609375 C 3.765625 -3.609375 3.875 -3.71875 3.875 -3.90625 L 3.875 -4.546875 C 3.875 -4.71875 3.828125 -4.875 3.5625 -4.875 L 0.65625 -4.875 C 0.609375 -4.875 0.5625 -4.890625 0.5 -4.890625 C 0.3125 -4.890625 0.1875 -4.765625 0.1875 -4.609375 C 0.1875 -4.421875 0.34375 -4.34375 0.515625 -4.34375 Z M 0.75 -4.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-18">
<path style="stroke:none;" d="M 0.75 -4.34375 L 0.75 -0.265625 C 0.75 -0.0625 0.921875 -0.015625 1.0625 -0.015625 C 1.328125 -0.015625 1.359375 -0.171875 1.359375 -0.34375 C 1.609375 -0.09375 1.9375 0.03125 2.28125 0.03125 C 3.21875 0.03125 3.953125 -0.796875 3.953125 -1.71875 C 3.953125 -2.5625 3.359375 -3.484375 2.34375 -3.484375 C 1.96875 -3.484375 1.671875 -3.328125 1.359375 -3.125 L 1.359375 -4.546875 C 1.359375 -4.84375 1.21875 -4.875 1.046875 -4.875 L 0.296875 -4.875 C 0.171875 -4.859375 0.078125 -4.75 0.078125 -4.609375 C 0.078125 -4.46875 0.171875 -4.34375 0.34375 -4.34375 Z M 3.34375 -1.625 C 3.28125 -1.046875 2.859375 -0.5 2.25 -0.5 C 1.71875 -0.5 1.359375 -1.078125 1.359375 -1.546875 C 1.359375 -1.65625 1.359375 -1.75 1.359375 -1.828125 C 1.359375 -1.921875 1.359375 -2.015625 1.359375 -2.09375 C 1.359375 -2.578125 1.875 -2.953125 2.3125 -2.953125 C 2.9375 -2.953125 3.34375 -2.3125 3.34375 -1.75 C 3.34375 -1.703125 3.34375 -1.65625 3.34375 -1.625 Z M 3.34375 -1.625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="15.746" y="7.409"/>
<use xlink:href="#glyph0-2" x="22.524553" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="28.336734" y="7.409"/>
<use xlink:href="#glyph0-4" x="32.763117" y="7.409"/>
<use xlink:href="#glyph0-5" x="36.664471" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="41.642782" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="47.454963" y="7.409"/>
<use xlink:href="#glyph0-6" x="51.881346" y="7.409"/>
<use xlink:href="#glyph0-7" x="54.64796" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="65.1595" y="7.409"/>
<use xlink:href="#glyph0-9" x="72.629457" y="7.409"/>
<use xlink:href="#glyph0-10" x="77.609761" y="7.409"/>
<use xlink:href="#glyph0-11" x="83.142989" y="7.409"/>
<use xlink:href="#glyph0-11" x="87.071242" y="7.409"/>
<use xlink:href="#glyph0-12" x="90.999495" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="95.146926" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="100.411164" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="107.325208" y="7.409"/>
<use xlink:href="#glyph0-6" x="111.751591" y="7.409"/>
<use xlink:href="#glyph0-15" x="114.518205" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="122.26313" y="7.409"/>
<use xlink:href="#glyph0-15" x="125.029744" y="7.409"/>
<use xlink:href="#glyph0-11" x="130.562972" y="7.409"/>
<use xlink:href="#glyph0-2" x="134.491226" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="140.303407" y="7.409"/>
<use xlink:href="#glyph0-11" x="144.72979" y="7.409"/>
<use xlink:href="#glyph0-16" x="148.658043" y="7.409"/>
<use xlink:href="#glyph0-15" x="153.638347" y="7.409"/>
<use xlink:href="#glyph0-17" x="159.171575" y="7.409"/>
<use xlink:href="#glyph0-3" x="164.704803" y="7.409"/>
<use xlink:href="#glyph0-4" x="169.131186" y="7.409"/>
<use xlink:href="#glyph0-3" x="173.03254" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="179.67062" y="7.409"/>
<use xlink:href="#glyph0-2" x="184.650924" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="190.463105" y="7.409"/>
<use xlink:href="#glyph0-4" x="194.889488" y="7.409"/>
<use xlink:href="#glyph0-17" x="198.790842" y="7.409"/>
<use xlink:href="#glyph0-3" x="204.32407" y="7.409"/>
<use xlink:href="#glyph0-10" x="208.750454" y="7.409"/>
<use xlink:href="#glyph0-18" x="214.283682" y="7.409"/>
<use xlink:href="#glyph0-11" x="218.15714" y="7.409"/>
<use xlink:href="#glyph0-12" x="222.085394" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="226.242787" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="233.987712" y="7.409"/>
<use xlink:href="#glyph0-9" x="239.52094" y="7.409"/>
<use xlink:href="#glyph0-10" x="244.501244" y="7.409"/>
<use xlink:href="#glyph0-2" x="250.034472" y="7.409"/>
<use xlink:href="#glyph0-20" x="255.5677" y="7.409"/>
<use xlink:href="#glyph0-4" x="260.548003" y="7.409"/>
<use xlink:href="#glyph0-5" x="264.449358" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="269.427669" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="275.23985" y="7.409"/>
<use xlink:href="#glyph0-6" x="279.666233" y="7.409"/>
<use xlink:href="#glyph0-7" x="282.432847" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-21" x="292.944386" y="7.409"/>
<use xlink:href="#glyph0-6" x="303.180958" y="7.409"/>
<use xlink:href="#glyph0-22" x="305.947572" y="7.409"/>
<use xlink:href="#glyph0-17" x="308.714186" y="7.409"/>
<use xlink:href="#glyph0-11" x="314.247414" y="7.409"/>
<use xlink:href="#glyph0-12" x="318.175667" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="322.323097" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="327.587335" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="334.50138" y="7.409"/>
<use xlink:href="#glyph0-6" x="338.927763" y="7.409"/>
<use xlink:href="#glyph0-15" x="341.694377" y="7.409"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-23" x="0.802" y="19.364"/>
<use xlink:href="#glyph0-3" x="8.548918" y="19.364"/>
<use xlink:href="#glyph0-6" x="12.975301" y="19.364"/>
<use xlink:href="#glyph0-22" x="15.741915" y="19.364"/>
<use xlink:href="#glyph0-3" x="18.508529" y="19.364"/>
<use xlink:href="#glyph0-4" x="22.934912" y="19.364"/>
<use xlink:href="#glyph0-5" x="26.836266" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="32.920426" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="38.732607" y="19.364"/>
<use xlink:href="#glyph0-24" x="43.15899" y="19.364"/>
<use xlink:href="#glyph0-3" x="47.585373" y="19.364"/>
<use xlink:href="#glyph0-6" x="52.011757" y="19.364"/>
<use xlink:href="#glyph0-12" x="54.778371" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="58.925801" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="64.468992" y="19.364"/>
<use xlink:href="#glyph0-3" x="70.00222" y="19.364"/>
<use xlink:href="#glyph0-18" x="74.428603" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="81.619607" y="19.364"/>
<use xlink:href="#glyph0-9" x="87.152835" y="19.364"/>
<use xlink:href="#glyph0-11" x="92.133139" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="99.378938" y="19.364"/>
<use xlink:href="#glyph0-20" x="107.67878" y="19.364"/>
<use xlink:href="#glyph0-15" x="112.659084" y="19.364"/>
<use xlink:href="#glyph0-15" x="118.192312" y="19.364"/>
<use xlink:href="#glyph0-22" x="123.72554" y="19.364"/>
<use xlink:href="#glyph0-6" x="126.492154" y="19.364"/>
<use xlink:href="#glyph0-12" x="129.258768" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="133.406199" y="19.364"/>
<use xlink:href="#glyph0-3" x="138.939427" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="146.693318" y="19.364"/>
<use xlink:href="#glyph0-3" x="154.508978" y="19.364"/>
<use xlink:href="#glyph0-11" x="158.935361" y="19.364"/>
<use xlink:href="#glyph0-12" x="162.863614" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="167.011045" y="19.364"/>
<use xlink:href="#glyph0-22" x="172.544273" y="19.364"/>
<use xlink:href="#glyph0-3" x="175.310887" y="19.364"/>
<use xlink:href="#glyph0-12" x="179.73727" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="183.8847" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="189.148938" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="196.339943" y="19.364"/>
<use xlink:href="#glyph0-3" x="201.873171" y="19.364"/>
<use xlink:href="#glyph0-11" x="206.299554" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="213.545353" y="19.364"/>
<use xlink:href="#glyph0-12" x="219.078581" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="223.235974" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="228.490249" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="235.404294" y="19.364"/>
<use xlink:href="#glyph0-6" x="239.830677" y="19.364"/>
<use xlink:href="#glyph0-15" x="242.597291" y="19.364"/>
<use xlink:href="#glyph0-11" x="248.130519" y="19.364"/>
<use xlink:href="#glyph0-26" x="252.058772" y="19.364"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="254.829" y="15.749"/>
</g>
<path style="fill:none;stroke-width:0.398;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 -0.00128125 L 137.483156 -0.00128125 " transform="matrix(1,0,0,-1,0.802,33.237)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="11.891" y="39.861"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="16.041" y="42.674"/>
<use xlink:href="#glyph3-2" x="20.27392" y="42.674"/>
<use xlink:href="#glyph3-2" x="24.50684" y="42.674"/>
<use xlink:href="#glyph3-3" x="28.73976" y="42.674"/>
<use xlink:href="#glyph3-4" x="32.97268" y="42.674"/>
<use xlink:href="#glyph3-5" x="37.205601" y="42.674"/>
<use xlink:href="#glyph3-6" x="41.438521" y="42.674"/>
<use xlink:href="#glyph3-6" x="45.671441" y="42.674"/>
<use xlink:href="#glyph3-7" x="49.904361" y="42.674"/>
<use xlink:href="#glyph3-8" x="54.137281" y="42.674"/>
<use xlink:href="#glyph3-9" x="58.370201" y="42.674"/>
<use xlink:href="#glyph3-10" x="62.603121" y="42.674"/>
<use xlink:href="#glyph3-11" x="66.836041" y="42.674"/>
<use xlink:href="#glyph3-12" x="71.068961" y="42.674"/>
<use xlink:href="#glyph3-11" x="75.301882" y="42.674"/>
<use xlink:href="#glyph3-3" x="79.534802" y="42.674"/>
<use xlink:href="#glyph3-8" x="83.767722" y="42.674"/>
<use xlink:href="#glyph3-7" x="88.000642" y="42.674"/>
<use xlink:href="#glyph3-11" x="92.233562" y="42.674"/>
<use xlink:href="#glyph3-13" x="96.466482" y="42.674"/>
<use xlink:href="#glyph3-9" x="100.699402" y="42.674"/>
<use xlink:href="#glyph3-14" x="104.932322" y="42.674"/>
<use xlink:href="#glyph3-15" x="109.165242" y="42.674"/>
<use xlink:href="#glyph3-16" x="113.398163" y="42.674"/>
<use xlink:href="#glyph3-6" x="117.631083" y="42.674"/>
<use xlink:href="#glyph3-10" x="121.864003" y="42.674"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-11" x="126.104893" y="42.674"/>
<use xlink:href="#glyph3-12" x="130.337813" y="42.674"/>
<use xlink:href="#glyph3-11" x="134.570733" y="42.674"/>
<use xlink:href="#glyph3-6" x="138.803653" y="42.674"/>
<use xlink:href="#glyph3-17" x="143.036573" y="42.674"/>
<use xlink:href="#glyph3-18" x="147.269494" y="42.674"/>
<use xlink:href="#glyph3-8" x="151.502414" y="42.674"/>
<use xlink:href="#glyph3-15" x="155.735334" y="42.674"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 61 KiB

View File

@ -0,0 +1,394 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" version="1.1">
<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 0.328125 -6.78125 L 0.328125 -6.484375 C 0.453125 -6.484375 0.59375 -6.484375 0.703125 -6.484375 C 1.0625 -6.484375 1.359375 -6.4375 1.359375 -6.046875 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.6875 -0.3125 C 0.5625 -0.3125 0.4375 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 6.078125 -0.015625 L 6.484375 -2.578125 L 6.234375 -2.578125 C 6.09375 -1.671875 5.96875 -0.671875 4.890625 -0.40625 C 4.578125 -0.328125 4.25 -0.3125 3.9375 -0.3125 L 2.65625 -0.3125 C 2.46875 -0.3125 2.25 -0.34375 2.25 -0.640625 L 2.25 -3.375 L 3.15625 -3.375 C 3.515625 -3.375 3.890625 -3.34375 4.09375 -3.046875 C 4.203125 -2.828125 4.21875 -2.5625 4.21875 -2.3125 L 4.21875 -2.21875 L 4.46875 -2.21875 L 4.46875 -4.859375 L 4.21875 -4.859375 L 4.21875 -4.75 C 4.21875 -4.21875 4.09375 -3.78125 3.515625 -3.703125 C 3.3125 -3.6875 3.125 -3.6875 2.9375 -3.6875 L 2.25 -3.6875 L 2.25 -6.125 C 2.25 -6.46875 2.453125 -6.484375 2.65625 -6.484375 L 3.859375 -6.484375 C 4.453125 -6.484375 5.171875 -6.484375 5.5625 -5.953125 C 5.859375 -5.546875 5.90625 -5.03125 5.96875 -4.546875 L 6.21875 -4.546875 L 5.9375 -6.78125 Z M 0.328125 -6.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0.265625 -6.8125 L 0.265625 -6.515625 L 0.4375 -6.515625 C 0.75 -6.515625 1.046875 -6.484375 1.046875 -6.015625 L 1.046875 -0.015625 L 1.28125 -0.03125 L 1.421875 -0.203125 L 1.65625 -0.625 L 1.671875 -0.625 C 1.90625 -0.140625 2.5 0.09375 3 0.09375 C 4.234375 0.09375 5.1875 -0.984375 5.1875 -2.15625 C 5.1875 -3.3125 4.3125 -4.40625 3.046875 -4.40625 C 2.515625 -4.40625 2.0625 -4.15625 1.71875 -3.765625 L 1.71875 -6.921875 Z M 4.34375 -1.90625 C 4.3125 -1.4375 4.25 -1.015625 3.953125 -0.640625 C 3.703125 -0.328125 3.328125 -0.125 2.9375 -0.125 C 2.5 -0.125 2.109375 -0.375 1.890625 -0.734375 C 1.796875 -0.84375 1.75 -0.921875 1.75 -1.078125 L 1.75 -2.734375 C 1.75 -2.875 1.734375 -3 1.734375 -3.125 C 1.734375 -3.734375 2.46875 -4.1875 3.015625 -4.1875 C 4.09375 -4.1875 4.359375 -2.9375 4.359375 -2.140625 C 4.359375 -2.0625 4.359375 -2 4.34375 -1.90625 Z M 4.34375 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 1.109375 -2.3125 L 3.984375 -2.3125 C 4.09375 -2.3125 4.140625 -2.375 4.140625 -2.5 C 4.140625 -3.546875 3.5 -4.46875 2.375 -4.46875 C 1.15625 -4.46875 0.28125 -3.375 0.28125 -2.1875 C 0.28125 -1.28125 0.78125 -0.453125 1.671875 -0.0625 C 1.890625 0.046875 2.15625 0.09375 2.40625 0.09375 L 2.4375 0.09375 C 3.203125 0.09375 3.84375 -0.328125 4.109375 -1.09375 C 4.125 -1.125 4.125 -1.171875 4.125 -1.203125 C 4.125 -1.265625 4.09375 -1.3125 4.015625 -1.3125 C 3.875 -1.3125 3.8125 -0.984375 3.75 -0.875 C 3.5 -0.4375 3.015625 -0.15625 2.5 -0.15625 C 2.140625 -0.15625 1.8125 -0.359375 1.546875 -0.625 C 1.140625 -1.09375 1.109375 -1.734375 1.109375 -2.3125 Z M 1.125 -2.515625 C 1.125 -3.296875 1.53125 -4.25 2.359375 -4.25 L 2.40625 -4.25 C 3.375 -4.15625 3.375 -3.125 3.46875 -2.515625 Z M 1.125 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.265625 -4.296875 L 0.265625 -3.984375 L 0.421875 -3.984375 C 0.75 -3.984375 1.046875 -3.953125 1.046875 -3.484375 L 1.046875 -0.734375 C 1.046875 -0.328125 0.765625 -0.3125 0.328125 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.6875 -0.015625 L 2.6875 -0.3125 C 2.5625 -0.3125 2.421875 -0.3125 2.296875 -0.3125 C 1.984375 -0.3125 1.71875 -0.359375 1.71875 -0.734375 L 1.71875 -2.046875 C 1.71875 -2.90625 1.90625 -4.1875 2.890625 -4.1875 C 2.9375 -4.1875 2.953125 -4.1875 3 -4.171875 C 2.84375 -4.109375 2.765625 -3.953125 2.765625 -3.78125 C 2.765625 -3.5625 2.921875 -3.40625 3.15625 -3.359375 C 3.4375 -3.359375 3.625 -3.53125 3.625 -3.78125 C 3.625 -4.1875 3.25 -4.40625 2.890625 -4.40625 C 2.296875 -4.40625 1.78125 -3.875 1.671875 -3.34375 L 1.671875 -4.40625 Z M 0.265625 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.78125 -0.1875 C 1.796875 -0.140625 1.8125 -0.078125 1.8125 -0.015625 C 1.8125 0.65625 1.5 1.234375 1.0625 1.71875 C 1.03125 1.75 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.859375 1.0625 1.90625 1.109375 1.90625 C 1.25 1.90625 1.53125 1.53125 1.65625 1.3125 C 1.890625 0.90625 2.03125 0.4375 2.03125 -0.03125 C 2.03125 -0.484375 1.890625 -1.0625 1.375 -1.0625 C 1.078125 -1.0625 0.859375 -0.84375 0.859375 -0.53125 C 0.859375 -0.203125 1.109375 -0.015625 1.390625 -0.015625 C 1.53125 -0.015625 1.6875 -0.0625 1.78125 -0.1875 Z M 1.78125 -0.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 0.375 -4.296875 L 0.375 -3.984375 L 0.5625 -3.984375 C 0.84375 -3.984375 1.109375 -3.953125 1.109375 -3.484375 L 1.109375 -0.734375 C 1.109375 -0.375 0.921875 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.265625 -0.3125 C 2.015625 -0.3125 1.78125 -0.34375 1.78125 -0.671875 L 1.78125 -4.40625 Z M 1.203125 -6.671875 C 0.953125 -6.640625 0.75 -6.421875 0.75 -6.15625 C 0.75 -5.859375 1 -5.625 1.28125 -5.625 C 1.5625 -5.625 1.8125 -5.84375 1.8125 -6.15625 C 1.8125 -6.4375 1.5625 -6.671875 1.28125 -6.671875 C 1.25 -6.671875 1.234375 -6.671875 1.203125 -6.671875 Z M 1.203125 -6.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.28125 2.1875 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.859375 -3.53125 3.859375 -3.078125 L 3.859375 -0.703125 C 3.859375 -0.34375 3.5625 -0.3125 3.234375 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.796875 -0.3125 4.5625 -0.359375 4.5625 -0.734375 L 4.5625 -2.546875 C 4.5625 -3.28125 4.953125 -4.1875 5.90625 -4.1875 C 6.546875 -4.1875 6.625 -3.53125 6.625 -3.078125 L 6.625 -0.703125 C 6.625 -0.34375 6.3125 -0.3125 5.984375 -0.3125 L 5.84375 -0.3125 L 5.84375 -0.015625 L 8.09375 -0.015625 L 8.09375 -0.3125 L 7.890625 -0.3125 C 7.59375 -0.3125 7.3125 -0.34375 7.3125 -0.703125 L 7.3125 -2.953125 C 7.3125 -3.3125 7.296875 -3.65625 7.0625 -3.984375 C 6.796875 -4.3125 6.375 -4.40625 5.96875 -4.40625 C 5.328125 -4.40625 4.796875 -4.03125 4.53125 -3.453125 C 4.34375 -4.15625 3.890625 -4.40625 3.203125 -4.40625 C 2.5625 -4.40625 1.953125 -4 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 C 0.453125 -6.515625 0.59375 -6.515625 0.703125 -6.515625 C 1.0625 -6.515625 1.359375 -6.46875 1.359375 -6.078125 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.6875 -0.3125 C 0.5625 -0.3125 0.4375 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 3.265625 -0.015625 L 3.265625 -0.3125 L 2.9375 -0.3125 C 2.515625 -0.3125 2.25 -0.34375 2.25 -0.75 L 2.25 -3.40625 L 5.21875 -3.40625 L 5.21875 -0.75 C 5.21875 -0.359375 4.890625 -0.3125 4.53125 -0.3125 L 4.203125 -0.3125 L 4.203125 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 C 7.015625 -0.3125 6.890625 -0.3125 6.765625 -0.3125 C 6.421875 -0.3125 6.109375 -0.359375 6.109375 -0.75 L 6.109375 -6.078125 C 6.109375 -6.453125 6.4375 -6.515625 6.765625 -6.515625 C 6.890625 -6.515625 7.03125 -6.515625 7.140625 -6.515625 L 7.140625 -6.8125 L 4.203125 -6.8125 L 4.203125 -6.515625 L 4.53125 -6.515625 C 4.953125 -6.515625 5.21875 -6.484375 5.21875 -6.078125 L 5.21875 -3.703125 L 2.25 -3.703125 L 2.25 -6.078125 C 2.25 -6.46875 2.578125 -6.515625 2.9375 -6.515625 L 3.265625 -6.515625 L 3.265625 -6.8125 Z M 0.328125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 1.109375 -3.796875 C 1.359375 -4.109375 1.796875 -4.25 2.171875 -4.25 C 2.90625 -4.25 3.234375 -3.578125 3.234375 -2.875 L 3.234375 -2.609375 C 2.09375 -2.609375 0.40625 -2.25 0.40625 -0.953125 L 0.40625 -0.875 C 0.484375 -0.09375 1.453125 0.09375 2.03125 0.09375 C 2.53125 0.09375 3.1875 -0.234375 3.3125 -0.75 C 3.375 -0.3125 3.65625 0.046875 4.09375 0.046875 C 4.5 0.046875 4.859375 -0.28125 4.921875 -0.734375 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.953125 C 4.671875 -0.671875 4.609375 -0.265625 4.3125 -0.265625 C 3.984375 -0.265625 3.9375 -0.65625 3.9375 -0.921875 L 3.9375 -2.59375 C 3.9375 -2.71875 3.953125 -2.84375 3.953125 -2.96875 C 3.953125 -3.9375 3.046875 -4.46875 2.21875 -4.46875 C 1.578125 -4.46875 0.703125 -4.15625 0.703125 -3.359375 C 0.703125 -3.078125 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.609375 -3.09375 1.609375 -3.34375 C 1.609375 -3.625 1.390625 -3.796875 1.109375 -3.796875 Z M 3.234375 -2.40625 L 3.234375 -1.390625 C 3.234375 -0.703125 2.765625 -0.15625 2.109375 -0.125 L 2.078125 -0.125 C 1.609375 -0.125 1.1875 -0.484375 1.1875 -0.96875 L 1.1875 -1.015625 C 1.25 -2.03125 2.375 -2.375 3.234375 -2.40625 Z M 3.234375 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.453125 -3.984375 C 0.734375 -3.984375 1.03125 -3.96875 1.09375 -3.671875 C 1.09375 -3.5625 1.09375 -3.453125 1.09375 -3.34375 L 1.09375 -1.359375 C 1.09375 -1.03125 1.109375 -0.734375 1.28125 -0.4375 C 1.5625 -0.015625 2.125 0.109375 2.59375 0.109375 C 3.046875 0.109375 3.453125 -0.09375 3.703125 -0.453125 C 3.765625 -0.5625 3.84375 -0.65625 3.875 -0.78125 L 3.875 0.09375 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.171875 -0.3125 C 4.84375 -0.3125 4.546875 -0.34375 4.546875 -0.796875 L 4.546875 -4.40625 L 3.078125 -4.296875 L 3.078125 -3.984375 L 3.21875 -3.984375 C 3.546875 -3.984375 3.84375 -3.953125 3.84375 -3.484375 L 3.84375 -1.6875 C 3.84375 -0.953125 3.46875 -0.125 2.640625 -0.125 C 2.078125 -0.125 1.796875 -0.265625 1.796875 -1.328125 L 1.796875 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 1.75 -4.46875 C 1.390625 -4.421875 1 -4.359375 0.703125 -4.109375 C 0.46875 -3.890625 0.328125 -3.5625 0.328125 -3.234375 C 0.328125 -1.53125 3.09375 -2.5 3.09375 -1 C 3.09375 -0.40625 2.546875 -0.125 2 -0.125 C 1.25 -0.125 0.734375 -0.65625 0.59375 -1.515625 C 0.578125 -1.609375 0.5625 -1.6875 0.453125 -1.6875 C 0.375 -1.6875 0.328125 -1.640625 0.328125 -1.5625 L 0.328125 0.015625 C 0.34375 0.0625 0.375 0.09375 0.421875 0.09375 L 0.4375 0.09375 C 0.59375 0.09375 0.75 -0.265625 0.875 -0.296875 L 0.890625 -0.296875 C 0.96875 -0.296875 1.234375 -0.046875 1.453125 0.015625 C 1.609375 0.078125 1.796875 0.09375 1.96875 0.09375 C 2.796875 0.09375 3.59375 -0.34375 3.59375 -1.25 C 3.59375 -1.90625 3.109375 -2.453125 2.453125 -2.625 C 1.828125 -2.796875 0.8125 -2.796875 0.8125 -3.515625 C 0.8125 -4.125 1.484375 -4.28125 1.921875 -4.28125 C 2.40625 -4.28125 3.09375 -4 3.09375 -3.15625 C 3.09375 -3.0625 3.09375 -2.984375 3.203125 -2.984375 C 3.3125 -2.984375 3.34375 -3.0625 3.34375 -3.15625 C 3.34375 -3.203125 3.34375 -3.265625 3.34375 -3.296875 L 3.34375 -4.328125 C 3.34375 -4.390625 3.3125 -4.46875 3.234375 -4.46875 C 3.078125 -4.46875 2.96875 -4.21875 2.859375 -4.21875 L 2.84375 -4.21875 C 2.765625 -4.21875 2.609375 -4.34375 2.5 -4.390625 C 2.3125 -4.453125 2.109375 -4.46875 1.921875 -4.46875 C 1.859375 -4.46875 1.8125 -4.46875 1.75 -4.46875 Z M 1.75 -4.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 3.578125 -3.859375 C 3.3125 -3.84375 3.109375 -3.671875 3.109375 -3.40625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.875 -2.9375 4.03125 -3.15625 4.03125 -3.4375 L 4.03125 -3.5 C 3.921875 -4.234375 3.078125 -4.46875 2.5 -4.46875 C 1.28125 -4.46875 0.328125 -3.40625 0.328125 -2.15625 C 0.328125 -1.03125 1.203125 0.09375 2.5 0.09375 C 3.15625 0.09375 3.796875 -0.265625 4.0625 -0.953125 C 4.09375 -1.015625 4.140625 -1.109375 4.140625 -1.171875 C 4.140625 -1.25 4.09375 -1.296875 4.015625 -1.296875 C 3.875 -1.296875 3.78125 -0.921875 3.703125 -0.78125 C 3.46875 -0.40625 3.0625 -0.15625 2.609375 -0.15625 C 1.546875 -0.15625 1.21875 -1.21875 1.171875 -2 L 1.171875 -2.125 C 1.171875 -2.921875 1.359375 -4.109375 2.453125 -4.21875 L 2.53125 -4.21875 C 2.90625 -4.21875 3.296875 -4.109375 3.578125 -3.859375 Z M 3.578125 -3.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 0.3125 -6.8125 L 0.3125 -6.515625 L 0.46875 -6.515625 C 0.84375 -6.515625 1.09375 -6.46875 1.09375 -5.984375 L 1.09375 -0.953125 C 1.09375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.53125 4.390625 -3.84375 C 4.140625 -4.28125 3.65625 -4.40625 3.1875 -4.40625 C 2.609375 -4.40625 1.96875 -4.015625 1.78125 -3.453125 L 1.765625 -6.921875 Z M 0.3125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 0.171875 -4.296875 L 0.171875 -3.984375 L 0.328125 -3.984375 C 0.84375 -3.984375 0.875 -3.765625 1.109375 -3.0625 C 1.359375 -2.375 1.625 -1.6875 1.859375 -1 L 2.15625 -0.15625 C 2.203125 -0.046875 2.234375 0.09375 2.375 0.09375 L 2.390625 0.09375 C 2.609375 0.09375 2.75 -0.5625 2.875 -0.890625 C 3.0625 -1.421875 3.25 -1.953125 3.453125 -2.484375 C 3.5 -2.625 3.5625 -2.765625 3.59375 -2.90625 C 3.625 -2.765625 3.6875 -2.625 3.734375 -2.484375 L 4.03125 -1.671875 C 4.203125 -1.15625 4.40625 -0.640625 4.578125 -0.125 C 4.625 -0.015625 4.671875 0.09375 4.8125 0.09375 C 5.03125 0.09375 5.1875 -0.609375 5.3125 -0.96875 L 5.875 -2.546875 C 6.109375 -3.1875 6.25 -3.984375 7.015625 -3.984375 L 7.015625 -4.296875 L 5.359375 -4.296875 L 5.359375 -3.984375 C 5.625 -3.984375 5.90625 -3.84375 5.9375 -3.5625 C 5.9375 -3.28125 5.765625 -2.953125 5.671875 -2.703125 C 5.515625 -2.265625 5.359375 -1.84375 5.21875 -1.421875 C 5.140625 -1.203125 5.03125 -0.984375 4.984375 -0.765625 L 4.96875 -0.765625 C 4.921875 -1 4.796875 -1.3125 4.6875 -1.5625 C 4.46875 -2.203125 4.234375 -2.84375 4 -3.5 C 3.984375 -3.5625 3.953125 -3.65625 3.953125 -3.734375 L 3.953125 -3.765625 C 4 -3.984375 4.328125 -3.984375 4.53125 -3.984375 L 4.53125 -4.296875 L 2.59375 -4.296875 L 2.59375 -3.984375 L 2.765625 -3.984375 C 3.15625 -3.984375 3.25 -3.84375 3.375 -3.5 C 3.40625 -3.421875 3.453125 -3.34375 3.453125 -3.265625 C 3.4375 -3.171875 3.390625 -3.078125 3.359375 -2.984375 L 2.796875 -1.40625 C 2.734375 -1.234375 2.6875 -1.0625 2.609375 -0.90625 C 2.5 -1.171875 2.40625 -1.453125 2.3125 -1.71875 C 2.15625 -2.15625 2 -2.578125 1.859375 -3.015625 L 1.671875 -3.515625 C 1.65625 -3.578125 1.609375 -3.65625 1.609375 -3.71875 C 1.609375 -3.984375 1.984375 -3.984375 2.203125 -3.984375 L 2.203125 -4.296875 Z M 0.171875 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.546875 4.375 -3.84375 C 4.140625 -4.28125 3.640625 -4.40625 3.1875 -4.40625 C 2.578125 -4.40625 1.9375 -3.984375 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 2.34375 -4.46875 C 1.09375 -4.34375 0.28125 -3.28125 0.28125 -2.125 C 0.28125 -1 1.171875 0.09375 2.5 0.09375 C 3.6875 0.09375 4.6875 -0.875 4.6875 -2.140625 C 4.6875 -3.3125 3.796875 -4.46875 2.46875 -4.46875 C 2.4375 -4.46875 2.375 -4.46875 2.34375 -4.46875 Z M 1.109375 -1.890625 L 1.109375 -2.328125 C 1.109375 -3.09375 1.359375 -4.25 2.484375 -4.25 C 3.296875 -4.25 3.75 -3.5625 3.84375 -2.8125 C 3.859375 -2.59375 3.859375 -2.375 3.859375 -2.15625 C 3.859375 -1.515625 3.78125 -0.703125 3.15625 -0.34375 C 2.953125 -0.203125 2.734375 -0.15625 2.5 -0.15625 C 1.78125 -0.15625 1.265625 -0.71875 1.15625 -1.5 C 1.140625 -1.625 1.140625 -1.765625 1.109375 -1.890625 Z M 1.109375 -1.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 3.03125 -6.8125 L 3.03125 -6.515625 L 3.1875 -6.515625 C 3.53125 -6.515625 3.8125 -6.46875 3.8125 -5.890625 L 3.796875 -3.796875 C 3.5625 -4.203125 2.984375 -4.40625 2.53125 -4.40625 C 1.3125 -4.40625 0.328125 -3.34375 0.328125 -2.140625 C 0.328125 -1.078125 1.140625 0.09375 2.46875 0.09375 C 2.984375 0.09375 3.453125 -0.15625 3.78125 -0.546875 L 3.78125 0.09375 L 5.25 -0.015625 L 5.25 -0.3125 L 5.078125 -0.3125 C 4.78125 -0.3125 4.46875 -0.34375 4.46875 -0.8125 L 4.46875 -6.921875 Z M 1.171875 -1.90625 L 1.171875 -2.046875 C 1.171875 -2.796875 1.25 -3.53125 1.9375 -4 C 2.140625 -4.109375 2.375 -4.1875 2.609375 -4.1875 C 3.09375 -4.1875 3.78125 -3.78125 3.78125 -3.15625 C 3.78125 -3.03125 3.78125 -2.90625 3.78125 -2.765625 L 3.78125 -1.109375 C 3.78125 -0.984375 3.734375 -0.890625 3.65625 -0.796875 C 3.40625 -0.40625 2.96875 -0.125 2.5 -0.125 C 1.78125 -0.125 1.3125 -0.78125 1.203125 -1.46875 C 1.1875 -1.609375 1.1875 -1.765625 1.171875 -1.90625 Z M 1.171875 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 1.484375 -6.140625 C 1.484375 -5.453125 1.203125 -4.203125 0.171875 -4.203125 L 0.171875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.421875 C 1.03125 -1.09375 1.0625 -0.75 1.21875 -0.46875 C 1.4375 -0.0625 1.90625 0.09375 2.34375 0.09375 C 3.15625 0.09375 3.3125 -0.8125 3.3125 -1.453125 L 3.3125 -1.8125 L 3.078125 -1.8125 C 3.078125 -1.671875 3.078125 -1.515625 3.078125 -1.359375 C 3.078125 -0.921875 2.984375 -0.15625 2.390625 -0.15625 C 1.828125 -0.15625 1.734375 -0.84375 1.734375 -1.28125 L 1.734375 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.734375 -4.296875 L 1.734375 -6.140625 Z M 1.484375 -6.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 1.15625 -0.484375 C 1.78125 0 2.265625 0.203125 3.046875 0.203125 C 4.234375 0.203125 4.96875 -0.859375 4.96875 -1.875 C 4.96875 -2.703125 4.5 -3.46875 3.703125 -3.796875 C 3.09375 -4.046875 2.34375 -4.03125 1.8125 -4.34375 C 1.421875 -4.59375 1.1875 -5.03125 1.1875 -5.46875 C 1.1875 -6.25 1.859375 -6.765625 2.5625 -6.765625 C 3.546875 -6.765625 4.234375 -5.96875 4.390625 -4.96875 C 4.421875 -4.828125 4.390625 -4.5625 4.578125 -4.5625 C 4.6875 -4.5625 4.6875 -4.640625 4.6875 -4.734375 L 4.6875 -6.890625 C 4.6875 -6.96875 4.671875 -7.03125 4.59375 -7.03125 C 4.453125 -7.03125 4.34375 -6.765625 4.25 -6.625 C 4.203125 -6.546875 4.125 -6.4375 4.09375 -6.34375 C 3.671875 -6.75 3.203125 -7.03125 2.546875 -7.03125 C 1.5625 -7.03125 0.546875 -6.359375 0.546875 -5.09375 C 0.546875 -4.0625 1.3125 -3.375 2.28125 -3.171875 C 2.5 -3.125 2.6875 -3.0625 2.90625 -3.015625 C 3.453125 -2.875 4.015625 -2.734375 4.25 -2.03125 C 4.3125 -1.875 4.34375 -1.71875 4.34375 -1.5625 C 4.34375 -0.8125 3.828125 -0.09375 2.984375 -0.09375 C 2 -0.09375 1.03125 -0.625 0.828125 -1.78125 C 0.8125 -1.859375 0.8125 -1.96875 0.796875 -2.046875 L 0.796875 -2.125 C 0.796875 -2.21875 0.75 -2.265625 0.671875 -2.265625 C 0.5625 -2.265625 0.546875 -2.1875 0.546875 -2.125 L 0.546875 0.0625 C 0.546875 0.140625 0.5625 0.203125 0.640625 0.203125 C 0.796875 0.203125 0.90625 -0.0625 0.984375 -0.203125 C 1.046875 -0.296875 1.109375 -0.390625 1.15625 -0.484375 Z M 1.15625 -0.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 1.109375 -3.796875 C 1.359375 -4.109375 1.796875 -4.25 2.171875 -4.25 C 2.90625 -4.25 3.234375 -3.578125 3.234375 -2.875 L 3.234375 -2.609375 C 2.09375 -2.609375 0.40625 -2.25 0.40625 -0.953125 L 0.40625 -0.875 C 0.484375 -0.09375 1.453125 0.09375 2.03125 0.09375 C 2.53125 0.09375 3.1875 -0.234375 3.3125 -0.75 C 3.375 -0.3125 3.65625 0.046875 4.09375 0.046875 C 4.5 0.046875 4.859375 -0.28125 4.921875 -0.734375 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.953125 C 4.671875 -0.671875 4.609375 -0.265625 4.3125 -0.265625 C 3.984375 -0.265625 3.9375 -0.65625 3.9375 -0.921875 L 3.9375 -2.59375 C 3.9375 -2.71875 3.953125 -2.84375 3.953125 -2.96875 C 3.953125 -3.9375 3.046875 -4.46875 2.21875 -4.46875 C 1.578125 -4.46875 0.703125 -4.15625 0.703125 -3.359375 C 0.703125 -3.078125 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.609375 -3.09375 1.609375 -3.34375 C 1.609375 -3.625 1.390625 -3.796875 1.109375 -3.796875 Z M 3.234375 -2.40625 L 3.234375 -1.390625 C 3.234375 -0.703125 2.765625 -0.15625 2.109375 -0.125 L 2.078125 -0.125 C 1.609375 -0.125 1.1875 -0.484375 1.1875 -0.96875 L 1.1875 -1.015625 C 1.25 -2.03125 2.375 -2.375 3.234375 -2.40625 Z M 1.453125 -6.5625 C 1.203125 -6.546875 0.984375 -6.3125 0.984375 -6.046875 C 0.984375 -5.765625 1.234375 -5.515625 1.515625 -5.515625 C 1.796875 -5.515625 2.046875 -5.75 2.046875 -6.046875 C 2.046875 -6.3125 1.859375 -6.578125 1.53125 -6.578125 C 1.5 -6.578125 1.46875 -6.5625 1.453125 -6.5625 Z M 3.375 -6.5625 C 3.125 -6.546875 2.9375 -6.3125 2.9375 -6.046875 C 2.9375 -5.796875 3.125 -5.515625 3.421875 -5.515625 C 3.734375 -5.515625 3.984375 -5.75 3.984375 -6.046875 C 3.984375 -6.34375 3.734375 -6.578125 3.453125 -6.578125 C 3.421875 -6.578125 3.40625 -6.5625 3.375 -6.5625 Z M 3.375 -6.5625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 0.171875 -6.8125 L 0.171875 -6.515625 L 0.390625 -6.515625 C 1.015625 -6.515625 1.0625 -6.21875 1.171875 -5.84375 C 1.796875 -3.953125 2.390625 -2.078125 3.015625 -0.171875 C 3.0625 -0.046875 3.09375 0.203125 3.28125 0.203125 L 3.296875 0.203125 C 3.484375 0.171875 3.515625 -0.140625 3.546875 -0.21875 C 4.046875 -1.75 4.53125 -3.28125 5.03125 -4.796875 C 5.0625 -4.890625 5.09375 -4.96875 5.109375 -5.046875 L 5.125 -5.046875 C 5.171875 -4.8125 5.28125 -4.578125 5.34375 -4.359375 C 5.796875 -2.984375 6.234375 -1.59375 6.6875 -0.21875 L 6.78125 0.046875 C 6.8125 0.125 6.84375 0.1875 6.921875 0.203125 L 6.953125 0.203125 C 7.140625 0.203125 7.171875 -0.03125 7.21875 -0.171875 C 7.84375 -2.015625 8.40625 -3.875 9.03125 -5.71875 C 9.15625 -6.125 9.359375 -6.515625 10.0625 -6.515625 L 10.0625 -6.8125 L 7.96875 -6.8125 L 7.96875 -6.515625 C 8.3125 -6.515625 8.796875 -6.375 8.828125 -5.984375 C 8.828125 -5.9375 8.8125 -5.859375 8.796875 -5.796875 L 8.703125 -5.546875 C 8.53125 -4.984375 8.34375 -4.421875 8.15625 -3.859375 L 7.5625 -2.015625 C 7.46875 -1.734375 7.359375 -1.46875 7.28125 -1.1875 C 7.140625 -1.53125 7.046875 -1.90625 6.9375 -2.25 C 6.546875 -3.453125 6.171875 -4.65625 5.765625 -5.859375 C 5.734375 -5.96875 5.65625 -6.09375 5.65625 -6.203125 C 5.65625 -6.515625 6.21875 -6.515625 6.5 -6.515625 L 6.5 -6.8125 L 3.875 -6.8125 L 3.875 -6.515625 L 4.140625 -6.515625 C 4.578125 -6.515625 4.671875 -6.40625 4.90625 -5.71875 C 4.921875 -5.65625 4.96875 -5.546875 4.96875 -5.46875 L 4.96875 -5.4375 C 4.96875 -5.3125 4.875 -5.125 4.828125 -4.984375 C 4.5 -4.0625 4.21875 -3.125 3.921875 -2.1875 C 3.8125 -1.859375 3.6875 -1.53125 3.59375 -1.1875 C 3.5625 -1.3125 3.515625 -1.421875 3.484375 -1.53125 L 2.40625 -4.859375 C 2.25 -5.28125 2.140625 -5.6875 2 -6.09375 C 1.984375 -6.125 1.96875 -6.1875 1.96875 -6.21875 L 1.96875 -6.25 C 2.046875 -6.515625 2.515625 -6.515625 2.8125 -6.515625 L 2.8125 -6.8125 Z M 0.171875 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 L 0.484375 -6.515625 C 0.84375 -6.515625 1.109375 -6.46875 1.109375 -5.984375 L 1.109375 -0.953125 C 1.109375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 -0.015625 L 2.546875 -0.015625 L 2.546875 -0.3125 L 2.296875 -0.3125 C 2.015625 -0.3125 1.78125 -0.359375 1.78125 -0.75 L 1.78125 -6.921875 Z M 0.328125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 C 0.453125 -6.515625 0.59375 -6.515625 0.703125 -6.515625 C 1.0625 -6.515625 1.359375 -6.46875 1.359375 -6.078125 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.6875 -0.3125 C 0.5625 -0.3125 0.4375 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 3.265625 -0.015625 L 3.265625 -0.3125 C 3.140625 -0.3125 2.984375 -0.3125 2.859375 -0.3125 C 2.53125 -0.3125 2.25 -0.375 2.25 -0.75 L 2.25 -2.421875 C 2.25 -2.578125 2.4375 -2.71875 2.546875 -2.828125 C 2.71875 -2.96875 2.875 -3.125 3.03125 -3.28125 C 3.15625 -3.390625 3.296875 -3.5 3.390625 -3.625 L 3.40625 -3.625 C 3.546875 -3.375 3.734375 -3.140625 3.890625 -2.90625 C 4.3125 -2.265625 4.765625 -1.640625 5.1875 -0.984375 C 5.25 -0.875 5.34375 -0.75 5.359375 -0.625 C 5.359375 -0.390625 5.078125 -0.3125 4.890625 -0.3125 L 4.78125 -0.3125 L 4.78125 -0.015625 L 7.34375 -0.015625 L 7.34375 -0.3125 C 7.125 -0.3125 6.875 -0.3125 6.671875 -0.421875 C 6.5 -0.515625 6.375 -0.6875 6.25 -0.84375 L 5.828125 -1.46875 C 5.25 -2.359375 4.671875 -3.21875 4.0625 -4.09375 C 4.046875 -4.109375 4.015625 -4.140625 4.015625 -4.171875 L 4.015625 -4.1875 C 4.015625 -4.265625 4.515625 -4.703125 4.75 -4.921875 L 5.4375 -5.578125 C 5.953125 -6.0625 6.453125 -6.515625 7.171875 -6.515625 L 7.203125 -6.515625 L 7.203125 -6.8125 L 5.078125 -6.8125 L 5.078125 -6.515625 C 5.265625 -6.515625 5.53125 -6.4375 5.53125 -6.171875 C 5.53125 -5.984375 5.359375 -5.828125 5.21875 -5.71875 L 5.109375 -5.609375 C 5.0625 -5.578125 5.03125 -5.515625 4.96875 -5.484375 C 4.0625 -4.609375 3.15625 -3.75 2.25 -2.875 L 2.25 -6.046875 C 2.25 -6.5 2.59375 -6.515625 3.1875 -6.515625 L 3.265625 -6.515625 L 3.265625 -6.8125 Z M 0.328125 -6.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.6875 -3.046875 0.703125 -3.453125 0.921875 -3.734375 C 1.171875 -4.046875 1.640625 -4.078125 2.03125 -4.078125 L 3.140625 -4.078125 C 2.203125 -2.875 1.3125 -1.59375 0.390625 -0.375 C 0.34375 -0.3125 0.28125 -0.21875 0.28125 -0.140625 C 0.28125 -0.046875 0.34375 -0.015625 0.453125 -0.015625 L 3.828125 -0.015625 L 4 -1.875 L 3.75 -1.875 C 3.671875 -1.203125 3.625 -0.375 2.671875 -0.28125 C 2.4375 -0.265625 2.21875 -0.265625 2 -0.265625 L 1.125 -0.265625 C 1.859375 -1.25 2.59375 -2.25 3.328125 -3.234375 C 3.546875 -3.53125 3.984375 -4 3.984375 -4.171875 C 3.984375 -4.265625 3.890625 -4.296875 3.8125 -4.296875 Z M 0.53125 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 5.921875 -0.640625 C 6.046875 -0.390625 6.421875 -0.015625 6.546875 -0.015625 C 6.609375 -0.015625 6.640625 -0.0625 6.640625 -0.15625 L 6.640625 -1.84375 C 6.640625 -1.90625 6.625 -1.96875 6.625 -2.046875 C 6.625 -2.390625 6.890625 -2.40625 7.328125 -2.40625 L 7.328125 -2.71875 L 4.5 -2.71875 L 4.5 -2.40625 C 4.640625 -2.40625 4.796875 -2.421875 4.953125 -2.421875 C 5.4375 -2.421875 5.75 -2.390625 5.75 -1.9375 L 5.75 -1.6875 C 5.75 -1.5625 5.765625 -1.453125 5.765625 -1.328125 C 5.765625 -0.484375 4.984375 -0.09375 4.203125 -0.09375 C 3.28125 -0.09375 2.40625 -0.640625 1.984375 -1.453125 C 1.65625 -2.078125 1.578125 -2.765625 1.578125 -3.453125 C 1.578125 -4.4375 1.78125 -5.46875 2.578125 -6.140625 C 3.015625 -6.5 3.578125 -6.734375 4.140625 -6.734375 C 5.234375 -6.734375 5.984375 -5.828125 6.25 -4.734375 C 6.3125 -4.53125 6.25 -4.171875 6.484375 -4.171875 C 6.59375 -4.171875 6.640625 -4.25 6.640625 -4.34375 L 6.640625 -6.875 C 6.640625 -6.953125 6.625 -7.03125 6.515625 -7.03125 C 6.375 -7.03125 5.90625 -6.25 5.875 -6.1875 C 5.71875 -6.3125 5.578125 -6.453125 5.421875 -6.59375 C 5 -6.890625 4.5 -7.03125 3.984375 -7.03125 C 2.03125 -7.03125 0.546875 -5.28125 0.546875 -3.40625 L 0.546875 -3.265625 C 0.625 -1.421875 2.109375 0.203125 4.046875 0.203125 C 4.78125 0.203125 5.453125 0 5.921875 -0.640625 Z M 5.921875 -0.640625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 1.3125 -1.0625 C 1.0625 -1.03125 0.859375 -0.796875 0.859375 -0.546875 C 0.859375 -0.296875 1.0625 -0.015625 1.359375 -0.015625 C 1.640625 -0.015625 1.90625 -0.21875 1.90625 -0.53125 C 1.90625 -0.78125 1.71875 -1.0625 1.390625 -1.0625 C 1.359375 -1.0625 1.328125 -1.0625 1.3125 -1.0625 Z M 1.3125 -1.0625 "/>
</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 0.765625 -4.1875 L 0.765625 -3.9375 C 1.109375 -3.9375 1.4375 -3.984375 1.765625 -4.125 L 1.765625 -0.546875 C 1.765625 -0.296875 1.578125 -0.28125 1.421875 -0.265625 C 1.21875 -0.265625 1.015625 -0.265625 0.8125 -0.265625 L 0.8125 0 L 2.125 0 L 2.28125 -0.03125 L 2.953125 -0.03125 L 3.296875 0 L 3.296875 -0.265625 C 3.171875 -0.265625 3.03125 -0.25 2.90625 -0.25 C 2.609375 -0.25 2.34375 -0.296875 2.34375 -0.546875 L 2.34375 -4.5 C 2.34375 -4.578125 2.296875 -4.640625 2.203125 -4.640625 C 2.09375 -4.640625 2 -4.515625 1.90625 -4.453125 C 1.5625 -4.25 1.15625 -4.1875 0.765625 -4.1875 Z M 0.765625 -4.1875 "/>
</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.71875 -3.609375 L 0.71875 -3.359375 C 1.046875 -3.359375 1.34375 -3.40625 1.640625 -3.53125 L 1.640625 -0.484375 C 1.640625 -0.265625 1.453125 -0.265625 1.328125 -0.25 C 1.140625 -0.25 0.953125 -0.25 0.765625 -0.25 L 0.765625 0 L 1.296875 0 L 1.578125 -0.03125 L 2.71875 -0.03125 L 3.015625 0 L 3.015625 -0.25 C 2.90625 -0.25 2.765625 -0.234375 2.640625 -0.234375 C 2.375 -0.234375 2.140625 -0.265625 2.140625 -0.484375 L 2.140625 -3.859375 C 2.140625 -3.9375 2.109375 -3.984375 2.015625 -3.984375 C 1.921875 -3.984375 1.84375 -3.890625 1.75 -3.84375 C 1.4375 -3.640625 1.078125 -3.609375 0.71875 -3.609375 Z M 0.71875 -3.609375 "/>
</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 0.75 -4.34375 L 0.75 -0.53125 L 0.359375 -0.53125 C 0.171875 -0.53125 0.078125 -0.421875 0.078125 -0.265625 C 0.078125 -0.09375 0.1875 -0.015625 0.390625 -0.015625 L 1.71875 -0.015625 C 1.890625 -0.015625 2.03125 -0.09375 2.03125 -0.265625 C 2.03125 -0.421875 1.9375 -0.53125 1.75 -0.53125 L 1.359375 -0.53125 L 1.359375 -2.03125 C 1.421875 -2.53125 1.84375 -2.9375 2.359375 -2.953125 C 2.6875 -2.953125 2.859375 -2.8125 2.859375 -2.265625 L 2.859375 -0.53125 L 2.578125 -0.53125 C 2.375 -0.53125 2.25 -0.453125 2.25 -0.265625 C 2.25 -0.078125 2.375 -0.015625 2.578125 -0.015625 L 3.828125 -0.015625 C 4.015625 -0.015625 4.140625 -0.09375 4.140625 -0.265625 C 4.140625 -0.421875 4.046875 -0.53125 3.859375 -0.53125 L 3.46875 -0.53125 L 3.46875 -2.171875 C 3.46875 -2.671875 3.4375 -3.21875 2.796875 -3.421875 C 2.6875 -3.453125 2.5625 -3.46875 2.453125 -3.46875 C 2 -3.46875 1.6875 -3.3125 1.359375 -3.078125 L 1.359375 -4.546875 C 1.359375 -4.828125 1.21875 -4.875 1.046875 -4.875 L 0.296875 -4.875 C 0.171875 -4.859375 0.078125 -4.75 0.078125 -4.609375 C 0.078125 -4.46875 0.171875 -4.34375 0.34375 -4.34375 Z M 0.75 -4.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 1.203125 -3.4375 L 0.5 -3.4375 C 0.296875 -3.4375 0.203125 -3.328125 0.203125 -3.171875 C 0.203125 -3 0.3125 -2.90625 0.5 -2.90625 L 1.203125 -2.90625 L 1.203125 -1.109375 C 1.203125 -0.53125 1.515625 0.03125 2.359375 0.03125 C 2.96875 0.03125 3.625 -0.34375 3.625 -1.046875 C 3.625 -1.234375 3.484375 -1.3125 3.296875 -1.3125 C 2.9375 -1.3125 3.0625 -1.015625 2.9375 -0.8125 C 2.828125 -0.609375 2.625 -0.5 2.390625 -0.5 C 1.90625 -0.5 1.8125 -0.828125 1.8125 -1.140625 L 1.8125 -2.90625 L 3.234375 -2.90625 C 3.375 -2.9375 3.4375 -3.046875 3.4375 -3.171875 C 3.4375 -3.40625 3.25 -3.4375 3.109375 -3.4375 L 1.8125 -3.4375 L 1.8125 -4.125 C 1.8125 -4.34375 1.6875 -4.421875 1.515625 -4.421875 C 1.359375 -4.421875 1.203125 -4.34375 1.203125 -4.109375 Z M 1.203125 -3.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 1.359375 -3.125 C 1.359375 -3.421875 1.1875 -3.4375 1.015625 -3.4375 L 0.578125 -3.4375 C 0.515625 -3.4375 0.46875 -3.4375 0.390625 -3.4375 C 0.234375 -3.4375 0.078125 -3.359375 0.078125 -3.171875 C 0.078125 -2.96875 0.234375 -2.90625 0.390625 -2.90625 L 0.75 -2.90625 L 0.75 1.234375 L 0.359375 1.234375 C 0.171875 1.234375 0.078125 1.34375 0.078125 1.5 C 0.078125 1.671875 0.1875 1.765625 0.390625 1.765625 L 1.71875 1.765625 C 1.890625 1.765625 2.03125 1.6875 2.03125 1.5 C 2.03125 1.34375 1.9375 1.234375 1.75 1.234375 L 1.359375 1.234375 L 1.359375 -0.34375 C 1.609375 -0.09375 1.9375 0.03125 2.28125 0.03125 C 3.21875 0.03125 3.953125 -0.796875 3.953125 -1.71875 C 3.953125 -2.5625 3.359375 -3.484375 2.34375 -3.484375 C 1.96875 -3.484375 1.671875 -3.328125 1.359375 -3.125 Z M 3.34375 -1.625 C 3.28125 -1.046875 2.859375 -0.5 2.25 -0.5 C 1.71875 -0.5 1.359375 -1.078125 1.359375 -1.546875 C 1.359375 -1.65625 1.359375 -1.75 1.359375 -1.828125 C 1.359375 -1.921875 1.359375 -2.015625 1.359375 -2.09375 C 1.359375 -2.578125 1.875 -2.953125 2.3125 -2.953125 C 2.9375 -2.953125 3.34375 -2.3125 3.34375 -1.75 C 3.34375 -1.703125 3.34375 -1.65625 3.34375 -1.625 Z M 3.34375 -1.625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 1.140625 -0.234375 C 1.453125 -0.03125 1.8125 0.03125 2.171875 0.03125 C 2.75 0.03125 3.6875 -0.15625 3.6875 -1.015625 C 3.6875 -1.484375 3.296875 -1.8125 2.875 -1.953125 C 2.3125 -2.140625 1.109375 -2.078125 1.109375 -2.546875 C 1.109375 -2.90625 1.734375 -2.96875 2.0625 -2.96875 C 2.3125 -2.96875 2.75 -2.96875 2.828125 -2.65625 C 2.875 -2.484375 2.859375 -2.3125 3.15625 -2.3125 C 3.40625 -2.3125 3.453125 -2.484375 3.453125 -2.640625 L 3.453125 -3.203125 C 3.453125 -3.390625 3.359375 -3.5 3.171875 -3.5 C 3.078125 -3.5 2.984375 -3.453125 2.9375 -3.359375 C 2.671875 -3.484375 2.34375 -3.5 2.0625 -3.5 C 1.375 -3.5 0.578125 -3.25 0.578125 -2.546875 C 0.578125 -1.1875 3.15625 -1.921875 3.15625 -1 C 3.15625 -0.515625 2.34375 -0.5 2.171875 -0.5 L 2.15625 -0.5 C 1.765625 -0.5 1.40625 -0.640625 1.25 -1.015625 C 1.15625 -1.1875 1.15625 -1.359375 0.875 -1.359375 C 0.609375 -1.359375 0.578125 -1.171875 0.578125 -1.015625 L 0.578125 -0.265625 C 0.578125 -0.078125 0.671875 0.03125 0.859375 0.03125 C 1.015625 0.03125 1.109375 -0.09375 1.140625 -0.234375 Z M 1.140625 -0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 2.046875 -3.4375 C 1.8125 -3.375 1.578125 -3.21875 1.578125 -2.90625 C 1.578125 -2.609375 1.8125 -2.34375 2.125 -2.34375 C 2.421875 -2.34375 2.65625 -2.609375 2.65625 -2.890625 C 2.65625 -3.171875 2.421875 -3.4375 2.109375 -3.4375 C 2.09375 -3.4375 2.078125 -3.4375 2.046875 -3.4375 Z M 2.046875 -1.078125 C 1.8125 -1.03125 1.578125 -0.875 1.578125 -0.546875 C 1.578125 -0.265625 1.8125 0 2.125 0 C 2.421875 0 2.65625 -0.265625 2.65625 -0.546875 C 2.65625 -0.828125 2.421875 -1.09375 2.109375 -1.09375 C 2.09375 -1.09375 2.078125 -1.078125 2.046875 -1.078125 Z M 2.046875 -1.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 3.4375 -5.53125 C 3.28125 -5.5 3.234375 -5.34375 3.15625 -5.21875 C 2.8125 -4.4375 2.40625 -3.671875 2.046875 -2.90625 C 1.578125 -1.9375 1.125 -0.96875 0.640625 -0.046875 C 0.59375 0.078125 0.46875 0.25 0.46875 0.375 C 0.46875 0.53125 0.578125 0.65625 0.734375 0.65625 L 0.75 0.65625 C 0.9375 0.640625 1 0.46875 1.0625 0.328125 C 1.21875 0 1.375 -0.328125 1.53125 -0.65625 C 1.828125 -1.234375 2.09375 -1.8125 2.375 -2.375 C 2.703125 -3.046875 3.03125 -3.703125 3.34375 -4.359375 C 3.453125 -4.59375 3.546875 -4.84375 3.6875 -5.078125 C 3.71875 -5.125 3.75 -5.203125 3.75 -5.28125 C 3.75 -5.421875 3.640625 -5.53125 3.484375 -5.53125 C 3.46875 -5.53125 3.453125 -5.53125 3.4375 -5.53125 Z M 3.4375 -5.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 2.859375 -4.34375 L 2.859375 -3.140625 C 2.59375 -3.359375 2.265625 -3.46875 1.9375 -3.46875 C 1 -3.46875 0.265625 -2.65625 0.265625 -1.71875 C 0.265625 -0.8125 0.9375 0.03125 1.875 0.03125 C 2.234375 0.03125 2.59375 -0.109375 2.859375 -0.375 L 2.859375 -0.296875 C 2.859375 -0.03125 3.046875 -0.015625 3.21875 -0.015625 L 3.828125 -0.015625 C 4 -0.015625 4.140625 -0.078125 4.140625 -0.265625 C 4.140625 -0.484375 4 -0.53125 3.8125 -0.53125 L 3.46875 -0.53125 L 3.46875 -4.609375 C 3.46875 -4.765625 3.375 -4.890625 3.1875 -4.890625 C 3.140625 -4.890625 3.078125 -4.875 3.03125 -4.875 L 2.53125 -4.875 C 2.359375 -4.875 2.1875 -4.84375 2.1875 -4.609375 C 2.1875 -4.46875 2.28125 -4.34375 2.46875 -4.34375 Z M 0.875 -1.625 C 0.875 -1.65625 0.875 -1.703125 0.875 -1.734375 C 0.875 -2.3125 1.328125 -2.9375 1.96875 -2.9375 C 2.34375 -2.9375 2.78125 -2.65625 2.859375 -2.234375 L 2.859375 -1.84375 C 2.859375 -1.765625 2.875 -1.6875 2.875 -1.609375 C 2.875 -1.0625 2.453125 -0.5 1.890625 -0.5 C 1.265625 -0.5 0.9375 -1.109375 0.875 -1.625 Z M 0.875 -1.625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 1.046875 -1.5 L 3.421875 -1.5 C 3.671875 -1.5 3.75 -1.640625 3.75 -1.8125 C 3.75 -2.65625 3.28125 -3.5 2.1875 -3.5 C 1.140625 -3.5 0.421875 -2.65625 0.421875 -1.734375 C 0.421875 -0.65625 1.375 0.03125 2.3125 0.03125 C 2.8125 0.03125 3.34375 -0.140625 3.625 -0.5625 C 3.6875 -0.640625 3.75 -0.765625 3.75 -0.875 L 3.75 -0.890625 C 3.734375 -1.0625 3.59375 -1.109375 3.421875 -1.109375 C 3.15625 -1.109375 3.171875 -0.953125 3.078125 -0.828125 C 2.921875 -0.59375 2.625 -0.484375 2.34375 -0.484375 C 1.75 -0.484375 1.171875 -0.921875 1.046875 -1.5 Z M 1.0625 -2.03125 C 1.1875 -2.53125 1.609375 -2.96875 2.1875 -2.96875 C 2.71875 -2.96875 3.078125 -2.5625 3.109375 -2.03125 Z M 1.0625 -2.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M 2.046875 -1.078125 C 1.8125 -1.03125 1.578125 -0.875 1.578125 -0.546875 C 1.578125 -0.265625 1.8125 0 2.125 0 C 2.421875 0 2.65625 -0.265625 2.65625 -0.546875 C 2.65625 -0.828125 2.421875 -1.09375 2.109375 -1.09375 C 2.09375 -1.09375 2.078125 -1.078125 2.046875 -1.078125 Z M 2.046875 -1.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 2.125 -1.453125 C 2.15625 -1.125 2.25 -0.828125 2.34375 -0.515625 L 2.40625 -0.296875 C 2.46875 -0.015625 2.640625 0.03125 2.84375 0.03125 C 3.203125 0.03125 3.203125 -0.15625 3.328125 -0.90625 C 3.453125 -1.546875 3.546875 -2.203125 3.671875 -2.84375 C 3.703125 -2.9375 3.8125 -2.90625 3.890625 -2.921875 C 4.03125 -2.9375 4.09375 -3.046875 4.09375 -3.171875 C 4.09375 -3.359375 3.953125 -3.4375 3.765625 -3.4375 C 3.703125 -3.4375 3.640625 -3.4375 3.5625 -3.4375 L 2.765625 -3.4375 C 2.609375 -3.4375 2.46875 -3.359375 2.46875 -3.171875 C 2.46875 -3.015625 2.5625 -2.90625 2.75 -2.90625 L 3.1875 -2.90625 L 2.796875 -0.625 C 2.765625 -1 2.609375 -1.421875 2.515625 -1.75 C 2.453125 -1.953125 2.328125 -2.078125 2.125 -2.078125 C 1.8125 -2.078125 1.75 -1.8125 1.6875 -1.578125 C 1.609375 -1.265625 1.5 -0.9375 1.4375 -0.625 L 1.03125 -2.90625 L 1.46875 -2.90625 C 1.65625 -2.90625 1.765625 -3.015625 1.765625 -3.171875 C 1.765625 -3.359375 1.625 -3.4375 1.453125 -3.4375 L 0.640625 -3.4375 C 0.578125 -3.4375 0.515625 -3.4375 0.453125 -3.4375 C 0.25 -3.4375 0.125 -3.328125 0.125 -3.15625 L 0.125 -3.140625 C 0.15625 -2.96875 0.28125 -2.90625 0.46875 -2.90625 C 0.515625 -2.90625 0.546875 -2.890625 0.546875 -2.8125 C 0.671875 -2.15625 0.765625 -1.5 0.90625 -0.859375 L 1 -0.34375 C 1.046875 -0.0625 1.15625 0.03125 1.390625 0.03125 C 1.734375 0.03125 1.859375 -0.078125 2.0625 -1.109375 C 2.09375 -1.21875 2.125 -1.328125 2.125 -1.453125 Z M 2.125 -1.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 1.90625 -2.90625 L 1.90625 -0.53125 L 0.9375 -0.53125 C 0.71875 -0.53125 0.625 -0.4375 0.625 -0.28125 C 0.625 -0.15625 0.703125 -0.03125 0.859375 -0.015625 L 3.375 -0.015625 C 3.5625 -0.015625 3.671875 -0.109375 3.671875 -0.265625 C 3.671875 -0.4375 3.5625 -0.546875 3.375 -0.546875 C 3.3125 -0.546875 3.25 -0.53125 3.1875 -0.53125 L 2.515625 -0.53125 L 2.515625 -3.15625 C 2.515625 -3.390625 2.34375 -3.4375 2.1875 -3.4375 L 1.03125 -3.4375 C 0.875 -3.4375 0.6875 -3.40625 0.6875 -3.171875 C 0.6875 -3 0.796875 -2.90625 1.015625 -2.90625 Z M 2.03125 -4.875 C 1.828125 -4.859375 1.65625 -4.6875 1.65625 -4.46875 C 1.65625 -4.234375 1.84375 -4.03125 2.078125 -4.03125 C 2.296875 -4.03125 2.515625 -4.203125 2.515625 -4.453125 C 2.515625 -4.671875 2.328125 -4.890625 2.09375 -4.890625 C 2.078125 -4.890625 2.0625 -4.875 2.03125 -4.875 Z M 2.03125 -4.875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 0.859375 -4.34375 L 0.859375 -0.53125 L 0.4375 -0.53125 C 0.25 -0.53125 0.15625 -0.421875 0.15625 -0.265625 C 0.15625 -0.109375 0.265625 -0.015625 0.46875 -0.015625 L 1.734375 -0.015625 C 1.921875 -0.015625 2.0625 -0.078125 2.0625 -0.265625 C 2.0625 -0.4375 1.9375 -0.53125 1.78125 -0.53125 L 1.359375 -0.53125 L 1.359375 -1.09375 L 1.984375 -1.6875 L 2.890625 -0.53125 L 2.765625 -0.53125 C 2.59375 -0.53125 2.46875 -0.453125 2.46875 -0.265625 C 2.46875 -0.078125 2.609375 0 2.78125 0 C 2.84375 0 2.90625 -0.015625 2.953125 -0.015625 L 3.578125 -0.015625 C 3.640625 -0.015625 3.703125 0 3.765625 0 C 3.96875 0 4.09375 -0.09375 4.09375 -0.265625 C 4.09375 -0.5 3.90625 -0.53125 3.78125 -0.53125 L 3.609375 -0.53125 C 3.484375 -0.53125 3.453125 -0.609375 3.40625 -0.671875 C 3.15625 -1 2.890625 -1.328125 2.625 -1.65625 L 2.4375 -1.90625 C 2.40625 -1.9375 2.359375 -1.96875 2.359375 -2.015625 L 2.359375 -2.03125 C 2.359375 -2.0625 2.515625 -2.171875 2.578125 -2.234375 C 2.796875 -2.4375 3.03125 -2.625 3.234375 -2.84375 C 3.28125 -2.875 3.3125 -2.90625 3.375 -2.90625 L 3.4375 -2.90625 C 3.484375 -2.90625 3.546875 -2.90625 3.609375 -2.90625 C 3.78125 -2.90625 3.90625 -2.984375 3.90625 -3.171875 C 3.90625 -3.359375 3.78125 -3.4375 3.609375 -3.4375 C 3.546875 -3.4375 3.5 -3.4375 3.453125 -3.4375 L 2.3125 -3.4375 C 2.140625 -3.4375 2.015625 -3.359375 2.015625 -3.171875 C 2.015625 -2.984375 2.140625 -2.90625 2.328125 -2.90625 L 2.5625 -2.90625 L 1.359375 -1.796875 L 1.359375 -4.390625 C 1.359375 -4.453125 1.359375 -4.5 1.359375 -4.5625 C 1.359375 -4.75 1.265625 -4.890625 1.046875 -4.890625 C 1 -4.890625 0.9375 -4.875 0.890625 -4.875 L 0.390625 -4.875 C 0.25 -4.859375 0.15625 -4.75 0.15625 -4.625 C 0.15625 -4.46875 0.25 -4.34375 0.4375 -4.34375 Z M 0.859375 -4.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-13">
<path style="stroke:none;" d="M 1.390625 -2.953125 C 1.546875 -2.953125 1.703125 -2.96875 1.859375 -2.96875 C 2.25 -2.96875 2.828125 -2.8125 2.828125 -2.25 C 1.9375 -2.25 0.421875 -2.0625 0.421875 -1.078125 C 0.421875 -0.359375 1.109375 0.03125 1.8125 0.03125 C 2.203125 0.03125 2.59375 -0.078125 2.921875 -0.28125 C 3.046875 -0.03125 3.4375 -0.015625 3.734375 -0.015625 L 3.890625 -0.015625 C 4.015625 -0.015625 4.21875 -0.03125 4.21875 -0.25 C 4.21875 -0.5 4.0625 -0.53125 3.921875 -0.53125 L 3.8125 -0.53125 C 3.625 -0.53125 3.4375 -0.53125 3.4375 -0.6875 L 3.4375 -2.234375 C 3.4375 -2.984375 2.84375 -3.390625 2.21875 -3.484375 C 2.078125 -3.5 1.921875 -3.5 1.78125 -3.5 C 1.359375 -3.5 0.625 -3.46875 0.625 -2.890625 C 0.625 -2.671875 0.78125 -2.5 1.015625 -2.5 C 1.234375 -2.5 1.40625 -2.65625 1.40625 -2.875 C 1.40625 -2.890625 1.40625 -2.921875 1.390625 -2.953125 Z M 2.828125 -1.734375 L 2.828125 -1.125 C 2.828125 -0.609375 2.21875 -0.5 1.84375 -0.5 C 1.53125 -0.5 1.03125 -0.640625 1.03125 -1.0625 C 1.03125 -1.484375 1.765625 -1.625 2.0625 -1.671875 C 2.3125 -1.71875 2.578125 -1.734375 2.828125 -1.734375 Z M 2.828125 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-14">
<path style="stroke:none;" d="M 2 -3.5 C 1.078125 -3.390625 0.4375 -2.609375 0.4375 -1.71875 C 0.4375 -0.875 1.09375 0.046875 2.109375 0.046875 C 3.078125 0.046875 3.734375 -0.78125 3.78125 -1.640625 L 3.78125 -1.734375 C 3.78125 -2.65625 3.078125 -3.5 2.09375 -3.5 Z M 1.046875 -1.6875 C 1.046875 -1.71875 1.046875 -1.75 1.046875 -1.78125 C 1.046875 -2.359375 1.484375 -2.96875 2.109375 -2.96875 C 2.671875 -2.96875 3.09375 -2.484375 3.171875 -1.875 L 3.171875 -1.8125 C 3.171875 -1.203125 2.8125 -0.5 2.09375 -0.5 C 1.46875 -0.5 1.109375 -1.140625 1.046875 -1.6875 Z M 1.046875 -1.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-15">
<path style="stroke:none;" d="M 1.796875 -2.859375 L 1.796875 -3.09375 C 1.796875 -3.28125 1.75 -3.4375 1.484375 -3.4375 L 0.5625 -3.4375 C 0.390625 -3.4375 0.234375 -3.375 0.234375 -3.171875 C 0.234375 -3 0.34375 -2.90625 0.546875 -2.90625 L 1.1875 -2.90625 L 1.1875 -0.53125 L 0.53125 -0.53125 C 0.34375 -0.53125 0.234375 -0.421875 0.234375 -0.265625 C 0.234375 -0.125 0.34375 0 0.53125 0 C 0.5625 0 0.609375 -0.015625 0.65625 -0.015625 L 2.75 -0.015625 C 2.90625 -0.015625 2.984375 -0.15625 2.984375 -0.28125 C 2.984375 -0.4375 2.859375 -0.546875 2.671875 -0.546875 C 2.609375 -0.546875 2.546875 -0.53125 2.5 -0.53125 L 1.796875 -0.53125 L 1.796875 -1.4375 C 1.796875 -2.09375 2.1875 -2.953125 3.203125 -2.953125 C 3.203125 -2.734375 3.359375 -2.578125 3.5625 -2.578125 C 3.765625 -2.578125 3.921875 -2.734375 3.921875 -2.9375 C 3.921875 -3.390625 3.4375 -3.484375 3.140625 -3.484375 C 2.609375 -3.484375 2.171875 -3.21875 1.796875 -2.859375 Z M 1.796875 -2.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-16">
<path style="stroke:none;" d="M 0.8125 -0.34375 C 0.46875 -0.171875 0.234375 0.234375 0.234375 0.625 C 0.234375 1.484375 1.359375 1.8125 2.125 1.8125 C 2.84375 1.8125 4 1.515625 4 0.65625 C 4 0.125 3.65625 -0.234375 3.1875 -0.390625 C 2.796875 -0.515625 2.390625 -0.515625 1.984375 -0.515625 L 1.734375 -0.515625 C 1.65625 -0.515625 1.5625 -0.515625 1.484375 -0.53125 L 1.4375 -0.53125 C 1.234375 -0.53125 1.125 -0.75 1.125 -0.9375 L 1.125 -0.96875 C 1.125 -1.015625 1.140625 -1.0625 1.15625 -1.109375 C 1.390625 -0.984375 1.609375 -0.921875 1.875 -0.921875 C 2.609375 -0.921875 3.234375 -1.46875 3.234375 -2.203125 C 3.234375 -2.4375 3.171875 -2.671875 3.03125 -2.875 C 3.15625 -2.921875 3.28125 -2.96875 3.421875 -2.984375 C 3.4375 -2.8125 3.609375 -2.703125 3.765625 -2.703125 C 3.953125 -2.703125 4.109375 -2.859375 4.109375 -3.046875 C 4.109375 -3.40625 3.75 -3.515625 3.484375 -3.515625 C 3.25 -3.515625 2.984375 -3.4375 2.765625 -3.3125 C 2.734375 -3.296875 2.6875 -3.265625 2.65625 -3.265625 C 2.578125 -3.28125 2.5 -3.34375 2.421875 -3.375 C 2.265625 -3.4375 2.125 -3.46875 1.96875 -3.46875 L 1.875 -3.46875 C 1.1875 -3.46875 0.578125 -2.984375 0.515625 -2.25 L 0.515625 -2.203125 C 0.515625 -1.96875 0.578125 -1.75 0.703125 -1.546875 C 0.71875 -1.515625 0.75 -1.484375 0.75 -1.453125 C 0.75 -1.40625 0.71875 -1.375 0.703125 -1.34375 C 0.640625 -1.203125 0.625 -1.078125 0.625 -0.921875 C 0.625 -0.71875 0.6875 -0.515625 0.8125 -0.34375 Z M 0.734375 0.671875 C 0.734375 0.65625 0.734375 0.640625 0.734375 0.625 C 0.734375 0.1875 1.1875 -0.015625 1.5625 -0.015625 L 2.1875 -0.015625 C 2.6875 -0.015625 3.484375 0.03125 3.484375 0.625 C 3.484375 1.109375 2.59375 1.296875 2.140625 1.296875 C 1.703125 1.296875 1.171875 1.21875 0.859375 0.890625 C 0.8125 0.84375 0.75 0.765625 0.734375 0.671875 Z M 1.125 -2.125 C 1.125 -2.15625 1.125 -2.1875 1.125 -2.203125 C 1.125 -2.59375 1.46875 -2.9375 1.859375 -2.953125 L 1.875 -2.953125 C 2.28125 -2.953125 2.640625 -2.59375 2.640625 -2.1875 C 2.640625 -1.796875 2.296875 -1.453125 1.90625 -1.4375 L 1.875 -1.4375 C 1.484375 -1.4375 1.171875 -1.75 1.125 -2.125 Z M 1.125 -2.125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-17">
<path style="stroke:none;" d="M 0.75 -4.34375 L 0.75 -0.53125 L 0.515625 -0.53125 C 0.34375 -0.53125 0.1875 -0.484375 0.1875 -0.28125 C 0.1875 -0.15625 0.265625 -0.03125 0.40625 -0.015625 L 3.734375 -0.015625 C 3.875 -0.015625 4.015625 -0.046875 4.046875 -0.21875 L 4.046875 -1.109375 C 4.046875 -1.296875 3.9375 -1.40625 3.75 -1.40625 C 3.609375 -1.40625 3.421875 -1.359375 3.421875 -1.125 C 3.421875 -1.09375 3.4375 -1.046875 3.4375 -1 L 3.4375 -0.53125 L 1.359375 -0.53125 L 1.359375 -2.265625 L 2.359375 -2.265625 L 2.359375 -2.125 C 2.359375 -1.890625 2.5 -1.8125 2.671875 -1.8125 C 2.828125 -1.8125 2.984375 -1.859375 2.984375 -2.109375 L 2.984375 -2.78125 C 2.984375 -2.84375 2.984375 -2.890625 2.984375 -2.9375 C 2.984375 -3.1875 2.828125 -3.234375 2.671875 -3.234375 C 2.5 -3.234375 2.359375 -3.15625 2.359375 -2.9375 L 2.359375 -2.78125 L 1.359375 -2.78125 L 1.359375 -4.34375 L 3.265625 -4.34375 L 3.265625 -3.890625 C 3.265625 -3.640625 3.421875 -3.609375 3.578125 -3.609375 C 3.765625 -3.609375 3.875 -3.71875 3.875 -3.90625 L 3.875 -4.546875 C 3.875 -4.71875 3.828125 -4.875 3.5625 -4.875 L 0.65625 -4.875 C 0.609375 -4.875 0.5625 -4.890625 0.5 -4.890625 C 0.3125 -4.890625 0.1875 -4.765625 0.1875 -4.609375 C 0.1875 -4.421875 0.34375 -4.34375 0.515625 -4.34375 Z M 0.75 -4.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-18">
<path style="stroke:none;" d="M 0.75 -4.34375 L 0.75 -0.265625 C 0.75 -0.0625 0.921875 -0.015625 1.0625 -0.015625 C 1.328125 -0.015625 1.359375 -0.171875 1.359375 -0.34375 C 1.609375 -0.09375 1.9375 0.03125 2.28125 0.03125 C 3.21875 0.03125 3.953125 -0.796875 3.953125 -1.71875 C 3.953125 -2.5625 3.359375 -3.484375 2.34375 -3.484375 C 1.96875 -3.484375 1.671875 -3.328125 1.359375 -3.125 L 1.359375 -4.546875 C 1.359375 -4.84375 1.21875 -4.875 1.046875 -4.875 L 0.296875 -4.875 C 0.171875 -4.859375 0.078125 -4.75 0.078125 -4.609375 C 0.078125 -4.46875 0.171875 -4.34375 0.34375 -4.34375 Z M 3.34375 -1.625 C 3.28125 -1.046875 2.859375 -0.5 2.25 -0.5 C 1.71875 -0.5 1.359375 -1.078125 1.359375 -1.546875 C 1.359375 -1.65625 1.359375 -1.75 1.359375 -1.828125 C 1.359375 -1.921875 1.359375 -2.015625 1.359375 -2.09375 C 1.359375 -2.578125 1.875 -2.953125 2.3125 -2.953125 C 2.9375 -2.953125 3.34375 -2.3125 3.34375 -1.75 C 3.34375 -1.703125 3.34375 -1.65625 3.34375 -1.625 Z M 3.34375 -1.625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="139.746" y="686.299"/>
<use xlink:href="#glyph0-2" x="146.524553" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="152.336734" y="686.299"/>
<use xlink:href="#glyph0-4" x="156.763117" y="686.299"/>
<use xlink:href="#glyph0-5" x="160.664471" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="165.642782" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="171.454963" y="686.299"/>
<use xlink:href="#glyph0-6" x="175.881346" y="686.299"/>
<use xlink:href="#glyph0-7" x="178.64796" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="189.1595" y="686.299"/>
<use xlink:href="#glyph0-9" x="196.629457" y="686.299"/>
<use xlink:href="#glyph0-10" x="201.609761" y="686.299"/>
<use xlink:href="#glyph0-11" x="207.142989" y="686.299"/>
<use xlink:href="#glyph0-11" x="211.071242" y="686.299"/>
<use xlink:href="#glyph0-12" x="214.999495" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="219.146926" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="224.411164" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="231.325208" y="686.299"/>
<use xlink:href="#glyph0-6" x="235.751591" y="686.299"/>
<use xlink:href="#glyph0-15" x="238.518205" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="246.26313" y="686.299"/>
<use xlink:href="#glyph0-15" x="249.029744" y="686.299"/>
<use xlink:href="#glyph0-11" x="254.562972" y="686.299"/>
<use xlink:href="#glyph0-2" x="258.491226" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="264.303407" y="686.299"/>
<use xlink:href="#glyph0-11" x="268.72979" y="686.299"/>
<use xlink:href="#glyph0-16" x="272.658043" y="686.299"/>
<use xlink:href="#glyph0-15" x="277.638347" y="686.299"/>
<use xlink:href="#glyph0-17" x="283.171575" y="686.299"/>
<use xlink:href="#glyph0-3" x="288.704803" y="686.299"/>
<use xlink:href="#glyph0-4" x="293.131186" y="686.299"/>
<use xlink:href="#glyph0-3" x="297.03254" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="303.67062" y="686.299"/>
<use xlink:href="#glyph0-2" x="308.650924" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="314.463105" y="686.299"/>
<use xlink:href="#glyph0-4" x="318.889488" y="686.299"/>
<use xlink:href="#glyph0-17" x="322.790842" y="686.299"/>
<use xlink:href="#glyph0-3" x="328.32407" y="686.299"/>
<use xlink:href="#glyph0-10" x="332.750454" y="686.299"/>
<use xlink:href="#glyph0-18" x="338.283682" y="686.299"/>
<use xlink:href="#glyph0-11" x="342.15714" y="686.299"/>
<use xlink:href="#glyph0-12" x="346.085394" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="350.242787" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="357.987712" y="686.299"/>
<use xlink:href="#glyph0-9" x="363.52094" y="686.299"/>
<use xlink:href="#glyph0-10" x="368.501244" y="686.299"/>
<use xlink:href="#glyph0-2" x="374.034472" y="686.299"/>
<use xlink:href="#glyph0-20" x="379.5677" y="686.299"/>
<use xlink:href="#glyph0-4" x="384.548003" y="686.299"/>
<use xlink:href="#glyph0-5" x="388.449358" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="393.427669" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="399.23985" y="686.299"/>
<use xlink:href="#glyph0-6" x="403.666233" y="686.299"/>
<use xlink:href="#glyph0-7" x="406.432847" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-21" x="416.944386" y="686.299"/>
<use xlink:href="#glyph0-6" x="427.180958" y="686.299"/>
<use xlink:href="#glyph0-22" x="429.947572" y="686.299"/>
<use xlink:href="#glyph0-17" x="432.714186" y="686.299"/>
<use xlink:href="#glyph0-11" x="438.247414" y="686.299"/>
<use xlink:href="#glyph0-12" x="442.175667" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="446.323097" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="451.587335" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="458.50138" y="686.299"/>
<use xlink:href="#glyph0-6" x="462.927763" y="686.299"/>
<use xlink:href="#glyph0-15" x="465.694377" y="686.299"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-23" x="124.802" y="698.254"/>
<use xlink:href="#glyph0-3" x="132.548918" y="698.254"/>
<use xlink:href="#glyph0-6" x="136.975301" y="698.254"/>
<use xlink:href="#glyph0-22" x="139.741915" y="698.254"/>
<use xlink:href="#glyph0-3" x="142.508529" y="698.254"/>
<use xlink:href="#glyph0-4" x="146.934912" y="698.254"/>
<use xlink:href="#glyph0-5" x="150.836266" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="156.920426" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="162.732607" y="698.254"/>
<use xlink:href="#glyph0-24" x="167.15899" y="698.254"/>
<use xlink:href="#glyph0-3" x="171.585373" y="698.254"/>
<use xlink:href="#glyph0-6" x="176.011757" y="698.254"/>
<use xlink:href="#glyph0-12" x="178.778371" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="182.925801" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="188.468992" y="698.254"/>
<use xlink:href="#glyph0-3" x="194.00222" y="698.254"/>
<use xlink:href="#glyph0-18" x="198.428603" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="205.619607" y="698.254"/>
<use xlink:href="#glyph0-9" x="211.152835" y="698.254"/>
<use xlink:href="#glyph0-11" x="216.133139" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="223.378938" y="698.254"/>
<use xlink:href="#glyph0-20" x="231.67878" y="698.254"/>
<use xlink:href="#glyph0-15" x="236.659084" y="698.254"/>
<use xlink:href="#glyph0-15" x="242.192312" y="698.254"/>
<use xlink:href="#glyph0-22" x="247.72554" y="698.254"/>
<use xlink:href="#glyph0-6" x="250.492154" y="698.254"/>
<use xlink:href="#glyph0-12" x="253.258768" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="257.406199" y="698.254"/>
<use xlink:href="#glyph0-3" x="262.939427" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="270.693318" y="698.254"/>
<use xlink:href="#glyph0-3" x="278.508978" y="698.254"/>
<use xlink:href="#glyph0-11" x="282.935361" y="698.254"/>
<use xlink:href="#glyph0-12" x="286.863614" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="291.011045" y="698.254"/>
<use xlink:href="#glyph0-22" x="296.544273" y="698.254"/>
<use xlink:href="#glyph0-3" x="299.310887" y="698.254"/>
<use xlink:href="#glyph0-12" x="303.73727" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="307.8847" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="313.148938" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="320.339943" y="698.254"/>
<use xlink:href="#glyph0-3" x="325.873171" y="698.254"/>
<use xlink:href="#glyph0-11" x="330.299554" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="337.545353" y="698.254"/>
<use xlink:href="#glyph0-12" x="343.078581" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="347.235974" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="352.490249" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="359.404294" y="698.254"/>
<use xlink:href="#glyph0-6" x="363.830677" y="698.254"/>
<use xlink:href="#glyph0-15" x="366.597291" y="698.254"/>
<use xlink:href="#glyph0-11" x="372.130519" y="698.254"/>
<use xlink:href="#glyph0-26" x="376.058772" y="698.254"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="378.829" y="694.639"/>
</g>
<path style="fill:none;stroke-width:0.398;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00121875 -0.00190625 L 137.483156 -0.00190625 " transform="matrix(1,0,0,-1,124.802,712.127)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="135.891" y="718.751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="140.041" y="721.564"/>
<use xlink:href="#glyph3-2" x="144.27392" y="721.564"/>
<use xlink:href="#glyph3-2" x="148.50684" y="721.564"/>
<use xlink:href="#glyph3-3" x="152.73976" y="721.564"/>
<use xlink:href="#glyph3-4" x="156.97268" y="721.564"/>
<use xlink:href="#glyph3-5" x="161.205601" y="721.564"/>
<use xlink:href="#glyph3-6" x="165.438521" y="721.564"/>
<use xlink:href="#glyph3-6" x="169.671441" y="721.564"/>
<use xlink:href="#glyph3-7" x="173.904361" y="721.564"/>
<use xlink:href="#glyph3-8" x="178.137281" y="721.564"/>
<use xlink:href="#glyph3-9" x="182.370201" y="721.564"/>
<use xlink:href="#glyph3-10" x="186.603121" y="721.564"/>
<use xlink:href="#glyph3-11" x="190.836041" y="721.564"/>
<use xlink:href="#glyph3-12" x="195.068961" y="721.564"/>
<use xlink:href="#glyph3-11" x="199.301882" y="721.564"/>
<use xlink:href="#glyph3-3" x="203.534802" y="721.564"/>
<use xlink:href="#glyph3-8" x="207.767722" y="721.564"/>
<use xlink:href="#glyph3-7" x="212.000642" y="721.564"/>
<use xlink:href="#glyph3-11" x="216.233562" y="721.564"/>
<use xlink:href="#glyph3-13" x="220.466482" y="721.564"/>
<use xlink:href="#glyph3-9" x="224.699402" y="721.564"/>
<use xlink:href="#glyph3-14" x="228.932322" y="721.564"/>
<use xlink:href="#glyph3-15" x="233.165242" y="721.564"/>
<use xlink:href="#glyph3-16" x="237.398163" y="721.564"/>
<use xlink:href="#glyph3-6" x="241.631083" y="721.564"/>
<use xlink:href="#glyph3-10" x="245.864003" y="721.564"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-11" x="250.104893" y="721.564"/>
<use xlink:href="#glyph3-12" x="254.337813" y="721.564"/>
<use xlink:href="#glyph3-11" x="258.570733" y="721.564"/>
<use xlink:href="#glyph3-6" x="262.803653" y="721.564"/>
<use xlink:href="#glyph3-17" x="267.036573" y="721.564"/>
<use xlink:href="#glyph3-18" x="271.269494" y="721.564"/>
<use xlink:href="#glyph3-8" x="275.502414" y="721.564"/>
<use xlink:href="#glyph3-15" x="279.735334" y="721.564"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 61 KiB

View File

@ -0,0 +1,12 @@
\documentclass[a4paper,ngerman]{article}
\usepackage{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\begin{document}
\thispagestyle{empty}
\vspace*{19cm}
Eber, beim Hausschwein insbesondere oberdeutsch Saubär, beim Wildschwein Keiler, bezeichnet das männliche Geschlecht des Schweins.\footnote{\url{https://de.wikipedia.org/wiki/Eber}}
\end{document}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.6 MiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.6 MiB

View File

@ -0,0 +1,20 @@
\documentclass[a4paper,ngerman]{article}
\usepackage{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{cleveref}
\usepackage{graphicx}
\usepackage{float}
\begin{document}
\thispagestyle{empty}
\begin{figure}[H]
\includegraphics[width=\textwidth]{fooboar.jpeg}
\caption{Unser Maskottchen Fooboar}
\label{img:fooboar}
\end{figure}
Wie man in Abbildung \ref{img:fooboar} sieht, ist Fooboar ein sehr engagierter Jungeber.
\end{document}

View File

@ -8,82 +8,82 @@
---
<div class="layout-content-only">
<div class="layout-content">
<h2>Was brauchen wir dafür?</h2>
<p class="fragment"><code><strong>BibTex</strong></code> als Schnittstelle zwischen der Literatur und LaTeX</p>
<p class="fragment"><strong>Bibliographiedatei</strong> (nachfolgend ".bib" Datei) zur Speicherung von Literaturverweisen<p>
</div>
<div class="layout-content">
<h2>Was brauchen wir dafür?</h2>
<p class="fragment"><code><strong>BibTex</strong></code> als Schnittstelle zwischen der Literatur und LaTeX</p>
<p class="fragment"><strong>Bibliographiedatei</strong> (nachfolgend ".bib" Datei) zur Speicherung von Literaturverweisen<p>
</div>
</div>
---
<div class="layout-content-only">
<div class="layout-content">
<h2>Wie wird das verwendet?</h2>
<p class="fragment">Durch BibTex wird LaTeX um einige Befehle zum Zitieren erweitert</p>
<ul>
<li class="fragment"><code>\cite{Quelle}</code> zitieren einer Quelle</li>
<li class="fragment"><code>\cite[S. 15]{Quelle}</code> zitieren einer Seite</li>
<li class="fragment"><code>\bibliography{Name der .bib Datei}</code> Verweis auf die genutzte .bib Datei</li>
<li class="fragment"><code>\bibliographystyle{Zitierstil}</code> Angabe des genutzten Zitierstils</li>
</ul>
</div>
<div class="layout-content">
<h2>Wie wird das verwendet?</h2>
<p class="fragment">Durch BibTex wird LaTeX um einige Befehle zum Zitieren erweitert</p>
<ul>
<li class="fragment"><code>\cite{Quelle}</code> zitieren einer Quelle</li>
<li class="fragment"><code>\cite[S. 15]{Quelle}</code> zitieren einer Seite</li>
<li class="fragment"><code>\bibliography{Name der .bib Datei}</code> Verweis auf die genutzte .bib Datei</li>
<li class="fragment"><code>\bibliographystyle{Zitierstil}</code> Angabe des genutzten Zitierstils</li>
</ul>
</div>
</div>
---
<div class="layout-wide-content">
<div class="layout-content">
<!--<div class="layout-content">
<h2>Was ist diese ominöse .bib Datei?</h2>
<p class="fragment">Sammlung von Literatureinträgen</p>
<p class="fragment">Im BibTex Format</p>
<div class="fragment">
<p >Beispielhafter Literatureintrag im BibTex Format</p>
<pre class="lang-tex hljs"><code>
@article{turing1990, %Art des Dokuments und Bezeichner für den \cite Befehl
title={The chemical basis of morphogenesis}, % Titel
author={Turing, Alan Mathison}, % Autor
journal={Bulletin of mathematical biology}, % Titel des Journals
volume={52}, % Band des Journals
pages={153--197}, % Seitenzahl im Journal
year={1990}, % Erscheinungsjahr
publisher={Springer} % Verleger des Journals
}
</code></pre>
<p>Beispielhafter Literatureintrag im BibTex Format</p>
<pre class="lang-tex hljs"><code>@article{turing1990, %Art des Dokuments und Bezeichner für den \cite Befehl
title={The chemical basis of morphogenesis}, % Titel
author={Turing, Alan Mathison}, % Autor
journal={Bulletin of mathematical biology}, % Titel des Journals
volume={52}, % Band des Journals
pages={153--197}, % Seitenzahl im Journal
year={1990}, % Erscheinungsjahr
publisher={Springer} % Verleger des Journals
}</code></pre>
</div>
</div>
</div>-->
<div>
---
<div class="layout-preview-only">
<div class="layout-preview">
<img src="sections/german/14/bamberger_katalog_bibtex.jpg">
<caption>Finden von fertigen BibTex Einträgen - Bamberger Katalog</caption>
</div>
<div class="layout-preview">
<img src="sections/german/14/bamberger_katalog_bibtex.jpg">
<figcaption>Finden von fertigen BibTex Einträgen Bamberger Katalog</figcaption>
</div>
</div>
---
<div class="layout-preview-only">
<div class="layout-preview">
<figure>
<img src="sections/german/14/google_bibtex1.jpg">
<img src="sections/german/14/google_bibtex2.jpg">
<caption>Finden von fertigen BibTex Einträgen - Google Scholar</caption>
</figure>
<div class="layout-preview">
<figure>
<img src="sections/german/14/google_bibtex1.jpg">
<img src="sections/german/14/google_bibtex2.jpg">
<figcaption>Finden von fertigen BibTex Einträgen Google Scholar</figcaption>
</figure>
</div>
---
<div class="layout-content">
<h2 data-category="Aufgabe">Ein Literaturverzeichnis erstellen und einfügen</h2>
<div class="layout-wide-content">
<div class="layout-content">
<h2 data-category="Aufgabe" data-task="13">Ein Literaturverzeichnis erstellen und einfügen</h2>
<ul>
<li class="fragment">Suche in einer Literaturdatenbank deiner Wahl die BibTeX-Einträge für folgende LaTeX-Handbücher:
<ul>
<ul>
<li class="fragment">Leslie Lamport (1994): LaTeX. A Document Preparation System.</li>
<li class="fragment">Dilip Datta (2017): LaTeX in 24 Hours. A Practical Guide for Scientific Writing.</li>
<li class="fragment">Frank Mittelbach / Michel Goossens (2012): Der LaTeX-Begleiter.</li>
</ul>
</ul>
</li>
<li class="fragment">Füge die BibTeX-Einträge in eine bibtex-Datei <code>bibliography.bib</code> ein.</li>
<li class="fragment">Wähle einen Bibliographierstil aus und füge den entsprechenden Befehl per <code>\bibliographystyle{}</code> in deine LaTeX-Datei für das Skript ein.</li>
@ -91,4 +91,5 @@
<li class="fragment">Zitiere die 3 Handbücher an geeigneter Stelle im Skript, damit diese im Literaturverzeichnis erscheinen.</li>
<li class="fragment">Probiere nun einen anderen Bibliographierstil aus und vergleiche, was sich im PDF verändert.</li>
</ul>
</div>
</div>

View File

@ -6,8 +6,6 @@
---
---
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Einen Index erstellen</h2>
@ -16,21 +14,16 @@
\begin{document}
\maketitle
\section{Was ist LaTeX\index{LaTeX}?}
LaTeX\index{LaTeX} ist
ein Textsatzsystem\index{Textsatzsystem}.
\newpage
\section{TeX\index{TeX} vs. LaTeX\index{LaTeX}}
Es basiert auf TeX\index{TeX},
einer Erfindung von
LaTeX\index{LaTeX} ist ein
Textsatzsystem\index{Textsatzsystem}.
\newpage \section{TeX\index{TeX} vs.
LaTeX\index{LaTeX}} Es basiert auf
TeX\index{TeX}, einer Erfindung von
Donald Knuth\index{Knuth, Donald}.
Da TeX\index{TeX} in
seiner Syntax sehr viel
komplexer als LaTeX\index{LaTeX} ist,
ist LaTeX\index{LaTeX}
wesentlich weiter verbreitet.
Da TeX\index{TeX} in seiner Syntax sehr
viel komplexer als LaTeX\index{LaTeX}
ist, ist LaTeX\index{LaTeX} wesentlich
weiter verbreitet.
\printindex</code></pre>
</div>
<div class="layout-preview">
@ -44,9 +37,7 @@ wesentlich weiter verbreitet.
<div class="layout-content">
<h2>Beamer</h2>
<p>Dokumentenklasse zur Erstellung von Präsentationen.</p>
<pre class="lang-tex hljs">
<code>
\documentclass{beamer}
<pre class="lang-tex hljs small-text"><code>\documentclass{beamer}
\usetheme{Frankfurt}
\usecolortheme{seahorse}
\author{ACID}
@ -56,13 +47,12 @@ wesentlich weiter verbreitet.
\framesubtitle{Inkarnation des Guten?}
\begin{frame}
\begin{definition}
Ein Zitronensorbet ist eine halbgefrorene \textbf{Speiseeiscreme}
Ein Zitronensorbet ist eine
halbgefrorene \textbf{Speiseeiscreme}
auf Basis von \textit{Zitronen}.
\end{definition}
\end{frame}
\end{document}
</code>
</pre>
\end{document}</code></pre>
</div>
<div class="layout-preview">
<img src="sections/german/15/beamer.png">
@ -72,10 +62,9 @@ auf Basis von \textit{Zitronen}.
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>TikZ - TikZ ist kein Zeichenprogramm</h2>
<h2>TikZ TikZ ist kein Zeichenprogramm</h2>
<p>Paket zur Erstellung von Vektorgrafiken.</p>
<pre class="lang-tex hljs">
<code>\tikzstyle{every node}=[draw=black,thick,anchor=west]
<pre class="lang-tex hljs small-text scroll-one-half"><code>\tikzstyle{every node}=[draw=black,thick,anchor=west]
\tikzstyle{selected}=[draw=red,fill=red!30]
\tikzstyle{dir}=[fill=gray!50]
\tikzstyle{relativeTo}=[fill=blue!70]
@ -89,19 +78,17 @@ parent path={(\tikzparentnode.south)
|- (\tikzchildnode.west)}]
\node {/ oder C:}
child { node {home}
child { node {knut}
child { node {pictures}}
child { node {docs}
child { node [dir] {latex}
child { node [relativeTo] {main.tex}
child { node [selected] {part1.tex}
}
}
}
child { node {knut}
child { node {pictures}}
child { node {docs}
child { node [dir] {latex}
child { node [relativeTo] {main.tex}
child { node [selected] {part1.tex}
}
}
}
};
\end{tikzpicture}
</code>
</pre>
\end{tikzpicture}</code></pre>
</div>
<div class="layout-preview">
<img src="sections/german/04/relative_path.png">
@ -114,20 +101,17 @@ child { node {home}
<div class="layout-content">
<h2>paralist</h2>
<p>Paket für platzsparendere Listen</p>
<pre class="lang-tex hljs">
<code>
\begin{asparaenum} %enumerate
\item Erdbeeren
\item Stachelbeeren
\item Eisbären
\end{asparaenum}
<pre class="lang-tex hljs"><code>\begin{asparaenum} %enumerate
\item Erdbeeren
\item Stachelbeeren
\item Eisbären
\end{asparaenum}
\begin{asparaitem} %itemize
\item Erdbeeren
\item Stachelbeeren
\item Eisbären
\end{asparaitem}
</code>
\begin{asparaitem} %itemize
\item Erdbeeren
\item Stachelbeeren
\item Eisbären
\end{asparaitem}</code></pre>
</div>
<div>
<img src="sections/german/15/paralist.png">
@ -137,15 +121,11 @@ child { node {home}
<div class="layout-content-and-preview">
<div class="layout-content">
<h2>Linguistik</h2>
<p>Beispiel Konstituentenbäume mit <code>qtree</code></p>
<h2>Linguistik</h2>
<p>Beispiel Konstituentenbäume mit <code>qtree</code></p>
<pre class="lang-tex hljs"><code>\Tree [.S [.NP LaTeX ]
[.VP [.V is ] [.NP fun ] ] ]</code></pre>
</div>
<div class="layout-preview">
<pre class="lang-tex hljs">
<code>
\Tree [.S [.NP LaTeX ] [.VP [.V is ] [.NP fun ] ] ]
</code>
</pre>
</div>
<div class="layout-preview">
<img src="sections/german/15/constituency_tree.png">

View File

@ -2,7 +2,7 @@
0.upto(15) do |i|
Dir.chdir "sections/german/#{i.to_s.rjust(2, '0')}"
`ls -1 *.tex`.split("\n").map { |file| file.sub(/\.tex$/, '')}.each do |file|
`pdflatex #{file}.tex`
`pdflatex --shell-escape #{file}.tex`
`pdfcrop #{file}.pdf`
`pdf2svg #{file}.pdf #{file}-orig.svg`
`pdf2svg #{file}-crop.pdf #{file}-crop.svg`
@ -11,7 +11,7 @@
`rm #{file}.out`
`rm #{file}.pdf`
`rm #{file}.svg`
`rm #{file}.toc`
#`rm #{file}.toc`
`rm #{file}-crop.pdf`
end
Dir.chdir "../../.."

11
tex2svg-single.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
file=$1
pushd $(dirname $file)
base=$(basename ${file%.tex})
pdflatex --shell-escape --halt-on-error $base
pdflatex --shell-escape --halt-on-error $base
pdfcrop $base.pdf
pdf2svg $base.pdf $base-orig.svg
pdf2svg $base-crop.pdf $base-crop.svg
rm -f $base.aux $base.log $base.out $base.pdf $base-crop.pdf
popd

11
tex2svg.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
for file in sections/german/*/*.tex; do
pushd $(dirname $file)
base=$(basename ${file%.tex})
pdflatex --shell-escape $base
pdfcrop $base.pdf
pdf2svg $base.pdf $base-orig.svg
pdf2svg $base-crop.pdf $base-crop.svg
rm -f $base.aux $base.log $base.out $base.pdf $base-crop.pdf
popd
done;